id
stringlengths 4
10
| text
stringlengths 4
2.14M
| source
stringclasses 2
values | created
timestamp[s]date 2001-05-16 21:05:09
2025-01-01 03:38:30
| added
stringdate 2025-04-01 04:05:38
2025-04-01 07:14:06
| metadata
dict |
---|---|---|---|---|---|
389856312
|
Tooltip does not hide when dragging elements with ReactDnD
I use ReactDnD to move elements around the page. I want to show a tooltip when hovering over such an element before drag starts. When dragging starts, the tooltip should disappear.
What happens right now, is, that as soon as I start dragging, the tooltip will not hide until I dropped the item.
My item component looks like this:
<React.Fragment>
<DraggableItem
data-tip
data-for: "item_1",
id="item_1"
ref={(instance: any) => connectDragSource(instance)}
/>
<ReactTooltip id="item_1">
some example content
</ReactTooltip>
</React.Fragment>
Any hints on how to make the tooltip disappear when dragging starts would be appreciated.
Greets
-act
@actraiser can share your solution
@actraiser shot in the dark here but I'm having the same issue if you found a solution.
@faz919 feel free to open a new issue if you're experiencing that with v5.
I found the documentation for that use case and it worked well. Thank you!
@faz919 please share so other people can use it as well in the future.
|
gharchive/issue
| 2018-12-11T16:48:59 |
2025-04-01T04:55:34.283690
|
{
"authors": [
"actraiser",
"faz919",
"gabrieljablonski",
"semosem"
],
"repo": "ReactTooltip/react-tooltip",
"url": "https://github.com/ReactTooltip/react-tooltip/issues/460",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
608568958
|
TypeError: Cannot read property 'history' of undefined
import React from 'react';
import PropTypes from 'prop-types';
import { makeStyles } from '@material-ui/core/styles';
import AppBar from '@material-ui/core/AppBar';
import Tabs from '@material-ui/core/Tabs';
import Tab from '@material-ui/core/Tab';
import Typography from '@material-ui/core/Typography';
import Box from '@material-ui/core/Box';
import { Toolbar ,Button,Grid} from '@material-ui/core';
import {MoreIcon,LoginIcon, Dashboard} from '@material-ui/icons';
import AccountCircleIcon from '@material-ui/icons/AccountCircle';
import IconButton from '@material-ui/core/IconButton';
import'./Appbar.css';
import {useHistory,useRouteMatch} from 'react-router-dom';
import { withRouter } from "react-router";
function TabPanel(props) {
const { children, value, index, ...other } = props;
return (
<div
role="tabpanel"
hidden={value !== index}
id={`simple-tabpanel-${index}`}
aria-labelledby={`simple-tab-${index}`}
{...other}
>
{value === index && (
<Box p={3}>
<Typography>{children}</Typography>
</Box>
)}
</div>
);
}
TabPanel.propTypes = {
children: PropTypes.node,
index: PropTypes.any.isRequired,
value: PropTypes.any.isRequired,
};
const useStyles = makeStyles((theme) => ({
root: {
flexGrow: 1,
backgroundColor: theme.palette.background.paper,
},
alignment: {
}
}));
function Appbar() {
const classes = useStyles();
const [value, setValue] = React.useState(0);
const handleChange = (event, newValue) => {
setValue(newValue);
};
let history = useHistory();
function Move(){
history.push("/services");
}
return (
<div className={classes.root}>
<AppBar position="static" color="default">
<Toolbar>
<Typography variant="h4" color="textPrimary">
WorkPholio
</Typography>
<Tabs value={value} onChange={handleChange} aria-label="simple tabs example" style={{ flex: 1 }}>
<Tab label="Home"/>
<Tab label="Services" onClick={Move}/>
<Tab label="About Us"/>
</Tabs>
<Toolbar>
<IconButton>
<Dashboard title="Dashboard"/>
</IconButton>
<IconButton>
<AccountCircleIcon />
</IconButton>
</Toolbar>
</Toolbar>
</AppBar>
</div>
);
}
export default Appbar;
Please Give me solution, dont close it, dumbass react!!!
You're erasing our issue template and giving no context on this code. I'm closing it because this isn't an support system, it's a bug tracker. This isn't a React Router bug, it's something wrong with your code. You need to fix it yourself.
|
gharchive/issue
| 2020-04-28T19:47:03 |
2025-04-01T04:55:34.286494
|
{
"authors": [
"timdorr",
"vijaytembugade"
],
"repo": "ReactTraining/react-router",
"url": "https://github.com/ReactTraining/react-router/issues/7291",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
}
|
478477825
|
feat: use go mod
This is my first pull request, please ask me if you have any questions.
The v1 updates are for bug fix only. If you want to participate by adding features please do it for the v2. Yet, in the v2 we already have go mod.
|
gharchive/pull-request
| 2019-08-08T13:39:02 |
2025-04-01T04:55:34.297516
|
{
"authors": [
"ChinaHDJ",
"teivah"
],
"repo": "ReactiveX/RxGo",
"url": "https://github.com/ReactiveX/RxGo/pull/212",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
}
|
307033774
|
Export the interface for Scheduler
Discussed offline:
The Scheduler interface should be exported
The class implementations of any Schedulers should not
This is not needed.
The SchedulerLike interface is exported via export * from './internal/types';
|
gharchive/pull-request
| 2018-03-20T20:51:50 |
2025-04-01T04:55:34.309608
|
{
"authors": [
"bowenni"
],
"repo": "ReactiveX/rxjs",
"url": "https://github.com/ReactiveX/rxjs/pull/3453",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
459763042
|
fix(windowTime): fix windowTime bug
Description:
this line of code cause the bug
const windows = this.windows
Related issue (if exists):
#4847
leave a comment in case for being locked
Could you add a failing test that reproduces the problem and shows that this change fixes it? Ideally, IMO, bug fix PRs should consist of two commits: one that adds a failing test; and another that includes the change that fixes the bug and makes the test pass.
|
gharchive/pull-request
| 2019-06-24T08:38:53 |
2025-04-01T04:55:34.311751
|
{
"authors": [
"cartant",
"githubxiaowen"
],
"repo": "ReactiveX/rxjs",
"url": "https://github.com/ReactiveX/rxjs/pull/4883",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
855332294
|
docs: only here should redirect
Description:
Related issue (if exists):
This seems to be duplicated in #6222.
|
gharchive/pull-request
| 2021-04-11T15:17:14 |
2025-04-01T04:55:34.313123
|
{
"authors": [
"benlesh",
"santoshyadavdev"
],
"repo": "ReactiveX/rxjs",
"url": "https://github.com/ReactiveX/rxjs/pull/6220",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
78125785
|
Status of this project
Hello! I'm a developer advocate for Neo4j and I wanted to check on the status of this driver. Looking around I haven't seen much activity. Feel free to let me know if you need anything from Neo to help support the .NET community!
I @cheerfulstoic. This is being used.
http://stackoverflow.com/questions/tagged/neo4jclient
Thank you :)
@cheerfulstoic, one thing it's missing is Powershell support. I've done the preliminary work to figure out how to use it, as documented here: http://stackoverflow.com/questions/30314696/return-overload-fails and mean to document it into the Neo wiki. in fact, what would make the whole thing considerably easier is if Neo4jClient would offer a non-generic version of the .Return method.
anyhow, if you're looking for something to do, perhaps you could document my efforts into the wiki. it is possible to use it from Powershell but it's tricky and has taken me some effort to figure out
Sorry, I wasn't clear ;) I'm not a maintainer of the library, I was asking the maintainer(s) (the Readify team, I think) if this project is being maintained (responding to issues/fixing code/adding code/releasing new versions). I've not used .NET yet, but I wanted to check in on it.
+1. A few outstanding pull requests and not much activity on them. Where is the love Readify? :)
Hi. I'm the current maintainer.
@jexp has been asking me the same question via email, so time to write it all out…
Looking back
This library started back in early 2011. We (@Readify) were kicking off a project that we decided to use Neo4j for. That project is still running to this day: it’s the one @RaphHaddad is on. The majority of the team are client-devs, with some Readify leadership and augmentation.
At the time, there were no compelling .NET drivers, and Cypher didn’t really exist yet (it was just an early proposal).
Rather than building our own library in isolation, with the risk of it bleeding into our app, I decided to put it in a separate repository, open source it, and pull it into the project via NuGet. To support a fairly rapid development loop, I bolted the CI build straight on to NuGet upload. We’ve seen 662 builds released since.
Within the project context, I remained the primary driver of the library, with some support from @mavadat (now Readify alumni), @rajeev-n (project team), and @moh-abed (now Readify alumni).
As the library gained popularity, we received contributions from a number of people outside the original project: @aranm, @cskardon (who also answered a lot of StackOverflow questions), @hoopoos, @arturosevilla, @gpierrick (who uses it behind his startup’s Neo4j-based web app), @scoarescoare, @danielcor, @sbarski, @wis3guy, @jpotts2, @bholdt (Readify), @pjvds, @brentonmcs, @simonpinn, @mcliment, @sprucely, @tendersoft-mjb, @b2berry, @juwujaren, @egarrington and @michaelbarnes. I am immensely grateful for all of these contributions.
The Neo Technology team supported me personally a lot, including inviting me over to San Francisco for a week to hang out with other driver authors from around the world.
In late 2012, I personally moved into a different role at Readify which saw me focussed more on software process, and not touching Neo4j at all. At this point Neo4jClient moved into more of a personal side-project for me.
In mid-2014, I moved into a different role again, in Readify’s national management team. This has two direct impacts: a) I’m a long way from dogfooding the library myself, and b) my personal priorities are quite different.
Current state
The functionality that is in place is well tested and robust.
There is both Gremlin and Cypher support.
The Cypher support is slowly ageing out, as new keywords are added to the language, but not supported in the library.
The Cypher response parser is a complete mess of complexity, that needs to be revisited entirely. There are a good number of tests around it, so it’s just a matter of re-writing the implementation. The main goal here is to support streaming, whereas the current parser implementation doesn’t at all.
There are number of prototypes and pull requests for transactions support, but none of these have landed yet.
The Gremlin support is creating a tax on the entire library, slowing down the ability to make other changes. I think it needs to go.
Project management, and my capacity
There’s a good release structure in place: pull requests get automatically validated; once they’re merged, they are then automatically released within a few minutes. If it’s a small and targeted PR, with a clear diff, and includes appropriate tests, then I click a single button on github.com and it’s all done.
The challenge comes with pull requests which require work. The second that the diff gets bit and ugly, the tests are incomplete, or there’s something up for architectural debate, it effectively gets parked. As demonstrated over the last 12+ months, I just won’t get to it.
Going forward
I’ll continue to try and accept ‘good’ pull requests: short, targeted, clean diff, tested.
I cannot even pretend to commit to personally taking on anything more complex. Even if I had the time, I don’t think I’m in a good position to drive the library at the moment, considering I’m not actively working with Neo4j at all.
Readify as a company only has minimal engagement in one project that uses Neo4j. While we put a lot of corporate resources towards open source, and have fairly liberal IP policies to support this, we’d need more people actively using Neo4j to see any further efforts here.
I’d fully support somebody wanting to take over the management aspects. As a first step, they could take over some of the core issues mentioned above, and pending PRs. I’d still be around as a final review on the ‘Merge’ button for the first few, but with an intention to hand that permission over pretty quick. In this scenario, we can work out what to do about the branding of it being under the @Readify org here on GitHub, versus helping somebody else build their own brand from their efforts.
If you’re a passionate .NET developer, doing some work with Neo4j, and would like to be able to use company-sponsored time towards the cause, take a look at https://github.com/Readify/madskillz/blob/master/Consulting.md then https://join.readify.net :)
How does that sit with everyone? What other ideas are out there?
Ooops ... one more option I forgot to mention: does this library have enough baggage that it's time to cut our losses and start again, with something that is more modern and Cypher-focused? Transactions, new remoting protocol, and pure-Cypher support from day 0?
Hi @tathamoddie
First and foremost - I think a big thanks is in order, Neo4jClient has been the defacto standard for .NET development for a while now and without it, rolling our own would have taken up a lot more time, and there would be even less .NET usage (yes - even less)
In terms of options - I think there are a few things to get into Neo4jClient (transaction support, and to handle all keywords) up to Neo4j 2.x.
Cutting and running to a new library entirely has it's plus points (who doesn't like starting from scratch), but there will be people who (for whatever reason) will need to stay on 2.x and we can't just say 'sorry, no dice' to them. No reason not to go for a new driver for 3.x+ though :)
I think we need a list of developers still using Neo4jClient and willing to put some time in, as for similar reasons to yourself, people will have moved on from using it, or are on different projects, or "reason".
So - I'm willing and able to put time in, and I'll put my hat into the ring to help with the management.
Hi @tathamoddie ,
Also a huge thank you for providing a library to allow us to unlock Neo4j in the .Net space without going through the pain of managing our own libraries, I certainly wouldn't have picked up Neo4j as a replacement datastore so quickly had it not been available. And, I for one still regularly use the libraries having also produced the entity extension library to augment the Neo4jClient (https://github.com/simonpinn/Neo4jClient.Extension) which is usually how I use Neo4j and definitely the quickest way to do a demo to new graph developers and make their eyes light up!
I'd very much like to see the project continue, adding full support for 2.x and transaction support would make it all much better, agree with the sentiments around the response parser since having gotten involved with supporting camel casing.
I would also like to do what I can to help it continue. Probably not enough time to manage it, but definitely contribute to moving parts forward.
I wish to second the sentiment in that we owe you a debt of gratitude. a .Net client opens the world of Neo for a good many of us. I’ve only recently discovered Neo and see tremendous potential within the corporation. without a .Net client writing apps with it would be nearly out of reach for me.
to that I would like to add that I wish I had the time as I would love to contribute, but frankly I’m always just buried with work. I have too much on my hands already but I do hope this project finds a new sponson and doesn’t get abandoned. it would be a real pity.
thanks,
e k k i s -
エリク・カェデル
PGP | 0x1AD4B895A9E781C0
BTC | 1NfcAiyjn6TJNdUqVnoA56xbHWHXj1uwts
ICQ | 10053783
SMS | +13104880777
+13104880777 | e@arix.com mailto:e@arix.com | erick.calder
On Jul 8, 2015, at 00:18, Chris Skardon notifications@github.com wrote:
Hi @tathamoddie https://github.com/tathamoddie
First and foremost - I think a big thanks is in order, Neo4jClient has been the defacto standard for .NET development for a while now and without it, rolling our own would have taken up a lot more time, and there would be even less .NET usage (yes - even less)
In terms of options - I think there are a few things to get into Neo4jClient (transaction support, and to handle all keywords) up to Neo4j 2.x.
Cutting and running to a new library entirely has it's plus points (who doesn't like starting from scratch), but there will be people who (for whatever reason) will need to stay on 2.x and we can't just say 'sorry, no dice' to them. No reason not to go for a new driver for 3.x+ though :)
I think we need a list of developers still using Neo4jClient and willing to put some time in, as for similar reasons to yourself, people will have moved on from using it, or are on different projects, or "reason".
So - I'm willing and able to put time in, and I'll put my hat into the ring to help with the management.
—
Reply to this email directly or view it on GitHub https://github.com/Readify/Neo4jClient/issues/90#issuecomment-119466217.
Hi,
Where I work we keep using Neo4jClient for a big product that we have, but we use it using my transactions implementation as we do require it.
Thanks for the great work.
I would like to see a new client with a 'Cypher-first' architecture.
I would be more than happy to contribute to this as well. However we shouldn't just drop support for the current client.
something which just takes a cypher string. that would be my preference too. leave the client agnostic of the language the back-end talks
On Jul 8, 2015, at 16:15, Raphael Haddad notifications@github.com wrote:
I would like to see a new client with a 'Cypher-first' architecture.
I would be more than happy to contribute to this as well. However we shouldn't just drop support for the current client.
—
Reply to this email directly or view it on GitHub https://github.com/Readify/Neo4jClient/issues/90#issuecomment-119756482.
@arturosevilla which branch of your fork do you use for your production transactions implementation?
We are starting a new project with neo4j and since the master of this branch does not support transactions, we will start with yours. Is your version published as a nuget package?
@neutmute I am at this customer at the moment.
There is no migration to an 'alternate graph database' in our minds nor in the customer's mind at the moment (for this customer). Readify has been engaged (and has an excellent relationship) with this customer for several years and we've seen the project grow, scale and adapt. Neo4j has also been part of this growing and adapting. I don't think we will be dropping Neo4j anytime soon.
It seems from this thread that there are several people who are interested in contributing. With @cskardon putting his hand up for managing. I too would be happy to help in the management of this project.
The question still remains though on the way forward.
I would suggest:
To keep and maintain this client as @tathamoddie has been for the last few months. That is, no pull requests with major architecture fixes and no major feature additions.
To create a new client with a 'cypher-first' architecture in mind.
@neutmute inside of my repository you can find the branch aggregatewithoutgenericnodewithnullinmemberexpressionfix which I recommend because is more up to date with the changes that also have been applied as well as other changes that I made. If you see a problem you can also find the transactions branch. But no, I don't have them published as a nuget package.
I do agree with @tathamoddie as I had to basically rewrite the request and parser part of the library to implement transactions.
Personally, I think a more 'overhaul' approach might be better, yes - it's work as @tathamoddie and @arturosevilla have mentioned a rewrite of the request / parser area is significant and time consuming. But Neo4jClient has been downloaded 65K+ - now I know I'm responsible for downloading it a lot more than once :), but regardless it's a significant number of people, and it's a large number of people who would benefit from Transactional support (for example).
First port of call in my view is to visit the existing pull requests and yay/nay them. Then triage the issues here. Get a proper view of where we actually are before we move away from the past few years of tests and general stability.
You ran an excellent project, @tathamoddie. You'll be sorely missed.
@cskardon agree with your overhaul approach. Given @arturosevilla's transaction support has been in PR status for 18 months, there is an immediate risk that this project fragments between the dormant readify:master branch and @arturosevilla's more active fork. Starting a rewrite now would only dilute potential contributor resources even further IMHO.
Perhaps something like this?
First pass on simple PR's. Accept/Reject/Amend with the submitters
Review and work with @arturosevilla on merging his transaction supported branch(s). Noting that his request / parser code has already been massively refactored in order to support transactions. I note he has extensive 61 unit tests dedicated to transactions that are passing.
Consider bumping the version to 2.0 and drop all Gremlin support. I'm a newcomer to Neo4j and was only running through the movie tutorial last night. Everything is Cipher and I haven't seen a mention of Gremlin anywhere. Existing Gremlin consumers can remain on the 1.* nuget package line and it has the advantage of simplifying further refactoring (I'm hoping).
Looks like we are two weeks too late. This discussion would have made a good use case for the last alt.net topic :)
Thanks a ton @tathamoddie for your amazing work, and I'm really happy that so many of you chime in with their suggestions and offers to help. We should probably have done this earlier :)
I totally agree with @neutmute's points.
I'd love if the work from @arturosevilla was merged in and we started to address a number of topics (which we should create issues for).
I suggest that @cskardon and someone else could step up for the management aspects and everyone who's able to would start contributing with docs, code, tests, example projects, articles, talks :)
I'm very excited about this and willing to support you all with anything that I can do.
Things I'd love to see in Neo4jClient:
(to be converted into gh-issues if not already fixed)
[ ] fix issues
[ ] make sure it works with recent Neo4j, Windows and .Net versions
[ ] batch statements into a single tx
[ ] multiple request transactions
[ ] make it fast + perf-tests
[ ] powershell integration / support
[ ] make sure the most recent Neo4j-API is used
[ ] add a slim, fast, plain cypher execution module without the DSL that can also be used independently
and might form the basis for the main library
[ ] binary protocol support as a separate library that is just used, e.g. https://github.com/IngvarKofoed/neo4j-ndp-csharpdrive
[ ] larger example project
[ ] clean up, maintainability -> make sure the core stays easy to understand and maintain
Feedback from customers:
[ ] auth support
[ ] streaming support
[ ] async / await support
[ ] Merge entity support for fully merge a JSON object (See also: https://github.com/simonpinn/Neo4jClient.Extension)
Ping @peter-wiles @IngvarKofoed
@neutmute @jexp I'm open to any changes or branches you'd want to join into my transactions implementation. I can tell you that where I work we are serving critical infrastructure using such build, but I do think there are some improvements that could be done regarding the ITransaction interface that I did with the System.Transactions in .NET. If you want to with my fork, please review the Neo4jClient.Execution namespace as well as that's where I basically rewrote the way Neo4jClient did its requests. There are some small changes in Serialization as well, and I'm working on actually implementing the new auth mechanism on 2.2.x.
However, right now I'm trying to implement the auth mechanism and backport the whole new "Execution"/Request namespace into a separate package so I can write the auth on top of it. However if you decide to join it with my transactions fork, I think it's going to be easier for me to implement such new feature.
So we have 2 core branches here, the master on Neo4jClient that contains pulls and fixes including F# support etc and @arturosevilla 's aggregate.... branch with transaction support.
Ideally, we want to pull @arturosevilla's into the master and get the benefits of
a) the current tested master codebase of @tathamoddie
b) the current tested aggregate... codebase of @arturosevilla
Pulling into master means we get the nuget updated, and everyone can get the update, without having to switch to a new package. Also - other projects (@simonpinn's, the AspNet.Neo4j.Identity project for example) aren't rendered into needing big overhauls.
Soo.... In my view the easiest route would seem to be to merge the current master into aggregate... then once that's done, pull request the new aggregate+master branch back into the master branch. The two branches have gone their separate ways quite significantly, but I think the merge from master to agg will be simpler to manage (I could be wrong).
What are people's thoughts on this?
Moving on, I think this plus the existing valid pull requests and fixes would be the last v.1 release, aside from fixes etc, and a v.2 where we can pull out things like Gremlin, 'RootNode' bits etc
@cskardon I think it's about time :)
I asked @arturosevilla to spend a month to write and unit test the transactional support at the very beginning of our project as we wanted to have unit tests for our core queries.
For us, it has been working flawlessly over thousands of hours of use and the transactions and are an absolute must if you want to unit test your core queries or multi-query execution blocks.
We are already planning on having @arturosevilla add the authentication support as well due to our customer demand for it so it is great news to see that his work will be merged in to master.
@CharlieDigital I think so too :)
My current branch (cskardon/neo4jclient) currently contains the merge of @arturosevilla's and this repo's master. Obviously this needs some testing, but as it stands all tests are passing (though one does fail in NCrunch for some reason - which I need to investigate - I think it's a quick one).
So this includes the CamelCase fixes, F#, Transactions etc, and should be an easy merge back into this repo when we're ready. By all means, test it out and lets look at getting it all out there.
@cskardon if you can get your branch published as a nuget prerelease package I'm happy to dogfood it with the caveat that our project is just kicking off so it won't exactly be a huge amount of coverage. I'll be using it in combination with fluent config from Neo4jClient.Extension
Hello Everyone,
just a quick question, my colleagues are looking for example use-cases how people use Neo4j from .Net, so if you want to share what you're doing, please drop me an email to michael at neo4j.org
Thanks a ton!
@neutmute I can publish one to a myget feed for now? Obviously it'll take a bit of time before getting to the proper Nuget feed - but it would work in the same way....
@cskardon a myget feed would do fine!
@neutmute - okey dokey - give https://www.myget.org/F/neo4jclient-tx/api/v2 a whirl - it's in there as pre-release. There is a breaking change, and that's the return of the 'collectas' methods - no longer Node but just T
@cskardon That's awesome, I'll be happy to provide input on implementation if needed.
@arturosevilla That'd be great, obviously your unit tests provide some documentation, but more is always good :)
Guys (n' maybe gals?) - there is a pre-release version containing @arturosevilla's changes in the official nuget location now.
Depending on feedback, we'll look at pushing to the proper version asap, please note there is a breaking change if you use CollectAs in your code, in 1.0.0.662 this returned IEnumerable<Node<T>>, in 1.1.0-Tx# this returns just IEnumerable<T>.
Once we've ascertained that the Tx stuff is all good - my plan is to go through the other pull requests and merge them in (Oh hey! there's 2 by @me, they'll be good :) ).
So erm, let the awesomeness continue!
Bit late to the discussion but willing to help as well!
Although these days I spend more time in node.js with Neo4j and .net and SQL but I still maintain my first startup timeblend.com which uses Neo4jClient. (Neo4j 1.9)
Thanks
Ace @gpierrick, there's still your Pull to get in :)
Great work @cskardon! Just last night I branched @simonpinn's extensions and referenced your myget package. Will update to the official prerelease and pull that into my solution over the coming days. Been busy shaving vNext yaks.
To keep everyone in the loop, ~18 hours ago @cskardon and I finally caught up for a long overdue Skype chat.
It's evident from Chris' long term StackOverflow efforts, prior PRs, and engagement in this thread, that he's a key contributor to the project, and a safe set of hands.
I've gone ahead and given him write access to this repo, and owner rights to https://nuget.org/packages/Neo4jClient. This means he now has all the permissions required to publish official releases, as evidenced by https://www.nuget.org/packages/Neo4jClient/1.1.0-Tx00008 coming out.
The build infrastructure to date has been on my own TeamCity instance, which is reasonably old now. I've paused all these builds, and he already has new ones up and running over at MyGet.
We might need to shift the repo out from under github.org/Readify to a different org at some point, to make user management easier, and reflect the project becoming more of its own self-standing thing. This is probably a good opportunity to come up with a better name than "Neo4jClient". First reaction was Neo4net, but that's already been used of course, and it misses the part about being a client driver. Ideas welcome.
With all those points out of the road, I think we've answered the original question of "what's the status of this project?", so I'm going to close this issue, and we can use new issues for further, more-specific threads.
Great stuff @tathamoddie :+1:
Thanks so much Tatham, Chris and everyone who chimed in, I'm soo happy and grateful that Neo4jClient will be woken from its beauty sleep.
As mentioned before, I'm happy to give the project a new home at github.com/neo4j-contrib if that would be interesting.
I'm not sure we need a name, change, it is very much established, has high google results and stackoverflow tags.
I think what makes more sense is to break out smaller modules for certain aspects, like a fast, thin plain cypher transport or the binary transport.
And perhaps some higher level ones like EntityFramework integration or a LinQ module. Which then can either get very descriptive names or just a suffix. (but that's just my 2 cents).
Otherwise a new name might make sense for a rewrite or a sufficient revamp for a Neo4j 3.x compatible version? But I wouldn't focus on that right now.
Am 16.07.2015 um 04:22 schrieb Tatham Oddie notifications@github.com:
To keep everyone in the loop, ~18 hours ago @cskardon https://github.com/cskardon and I finally caught up for a long overdue Skype chat.
It's evident from Chris' long term StackOverflow efforts http://stackoverflow.com/search?q=user:2266+[neo4jclient], prior PRs, and engagement in this thread, that he's a key contributor to the project, and a safe set of hands.
I've gone ahead and given him write access to this repo, and owner rights to https://nuget.org/packages/Neo4jClient https://nuget.org/packages/Neo4jClient. This means he now has all the permissions required to publish official releases, as evidenced by https://www.nuget.org/packages/Neo4jClient/1.1.0-Tx00008 https://www.nuget.org/packages/Neo4jClient/1.1.0-Tx00008 coming out.
The build infrastructure to date has been on my own TeamCity instance, which is reasonably old now. I've paused all these builds, and he already has new ones up and running over at MyGet.
We might need to shift the repo out from under github.org/Readify to a different org at some point, to make user management easier, and reflect the project becoming more of its own self-standing thing. This is probably a good opportunity to come up with a better name than "Neo4jClient". First reaction was Neo4net, but that's already been used http://neo4net.codeplex.com/ of course, and it misses the part about being a client driver. Ideas welcome.
With all those points out of the road, I think we've answered the original question of "what's the status of this project?", so I'm going to close this issue, and we can use new issues for further, more-specific threads.
—
Reply to this email directly or view it on GitHub https://github.com/Readify/Neo4jClient/issues/90#issuecomment-121804511.
+1 name shouldn't change due to SEO
|
gharchive/issue
| 2015-05-19T15:05:46 |
2025-04-01T04:55:34.376174
|
{
"authors": [
"CharlieDigital",
"RaphHaddad",
"arturosevilla",
"cheerfulstoic",
"cskardon",
"ekkis",
"gpierrick",
"jexp",
"mavadat",
"neutmute",
"nigelsmall",
"simonpinn",
"tathamoddie"
],
"repo": "Readify/Neo4jClient",
"url": "https://github.com/Readify/Neo4jClient/issues/90",
"license": "MS-PL",
"license_type": "permissive",
"license_source": "github-api"
}
|
788982452
|
Cancel pending requeset if user navigates away from page
Problem
When the user navigates away from the component when a request is in the pending state, we no longer care about the result and want to cancel a request that’s already sent
Click to watch video of the problem
Docs
Axios Cancellation docs
I'd like to take this task.
|
gharchive/issue
| 2021-01-19T12:28:54 |
2025-04-01T04:55:34.386598
|
{
"authors": [
"Ishikabaid",
"whyDontI"
],
"repo": "Real-Dev-Squad/website-status",
"url": "https://github.com/Real-Dev-Squad/website-status/issues/51",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1686829448
|
Provides restore option
It would be nice to have an option to restore an backup with this container. Commands like "docker exec autobackup db-backup restore --all"
Backup is a bit more complex, especially trying to do it in an automated way like this. For example, if some databases exist in the container but not others, it's not obvious what the correct process is. Similarly, it's no longer a scheduled task, it'd just run eg pg_restore against a few servers.
I'd definitely review a PR to add this functionality if it can be done reliably, but I doubt it's something I'll add myself.
|
gharchive/issue
| 2023-04-27T13:13:11 |
2025-04-01T04:55:34.399855
|
{
"authors": [
"Akruidenberg",
"RealOrangeOne"
],
"repo": "RealOrangeOne/docker-db-auto-backup",
"url": "https://github.com/RealOrangeOne/docker-db-auto-backup/issues/42",
"license": "BSD-3-Clause",
"license_type": "permissive",
"license_source": "github-api"
}
|
783189529
|
Changing Username on firebase user object doesnt change the name in the Database
When Changing the username from the "Change Username" option of the app, the Firebase object of the User gets updated, but not the username on the Firebase Realtime Database and ultimately on the Leaderboard.
Write code in the method which is responsible for updating FirebaseUser itself to update the database.
Done in commit #e3c200bb7980c7df7c7a044f673eb669d9389a3d.
Done in commit #e3c200bb7980c7df7c7a044f673eb669d9389a3d.
|
gharchive/issue
| 2021-01-11T09:00:48 |
2025-04-01T04:55:34.407709
|
{
"authors": [
"Reckadon"
],
"repo": "Reckadon/MathTrainerGame",
"url": "https://github.com/Reckadon/MathTrainerGame/issues/1",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1643278664
|
Update to align with current Red Hat Insights starter app
Description
Update everything to align with current Red Hat Insights starter app
Checklist (Definition of Done)
[ ] Unit and integration tests added
[ ] Added test description under Test manual
[ ] Documentation added if necessary
[ ] CI and all relevant tests are passing
[ ] Add the ticket number to the PR title if available, i.e. ROX-12345: ...
[ ] Discussed security and business related topics privately. Will move any security and business related topics that arise to private communication channel.
Test manual
TODO:
Codecov Report
:exclamation: No coverage uploaded for pull request base (main@0de63b4). Click here to learn what that means.
Patch has no changes to coverable lines.
:exclamation: Current head b004453 differs from pull request most recent head 07438dc. Consider uploading reports for the commit 07438dc to get more accurate results
Additional details and impacted files
@@ Coverage Diff @@
## main #72 +/- ##
=======================================
Coverage ? 11.89%
=======================================
Files ? 26
Lines ? 395
Branches ? 84
=======================================
Hits ? 47
Misses ? 322
Partials ? 26
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Do you have feedback about the report comment? Let us know in this issue.
|
gharchive/pull-request
| 2023-03-28T06:22:30 |
2025-04-01T04:55:34.439504
|
{
"authors": [
"bradr5",
"codecov-commenter"
],
"repo": "RedHatInsights/acs-ui",
"url": "https://github.com/RedHatInsights/acs-ui/pull/72",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
1190364896
|
Theedge 1951 allow more devices
Description
Change update method to accept more than 1 device
Fixes # (THEEDGE-1951)
Type of change
What is it?
[ ] Bug fix (non-breaking change which fixes an issue)
[X] New feature (non-breaking change which adds functionality)
[ ] Documentation update
[ ] Tests update
[ ] Refactor
Checklist:
[X] I have commented my code, particularly in hard-to-understand areas
[ ] I have made corresponding changes to the documentation
[ ] I have added tests that prove my fix is effective or that my feature works
[ ] New and existing unit tests pass locally with my changes
[X] I run go fmt ./... to check that my code is properly formatted
[X] I run go vet ./... to check that my code is free of common Go style mistakes
Codecov Report
Merging #899 (c744cf5) into main (0c3d1a0) will decrease coverage by 0.11%.
The diff coverage is 0.00%.
@@ Coverage Diff @@
## main #899 +/- ##
==========================================
- Coverage 30.61% 30.49% -0.12%
==========================================
Files 44 45 +1
Lines 5037 5056 +19
==========================================
Hits 1542 1542
- Misses 3282 3301 +19
Partials 213 213
Impacted Files
Coverage Δ
pkg/routes/updates.go
3.85% <0.00%> (-0.15%)
:arrow_down:
pkg/clients/client.go
0.00% <0.00%> (ø)
pkg/dependencies/main.go
0.00% <0.00%> (ø)
pkg/routes/common/identity.go
0.00% <0.00%> (ø)
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 0c3d1a0...c744cf5. Read the comment docs.
/retest
|
gharchive/pull-request
| 2022-04-01T23:10:17 |
2025-04-01T04:55:34.461399
|
{
"authors": [
"acosferreira",
"codecov-commenter"
],
"repo": "RedHatInsights/edge-api",
"url": "https://github.com/RedHatInsights/edge-api/pull/899",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1343957700
|
Fixed issue #303
Description
Fixed issue #303
Type of change
Bug fix (non-breaking change which fixes an issue)
Testing steps
Done on CI
Checklist
[ ] make before_commit passes
[ ] updated documentation wherever necessary
[ ] added or modified tests if necessary
[ ] updated schemas and validators in insights-data-schemas in case of input/output change
Codecov Report
Base: 5.77% // Head: 5.77% // No change to project coverage :thumbsup:
Coverage data is based on head (d541080) compared to base (fe9eb96).
Patch has no changes to coverable lines.
Additional details and impacted files
@@ Coverage Diff @@
## master #317 +/- ##
======================================
Coverage 5.77% 5.77%
======================================
Files 15 15
Lines 848 848
======================================
Hits 49 49
Misses 799 799
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.
:umbrella: View full report at Codecov.
:loudspeaker: Do you have feedback about the report comment? Let us know in this issue.
|
gharchive/pull-request
| 2022-08-19T05:22:55 |
2025-04-01T04:55:34.493952
|
{
"authors": [
"codecov-commenter",
"tisnik"
],
"repo": "RedHatInsights/insights-results-aggregator-mock",
"url": "https://github.com/RedHatInsights/insights-results-aggregator-mock/pull/317",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
1410275407
|
feat(ESSNTL:3302): use API version 2
This will enable API version 2 across the app. Please test the application thoroughly against regressions.
@RedHatInsights/team-interact this PR needs a hero to get reviewed.
Codecov Report
Base: 47.64% // Head: 47.50% // Decreases project coverage by -0.14% :warning:
Coverage data is based on head (2dabbd1) compared to base (3bef964).
Patch coverage: 23.07% of modified lines in pull request are covered.
:exclamation: Current head 2dabbd1 differs from pull request most recent head 06203f7. Consider uploading reports for the commit 06203f7 to get more accurate results
Additional details and impacted files
@@ Coverage Diff @@
## master #80 +/- ##
==========================================
- Coverage 47.64% 47.50% -0.15%
==========================================
Files 68 68
Lines 848 840 -8
Branches 185 180 -5
==========================================
- Hits 404 399 -5
+ Misses 417 414 -3
Partials 27 27
Impacted Files
Coverage Δ
src/Components/ConfirmChangesModal/index.js
0.00% <ø> (ø)
src/Components/ConnectLog/LogNestedtable.js
0.00% <ø> (ø)
src/Components/ConnectLog/LogsTable.js
0.00% <0.00%> (ø)
src/Components/Services/Services.js
0.00% <0.00%> (ø)
src/Components/Services/permissionsConfig.js
0.00% <ø> (ø)
src/Routes/Dashboard/index.js
0.00% <0.00%> (ø)
src/store/actions.js
100.00% <ø> (ø)
src/store/currStateReducer.js
100.00% <ø> (ø)
src/api/index.js
100.00% <100.00%> (ø)
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.
:umbrella: View full report at Codecov.
:loudspeaker: Do you have feedback about the report comment? Let us know in this issue.
@adamrdrew FYI: the UI has started using API v2. You might want to update frontend.yaml file with this in case the backend has already released V2 to eph. environtments. thanks.
|
gharchive/pull-request
| 2022-10-15T19:57:46 |
2025-04-01T04:55:34.535965
|
{
"authors": [
"codecov-commenter",
"mkholjuraev"
],
"repo": "RedHatInsights/sed-frontend",
"url": "https://github.com/RedHatInsights/sed-frontend/pull/80",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
2135617449
|
Fix documentation link 404s in About Tasks popover
The popover links are broken (again). This PR fixes the links (again). It opens the documentation in a new browser tab/window which I think is a better user experience than opening them in the same tab/window.
Codecov Report
All modified and coverable lines are covered by tests :white_check_mark:
Comparison is base (cb291c2) 82.44% compared to head (1045762) 82.44%.
:exclamation: Current head 1045762 differs from pull request most recent head 577fa7f. Consider uploading reports for the commit 577fa7f to get more accurate results
Additional details and impacted files
@@ Coverage Diff @@
## master #149 +/- ##
=======================================
Coverage 82.44% 82.44%
=======================================
Files 69 69
Lines 1447 1447
Branches 461 461
=======================================
Hits 1193 1193
Misses 223 223
Partials 31 31
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
|
gharchive/pull-request
| 2024-02-15T04:34:14 |
2025-04-01T04:55:34.541216
|
{
"authors": [
"codecov-commenter",
"mhuth"
],
"repo": "RedHatInsights/tasks-frontend",
"url": "https://github.com/RedHatInsights/tasks-frontend/pull/149",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
1052495591
|
ZXingScannerView IsScanning not working as expected
Scanning doesn't work after IsScanning is set to false.
Steps to reproduce:
Scan e QR code
set IsScanning to false
set IsScanning back to true
After that it doesn't scan the QR code.
Happens with ZXing.Net.Mobile v3.1.0-beta2 and ZXing.Net.Mobile.Forms v3.1.0-beta2
Is there any update on this one?
Am observing the same issue. Also the scanning does not work if the ZXingScannerView is initially hidden and is displayed later eg. on a user action.
|
gharchive/issue
| 2021-11-13T00:27:54 |
2025-04-01T04:55:34.611028
|
{
"authors": [
"jirimatejka",
"xmak"
],
"repo": "Redth/ZXing.Net.Mobile",
"url": "https://github.com/Redth/ZXing.Net.Mobile/issues/1019",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
}
|
279859833
|
Black Screen after AppResume
Today I found out a Issue on Xamarin Forms (Android) - iOS works well.
Zxing is Initialized in the Constructor.
Permissions are correctly set.
Steps to Reproduce:
Navigate to the Scanner Page. (don't scan anything)
Click on the "Home" Button which brings you to the start Screen.
Navigate Back in the App with the Android "App-Switcher"
-> Now you get a Black Screen.
if I go back into the app the Method protected override void OnAppearing() is called.
here I set zxing.IsScanning = true;
If I navigate inside my App like Navigate away from scanner Page and navigate back - everything works pretty fine.
Zxing Version: 2.3.2 and also tested with 2.3.1
XamarinForms Version: 2.5.0.91635
Works on iOS 10-11 on iPhone SE, 7, X
Does not Work on Android 6,7 on Galaxy S7, Huawei P8, LG G3
I've debugged this a little bit and discovered it's because _cameraAnalyzer.SetupCamera() is only called in ZXingSurfaceView.SurfaceCreated, but SurfaceCreated isn't called on a resume. Therefore, the camera gets shut down during sleep in SurfaceDestroyed and never set up again. If you rotate the device while the scanner is black, the scanner starts right up again.
|
gharchive/issue
| 2017-12-06T18:32:42 |
2025-04-01T04:55:34.614647
|
{
"authors": [
"Darth-Alex",
"gtbuchanan"
],
"repo": "Redth/ZXing.Net.Mobile",
"url": "https://github.com/Redth/ZXing.Net.Mobile/issues/655",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
}
|
369906601
|
Add macOS Rendering support. Close #695
This will add rendering support for macOS clients.
There is also a sample that shows the use of it. It's extremely similar to iOS.
FYI the reason of why AppVeyor build fails might be https://github.com/Redth/ZXing.Net.Mobile/issues/772 , which I fixed in https://github.com/Redth/ZXing.Net.Mobile/pull/774 .
I think I've found a nitpick that would be great to include in this PR: adding the corresponding macOS bits to the nuspec files. Otherwise this wouldn't work automatically when including it via Nuget in a Xamarin.Forms project, whenever a new nuget version is published.
|
gharchive/pull-request
| 2018-10-14T14:18:37 |
2025-04-01T04:55:34.616960
|
{
"authors": [
"EBrown8534",
"knocte"
],
"repo": "Redth/ZXing.Net.Mobile",
"url": "https://github.com/Redth/ZXing.Net.Mobile/pull/785",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
}
|
1632576570
|
Group description
https://github.com/Reggeditt/JavaScriptCapstone/projects/1
we are a team of two (2) people.
Hi @Team
Your board setup is complete!
Congratulations! 🎉
Highlights
Good setup 💯
Optional suggestions
Every comment with the [OPTIONAL] prefix is not crucial enough to stop the approval of this PR. However, I strongly recommend you to take them into account as they can make your code better.
You can also consider:
N/A
Cheers and Happy coding!👏👏👏
Feel free to leave any questions or comments in the PR thread if something is not 100% clear.
Please, remember to tag me in your question so I can receive the notification @prolajumokeoni.
As described in the Code reviews limits policy you have a limited number of reviews per project (check the exact number in your Dashboard). If you think that the code review was not fair, you can request a second opinion using this form.
|
gharchive/issue
| 2023-03-20T17:37:51 |
2025-04-01T04:55:34.688301
|
{
"authors": [
"Reggeditt",
"prolajumokeoni"
],
"repo": "Reggeditt/JavaScriptCapstone",
"url": "https://github.com/Reggeditt/JavaScriptCapstone/issues/21",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1928713135
|
Add-marks-and-crosses-to-judge
ジャッジ画面の〇と×を追加しました
コンフリクトだけ直したんで、ちゃんと動くことを確認してもらったらマージして大丈夫です
|
gharchive/pull-request
| 2023-10-05T16:59:57 |
2025-04-01T04:55:34.696095
|
{
"authors": [
"ReiKato256",
"ituki-kawahashi"
],
"repo": "ReiKato256/2022-seminar-mur",
"url": "https://github.com/ReiKato256/2022-seminar-mur/pull/38",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
2556677793
|
Basic Layout 2
Ik ga een grid layout voor deze layout gebruiken.
Deze bronnen ga ik gebruiken:
https://web.dev/learn/css/layout/
https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column
|
gharchive/issue
| 2024-09-30T13:24:21 |
2025-04-01T04:55:34.754654
|
{
"authors": [
"RenzoWille"
],
"repo": "RenzoWille/layout-in-css",
"url": "https://github.com/RenzoWille/layout-in-css/issues/2",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1099913598
|
Export any vtkPolyData (point clouds) to 3D Tiles
@danlipsa
cc @aashish24
Meta issue to track the task of updating the VTK writer for 3D tiles to handle any vtkPolyData
After which. demo with the Mesh3D type in RGD and the new front end
@danlipsa, any progress on this?
Tracked on GitLab: https://gitlab.kitware.com/vtk/vtk/-/merge_requests/9030
Closing here
|
gharchive/issue
| 2022-01-12T06:01:21 |
2025-04-01T04:55:34.818530
|
{
"authors": [
"banesullivan"
],
"repo": "ResonantGeoData/RD-OASIS",
"url": "https://github.com/ResonantGeoData/RD-OASIS/issues/35",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
1196575180
|
Inconsistent dirty (uncommitted) code warning in debugger
Current behaviour/situation
When running the debugger from any branch (controller.sh debug), I get the following warning:
Potential controller version incompatibility or uncertain provenance
* controller built from dirty (uncommitted) code
* debugger running with dirty (uncommitted) code
---------------================= WARNING =================---------------
Expected state/behaviour
No warning when running the debugger with clean (committed) code.
Don't forget
[x] Put the issue in a milestone
[x] Assign it to one of the projects
[x] Add appropriate labels
[x] Mention dependent/blocked issues if any
Issue is related to the switch of spdlog from git submodule to conan package.
The git submodule was still present on my local machine and considered untracked:
$ git status
Sur la branche master
Votre branche est à jour avec 'origin/master'.
Fichiers non suivis:
(utilisez "git add <fichier>..." pour inclure dans ce qui sera validé)
software/gui/src/third_party/spdlog/
aucune modification ajoutée à la validation mais des fichiers non suivis sont présents (utilisez "git add" pour les suivre)
To get rid of the debugger warning, I manually removed the software/gui/src/third_party/spdlog/ folder from my local machine:
rm -r software/gui/src/third_party/spdlog
And voilà !
|
gharchive/issue
| 2022-04-07T21:12:38 |
2025-04-01T04:55:34.822823
|
{
"authors": [
"asmodai27"
],
"repo": "RespiraWorks/Ventilator",
"url": "https://github.com/RespiraWorks/Ventilator/issues/1202",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
659824421
|
Build 0.3 enclosed ventilator - display equipment panel - location CA
Assemble all components to Display Equipment Panel.
Document any issues/improvements identified during build.
This is 2 of 2 Ventilator Beta Builds
Sister ticket for CA build: #788
Sister ticket for CA build: #788
@inceptionev posted this in the mechanical channel:
"here’s how my PCB is mounted. The screen has bosses for mounting an RPi. I put standoffs into the bosses, then the PCB on top, with the long RPi standoffs now running through the PCB into the standoffs on the screen. The the Pi just mounts on top of that."
Build notes:
Nucleo USB programming port is hard to access.
Build complete.
|
gharchive/issue
| 2020-07-18T02:14:29 |
2025-04-01T04:55:34.826504
|
{
"authors": [
"DonnaCG",
"inceptionev",
"martukas"
],
"repo": "RespiraWorks/Ventilator",
"url": "https://github.com/RespiraWorks/Ventilator/issues/789",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
77110137
|
Data types used u16 vs u32
https://github.com/RevolutionSoftware/NDSRPG/blob/master/source/main.c#L17 should be using a uint32_t if I understand the guidelines correctly about performance..
We can look in to this later I suppose.
"Variables can be divided into two groups: worker variables (things in registers) and memory variables. Local variables and function parameters are worker variables. These should be 32-bit. Items that are in memory (arrays, globals, structs, and what not) could benefit from being as small as possible. Of course, memory variables still have to be loaded into registers before you can do anything with them. An explicit local variable may be useful here, but it depends on the case at hand." - Taken from http://www.coranac.com/tonc/text/first.htm#sec-notes section 3.3.2
I assume this was about the tilemaps? I think we can close this issue now, tilemap entries are stored as 16-bit values, we could probably get away with using u8 for the tilemaps and saving more space. Using u32 though would just be a waste of space.
|
gharchive/issue
| 2015-05-16T19:31:12 |
2025-04-01T04:55:34.877361
|
{
"authors": [
"chickendude",
"gpadd"
],
"repo": "RevolutionSoftware/NDSRPG",
"url": "https://github.com/RevolutionSoftware/NDSRPG/issues/1",
"license": "unlicense",
"license_type": "permissive",
"license_source": "bigquery"
}
|
289622836
|
Allow use of proxy settings?
Hi Rich. I'm following the Sapper Getting Started Guide and running: degit sveltejs/sapper-template my-app.
But I'm here on the office network behind a proxy - and the command hangs and eventually says "could not download".
I have my proxy settings set OK in my environment variables (http_proxy, https_proxy). I've checked that in the same terminal, I'm able to download the same URL OK using wget.
Would you be OK with adding the ability to deal with proxies?
I've previously done this using something like this:
import httpsProxyAgent from 'https-proxy-agent';
const httpsProxy = process.env.https_proxy;
let fetchOptions = null;
if (httpsProxy) {
// Log: 'Using proxy server': httpsProxy
fetchOptions = {agent: new httpsProxyAgent(httpsProxy)};
}
fetch(fooBarURL, fetchOptions)
If you'd be happy with the same approach - using https-proxy-agent? - I could write a PR if you like?
Long overdue, but I've finally merged #27 and released 2.3.0. Thanks!
Cool, cheers Rich! @YogliB sorry I missed your comment on the PR from ages ago!
When will 2.3.0 be released? Don't tell me it is 2022.
|
gharchive/issue
| 2018-01-18T13:09:41 |
2025-04-01T04:55:34.914970
|
{
"authors": [
"Rich-Harris",
"dainiel",
"poshaughnessy"
],
"repo": "Rich-Harris/degit",
"url": "https://github.com/Rich-Harris/degit/issues/26",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
}
|
1768949419
|
Colab notebook for Fastfaceswap
Hi @RichardErkhov
Are you planning to create a colab notebook for your repo? Those like mw without GPU are unable to test your repo.
Hi, working on it, thanks for idea!
|
gharchive/issue
| 2023-06-22T05:22:32 |
2025-04-01T04:55:34.919546
|
{
"authors": [
"RichardErkhov",
"maxbizz"
],
"repo": "RichardErkhov/FastFaceSwap",
"url": "https://github.com/RichardErkhov/FastFaceSwap/issues/1",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1045445842
|
快捷键F10/F11操作全窗口和全屏对笔记本用户不太方便
描述你想要解决的问题或者功能的使用场景
幻哥,F10/F11的快捷键操作对笔记本有点难搞,笔记本F1-F12本身有功能的(声音和亮度控制的几个F功能键比较常用),每次按Fn+F10/F11来操作全窗口和全屏有点难操作,跨度略大,有打算利用键盘左边区域的组合键进行快捷操作么
描述解决方案
建议用键盘左边区域的组合键进行全窗口和全屏操作
描述可能的替代方案
备注和截图
建议更换电脑/ 😄
建议外接键盘/调整视频默认播放模式设置
建议将电脑键盘FN功能键默认值调整为fn而非功能。
|
gharchive/issue
| 2021-11-05T04:34:37 |
2025-04-01T04:55:34.922075
|
{
"authors": [
"AAAAAnguslu",
"AnLazyOtter",
"heartacker",
"qianrongze"
],
"repo": "Richasy/Bili.Uwp",
"url": "https://github.com/Richasy/Bili.Uwp/issues/600",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
314499776
|
Method to access Epoch seconds
The current second command returns a value between 0 and 59 - the number of seconds since the start of the last minute. This doesn't let you calculate the elapsed time between two events.
Add a new epochSeconds command that returns the number of whole seconds since 1 Jan 1970
PR Merged
|
gharchive/issue
| 2018-04-16T04:42:25 |
2025-04-01T04:55:34.923284
|
{
"authors": [
"RickMeasham"
],
"repo": "RickMeasham/WoofJS",
"url": "https://github.com/RickMeasham/WoofJS/issues/1",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
522461839
|
App Crash
I can generate files and client using nSwag studio from my local api successfully. If I try to generate the client code via the cli or MsBuild (with the same nswag file) task it crashes?
I've update to the latest version but still happens? I've attached the nswag file.
Below is the error from the event viewer and the info message that comes with it (these repeat whilst it's trying to run).
Faulting application name: NSwag.exe, version: 13.1.3.0, time stamp: 0x972da409
Faulting module name: ntdll.dll, version: 10.0.17134.799, time stamp: 0x7f828745
Exception code: 0xc0000005
Fault offset: 0x0000000000024989
Faulting process id: 0x5868
Faulting application start time: 0x01d59a613227de25
Faulting application path: C:\Program Files (x86)\Rico Suter\NSwagStudio\Win\NSwag.exe
Faulting module path: C:\WINDOWS\SYSTEM32\ntdll.dll
Report Id: c407eec2-3066-4d30-8381-1bea4980237e
Faulting package full name:
Faulting package-relative application ID:
Info msg from event viewer
Fault bucket , type 0
Event Name: APPCRASH
Response: Not available
Cab Id: 0
Problem signature:
P1: NSwag.exe
P2: 13.1.3.0
P3: 972da409
P4: ntdll.dll
P5: 10.0.17134.799
P6: 7f828745
P7: c0000005
P8: 0000000000024989
P9:
P10:
These files may be available here:
C:\ProgramData\Microsoft\Windows\WER\ReportQueue\AppCrash_NSwag.exe_a3f1c71ff99bae292ffa31c6c49e4ebd37fb474_17e7bd99_213478dd
Analysis symbol:
Rechecking for solution: 0
Report Id: c407eec2-3066-4d30-8381-1bea4980237e
Report Status: 4
Hashed bucket:
Cab Guid: 0
Attached files:
failing.zip
The msbuild attempt fails with this msg
Error MSB3073: The command ""D:\PathRemovedForBrevity\NuGet\Repository\NSwag.MSBuild.13.1.3\build../tools/Win/NSwag.exe" run LocationClientProxy.nswag /variables:Configuration=Release" exited with code -1073741819
This has previously worked, the file hasn't changed?
Found out this was due to a new AV installation roll out that I wasn't aware of
|
gharchive/issue
| 2019-11-13T20:42:58 |
2025-04-01T04:55:34.934645
|
{
"authors": [
"uncleromania"
],
"repo": "RicoSuter/NSwag",
"url": "https://github.com/RicoSuter/NSwag/issues/2521",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1593185306
|
#3: Contact Page: added contact component, route and fake navbar - Chandre De Wet
Naming Rules
Name your PR like this: ISSUENUMBER-TITLE-YOURNAME
Contact Page: added contact component, route and fake navbar - Chandre De Wet
Description
Write a summary of your change. Explain why you have made it.
Related to
Make sure you include the issue number with a hash sign # so Github can link this PR to the right issue, like this:
#3
Fixes #3
Checklist:
[ ] My code follows the style guidelines of this project
[ ] I have carefully reviewed my own code
[ ] I have commented my code
[ ] I have updated any documentation
Hi Guys, I have updated somethings, the media queries and removed backend work, please can u review?
|
gharchive/pull-request
| 2023-02-21T10:05:00 |
2025-04-01T04:55:34.986943
|
{
"authors": [
"chandredewet"
],
"repo": "Riyaazct/no-bugs-edufocus-za",
"url": "https://github.com/Riyaazct/no-bugs-edufocus-za/pull/4",
"license": "ISC",
"license_type": "permissive",
"license_source": "github-api"
}
|
941009835
|
🛑 vms is down
In e6bcafb, vms (https://vms-api.sensoro.com/) was down:
HTTP code: 0
Response time: 0 ms
Resolved: vms is back up in 022da0f.
|
gharchive/issue
| 2021-07-09T19:19:47 |
2025-04-01T04:55:34.994912
|
{
"authors": [
"Roarain"
],
"repo": "Roarain/upptime",
"url": "https://github.com/Roarain/upptime/issues/47",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
624090342
|
How can run the project with out composer in the ubuntu host ?
Hi probably a very silly question.
I have my dev envirourment with ubuntu but not php or composer because the idea it is runing ngix or apache in a container and not a host.
How this supost to work clone the repo ?
Sorry it was a very silly question.
I just clone the repo
added salt in the env file and run docker all working
thanks
|
gharchive/issue
| 2020-05-25T06:59:20 |
2025-04-01T04:55:34.998348
|
{
"authors": [
"eduardo-g-silva"
],
"repo": "RobDWaller/dusty",
"url": "https://github.com/RobDWaller/dusty/issues/7",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
365013308
|
New version of dpkg creates packages that aren't compatible with older versions of dpkg by default
--[no-]uniform-compression
Specify that the same compression parameters should be used for all archive members (i.e. control.tar and data.tar;
since dpkg 1.17.6). Otherwise only the data.tar member will use those parameters. The only supported compression types
allowed to be uniformly used are none, gzip and xz. The --no-uniform-compression option disables uniform compression
(since dpkg 1.19.0). Uniform compression is the default (since dpkg 1.19.0).
Beaglebones with Wheezy have dpkg 1.16.18, which does not support this feature that was added in 1.17.6, and is now default as of 1.19.
The KERNEL/scripts/package/builddeb script should be updated to specify --no-uniform-compression if the dpkg version is 1.19 or greater.
I suppose, we could hack that in.. But how long do we really want to support wheezy?
https://wiki.debian.org/LTS
Regards,
For reference, the last change i did to our wheezy repo was on: 2018-03-16 22:04:59
https://rcn-ee.net/repos/debian/log/wheezy.log
Here is what is in the repo:
https://gist.github.com/RobertCNelson/ecca7eecd61615aae3eb8f9e2b5bbb47
Regards,
Yes, you're right Wheezy is ancient and outdated. I mostly just wanted to report this somewhere so that people who experience the same problem won't waste a day trying to figure it out (like I did). :)
The error message looks like so:
dpkg-deb: error: archive 'connman_1.36-1_armhf.deb' contains not understood data member control.tar.xz, giving up
Could I submit a PR to fix this? Which branch would it go on?
I notice that you still occasionally backport odds and ends to 3.8.13 kernel which I think is targeted at Wheezy. 3.8.13-bone86 was released on 2018-07-31.
We also targeted 3.8.13-bone86 with Jessie/Stretch.. glibc/systemd in buster needs a new kernel..
Here is where dpkg get's called:
https://github.com/RobertCNelson/stable-kernel/blob/master/3rdparty/packaging/builddeb#L32-L34
Regards,
I see. If I were to submit a PR to resolve this issue on that repository, would you be amenable to merging it in at your convenience? If not, no worries, we can close this issue.
I think it would be best to wire it up into "yakbuild" as that's where i point users today, when they want to build a really old kernel image. (It's essentially replaced all the script backports i use to do on x-number of branches..)
https://github.com/RobertCNelson/yakbuild/
I'm thinking something after "git_shallow" here:
https://github.com/RobertCNelson/yakbuild/blob/master/scripts/git.sh
Regards,
I forked yakbuild and created a branch with a single commit.
https://github.com/MarkForged/yakbuild/commit/0685caa97c3affba3e87d37e089a228a0378a8e6
Not sure if this is what you had in mind, but if you like, feel free to grab it.
I'll close this with the understanding that wheezy is ancient.
|
gharchive/issue
| 2018-09-28T19:30:56 |
2025-04-01T04:55:35.018474
|
{
"authors": [
"RobertCNelson",
"misterhayman"
],
"repo": "RobertCNelson/bb-kernel",
"url": "https://github.com/RobertCNelson/bb-kernel/issues/55",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
}
|
403731198
|
Move to typings bundled with sequelize
Since sequelize@5 will provide its own typings, we should use these typings for sequelize-typescript@1 in order to prevent conflicts.
Released with sequelize-typescript@1.0.0-alpha.8
|
gharchive/issue
| 2019-01-28T09:58:42 |
2025-04-01T04:55:35.024661
|
{
"authors": [
"RobinBuschmann"
],
"repo": "RobinBuschmann/sequelize-typescript",
"url": "https://github.com/RobinBuschmann/sequelize-typescript/issues/529",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
338351251
|
When parent container has overflow set, popper positioning screws up
When the parent container has overflow: auto or overflow: scroll set, the placement of the poppers is incorrect.
https://jsfiddle.net/ec4o2wt0/
How can I fix this?
I see a similar issue here perhaps https://github.com/FezVrasta/popper.js/issues/248
After seeing this issue,, I have tried popper(trigger="click", boundaries-selector="viewport") but the problem still persists.
After a search around, I saw a similar issue on tippy.js (which uses popper.js) and worked out how to solve this:
popper(trigger="click", :options="{ modifiers: { preventOverflow: {escapeWithReference: true}}}")
@danchristian thanks
|
gharchive/issue
| 2018-07-04T18:15:31 |
2025-04-01T04:55:35.027777
|
{
"authors": [
"RobinCK",
"danchristian"
],
"repo": "RobinCK/vue-popper",
"url": "https://github.com/RobinCK/vue-popper/issues/42",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
}
|
577064215
|
not working on Android
On android the validation doesn't work and some masks are shifted to the right of the entered text
With a simple test
jQuery('#numberField').inputmask('999');
You can enter 3 digit then add letters (onKeyValidation is not triggerd for letters).
Note than onBlur correct the input removing letters.
Here an example:
https://jsfiddle.net/jcplat/hdtj9n2p/19/
On the example first input, mask 'www' with w validator: "[A-Za-z0-9]", the mask is shifted right,
eg : Ffff___
onBlur also correct the entry.
Both inputs works fine when I use physical keybord across chrome remote inspector, onKeyValidation is then always triggered.
OS, Browser
Android 6.0 / Chrome/74.0.3729.157
Android 8.1.0 / Chrome/79.0.3945.136
Inputmask version 5.03
(Same issue with 2.5.10)
@jc-plat,
For the numeric mask you can set the inputmode: "numeric" option which selects the numeric keyboard on android and solves the problem.
For the mixed mask I'm still searching for a proper solution besides the current implementation. But it is due to the predictive text which I cannot disable or control.
|
gharchive/issue
| 2020-03-06T17:08:49 |
2025-04-01T04:55:35.032147
|
{
"authors": [
"RobinHerbots",
"jc-plat"
],
"repo": "RobinHerbots/Inputmask",
"url": "https://github.com/RobinHerbots/Inputmask/issues/2287",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
}
|
1884827717
|
Added info to StarterGui and changed possessive API naming
Changes
Added a info box to StarterGui mentioning how it will not work with CharacterAutoLoads set to false and removed the possessive API name in PlayerGui.
Checks
By submitting your pull request for review, you agree to the following:
[ X] This contribution was created in whole or in part by me, and I have the right to submit it under the terms of this repository's open source licenses.
[ X] I understand and agree that this contribution and a record of it are public, maintained indefinitely, and may be redistributed under the terms of this repository's open source licenses.
[ X] To the best of my knowledge, all proposed changes are accurate.
Thanks for the submission! I've merged it.
|
gharchive/pull-request
| 2023-09-06T22:15:17 |
2025-04-01T04:55:35.037296
|
{
"authors": [
"007David007YT",
"IgnisRBX"
],
"repo": "Roblox/creator-docs",
"url": "https://github.com/Roblox/creator-docs/pull/120",
"license": "CC-BY-4.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
342322494
|
Emailová notifikace o zesplatnění obsahuje špatné údaje
Špatně je spočítáno počet zbývajících splátek, chybí informace o tom, kolik jich bylo zaplaceno, anebo kdy byla půjčka investována (např údaj Doba držení při splacení půjčky)
Například následující splátka byla zafinancována dne 29.6.2017. Tohle je text notifikačního mailu:
Půjčka č. 100891 (B, 84 m.) byla zesplatněna
Půjčka č. 100891 Auto byla zesplatněna.
Zbývá splátek: 1 z 84
Zbývající jistina: 1 809,35 Kč z 2 000 Kč
Parametry půjčky
Rating: B
Výše úvěru: 75 000 Kč
Délka splácení: 84 měsíců
Účel: Auto-moto
Klient: Zaměstnanec, Zlínský kraj
Pojištěno: Ne.
Možná to vrací špatně Zonky, v Excelu jsou také podobná čísla. Možná je to dobře, protože má přijít jen jedna velká splátka, ale pak mi to ale nic neříká.
Ideálně by bylo pěkné vidět - jak dlouho půjčku držím, jak dlouho je v prodlení (anebo počet zaplacených splátek).
Dalo by se s tím něco udělat?
Tohle je problém. :-( U zesplatněných nikde v systému není napsáno, kdy jste je zainvestoval. Dokonce tam není ani napsáno, kdy byla zesplatněna. Ta jednička taky jde přímo ze Zonky. Nicméně souhlasím, že to není ideální - chtělo by to, aby se s tím robot dokázal vypořádat nějak lépe.
Zonky export do Excelu to odněkud zjistí - datum zafinancování částky uvede
správně. To se samozřejmě může lišit od data, kdy jsem financoval já, ale
prakticky jen v případě, že jsem participaci koupil na sekundárním trhu.
Nedalo by se z tohoto vyjít? Proč vlastně Zonky dává po zesplatnění ty
podivné čísla? Zkusím to zjistit.
st 18. 7. 2018 v 16:29 odesílatel Lukáš Petrovický notifications@github.com
napsal:
Tohle je problém. :-( U zesplatněných nikde v systému není napsáno, kdy
jste je zainvestoval. Dokonce tam není ani napsáno, kdy byla zesplatněna.
Ta jednička taky jde přímo ze Zonky. Nicméně souhlasím, že to není ideální
chtělo by to, aby se s tím robot dokázal vypořádat nějak lépe.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
https://github.com/RoboZonky/robozonky/issues/281#issuecomment-405951138,
or mute the thread
https://github.com/notifications/unsubscribe-auth/AUU4pkFM9x1naz43eMtBPyzQATFDoQhDks5uH0ZSgaJpZM4VUkpu
.
Ještě jednu věc jsem zapomněl - bylo by pěkné tam mít uvedeny informace z
vymáhaní, podobně jako u půjček v prodlení...
st 18. 7. 2018 v 16:36 odesílatel Miroslav Šantavý msantavy@post.cz
napsal:
Zonky export do Excelu to odněkud zjistí - datum zafinancování částky
uvede správně. To se samozřejmě může lišit od data, kdy jsem financoval já,
ale prakticky jen v případě, že jsem participaci koupil na sekundárním
trhu. Nedalo by se z tohoto vyjít? Proč vlastně Zonky dává po zesplatnění
ty podivné čísla? Zkusím to zjistit.
st 18. 7. 2018 v 16:29 odesílatel Lukáš Petrovický <
notifications@github.com> napsal:
Tohle je problém. :-( U zesplatněných nikde v systému není napsáno,
kdy jste je zainvestoval. Dokonce tam není ani napsáno, kdy byla
zesplatněna. Ta jednička taky jde přímo ze Zonky. Nicméně souhlasím, že to
není ideální - chtělo by to, aby se s tím robot dokázal vypořádat nějak
lépe.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
https://github.com/RoboZonky/robozonky/issues/281#issuecomment-405951138,
or mute the thread
https://github.com/notifications/unsubscribe-auth/AUU4pkFM9x1naz43eMtBPyzQATFDoQhDks5uH0ZSgaJpZM4VUkpu
.
Posílám diskuzi na Zonky chatu o významu toho čísla. Mně to tedy pořad není jasné, a asi šli ze Zonky už domů. Pokud Vy to z toho pochopíte, super.
Dobrý den, dnes se mi zesplatnila další půjčka - zonky128381. Vždy mě zarazilo, že zmizel údaj, kolik zbývá splátek a místo něj naskočilo jiné, malé, číslo. Co to číslo znamená?
V tomto případě tedy 1 z 84. V jiném případě např 5 ze 33.
Karolína avatar
Dobrý den, Miroslave,
to dělá to zesplatnění. To, že zmizí počet půjček z 84 na 1, může být i odstoupení od smlouvy, znamená to, že klient nemá nadále splátkový kalendář, ale částku vrátí jednorázově v případě 5 z 33, se jedná o počet proběhlých splátek vůči celkovému počtu splátek, které měl klient původně uhradit.
Karolína
Tomu nerozumím. Takže když je to 1 z 84, tak to v budoucnu vrátí jednorázově, když je psáno 5 z 33 nebo 2 z 19 tak v minulost zaplatil 5 nebo 2 splátky?
Karolína avatar
Pokud je to např. 5 z 33, tak klient uhradil v minulosti 4 splátky a ta 5. tedy bude poslední a bude to celá zbývající jistina. V případě 1 z 84, k žádné splátce nedošlo a bude tedy jen jedna "splátka", která představuje celou jistinu + úrok za dny, kdy byla půjčka aktivní.
Takže to číslo udává počet splátek před zesplatněním, plus tu jednu poslední velkou splátku kvůli zesplatnění?
Tj. klient zaplatil 4 splátky, pak se půjčka zesplatnila, a poté má zaplatit pátou poslední?
Karolína avatar
Ano, v podstatě to tak je, akorát to není klasická splátka ale celá zbývající jistina.
Jasně, zbývající část.
Ale myslím, že to tak není.
Karolína avatar
A jak myslíte že to je? :)
Právě u té dnes zesplatněné, kde je 1 z 84 nějaké splátky v minulosti rozhodně proběhly, u "Vrátilo se mi" mám uvedeno 190,65 Kč.
Podle toho, co jsme si řekli, by tam žádné splátky v minulosti být neměly, měla by tam být nula.
Podle exportu do Excelu proběhlo 13 splátek.
Karolína avatar
Nemáte snímek obrazovky?
Můžu udělat. Jaké obrazovky,
?
Karolína avatar
Kde máte ta čísla, která nám nesedí :)
A ještě transakce této půjčky v Excelu:
Karolína avatar
Už rozumím za čísla udávají, že zbývá 1 z 84 splátek (celá částka zesplatněna).
Já pořád ne :). Co tedy znamená o řádek níž 7 z 84?
Před 26 min.. Zatím není viditelné
@msantavy Viděl to takhle:
Zbývající počet splátek z notifikace zmizí úplně. Soudě podle konverzace výše, to číslo je jednak k ničemu, druhak aktivně matoucí.
Místo toho přibyde datum zainvestování - tj. buď první investice, nebo nákupu na sekundáru.
Přidám informace o vymáhání.
Co Vy na to?
Souhlasím, jen to číslo ještě řeším.
Vypadá to, že v případě, že je tam 1, znamená to, že zesplatnění vyšlo ze strany klienta, který odstoupil od smlouvy. Což by pak nebylo snad negativní, a snad by pak půjčka ani nemusela být vedena jako problematická. Ještě si to potvrzuju a dojasňuju na chatu. Je to těžké. Řeší se to různě s kolegyněma. Včera jsem bohužel neměl moc času se tomu věnovat.
Stále řeším. Osobně si začínám myslet, že to je součet jedné poslední velké splátky zbývající jistiny a počtu předem neuhrazených splátek. Jenže mi to zatím nikdo takto nepotvrdil.
Jo, jenže takhle to neřekli, a uvádějí příklady, které neodpovídají skutečnostem. Jako např. posledně zmiňovali, že to může znamenat, když klient během 30 dnů požádá o zrušení půjčky.
Pak bych snad ale řekl, že se ani nejedná ani o problematickou půjčku, ani o zesplatnění. Ale záleží od definice...
Tak jsme se dobrali k závěru. Číslo je součet jedné poslední velké splátky zbývající jistiny (zesplatněné) a počtu dříve (před zesplatněním) neuhrazených splátek. Případný splátkový kalendář v rámci insolvence není a nebude v tomto čísle zohledněn.
Číslo tedy jaksi něco smysluplného udává, otázka jak to chápou ostatní. Zonky říkali, že zapracují na zpřehlednění, ale znáte je.
Za mě bych to číslo v reportu nechal a přidal:
datum zainvestování - tj. buď první investice, nebo nákupu na sekundáru
informace o vymáhání
Co myslíte?
Číslo vlastně říká, s kolika splátkami je klient v prodlení. Např. 4 z 84 říká, že 3 splátky chybí. 1 z 84 říká pravděpodobně, že dlužník sám vyhlásil insolvenci a Zonky půjčku zesplatnilo. Ale neměla by chybět žádná splátka.
|
gharchive/issue
| 2018-07-18T13:12:38 |
2025-04-01T04:55:35.082848
|
{
"authors": [
"msantavy",
"triceo"
],
"repo": "RoboZonky/robozonky",
"url": "https://github.com/RoboZonky/robozonky/issues/281",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
}
|
2474945801
|
docs: add code of conduct
Purpose
Adds Code of conduct
Proposed Changes
Adds Code of conduct
Issues
N/A
Testing
N/A
Merged - any external feedback will be applied separately
|
gharchive/pull-request
| 2024-08-20T07:43:53 |
2025-04-01T04:55:35.134178
|
{
"authors": [
"adamdbrw",
"rachwalk"
],
"repo": "RobotecAI/rai",
"url": "https://github.com/RobotecAI/rai/pull/152",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
246328683
|
The list of messages show "User not found" before loading the user's username and avatar
Your Rocket.Chat.Android version: 1.0.16 (28)
Mobile device model and OS version: Sony Xperia E5 (F3311) - Android 6.0
Steps to reproduce 01:
The app is closed
User opens the app, waits for authentication
On the same channel, the list of users will refresh to "User not found" and then a few seconds later change again to the correct username and avatar
Steps to reproduce 02:
The app is opened
User is authenticated
User is looking a channel
User changes to another channel
The list of users will refresh to "User not found" and then a few seconds later change again to the correct username and avatar
Screenshot
@rafaelks I think this behavior was already there. I don't think it's a new bug, the only difference is that before there was no placeholder avatar showing and no user not found text, just blank there and there.
That's true, the names disappeared on older versions..
Yes, the behavior was already there, you're right. @luciofm found that in Realm query the User reference is coming null.
|
gharchive/issue
| 2017-07-28T12:05:52 |
2025-04-01T04:55:35.156692
|
{
"authors": [
"leonardoaramaki",
"luciofm",
"rafaelks"
],
"repo": "RocketChat/Rocket.Chat.Android",
"url": "https://github.com/RocketChat/Rocket.Chat.Android/issues/368",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
402523254
|
New Line in Message Input box on every character entered
My Setup
Operating System: MacOS 10.14.2
App Version: 2.14.6
Installation type: DMG
[ x ] I have tested with the latest version
[ x ] I can simulate the issue easily
Description
I am having an issue where input area for messages on chat would auto expand (new line) on each character being entered into it. It happens randomly - but one thing I noticed is usually when the window has been resized.
Current Behavior
New line and input box for message expand as a character is being typed in
Expected Behavior
Only expand when line is filled
Pretty sure this is related to the Rocket.Chat server. https://github.com/RocketChat/Rocket.Chat/issues/11904
|
gharchive/issue
| 2019-01-24T03:11:29 |
2025-04-01T04:55:35.160605
|
{
"authors": [
"esolix",
"frdmn"
],
"repo": "RocketChat/Rocket.Chat.Electron",
"url": "https://github.com/RocketChat/Rocket.Chat.Electron/issues/1069",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
414336129
|
hide/show on tray icon
My Setup
Operating System: Xubuntu 18.04 LTS
App Version: 2.15.0
Installation type: deb 64bit
[x] I have tested with the latest version
[x] I can simulate the issue easily
Description
With the installation of version 2.15.0, the application can no longer be fetched to the foreground with a single click, rather two clicks are necessary, on the icon in the tray and then on "show". Personally, I find this unmanageable; one unnecessary click.
Besides, this is unusual behavior. None of the application in my tray react like this, just a click for foreground or background.
Current Behavior
One click on the tray icon -> then "show" to bring the window to the foreground.
Expected Behavior
Just a single click on the tray icon to bring the window to the foreground or move it to the background.
I'm surprised that the previous versions worked fine on Xubuntu. According to Electron docs:
When app indicator is used on Linux, the click event is ignored.
Which is the standard on Ubuntu 18.04. Is it possible that some GTK component was upgraded too?
@tassoevan I had no problems with all Electron versions since I change to XUbuntu over a year ago.
After a few days it's really a bit annoying when you have to click on the tray icon twice each time you open the client.
I just confirmed that 2.14.7 was triggering the click event. I'm still checking what have changed besides the update from Electron 2 to 4.
Removing libappindicator3-1 restored the old behavior, but it's a critical dependency for Xubuntu...
https://github.com/electron/electron/issues/14941
yes, this is duplicate to #14941. I will close this issue.
yes, this is duplicate to #14941. I will close this issue.
Ah, that is the electron repo, reopend it.
I have the same problem in ubuntu 18.04 with gnome 3.28.2.
Any news? Seems like the behaviour didn't change (or is broken again)?
Client is unusable for me past 2.14.7 because of this. Are there any plans to fix, or should one give up hope?
Please test if the latest release did solve this. If not please reopen the issue or create a new one and tell us. I will be closing this one for now.
Thank you!
|
gharchive/issue
| 2019-02-25T22:23:18 |
2025-04-01T04:55:35.169591
|
{
"authors": [
"araujorm",
"jeanfbrito",
"localguru",
"oceanBT",
"psy",
"tassoevan"
],
"repo": "RocketChat/Rocket.Chat.Electron",
"url": "https://github.com/RocketChat/Rocket.Chat.Electron/issues/1107",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
538627096
|
2.17.1 Mac puts Electron.dSYM in /Applications
My Setup
Operating System: MacOS 10.14.6
App Version: 2.17.1
Installation type: .dmg
[X ] I have tested with the latest version
[X ] I can simulate the issue easily
Description
Install RocketChat 2.17.1 for Mac via .pkg and launch. The Electron.dSYM file is created in /Applications
Current Behavior
Install RocketChat 2.17.1 for Mac via .pkg and launch. The Electron.dSYM file is created in /Applications
Expected Behavior
It should NOT put that file there.
This happens for me as well
Please test if the latest release did solve this. If not please reopen the issue or create a new one and tell us. I will be closing this one for now.
Thank you!
2 years later and you’re just now getting to this? Wow.
|
gharchive/issue
| 2019-12-16T20:10:34 |
2025-04-01T04:55:35.173571
|
{
"authors": [
"jeanfbrito",
"krispayne",
"mcclint680"
],
"repo": "RocketChat/Rocket.Chat.Electron",
"url": "https://github.com/RocketChat/Rocket.Chat.Electron/issues/1448",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1879419465
|
Transform signal
May I ask why we need to perform log10over3 scaling on the spectrum signal?
Hi Qiong-Yang,
Thanks for your interest. The precise mathematical definition of the transformation that we used is $y=\log_{10}(x+1)/3$. Empirically, we found that using this preprocessing on the training spectra improves our model's performance on the test spectra, so that's the main reason we include it.
Intuitively, the log transformation reduces the importance of very large peaks, and increases the importance of very small peaks. This might make the model better at predicting low-intensity peaks that would otherwise not contribute very much to the loss. It is not uncommon for mass spectra to have low entropy (in other words, contain one or two high intensity peaks), and in these cases it is very easy for the model to get a good score. Log transformation might improve the model's ability to accurately predict the smaller peaks in such spectra by increasing the penalty for missing them.
We were inspired by Zhu et al to apply this transformation, I recommended giving their paper a read if you haven't already.
|
gharchive/issue
| 2023-09-04T02:56:47 |
2025-04-01T04:55:35.253002
|
{
"authors": [
"Qiong-Yang",
"adamoyoung"
],
"repo": "Roestlab/massformer",
"url": "https://github.com/Roestlab/massformer/issues/2",
"license": "BSD-2-Clause",
"license_type": "permissive",
"license_source": "github-api"
}
|
1435434615
|
Warhammer fantasy 4e sheet Xp issue (WFRP4e)
Hello love the sheet. been using it for my players for almost a year now. we ran into a problem where Toughness characteristic is adding exp back to the player. other players say other characteristics have the problem but i have not been able to recreate that. if you can please fix it the villager class of the group will forever be grateful, thank you!
Hi, i guessing you mean my unofficial "Warhammer 4e Character Sheet". Then i'm aware of this.
And it should be fixed in the upcoming PR #11174 proably on Monday now.
What happens is its reflecting the last selection, rather the current one.
yep thats what i meant and thank you!
|
gharchive/issue
| 2022-11-04T01:38:03 |
2025-04-01T04:55:35.260520
|
{
"authors": [
"Djjus",
"zblahz"
],
"repo": "Roll20/roll20-character-sheets",
"url": "https://github.com/Roll20/roll20-character-sheets/issues/11173",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1456521219
|
[Shadowrun5thA] first step for herolab import
Submission Checklist
Required
[ ] The pull request title clearly contains the name of the sheet I am editing.
[ ] The pull request title clearly states the type of change I am submitting (New Sheet/New Feature/Bugfix/etc.).
[ ] The pull request makes changes to files in only one sub-folder.
[ ] The pull request does not contain changes to any json files in the translations folder (translation.json is permitted)
New Sheet Details
The name of this game is: < > (i.e. Dungeons & Dragons 5th Edition, The Dresden Files RPG)
The publisher of this game is: < > (i.e. Wizards of the Coast, Evil Hat)
The name of this game system/family is: < > (i.e. Dungeons & Dragons, FATE)
[ ] I have followed the Character Sheets Standards when building this sheet.
[ ] This sheet has been made on behalf of, or by, the game's publisher.
[ ] This game is not a traditionally published game, but a copy of the game rules can be purchased/downloaded/found at: < >
[ ] This sheet is for an unofficial fan game, modification to an existing game, or a homebrew system.
Changes / Description
Character Sheet Info Roll20 Internal Use only.
|
gharchive/pull-request
| 2022-11-19T14:49:11 |
2025-04-01T04:55:35.266020
|
{
"authors": [
"Stexinator",
"roll20deploy"
],
"repo": "Roll20/roll20-character-sheets",
"url": "https://github.com/Roll20/roll20-character-sheets/pull/11237",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1679763599
|
[Tormenta20 - Game of The Year ]Added CD Calculation
Submission Checklist
Required
[x ] The pull request title clearly contains the name of the sheet I am editing.
[x ] The pull request title clearly states the type of change I am submitting (New Sheet/New Feature/Bugfix/etc.).
[x ] The pull request makes changes to files in only one sub-folder.
[x ] The pull request does not contain changes to any json files in the translations folder (translation.json is permitted)
Changes / Description
Added CD Calculation in Magic Box
Character Sheet Info Roll20 Internal Use only.
|
gharchive/pull-request
| 2023-04-22T22:48:17 |
2025-04-01T04:55:35.268979
|
{
"authors": [
"RoenMidnight",
"roll20deploy"
],
"repo": "Roll20/roll20-character-sheets",
"url": "https://github.com/Roll20/roll20-character-sheets/pull/11747",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2071435789
|
update root.html and json
Submission Checklist
Required
[ ] The pull request title clearly contains the name of the sheet I am editing.
[ ] The pull request title clearly states the type of change I am submitting (New Sheet/New Feature/Bugfix/etc.).
[ ] The pull request makes changes to files in only one sub-folder.
[ ] The pull request does not contain changes to any json files in the translations folder (translation.json is permitted)
Changes / Description
Translations for "the harrier" and "the ranger" playbooks
Character Sheet Info Roll20 Internal Use only.
|
gharchive/pull-request
| 2024-01-09T00:33:20 |
2025-04-01T04:55:35.271538
|
{
"authors": [
"akibi90",
"roll20deploy"
],
"repo": "Roll20/roll20-character-sheets",
"url": "https://github.com/Roll20/roll20-character-sheets/pull/12452",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2196025683
|
[Star Wars Saga Edition] Checkbox fix for Chrome and minor CSS changes
Submission Checklist
Required
[x] The pull request title clearly contains the name of the sheet I am editing.
[x] The pull request title clearly states the type of change I am submitting (New Sheet/New Feature/Bugfix/etc.).
[x] The pull request makes changes to files in only one sub-folder.
[x] The pull request does not contain changes to any json files in the translations folder (translation.json is permitted)
New Sheet Details
The name of this game is: < > (i.e. Dungeons & Dragons 5th Edition, The Dresden Files RPG)
The publisher of this game is: < > (i.e. Wizards of the Coast, Evil Hat)
The name of this game system/family is: < > (i.e. Dungeons & Dragons, FATE)
[ ] I have followed the Character Sheets Standards when building this sheet.
[ ] This sheet has been made on behalf of, or by, the game's publisher.
[ ] This game is not a traditionally published game, but a copy of the game rules can be purchased/downloaded/found at: < >
[ ] This sheet is for an unofficial fan game, modification to an existing game, or a homebrew system.
Changes / Description
Character Sheet Info Roll20 Internal Use only.
A number of small tweaks to checkboxes. They should be in a stable, aesthetically pleasing state right now.
|
gharchive/pull-request
| 2024-03-19T21:07:39 |
2025-04-01T04:55:35.277276
|
{
"authors": [
"LilLiteralist",
"roll20deploy"
],
"repo": "Roll20/roll20-character-sheets",
"url": "https://github.com/Roll20/roll20-character-sheets/pull/12730",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2262136395
|
[Star Wars Saga Edition] Critical bugfix for skills
Submission Checklist
Required
[x] The pull request title clearly contains the name of the sheet I am editing.
[x] The pull request title clearly states the type of change I am submitting (New Sheet/New Feature/Bugfix/etc.).
[x] The pull request makes changes to files in only one sub-folder.
[x] The pull request does not contain changes to any json files in the translations folder (translation.json is permitted)
New Sheet Details
The name of this game is: < > (i.e. Dungeons & Dragons 5th Edition, The Dresden Files RPG)
The publisher of this game is: < > (i.e. Wizards of the Coast, Evil Hat)
The name of this game system/family is: < > (i.e. Dungeons & Dragons, FATE)
[ ] I have followed the Character Sheets Standards when building this sheet.
[ ] I have authorization from the game's publisher to make this an official sheet on Roll20 with their name attached.
[ ] This game is not a traditionally published game, but a copy of the game rules can be purchased/downloaded/found at: < >
[ ] This sheet is for an unofficial fan game, modification to an existing game, or a homebrew system.
Changes / Description
Character Sheet Info Roll20 Internal Use only.
@BronsonHall @NorWhal @nmbradley
In my last update, I practically made the sheet unplayable, with none of the skills working... at all. I know you typically go through all of the pull requests at the same time, but would you be willing to approve this pull request as an urgent and critical bugfix?
Thank you.
Thank you so very much!
|
gharchive/pull-request
| 2024-04-24T20:32:27 |
2025-04-01T04:55:35.283613
|
{
"authors": [
"LilLiteralist",
"roll20deploy"
],
"repo": "Roll20/roll20-character-sheets",
"url": "https://github.com/Roll20/roll20-character-sheets/pull/12829",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2612287452
|
[Elric] Update sheet.json I want no contact regarding this sheet.
I am not longer supporting this sheet and do not want contacted regarding it.
Submission Checklist
Required
[x] The pull request title clearly contains the name of the sheet I am editing.
[x] The pull request title clearly states the type of change I am submitting (New Sheet/New Feature/Bugfix/etc.).
[x] The pull request makes changes to files in only one sub-folder.
[ ] The pull request does not contain changes to any json files in the translations folder (translation.json is permitted)
Changes / Description
Character Sheet Info Roll20 Internal Use only.
|
gharchive/pull-request
| 2024-10-24T18:24:25 |
2025-04-01T04:55:35.286964
|
{
"authors": [
"Lockbox313",
"roll20deploy"
],
"repo": "Roll20/roll20-character-sheets",
"url": "https://github.com/Roll20/roll20-character-sheets/pull/13447",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
465873472
|
Add image from Imgur for coc_7th_ed.html
It's more simple...
Changes / Comments
Roll20 Requests
Comments are very helpful for reviewing the code changes. Please answer the relevant questions below in your comment.
[ ] Does the pull request title have the sheet name(s)? Include each sheet name.
[ ] Is this a bug fix?
[ ] Does this add functional enhancements (new features or extending existing features) ?
[ ] Does this add or change functional aesthetics (such as layout or color scheme) ?
[ ] If changing or removing attributes, what steps have you taken, if any, to preserve player data ?
[ ] If this is a new sheet, did you follow Building Character Sheets standards ?
If you do not know English. Please leave a comment in your native language.
It's seems that tere is a problem with the translation, I don't know why, it's the same file for fr.json.
It may seem more simple to have shorter image links, but it's way less stable to have external hosting for images than have them securely saved on GitHub. Saving images on GitHub is preferred and mentioned in the Best Practice section of Character Sheet guidelines.
@Anduh Yes, but I can't upload the images, I can't pull a request for uplaoding images on Github. I prefer that way too. How can I do it ?
https://drive.google.com/drive/folders/1lvboNcu-eaLQ2vVPwqDkhBjn3FRj-hWr?usp=sharing
Greeting @titipucca1
You just need to put the images into the character sheet older. They can then be uploaded and linked from there.
Please put all changes for a single character sheet into one pull request. You'll want to combine #5290 and #5293 with this one into a single pull request.
#5276 , #5279 , and #5278 also needed to be reverted and those updates will need to be submitted again to this single pull request.
Thanks,
Cassie
|
gharchive/pull-request
| 2019-07-09T16:20:44 |
2025-04-01T04:55:35.292385
|
{
"authors": [
"Anduh",
"clevett",
"titipucca1"
],
"repo": "Roll20/roll20-character-sheets",
"url": "https://github.com/Roll20/roll20-character-sheets/pull/5289",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
705938397
|
Add Pugmire character sheet
Changes / Comments
Add new character sheet for Pugmire RPG
Roll20 Requests
Comments are very helpful for reviewing the code changes. Please answer the relevant questions below in your comment.
[x] Does the pull request title have the sheet name(s)? Include each sheet name.
[ ] Is this a bug fix?
[ ] Does this add functional enhancements (new features or extending existing features) ?
[ ] Does this add or change functional aesthetics (such as layout or color scheme) ?
[ ] If changing or removing attributes, what steps have you taken, if any, to preserve player data ?
[x] If this is a new sheet, did you follow Building Character Sheets standards ?
If you do not know English. Please leave a comment in your native language.
Thanks for the feedback @Anduh.
I am not using table for layout. The usage of tables elements in thehtmlis for creating tabular data, which is allowed by Roll20 docs. See attachments:
Hey @IuryAlves could you do some refactoring in your code to use flexbox instead of tables to layout those section? We are trying to avoid using table for anything but simple tabular data and you have a couple of interactive elements in there like buttons and checkboxes.
Hey @mperes I refactored the code to use flexbox instead of tables.
|
gharchive/pull-request
| 2020-09-21T21:48:02 |
2025-04-01T04:55:35.297196
|
{
"authors": [
"IuryAlves",
"mperes"
],
"repo": "Roll20/roll20-character-sheets",
"url": "https://github.com/Roll20/roll20-character-sheets/pull/7426",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
828579570
|
V.23 Shadowrun: Sixth World - now compatible with new sheet code
Changes / Comments
Updated to work with new roll20 Enhanced Sheet code
Updated nuyen to be the nuyen symbol
Updated roll template background color to be the matching purple to the tabs to more fit the SR6WE theme
Roll20 Requests
Comments are very helpful for reviewing the code changes. Please answer the relevant questions below in your comment.
[ YES ] Does the pull request title have the sheet name(s)? Include each sheet name.
[ YES ] Is this a bug fix?
[ YES ] Does this add functional enhancements (new features or extending existing features) ?
[ NO ] Does this add or change functional aesthetics (such as layout or color scheme) ?
[ N/A ] If changing or removing attributes, what steps have you taken, if any, to preserve player data ?
[ N/A ] If this is a new sheet, did you follow Building Character Sheets standards ?
If you do not know English. Please leave a comment in your native language.
Character Sheet Info Roll20 Internal Use only.
|
gharchive/pull-request
| 2021-03-11T01:40:32 |
2025-04-01T04:55:35.301073
|
{
"authors": [
"jaculpiii",
"roll20deploy"
],
"repo": "Roll20/roll20-character-sheets",
"url": "https://github.com/Roll20/roll20-character-sheets/pull/8454",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
962420027
|
Pathfinder Community Sheet v1.795 - bug fix
Changes / Comments
Fixed; ability damage set to 0 (due to NaN error) and power attack damage bonus erroneously applied to ranged attacks.
Roll20 Requests
Comments are very helpful for reviewing the code changes. Please answer the relevant questions below in your comment.
[x] Does the pull request title have the sheet name(s)? Include each sheet name.
[x] Is this a bug fix?
[ ] Does this add functional enhancements (new features or extending existing features) ?
[ ] Does this add or change functional aesthetics (such as layout or color scheme) ?
[ ] If changing or removing attributes, what steps have you taken, if any, to preserve player data ?
[ ] If this is a new sheet, did you follow Building Character Sheets standards ?
If you do not know English. Please leave a comment in your native language.
Character Sheet Info Roll20 Internal Use only.
|
gharchive/pull-request
| 2021-08-06T05:52:17 |
2025-04-01T04:55:35.304767
|
{
"authors": [
"roll20deploy",
"vince-roll20"
],
"repo": "Roll20/roll20-character-sheets",
"url": "https://github.com/Roll20/roll20-character-sheets/pull/9309",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1118991958
|
🛑 STEP is down
In 79f956f, STEP (https://step.polymtl.ca/) was down:
HTTP code: 0
Response time: 0 ms
Resolved: STEP is back up in e297803.
|
gharchive/issue
| 2022-01-31T05:28:48 |
2025-04-01T04:55:35.318672
|
{
"authors": [
"RomainL972"
],
"repo": "RomainL972/uptime",
"url": "https://github.com/RomainL972/uptime/issues/94",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
102633340
|
Threading exception on Python 3.2
I am using the following test script:
#!python
import datetime
import execnet
i = 0
while True:
print(datetime.datetime.now(), i)
group = execnet.Group()
gw = group.makegateway("ssh=user@host")
ch = gw.remote_exec("import time ; time.sleep(2.0)")
group.terminate(timeout=1.0)
i += 1
After about 250 runs of the loop body I get the following output:
2012-09-03 18:04:10.822562 253
2012-09-03 18:04:11.205508 254
Traceback (most recent call last):
File "/var/home/walter/.local/lib/python3.2/site-packages/execnet-1.1-py3.2.egg/execnet/threadpool.py", line 130, in dispatch
thread, _ = self._ready.popitem()
KeyError: 'popitem(): dictionary is empty'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "gurk.py", line 10, in <module>
group.terminate(timeout=1.0)
File "/var/home/walter/.local/lib/python3.2/site-packages/execnet-1.1-py3.2.egg/execnet/multi.py", line 168, in terminate
for gw in self._gateways_to_join])
File "/var/home/walter/.local/lib/python3.2/site-packages/execnet-1.1-py3.2.egg/execnet/multi.py", line 251, in safe_terminate
reply = workerpool.dispatch(termkill, termfunc, killfunc)
File "/var/home/walter/.local/lib/python3.2/site-packages/execnet-1.1-py3.2.egg/execnet/threadpool.py", line 135, in dispatch
thread = self._newthread()
File "/var/home/walter/.local/lib/python3.2/site-packages/execnet-1.1-py3.2.egg/execnet/threadpool.py", line 141, in _newthread
thread.start()
File "/var/home/walter/.local/lib/python3.2/threading.py", line 683, in start
_start_new_thread(self._bootstrap, ())
_thread.error: can't start new thread
Bitbucket: https://bitbucket.org/hpk42/execnet/issue/9
Originally reported by: Walter Dörwald
Originally created at: 2012-09-03T18:10:17.943
Original comment by: Ronny Pfannschmidt
Original comment by: Ronny Pfannschmidt
Original comment by: Walter Dörwald
Original comment by: Thomas Moschny
|
gharchive/issue
| 2015-08-23T15:50:26 |
2025-04-01T04:55:35.330099
|
{
"authors": [
"RonnyPfannschmidt"
],
"repo": "RonnyPfannschmidt/execnet-test",
"url": "https://github.com/RonnyPfannschmidt/execnet-test/issues/24",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
}
|
2732031808
|
Remove unnecessary FloatConst
Reduce trait dependencies
Codecov Report
Attention: Patch coverage is 21.05263% with 15 lines in your changes missing coverage. Please review.
Project coverage is 80.18%. Comparing base (77c40b8) to head (629269b).
Files with missing lines
Patch %
Lines
src/nalgebra.rs
21.05%
15 Missing :warning:
Additional details and impacted files
@@ Coverage Diff @@
## main #8 +/- ##
==========================================
+ Coverage 80.16% 80.18% +0.02%
==========================================
Files 15 15
Lines 1951 1953 +2
==========================================
+ Hits 1564 1566 +2
Misses 387 387
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
|
gharchive/pull-request
| 2024-12-11T07:16:04 |
2025-04-01T04:55:35.338665
|
{
"authors": [
"Rookfighter",
"codecov-commenter"
],
"repo": "Rookfighter/autofloat",
"url": "https://github.com/Rookfighter/autofloat/pull/8",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
294802103
|
Breaks jest-expo
When using jest-expo as a preset for Jest (I'm working on a detached Expo project, jic) and then trying to use react-native-mock-render by adding this line to my Jest config file:
jest.mock('react-native', () => require('react-native-mock-render'), { virtual: true });
This error occurs when running my tests:
The Expo SDK requires Expo to run. It appears the native Expo modules are unavailable and this code is not running on Expo.
The failing check is at node_modules/expo/src/environment/validate.js:
if (!NativeModules.ExponentConstants) {
throw new Error(ERROR_PASTED_ABOVE);
}
I believe this happens because both libraries are mocking react-native in a non-Object.assign(rn, rn1, rn2)-form.
Couldn't both libraries work together somehow? I believe this would allow things like mounting (as opposed to shallowing) with enzyme, jsdom, and react-native-mock-render on test suites.
btw this is in my packages.json:
"jest": {
"preset": "jest-expo",
"setupFiles": [
"<rootDir>/jestConfig.js"
],
"timers": "fake",
"transformIgnorePatterns": []
},
Wondering how relevant this is on detachment, but currently this is important to me too.
Thanks for the homework @lropero - interested if any project maintainers have any hints on your comments/suggestions?
This is also an issue for me
I believe you could implement something custom by creating your own version of mock.js and/or react-native.js that did the mixing and matching in the way that you wanted.
Unfortunately, this is out of scope of what this package is intended to do right now. I'm going to go ahead and close this issue, but if you have any suggested code changes that would make that work easier for you or add to this project in a way that would make it support your use case I'm happy to review and merge your PR.
|
gharchive/issue
| 2018-02-06T15:31:33 |
2025-04-01T04:55:35.344571
|
{
"authors": [
"AlexCatch",
"bob-carson",
"cantide5ga",
"lropero"
],
"repo": "Root-App/react-native-mock-render",
"url": "https://github.com/Root-App/react-native-mock-render/issues/33",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
}
|
294170467
|
Add Michael Zimmerman to Contributors list
My first contribution! Great exercise.
Hi @mz1290, I'm quite elated about your pull request. I wanna evolve this project to addresses various problems faced by first-time contributors. I'd love to learn about your journey in open source community, the problems, pain points you had etc.
Could you explain how you felt when you went through the tutorial, made a pull request and learned that I merged it?
We’ve recently added social share to our web app. Could you please go to https://roshanjossey.github.io/first-contributions/#social-share and share your first contribution to open source?
Also, check out projects with easy issues while you’re there.
|
gharchive/pull-request
| 2018-02-04T04:59:47 |
2025-04-01T04:55:35.355267
|
{
"authors": [
"Roshanjossey",
"mz1290"
],
"repo": "Roshanjossey/first-contributions",
"url": "https://github.com/Roshanjossey/first-contributions/pull/2592",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
226855670
|
HTTP error 503
did you edit the config.json to match your info?
I added my steam account. I didn't touch winauth
What I need to add in winauth part ?
if you use steamguard instead of winauth then just make the flag stays "false" and ignore the rest of that portion of the config. i'm not sure what info goes there if you do use winauth instead of steamguard though.
but it looks to me like there was no steam guard login & it is trying winauth instead and that's why it's throwing and error.
It asked me to put the steam guard code and I did. Also I have winauth_usage set to false.
oh okay, sorry. i thought the steamguard line was one line below "Logged into steam as..." but it's one line above it instead. my bad. =)
royalgamer06 will prob have to help you himself on this one.. sorry.
I don't no much node, but I looked at the main.js. after got web session, the script is trying to access steamdb.info
console.log("Got web session");
var community = new SteamCommunity();
community.setCookies(cookies);
community.httpRequestGet("https://steamdb.info/login/", { ...
When I tried to browse steamdb from chrome, said steamdb is verifying your browser or something like that (like cloudflare). Maybe this is the problem ?
that makes sense, i'd guess that's what's causing the issue too. maybe royal can work around that verify/redirect somehow.
Doesn't work
oops.. i'm getting the same thing too..
i thought i was testing the same version as you when i read about the error, but no. i was still using the old one when testing (which still works), but after testing the same version you are on i get the same error.
Can I get this old version somewhere ?
i'm not entirely sure what all was changed besides the need for sgtools.info cookie to be manually added to the config but...
https://github.com/Royalgamer06/steam-free-packages/tree/e43e03f84498e1f210381e07a4203aaca65eba20
I don't know why it stopped working. SteamDB must have changed or blocked something. Seems the cookie method still works though.
Cookie method also still works for me. Any way this can be updated to use newest features/fixes, but go back to using a cookie?
https://steamdb.info/forum/1386/free-packages/#reply-4152
in short it looks to me like they don't care if you change it to use the cookie method, and it was probably cloudfare that eventually caught the node and prevented requests.
Check out new update. It should be fixed now.
|
gharchive/issue
| 2017-05-07T12:29:31 |
2025-04-01T04:55:35.373594
|
{
"authors": [
"Rahzadan",
"Royalgamer06",
"iFEARR",
"ldeman"
],
"repo": "Royalgamer06/steam-free-packages",
"url": "https://github.com/Royalgamer06/steam-free-packages/issues/8",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
}
|
111534301
|
producer can not work in kettle 5.x
when i build it with kettle 5.2.0.0,it's success ,but it's doesn't work in kettle 5.x . please help me!
thank you!
I can't re-create the issue. What I did is the following:
Replaced kettle.version in pom.xml with 5.4.0.5-151
Replaced kettle-db artifactId with kettle-dbdialog
Built a package: mvn package
Unzipped pentaho-kafka-producer-v1.3.zip in data-integration/plugins/steps folder.
I'm able to see Kafka producer step when running spoon.
i will try the version 5.4.0.5-151soon,thanks
Michael Spector notifications@github.com于2015年10月15日周四 下午6:37写道:
Closed #6
https://github.com/RuckusWirelessIL/pentaho-kafka-producer/issues/6.
—
Reply to this email directly or view it on GitHub
https://github.com/RuckusWirelessIL/pentaho-kafka-producer/issues/6#event-436233641
.
|
gharchive/issue
| 2015-10-15T02:45:18 |
2025-04-01T04:55:35.389390
|
{
"authors": [
"leoricxu",
"spektom"
],
"repo": "RuckusWirelessIL/pentaho-kafka-producer",
"url": "https://github.com/RuckusWirelessIL/pentaho-kafka-producer/issues/6",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
}
|
898755507
|
Pausing the minigame
I wonder if it's possible to pause the minigame when the player enters the game_menu / pause the game.
I've tried to pause the audio when entering the game_menu with this code:
screen game_menu(...):
on "show" action (PauseAudio("music", True), PauseAudio("sound", True))
on "hide" action (PauseAudio("music", False), PauseAudio("sound", False))
...
But it clearly didn't pause the minigame and the note keeps on going even without the music playing.
It's a feature that needs non-trivial additional implementation. If there is enough interest I might consider doing it.
Hi! Just wanted to say that this engine is super cool and I'm also interested in a feature to allow pausing. Thank you!
|
gharchive/issue
| 2021-05-22T08:44:39 |
2025-04-01T04:55:35.406621
|
{
"authors": [
"AlfredPros",
"RuolinZheng08",
"digitalfunke"
],
"repo": "RuolinZheng08/renpy-rhythm",
"url": "https://github.com/RuolinZheng08/renpy-rhythm/issues/3",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2487088662
|
Empty folders no images
Describe the bug
After adding the folders all I can do is browse through them, but no images are shown.
Version:
1.7
Tool:
A1111, Forge, Comfy, Invoke
To Reproduce
Installed the software, add the diffusion folders, navigate.
Expected behavior
I expected to see some images
Affected Image(s)
Does the error occur on a specific image? If applicable, provide the actual image that is causing the problem. Github does not strip metadata from images so you can upload it directly here.
Screenshots
Additional context
Maybe I'm doing something wrong? I'm new to Diffusion Toolkit. Thank!
When asked, did you allow Diffusion Toolkit to scan your image folders? It needs to read in the images into its database first, before they appear in the folders. You can try clicking the button, or Edit > Rebuild metadata
When asked, did you allow Diffusion Toolkit to scan your image folders? It needs to read in the images into its database first, before they appear in the folders. You can try clicking the button on the left, or Edit > Rebuild metadata.
Hi, I was never asked for permission to scan any folder. If I remove the folders and add them again, yes, I'm, asked to scan them, but it says "scan complete" and no images are shown. Clicking on the button to rescan does nothing either.
Can you also try clicking on Tools > Folders > Fix missing images?
Doing that gives me a message on the bottom right corner reading "0 files were updated"
Thanks in advance for any additional tips!
I saw someone else on reddit with a similar problem. Can you try with an older build for now?
https://github.com/RupertAvery/DiffusionToolkit/releases/tag/v1.6.1 was the last stable one.
DiffusionToolkit.log
Looks like I didn't see the problem because I had watched folders enabled, and this somehow bypassed the bug.
some small sample images
I saw someone else on reddit with a similar problem. Can you try with an older build for now?
https://github.com/RupertAvery/DiffusionToolkit/releases/tag/v1.6.1 was the last stable one.
Thank you! That version worked 👍
There is a fix for new users.
To ensure you start from scratch, go to %APPDATA%\DiffusionToolkit and delete config.json and diffusion-toolkit.db.
Then download this version and try to run it.
https://github.com/RupertAvery/DiffusionToolkit/actions/runs/10570167410/artifacts/1857454833
did not work, all folders are empty again.
Strange, I've tested it several times, and just now again. Deleted config and db, then started it. Asked to Scan, said yes, then it had all the images.
If you don't mind, can you try again from a clean setup (you can rename your existing config and db and then name them back later if you need). Then check if there are any log messages?
DiffusionToolkit.log
it worked, selected folder, scanned, found images, thank you.
Log looks clean, glad to know it worked for you! Thank you for running these tests.
|
gharchive/issue
| 2024-08-26T15:02:09 |
2025-04-01T04:55:35.417438
|
{
"authors": [
"RupertAvery",
"cristian-tapia",
"ryders333"
],
"repo": "RupertAvery/DiffusionToolkit",
"url": "https://github.com/RupertAvery/DiffusionToolkit/issues/256",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
734734636
|
Split the ast from the parser, remove compiler dep on parser
This should improve build times, since now the compiler and the parser can build in parallel, and I think it also just separates concerns a bit more -- the core compiler just needs an AST to be able to do its job, and it's up to the user to provide that. I was thinking of making another crate that would essentially just be vm::compile, but I wasn't sure what to call it or if would even be necessary, since I'm not sure how many uses there would be for an external crate to use the compiler. Although, I gave pyckitup the ability to compile rustpython bytecode, so maybe it would be worth looking into to have that be another crate.
Maybe something like compiler/porcelain? With the original compiler crate being renamed to rustpython-compiler-core, and the porcelain directory having a crate rustpython-compiler that has the wrapper stuff that's inside of vm/src/compile.rs
|
gharchive/pull-request
| 2020-11-02T18:41:06 |
2025-04-01T04:55:35.441980
|
{
"authors": [
"coolreader18"
],
"repo": "RustPython/RustPython",
"url": "https://github.com/RustPython/RustPython/pull/2320",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
407967042
|
Implement range.count
Implements count for #293.
@windelbouwman I didn't find the objrange::get_value method you mentioned so I've added it myself. I make use of it and objtype::getinstance as you suggested in range_count; I think this is what you meant?
Also, I modified a bunch of the other methods in the file to make use of objrange::get_value as well. Maybe this is beyond the scope of this PR... If so I can move those changes to a separate PR.
This is exactly what I meant. Great job!
|
gharchive/pull-request
| 2019-02-08T01:09:35 |
2025-04-01T04:55:35.443932
|
{
"authors": [
"nficca",
"windelbouwman"
],
"repo": "RustPython/RustPython",
"url": "https://github.com/RustPython/RustPython/pull/381",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
315413739
|
Crash app and xcode9.2 when add new element for data use RxTableViewSectionedAnimatedDataSource
i have code below:
let data: Variable<[SearchSection]> = Variable([])
let dataSource = RxTableViewSectionedAnimatedDataSource<SearchSection>(
animationConfiguration: AnimationConfiguration(insertAnimation: .top,
reloadAnimation: .fade,
deleteAnimation: .left),
configureCell: { _, tv, idx, dt in
.......
}, titleForHeaderInSection:{ dtsource, idx in
return " "
})
self.data.asObservable()
.bind(to: self.tableView.rx.items(dataSource: dataSource))
.disposed(by: rx_disposeBag)
self.tableView.rx.setDelegate(self).disposed(by: rx_disposeBag)
func tableView(_ tableView: UITableView, willSelectRowAt indexPath: IndexPath) -> IndexPath? {
....
self.data.value[indexPath.section].value.append(self.fullData[indexPath.section].value[5])
....
}
when i select to add new data =.= Op xcode is crash and app crash
i try RxTableViewSectionedReloadDataSource, it work
try comment this line rxDebugFatalError(e)
|
gharchive/issue
| 2018-04-18T10:03:38 |
2025-04-01T04:55:35.448954
|
{
"authors": [
"JustinBeBoy",
"vitali36"
],
"repo": "RxSwiftCommunity/RxDataSources",
"url": "https://github.com/RxSwiftCommunity/RxDataSources/issues/227",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
}
|
315343591
|
Forward compatibility with voryx/event-loop 3.0 and while supporting 2.0
voryx/event-loop just released a new version which supports react/event-loop 0.5. This PR bring support for those new event loop versions while still supporting the current ones targeted by this package.
Thank you :)
|
gharchive/pull-request
| 2018-04-18T06:11:49 |
2025-04-01T04:55:35.450555
|
{
"authors": [
"Vinceveve",
"WyriHaximus"
],
"repo": "Rxnet/eventstore-client",
"url": "https://github.com/Rxnet/eventstore-client/pull/8",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
}
|
337167395
|
Append and delete problem:C# solution
Added a new solution for append and delete problem using C# programming language
Hi @RyanFehr
I've updated both time and space complexity of this problem in readme. The changes are only to reflect more appropriate values pertaining to the problem statement. Your evaluation was also correct. I've just made it more specific.
|
gharchive/pull-request
| 2018-06-29T23:54:53 |
2025-04-01T04:55:35.453088
|
{
"authors": [
"rasik210"
],
"repo": "RyanFehr/HackerRank",
"url": "https://github.com/RyanFehr/HackerRank/pull/190",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
}
|
1406145443
|
Add docker-compose example
Would also make how I currently run it a bit nicer, since docker-compose will automatically restart the process when the machine is restarted.
image pull policy should be always when using docker-compose since it doesn't automatically update, and GitHub runners have aggressive update timelines.
|
gharchive/issue
| 2022-10-12T12:38:03 |
2025-04-01T04:55:35.455701
|
{
"authors": [
"RyanSquared"
],
"repo": "RyanSquared/github-runner-docker",
"url": "https://github.com/RyanSquared/github-runner-docker/issues/2",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1863795730
|
Feat: added survey share modal
Sure, will do all the changes.
|
gharchive/pull-request
| 2023-08-23T18:11:35 |
2025-04-01T04:55:35.470297
|
{
"authors": [
"shubhamku044"
],
"repo": "Ryczko/FormsLab",
"url": "https://github.com/Ryczko/FormsLab/pull/220",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2348554154
|
[Feature] Better support for annotated text extraction
Currently, the Obsidian's native PDF viewer can extract annotated text (= text that is marked up by a text markup annotation (highlight etc) written inside the PDF file) only when textContentItem.char is present and nonempty (char is a property of TextContentItem present only in Obsidian's version of PDF.js).
This is due to how the Obsidian team implements PDFViewerChild.getTextByRect.
The two PDFs appearing in #223 are good examples. The first one has its text content items with non-empty char, whereas in the latter it's empty.
Since PDF++ uses the getTextByRect method as-is, this restriction also applies to PDF++.
[!note]
So in short, this is a problem of Obsidian itself, and PDF++ is not to be blamed for this. It just inherits the issue from the Obsidian core.
However, it's probably possible to fix this on PDF++'s end by measuring the bounding box of text divs using Range.getBoundingClientRect and monkey-patching the method.
It will be beneficial for some users.
Basically we can just reuse this snippet:
https://github.com/RyotaUshio/obsidian-pdf-plus/blob/d9f9d20084d794c928343ae6860322dcc9f7442a/src/vim/text-structure-parser.ts#L201-L225
But we need to fix the issue that it assumes textDiv.childNodes[0] is a text node, which can be wrong when search matches are rendered.
Released in 0.40.8.
|
gharchive/issue
| 2024-06-12T11:40:17 |
2025-04-01T04:55:35.479585
|
{
"authors": [
"RyotaUshio"
],
"repo": "RyotaUshio/obsidian-pdf-plus",
"url": "https://github.com/RyotaUshio/obsidian-pdf-plus/issues/224",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1001282149
|
Add new topic - cloud
And the first check - public SharePoint sites:
https://zolder.io/public-sharepoint-sites-the-new-open-shares/
afterwards other Azure enumeration modules.
See
https://github.com/S3cur3Th1sSh1t/WinPwn/issues/32
|
gharchive/issue
| 2021-09-20T18:45:22 |
2025-04-01T04:55:35.513103
|
{
"authors": [
"S3cur3Th1sSh1t"
],
"repo": "S3cur3Th1sSh1t/WinPwn",
"url": "https://github.com/S3cur3Th1sSh1t/WinPwn/issues/27",
"license": "BSD-3-Clause",
"license_type": "permissive",
"license_source": "github-api"
}
|
905597923
|
Feedback for "SAP Mobile Application"
https://help.sap.com/webcomponents/products/SAP Business Application Studio/9d1db9835307451daa8c930fbd9ab264/95f86cceb6f1441d81c2b562766719ed.html?locale=en-US&version=Cloud
Regarding Mobile Development Kit reference, updated cotent is available at this page https://help.sap.com/doc/f53c64b93e5140918d676b927a3cd65b/Cloud/en-US/docs-en/guides/getting-started/mdk/bas.html
Hi,
Thank you for the update. I have changed the link to the one you provided.
You will be able to see the new link with our next release.
https://people.sap.com/jitendrakumar.kansal
|
gharchive/issue
| 2021-05-28T15:21:39 |
2025-04-01T04:55:35.521294
|
{
"authors": [
"Paolaufer",
"jitendrakansal"
],
"repo": "SAP-docs/btp-business-application-studio",
"url": "https://github.com/SAP-docs/btp-business-application-studio/issues/12",
"license": "CC-BY-4.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
1106329158
|
Issue at Step "6.3 Enable Approval Workflow"
Hi,
on Page 69, guide mentions
"You can also activate the workflow on repository level so that it is inherited to all privileges of
this repository. To do so please follow the steps:
..
Make sure that the tab Constants is enabled and maintain the following repository
constants based on your requirements:
o To find the correct process you can search for “approval”
o MX_VALIDATE_ADD_TASK
o MX_VALIDATE_DEL_TASK
o MX_VALIDATE_MOD_VALIDITY_TASK
"
But I cannot find those constants for any of the Repositories I've created.
Did I miss something?
Regards
Hi,
It seems that the constants are not configured correctly. You need to logon to Eclipse, navigate to your repository type and change the type of the constants from "Repository Type Constant" to "Repository Type Constant With Override". Then the constants are visible in the Admin UI. Alternatively, you can maintain the constants directly in Eclipse for the repository type. This is useful, for example, if you have five ABAP repositories that all use the same approval tasks. You can maintain the constants on the "General" tab of the repository type configuration or on tab "Event Process".
Hope this helps!
Kind regards,
Fabian
Hi Fabian,
Thank you for prompt response. Constants are not visible/exits on Repository Type when I check in Eclipse. As you mentioned, I've tried to add (e.g. MX_VALIDATE_ADD_TASK) them and got error "This is a reserved constant name. Enter another name for the constant"
Then you need to maintain the constants on tab "Event Process". I think the constants are then added.
Hi,
I think there are some approval (validation tasks) shipped with the approval package. Look at part 6.1 in the guide.
My processes are not default ones. I created these manually and put some logic into the processes (e.g. approval task, notifications, calculate approver and so on). The name follows an internal naming rule.
Kind regards,
Fabian
Considering this a basis configuration question, not related to BE Service
|
gharchive/issue
| 2022-01-17T23:10:39 |
2025-04-01T04:55:35.527268
|
{
"authors": [
"NormanNuernberger",
"fastnodu",
"hhbilgen"
],
"repo": "SAP-samples/idm-business-extensions-service",
"url": "https://github.com/SAP-samples/idm-business-extensions-service/issues/1",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
1111948920
|
JwtIssuerValidator returns Issuer not Validated
Hi,
I am getting the following error in the logs when I use the OICD token provided by my IAS instance
2022-01-23T17:33:40.367+0000 [APP/PROC/WEB/0] OUT 2022-01-23 17:33:40.367 WARN 7 --- [nio-8080-exec-1] c.s.c.s.t.validation.ValidationResults : Issuer is not trusted because issuer 'xxxxxxxx.accounts400.ondemand.com' does not provide a valid URI (missing http scheme). Please contact your Identity Provider Administrator.
2022-01-23T17:33:40.367+0000 [APP/PROC/WEB/0] OUT 2022-01-23 17:33:40.367 DEBUG 7 --- [nio-8080-exec-1] c.s.c.s.t.validation.CombiningValidator : Validator that caused the failed validation: com.sap.cloud.security.token.validation.validators.JwtIssuerValidator
2022-01-23T17:33:40.367+0000 [APP/PROC/WEB/0] OUT 2022-01-23 17:33:40.367 DEBUG 7 --- [nio-8080-exec-1] c.s.c.s.t.validation.CombiningValidator : Object of type com.sap.cloud.security.token.SapIdToken that caused the failed validation:
And my token does not contain http in iss field.
I checked my configurations in IAS tenant and the issuer has https in issuer name.
Do I need to change something in the IAS configuration?
Also, is there a workaround for this?
Thank You
The issue is resolved.
We need to change the tenant settings at
application & resources -> tenant settings -> SAML 2.0 Configuration -> Identity Provider Settings -> Name
from the URI without https to the one with it
|
gharchive/issue
| 2022-01-23T18:27:46 |
2025-04-01T04:55:35.537839
|
{
"authors": [
"harsh28799"
],
"repo": "SAP/cloud-security-xsuaa-integration",
"url": "https://github.com/SAP/cloud-security-xsuaa-integration/issues/797",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
2206579121
|
Linter doesn't take ui5 version into account?
Expected Behavior
I expected the linter would pick up the ui5 version from the bootstrap script in my index.html
Current Behavior
I changed the ui5 version from 1.108.27 to 1.120.11 by changing the url in my bootstrap script tag in index.html:
<script
id="sap-ui-bootstrap"
src="https://sapui5.hana.ondemand.com/1.120.11/resources/sap-ui-core.js"
....
>
I ran the linter but the error report was identical. However, when running the ui5 app with the 1.120 version, there were numerous deprecation messages in the console log. I would love to catch those with the linter without having to run the app (and access every feature to see if the runtime generates deprecation messages)
Steps to Reproduce the Issue
create app run linter
update ui5 uri in bootstrap script
run linter again
Context
UI5 linter package and version: 0.1.3
Node.js Version: v20.11.1
npm 9.6.4
OS/Platform: Microsoft Windows 10 Enterprise
At this point the UI5 version relevant to UI5 linter can't be configured. We plan to add this at a later time though.
For now, all deprecations are detected based on the UI5 API information for version 1.120: https://ui5.sap.com/1.120.11/
There are many cases that UI5 linter can't detect yet (see also https://github.com/SAP/ui5-linter/issues/21). If you find that a deprecated API is not properly detected (and not already listed on our roadmap), we welcome you to create an issue on that 👍
No worries Roland, and thanks for checking out UI5 linter! I'm just trying to clear new issues as good as possible. I hope I didn't suggest that your feedback is not welcome. On the contrary, we appreciate it and we will certainly take it into our discussions. It's helping us to shape the future of this tool. So please keep it coming 🙂
Just to add a note here: Linting only against version 1.120 is really bad. In practice, the latest UI5 version is mostly not used (in business context) as the onprem systems run older versions. I worked with many ui5 projects for customers, but only a few of them are running version 1.120. Thus, the linter is not useful for any other projects.
We plan to offer an configuration option for the UI5 version, SAP internally tracked in backlog item CPOUI5FOUNDATION-856.
But please keep in mind: The main goal of the linter is to ensure your application runs with UI5 2.X. If your application is using best practices and no APIs deprecated until UI5 1.120, the app will run successfully with UI5 2.X.
|
gharchive/issue
| 2024-03-25T19:54:39 |
2025-04-01T04:55:35.590110
|
{
"authors": [
"John-H-Smith",
"RandomByte",
"flovogt",
"rpbouman"
],
"repo": "SAP/ui5-linter",
"url": "https://github.com/SAP/ui5-linter/issues/50",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
741311337
|
Mobile Cards: Sub step numbers not maintained
Hello,
Scenario URL: https://developers.sap.com/tutorials/cp-mobile-cards-setup.html
Already reported: https://github.com/SAPDocuments/Tutorials/issues/5983
Sub-step numbering is not maintained for entire tutorial. Only steps are mentioned, Sub step nos. are not mentioned.
It was mentioned that changes will be available by October, but tutorial is still not updated.
please update the tutorial.
Thanks,
Shubham
Labels to be added:
Sprint Label: SCPTest-2010A
Scenario Label:SCPTest-mcard
Landscape Labels: trial1, trial2, trial3
prio: low-prio
Hi @i353590
We recently updated the tutorials. These issues have been addressed in the previous release.
Can you please confirm if the issues raised have been resolved?
Warm Regards
Sandeep T D S
Hello @sandeep-tds ,
Yes, the tutorial has been updated with Sub-step nos. and I can also see the tutorial also looks updated.
So, the issue has been resolved.
Thanks for the fix.
You may close the ticket now.
Regards,
Shubham
|
gharchive/issue
| 2020-11-12T06:12:51 |
2025-04-01T04:55:35.603924
|
{
"authors": [
"i353590",
"sandeep-tds"
],
"repo": "SAPDocuments/Tutorials",
"url": "https://github.com/SAPDocuments/Tutorials/issues/6149",
"license": "CC-BY-4.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
1020152533
|
You don't have sufficient permissions to use the requested API
When I click on the Click here to create a new project with the following API's enabled link in the documatation I get the error
You don't have sufficient permissions to use the requested API
I am a superadmin. Any workaround to this?
Pretty sure the link is always broken. Have you tried manually creating a project and enabling the APIs?
|
gharchive/issue
| 2021-10-07T15:04:58 |
2025-04-01T04:55:35.632576
|
{
"authors": [
"Buenno",
"colly72"
],
"repo": "SCRT-HQ/PSGSuite",
"url": "https://github.com/SCRT-HQ/PSGSuite/issues/358",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
1178524978
|
convert to typescript
Description
Converts the backend codebase to typescript
Fixes/resolves #90
Type of change
[x] Improvement (non-breaking change which improves existing functionality)
Checklist:
Leave blank if not applicable
I have completed these steps when making this pull request:
[x] I have checked that the PR is from a forked repository
[x] I have assigned my name to the issue
[x] I have moved the issue to the In Progress column
[x] I have labelled the PR appropriately
[x] I have assigned people responsible to the PR
Before opening the PR for review:
[ ] My code follows the style guidelines of this project
[ ] I have performed a self-review of my code
[ ] I have documented my code, particularly in hard-to-understand areas
[x] I have made corresponding changes to the documentation
[ ] My changes generate no new warnings
[ ] I have added tests that prove my fix is effective or that my feature works
[ ] New and existing unit tests pass locally with my changes
[x] I have moved the linked issue to the Review in Progress column
the tests are very very broken it's not just you
|
gharchive/pull-request
| 2022-03-23T18:45:58 |
2025-04-01T04:55:35.710151
|
{
"authors": [
"j-chad"
],
"repo": "SE701-T5/Backend",
"url": "https://github.com/SE701-T5/Backend/pull/95",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2266929659
|
2024/04/27
Summary
Context
update
|
gharchive/pull-request
| 2024-04-27T09:17:24 |
2025-04-01T04:55:35.716521
|
{
"authors": [
"SEO-HAN-JIN"
],
"repo": "SEO-HAN-JIN/SEO-HAN-JIN.github.io",
"url": "https://github.com/SEO-HAN-JIN/SEO-HAN-JIN.github.io/pull/1",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
947800244
|
Module 3 exercises [Chapman Owusu-Sekyere]
Please "drag & drop" exercise 1 pdf file below.
Model 3 Exerise 3.1.pdf
Please "drag & drop" exercise 2 pdf file below.
Model 3 Exerise 3.2.pdf
Please UPDATE THE TITLE of this "Issue" in the title bar above with your name.
If you haven't done so, please go back to Module 3 and make sure to take
the post-training survey. Participating in surveys is required for receiving
the "GALUP Certificate" by the University of Florida.
Hi, Chapman. Your submission for exercise 2 looks great, and you seem to have a clear understanding of Module 3. There is a minor issue with exercise 1, as the values in your legend do not match the expected values of the model. You can see the expected values in this example: https://github.com/SERVIR-WA/GALUP/blob/master/training/1_lu/pdf_maps/LandConditionMap.pdf
I suggest looking over the construction of your model once more as I cannot pinpoint the exact conditions that are producing your results. If you have any questions along the way, please reach out to us. Thank you for your participation!
Submission from the same person can be found at https://github.com/SERVIR-WA/GALUP/issues/121
|
gharchive/issue
| 2021-07-19T15:59:32 |
2025-04-01T04:55:35.721811
|
{
"authors": [
"chjch",
"cosekyere",
"muribasterra"
],
"repo": "SERVIR-WA/GALUP",
"url": "https://github.com/SERVIR-WA/GALUP/issues/108",
"license": "BSD-3-Clause",
"license_type": "permissive",
"license_source": "github-api"
}
|
916922192
|
Create Recipe for NPSP Relationships #99
Critical Changes
Add new recipe: Relationship_npsp.recipe.yml
Changes
n/a
Issues Closed
#99
generated sql
[{"_table": "Account", "id": 1, "name": "The Household 0", "RecordType": "HH_Account"},
{"_table": "Contact", "id": 1, "AccountId": 1, "Salutation": "Miss", "FirstName": "Morgan", "LastName": "Richardson"},
{"_table": "Contact", "id": 2, "AccountId": 1, "Salutation": "Mrs.", "FirstName": "Ruth", "LastName": "Waller"},
{"_table": "npe4__Relationship__c", "id": 1, "npe4__Type__c": "Parent", "npsp__Related_Opportunity_Contact_Role__c": "Soft Credit", "npe4__Status__c": "Current", "npe4__Description__c": "Parent - Hour growth speak enter accept sport agent.", "npe4__Contact__c": 1, "npe4__RelatedContact__c": 2}]
|
gharchive/pull-request
| 2021-06-10T05:37:41 |
2025-04-01T04:55:35.723895
|
{
"authors": [
"eehjunggnujhee"
],
"repo": "SFDO-Community-Sprints/DataGenerationToolkit",
"url": "https://github.com/SFDO-Community-Sprints/DataGenerationToolkit/pull/107",
"license": "BSD-3-Clause",
"license_type": "permissive",
"license_source": "github-api"
}
|
2553659794
|
[FEATURE] Support Number Field Display
Is your feature request related to a problem? Please describe.
Number fields don't display decimals if they are 00 or if a single decimal like .40 doesn't display the ending 0.
Describe the solution you'd like
Number display should reflect decimal points configured for that number
Additional context
same behavior for fomula number fields
Should be completed as of 66f600d81fc910bd840485af0d8d2833d2828ddc
|
gharchive/issue
| 2024-09-27T20:09:50 |
2025-04-01T04:55:35.726017
|
{
"authors": [
"pickettd",
"roanbear"
],
"repo": "SFDO-Community/sticky-selectron",
"url": "https://github.com/SFDO-Community/sticky-selectron/issues/46",
"license": "BSD-3-Clause",
"license_type": "permissive",
"license_source": "github-api"
}
|
845405146
|
Treat skipped steps as optional for validity
When a MetaDeploy plan is run that includes preflight checks with the skip action, and the conditions are met to skip that step, MetaDeploy presents an error:
Invalid steps for plan
This PR aims to fix the issue by correcting the identification of optional steps to include those in SKIP status.
@davidmreed I'm not sure why the builds didn't get triggered. Could you try pushing a new commit and see if that helps?
|
gharchive/pull-request
| 2021-03-30T22:46:36 |
2025-04-01T04:55:35.729397
|
{
"authors": [
"davidmreed",
"davisagli"
],
"repo": "SFDO-Tooling/MetaDeploy",
"url": "https://github.com/SFDO-Tooling/MetaDeploy/pull/2536",
"license": "BSD-3-Clause",
"license_type": "permissive",
"license_source": "github-api"
}
|
299891118
|
iOS build defaults to x86_64 architecture, regardless of specified platform
See discussion here
as the toolchain file is processed when project(SFML) is called, it doesn't overwrite the previous setting of CMAKE_OSX_ARCHITECTURES, configured here
Not 100% sure of the best way to fix this. @Ceylo fixed it by checking if a toolchain file is being used, which will work, but I think there should be a better way.
I also found that moving the call to project() to be above that block of Code also fixes it, and doesn't have any adverse effects on osx builds, however the
docs indicate it must be set before the first call to project(), so I'm reluctant to do that
Anotherpossible way is to force updating the cache entry in the toolcgain file. This means the user will be unable to change the architecture in CMake GUI but that may be ok as it’ll most likely not be needed anytime soon.
That actually sounds like a decent solution - the architecture in the toolchain is determined by the IOS_PLATFORM variable, which the user can modify so it wouldn't really restrict anything
|
gharchive/issue
| 2018-02-24T00:27:14 |
2025-04-01T04:55:35.737615
|
{
"authors": [
"Ceylo",
"JonnyPtn"
],
"repo": "SFML/SFML",
"url": "https://github.com/SFML/SFML/issues/1373",
"license": "Zlib",
"license_type": "permissive",
"license_source": "github-api"
}
|
1977559110
|
Add more tests for sf::Context
Description
While improving the test coverage of sf::Context I found out that certain nullptr arguments would cause a crash so I added asserts to protect against it.
I prematurely submitted this PR. The new tests are not ready.
|
gharchive/pull-request
| 2023-11-04T23:52:52 |
2025-04-01T04:55:35.739129
|
{
"authors": [
"ChrisThrasher"
],
"repo": "SFML/SFML",
"url": "https://github.com/SFML/SFML/pull/2763",
"license": "Zlib",
"license_type": "permissive",
"license_source": "github-api"
}
|
717083203
|
229 | Majority Element II | Java
Title -
What will change -
Type of Issue -
Please add/delete options that are not relevant.
[x] Adding New Code
[ ] Improving Code
[ ] Improving Documentation
[ ] Bug Fix
Programming Language
Please add/delete options that are not relevant.
[ ] Python
[ ] C++
[x] Java
[ ] SQL
Self Check
Ask for issue assignment and wait to get assigned to it before making Pull Request.
Add your file in the proper folder
Clean Code and Documentation for better readability
Add Title and Description of the program in the file
:star2: Star it :fork_and_knife:Fork it :handshake: Contribute to it!
Discord server ✉️ - https://discord.gg/CXksGdn
Happy Coding,
I am interested and would like to contribute to this. Could you please assign this problem to me?
Assigned it to @mrprince88 since he created the issue
@taylor-abbas You can create an issue and wait to get it assigned to you
|
gharchive/issue
| 2020-10-08T07:05:09 |
2025-04-01T04:55:35.751387
|
{
"authors": [
"Yashica7",
"mrprince88",
"taylor-abbas"
],
"repo": "SHY-Corp/LeetCode-Solutions",
"url": "https://github.com/SHY-Corp/LeetCode-Solutions/issues/210",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2432564213
|
Problems receiving scan data from picoscan 150
Hello,
I am trying to make an application based on the provided sick_scan_xd_api_test.py program. It will run on windows with no ROS. All I want to do is connect to the picoscan, receive scan data and convert it to x and y coordinates so that I can graph it with matplotlib.
So far running the program I am able to connect to the sensor and send it devicestatus message requests which I get a response of 1 to. I can not figure out what I am missing in order to receive actual scan data from the sensor but nothing I have tried seems to work. I have attached the program in its current state as well as the picoscan launch file that I have been using. Any help would be appreciated.
I have also tried using an unedited version of sick_scan_xd_api_test.py in an attempt to see scan data but I see the same console output as my code, devicestatus message request and responses but no indication that the scan data is being sent.
Thank you!
code.txt
picoscan_launch.txt
Thanks for your feedback. Picoscan lidars transmit their scan data via UDP to the receiving PC, i.e. the sick_scan_xd driver. A common error is an incorrect configuration of the receivers ip address.
Please run the following steps:
Run ifconfig -a on Linux or ipconfig /all on Windows to get the ip address of your PC. Make sure that picoScan and PC have ip addresses in the same subnet.
Check parameter udp_receiver_ip in the launchfile. Make sure that <arg name="udp_receiver_ip" default="192.168.0.2"/> in the launchfile is the correct ip address ("192.168.0.2") of your PC running sick_scan_xd resp. your application. See https://github.com/SICKAG/sick_scan_xd/blob/develop/doc/sick_scan_segment_xd.md#configuration for further information.
Run SOPAS Air, i.e. open the picoScan ip address in a browser (192.168.0.1 by default). Switch to "authorized client" and check the network configuration and ip settings. If everything is correct, you should see the picoScan pointcloud in the main window.
Run sick_scan_xd_api_test.py with command line arguments hostname:=<picoScan ip> udp_receiver_ip:=<pc_ip> _verbose:=1. Replace <picoScan_ip> with the ip address of your lidar (192.168.0.1 by default) and <pc_ip> with the ip address of your PC. These are the same parameters used in SOPAS Air. Parameter _verbose:=1 sets the verbose level to informational messages. Please provide a complete logfile of all output messages if no scan data are received and the registered point cloud callback is never executed.
Add SickScanApiSetVerboseLevel(sick_scan_library, api_handle, 1) after SickScanApiRegisterLogMsg to activate informational messages and run your code.
Hello,
I attempted to implement your suggestions. I ran the sick_scan_xd_api_test.py and sick_picoscan.launch included with the sick_scan_xd repository but I am still not seeing any scan data in the output.
I have attached the output to this message (apitest.txt). I have also included the sick_scan_xd_api_test.py file I ran as a text file (github wont let me attach a python file) and the sick_picoscan.launch file as a text file (github wont let me attach a launch file).
I ran the code using the following command:
PS C:\Users\orrs\code\sick_scan_xd> & C:/Users/orrs/AppData/Local/Microsoft/WindowsApps/python3.11.exe c:/Users/orrs/code/sick_scan_xd/test/python/sick_scan_xd_api/sick_scan_xd_api_test.py C:/Users/orrs/code/sick_scan_xd/launch/sick_picoscan.launch hostname:=192.168.0.1 udp_receiver:=192.168.0.2 verbose:=1 > C:\Users\orrs\apitest.txt
I have confirmed that the IP address of the scanner is 192.168.0.1 by entering that ip address into my web browser, I can see the picoscan pointcloud in the main window. I have also confirmed that the IP address of the ethernet I am using to connect to the sensor is correct by running ipconfig /all and getting the IPv4 address (192.168.0.2). I have confirmed that both ip addresses are in subnet 255.255.255.0.
Let me know if you understand why we are still not seeing any scan data, any help would be appreciated!
sick_picoscan.txt
sick_scan_xd_api_test.txt
apitest.txt
Thank you!
|
gharchive/issue
| 2024-07-26T16:23:36 |
2025-04-01T04:55:35.768080
|
{
"authors": [
"rostest",
"samuelorrEMS"
],
"repo": "SICKAG/sick_scan_xd",
"url": "https://github.com/SICKAG/sick_scan_xd/issues/372",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
1863960680
|
🛑 Website is down
In 44b3938, Website (ELTeam.ir) was down:
HTTP code: 0
Response time: 0 ms
Resolved: Website is back up in f8e66c3 after 765 days, 11 hours, 29 minutes.
|
gharchive/issue
| 2023-08-23T20:23:12 |
2025-04-01T04:55:35.781354
|
{
"authors": [
"SIRMaxis"
],
"repo": "SIRMaxis/uptime-robot",
"url": "https://github.com/SIRMaxis/uptime-robot/issues/1059",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2081875179
|
🛑 Website is down
In cbf0bc1, Website (ELTeam.ir) was down:
HTTP code: 0
Response time: 0 ms
Resolved: Website is back up in da43297 after 1 hour, 52 minutes.
|
gharchive/issue
| 2024-01-15T11:52:22 |
2025-04-01T04:55:35.783617
|
{
"authors": [
"SIRMaxis"
],
"repo": "SIRMaxis/uptime-robot",
"url": "https://github.com/SIRMaxis/uptime-robot/issues/11840",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2177102910
|
🛑 Website is down
In 683cb2c, Website (ELTeam.ir) was down:
HTTP code: 0
Response time: 0 ms
Resolved: Website is back up in e17c802 after 19 minutes.
|
gharchive/issue
| 2024-03-09T07:17:20 |
2025-04-01T04:55:35.786505
|
{
"authors": [
"SIRMaxis"
],
"repo": "SIRMaxis/uptime-robot",
"url": "https://github.com/SIRMaxis/uptime-robot/issues/16389",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2209914490
|
🛑 DNS1.electro is down
In ef11509, DNS1.electro (ns1.elteam.ir) was down:
HTTP code: 0
Response time: 0 ms
Resolved: DNS1.electro is back up in 33af35a after 1 hour, 50 minutes.
|
gharchive/issue
| 2024-03-27T05:41:20 |
2025-04-01T04:55:35.788728
|
{
"authors": [
"SIRMaxis"
],
"repo": "SIRMaxis/uptime-robot",
"url": "https://github.com/SIRMaxis/uptime-robot/issues/17835",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1920905330
|
🛑 DNS1.electro is down
In 7faad1e, DNS1.electro (ns1.elteam.ir) was down:
HTTP code: 0
Response time: 0 ms
Resolved: DNS1.electro is back up in fe9c486 after 8 minutes.
|
gharchive/issue
| 2023-10-01T18:31:00 |
2025-04-01T04:55:35.790981
|
{
"authors": [
"SIRMaxis"
],
"repo": "SIRMaxis/uptime-robot",
"url": "https://github.com/SIRMaxis/uptime-robot/issues/2353",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1925406943
|
🛑 DNS1.electro is down
In 3190ca4, DNS1.electro (ns1.elteam.ir) was down:
HTTP code: 0
Response time: 0 ms
Resolved: DNS1.electro is back up in 6bc062d after 1 hour, 56 minutes.
|
gharchive/issue
| 2023-10-04T04:58:26 |
2025-04-01T04:55:35.793240
|
{
"authors": [
"SIRMaxis"
],
"repo": "SIRMaxis/uptime-robot",
"url": "https://github.com/SIRMaxis/uptime-robot/issues/2565",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2000391006
|
🛑 DNS2.electro is down
In 9562730, DNS2.electro (ns2.elteam.ir) was down:
HTTP code: 0
Response time: 0 ms
Resolved: DNS2.electro is back up in 6d14266 after 59 minutes.
|
gharchive/issue
| 2023-11-18T11:58:30 |
2025-04-01T04:55:35.795678
|
{
"authors": [
"SIRMaxis"
],
"repo": "SIRMaxis/uptime-robot",
"url": "https://github.com/SIRMaxis/uptime-robot/issues/6843",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2022302116
|
🛑 Website is down
In a0f1f1e, Website (ELTeam.ir) was down:
HTTP code: 0
Response time: 0 ms
Resolved: Website is back up in aad3e45 after 39 minutes.
|
gharchive/issue
| 2023-12-03T02:54:47 |
2025-04-01T04:55:35.798110
|
{
"authors": [
"SIRMaxis"
],
"repo": "SIRMaxis/uptime-robot",
"url": "https://github.com/SIRMaxis/uptime-robot/issues/8182",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2047081677
|
🛑 DNS1.electro is down
In 47fcc44, DNS1.electro (ns1.elteam.ir) was down:
HTTP code: 0
Response time: 0 ms
Resolved: DNS1.electro is back up in 31f0eec after 18 minutes.
|
gharchive/issue
| 2023-12-18T17:00:57 |
2025-04-01T04:55:35.800376
|
{
"authors": [
"SIRMaxis"
],
"repo": "SIRMaxis/uptime-robot",
"url": "https://github.com/SIRMaxis/uptime-robot/issues/9497",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2049854546
|
🛑 DNS1.electro is down
In 197ada2, DNS1.electro (ns1.elteam.ir) was down:
HTTP code: 0
Response time: 0 ms
Resolved: DNS1.electro is back up in 104e621 after 39 minutes.
|
gharchive/issue
| 2023-12-20T05:17:47 |
2025-04-01T04:55:35.803036
|
{
"authors": [
"SIRMaxis"
],
"repo": "SIRMaxis/uptime-robot",
"url": "https://github.com/SIRMaxis/uptime-robot/issues/9658",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.