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
167627743
Warning when passing FormattedMessage to ToolbarTitle Problem description When passing react-intl's <FormattedMessage /> as a ToolbarTitle-text I receive a type-warning because it's not a valid String. This issue should be addressed to each string-properties to support react-intl. See #2818 Steps to reproduce <Toolbar> <ToolbarGroup> <ToolbarTitle text={<FormattedMessage id="sample.message.id" />} /> </ToolbarGroup> </Toolbar> Versions Material-UI: v0.15.2 React: v15.2.1 Browser: Chrome I have the same issue trying to pass in a or a for the toolbar title. I think its a 1 line change in ToolbarTitle.js text: _react.PropTypes.string -> text: _react.PropTypes.object Note its just a warning and everything still works as expected. Seems reasonable. Feel free to submit a PR. ToolbarTitle was removed on the v1-beta branch, instead, people can use the Typography component. Do you have an example of Typography working with react-intl's FormattedMessage? It seems Typography is expecting a string Opps, my bad - this works just fine. I had forgotten to import FormattedMessage!
gharchive/issue
2016-07-26T14:53:11
2025-04-01T04:35:08.995221
{ "authors": [ "celandro", "mbrevda", "mbrookes", "ninoraubaum", "oliviertassinari" ], "repo": "mui-org/material-ui", "url": "https://github.com/mui-org/material-ui/issues/4832", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
231909129
[TextField] New line added when value prop is set (multiline is true) and enter is pressed Problem description A new line is added when the value prop is set in TextField (with multiline true), and enter is pressed. Link to minimal working code that reproduces the issue https://www.webpackbin.com/bins/-KlGfX7Kl4Q4uqZ7MITB Go to the textfield and press enter. Versions Material-UI: 0.18.1 React: 15.2 Browser: Chrome This bug still exists in the latest version V3.8.1 here is demo link https://codesandbox.io/embed/nrryxqw5wm @lindenquan Your bug report is incomplete. If you believe it's an issue, please open a new one following our template. Alternatively, could it be a duplicate of #12172? @oliviertassinari I think I know what they mean this is solved by adding event.preventDefault(); keyPress= (event)=>{ if (event.keyCode === 13) { console.log(event.target.value); this.setState({ multiline: '', }); + event.preventDefault(); } } Thanks @joshwooding
gharchive/issue
2017-05-29T01:26:51
2025-04-01T04:35:09.000297
{ "authors": [ "joshwooding", "lindenquan", "oliviertassinari", "sajal50" ], "repo": "mui-org/material-ui", "url": "https://github.com/mui-org/material-ui/issues/6990", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
802377387
[core] fix parent could be null when container is under shadow root [x] I have followed (at least) the PR section of the contributing guide. I'm closing for #17473. We currently don't aim to support shadow DOM. If you have a reproduction for this bug, please share it in this issue. @oliviertassinari It is just an alignment to metariel v5: https://github.com/mui-org/material-ui/blob/next/packages/material-ui/src/Modal/ModalManager.ts#L102 Thanks for sharing more details on the context. We don't aim to fix regular bug on v4, another motivation for not accepting the changes.
gharchive/pull-request
2021-02-05T18:20:12
2025-04-01T04:35:09.002681
{ "authors": [ "meowtec", "oliviertassinari" ], "repo": "mui-org/material-ui", "url": "https://github.com/mui-org/material-ui/pull/24789", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2206031232
[Tabs] Overhaul Tabs API Replaced the slots API with the render prop. Changed the selectionFollowsFocus prop to activateOnFocus and moved it to TabsList. Added the loop prop to the Tabs. Added the keepMounted prop to the TabPanel To do: [x] Style hooks on subcomponents [x] Lava-lamp animation support [x] Rendering the indicator on the server [x] Hooks cleanup [x] Docs update [x] "uncontrolled component becoming controlled" problem when neither value nor defaultValue is set [x] keepMounted prop on TabPanels ~Sliding tab panels~ -> in a separate PR ~Scrollable tab list~ -> in a separate PR Preview: https://deploy-preview-245--base-ui.netlify.app/experiments/tabs/ https://deploy-preview-245--base-ui.netlify.app/base-ui/react-tabs/ Closes #212 Closes #81 Looks like the docs page (https://deploy-preview-245--base-ui.netlify.app/base-ui/react-tabs/) needs to be updated to follow the new props and Anatomy guide? Tested it pretty thoroughly now. Just listing the points we discussed on the call, plus one docs bug: Change data-movement-direction to data-activation-direction and update docs. Change data-activation-direction values to up|down|right|left to accommodate the RTL issue we discussed and update docs. In the docs, the arrow key kbd components in the keyboard navigation table are not rendering properly for me. I just see a missing symbol. Approved presuming these will be resolved before merging. right when the active tab is to the right of the previously active tab (only applied when orientation=vertical). I think this is a typo? Only applied when horizontal? I'm still seeing a missing symbol I think this is a typo? Yup, just corrected it. I'm still seeing a missing symbol OK then, I'll play it safe Ready to 🚀 on my side
gharchive/pull-request
2024-03-25T15:25:40
2025-04-01T04:35:09.011271
{ "authors": [ "atomiks", "colmtuite", "michaldudak" ], "repo": "mui/base-ui", "url": "https://github.com/mui/base-ui/pull/245", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2650815449
[docs] Demo UnstyledSelectMultiple crashes [ ] I have searched for similar issues in this repository and believe that this is not a duplicate. Steps to reproduce Visit https://mui.com/base-ui/react-select/ ?? demo UnstyledSelectMultiple crashes Your environment Tech Version Version v6.1.6 Netlify deploy https://672c37bdbbfdd90008bd8b2d--material-ui-docs.netlify.app Browser Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 Search keywords: @Mynment19 would you mind providing a repro in a sandbox please? 🙏
gharchive/issue
2024-11-12T02:23:40
2025-04-01T04:35:09.015888
{ "authors": [ "Mynment19", "mj12albert" ], "repo": "mui/material-ui", "url": "https://github.com/mui/material-ui/issues/44385", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1411377895
[docs] Allows to access the next MUI-X @joserodolfofreitas Would it be good to have the same behavior to allow user navigating to the next doc and encourage the v6-alpha? I think it makes sense, @alexfauquette. +1 to move forward with it, but I couldn't see the selector on the preview. @joserodolfofreitas It's a bit tricky because the code is on core repository but you can see it only on X pages. So I created two PRs to visualize the result: next (v6) master (v5)
gharchive/pull-request
2022-10-17T11:06:52
2025-04-01T04:35:09.018579
{ "authors": [ "alexfauquette", "joserodolfofreitas" ], "repo": "mui/material-ui", "url": "https://github.com/mui/material-ui/pull/34798", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1437051433
[website] Fix call-to-action buttons layout for some smaller screens As you can see in the attached video (refresh the page if you see just an image), the call-to-action buttons get glued for some smaller screens. This PR fixes this issue (demo also in the attached video). [ ] I have followed (at least) the PR section of the contributing guide. https://user-images.githubusercontent.com/63708012/200124486-17ae1147-9903-48f3-a23e-45e10b63a881.mp4 Hi @siriwatknp, just a ping so you wouldn't forget this PR. I know you won't but just in case... Thanks for the PR but I think the issue is fixed by https://github.com/mui/material-ui/commit/fd159a46cf96e17488121127059a8d0fa5a840f7. Hi @siriwatknp! Yes, I saw @oliviertassinari's PR the other day. I think he did it differently because of this support thing related to Flexbox gap he explained in my other PR.
gharchive/pull-request
2022-11-05T14:27:43
2025-04-01T04:35:09.021993
{ "authors": [ "siriwatknp", "yousoumar" ], "repo": "mui/material-ui", "url": "https://github.com/mui/material-ui/pull/35011", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1826361753
[base] Ban default exports This PR changes the default exports in Base UI to named ones. The name of the previously default export matches the file name. Along with the changes in code, I created additional logic in API docs builders and a codemod. Breaking change All exports from Base UI are named: - import Button, { buttonClasses } from '@mui/base/Button'; + import { Button, buttonClasses } from '@mui/base/Button'; - import BaseMenu from '@mui/base/Menu'; + import { Menu as BaseMenu } from '@mui/base/Menu'; A codemod is provided to help with the migration: npx @mui/codemod v5.0.0/base-use-named-imports <path> To reviewers: please review by commit. The codemod was tested by running it on our codebase, but I'd also appreciate it if you could think of any other cases that could be verified in its tests. Part of https://github.com/mui/material-ui/issues/21862#issuecomment-1647960372 We should check all frozen sandboxes we have in case they have default Base UI imports. cc @samuelsycamore There is an issue with the API imports generation, for non default imports:
gharchive/pull-request
2023-07-28T12:43:47
2025-04-01T04:35:09.025422
{ "authors": [ "michaldudak", "mnajdova" ], "repo": "mui/material-ui", "url": "https://github.com/mui/material-ui/pull/38200", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2344461849
[code-infra] Allow other packages than base to export hooks Make hooks api doc generation work in Toolpad Adding @babel/parser, otherwise it doesn't seem to be able to type the ParseResult correctly. Not completely sure why exactly. Ok, these hooks are really just base specific it seems.
gharchive/pull-request
2024-06-10T17:25:57
2025-04-01T04:35:09.026693
{ "authors": [ "Janpot" ], "repo": "mui/material-ui", "url": "https://github.com/mui/material-ui/pull/42606", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1367548740
Preserve javascript semantics when dependencies fail Currently when an underlying value in a binding expression fails or is loading, the whole expression evaluates to undefined. As can be seen in the following: the second line is bound to the error message of a failing query the third line is bound to the data of a failing query Both of them show the default value "Text" of the Typography component. This PR corrects the behavior and makes sure we can bind to the error message, or the data (undefined) when a query fails. The error information is still preserved. The runtime engine now tracks dependencies of expressions. We can build further on top of this to provide more insight into how the toolpad nodes are interconnected for https://github.com/mui/mui-toolpad/issues/523 🤔 Didn't mean to merge this yet, I thought I was on https://github.com/mui/mui-toolpad/pull/946
gharchive/pull-request
2022-09-09T09:29:59
2025-04-01T04:35:09.029324
{ "authors": [ "Janpot" ], "repo": "mui/mui-toolpad", "url": "https://github.com/mui/mui-toolpad/pull/948", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2321711212
Related to delete link feature Problem: When one person deletes the link and other doesn't know about it and tries to send message, it shows failed to send message try again. This doesn't give a clear message to the user that link is deleted. It can also convey that there might be other issue like network problem or such. If I am opening the same link from the tab that I have deleted, it says waiting for alice to join whereas other person is already joined. Solution: When one user deletes the link, the chat from the other person should also be deleted giving a message this link is destroyed Instead of sending the message "failed to send message try again", should give some specific message like link is deleted. i do like to contribute to contribute to on this issue , i can learn new thing's i will start work on it if u assign this to me Sure, go ahead! Hello @muke1908 , I have a question regarding the use of backend URLs in the .env file. I understand that it's common practice to store the backend URL as an environment variable, like BACKEND_URL, and use it in the code. I recently made some changes to the backend, including creating a new method in the service and defining it in sdk.ts and types.tsx. However, when I try to use this method in the frontend, I encounter an error stating that the method is not defined in the IChatE2EE class. I have run npm run build-service-sdk after making these changes, but the issue persists. Additionally, I noticed that when sending a request to the backend URL directly, like http://localhost:3001/api/chat-link/status/4bf42961-e3cf-469a-9ae6-dea5b66d2fcf, it behaves as expected. This makes me wonder if it's more practical to continue using the backend URL directly in the client rather than modifying the service folder. [ (url) If you want to add the isLinkValid function to the service folder, could you please guide me on how to properly export this function? For now, my proposed solution is to add the backend URL to the .env.sample file and make requests directly to the backend. Should I proceed with this approach, or is there a better method to resolve this issue? if you want to add the memener function isLinnkValid in the service folder please guide me how to export the function . please reply my solution is add a backend url in .env.samle file then make a request to backend as your api of valid status is not made a member function of IChatE2EE class .so i will add this url backend request and push the code shall i ? i hope u r happy with my solution , if u have any other solution please inform me ..!! @chandankumarm55 Did you add the new methods in declaration file as well? types https://github.com/muke1908/chat-e2ee/blob/master/service/src/public/types.ts can see the comment at line number 29 and 30 . @muke1908 if your ok then we will easly fix with using backend URL and sending the request for url at http://localhost:3001/api/chat-link/status/${channelID} we can improve this api at backend then we can easy fix this issue . if your ok i will create a PR. @chandankumarm55 I did not understand what you mean by using "backend URL" To resolve the other issue (method not found), you can try: 1 - update the version in package.json in ./service 2 - npm run build-service-sdk 3 - go to ./client, run npm install @muke1908 When we start this application locally, the frontend runs on localhost:3000 and the backend server runs on localhost:3001. So, these are the URLs we use for running the app locally, correct? I noticed that after deploying the app, the frontend is running at https://chat-e2ee-2.azurewebsites.net/. Additionally, when we send requests to the backend, I see in the network tab that we're hitting the backend at the same URL: https://chat-e2ee-2.azurewebsites.net. Since both the frontend and backend are using the same URL after deployment, would it be correct to assume that if we hit the API http://chat-e2ee-2.azurewebsites.net/api/chat-link/status/${channelID} every time the user component changes, we can trigger this API call and exit? so if we had this url (we can add .env file ) and fetch the data every time if it return false then it will move both user to / route i have tested the production mode api also if the link is not valid then it return the below response if the link is valid then it return as so we need to improve the api returning status correctly at the backend that is db folder . so i have improved also locally but for production model only u need create a .env file and add the key pair as BACKEND_URL = https://chat-e2ee-2.azurewebsites.net/ . it is enough . can i create a PR now . i think u understand . and i also i need to ask to show the component in front end . should i add component for showing that any one of you deleted a link or make a alert message . file 's to be changed are - client/src/pages/messaging/index.js and .env and backend = backend/api/chatLink/index.js
gharchive/issue
2024-05-28T18:49:04
2025-04-01T04:35:09.073099
{ "authors": [ "TrishalaGhetiya", "chandankumarm55", "muke1908" ], "repo": "muke1908/chat-e2ee", "url": "https://github.com/muke1908/chat-e2ee/issues/352", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
217020201
When a user logs in, download all the recent notification objects and listen for changes using the full Redux pipeline. Parent Issue: #120 Hours: 5 hours We are most definitely going to want to structure this so that we listen to changes in real-time instead of just when we refresh the page. As such, Firebase's .on should be used instead of .once so as to use an active listener that responds to changes in the database. This also implies some significant changes in the way the action-creator is designed. Refer to the getUserCourses() function in firebase_actions.js for an insight into how to implement this. hours:5
gharchive/issue
2017-03-26T01:57:08
2025-04-01T04:35:09.080646
{ "authors": [ "samratdebroy", "svelupillai" ], "repo": "mukulikadey/SOEN341-Group1", "url": "https://github.com/mukulikadey/SOEN341-Group1/issues/128", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1066777701
How to access Metrics Toolkit Web UI via DLB expects "/api" in mapping rule output path Team, We are trying to use this project in our Anypoint Platform to send platform metrics to Anypoint Monitoring and use Web UI also. We have deployed this mule app behind DLB in cloudhub and tried accessing "Metrics Toolkit UI" via DLB expects "/api" in mapping rule output path but we failed to access web UI due to DLB mapping rules. Note: We can not change our DLB mapping rules since these are in use for a long time by multiple deployments. Please see attached screenshots for more details. Please let us know any workaround/solution for this issue(accessing web UI via DLB expects "/api" in mapping rule output path). Hi @stackmerge, We cannot provide guidance on how to configure your DLB mappings etc. You can always change the path for the embedded dashboard HTTP listener as required to work with your existing DLB config. For example, path: "/api/dashboard/*" Hope that helps, Richard
gharchive/issue
2021-11-30T04:27:24
2025-04-01T04:35:09.083957
{ "authors": [ "richardmckinley", "stackmerge" ], "repo": "mulesoft-catalyst/metrics-toolkit", "url": "https://github.com/mulesoft-catalyst/metrics-toolkit/issues/162", "license": "Unlicense", "license_type": "permissive", "license_source": "github-api" }
356781881
Add functional include Fixes compilation with clang 6.0.1 on my machine since std::functional is defined in functional header. Awesome, thank you @def-.
gharchive/pull-request
2018-09-04T12:13:32
2025-04-01T04:35:09.089250
{ "authors": [ "AlexDenisov", "def-" ], "repo": "mull-project/mull", "url": "https://github.com/mull-project/mull/pull/385", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
753005689
[Docs] typos and such Found some mistakes in the docs. disclaimer: I'm not a native speaker either... should be good btw, i got to know about this project via this years llvm dev meeting video https://www.youtube.com/watch?v=DfoS9kdTWmI and already like the tool :heart:
gharchive/pull-request
2020-11-29T20:55:58
2025-04-01T04:35:09.090739
{ "authors": [ "Green-Sky" ], "repo": "mull-project/mull", "url": "https://github.com/mull-project/mull/pull/780", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1221243032
Init observe func Signed-off-by: Fahed DORGAA fahed.dorgaa@gmail.com Description of your changes Fixes # observe func WIP; ObserveAndDelete RunPolicy I have: [x] Read and followed Crossplane's contribution process. [x] Run make reviewable to ensure this PR is ready for review. [ ] Added backport release-x.y labels to auto-backport this PR if necessary. How has this code been tested @fahedouch Thanks for your continued effort on this PR! I believe we are very close to merge it. Could you please check the last few comments I appended above: It looks apiVersion was deleted for some reason, not sure if this is intentional. GetPolicyRun/SetPolicyRun seems not being used. Lastly, a couple of CI pipeline jobs failed, could you please take look? Thanks again!
gharchive/pull-request
2022-04-29T16:47:17
2025-04-01T04:35:09.097866
{ "authors": [ "fahedouch", "morningspace" ], "repo": "multicloudlab/crossplane-provider-ansible", "url": "https://github.com/multicloudlab/crossplane-provider-ansible/pull/57", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
172262815
Trainingdata hi, i'm learning this project,and i want to get the training data in this program, because it's too waste time to collect training data with manually operate the car, so do you mind to give your training data or upload the training data? @vimalvnair @Vignesh1115 ☝️ @cswwp Sorry for the delay, you can find the dataset here - https://s3.amazonaws.com/multunus-machine-learning/autonomous-rc-car-data-set.tar.gz . Please let me know if you need anything. @Vignesh1115 i'm very pleased to receive your reply, and also thank you for your dataset. Thank you for your kind words @cswwp. Let me know if you need help with anything. I will be closing this issue.
gharchive/issue
2016-08-20T09:28:48
2025-04-01T04:35:09.226849
{ "authors": [ "Vignesh1115", "cswwp", "yedhukrishnan" ], "repo": "multunus/autonomous-rc-car", "url": "https://github.com/multunus/autonomous-rc-car/issues/1", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
65374133
Super calls don't work if super class was implicitly defined It seems that super classing behaviour is different if the super class was implicitly defined as seen in the following example: class B is A {} class A { new (value) { IO.print("A ", value) } } class C { new (value) { IO.print("C ", value) } } class D is C {} var d = new D("test") var b = new B("test") If you run this script you get the following error: wren gavin$ ./wren superclasses.wren C test B does not implement 'new(_)'. [main line 14] in (script) It should print out B test as well. Shouldn't this be expected to fail on the class B is A {} line, given that A has not been defined at that point? Shouldn't this be expected to fail on the class B is A {} line, given that A has not been defined at that point? That's a good point, being the common programmer used in pre-declare everything before it's use. What @gsmaverick spotted is that it seems that B is bound to an implicit (alas unknown) "empty" class A. I'm not sure, but given the dynamic nature of Wren, I think it could safely proceed in binding class B to class A even if the latter is not defined yet. I'm not sure, but given the dynamic nature of Wren, I think it could safely proceed in binding class B to class A even if the latter is not defined yet. No, this won't work because of two things: Fixed object layout: As far as I know Wren determines the size of an instance when its class is defined, which necessarily includes the space needed for storing any members of superclasses. This means you can't define a superclass afterwards. Copy-down inheritance: Methods are copied down from the superclass, to speed up the lookup when they are called. Again, this means the superclass needs to be defined first. A single-pass compiler: The above issues may have been resolvable by doing two passes through the source code. Yet, Wren only does a single pass to generate the bytecode. You can read about these things at http://munificent.github.io/wren/performance.html. Of course, I may be wrong with my conclusions since I do not know the implementation. Maybe there is a reason for accepting class B is A {} when A is undefined that I'm not aware about. You can read about these things at http://munificent.github.io/wren/performance.html. Yep, did know this. Mine was just a speculation on the way Wren could work, not the way works right now. :wink: It is due to copy-down inheritance that I wrote that perhaps Wren is interpreting A as an implicit empty class. This is coherent with the behaviour @gsmaverick depicted, i.e. that new(_) is not implemented (since the A was empty then B is defined). Oh, ha. This is just a straight up bug. :grin: Wren has a single bytecode instruction for creating a class, CODE_CLASS. It uses that both for class definitions with an explicit superclass (class Foo is Bar { ... }) and those without (class Foo { ... }). For the former, the compiler compiles the superclass class (here Bar) and puts that on top of the stack. The CODE_CLASS uses that to find and bind the superclass. For the latter, the compiler just pushes null and the VM code for CODE_CLASS treats null as "inherit from Object". So in this code: class B is A {} A evaluates to null since it hasn't been defined yet. Then CODE_CLASS thinks that's a class definition without a superclass at all, so you get B inheriting from Object. There's no new(_) in object, so you get a method not found error. You'd get the same bug if you did: class B is null {} Using a null sentinel value to mean "no superclass" was just a dumb idea on my part because a superclass class can also (erroneously) evaluate to null. Instead, we should probably put an operand in the bytecode itself after CODE_CLASS to determine if a superclass should be looked for or not. Then, a superclass clause that evaluates to null should be a runtime error just like any other non-Class superclass. Good job spotting this! As far as I know Wren determines the size of an instance when its class is defined, which necessarily includes the space needed for storing any members of superclasses. Yes... mostly. The challenge is that a class's superclass isn't known at compile time. When you have class Foo is Bar, the compiler doesn't know what value Bar is going to evaluate to until the code is executed. You can write code like: class Base {} class TuesdayBase {} class Derived is (todayIsTuesday ? TuesdayBase : Base) {} (Not that I'd call this good code!) But even a simple variable name for the superclass can't be resolved until runtime. At the same time, we do need to know how big an instance of a class is and what offsets all of its fields are at. To handle that, there's a very simple "bind" step when a subclass is defined at runtime. During that, it adjusts the total number of fields to take into account its superclass's fields. Also, whenever a method is bound to a class (or subclass) Wren runs through its bytecode and shifts all of its field accesses down to compensate for the superclass's fields now that we know how many there are. So, it's mostly a single-pass compiler. There's just one other very fast patch-up for method bodies when they get bound. This burns some CPU cycles at class definition time, but makes field access faster at runtime. Always a good trade-off. What an informative bug :) Lots of interesting details were learned! I'm going to tackle a fix for this issue and see where I end up. class Derived is (todayIsTuesday ? TuesdayBase : Base) {} Woah, I had totally not expected that to be possible! I'm sure it has its advantages somewhere. Thanks for all the details! Just playing around here: var defineFoo = new Fn {|superclass| class Foo is superclass { new { super IO.print("Foo created") } } return Foo } class Bar { new { IO.print("Bar created") } } var Foo = defineFoo.call(Bar) IO.print(new Foo) Wren is much more dynamic than I thought. :-)
gharchive/issue
2015-03-31T06:01:07
2025-04-01T04:35:09.262585
{ "authors": [ "MarcoLizza", "bjorn", "gsmaverick", "munificent" ], "repo": "munificent/wren", "url": "https://github.com/munificent/wren/issues/246", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
307860711
Feature request: help button with customisable URL Would be nice to have a button top right for Help - this should open a URL that could be defined in config Yes, exactly. What you suggest sounds perfect. Make it open in a separate window/tab. Check PR #1041 Doesn't work for me in v4
gharchive/issue
2018-03-23T00:29:15
2025-04-01T04:35:09.264575
{ "authors": [ "danner26", "ofirgalcon" ], "repo": "munkireport/munkireport-php", "url": "https://github.com/munkireport/munkireport-php/issues/1033", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2686033294
Covers not visible in playlist (subsonic provider) What version of Music Assistant has the issue? 2.3.3 What version of the Home Assistant Integration have you got installed? 2024.11.4 Have you tried everything in the Troubleshooting FAQ and reviewed the Open and Closed Issues and Discussions to resolve this yourself? [X] Yes The problem Opening a playlist from subsonic provider results in not showing any cover art in the track list, only the main playlist cover art is shown. This happens only for playlists, not for album track list or album list. How to reproduce using subsonic provider open a playlist, no cover art displayed for any track in the playlist Music Providers Subsonic Player Providers Any Full log output No response Additional information playlist view tracks from an album view (correct), same as album list Just for the record, in Symphonium android app, cover arts are correctly displayed when opening any playlist. What version of Home Assistant Core are your running 2024.11.3 What type of installation are you running? Home Assistant OS On what type of hardware are you running? Generic x86-64 (e.g. Intel NUC) I see this as well, the tracks in a playlist do not show the album cover art, I am not sure that album covers are associated with tracks but if they are supposed to be, I can make that change in the provider. I am not sure that album covers are associated with tracks but if they are supposed to be, I can make that change in the provider. The other providers show the track cover so I think subsonic provider should behave the same way.
gharchive/issue
2024-11-23T14:00:34
2025-04-01T04:35:09.396040
{ "authors": [ "de666", "khers" ], "repo": "music-assistant/hass-music-assistant", "url": "https://github.com/music-assistant/hass-music-assistant/issues/3215", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
443386616
Add overview of available modules to guidelines? There is an overview for elements, attributes etc., but not for the available modules. Maybe this would be good to have, as every element description is pointing to a certain module and attributes and models and the like can be sorted "by module". Additionally, there could/should be a link from both locations to the module overview descriptions. Modules are here: https://github.com/music-encoding/music-encoding/tree/develop/source/modules I was thinking about adding that to the new chapter 1 of the Guidelines, but that might be too hidden… Yes, too hidden. May be as a separate entry on the right panel next to Elements, Atttribute Classes etc.. And from there on? Open a page with the full list of modules. Each of those could be a link that points to another overview page which gives a brief description at the top (probably just the //moduleSpec/desc), and then lists all elements, model / att classes etc. from that module. Right? Yes, analogue to the Elements, Attributes etc. pages Closing since modules are now integrated into the guidelines dev version.
gharchive/issue
2019-05-13T13:03:41
2025-04-01T04:35:09.399236
{ "authors": [ "kepper", "musicEnfanthen" ], "repo": "music-encoding/guidelines", "url": "https://github.com/music-encoding/guidelines/issues/101", "license": "ECL-2.0", "license_type": "permissive", "license_source": "github-api" }
82030175
Deprecate and add @vel to From andrew.hankinson on July 19, 2012 14:36:13 If <noteOn> and <noteOff> are deprecated (see #89), then we should deprecate <vel> as well. To record note velocity information the MIDI module should define @-vel on <note>. Deprecating <vel> is not urgent, but adding @-vel to <note> should be done for this release. Original issue: http://code.google.com/p/music-encoding/issues/detail?id=90 From pd...@virginia.edu on August 02, 2012 11:06:37 Labels: -Type-Enhancement Type-Bug From pd...@virginia.edu on June 12, 2014 14:25:03 Labels: -Priority-Medium Priority-Low
gharchive/issue
2015-05-28T17:02:20
2025-04-01T04:35:09.405092
{ "authors": [ "ahankinson" ], "repo": "music-encoding/music-encoding", "url": "https://github.com/music-encoding/music-encoding/issues/90", "license": "ECL-2.0", "license_type": "permissive", "license_source": "github-api" }
1664583201
Bug: Captions jump to top on hover Is there an existing issue for this? [X] I have searched the existing issues Which Mux Elements/Packages does this apply to? Select all that apply mux-player-react Which browsers are you using? Chrome, Safari, Firefox Which operating systems are you using? None Description Sometimes when I hover over the player captions jump to the top for a second and then come back. This is not the default behavior that happens on hover when closed captions get bottom padding. This can also be seen on Mux Player Docs customisation page: https://docs.mux.com/guides/player/customize-look-and-feel Reduced test case https://docs.mux.com/guides/player/customize-look-and-feel Steps to reproduce Play the video with captions Hover over and out a couple of times while captions are playing Current Behavior Captions go all the way to the top as in the top position is set to 0. Expected Behavior Captions get only the bottom padding. Errors No response What version of the package are you using? v1.3.0 Interesting, I did see it bounce to the top for a second, though, it isn't supposed to (the comment is out of date): https://github.com/muxinc/elements/blob/1d79b9e5dec5136a59735b036cbe04495d28814f/packages/mux-player/src/index.ts#L515-L517 @gkatsev is there a way to resolve this? Not currently. We're investigating alternatives and courses of action. @gkatsev is there a way to set the captions position to be fixed? e.g. 20px from the bottom of the player? @nikolagigic we just merged a change related to this. It's now available in a canary build @mux/mux-player-react@1.10.0-canary.0-1f236d4 and will be in an official release the next time we publish. Fix is out in version 1.10.1.
gharchive/issue
2023-04-12T13:34:03
2025-04-01T04:35:09.421930
{ "authors": [ "gkatsev", "nikolagigic" ], "repo": "muxinc/elements", "url": "https://github.com/muxinc/elements/issues/660", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
246366260
Cannot get any data from PlexPy I just get streams of the blow when attempting to run it: 2017-07-29 00:03:23 DEBUG PlexPy APIv2 :: API called with kwargs: {'cmd': u'get_users_table', 'apikey': u'********de'} API key is correct, have deleted/regenerated. Any tips would be appreciated :) Hey @benjmd, any other logs you can send my way? Yep, where from/what do you need? (also love the super fast reply!) When plex isn't playing anything, I get this ever 30 seconds inline with the UPDATE_INTERVAL_MS=30000: No sessions to log: Fri Jul 28 2017 14:44:20 GMT+0000 (UTC) When plex is playing something, I get nothing in the plex2influx log. I get the original logged output from plexpy logs (2017-07-29 00:03:23 | DEBUG | PlexPy APIv2 :: API called with kwargs: {'cmd': u'get_users_table', 'apikey': u'********de'} -- | -- | --) ok that's a good log it means it did establish a connection to plexpy and logging there are no active play sessions. If you look in your influxDB do you have data in library, users etc? Nope, nothing gets written to influxdb. I don't have user/pass set as it's all local/is a problem for later-benjmd. I currently run telegraf/home-assistant/speedtest and they're all writing to influxdb. I tried setting a user/pass as part of t/s, made no difference. ok can you try running the container with --privileged ? I'll give it a go as soon as I wan work out how to do it on synology. Its super limited, I usually have to export the config, change things, clear the container, delete it, then import the modified config file. Ah yes. I run all my containers in Unraid and have to do a similar workflow to update my packages. I'm going to guess privileged mode is the answer here. It's the only way they work in Unraid for me. I'll update the README tonight! No dice, running privileged. Same deal. Nothing being written to influxdb. Still get "No sessions to log: Fri Jul 28 2017 15:01:16 GMT+0000 (UTC)" when something is playing in plex, still get "PlexPy APIv2 :: API called with kwargs: {'cmd': u'get_users_table', 'apikey': u'********de'} --" and "2017-07-29 00:33:25 | DEBUG | PlexPy APIv2 :: Cleaned kwargs: {}" in the plexpy logs. ok so plexpy connection seems to be good. So let's debug Influx. Is the database created? INFLUX_HOST correctly defined? The script doesn't create the database for you so that would be the first thing I check. The good thing about this thread is it clearly indicates this script needs better logging & error handling! haha, yup. PlexPy connection appears ok, but I don't even know if its returning usable data. I deleted and recreated the database in influxdb, no change. I'm not keen on containers having privileged access either. Seems like it could go bad. Assuming you mean INFLUXDB_HOST (unless that's changed recently)? I have tried on network IPs (192.168.1.x and on the docker bridge network 172.17.0.x), I have tried linking the containers so that hostnames work (influxdb:port etc). I have things running bridged so I can monitor container network usage, something I haven't worked out how to do when sitting on the host network. I tried 'plex' and plex as the "INFLUXDB_DB", no change. Have you thought about making it a config file instead of a host of environment variables? Like this: https://github.com/barrycarey/Speedtest-for-InfluxDB-and-Grafana/blob/master/config.ini Re: the config file I haven't thought about a config ini or yaml config simply because this started as a node script then became a container. I'd be open to a PR though! Have a look at all the config options in the script and see if anything stands out that is mismatched with your setup e.g. https, port etc: https://github.com/mvantassel/plexpy2influx/blob/master/plexpy2influx.js#L12-L17 Will do, thanks for your help :-) On Sat, 29 Jul 2017 at 00:59, Matthew VanTassel notifications@github.com wrote: Re: the config file I haven't thought about a config ini or yaml config simply because this started as a node script then became a container. I'd be open to a PR though! Have a look at all the config options in the script and see if anything stands out that is mismatched with your setup e.g. https, port etc: https://github.com/mvantassel/plexpy2influx/blob/master/plexpy2influx.js#L12-L17 — You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/mvantassel/plexpy2influx/issues/5#issuecomment-318684472, or mute the thread https://github.com/notifications/unsubscribe-auth/ARvsBDgWOjGfirwJn5zdpWdAejAi6By3ks5sSf5LgaJpZM4Omrxl . New logs look the goods, showing a connection to PlexPy (which we saw yesterday): Sat Jul 29 2017 16:22:49 GMT+0930 (ACST): Initialize PlexPy2Influx Sat Jul 29 2017 16:22:49 GMT+0930 (ACST): Getting PlexPy Activity Data Sat Jul 29 2017 16:22:49 GMT+0930 (ACST): Getting PlexPy Library Data Sat Jul 29 2017 16:22:49 GMT+0930 (ACST): Getting PlexPy User Data Sat Jul 29 2017 16:22:50 GMT+0930 (ACST): Parsing PlexPy Activity Data Sat Jul 29 2017 16:22:50 GMT+0930 (ACST): Parsing PlexPy User Data Sat Jul 29 2017 16:22:51 GMT+0930 (ACST): Parsing PlexPy Library Data Is something supposed to appear when it writes/doesn't write to influxdb? Had a look at the linked config options, all appear OK. I've attached a pic of the environment variables in use. I've added all the non-essential ones too to rule them out as making a difference. Still nothing in influxdb - Also I have no idea what I'm doing, so it could be that ;) Glad you the logs are showing up for you but it looks like I missed adding a catch to the writeToInflux method. I just added that so you should see an error like the one I pasted below. If writes are successful you'll get a message for those already. Hopefully this gives us some useful errors to get to the bottom of what's going on! You legend, found it. Environment variable INFLUXDB_HOST doesn't do anything. Changed it to INFLUX_HOST, now getting things recorded: Sat Jul 29 2017 22:42:50 GMT+0930 (ACST): wrote session data to influx Oh wow that's a huge blunder of my README. I just updated that and added working support for username/pass should you need that in the future. Glad you got it sorted out! I'll close this issue but if you have any feature requests log and issue and I'll see what I can do! Thanks heaps, awesome work :)
gharchive/issue
2017-07-28T14:37:00
2025-04-01T04:35:09.447575
{ "authors": [ "benjmd", "mvantassel" ], "repo": "mvantassel/plexpy2influx", "url": "https://github.com/mvantassel/plexpy2influx/issues/5", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
2546277951
Doesn’t Work a Quarter of the Time It will be working fine, then suddenly it does nothing. I can see it is trying to open a new tab, but it never gets sent to Obsidian. If I wait, it eventually works again. I don't know if it has something to do with multiple Firefox windows open. I have 4 open currently and it was working in half of them, but then it only worked in 1, to 0 working, but now the same 2 that originally worked are fine? The other 2 windows never seem to save the tab, though... With just this info i can only suggest to reinstall the extension and make sure to tick the pop up that asks for the permission to open new tabs the first time you save a note. Reinstalling it fixed it for a day, but now its back to the same issue. It stopped working after I dragged a tabbed out to create an entirely new window for it. I tried reinstalling the extension but it was still broken, restarting Firefox fixed it.
gharchive/issue
2024-09-24T20:05:07
2025-04-01T04:35:09.450212
{ "authors": [ "mvavassori", "ockloh" ], "repo": "mvavassori/obsidian-web-clipper", "url": "https://github.com/mvavassori/obsidian-web-clipper/issues/22", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
842337916
Global mvn settings.xml via mvnd.properties #383 Add some more details on how to set properties for mvnd configuration requested in #383 Hello @gnodet thank you very much for your comment and the update. Yeah I really like your changes. It describes the details more clear and user friendly. Any idea how to fix the failing check? Thanky you and best regards Michael
gharchive/pull-request
2021-03-26T22:36:01
2025-04-01T04:35:09.455333
{ "authors": [ "mgoldschmidt-ds" ], "repo": "mvndaemon/mvnd", "url": "https://github.com/mvndaemon/mvnd/pull/386", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
479930055
when first loading on ubuntu linux, get error dialog Can't take a screenshot, but each time I create a new instance, it pops up a message that says "Read failure, not able to find all expected values in /home/ubuntu/mwc-gui-wallet//wallet713v2.toml" I can just close the error and everything seems to work fine. Duplicate of https://github.com/mwcproject/mwc-qt-wallet/issues/40. Closing.
gharchive/issue
2019-08-13T02:29:26
2025-04-01T04:35:09.462350
{ "authors": [ "cgilliard" ], "repo": "mwcproject/mwc-qt-wallet", "url": "https://github.com/mwcproject/mwc-qt-wallet/issues/25", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
615426285
Resize Message Box smarter We should try to find the way adjust message box to content size better It works great for me now, probably user had old version. Closing I think I saw some things like this on Linux so it's possible that's what they were using. Did you try Linux? Will try There was issue under the windows, now works for me. Also I think I fixed that problem with 200% scale under the Windows, one of qt flag add additional scale. Testing: Please test MacOS, Linux, Windows Linux with high definition monitor (retina or 4k) and different scales Windows with high definition monitor (retina or 4k) and different scales Verified with Windows QT-Wallet and alignment looks good to me. Successfully verified the message box in MAC platform also, hence closing this ticket.
gharchive/issue
2020-05-10T16:23:50
2025-04-01T04:35:09.465653
{ "authors": [ "bayk", "electrum17", "vinayaga07" ], "repo": "mwcproject/mwc-qt-wallet", "url": "https://github.com/mwcproject/mwc-qt-wallet/issues/303", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2203555035
chef award track the increments of the vanilla statistics damage dealt, kills on each stage, and number of each item held. Identify stagnant increases followed by a significant increase, indicating that a player has completed a build/item synergy, etc., and evaluating how successful it was. Other stats such as item scrapping and printing incrementers could be implemented and tracked to solidify the identification of this behaviour. public methods to recieve the vanilla stats in different data types can be found in the instance of RoR2.Stats.StatSheet All/sufficient relevant stats exist to identify behaviour, just need to implement awards themselves
gharchive/issue
2024-03-23T00:16:07
2025-04-01T04:35:09.480253
{ "authors": [ "mwoiii", "nod03" ], "repo": "mwoiii/stat-mod-ror2", "url": "https://github.com/mwoiii/stat-mod-ror2/issues/6", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1183201143
Apps list not optional in create, remove & update Create, remove & update functions (main.py) not letting apps be an optional argument, inconsistently with the base run command Explicit reference needed systematically from 2.0-alpha-2
gharchive/issue
2022-03-28T10:07:24
2025-04-01T04:35:09.506013
{ "authors": [ "mx-personal", "sxoi-max" ], "repo": "mx-personal/yggdrasil", "url": "https://github.com/mx-personal/yggdrasil/issues/14", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
100567044
Feature request When you work with pure CoreBluetooth it means you need to use a chain or even a tree of delegate methods` asynchronous calls. Could you wrap this code in your library's style? Probably. I have no experience with Core Bluetooth, but I could probably whip something up. Can you provide a list of the classes and methods you need? #worksforme ~/tmp$ carthage update *** Fetching PromiseKit *** Fetching OMGHTTPURLRQ *** Checking out OMGHTTPURLRQ at "3.0.0" *** Checking out PromiseKit at "39495e0212792d3cc158b3bca92ddcc417679f55" *** xcodebuild output can be found in /var/folders/9p/55y6r8hs3yz2qkhvf74gc0gh0000gn/T/carthage-xcodebuild.hikZiR.log *** Building scheme "OMGiOS" in OMGHTTPURLRQ.xcodeproj *** Building scheme "OMGOSX" in OMGHTTPURLRQ.xcodeproj *** Building scheme "PMKiOS" in PromiseKit.xcodeproj *** Building scheme "PMKOSX" in PromiseKit.xcodeproj warning: All interface orientations must be supported unless the app requires full screen. warning: A launch storyboard or xib must be provided unless the app requires full screen. ~/tmp$ ls Carthage/*/*/*.framework Carthage/Build/iOS/PromiseKit.framework Carthage/Build/Mac/PromiseKit.framework ~/tmp$ cat Cartfile github "mxcl/PromiseKit" "swift-2.0-beta5" Can you build anything else with Carthage? Have you set your xcode-select to use Xcode-beta.app rather than Xcode.app? I worked with bluetooth beacons. I meaned a code to find peripherals and get their characteristics. Here is an example of the tutorial: https://www.invasivecode.com/weblog/core-bluetooth-for-ios-6-core-bluetooth-was/ Sorry but I don't have a code now and I also don't have any bluetooth device to rewrite it again. But the main idea is: 1)to look for a device 2)to try to connect to the discovered one 3)to "discover services" of the connected one 4)to "discover characteristics" for the discovered service 5)to read characteristic's values And there is error handling somewhere here. Each action from the listed above is a separate delegate method which is called asynchronously and may be called multiple times for the same device. I think it could be better to link all these methods into one "promise sequence". But anyways you need at least a BLE device. I recommend you a beacon for 2 reasons: it is enough cheap specifically for beacons apple added iBeacon library which you can also use to check the result. @gerchicov-bp you can also look bluetoothkit. doesn't take u all the way there, but might be helpful, if you only have 1 char on ur services Merged
gharchive/issue
2015-08-12T15:14:39
2025-04-01T04:35:09.511561
{ "authors": [ "foobar8675", "gerchicov-bp", "mxcl" ], "repo": "mxcl/PromiseKit", "url": "https://github.com/mxcl/PromiseKit/issues/238", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
392074747
Revised dispatching code ported to v7 Fixes #888. Are the .travis.yml changes required for this PR? Yes. See comments here in the thread for #888. A relatively recent compiler is required, even for Swift 3, so the test configuration has to change. This .travis.yml also has some support for harvesting build artifacts (for Travis debugging) and auto-building arbitrary branches. Those features have no effect if you don't define Travis environment variables to enable/configure them. But if you don't want to accept those changes, you can just reverse commits 0b936fd, f78eaf1, and 0da820a. (Or I can prepare a branch with those changes.) K I see, is it possible to lose all the rearrangements? It's hard for me to reason about the changes in the travis file because of this. And I'm nervous about the changes there because I have spent gosh knows how many hours on it and it's fiddly and flakey and breaks mean that are CI testing is less certain. I have pushed the start of v7, and I have stripped it quite a bit, my thinking being that v7 can be modernized, and we'll maintain v6 as the back-compat version. This means we have a lot less worry about older versions having ambiguity for this patch. Sorry that the branch now needs merging again. If you like, I can do it. There doesn’t seem to be an Xcode project at the current V7 tip. Is this the intended state? There doesn’t seem to be an Xcode project at the current V7 tip. Is this the intended state? Yes, you have to generate it: swift package generate-xcodeproj Don’t worry about CI, it's not going to work until Travis have an Xcode 10.2 image. Looks ready to merge to me, what you say? Yes, OK to merge if you're ready for it. There are a couple of issues (that we already talked about) yet to address, so I want to be sure you're aware that this is still WIP code from my perspective. (Though it should be 100% working and near-final API.) If you'd rather defer until I have something that looks completely done to me, that would be fine too. I mostly just wanted to get synced with the v7 line and get a sense of the v7 changes before finalizing.
gharchive/pull-request
2018-12-18T09:50:53
2025-04-01T04:35:09.516678
{ "authors": [ "GarthSnyder", "mxcl" ], "repo": "mxcl/PromiseKit", "url": "https://github.com/mxcl/PromiseKit/pull/975", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1863689112
[Snyk] Security upgrade cocoapods from 1.11.3 to 1.12.0 This PR was automatically created by Snyk using the credentials of a real user.Snyk has created this PR to fix one or more vulnerable packages in the `rubygems` dependencies of this project. Changes included in this PR Changes to the following files to upgrade the vulnerable dependencies to a fixed version: example/Gemfile ⚠️ Warning Failed to update the Gemfile.lock, please update manually before merging. Vulnerabilities that will be fixed With an upgrade: Severity Priority Score (*) Issue Breaking Change Exploit Maturity 501/1000 Why? Recently disclosed, Has a fix available, CVSS 4.3 Information Exposure SNYK-RUBY-ACTIVESUPPORT-5851458 No No Known Exploit (*) Note that the real score may have changed since the PR was raised. Check the changes in this PR to ensure they won't cause issues with your project. Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open fix PRs. For more information: 🧐 View latest project report 🛠 Adjust project settings 📚 Read more about Snyk's upgrade and patch logic Learn how to fix vulnerabilities with free interactive lessons: 🦉 Learn about vulnerability in an interactive lesson of Snyk Learn. We upgraded dependencies in a separate PR, closing this.
gharchive/pull-request
2023-08-23T16:50:39
2025-04-01T04:35:09.533843
{ "authors": [ "emilysallstrom", "mx-infosec" ], "repo": "mxenabled/react-native-widget-sdk", "url": "https://github.com/mxenabled/react-native-widget-sdk/pull/85", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
112516857
Drawer not close in outside touch Thanks for great work. How can close drawer in outside touch of drawerlayout? you can call the method 'mLeftDrawerLayout.closeDrawer()' to close drawer automatically. I hope it can help you solve the problems. actually outside touch can't close drawer. outside touch do not have effect in drawer outside touch can scroll the fragement beside the drawer... please fix this bug , I like this drawer show. I have noticed that bug . I'm trying to fix it . I will complete soon. @eling13 this bug has been fixed already in 1.2 version. use dependencies { compile 'com.mxn.soul:flowingdrawer-core:1.2.0' }
gharchive/issue
2015-10-21T05:40:31
2025-04-01T04:35:09.536559
{ "authors": [ "MayurDev", "eling13", "mxn21" ], "repo": "mxn21/FlowingDrawer", "url": "https://github.com/mxn21/FlowingDrawer/issues/1", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
179455710
add some api doc add the BigIntegerTypeHandler Could you just remove the number from the explanation? For example : has five build() methods -> has the following build() methods And if it's possible, please apply the non-translation changes to the other language files. Thank you! Iwao
gharchive/pull-request
2016-09-27T10:31:30
2025-04-01T04:35:09.542453
{ "authors": [ "IAMTJW", "harawata" ], "repo": "mybatis/mybatis-3", "url": "https://github.com/mybatis/mybatis-3/pull/789", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
530571164
不能识别其他方向的图片吗? 用身份证试了下 图片方向不是正的 是的,只支持倾斜30度以内的 是的,只支持倾斜30度以内的 角度这部分代码是在哪个文件里呢,能否自己调整该部分代码
gharchive/issue
2019-11-30T12:08:14
2025-04-01T04:35:09.564111
{ "authors": [ "KDT-G", "myhub", "w1249841003" ], "repo": "myhub/tr", "url": "https://github.com/myhub/tr/issues/23", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
439656752
cmd/govim: tidy up logging of log locations Running vim via the terminal leaves this behind: $ vi Vim channel logfile: /tmp/vim_channel_log_20190502_1636_22_xFeykrXYcGgo Press ENTER or type command to continue $ At some point soon-ish, we can probably avoid printing the log locations by default and instead provide a command to echo them along with a whole load of other bug report details; possible tie in with #198? Asked via https://groups.google.com/forum/#!topic/vim_dev/VDeDUTAV0aw Proposal for now: use this echom + feedkeys hack when installing the Go programs just have a simple command that the user can invoke to echom the log file locations This was addressed in https://github.com/myitcv/govim/pull/303
gharchive/issue
2019-05-02T15:38:46
2025-04-01T04:35:09.572946
{ "authors": [ "myitcv" ], "repo": "myitcv/govim", "url": "https://github.com/myitcv/govim/issues/200", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
1265940290
🛑 xilef is down In 2a75699, xilef (https://www.xilef.org) was down: HTTP code: 0 Response time: 0 ms Resolved: xilef is back up in a2b776f.
gharchive/issue
2022-06-09T10:42:34
2025-04-01T04:35:09.576319
{ "authors": [ "fawaf" ], "repo": "mymovielist/uptime", "url": "https://github.com/mymovielist/uptime/issues/9", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
101226697
glog issue From glog requires flag.Parse() to use his flags, micro dont use flag.Parse() so when excuting the micro-based code, it will show the Error in log. I think we should change log system or put a flag.Parse() into cmd.Init() to bypassing these errors , what do you think ? I will test it out and see how it works. I had issues with use of the flag package and codegangsta/cli in the past. Perhaps just calling flag.Parse after the other initialisation will be fine. putting a flat.Parse() at the start of cmd.Init() appears to work for this, but not at the end. You notice that if you then try execute --help it gets swallowed by the flag package. Bit painful. flag.parse() will overide whole micro-go flag function, putting flag.Parse() ath the start of cmd.Init() is not a soulution :dancer: Possible solution would be to add glog flags to cmd.Flags and after parsing moving values to glog package using flag.Set(). Second possible solution is to copy all flags on run-time from standard flag library to cmd.Flags and then moving parsed values back. I will experiment with both ideas later this evening and commit a solution. Hate to see this linger on. Opted to add glog flags and then use flag.Set(). Still needs some work as I believe its ignoring log_dir https://github.com/myodc/go-micro/commit/b94c5d4026ff48190a7a295f2dfd8775e6c306f7 Last time i was trying to use -log_dir flag it didn't work aswell so it's possible that it's glog issue. You're right. Go get and all is good. Closing this issue as I think we've got this sorted now.
gharchive/issue
2015-08-16T02:45:00
2025-04-01T04:35:09.581995
{ "authors": [ "asim", "crackcomm", "justintv90", "kynrai" ], "repo": "myodc/go-micro", "url": "https://github.com/myodc/go-micro/issues/10", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
209748561
“ErrorCannot enqueue Query after fatal error.” A day after I use "pm2 start index.js" or "forever start index.js",when I open my blog 'jealand.win',I cound't open my blog page.And I search my log , It indicate "ErrorCannot enqueue Query after fatal error.". I use mysql-pool,express. var mysql = require('mysql'); var pool = mysql.createPool({ host:'localhost', user:'root', password:'123456', database:'jealand', port:'3306', useConnectionPooling: true }); module.exports = pool; And my dao file is like: var pool = require('../config'); function Blog(){ } pool.getConnection(function(err,connection){ //根据paperid得到categories Blog.getIdCate = function getIdCate(or,wpid,callback){ var sql = "..." connection.query(sql,[or,wpid],function(err,result){ if(err) { console.log('Error' + err.message); return; } callback(err, result); //connection.release(); }); } Blog.getMonth = function getMonth(callback) { var sql = ".."; connection.query(sql, function(err, result){ if(err) { console.log('Error' + err.message); return; } callback(err, result); //connection.release(); }); } //根据id及round获取id Blog.getBlogWithId = function getBlogWithId(id,round,callback) { sql =...; connection.query(sql,id, function(err, result){ if(err) { console.log('Error' + err.message); return; } callback(err, result); //connection.release(); }); }; }); module.exports = Blog; Hi @janostudio it looks like you're almost there with the usage of pool, just you got the connection lifecycle management off a bit. You need to get a connection from the pool in each of your blog handlers, not just once at the beginning. For example, the following should resolve your issue: var pool = require('../config'); function Blog(){ } //根据paperid得到categories Blog.getIdCate = function getIdCate(or,wpid,callback){ var sql = "..." pool.query(sql,[or,wpid],function(err,result){ if(err) { console.log('Error' + err.message); return; } callback(err, result); }); } Blog.getMonth = function getMonth(callback) { var sql = ".."; pool.query(sql, function(err, result){ if(err) { console.log('Error' + err.message); return; } callback(err, result); }); } //根据id及round获取id Blog.getBlogWithId = function getBlogWithId(id,round,callback) { sql =...; pool.query(sql,id, function(err, result){ if(err) { console.log('Error' + err.message); return; } callback(err, result); }); }; }); module.exports = Blog; @dougwilson Thanks for your solution, It's worked very well!
gharchive/issue
2017-02-23T12:31:19
2025-04-01T04:35:09.617676
{ "authors": [ "dougwilson", "janostudio" ], "repo": "mysqljs/mysql", "url": "https://github.com/mysqljs/mysql/issues/1649", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1083745799
feat: update eslint-plugin-vue + update configs This branch is dependent on #34 & #36 CC/ @voxpelli For people watching this PR: we've started already with our own fork in order to not hold the wider community back anymore: https://github.com/eslint-community/eslint-plugin-mysticatea @mysticatea We would still love to move the original repo to the new https://github.com/eslint-community though. This PR is released in @eslint-community/eslint-plugin-mysticatea v15.0.0-alpha.6 https://github.com/eslint-community/eslint-plugin-mysticatea/releases/tag/v15.0.0-alpha.6
gharchive/pull-request
2021-12-18T04:43:54
2025-04-01T04:35:09.629915
{ "authors": [ "MichaelDeBoey" ], "repo": "mysticatea/eslint-plugin", "url": "https://github.com/mysticatea/eslint-plugin/pull/43", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
110909036
Add support for parser_configs for subparser Hi, This is associated with this bug that I filed a while back: https://rt.cpan.org/Public/Bug/Display.html?id=102708 Thanks, Alex @mytram, can you please take a look at this pull request?
gharchive/pull-request
2015-10-12T04:59:04
2025-04-01T04:35:09.631441
{ "authors": [ "ahartoto" ], "repo": "mytram/perl-argparse", "url": "https://github.com/mytram/perl-argparse/pull/9", "license": "artistic-2.0", "license_type": "permissive", "license_source": "bigquery" }
1524161731
mof replays are 1-indexed I added def testStages(self): r = ParseTestReplay('th10_normal') self.assertEqual(r.stages[0].stage, 0) to test_replay_parsing.py and it failed. They should be 0-indexed, since the field is documented as 0-indexed (and some other code will probably expect it) All games from th10 onwards store their internal stage number, as well as the stage number in the replay 1 indexed and the replay parsing code just copies the stage number 1 to 1. Should all stage numbers be 1 or 0 indexed? Hmm, that's a good point. Maybe it's not strictly a bug then. I do think they should all be 0 indexed. (Or they should all be 1 indexed! But I think it'd be best for it to be consistent, since of course users won't care about the difference.) game_fields.py already has a function that corrects the displayed stage, required because of IN's A and B stages, so there's no way of working around that. But if we want to 0-index them by default for model consistency that's fine by me. Either do that or edit the field description in the model to mention that they're not consistent because ZUN isn't consistent and to add a correction to game_fields.py I think I overreacted a little because I was surprised my "stage 2" variables in a test I wrote were actually stage 1. I do still think this would be a good idea though Apologies for coming back to this suddenly, but I've thought about it a bit and I think the stage field should be 1 indexed. The array itself is already 0 indexed so making this stage field follow it serves no purpose, and now we have a lot of stage-num subtracting and adding in the code that ultimately results in things like stage2 = (stage = 1) I hadn't fully decided earlier on since we were working on the earlier games that don't explicitly state which stage the split is for, but all modern games do include that field and ZUN seems to be consistent on this part now.
gharchive/issue
2023-01-07T21:26:05
2025-04-01T04:35:09.676152
{ "authors": [ "32th-System", "n-rook", "raviddog" ], "repo": "n-rook/thscoreboard", "url": "https://github.com/n-rook/thscoreboard/issues/181", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1856033584
feat: get NodeInfos from the MagicEndpoint Description Call MagicEndpoint::node_infos() to get a Vec<NodeInfo>, or list connection information on all nodes we know about. NodeInfo is aliased from super::magicsock::EndpointInfo. /// The type of connection we have to the node. #[derive(Debug, Clone, Eq, PartialEq)] pub enum ConnectionType { /// Direct UDP connection Direct(SocketAddr), /// Relay connection over DERP Relay(u16), /// We have no verified connection to this peer None, } /// Details about an Endpoint #[derive(Debug, Clone, Eq, PartialEq)] pub struct EndpointInfo { /// The id in the peer_map pub id: usize, /// The public key of the endpoint. pub public_key: PublicKey, /// Derp region, if available. pub derp_region: Option<u16>, /// List of addresses at which this node might be reachable, plus any latency information we /// have about that address. pub addrs: Vec<(SocketAddr, Option<Duration>)>, /// The type of connection we have to the peer, either direct or over relay. /// /// Depending on the expiry time, we may still have a direct connection to the peer /// but our best address for the peer may have timed out. /// Until we verify that connection, we assume that we may only have a relay /// connection to that peer. pub conn_type: ConnectionType, /// The latency of the `conn_type`. pub latency: Option<Duration>, } Notes & open questions Please let me know if the above EndpointInfo + ConnectionType is enough for our UI and sync purposes! Change checklist [ ] Self-review. [ ] Documentation updates if relevant. [ ] Tests if relevant. We've been shifting away from Peer as a term since https://github.com/n0-computer/iroh/pull/137 , what do you think about NodeInfo? NodeInfo is very confusing to me, I think it should be at least sth like RemoteNodeInfo, otherwise I would assume it is the local node Out of band discussion, we settled on ConnectionInfo closing this PR in favor of #1435
gharchive/pull-request
2023-08-18T04:26:41
2025-04-01T04:35:09.680692
{ "authors": [ "b5", "dignifiedquire", "ramfox" ], "repo": "n0-computer/iroh", "url": "https://github.com/n0-computer/iroh/pull/1375", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
68938200
getFormValues fails if "select" options is HTMLOptionsCollection Hi, I have a form which contains an empty select with no options, and options is an instance of HTMLOptionsCollection input <select id="select_0incident.watch_list" style="direction:ltr; ;" onchange="toggleGlideListIcons('incident.watch_list', false);" name="select_0incident.watch_list" multiple="yes" fixedwidth="" size="6"></select> input.options [] input.options.toString() "[object HTMLOptionsCollection]" When I tried to use getFormValues, it fails: # error: callUtils(getFormValues) with args form[id$=do] thrown an error: 'undefined' is not a function (evaluating 'this.each(function(A,z){if(y.call(x,A,z)){w.push(A)}})') # CasperError: callUtils(getFormValues) with args form[id$=do] thrown an error: 'undefined' is not a function (evaluating 'this.each(function(A,z){if(y.call(x,A,z)){w.push(A)}})') I have investigated a little, and found that the problem is in clientutils.getFieldValue, more precisely here: if (input.type === 'select-multiple') { return [].filter.call(input.options, function(option) { return !!option.selected; }).map(function(option) { return option.value; }); } The filter call does not works on HTMLOptionsCollection (Chrome 41.0.2272.118): > [].filter.call(input.options, function(option) {}) Uncaught TypeError: undefined is not a function In my situation, adding a simple if(input.options.length == 0) {return []} is enough (I'm not smart enough in Javascript to do a PR for the generic situation where options is not empty, sorry). Tested with the lasted CapserJS from github (SHA1 e67dae78219831ddc0ab4fb81446eeb7968b01c8) Would you like to add the suggested fix via pull request, tests included? Hi, Thank you for your answer. I have investigated more to find the problem. The problem isn't in CasperJS. The Website I try to test with CasperJS use the Prototype (1.7) library, which redefines Array.prototype.filter using a new function Array.prototype.each. But they forget to add the each function to HTMLOptionsCollection. Then, using filter on HTMLOptionsCollection fails to undefined is not a function.... I think it's relative to this bug in Prototype https://github.com/sstephenson/prototype/issues/293 So, I will keep my ugly patch, since there is no reason to modify something in CasperJS and it's impossible for me to update the Prototype version on the website I test.... I confirm my fears, all works fine with Prototype 1.7.2. Sorry for my bug report, I hope that it might help someone which will arrived here using Google...
gharchive/issue
2015-04-16T14:38:33
2025-04-01T04:35:09.699904
{ "authors": [ "lmazuel", "paazmaya" ], "repo": "n1k0/casperjs", "url": "https://github.com/n1k0/casperjs/issues/1212", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
136075012
Unexpected resizing I am experiencing some unexpected resize of my charts. Is this a bug or am I failing to understand something? Starting from the full example at: http://n3-charts.github.io/line-chart/#/docs whenever I resize the width of my browser window the chart grows a little in height each time. Also if I add a simple number input element: <body ng-controller='MyChartCtrl'> <input type="number" id="myNumber" ng-model='myNumber'> <div class="my-chart"> <linechart data="data" options="options"></linechart> </div> Now every time I click on the arrows to increase or decrease the number in that input box then the chart grows in height. Is there a way to prevent this resizing of the chart? I'm using n3-charts 2.0.14 and angularjs 1.5.0. Yeah that's because you have to give an explicit height to the chart's container.
gharchive/issue
2016-02-24T14:22:28
2025-04-01T04:35:09.706406
{ "authors": [ "allyhume", "lorem--ipsum" ], "repo": "n3-charts/line-chart", "url": "https://github.com/n3-charts/line-chart/issues/439", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1635864337
Compatability newer n8n versions Describe the bug Hello, Ever since upgrading to (then) the newest version of N8N (0.217.1) after a few days the custom node stops working and it gives an error in the workflow. The only one to fix this is by uninstalling the node and reinstalling it. Then it works for a few days and after that the cycle repeats. The error n8n gives is: Problem activating workflow The following error occurred on workflow activation: Node not found: n8n-nodes-document-generator.DocumentGenerator Under settings: Perhaps I am doing something wrong or configured it incorrectly, but I would like to come up with a fix because it is a great custom node :) Describe the expected behavior Not having to reinstall the plugin every few days What is your Node.js version? i dont know What is your n8n version? 0.217.1 What is your n8n-nodes-text-manipulation version? 1.0.3 What operating system are you seeing the problem on? Linux Operating system version (or if other, then please fill in complete name and version) Docker Relevant log output No response New version was added. Could you check if 1.0.8 fixes your issues?
gharchive/issue
2023-03-22T14:21:40
2025-04-01T04:35:09.785771
{ "authors": [ "HammieJT", "mcolomer" ], "repo": "n8nhackers/n8n-nodes-document-generator", "url": "https://github.com/n8nhackers/n8n-nodes-document-generator/issues/4", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
109590513
Option to not produce transformed files Right now the basic functionality of PostCSS where no files are produced is not exposed in grunt-postcss. I'd like to use this task in combination with stylelint as a linter. It would be useful to not have it unconditionally write to disk. This would essentially allow users to configure grunt-postcss similar to AtomLinter/linter-stylelint. Could you please explain why someone would use a grunt plugin like this? I would go with postcss itself for an editor plugin like in your example. Our use case is continuous integration, asserting that there aren't automatically detectable issues with a patch's CSS and if there are some, blocking merge without having the CI cluster making local changes to commits. This would allow us to replace csslint in our CI pipeline. Well, let's merge it then) Thank you. :-)
gharchive/issue
2015-10-02T23:43:38
2025-04-01T04:35:09.788500
{ "authors": [ "Krinkle", "jdforrester", "nDmitry" ], "repo": "nDmitry/grunt-postcss", "url": "https://github.com/nDmitry/grunt-postcss/issues/61", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
986577229
Thinq1 Mini-Split AC: TypeError: Cannot read property 'min' of null Describe The Bug: When enabling Thinq1 support, used against a LSN120HSV5 mini-split unit. It uses Thinq1 To Reproduce: Enabling the plugin raises an error when trying to configure the device: Expected behavior: I was hoping to get control over this Thinq1 device Logs: 9/2/2021, 7:09:53 AMLg Thinq Bridge starting 9/2/2021, 7:09:57 AMLg Thinq BridgeLoaded plugin 'homebridge-lg-thinq' 9/2/2021, 7:09:57 AMLg Thinq BridgeLoading 1 platforms... 9/2/2021, 7:09:57 AMLg Thinq BridgeLGThinQLoading accessory from cache: Master Bedroom 9/2/2021, 7:09:57 AMLg Thinq BridgeLGThinQLoading accessory from cache: Living Room 9/2/2021, 7:09:57 AMLg Thinq BridgeBridge is running on port 51846. 9/2/2021, 7:10:04 AMLg Thinq BridgeLGThinQRestoring existing accessory from cache: Master Bedroom 9/2/2021, 7:10:04 AMLg Thinq BridgeLGThinQAC still in development.If you got problem,plz report at https://github.com/nVuln/homebridge-lg-thinq/issues 9/2/2021, 7:10:05 AMLg Thinq BridgeLGThinQAdding new accessory: Dining Room 9/2/2021, 7:10:05 AMLg Thinq BridgeLGThinQAC still in development.If you got problem,plz report at https://github.com/nVuln/homebridge-lg-thinq/issues 9/2/2021, 7:10:05 AMLg Thinq BridgeWARNINGunhandled rejection: TypeError: Cannot read property 'min' of null Plugin Config: { "accessories": [], "platforms": [ { "platform": "LGThinQ", "country": "US", "language": "en-US", "refresh_interval": 60, "auth_mode": "account", "username": "REDACTED", "password": "REDACTED", "thinq1": true, "refresh_token": "" } ] } Screenshots: Environment: Plugin Version: 1.1.2 Homebridge Version: 1.3.4 via hoobs 4.0.100 Node.js Version: 14.17.5 NPM Version: 6.14.14 Operating System: Raspbian via hoobs $ cat /etc/os-release PRETTY_NAME="Raspbian GNU/Linux 10 (buster)" NAME="Raspbian GNU/Linux" VERSION_ID="10" VERSION="10 (buster)" VERSION_CODENAME=buster ID=raspbian ID_LIKE=debian HOME_URL="http://www.raspbian.org/" SUPPORT_URL="http://www.raspbian.org/RaspbianForums" BUG_REPORT_URL="http://www.raspbian.org/RaspbianBugs" turn on homebridge debug mode, you can see some debug logging, please upload all 9/2/2021, 7:51:29 AMLg Thinq BridgeLGThinQFound device: {"deviceId":"REDACTED-4d23-1f8f-aa61-60ab14f44252","deviceType":401,"modelName":"RAC_056905_WW","subModelNm":null,"sensorType":null,"alias":"Master Bedroom","deviceCode":"AI01","networkType":"02","tftYn":"N","guideTypeYn":"Y","guideType":"RAC_TYPE1","pccModelYn":"N","autoOrderYn":"N","drServiceYn":"N","ssid":"REDACTED","timezoneCode":"America/New_York","timezoneCodeAlias":"USA/New_York","sdsGuide":"{\"deviceCode\":\"AI01\"}","newRegYn":"N","remoteControlType":"","fareTarget":null,"area":"334505","sleep":null,"deviceState":"E","rmsClientId":null,"regDtUtc":"20201208142938000","regIndex":0,"blackboxYn":"Y","groupableYn":"Y","controllableYn":"Y","combinedProductYn":"N","masterYn":"Y","snapshot":{"airState.windStrength":6,"airState.wMode.lowHeating":0,"airState.diagCode":0,"airState.lightingState.displayControl":1,"airState.wDir.hStep":0,"mid":862065947,"airState.energy.onCurrent":0,"airState.wMode.airClean":0,"airState.quality.sensorMon":0,"airState.miscFuncState.antiBugs":0,"airState.tempState.target":26,"airState.operation":1,"airState.wMode.jet":0,"airState.wDir.vStep":100,"timestamp":1630581272922,"airState.powerSave.basic":0,"airState.quality.PM10":0,"static":{"deviceType":"401","countryCode":"US"},"airState.quality.overall":0,"airState.tempState.current":26,"airState.miscFuncState.extraOp":0,"airState.reservation.sleepTime":0,"airState.miscFuncState.autoDry":0,"airState.reservation.targetTimeToStart":0,"meta":{"allDeviceInfoUpdate":false,"messageId":"gViT80JySWWmOonhB7ZpKg"},"airState.quality.PM1":0,"airState.quality.PM2":0,"online":true,"airState.opMode":0,"airState.reservation.targetTimeToStop":0,"airState.filterMngStates.maxTime":360,"airState.filterMngStates.useTime":220},"manufacture":null,"online":true,"platformType":"thinq2","homeDeviceOrder":-1,"roomDeviceOrder":-1,"ownershipYn":"Y","modelJsonVer":"11.74","modelJsonUri":"https://objectcontent.lgthinq.com/REDACTED-a6cb-4ad8-8028-13cffdb83d54?hdnts=exp=1689007282~hmac=95472632ce69 REDACTED 8286d0a6aed8b97054a29d137015525df","appModuleVer":"16.32","appModuleUri":"https://objectcontent.lgthinq.com/REDACTED-0404-4712-a5bc-2bc3d9e072b8?hdnts=exp=1685169055~hmac=8b53 REDACTED 3d075c761cc94be01589d82200ab3e93c3fa57","appRestartYn":"Y","appModuleSize":"13305760","langPackProductTypeVer":"52.8","langPackProductTypeUri":"https://objectcontent.lgthinq.com/REDACTED-1ce6-4ded-ac44-2d450cea341a?hdnts=exp=1693362382~hmac=e74e REDACTED 8d2915198852aa8b2bc8a5797a9a8cb92d8fc12e2ff6212","langPackModelVer":null,"langPackModelUri":null,"roomId":"","fwInfoList":[{"checksum":"00006742","partNumber":"SAA38690428","order":1}],"modemInfo":{"modelName":"RAC_056905_WW","appVersion":"clip_hna_v1.9.104","modemType":"QCOM_QCA4010","ruleEngine":"y"},"existsEntryPopup":"N","fwVer":null,"modemVer":null,"subDeviceCount":0,"firebaseLogKey":"P:SD","cardType":"Small","cardControl":"Base"} 9/2/2021, 7:51:29 AMLg Thinq BridgeLGThinQRestoring existing accessory from cache: Master Bedroom 9/2/2021, 7:51:29 AMLg Thinq BridgeLGThinQAC still in development.If you got problem,plz report at https://github.com/nVuln/homebridge-lg-thinq/issues 9/2/2021, 7:51:29 AMLg Thinq BridgeLGThinQFound device: {"deviceId":"REDACTED-7149-11d3-80b2-7440be93575f","deviceType":401,"modelName":"RAC_056905_WW","subModelNm":null,"sensorType":null,"alias":"Dining Room","deviceCode":"AI01","networkType":"02","tftYn":"N","guideTypeYn":"Y","guideType":"RAC_TYPE1","pccModelYn":"N","autoOrderYn":"N","drServiceYn":"N","ssid":"REDACTED","timezoneCode":"America/New_York","timezoneCodeAlias":"USA/New_York","sdsGuide":"{\"deviceCode\":\"AI01\"}","newRegYn":"N","remoteControlType":"","fareTarget":null,"area":"334505","sleep":null,"deviceState":"E","rmsClientId":null,"regDtUtc":"20201208141858000","regIndex":0,"blackboxYn":null,"groupableYn":"Y","controllableYn":"Y","combinedProductYn":"N","masterYn":"Y","manufacture":null,"online":false,"platformType":"thinq1","homeDeviceOrder":-1,"roomDeviceOrder":-1,"ownershipYn":"Y","modelJsonVer":"7.12","modelJsonUri":"https://aic.lgthinq.com:46030/api/webContents/modelJSON?modelName=modelJSON_401&countryCode=KR&contentsId= REDACTED-7149-11d3-80b2-7440be93575f&authKey=thinq","appModuleVer":"16.32","appModuleUri":"https://objectcontent.lgthinq.com/REDACTED-0404-4712-a5bc-2bc3d9e072b8?hdnts=exp=1685169055~hmac=8b538678 REDACTED 61cc94be01589d82200ab3e93c3fa57","appRestartYn":"Y","appModuleSize":"13305760","langPackProductTypeVer":"52.8","langPackProductTypeUri":"https://objectcontent.lgthinq.com/REDACTED-1ce6-4ded-ac44-2d450cea341a?hdnts=exp=1693362382~hmac=e74ed08 REDACTED 198852aa8b2bc8a5797a9a8cb92d8fc12e2ff6212","langPackModelVer":"","langPackModelUri":"","roomId":"","fwInfoList":null,"modemInfo":null,"existsEntryPopup":"N","fwVer":"2.5.8_RTOS_3K","modemVer":null,"subDeviceCount":0,"firebaseLogKey":"P:SD","cardType":"Small","cardControl":"Base"} 9/2/2021, 7:51:29 AMLg Thinq BridgeLGThinQAdding new accessory: Dining Room 9/2/2021, 7:51:29 AMLg Thinq BridgeLGThinQAC still in development.If you got problem,plz report at https://github.com/nVuln/homebridge-lg-thinq/issues 9/2/2021, 7:51:29 AMLg Thinq BridgeWARNINGunhandled rejection: TypeError: Cannot read property 'min' of null 9/2/2021, 9:10:00 AMlgthinqbridge stopping 9/2/2021, 9:10:00 AMLg Thinq BridgeShutting down 9/2/2021, 9:10:02 AMLg Thinq BridgeStopped 9/2/2021, 9:10:05 AMLg Thinq Bridge starting 9/2/2021, 9:10:08 AMLg Thinq BridgeInitializing HAP-NodeJS v0.9.4... 9/2/2021, 9:10:10 AMLg Thinq BridgeLoaded plugin 'homebridge-lg-thinq' 9/2/2021, 9:10:10 AMLg Thinq BridgeRegistering platform 'homebridge-lg-thinq.LGThinQ' 9/2/2021, 9:10:10 AMLg Thinq BridgeLoading 1 platforms... 9/2/2021, 9:10:10 AMLg Thinq BridgeLGThinQLoading accessory from cache: Master Bedroom 9/2/2021, 9:10:10 AMLg Thinq BridgeLGThinQLoading accessory from cache: Living Room 9/2/2021, 9:10:10 AMLg Thinq BridgeLGThinQExecuted didFinishLaunching callback 9/2/2021, 9:10:10 AMLg Thinq BridgePreparing Advertiser for 'Lg Thinq Bridge 76F6' using bonjour-hap backend! 9/2/2021, 9:10:10 AMLg Thinq BridgeSetup URI 'X-HM://0023ISYWY7B46' 9/2/2021, 9:10:10 AMLg Thinq BridgeStarting to advertise 'Lg Thinq Bridge 76F6' using bonjour-hap backend! 9/2/2021, 9:10:10 AMLg Thinq BridgeBridge is running on port 51846. 9/2/2021, 9:10:17 AMLg Thinq BridgeLGThinQFound device: {"deviceId":"REDACTED-4d23-1f8f-aa61-60ab14f44252","deviceType":401,"modelName":"RAC_056905_WW","subModelNm":null,"sensorType":null,"alias":"Master Bedroom","deviceCode":"AI01","networkType":"02","tftYn":"N","guideTypeYn":"Y","guideType":"RAC_TYPE1","pccModelYn":"N","autoOrderYn":"N","drServiceYn":"N","ssid":"REDACTED","timezoneCode":"America/New_York","timezoneCodeAlias":"USA/New_York","sdsGuide":"{\"deviceCode\":\"AI01\"}","newRegYn":"N","remoteControlType":"","fareTarget":null,"area":"334505","sleep":null,"deviceState":"E","rmsClientId":null,"regDtUtc":"20201208142938000","regIndex":0,"blackboxYn":"Y","groupableYn":"Y","controllableYn":"Y","combinedProductYn":"N","masterYn":"Y","snapshot":{"airState.windStrength":6,"airState.wMode.lowHeating":0,"airState.diagCode":0,"airState.lightingState.displayControl":1,"airState.wDir.hStep":0,"mid":865718922,"airState.energy.onCurrent":0,"airState.wMode.airClean":0,"airState.quality.sensorMon":0,"airState.miscFuncState.antiBugs":0,"airState.tempState.target":26,"airState.operation":1,"airState.wMode.jet":0,"airState.wDir.vStep":100,"timestamp":1630584840435,"airState.powerSave.basic":0,"airState.quality.PM10":0,"static":{"deviceType":"401","countryCode":"US"},"airState.quality.overall":0,"airState.tempState.current":26,"airState.miscFuncState.extraOp":0,"airState.reservation.sleepTime":0,"airState.miscFuncState.autoDry":0,"airState.reservation.targetTimeToStart":0,"meta":{"allDeviceInfoUpdate":false,"messageId":"Qw4lpenXSqOK7QdHYBadTw"},"airState.quality.PM1":0,"airState.quality.PM2":0,"online":true,"airState.opMode":0,"airState.reservation.targetTimeToStop":0,"airState.filterMngStates.maxTime":360,"airState.filterMngStates.useTime":219},"manufacture":null,"online":true,"platformType":"thinq2","homeDeviceOrder":-1,"roomDeviceOrder":-1,"ownershipYn":"Y","modelJsonVer":"11.74","modelJsonUri":"https://objectcontent.lgthinq.com/REDACTED-a6cb-4ad8-8028-13cffdb83d54?hdnts=exp=1689007282~hmac=95472632ce REDACTED 1b368286d0a6aed8b97054a29d137015525df","appModuleVer":"16.32","appModuleUri":"https://objectcontent.lgthinq.com/REDACTED-0404-4712-a5bc-2bc3d9e072b8?hdnts=exp=1685169055~hmac=8b53867 REDACTED c761cc94be01589d82200ab3e93c3fa57","appRestartYn":"Y","appModuleSize":"13305760","langPackProductTypeVer":"52.8","langPackProductTypeUri":"https://objectcontent.lgthinq.com/REDACTED-1ce6-4ded-ac44-2d450cea341a?hdnts=exp=1693362382~hmac=e74ed0863 REDACTED 198852aa8b2bc8a5797a9a8cb92d8fc12e2ff6212","langPackModelVer":null,"langPackModelUri":null,"roomId":"","fwInfoList":[{"checksum":"00006742","partNumber":"SAA38690428","order":1}],"modemInfo":{"modelName":"RAC_056905_WW","appVersion":"clip_hna_v1.9.104","modemType":"QCOM_QCA4010","ruleEngine":"y"},"existsEntryPopup":"N","fwVer":null,"modemVer":null,"subDeviceCount":0,"firebaseLogKey":"P:SD","cardType":"Small","cardControl":"Base"} 9/2/2021, 9:10:17 AMLg Thinq BridgeLGThinQRestoring existing accessory from cache: Master Bedroom 9/2/2021, 9:10:17 AMLg Thinq BridgeLGThinQAC still in development.If you got problem,plz report at https://github.com/nVuln/homebridge-lg-thinq/issues 9/2/2021, 9:10:17 AMLg Thinq BridgeLGThinQFound device: {"deviceId":"REDACTED-7149-11d3-80b2-7440be93575f","deviceType":401,"modelName":"RAC_056905_WW","subModelNm":null,"sensorType":null,"alias":"Dining Room","deviceCode":"AI01","networkType":"02","tftYn":"N","guideTypeYn":"Y","guideType":"RAC_TYPE1","pccModelYn":"N","autoOrderYn":"N","drServiceYn":"N","ssid":"REDACTED-IOT","timezoneCode":"America/New_York","timezoneCodeAlias":"USA/New_York","sdsGuide":"{\"deviceCode\":\"AI01\"}","newRegYn":"N","remoteControlType":"","fareTarget":null,"area":"334505","sleep":null,"deviceState":"E","rmsClientId":null,"regDtUtc":"20201208141858000","regIndex":0,"blackboxYn":null,"groupableYn":"Y","controllableYn":"Y","combinedProductYn":"N","masterYn":"Y","manufacture":null,"online":false,"platformType":"thinq1","homeDeviceOrder":-1,"roomDeviceOrder":-1,"ownershipYn":"Y","modelJsonVer":"7.12","modelJsonUri":"https://aic.lgthinq.com:46030/api/webContents/modelJSON?modelName=modelJSON_401&countryCode=KR&contentsId= REDACTED-7149-11d3-80b2-7440be93575f&authKey=thinq","appModuleVer":"16.32","appModuleUri":"https://objectcontent.lgthinq.com/6c1a78d3-0404-4712-a5bc-2bc3d9e072b8?hdnts=exp=1685169055~hmac=8b538 REDACTED 929b66403d075c761cc94be01589d82200ab3e93c3fa57","appRestartYn":"Y","appModuleSize":"13305760","langPackProductTypeVer":"52.8","langPackProductTypeUri":"https://objectcontent.lgthinq.com/5a0c1923-1ce6-4ded-ac44-2d450cea341a?hdnts=exp=1693362382~hmac=e74ed0863a REDACTED 2915198852aa8b2bc8a5797a9a8cb92d8fc12e2ff6212","langPackModelVer":"","langPackModelUri":"","roomId":"","fwInfoList":null,"modemInfo":null,"existsEntryPopup":"N","fwVer":"2.5.8_RTOS_3K","modemVer":null,"subDeviceCount":0,"firebaseLogKey":"P:SD","cardType":"Small","cardControl":"Base"} 9/2/2021, 9:10:17 AMLg Thinq BridgeLGThinQAdding new accessory: Dining Room 9/2/2021, 9:10:17 AMLg Thinq BridgeLGThinQAC still in development.If you got problem,plz report at https://github.com/nVuln/homebridge-lg-thinq/issues 9/2/2021, 9:10:17 AMLg Thinq BridgeWARNINGunhandled rejection: TypeError: Cannot read property 'min' of null 9/2/2021, 9:10:17 AMLg Thinq BridgeLGThinQFound device: {"deviceId":"REDACTED-7149-11d3-80b2-7440be93575f","deviceType":401,"modelName":"RAC_056905_WW","subModelNm":null,"sensorType":null,"alias":"Dining Room","deviceCode":"AI01","networkType":"02","tftYn":"N","guideTypeYn":"Y","guideType":"RAC_TYPE1","pccModelYn":"N","autoOrderYn":"N","drServiceYn":"N","ssid":"REDACTED-IOT","timezoneCode":"America/New_York","timezoneCodeAlias":"USA/New_York","sdsGuide":"{"deviceCode":"AI01"}","newRegYn":"N","remoteControlType":"","fareTarget":null,"area":"334505","sleep":null,"deviceState":"E","rmsClientId":null,"regDtUtc":"20201208141858000","regIndex":0,"blackboxYn":null,"groupableYn":"Y","controllableYn":"Y","combinedProductYn":"N","masterYn":"Y","manufacture":null,"online":false,"platformType":"thinq1","homeDeviceOrder":-1,"roomDeviceOrder":-1,"ownershipYn":"Y","modelJsonVer":"7.12","modelJsonUri":"https://aic.lgthinq.com:46030/api/webContents/modelJSON?modelName=modelJSON_401&countryCode=KR&contentsId= REDACTED-7149-11d3-80b2-7440be93575f&authKey=thinq","appModuleVer":"16.32","appModuleUri":"https://objectcontent.lgthinq.com/6c1a78d3-0404-4712-a5bc-2bc3d9e072b8?hdnts=exp=1685169055~hmac=8b538 REDACTED 929b66403d075c761cc94be01589d82200ab3e93c3fa57","appRestartYn":"Y","appModuleSize":"13305760","langPackProductTypeVer":"52.8","langPackProductTypeUri":"https://objectcontent.lgthinq.com/5a0c1923-1ce6-4ded-ac44-2d450cea341a?hdnts=exp=1693362382~hmac=e74ed0863a REDACTED 2915198852aa8b2bc8a5797a9a8cb92d8fc12e2ff6212","langPackModelVer":"","langPackModelUri":"","roomId":"","fwInfoList":null,"modemInfo":null,"existsEntryPopup":"N","fwVer":"2.5.8_RTOS_3K","modemVer":null,"subDeviceCount":0,"firebaseLogKey":"P:SD","cardType":"Small","cardControl":"Base"} can you help me download modelJsonUri in this device data, because you redacted it so I can't find a correct url to download it didn't know why 2 your device is same model RAC_056905_WW, but different data Yeah sorry about the over redaction, I thought the UUID would have personal info in it. I have 3 units, 2 of them the same, one of them different. https://aic.lgthinq.com:46030/api/webContents/modelJSON?modelName=modelJSON_401&countryCode=KR&contentsId=d27c2920-7149-11d3-80b2-7440be93575f&authKey=thinq https://aic.lgthinq.com:46030/api/webContents/modelJSON?modelName=modelJSON_401&countryCode=KR&contentsId=d27c2920-7149-11d3-80b2-7440be93575f&authKey=thinq After closer inspection of the alias names, It appears that I might have mislabeled the Dining Room one here. And the 2 that are here are showing up in home bridge (not accepting commands, but that is another issue I will open separately). I don't see json output for the one not working. The one that is not here is an LSN180HSV5 model, using thinq1. It is working in the LG app and I did have it working with the LG Airco plugin, so I know it is possible. I am a software engineer too and am happy to help debug this issue with you if you have the time. I already published test version v1.2.0-test.8, please install and try Genius. works well with this version. Thank you so much for taking this on! Where is your donate button?!
gharchive/issue
2021-09-02T11:23:51
2025-04-01T04:35:09.852652
{ "authors": [ "coneybeare", "nVuln" ], "repo": "nVuln/homebridge-lg-thinq", "url": "https://github.com/nVuln/homebridge-lg-thinq/issues/66", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2071934281
Extract CSS out when getting assets from Modules I've been following the documentation for modules to utilise the new Vite features that allow modules to expose their code via the vite.config.js file on each module. Whilst it took a while to get to grips with and understand I like the way it is implemented and how easy it is to get setup once you understand the underlying process. One of the issues I am currently looking into is that when a page loads because the@vite(\Nwidart\Modules\Module::getAssets()) line is added towards the end of our layout file, the page flashes some unstyled elements before everything pops into place. This isn't the end of the world but it does feel a little strange when viewing our site. I often would load our CSS at the top of the HTML files and the JS at the bottom but because Laravel modules is controlling this process and just adding everything at the bottom, I can't selectively pick what goes in the header and what goes in the footer. Currently, I can only move all CSS and JS to the header or leave it the way it is. There are some workarounds I have found like hardcoding some of the CSS files to load in through vite in the header (the browser theoretically shouldn't load them twice) but I'm keen to hear some thoughts on any ways this experience can be improved. Perhaps some kind of whitelist/blacklist or additional optional configuration I can pass to split the assets differently and pull them into the layout file. Thanks As you've mentioned the asserts are grouped together, I wonder if there is a way to identify CSS and JS independently then I could add a way to specify the type of build to load. It's worth trying to see if there is a way for this.
gharchive/issue
2024-01-09T09:09:46
2025-04-01T04:35:09.856258
{ "authors": [ "dcblogdev", "jaymeh" ], "repo": "nWidart/laravel-modules", "url": "https://github.com/nWidart/laravel-modules/issues/1711", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
341068079
Update 07/13/2018 es-translations Add and translated new files Thanks for fixing this!
gharchive/pull-request
2018-07-13T15:43:31
2025-04-01T04:35:09.872823
{ "authors": [ "arv187", "nabeelio" ], "repo": "nabeelio/phpvms", "url": "https://github.com/nabeelio/phpvms/pull/255", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
357610614
UTF-16 Any advise how to read utf-16 (LittleEndian) file info buffer. Tried normal way : while (row = reader.next()) { line = row.toString('utf16le'); ........ } but seems to be incorrect ? would probably be best to fork and update the search for the newline pairing. just curious why not utf8? The data source could be UTF-16LE encoded, and one wants to handle raw lines of data. Example: sync, read/compare windows files from a machine with fixed encoding (UTF-16LE) Actually the project should support any source encoding. Actually the project should support any source encoding. I'm not sure if this is still an issue, but I believe it's working? I have a dynamic encoding detection with chardet, and I use that value with row.toString(encoding) and I correctly get the string I want.. from my code samples. @netmiller The exact encoding I use is UTF-16LE. Maybe you need to pass that instead of utf16le.
gharchive/issue
2018-09-06T11:21:42
2025-04-01T04:35:09.875964
{ "authors": [ "jforge", "netmiller", "quoininc-huudatran" ], "repo": "nacholibre/node-readlines", "url": "https://github.com/nacholibre/node-readlines/issues/21", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
352488707
Support yaml configuration format and custom configuration format // @see org.springframework.boot.env.PropertySourceLoader public interface PropertySourceLoader { String[] getFileExtensions(); List<PropertySource<?>> load(String name, Resource resource) throws IOException; } 获取不到yml的配置属性值.
gharchive/issue
2018-08-21T10:59:09
2025-04-01T04:35:09.879705
{ "authors": [ "hxy1991", "yuanxie001" ], "repo": "nacos-group/nacos-spring-project", "url": "https://github.com/nacos-group/nacos-spring-project/issues/33", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1254218091
Wip refresh tokens Started this sum month ago, dont know if its any useful, but can def. be in it if you guys start anything, prob. the approach could be better and I havent really figured ut the refresh time handle, the most inportante! ;D Good effort! ❤️ Refresh tokens are tricky because there are a number of problems that we have to consider: oauth2.Config does not (as of this writing) support client authentications with JWTs, which means we cannot use the built-in refresh capabilities here. Setting the ClientSecret equal to the client assertion is unfortunately not sufficient. We'll have to do the exchange manually. A refresh token should only be used once. It is often invalid after being used once (in which case a new refresh token has also been issued). If there are multiple instances of Wonderwall running as the same client, we'll have to implement some form of lock on the session provider(s) instead of just a local mutex. A refresh token is often not a JWT, but instead an opaque string. This is the case for the providers that we use. Parsing them as JWTs will probably result in a failure. Refresh failures. Do we ignore and assume that another instance has performed the refresh? Do we assume the refresh token is invalid and let the session expire? Do we retry the refresh attempt? Session inactivity. If a user does not perform any requests for a certain (configurable) time, we should revoke or expire the session. We might need to store some session timestamps (e.g. created, expires, refreshed, last_accessed_at etc.) to be able to handle some of the issues mentioned previously. We might also need to expose an endpoint to allow frontend applications to query these so that they can handle them gracefully (improved UX). This is a good start though, so I think we'll convert it to a draft and use it as a basis for further work 🙂 Fixed in https://github.com/nais/wonderwall/commit/d5bbca9897274cd38405a44bf592ec1f5df3f18c and https://github.com/nais/wonderwall/commit/c0138f4b49cb38227e2d0044a9049117a9edc799
gharchive/pull-request
2022-05-31T18:09:39
2025-04-01T04:35:09.938301
{ "authors": [ "tronghn", "ybelMekk" ], "repo": "nais/wonderwall", "url": "https://github.com/nais/wonderwall/pull/32", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
645299121
Training with background images Hi @naisy , I have trained a model in mobilenet-ssd-v2 model in Tensorflow(less than version 2.0) for detecting "mobile-phone in hand". I trained with images having 'mobile-phones in hand'. Threshold is set to 7. So if hold a mobile-phone in my hand it will detect. This scenario is working, but the issue is when i hold some other objects(like cup, pen) in my hand, that also is getting detected. That is, i'm getting wrong detection. How can i reduce this wrong detection? Will training with other images like - image having hand held cup, book, etc without specifying label in xml - help to avoid these wrong detection? I have gone through some issues in github regarding this, but still i'm not getting a clarity on this, that's why i come to you. Hope you will help me to get a clarity on this. Kindly help me. Thanks for the reply, @naisy . One more doubt on same topic- This is how my annotation for an image with mobile-in-hand looks like: <annotation> <folder>cropped</folder> <filename>2.jpg</filename> <path>/home/2.jpg</path> <source> <database>Unknown</database> </source> <size> <width>500</width> <height>500</height> <depth>3</depth> </size> <segmented>0</segmented> <object> <name>mobileinhand</name> <pose>Unspecified</pose> <truncated>0</truncated> <difficult>0</difficult> <bndbox> <xmin>247</xmin> <ymin>266</ymin> <xmax>296</xmax> <ymax>304</ymax> </bndbox> </object> </annotation> So, Can i include new images for 'learning background only' (eg: images having cup-in-hand kinda) with xml like below(With no object specified in xml), Is this method possible: <annotation> <folder>cropped</folder> <filename>2.jpg</filename> <path>/home/2.jpg</path> <source> <database>Unknown</database> </source> <size> <width>500</width> <height>500</height> <depth>3</depth> </size> <segmented>0</segmented> </annotation> Hi @PiyalGeorge, Background only is possible, but be careful. Such data increases accuracy when predict everything as background. If too much, the weight balance tends to bad. @naisy Thanks alot :balloon: :balloon: :candy: @PiyalGeorge I hope you find it useful.
gharchive/issue
2020-06-25T08:05:26
2025-04-01T04:35:09.943069
{ "authors": [ "PiyalGeorge", "naisy" ], "repo": "naisy/train_ssd_mobilenet", "url": "https://github.com/naisy/train_ssd_mobilenet/issues/11", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
288335709
Add scrollableContainer prop to allow using sticky header behavior with non-window scrollable elements https://github.com/namespace-ee/react-calendar-timeline/pull/199 This might not be an issue with 0.16 release Closing as i believe this is addressed by using position: sticky on the header with release 0.16.x: https://github.com/namespace-ee/react-calendar-timeline/issues/296 If it remains, please comment here and I'll reopen.
gharchive/issue
2018-01-13T15:08:51
2025-04-01T04:35:09.981383
{ "authors": [ "mcMickJuice" ], "repo": "namespace-ee/react-calendar-timeline", "url": "https://github.com/namespace-ee/react-calendar-timeline/issues/217", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1791784406
Make C API pointers const and add line_of_sight to C API Hey, Got a few small changes. I'm also hoping to get working more on namigator-rs, so I'll probably be opening some issues as well. This ensures that the underlying object can still be mutated but the pointer location can not. This just ensures that calling functions don't have to be overly defensive about what is happening with pointers passed to the API. For example the Map pointer can't be changed to a nullptr, or to another Map object. I accidentally left out a return statement of the pathfind_line_of_sight function, so pushed a fix for that.
gharchive/pull-request
2023-07-06T15:29:18
2025-04-01T04:35:09.994210
{ "authors": [ "gtker" ], "repo": "namreeb/namigator", "url": "https://github.com/namreeb/namigator/pull/48", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2290447078
Link / push change URL+ execute getServerSideProps, but "setParams" (createParam) change URL but no getServerSideProps Is there an existing issue for this? [X] I have searched the existing issues Do you want this issue prioritized? [ ] Yes, I have sponsored [X] Not urgent Current Behavior When updating screen params using setParams of createParam I was excepting that next will executed getServerSideProps but this is not the case. When using Link or useRouter (push) getServiceSideProps is executed Example A button : link href="/?page=2" => getServerSideProps is executed A button: Pressable onPress => setParams({page:2}) => getServerSideProps is not executed Expected Behavior Behavior should be the same Steps To Reproduce No response Versions - Solito: 4.0.1 - Next.js: 13 - Expo: 50 Screenshots No response Reproduction No response Ok I found that { shallow: true} is hardcoded in the setparams, should it be configurable ? Interesting…suppose this could be configured
gharchive/issue
2024-05-10T21:42:00
2025-04-01T04:35:10.010585
{ "authors": [ "nandorojo", "tompap" ], "repo": "nandorojo/solito", "url": "https://github.com/nandorojo/solito/issues/473", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2371368881
Question re: tapping outside a DropdownMenu On iOS a DropdownMenu behaves differently than a ContextMenu when tapping outside the menu. DropdownMenu dismisses the menu, but the tap passes through to any visible components. ContextMenu 'eats' the tap. Is this the expected behavior, a bug, or am I just not using the DropdownMenu component correctly? I was looking for this type of question. When i press outside a Zeego context menu anything that's in the background gets pressed on. I'd rather it took two presses, one for closing the menu and then i can start interacting with the content on the page. Any input on this? Hey guys, thanks for the issue. I believe this is just the native iOS behavior. I'm going to close this, but if you can find anything in the iOS human interface guidelines that allows double tapping the background for a normal dropdown menu, feel free to send here and we can investigate
gharchive/issue
2024-06-25T00:42:36
2025-04-01T04:35:10.012804
{ "authors": [ "deep108", "fredrikburmester", "nandorojo" ], "repo": "nandorojo/zeego", "url": "https://github.com/nandorojo/zeego/issues/91", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
362664598
Outbound Usage While bootstrapping outgoing confirmation requests can drop observed stake weight for the network below the online_minimum slowing block confirmation until that batch is complete and saturating most networks. I started looking into this for a V16.1 issue. @argakiig, Can you test this with the changesets from pull requests #1229 and #1230 applied ? Marking this as fixed until proven otherwise.
gharchive/issue
2018-09-21T15:22:36
2025-04-01T04:35:10.015483
{ "authors": [ "argakiig", "rkeene" ], "repo": "nanocurrency/raiblocks", "url": "https://github.com/nanocurrency/raiblocks/issues/1214", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
1570142432
Optimization: use normal distribution as approximation to poisson for large values Normal calculation can be almost a factor of 2x faster. For large values of lambda, switch from poisson to normal. Implemented
gharchive/issue
2023-02-03T16:55:04
2025-04-01T04:35:10.053260
{ "authors": [ "lzkelley" ], "repo": "nanograv/holodeck", "url": "https://github.com/nanograv/holodeck/issues/41", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
244837008
Pod installation problem Steps to reproduce the issue I would like to add to my project pod 'Firebase/Core' pod but unfortunately after pod install I get 503 Service Unavailable on nanopb pod. My service provider is currently undergoing some maintenance, so the older koti.kapsi.fi url is currently not working. Does it show who is maintaining the nanopb package there? Perhaps you could notify them to update the url to: https://jpa.kapsi.fi/nanopb/download/ Ok now works :) thanks
gharchive/issue
2017-07-22T09:45:11
2025-04-01T04:35:10.069830
{ "authors": [ "PetteriAimonen", "robertherdzik" ], "repo": "nanopb/nanopb", "url": "https://github.com/nanopb/nanopb/issues/272", "license": "Zlib", "license_type": "permissive", "license_source": "github-api" }
264911923
fix removal of cluster key This fixes the bug created by myself yesterday (sorry!) related to #214. The cluster key should be removed in each group, so it must be done inside the main loop, and not outside. With the current code having 2 internal groups will have the cluster only removed in the last group, but not the others: { "internal": { "apply_groups": [], "cluster": null, "description": "", ..... }, "internal2": { "apply_groups": [], "description": "", ..... }, } Coverage remained the same at 78.3% when pulling bde0c4eddfe104c2486c87c9ae25d83fff27fa38 on ckishimo:devel-rr into ab33fbc685ab89750abf541ffd89575fd6b5b3ff on napalm-automation:develop.
gharchive/pull-request
2017-10-12T11:52:53
2025-04-01T04:35:10.111911
{ "authors": [ "ckishimo", "coveralls" ], "repo": "napalm-automation/napalm-junos", "url": "https://github.com/napalm-automation/napalm-junos/pull/219", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
1056193803
Make tensorflow ship with the napari bundle app 🚀 Feature Make tensorflow ship with the napari bundled app. Motivation When installing deep learning based plugins into napari, the installation often fails and / or the environment completely breaks - at least on Windows. The reason might be that tensorflow introduces pinned dependencies to numpy for example. The numpy dependency cannot be overwritten, e.g. on Windows when napari is running. Pitch Bundle a specific tensorflow version with the napari bundle app. It might make sense to discuss with plugin developers which version it should be and how often this pseudo-pinned version should be updated (anually for example). Alternatives Make a deep-learning specific bundle for napari (e.g. "napariAI"), as tensorflow is quite large and not everyone may want to use it. Additional context I'm suggesting this because I experienced issues of similar kind when installing stardist-napari on Windows: https://github.com/stardist/stardist-napari/issues/3 https://forum.image.sc/t/can-not-install-napari-stardist/60085 Related issues: https://github.com/napari/napari/issues/3223 Make a deep-learning specific bundle for napari (e.g. "napariAI"), as tensorflow is quite large and not everyone may want to use it. I like this Should we then also package pytorch with napariAI ? :-) Make a deep-learning specific bundle for napari (e.g. "napariAI"), as tensorflow is quite large and not everyone may want to use it. I like this It's certainly something we can try. I'm not sure its what I'd want long term. It makes me think a little about the different amazon machine instances (AMIs) you can install on the cloud - you can get bare ones, or ones with other libraries pre-installed. If we did this i'd like to include tensorflow, pytroch, and any of the other packages with complex dependencies people struggle with What do @jaimergp @goanpeca @jni think? I'm not sure its what I'd want long term. Agreed on this.... as a user, I think it would be a pretty rough UX to start on vanilla bundled napari, only to realize later that the one plugin that I need requires me to install napariAI and start over from scratch. If a user is only ever installing the bundled/standalone desktop application once per machine, a slightly heavier installation doesn't strike me as a terrible burden. Very curious if & how relying on conda + conda-forge for the bundled app might solve this, too. I'm in favour of adding tensorflow, as well as tensorstore, maybe tensordump? Oh wait that's zarr. :joy: And also pyopencl as requested in #3631 and pytorch as mooted in discussion above. We would just need to add appropriate versions here: https://github.com/napari/napari/blob/76bafdaec166ab47f1cff2ec474648a9bebc9428/setup.cfg#L133 I agree that the increased package size is worth it to alleviate many of the install issues people are seeing, and I agree that until we can update the bundle in-place, I don't want to deal with "distributions" that mean users have to choose what they download and may end up having to nuke their whole install when they can't install plugins later. To be honest for me packages fall into "install instantly" and "takes forever to install", and napari is already in the latter category, so I don't think it's a huge sacrifice to bloat it up, and indeed it's an advantage come plugin installation time. I'll also add a bit of context by saying that we've often discussed the issue of dependency handling for plugins and we often come back to the idea of having a "blessed" distribution of napari + specific versions of the most popular scientific libraries that plugins would target, so adding tensorflow & co to the bundle would move us closer to that. I like that. All of this can be discussed when/if we switch to the conda-forge-based bundle, but we are not there yet and this would be a good stop-gap. another alternative could be pinning numpy to some older version with more flexibility? Are there any recent numpy features we are heavily using? also, if there will be a napariAI I would love to see catboost as part of it too! If I understand @jni we would NOT have napariAI as a different bundle, we'd just be adding a blessed set to the main bundle. I'd be fine with that. It's probably my first choice too. If that causes more problems then it solves we can revisit too If we did this i'd like to include tensorflow, pytroch, and any of the other packages with complex dependencies people struggle with When moving to the the conda/mamba based bundle, we would not need to bundle any of these dependencies. We are still a weeks a few months away from that though. If in the meantime bundling some deps helps, then by all means, but it seems like we are kicking the can a bit farther down the road, for it to fail again when pip tries to do what it was never designed to do
gharchive/issue
2021-11-17T14:25:08
2025-04-01T04:35:10.128825
{ "authors": [ "AhmetCanSolak", "goanpeca", "haesleinhuepf", "jni", "neuromusic", "sofroniewn", "tlambert03" ], "repo": "napari/napari", "url": "https://github.com/napari/napari/issues/3632", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
1011491107
Fix teardown of menus to prevent widget test leaks Description Type of change [x] Bug-fix (non-breaking change which fixes an issue) [ ] New feature (non-breaking change which adds functionality) [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) [ ] This change requires a documentation update References Fixes #3431 How has this been tested? [x] example: the test suite for my feature covers cases x, y, and z [x] example: all tests pass with my change Final checklist: [x] My PR is the minimum possible work for the desired functionality [x] I have commented my code, particularly in hard-to-understand areas [x] I have made corresponding changes to the documentation [x] I have added tests that prove my fix is effective or that my feature works [x] If I included new strings, I have used trans. to make them localizable. For more information see our translations guide. @Czaki could you test this PR? Thanks! @Czaki could you test this PR? Thanks! Works for me. There seem to be some segfaults on windows, but I do not think they are related to the PR as I have seem them on other PRs, but need to check. you may check if adding qtbot.wait(50) like in #3427 will help. Thanks @Czaki, trying now from my observation, In the most common cases, failure is caused by some test that was already marked as completed.
gharchive/pull-request
2021-09-29T22:11:18
2025-04-01T04:35:10.135757
{ "authors": [ "Czaki", "goanpeca" ], "repo": "napari/napari", "url": "https://github.com/napari/napari/pull/3433", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
1648721334
Add more specific viewer.open test for default vs. no plugin chosen Description This PR adds a specific test for viewer.open(...,plugin=None) and updates the error message for the test where the default plugin is used to match npe2#276 - which addresses napari-ome-zarr#86 - which is a reincarnation of #4026. See npe2#276 for more details on the original bug. Once that's merged and npe2 is released, tests on this PR should pass. Type of change [ ] Test update after dependency update References This depends on npe2#276 #5698 and #5739 in concert supersede this PR, so I'm closing.
gharchive/pull-request
2023-03-31T06:01:04
2025-04-01T04:35:10.139042
{ "authors": [ "DragaDoncila" ], "repo": "napari/napari", "url": "https://github.com/napari/napari/pull/5685", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
1899270058
add shift_label_onsets function Reference Issues/PRs Fixes #183 What does this implement/fix? Explain your changes. Adds the ability to shift label vectors. This is useful when you have something like word labels from the word aligner, which those can only easily be used to align responses to word onsets/offsets, but you want something like word centers (i.e. 50% of the way through each word). Any other comments? Also fixes color cycle issue in kde_plot caused by change in matplotlib. Also adds ability to change metric and linkage method in hierarchical_cluster_plot. I can't figure out why it can't install ruamel-yaml. Based on this, I'm wondering if it should be trying to install ruamel.yaml instead? But that's not even one of our direct dependencies, and ruamel.yaml is already installed when you install our requirements.txt, so it's probably a dependency of pyyaml. But then why is it still trying to install ruamel-yaml here??
gharchive/pull-request
2023-09-16T03:03:20
2025-04-01T04:35:10.159686
{ "authors": [ "gavinmischler" ], "repo": "naplab/naplib-python", "url": "https://github.com/naplab/naplib-python/pull/184", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
514745763
Add capability to build OSAL code coverage tests as part of build Is your feature request related to a problem? Please describe. Currently code coverage testing for OSAL is not integrated with the cfe build system. It's possible to build separately, but then care has to be taken to match configurations and extra steps are required. Describe the solution you'd like Build OSAL code coverage (of the shared and target OSAL) executables for the host when "ENABLE_UNIT_TESTS" is true, using the osconfig.h defined for the build (vs default in the BSP). Describe alternatives you've considered It's possible to build stand alone, but not trivial. Additional context None Requester Info Jacob Hageman - NASA/GSFC Duplicate of nasa/osal#362, no changes needed in cFE
gharchive/issue
2019-10-30T15:05:28
2025-04-01T04:35:10.184397
{ "authors": [ "skliper" ], "repo": "nasa/cFE", "url": "https://github.com/nasa/cFE/issues/386", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
574889420
Fix 535 and 537, User's guide doxygen issues Describe the contribution Fix #535 - removed an extra line that caused breakage Fix #537 - removed private paths from user's guide processing Testing performed Steps taken to test the contribution: make prep make usersguide cd buid/doc/users_guide/latex make Expected behavior changes A clear and concise description of how this contribution will change behavior and level of impact. PDF file now generated by process above System(s) tested on Hardware: cFS Dev Server 3 OS: Ubuntu 18.04 Versions: current bundle w/ this change Additional context N/A Third party code None Contributor Info - All information REQUIRED for consideration of pull request Jacob Hageman - NASA/GSFC @skliper want to put this on tomorrow' CCB 20200311? @astrogeco Yes please. CCB 20200311 - Approved
gharchive/pull-request
2020-03-03T19:28:22
2025-04-01T04:35:10.189397
{ "authors": [ "astrogeco", "skliper" ], "repo": "nasa/cFE", "url": "https://github.com/nasa/cFE/pull/538", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2265315875
Improve verbose complain spec checker Warning: don't start with this issue before #2001 is resolved, otherwise you'd end up with a lot of duplicated code There are a number of specs that try to check if the code complains in verbose mode. An example from array/new_spec.rb: -> { -> { Array.new { raise } }.should_not raise_error }.should complain(/warning: given block not used/, verbose: true) This complain expectation works like this; Store the old value of $VERBOSE in a variable Set $VERBOSE to true Run the code Validate the warning with the given regexp Restore the value of $VERBOSE This is only half of the test, since verbose: true also implies we shouldn't be seeing this message if we're in regular mode. And indeed, the given code does warn in Natalie in regular mode. $ ruby -e 'Array.new { raise }' $ ruby -e '$VERBOSE=1; Array.new { raise }' -e:1: warning: given block not used $ bin/natalie -e 'Array.new { raise }' -e:1: warning: given block not used If the verbose argument is set, we probably need to run the block twice, once in verbose mode which should print the warning, and once in regular mode which should not print the warning. #2007 has an example of a spec that does not work with this change, which means we are unable to make these changes.
gharchive/issue
2024-04-26T09:04:14
2025-04-01T04:35:10.228409
{ "authors": [ "herwinw" ], "repo": "natalie-lang/natalie", "url": "https://github.com/natalie-lang/natalie/issues/2004", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1375626714
client.smartCollectionSync detailedResult can't be passed as true Hey there, It seems there's a bug within the type declaration. The function smartCollectionSync doesn't allow detailedResult to be passed as true (can only be passed as undefined or false). When I set it to true as false, the expected response is received. The documentation shows that detailedResult can be passed as true so I assume this should be valid. I'm not familiar with caldav so I might be making the wrong assumption though. Thanks for suggestions, I'll investigate it and get back to you soon. On Fri, Sep 16, 2022 at 16:41 Brandon Kim @.***> wrote: Hey there, It seems there's a bug within the type declaration. The function smartCollectionSync doesn't allow detailedResult to be passed as true (can only be passed as undefined or false). [image: image] https://user-images.githubusercontent.com/10441291/190595035-70594992-6aa6-4e34-89ef-b99bf860310b.png [image: image] https://user-images.githubusercontent.com/10441291/190595113-2f7459f6-894d-452a-939e-e409d17d68e5.png When I set it to true as false, the expected response is received. [image: image] https://user-images.githubusercontent.com/10441291/190595271-90eeedb1-5406-44f2-a39a-8e277367d48e.png [image: image] https://user-images.githubusercontent.com/10441291/190595306-cd3fd09f-c6d6-4064-b382-640cee25a0c1.png The documentation shows that detailedResult can be passed as true so I assume this should be valid. I'm not familiar with caldav so I might be making the wrong assumption though. — Reply to this email directly, view it on GitHub https://github.com/natelindev/tsdav/issues/131, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACG4GTQEYUBYXI6RKAMMOJTV6QXBXANCNFSM6AAAAAAQODXW4U . You are receiving this because you are subscribed to this thread.Message ID: @.***> cannot repo sample code used to repo, no error occurred. const icalCalendar = { url: 'https://example.com/calendars/icalendar.ics', }; const icalData: DAVObject[] = []; (async () => { const data = await smartCollectionSync({ collection: { ...icalCalendar, objects: icalData, }, method: 'webdav', detailedResult: false, }); })(); both true and false should be able to be passed in.
gharchive/issue
2022-09-16T08:40:48
2025-04-01T04:35:10.246628
{ "authors": [ "natelindev", "swkoyo" ], "repo": "natelindev/tsdav", "url": "https://github.com/natelindev/tsdav/issues/131", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1848538696
Code of conduct Created code of conduct and added badge to readme lgtm
gharchive/pull-request
2023-08-13T10:55:08
2025-04-01T04:35:10.255329
{ "authors": [ "nbel806", "tmur647" ], "repo": "nathanbell806/310A1BudgetTracker", "url": "https://github.com/nathanbell806/310A1BudgetTracker/pull/2", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
371606579
Can't move gutter on touch I am able to move gutter on desktop using mouse, but on touch it doesn't work We'll need more info. Device, browser, versions. What doesn't work? Are there any errors? No errors, I have tested on iOS11.0.3(iphone6s, ipad air2), Android 8.0(Galaxy S7) Thanks @AndranikA. Resolved this in 1.5.5 and published on npm.
gharchive/issue
2018-10-18T16:13:16
2025-04-01T04:35:10.261010
{ "authors": [ "AndranikA", "nathancahill" ], "repo": "nathancahill/Split.js", "url": "https://github.com/nathancahill/Split.js/issues/160", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1892247766
Please remove requirement that end time is before start time - Fox have fixed/removed this Discussed in https://github.com/nathanmarlor/foxess_modbus/discussions/413 Originally posted by iancg September 12, 2023 Hi, Please see: https://www.facebook.com/groups/foxessownersgroup/posts/1923430298039143/?comment_id=1923434278038745&reply_comment_id=1924573837924789 I've tested this and with software Master 1.60/Manager 1.63, using start=23:30 and end=05:30 worked as expected. Can the check that prevents start > end be removed please. Setting on web UI: Battery charged overnight (it was full just before 3am, but started at 11:30 and continued over midnight and didn't start discharging until 5:30am). I'd like to figure out how to set this in the HA integration at all! I can't spot what entity it is. There's a service you can call, or you can use the charge period card linked from the readme. Thanks canton7 -- I missed that. I'm trying to get the card to work, isn't quite yet though! I started a discussion.
gharchive/issue
2023-09-12T10:48:49
2025-04-01T04:35:10.269233
{ "authors": [ "canton7", "lamixer" ], "repo": "nathanmarlor/foxess_modbus", "url": "https://github.com/nathanmarlor/foxess_modbus/issues/414", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1628914176
Be smarter about which sensors to notify after a poll Most of the time, most sensors aren't changing. Telling HA that everything has changed after every poll is a bit wasteful, particularly if the user has the poll rate set high. Make sure that we only tell HA about registers which have actually changed. :rocket: :rocket: :rocket: :rocket: :rocket: :rocket: :rocket: :rocket: :rocket:
gharchive/pull-request
2023-03-17T08:36:41
2025-04-01T04:35:10.270525
{ "authors": [ "canton7", "nathanmarlor" ], "repo": "nathanmarlor/foxess_modbus", "url": "https://github.com/nathanmarlor/foxess_modbus/pull/52", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1806279976
Fix undefined behavior left shift I was trying out nbnet with Zig which has undefined behavior sanitizers on by default and caught this: for (unsigned int i = 0; i < 32; i++) { if (B_IS_UNSET(packet->header.ack_bits, i)) continue; in Connection_DecodePacketHeader pushes a 1 into the sign bit of 1 which is ub I'm going to merge this into the branch where I have CI that runs soak tests, if it passes, I'll merge it. Thank you very much!
gharchive/pull-request
2023-07-15T19:06:20
2025-04-01T04:35:10.271904
{ "authors": [ "nathhB", "raisinrand" ], "repo": "nathhB/nbnet", "url": "https://github.com/nathhB/nbnet/pull/34", "license": "Zlib", "license_type": "permissive", "license_source": "github-api" }
1149140347
Bring styles and javascript into django This PR relates to the Trello Ticket "Bring all SASS/CSS and JavaScript into Django" The tasks are: [x] Bring SASS/CSS across [x] Populate title tag (using a configuration value for the service name) [x] Fix breadcrumbs [x] Introduce WebFonts that are used in the Flask app [x] Introduce level 1 heading in search results page [x] Add jQuery as dev dependency for Node [x] Add service name to heading on home page [x] Add updated header to HTML for static pages (Terms of use and Open Justice License) @gtvj A tip: run pre-commit run --all-files to run the linter locally, it should auto-fix any errors! The current approach to page titles and breadcrumbs feels pretty sub-optimal (just thinking from the longer term maintenance perspective). It feels like: Page titles should be passed through to the template from the view, and the value should be shared by both the <h1> and interpolated into the <title> (with "- Find case law" appended) "Find case law" should be a configuration value - it's currently replicated across multiple templates twelve times The page-header__breadcrumb component should be extracted to an include that can be shared across templates (that makes use of the "Find case law" configuration value and Page title, conditionally showing the third item). I did consider having a go at this but found TemplateView.as_view wasn't keen on taking variables. Would be good to know what @lozette @LewisDaleUK @Floppy @LornaHarwood think about these proposals (they could be picked up in a separate PR / Trello ticket if everyone agrees). @gtvj Happy for have those bits put into a new card! We definitely need to configure some general site settings. Thanks @lozette - I've created a card in Trello here: https://trello.com/c/hq8jIu50
gharchive/pull-request
2022-02-24T10:54:23
2025-04-01T04:35:10.278075
{ "authors": [ "gtvj", "lozette" ], "repo": "nationalarchives/ds-caselaw-public-ui", "url": "https://github.com/nationalarchives/ds-caselaw-public-ui/pull/42", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
950502535
Feature/record disambiguation page Hi @gtvj and @danbentley Would you be able to approve this PR if all is OK? The editorial has been approved. @gtvj would you be able to check that the HTML/CSS I have written is OK? I've checked it in Chrome/Firefox/IE11, with WAVe and Lighthouse, and at 400% zoom. To see the disambiguation page, you may need to add the Kong credentials to your .env file and then restart your docker containers (you can do this using the docker UI). The URL is here: http://localhost:8000/catalogue/MAF/42/8/ A question as well @gtvj - should I include the gtm script as well in this branch, since this is the first branch to include some analytics data? @danbentley My "Introduce code to include analytics JSONs" commit proposes a technique for including the metrics JSON files. Does this look ok to you? We would then simply use this block to include the metrics JSON on the other applications. The empty JSON values would need to be populated via the backend though. Thanks :+1: Screenshot: Thanks Ash! This looks good. For a bit of background, when we populate the datalayer with content from the backend, we may create a custom filter to make testing easier, especially if the requirements become more complex (like branching logic, for example) Additionally, we'll use json_script to output the JSON: Safely outputs a Python object as JSON, wrapped in a @gtvj I noticed I haven't added the metrics tags to the cards yet - I was going to do this during the Explorer branch as this is where I would properly add the card tags and loops. Is this OK? I can add a container name to the template now. Hi @AshTNA - in answer to your question above, I don't think we need to include the GTM script at this point. Helen and Heather need to set it up from their end and I'd like most of the changes relating to GTM to come in within a single PR when they've confirmed things are working on ds-wagtail-frontend (though I can see there is backend dataLayer work being added here as well as a data-container-name attribute). Thanks @gtvj - I've made these changes. :+1:
gharchive/pull-request
2021-07-22T10:12:47
2025-04-01T04:35:10.284832
{ "authors": [ "AshTNA", "danbentley", "gtvj" ], "repo": "nationalarchives/ds-wagtail", "url": "https://github.com/nationalarchives/ds-wagtail/pull/54", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
47541641
Callbacks are triggered when satisfied but not guaranteed to still be true Both the reconnected and disconnected callbacks are invoked outside the Connection lock. By doing so, the state of the connection may be different when actually invoked. In most cases, the connection has been closed which leads to no harm. However, in the case of the reconnect, another reconnect can occur since the socketwatchers have been spun up already. Status callbacks are representing a state change, but do not guarantee that the state is still the same at the time the callback is invoked. We used to have calls to those callbacks either in place or in go routines, which could cause "out-of-order" callbacks. This has been addressed in #135. Closing this issue since there is no plan to guarantee connection status to not changed while callbacks are triggered.
gharchive/issue
2014-11-02T16:52:41
2025-04-01T04:35:10.370042
{ "authors": [ "fraenkel", "kozlovic" ], "repo": "nats-io/nats", "url": "https://github.com/nats-io/nats/issues/38", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
234499517
Memory Leak in AudioEndpointVolume Hello, we have an implementation of sound controls with the typical actions (Mute, slider volume management, sample audio input / output, etc.), and we have a significant memory leak. The application is built by attacking the audio dll in a decoupled way through an intermediate wrapper through interfaces to be able to do unit tests and mock the system audio cards. The problem is that any access to AudioEndpointVolume to query or modify the volume, constantly creates us COM objects that are not destroyed with Dispose. The management of the MMDevices objects is correct, but the AudioEndpointVolume and are a property of the MMDevice. Should we make an interface inside the wrapper that also implements the Interface IAudioEndpointVolume and make inside the wrapper our deletion of the COM objects it creates or is there a simpler way to make a dispose of the AudioEndPointVolume COM objects? fotos imagenes Hi, Finally and since the impact of implementing the internal interface of IAudioEndpointVolume is very large, we have chosen to explicitly destroy all the COM objects of that interface through the GUID of the interface. ` try { //unable to dispose all unmanaged COM objects of IAudioEndpointVolume internal interface // of Naudio. The only way is delete objects by the Interface GUID System.ComponentModel.GuidConverter gc = new System.ComponentModel.GuidConverter(); System.Guid guid = (Guid)gc.ConvertFromString(GUID_NAUDIO_COMOBJECTS); Type consoleType = Type.GetTypeFromCLSID(guid); object objConsole = Activator.CreateInstance(consoleType); System.Runtime.InteropServices.Marshal.ReleaseComObject(objConsole); } catch (Exception ex) { Log.WarnFormat(CultureInfo.InvariantCulture,"Fail release COM object Audio Card ->{0}", ex.Message); }` The intersection of .NET's garbage collection with COM's reference counting makes for some headaches working out the best way to track the lifetimes of these objects. It's an area of NAudio I'd like to revisit at some point.
gharchive/issue
2017-06-08T11:42:01
2025-04-01T04:35:10.409408
{ "authors": [ "alexunderattack", "markheath" ], "repo": "naudio/NAudio", "url": "https://github.com/naudio/NAudio/issues/200", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1330566732
🛑 Harmony Bot Website is down In 6bac42f, Harmony Bot Website ($HARMONY_WEB) was down: HTTP code: 0 Response time: 0 ms Resolved: Harmony Bot Website is back up in 26d5266.
gharchive/issue
2022-08-05T23:15:36
2025-04-01T04:35:10.422256
{ "authors": [ "navaneethkm004" ], "repo": "navaneethkm004/uptime", "url": "https://github.com/navaneethkm004/uptime/issues/11706", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
830881005
🛑 Harmony Bot Website is down In 9d1d042, Harmony Bot Website ($HARMONY_WEB) was down: HTTP code: 0 Response time: 0 ms Resolved: Harmony Bot Website is back up in f41f185.
gharchive/issue
2021-03-13T11:42:18
2025-04-01T04:35:10.424399
{ "authors": [ "navaneethkm004" ], "repo": "navaneethkm004/uptime", "url": "https://github.com/navaneethkm004/uptime/issues/1298", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
983293712
🛑 Harmony Bot Website is down In 5b4b483, Harmony Bot Website ($HARMONY_WEB) was down: HTTP code: 0 Response time: 0 ms Resolved: Harmony Bot Website is back up in 0ba5314.
gharchive/issue
2021-08-30T23:30:51
2025-04-01T04:35:10.426485
{ "authors": [ "navaneethkm004" ], "repo": "navaneethkm004/uptime", "url": "https://github.com/navaneethkm004/uptime/issues/4884", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1077321421
🛑 Harmony Bot Website is down In 78f9759, Harmony Bot Website ($HARMONY_WEB) was down: HTTP code: 0 Response time: 0 ms Resolved: Harmony Bot Website is back up in 533fbc4.
gharchive/issue
2021-12-10T23:58:12
2025-04-01T04:35:10.428794
{ "authors": [ "navaneethkm004" ], "repo": "navaneethkm004/uptime", "url": "https://github.com/navaneethkm004/uptime/issues/7042", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1097921033
Should we make this default? check this https://github.com/black-desk/dotfiles/commit/d122b69e3915ff8d3274773bca2cc8ee47f1e3ea I think TSStrong should be bold :) Yeah, why not, but what are these highlights used for? I am sure they are used for markdown. https://github.com/nvim-treesitter/nvim-treesitter/blob/master/queries/markdown/highlights.scm
gharchive/issue
2022-01-10T13:45:45
2025-04-01T04:35:10.436682
{ "authors": [ "black-desk", "xeluxee" ], "repo": "navarasu/onedark.nvim", "url": "https://github.com/navarasu/onedark.nvim/issues/53", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1398901670
Can i add travel agency application created using HTML ,CSS JAVASCRIPT and make it responsive Can i add travel agency application created using HTML ,CSS JAVASCRIPT and make it responsive sure!!
gharchive/issue
2022-10-06T06:27:43
2025-04-01T04:35:10.437527
{ "authors": [ "naveen3011", "nishantkumar1308" ], "repo": "naveen3011/WebD_project_hacktober2022", "url": "https://github.com/naveen3011/WebD_project_hacktober2022/issues/21", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1673824315
Install not working correctly with Faderport 2 Describe the bug A clear and concise description of what the bug is. When I install Reasonus everything works as described until I choose CSI in the control surface area. When i choose CSI Reasonus does not apear in the pages section and I do see Faderport 2 in the surface section. It may be because of this reason that when i choose another automation lane besides volume nothing works. Instead if i choose Pan automation and the volume gets reselected and i can no longer do anything except volume automation. To Reproduce Steps to reproduce the behavior: Go to '...' Unfortunatley it seems the installer does not work correctly on my device so it would be difficult to reproduce it. Click on '....' Scroll down to '....' See error Operating System [] Windows 10 I am on this OS [] Max OS Versions Versions can be found on the About page of the installer Reasonus Installer: ... 1.01 Reasonus Resources: ... CSI (ReaSonus): ... Expected behavior A clear and concise description of what you expected to happen. Screenshots If applicable, add screenshots to help explain your problem. Additional context Add any other context about the problem here. Sorry for the late response. Can you share the csi.ini file? Yeah sure here it is, Cheers Sean From: Navelpluisje @.> Sent: Friday 5 May 2023 17:42 To: navelpluisje/reasonus-install @.> Cc: jadedsean @.>; Author @.> Subject: Re: [navelpluisje/reasonus-install] Install not working correctly with Faderport 2 (Issue #40) Sorry for the late response. Can you share the csi.ini file? — Reply to this email directly, view it on GitHubhttps://github.com/navelpluisje/reasonus-install/issues/40#issuecomment-1536511087, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ALTPFIY5ZHH6M3BS2OVZRY3XEUUXFANCNFSM6AAAAAAXDFJ6ZA. You are receiving this because you authored the thread.Message ID: @.***> I think the attachment didn't make it to github I cannot up;oad it, it states theses files are not supported here. Can you change the extension to txt, so it will be named csi.txt? It works. File looks fine at first sight. Am now not able to dig deeper into it (not at home right now). Will check further next week Perfect thanks. Hi any news on this bug fix? I would love to get this up and running.
gharchive/issue
2023-04-18T20:58:38
2025-04-01T04:35:10.448030
{ "authors": [ "jadedsean", "navelpluisje" ], "repo": "navelpluisje/reasonus-install", "url": "https://github.com/navelpluisje/reasonus-install/issues/40", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
185290101
could i pass TraceContext between threads ? For example in pinpoint-plugin -sample 03: "We want to trace TargetClass03's methods targetMethodA, and targetMethodB which invokes targetMethodA". if targetMethodB is executed in another thread, can i get the TraceContext and trace call stack correctly ? pinpoint-plugin-sample-12 answer the question.
gharchive/issue
2016-10-26T03:42:36
2025-04-01T04:35:10.457746
{ "authors": [ "xiaoerlyl" ], "repo": "naver/pinpoint", "url": "https://github.com/naver/pinpoint/issues/2191", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
206779239
monitoring non servlet based applications hi team, I would like to know if pinpoint can support monitoring of "non-servlet" based applications. i have few applications in my project that are of this nature. Some of them are built using "Spring-boot" framework and seems pinpoint supports that ( i feel it because i see springboot in plugin directory). However, other non-servlet application of my project doesn't use "Spring-boot". Is it possible to provide "Custom Classes" as the starting point for Pinpoint agent to start monitoring thanks in advance Hi JenlUS85 If you want to trace unsupported modules you need to tell the agent which methods to trace by setting profiler.include or profiler.entrypoint in pinpoint.config (more details here). thanks. thanks Koo-taejin. Hyperlink is missing in your response @JEnIUS85 i fixed it. thanks :) thanks ... one quick doubt: i see only public method of a class can be specified to start the trace.. However, once the trace is started, will we be able to see other type of methods in trace (i.e. private, protected, etc..) This option can be applied regardless of the access modifier of the target. :+1:
gharchive/issue
2017-02-10T12:00:43
2025-04-01T04:35:10.461093
{ "authors": [ "JEnIUS85", "koo-taejin" ], "repo": "naver/pinpoint", "url": "https://github.com/naver/pinpoint/issues/2597", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
271707066
Would you be so kind as to explain meaning of two fields sequence_count and timing_count in mysql table alarm_history of web Hello: This is not a bug report, it's just a question. There's no any document or comment about the two fields: sequence_count and timing_count in mysql table alarm_history in the web project, some people want to know their meanings and difference. So, would you like explain them please? Thanks. I updated guide for transmission frequency
gharchive/issue
2017-11-07T04:32:45
2025-04-01T04:35:10.462855
{ "authors": [ "fengnex", "minwoo-jung" ], "repo": "naver/pinpoint", "url": "https://github.com/naver/pinpoint/issues/3529", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
664212515
JDK6 compiler bug workarounds JDK6 compiler throws an error when adding log4j2 lib Compiler version: 1.6.0_45 [INFO] Compiling 284 source files to C:\pin\pinpoint\profiler\target\test-classes [INFO] ------------------------------------------------------------- [ERROR] COMPILATION ERROR : [INFO] ------------------------------------------------------------- [ERROR] An exception has occurred in the compiler (1.6.0_45). Please file a bug at the Java Developer Connection (http://java.sun.com/webapps/bugreport) after checking the Bug Parade for duplicates. Include your program and the following diagnostic in your report. Thank you. java.lang.NullPointerException at com.sun.tools.javac.code.Symbol$MethodSymbol.params(Symbol.java:1196) at com.sun.tools.javac.jvm.ClassReader.attachParameterAnnotations(ClassReader.java:1111) at com.sun.tools.javac.jvm.ClassReader.readMemberAttr(ClassReader.java:871) at com.sun.tools.javac.jvm.ClassReader.readMemberAttrs(ClassReader.java:1027) at com.sun.tools.javac.jvm.ClassReader.readMethod(ClassReader.java:1490) at com.sun.tools.javac.jvm.ClassReader.readClass(ClassReader.java:1586) at com.sun.tools.javac.jvm.ClassReader.readClassFile(ClassReader.java:1658) at com.sun.tools.javac.jvm.ClassReader.fillIn(ClassReader.java:1845) at com.sun.tools.javac.jvm.ClassReader.complete(ClassReader.java:1777) at com.sun.tools.javac.code.Symbol.complete(Symbol.java:384) at com.sun.tools.javac.code.Symbol$ClassSymbol.complete(Symbol.java:766) at com.sun.tools.javac.jvm.ClassReader.completeOwners(ClassReader.java:1793) at com.sun.tools.javac.jvm.ClassReader.complete(ClassReader.java:1772) at com.sun.tools.javac.code.Symbol.complete(Symbol.java:384) at com.sun.tools.javac.code.Symbol$ClassSymbol.complete(Symbol.java:766) at com.sun.tools.javac.code.Symbol$ClassSymbol.getSuperclass(Symbol.java:788) at com.sun.tools.javac.code.Types$18.visitClassType(Types.java:1610) at com.sun.tools.javac.code.Types$18.visitClassType(Types.java:1599) at com.sun.tools.javac.code.Type$ClassType.accept(Type.java:554) at com.sun.tools.javac.code.Types$UnaryVisitor.visit(Types.java:3260) at com.sun.tools.javac.code.Types.supertype(Types.java:1596) at com.sun.tools.javac.code.Types$14.visitClassType(Types.java:1295) at com.sun.tools.javac.code.Types$14.visitClassType(Types.java:1284) at com.sun.tools.javac.code.Type$ClassType.accept(Type.java:554) at com.sun.tools.javac.code.Types$DefaultTypeVisitor.visit(Types.java:3203) at com.sun.tools.javac.code.Types.asSuper(Types.java:1281) at com.sun.tools.javac.code.Types$14.visitClassType(Types.java:1297) at com.sun.tools.javac.code.Types$14.visitClassType(Types.java:1284) at com.sun.tools.javac.code.Type$ClassType.accept(Type.java:554) at com.sun.tools.javac.code.Types$DefaultTypeVisitor.visit(Types.java:3203) at com.sun.tools.javac.code.Types.asSuper(Types.java:1281) at com.sun.tools.javac.code.Types$5.visitClassType(Types.java:409) at com.sun.tools.javac.code.Types$5.visitClassType(Types.java:336) at com.sun.tools.javac.code.Type$ClassType.accept(Type.java:554) at com.sun.tools.javac.code.Types$DefaultTypeVisitor.visit(Types.java:3203) at com.sun.tools.javac.code.Types.isSubtype(Types.java:332) at com.sun.tools.javac.code.Types.isSubtype(Types.java:316) at com.sun.tools.javac.code.Types$9.visitClassType(Types.java:937) at com.sun.tools.javac.code.Types$9.visitClassType(Types.java:880) at com.sun.tools.javac.code.Type$ClassType.accept(Type.java:554) at com.sun.tools.javac.code.Types$DefaultTypeVisitor.visit(Types.java:3203) at com.sun.tools.javac.code.Types.isCastable(Types.java:871) at com.sun.tools.javac.comp.Check.checkCastable(Check.java:382) at com.sun.tools.javac.comp.Attr.visitTypeCast(Attr.java:1673) at com.sun.tools.javac.tree.JCTree$JCTypeCast.accept(JCTree.java:1448) at com.sun.tools.javac.comp.Attr.attribTree(Attr.java:360) at com.sun.tools.javac.comp.Attr.attribExpr(Attr.java:377) at com.sun.tools.javac.comp.Attr.visitAssign(Attr.java:1550) at com.sun.tools.javac.tree.JCTree$JCAssign.accept(JCTree.java:1342) at com.sun.tools.javac.comp.Attr.attribTree(Attr.java:360) at com.sun.tools.javac.comp.Attr.attribExpr(Attr.java:384) at com.sun.tools.javac.comp.Attr.visitExec(Attr.java:1017) at com.sun.tools.javac.tree.JCTree$JCExpressionStatement.accept(JCTree.java:1074) at com.sun.tools.javac.comp.Attr.attribTree(Attr.java:360) at com.sun.tools.javac.comp.Attr.attribStat(Attr.java:397) at com.sun.tools.javac.comp.Attr.attribStats(Attr.java:413) at com.sun.tools.javac.comp.Attr.visitBlock(Attr.java:715) at com.sun.tools.javac.tree.JCTree$JCBlock.accept(JCTree.java:739) at com.sun.tools.javac.comp.Attr.attribTree(Attr.java:360) at com.sun.tools.javac.comp.Attr.attribStat(Attr.java:397) at com.sun.tools.javac.comp.Attr.visitMethodDef(Attr.java:634) at com.sun.tools.javac.tree.JCTree$JCMethodDecl.accept(JCTree.java:639) at com.sun.tools.javac.comp.Attr.attribTree(Attr.java:360) at com.sun.tools.javac.comp.Attr.attribStat(Attr.java:397) at com.sun.tools.javac.comp.Attr.attribClassBody(Attr.java:2697) at com.sun.tools.javac.comp.Attr.attribClass(Attr.java:2628) at com.sun.tools.javac.comp.Attr.attribClass(Attr.java:2564) at com.sun.tools.javac.main.JavaCompiler.attribute(JavaCompiler.java:1045) at com.sun.tools.javac.main.JavaCompiler.compile2(JavaCompiler.java:768) at com.sun.tools.javac.main.JavaCompiler.compile(JavaCompiler.java:730) at com.sun.tools.javac.main.Main.compile(Main.java:353) at com.sun.tools.javac.main.Main.compile(Main.java:279) at com.sun.tools.javac.main.Main.compile(Main.java:270) at com.sun.tools.javac.Main.compile(Main.java:69) at com.sun.tools.javac.Main.main(Main.java:54) [INFO] 1 error [INFO] ------------------------------------------------------------- Reproduction Step Add log4j2 dependency to Profiler module <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>2.3</version> <scope>compile</scope> </dependency> Related issue http://bugs.java.com/view_bug.do?bug_id=6889255 https://github.com/cobertura/cobertura/issues/283 Failed to compile ForwardingClientCall. Replaced by a simpler class.
gharchive/issue
2020-07-23T05:29:17
2025-04-01T04:35:10.467134
{ "authors": [ "emeroad" ], "repo": "naver/pinpoint", "url": "https://github.com/naver/pinpoint/issues/7050", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
558955563
Bygg av 20200203102848-2b0c963 Kommenter med /promote 20200203102848-2b0c963 cluster, hvor cluster er et gyldig clusternavn Cluster dev-sbs prod-sbs /promote 20200203102848-2b0c963 dev-sbs /promote 20200203102848-2b0c963 prod-sbs
gharchive/issue
2020-02-03T09:31:50
2025-04-01T04:35:10.479486
{ "authors": [ "AndreasDybdahl", "janolaveide" ], "repo": "navikt/foreldrepengeoversikt", "url": "https://github.com/navikt/foreldrepengeoversikt/issues/75", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
641147483
Bygg av 20200618135056-2d01dde Kommenter med /promote cluster, hvor cluster er et gyldig clusternavn Cluster dev-sbs prod-sbs /promote dev-gcp /promote dev-sbs
gharchive/issue
2020-06-18T11:56:28
2025-04-01T04:35:10.482489
{ "authors": [ "janolaveide" ], "repo": "navikt/foreldrepengesoknad", "url": "https://github.com/navikt/foreldrepengesoknad/issues/1640", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1787795119
Utleder ikke 5056 ved opprettelse av manuell revurdering Kan ikke se at dette bruker til noe. Sjekker DB i prod og ser at det bare er 6 saker i 2019 der dette AP er opprettet uten at behandlingen i tillegg har en av de andre 3 foreslå vedtak aksjonspunktene utledet (5018, 5015, 5028). Er det noe jeg har glemt? select f.saksnummer, b.id, b.BEHANDLING_TYPE, b.AVSLUTTET_DATO from fpsak.behandling b join fpsak.aksjonspunkt a on b.id = a.behandling_id join fpsak.fagsak f on f.id = b.fagsak_id where a.aksjonspunkt_def = '5056' and b.AVSLUTTET_DATO is not null and not exists (select 1 from fpsak.aksjonspunkt a2 where a2.behandling_id = a.behandling_id and a2.id <> a.id and a2.AKSJONSPUNKT_DEF in ('5015', '5028', '5018')) and a.AKSJONSPUNKT_STATUS <> 'AVBR' order by b.AVSLUTTET_DATO desc; Diskutert med noen av PE? Bør kommentere og lage invariant-tester rundt de 3 foreslå-vedtak-apene slik at manuell gir AP uansett behandlingsresultat Diskutert med noen av PE? Bør kommentere og lage invariant-tester rundt de 3 foreslå-vedtak-apene slik at manuell gir AP uansett behandlingsresultat Pratet med Marte ja. Hun tror det er greit å fjerne. Best case for de 3 andre foreslå AP's er kanskje å få merget de til ett AP med en smartere utleder
gharchive/pull-request
2023-07-04T12:01:24
2025-04-01T04:35:10.486984
{ "authors": [ "jolarsen", "palfi" ], "repo": "navikt/fp-sak", "url": "https://github.com/navikt/fp-sak/pull/5868", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1293130461
Refaktorere og splitte arena vs våre egene modeller split arena tiltaksgjennomforing refactor routes and services for api remove unneccessary endpoints Avventer litt med denne til https://github.com/navikt/mulighetsrommet/pull/282 er inne og jeg må ta en rebase.
gharchive/pull-request
2022-07-04T12:50:30
2025-04-01T04:35:10.488789
{ "authors": [ "steffeli" ], "repo": "navikt/mulighetsrommet", "url": "https://github.com/navikt/mulighetsrommet/pull/276", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1815951103
Unngår feil i jobbkøyring ved deploy av applikasjon Ved å lytte på shutdown-flagg i det vi plukkar opp feilmeldinga. Samlar med det samme logikken og sentraliserer dette i etterlatte-jobs-modulen, kjens naturleg at det er der LGTM
gharchive/pull-request
2023-07-21T14:55:21
2025-04-01T04:35:10.489764
{ "authors": [ "madsop-nav", "sebassonav" ], "repo": "navikt/pensjon-etterlatte-saksbehandling", "url": "https://github.com/navikt/pensjon-etterlatte-saksbehandling/pull/1834", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1840522231
🛑 ISTAT is down In 2cfbd1e, ISTAT (https://esploradati.istat.it/SDMXWS/rest/dataflow/all/all/latest) was down: HTTP code: 0 Response time: 0 ms Resolved: ISTAT is back up in d0ba14a.
gharchive/issue
2023-08-08T04:01:31
2025-04-01T04:35:10.492980
{ "authors": [ "charphi" ], "repo": "nbbrd/sdmx-upptime", "url": "https://github.com/nbbrd/sdmx-upptime/issues/13009", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1848364145
🛑 ISTAT is down In f2e5a38, ISTAT (https://esploradati.istat.it/SDMXWS/rest/dataflow/all/all/latest) was down: HTTP code: 0 Response time: 0 ms Resolved: ISTAT is back up in 7dc6a73.
gharchive/issue
2023-08-13T02:36:29
2025-04-01T04:35:10.495267
{ "authors": [ "charphi" ], "repo": "nbbrd/sdmx-upptime", "url": "https://github.com/nbbrd/sdmx-upptime/issues/13318", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1857396566
🛑 NBB is down In 253bdb9, NBB (https://stat.nbb.be/restsdmx/sdmx.ashx/GetDataStructure/ALL) was down: HTTP code: 429 Response time: 948 ms Resolved: NBB is back up in c1430f3.
gharchive/issue
2023-08-18T23:31:48
2025-04-01T04:35:10.497549
{ "authors": [ "charphi" ], "repo": "nbbrd/sdmx-upptime", "url": "https://github.com/nbbrd/sdmx-upptime/issues/13713", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1877297203
🛑 ISTAT is down In a80f3c1, ISTAT (https://esploradati.istat.it/SDMXWS/rest/dataflow/all/all/latest) was down: HTTP code: 0 Response time: 0 ms Resolved: ISTAT is back up in abb9c07 after 24 minutes.
gharchive/issue
2023-09-01T12:01:23
2025-04-01T04:35:10.500009
{ "authors": [ "charphi" ], "repo": "nbbrd/sdmx-upptime", "url": "https://github.com/nbbrd/sdmx-upptime/issues/14570", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }