input stringlengths 0 131k | created_at stringlengths 30 30 |
|---|---|
filter is developed with new style. | 2024-03-31 07:05:19.000000000Z |
in [[CODE]]([LINK] ), threads ([LINK]) was **down**: - http code: 429 - response time: 340 ms | 2024-03-31 04:16:27.000000000Z |
### check for existing issues - [x] completed ### describe the feature currently, there is no way to disable whitespace removal on save. afaik, this is a prettier feature. if i create a newline with autosave on, the line starts at the leftmost position, regardless of outer indent. ### if applicable, add mockups / screenshots to help present your vision of the feature _no response_ | 2024-03-31 01:00:43.000000000Z |
we should show a toast for user telling him connection is offline when it is and another one to tell him connection restored | 2024-03-31 07:40:14.000000000Z |
thanks for making this project. could you explain how can i setup s3 access key and secret key? so i can read/write to an s3 bucket. | 2024-03-31 06:08:34.000000000Z |
in [[CODE]]([LINK] ), french ([LINK]) was **down**: - http code: 508 - response time: 896 ms | 2024-03-31 21:40:37.000000000Z |
in [[CODE]]([LINK] ), cashline admin portal - dev ([LINK]/) was **down**: - http code: 0 - response time: 0 ms | 2024-03-31 20:16:45.000000000Z |
in [[CODE]]([LINK] ), student media - motley ([LINK]) was **down**: - http code: 0 - response time: 0 ms | 2024-03-31 12:24:54.000000000Z |
snippets in clangd should respects .clang-format file so it is not necessary to use the format command for each for loop | 2024-03-31 07:20:43.000000000Z |
we had a partially faulty drive in one environment. detection the root-cause was not as easy as it should due insufficient error messages when validation fails. there is room for improvement. | 2024-03-31 00:03:02.000000000Z |
### os version - windows ### minecraft version details - minecraft 1.20.1 ### version details - 1.0.0+build.194 ### existing behavior - ### expected behavior - ### to reproduce - ### this issue is unique - issue - [x] i have searched the issue tracker and did not find an issue describing my bug. - issue | 2024-03-31 09:18:35.000000000Z |
can't test the code | 2024-03-31 14:39:03.000000000Z |
in [[CODE]]([LINK] ), - ited ([LINK]/) was **down**: - http code: 502 - response time: 945 ms | 2024-03-31 08:49:31.000000000Z |
the current delete command sequence diagram should indicate the end of the lifeline for the [CODE]  | 2024-03-31 06:20:01.000000000Z |
# style cleanup and improve css ## general - [ ] make page prettier - [ ] better rendering on mobile / small screens ## specific - [ ] add [CODE] to page title - [ ] make song [CODE] bigger - [ ] improve chord rendering - [ ] make [CODE] bigger (minor chords) - [ ] chords with multiple modifiers should stack on top of each other [CODE] - [ ] chords should not overlap on small screens - [ ] [CODE] toolbar (transpose) - [ ] should match width of sheet music page - [ ] better grouping for buttons? - [ ] change emoji arrows to up / down triangle icons | 2024-03-31 21:30:42.000000000Z |
- [ ] have you checked the guidelines in our [contributing]([LINK]) document? ### description [CODE] | 2024-03-31 05:07:12.000000000Z |
when you use named slots in a component storybook-helpers wraps that with a [CODE]. this does however break styling in certain scenarios. for example we have a card component that has a footer slot where you can put action buttons. we set that footer to [CODE] to align the buttons in the slot properly and then add the buttons to the slot like this [CODE] however, due to storybook-helpers adding a span for the [CODE] slot that styling doesn't work and the gap of 1rem isn't applied. we fixed this on our end with this piece of code: [CODE] perhaps it would be nice to fix this in storybook-helpers instead as i can imagine more people running into this issue. | 2024-03-31 16:40:58.000000000Z |
in [[CODE]]([LINK] ), greatnusa.com ([LINK]) was **down**: - http code: 403 - response time: 140 ms | 2024-03-31 10:57:50.000000000Z |
## is your feature request related to a problem? please describe the validator currently validates the job, but not the request in [CODE]. ## describe the solution you'd like similar to the existing validations, the request has to be validated according to it's interface. | 2024-03-31 19:34:09.000000000Z |
the project is using a custom hostname import which is unnecessary and not a good practice. replace all files using ${hostname} variable with .env meta import for a url | 2024-03-31 09:34:51.000000000Z |
i'm getting the following error. [CODE] i do not understand as ahk is in its default install location. c:\program files\autohotkey\v2\autohotkey64.exe c:\program files\autohotkey\autohotkey.exe | 2024-03-31 07:50:50.000000000Z |
### search before asking - [x] i have searched the yolov8 [issues]([LINK]) and [discussions]([LINK]) and found no similar questions. ### question hi, i used these augmentations settings for training: scale = 0.1 translates = 0.2 perspective= 0.002 degrees= 45, and when i checked train batch images i saw that the mosaic along other augmentations like the above ones causes images to have wrong bounding boxes and sometimes without a target in the image there is a bounding box on the background. i know i can turn the mosaic probability to zero but is there a way to specify not using other effects while the mosaic is being applied?  ### additional _no response_ | 2024-03-31 18:03:11.000000000Z |
why is gazebo running smoothly and gzweb too laggy. is there a problem with my use? can someone answer it? thank you | 2024-03-31 05:08:42.000000000Z |
generate queries from graphql schema for example from the file: type mutation { # create a tweet for a user # consumer keys and tokens are not required for dynamo integration createtweet( tweet: string!, consumer_key: string, consumer_secret: string, access_token_key: string, access_token_secret: string, created_at: string! ): tweet! # delete user tweet deletetweet( tweet_id: string!, consumer_key: string, consumer_secret: string, access_token_key: string, access_token_secret: string ): tweet! # retweet existing tweet retweet( tweet_id: string!, consumer_key: string, consumer_secret: string, access_token_key: string, access_token_secret: string ): tweet! # update existing tweet updatetweet(tweet_id: string!, tweet: string!): tweet! # create user info is available in dynamo integration updateuserinfo( location: string!, description: string!, name: string!, followers_count: int!, friends_count: int!, favourites_count: int!, following: [string!]! ): user! } type query { meinfo(consumer_key: string, consumer_secret: string): user! getuserinfo(handle: string!, consumer_key: string, consumer_secret: string): user! # search functionality is available in elasticsearch integration searchalltweetsbykeyword(keyword: string!): tweetconnection } type subscription { addtweet: tweet [USER](mutations: ["createtweet"]) } type tweet { tweet_id: string! tweet: string! retweeted: boolean retweet_count: int favorited: boolean created_at: string! } type tweetconnection { items: [tweet!]! nexttoken: string } type user { name: string! handle: string! location: string! description: string! followers_count: int! friends_count: int! favourites_count: int! following: [string!]! toptweet: tweet tweets(limit: int!, nexttoken: string): tweetconnection # search functionality is available in elasticsearch integration searchtweetsbykeyword(keyword: string!): tweetconnection } schema { query: query mutation: mutation subscription: subscription } | 2024-03-31 11:54:09.000000000Z |
vulnerable library - npm-check-5.7.1.tgz path to dependency file: /package.json path to vulnerable library: /node_modules/trim-newlines/package.json found in head commit: **in some cases, remediation pr cannot be created automatically for a vulnerability despite the availability of remediation ## details cve-2022-33987 ### vulnerable library - got-6.7.1.tgz simplified http requests library home page: found in base branch: main ### vulnerability details the got package before 12.1.0 (also fixed in 11.8.5) for node.js allows a redirect to a unix socket. publish date: 2022-06-18 url: ### cvss 3 score details ( 5.3 ) base score metrics: - exploitability metrics: - attack vector: network - attack complexity: low - privileges required: none - user interaction: none - scope: unchanged - impact metrics: - confidentiality impact: none - integrity impact: low - availability impact: none for more information on cvss3 scores, click release date: 2022-06-18 fix resolution: got - 11.8.5,12.1.0 | 2024-03-31 05:14:59.000000000Z |
in [[CODE]]([LINK] ), danbs ([LINK]) was **down**: - http code: 404 - response time: 182 ms | 2024-03-31 20:14:30.000000000Z |
there are a few minor improvements to make to this file. | 2024-03-31 07:53:15.000000000Z |
since the cards do not automatically alphabetize and easy way to help manage a lot of info in one card would be to add the ability to insert lines between items when editing a card. also a spacer button would be nice too so that all the info doesnt look all jumbled right now we've been using empty fields to act as spacers but obviously that is not the intended use. thanks! | 2024-03-31 14:19:44.000000000Z |
the [fileprocessing] sample shows how a session can be retried within the workflow task. in my testing i stumbled upon some issues with the approach: [fileprocessing]: [LINK] 1. it doesn't honor workflow cancelation. workflow cancelation will be handled as an error on the activity execution and retried. 2. it doesn't honor legitimate errors, such as a nonretryableerror from an activity. i came to the conclusion that a more robust solution is to execute all the steps of a session in some function, and then check the result of that function for (in this order): * errors.is(ctx, workflow.erriscancelled) - where ctx is the original workflow context: in this case completesession must be called, along with any other required cleanup (e.g., local files). a retry should not be attempted as someone wants the workflow to stop. * errors.is(sessctx, workflow.erriscancelled) - in this case the session has been canceled due to heartbeat timeout and should be retried. no cleanup can be done as the session cannot spawn new activities. * errors.is(err, workflow.errsessionfailed) - same, but slightly different cause (attempt to run activity vs. already running activity against failed/expired session). * any other error, or no error - should be propagated up the stack without attempting to retry the session. calling completesession is required. assuming the above is correct, i think the fileprocessing example is a great place to demonstrate this technique, and a reference from the code go sdk docs would be a big win. i'd be willing to contribute the change to the example if that's interesting to you all. | 2024-03-31 12:16:29.000000000Z |
fix the bug that deleting and editing a person does not update the loans linked to them. | 2024-03-31 14:08:32.000000000Z |
in [[CODE]]([LINK] ), fedora koji ([LINK]/) was **down**: - http code: 0 - response time: 0 ms | 2024-03-31 19:25:59.000000000Z |
**is your feature request related to a problem? please describe.** at '/tutorial/tutorial_id', the [CODE] button is not working - so one can not follow the user who has created the tutorial. **describe the solution you'd like** a working button which when clicked follows the user. **describe alternatives you've considered** remove the [CODE] button and add a link to user profile in avatar when clicked it redirects, to the user profile and from there we can follow the user. **additional context**  here, this button i am referring to... | 2024-03-31 02:08:36.000000000Z |
### modpack version 0.2.54 ### describe the issue small typo on [LINK], should be [CODE] not [CODE], was really bugging me | 2024-03-31 13:31:51.000000000Z |
### what happened? [CODE] ### version from git head or commit (specify below) ### git commit hash (if applicable) _no response_ ### if applicable, where did you install input leap from? compiling from windows ### what oses are you seeing the problem on? (check all that apply) windows ### if applicable, are you using wayland or x11? _no response_ ### what os versions are you using? windows ### relevant log output _no response_ ### any other information _no response_ | 2024-03-31 16:20:57.000000000Z |
**version** (pm the bot with [CODE]):1.2.4 **convention settings:**6 **steps to reproduce or replay link:**[LINK] **additional information:** bombs 4y vs playing 5y | 2024-03-31 15:04:49.000000000Z |
in [[CODE]]([LINK] ), goormedu ([LINK]) was **down**: - http code: 403 - response time: 655 ms | 2024-03-31 15:09:06.000000000Z |
hello! was playing around with this and got unexpected behavior with [CODE] -- it looks like labels collapse into a single na: [CODE] i would have expected this: [CODE] | 2024-03-31 09:47:15.000000000Z |
in [[CODE]]([LINK] ), upptime ($upptime) was **down**: - http code: 0 - response time: 0 ms | 2024-03-31 03:24:33.000000000Z |
review the terraform plan, then approve or deny the deployment of v1.0.0 to prod. workflow is pending manual review. url: [LINK] required approvers: [arianeasa] respond "approved", "approve", "lgtm", "yes" to continue workflow or "denied", "deny", "no" to cancel. | 2024-03-31 03:38:42.000000000Z |
the current version of the [apache avro]([LINK]) package, v1.11.3 has a dependency on version v10.0.3 of newtonsoft.json which has known security issues. this exposes developers using the [CODE] library to those vulnerabilities. this was fixed by [apache.avro #2589]([LINK]), which as not yet been released. any new release of [CODE] will require an updated [CODE] package without the security vulnerabilities. | 2024-03-31 15:29:22.000000000Z |
this is a test aboult create blog | 2024-03-31 02:39:06.000000000Z |
in [[CODE]]([LINK] ), german ([LINK]) was **down**: - http code: 0 - response time: 0 ms | 2024-03-31 22:27:39.000000000Z |
## background i've fallen down a bit of a rabbit hole as i've been looking for ways to search emoji by plaintext which often calls for the use of aliasses to do so. for example: '🤗' isn't called 'hug' however, this is a useful alias (which this lib supports) i innstalled element on my phone a few months ago for discussion on another project and saw that is has a really great search functionality for a ton of aliases that are not present in this lib for example, ':)' for ''. and started digging basically, they use the following python script during build to fetch the latest emoji and aliasses from a few other sources [LINK] one of these is the dataset available from [LINK] which seems really good for this ## the questions/ feature request would you accept a pr to add the aliasses from muan/emojilib to this project? also, i noticed that the demojise function only exposes the first alias if available so i've written my own implementation for a lib that returns a underscore seperated string of keywords. is such a function (maybe called get_aliases) something you'd accept a pr for? thanks for your time and for the awesome project | 2024-03-31 18:15:25.000000000Z |
i've just developed a problem with a stuck right shift key on my macbook pro, which is a much bigger problem than i ever imagined. is there a way to completely disable the key in kmonad? in the past, i could have used karabiner to disable the entire keyboard (disabling the shift key, killed it on all attached keyboards), but if karabiner is running, kmonad cannot run as it can't get exclusive access. i would love to remap the key to emit nothing, but cannot think of a way to do it, and didn't see anything in the tutorial that would do the trick. ideally, it would be nice to extend this to the entire keyboard, creating a completely blank layout, allowing an atreus to sit on top of the physical keyboard, for example. i'd be grateful for any help in killing this stuck key, as the problem is still there, able to cause quite a bit of pain, making the laptop useless. i'm on kmonad: 0.4.2, commit [HASH] running it on macos ventura: 13.6.3 | 2024-03-31 00:07:49.000000000Z |
## description location filters not getting applied in bpp ## goals - [ ] location based filtering should happen appropriately - [ ] location based filtering should work correctly for all domains - [ ] rca of issue to be created ## expected outcome all goals must pass ## acceptance criteria all goals must pass. ## implementation details my curl: [CODE] response:  if you notice, the provider is from bangalore. ## mockups / wireframes [include links to any visual aids, mockups, wireframes, or diagrams that help illustrate what the final product should look like. this is not always necessary, but can be very helpful in many cases.] --- [please note that the below section of the ticket ****has to be in the format as mentioned as it is key to enabling proper listing of the project.**** please only choose the options mentioned under the headings wherever applicable.] ### product name [product name: for eg: beckn, sunbird obsrv etc] ### project name [project name: descriptive of the ticket] ### organization name: [organization name] ### domain [area of governance] ### tech skills needed: [required technical skills for the project] ### complexity pick one of [high]/[medium]/[low] ### category pick one or more of [ci/cd], [integrations], [performance improvement], [security], [ui/ux/design], [bug], [feature], [documentation], [deployment], [test], [poc] ### sub category pick one or more of [api], [database], [analytics], [refactoring], [data science], [machine learning], [accessibility], [internationalization], [localization], [frontend], [backend], [mobile], [seo], [configuration], [deprecation], [breaking change], [maintenance], [support], [question], [technical debt], [beginner friendly], [research], [reproducible], [needs reproduction]. | 2024-03-31 11:46:01.000000000Z |
[USER] aide moi à corriger cette erreur ## détail de l'erreur message: sqlstate[42s02]: base table or view not found: 1146 table 'api.pulse_aggregates' doesn't exist (connection: mysql, sql: select [CODE], [CODE], [CODE], [CODE] from [CODE] where [CODE] in (cpu, memory) and [CODE] = avg and [CODE] = 60 and [CODE] >= [HASH] order by [CODE] asc) contexte: [{"errorinfo":["42s02",1146,"table 'api.pulse_aggregates' doesn't exist"],"connectionname":"mysql"}] niveau: error date: 2024-03-31 13:32:12 environnement: local | 2024-03-31 12:09:16.000000000Z |
in [[CODE]]([LINK] ), zy ([LINK]) was **down**: - http code: 0 - response time: 0 ms | 2024-03-31 19:55:49.000000000Z |
thank you for amazing upscaler. sometimes i am getting this error. [CODE] | 2024-03-31 06:51:57.000000000Z |
return json object as a response for all non-helper functions: - [x] shelf details [CODE] - [x] counter details [CODE] - [x] item details [CODE] - [x] employee details [CODE] | 2024-03-31 21:10:39.000000000Z |
using cli within gui from 24.03 release no decklink device is seen: [CODE] but dvrescue from the [HASH] daily build and the 24.03 daily build do see the decklink device: [CODE] something missing in the bundled dvrescue cli for the gui? | 2024-03-31 17:08:39.000000000Z |
[LINK] i believe this allowed value should be "forecasted" versus just "forecast". | 2024-03-31 09:24:12.000000000Z |
- [ ] display driver and constructor standings after this race (last 2 routes in asg1) - [ ] driver and constructor should be buttons to get more info bonus marks: - [ ] add a button/icon to drivers and constructors to reverse sort order asg text: > in the image above, you can see what should be displayed if the user selects standings. it displays the > driver standings and the constructor standings up after that race (these were the last two routes in > assignment #1). the driver and the constructor should be links/buttons so when they are clicked, the user will see > additional information about the driver or constructor in a modal window (see below). extra marks: add a button/icon to drivers, and to constructors that reverses the sort order. | 2024-03-31 09:53:16.000000000Z |
in [[CODE]]([LINK] ), istat ([LINK]) was **down**: - http code: 0 - response time: 0 ms | 2024-03-31 20:18:40.000000000Z |
while rendering big claims, performance drops significantly. on my system, disabling the overlay render roughly doubles the fps. video demonstration: [LINK] environment: intel xeon e5-2680v2 nvidia gtx 1070 4x8gb ddr3 ecc reg ram windows 10 22h2 minecraft 1.20.1 forge 47.2.20 architectury 9.2.14 ftb chunks 2001.2.7 ftb library 2001.1.5 ftb teams 2001.2.0 journeymap 5.9.20 jmi 0.14-45 | 2024-03-31 09:38:49.000000000Z |
in all the apps that i've ever used, i can honestly say i believe that vscode's find & replace is one of the worst implementations of this feature that i have ever seen. i couldn't find my specific problems in the 10+ pages of people reporting bugs/issues with the f&r function of vscode in this github, so allow me to explain my issues systematically: 1) why on earth does the "find in selection" feature not follow the highlighted selection in real-time? this is absurd. if i don't reset this command manually every time i want to use it, it ends up working throughout my entire document and breaking everything. 2) ctrl + f should "toggle" find a window on/off, and not simply turn it on. why do i have to press a different key to disable it? this is non-intuitive. 3) the replace window should open by default with ctrl + f. why do i have to manually use my mouse and unfurl the downward arrow to re-enable this feature every time i go to execute the shortcut? 4) "find in selection" should remain on until i turn it off. if i close the find window and reopen it, it will not remember my previous selection, and i have to painstakingly turn it back on every time. the development team is inconsistent with this, as features such as "regex" remain active and persist through opening / closing the find window to remember my previous state. ---- in closing, having to hit ~3 different keyboard shortcuts every time i go to use a find / replace function of the same variety is a major problem. | 2024-03-31 14:07:29.000000000Z |
change url structure in mylists to have separate pages for movies and tv shows that branche out into their own lists | 2024-03-31 11:40:31.000000000Z |
due to a change in the workflow file of the [lobechat][lobechat] upstream repository, github has automatically suspended the scheduled automatic update. you need to manually sync your fork. please refer to the detailed [tutorial][tutorial-en-us] for instructions. [lobechat][lobechat] workflow github sync fork [][tutorial-zh-cn]  [lobechat]: [LINK] [tutorial-zh-cn]: [LINK] [tutorial-en-us]: [LINK] | 2024-03-31 11:09:53.000000000Z |
### steps to reproduce the bug simply logging into the server and checking jei. ### expected behavior in singleplayer, the jei seems to be working. it only stops working when hosted on a server or through the essentials mod. ### actual behavior there is not crash, it just hides all the item names both in crafting recipes and item search. ### mod pack url (optional) _no response_ ### mod pack version (optional) _no response_ ### extra notes (optional) _no response_ ### latest.log [LINK] | 2024-03-31 06:29:59.000000000Z |
### is there an existing issue for this? - [x] i have searched the existing issues ### have you read the faq? - [x] yes, i have read the faq ### device information - ios/ipados version: 16.1 - device model: iphone x (10.6) - sideload tool (altstore, sideloadly, trollstore, etc.): trollstore ### describe the issue i encountered a build issue that resulted in the following errors: error 1: [CODE] [CODE] i fix this issue to add 16.1 and is fix error 1. error 2: [CODE] [CODE]?? i add 16.1 i search issue and people said uyou have issue with ios 16 but i try ios 15.5 and i have same issue :/ idk how to fix this issue. ### steps to reproduce 1. error 1: [CODE] [CODE] 2. error 2: [CODE] [CODE] ### crash log _no response_ ### are you using the latest version of uyouplus? if not, why? yes, i'm using the latest version of uyouplus ### does the issue happen with the official youtube app from the app store? no, i cannot reproduce this issue in the official youtube app from the app store ### additional information _no response_ | 2024-03-31 17:38:37.000000000Z |
responsive is not well. | 2024-03-31 20:42:40.000000000Z |
is there any way to disable or enable the load output like with the renogy bluetooth device/app? | 2024-03-31 16:47:55.000000000Z |
## cve-2023-45857 - medium severity vulnerability vulnerable library - axios-0.25.0.tgz promise based http client for the browser and node.js library home page: . suggested fix type: upgrade version release date: 2023-11-08 fix resolution: 0.28.0 *** step up your open source security game with mend [here]([LINK]) | 2024-03-31 00:53:18.000000000Z |
referring to [LINK] and [LINK] why do we serialize the shapes individually when the array could be serialized? check if this has to do with [LINK] | 2024-03-31 01:11:09.000000000Z |
### describe the bug [CODE] [CODE] second line _stream "" and it's an occasional phenomenon, refresh and restore ### to reproduce occasional phenomenon ### version v1.99.0-cluster ### logs _no response_ ### screenshots _no response_ ### used command-line flags _no response_ ### additional information _no response_ | 2024-03-31 17:04:21.000000000Z |
### describe the bug picture in picture is not working. and screen freezes for some time. ### steps to reproduce steps to reproduce the behavior: 1. open youtube 2. play video 3. swipe to home ### expected behavior pip should work. ### screenshots [LINK] ### device information - device: samsung f22 - os: one ui 5.1 core android 13 - app version: latest # 653 ### additional context _no response_ | 2024-03-31 13:31:41.000000000Z |
hello, thank you for this wonderful project! i don't see an open source license here, and i am wondering if am free to contribute or build from this? i would be happy to help add one to this project for you, if you are open to it? [LINK]/ | 2024-03-31 10:02:55.000000000Z |
## summary | status | count | |---------------|-------| | total | 55 | | successful | 55 | | ⏳ timeouts | 0 | | redirected | 0 | | excluded | 0 | | unknown | 0 | | errors | 0 | [full github actions output]([LINK]) | 2024-03-31 00:37:23.000000000Z |
ask for the issue title and type (bug/feature request). | 2024-03-31 19:09:31.000000000Z |
move/rework the readme into a design document | 2024-03-31 18:38:58.000000000Z |
 - currently you have to scroll and its not really usable fullscreen task: check and make all aspect rations usable from portrait to landscape to square please | 2024-03-31 17:51:43.000000000Z |
blaze fit looks stunning but lacks backend. i have my projects nearing please update it bro. longing for reply | 2024-03-31 12:17:50.000000000Z |
### self checks - [x] i have searched for existing issues [search for existing issues]([LINK]), including closed ones. - [x] i confirm that i am using english to submit this report ( [language policy]([LINK])). - [x] pleas do not modify this template :) and fill in all the required fields. ### dify version 0.5.11 ### cloud or self hosted self hosted (docker) ### steps to reproduce 1. vectordb: weaviate 2. embedding model: openai's [CODE] 3. rerank model: cohere's [CODE] 4. storage: azure-blob 5. etl type: unstructured 6. upload csv file 7. select hybrid search 8. run embedding ### expected behavior data should be added to the vector db. the same process can add data to the vector db in dify version 0.5.10. here is one csv file that resulted in failure. [data-for-child-care.csv]([LINK]) ### actual behavior the process failed with the following error.  [CODE] it fails at random location; sometimes fails at 76% and other times at 97%. maybe something to do with #3016 ?  | 2024-03-31 18:10:43.000000000Z |
## issue * group : refactor * detail : ## todo * | 2024-03-31 12:12:18.000000000Z |
write section 1 of proposal in milestone 1 | 2024-03-31 17:09:02.000000000Z |
this change wouldn't only benefit the web, but it's primarily useful there since we cannot turn off vsync | 2024-03-31 03:27:31.000000000Z |
create a new entry in [CODE] table whenever a form is rendered in live mode | 2024-03-31 20:30:21.000000000Z |
in [[CODE]]([LINK] ), spcast / loadbalancer ([LINK]/) was **down**: - http code: 0 - response time: 0 ms | 2024-03-31 18:42:57.000000000Z |
there doesn't seem to be a checkmark or anything that would enable this feature, but it lets me change the "emptyplayer slot text" field. | 2024-03-31 06:42:56.000000000Z |
create and unit test linked list lib | 2024-03-31 17:50:36.000000000Z |
in [[CODE]]([LINK] ), nodo monte castro ([LINK]) was **down**: - http code: 0 - response time: 0 ms | 2024-03-31 02:09:03.000000000Z |
2024-03-31 07:38:11.000000000Z | |
### official helm chart version 1.11.0 ### apache airflow version 2.7.1 ### kubernetes version 1.27 ### helm chart configuration i'm trying to template the extracontainers array, so that i can dry the block where the same block needs to be referenced from scheduler, triggerer, worker etc. #values.yaml [CODE] ### docker image customizations _no response_ ### what happened helm by default doesn't support templating the values in the values.yaml, unless the value is referenced as tpl from the template. ### what you think should happen instead the chart should be rendered with values passed from values.yaml, after the values.yaml itself is rendered. i think the below(if can be added) in place of [LINK]. [CODE] the same can be applied to all the deployments, statefulsets where extracontainers is defined. ### how to reproduce the above code block can be used to reproduce it. ### anything else _no response_ ### are you willing to submit pr? - [ ] yes i am willing to submit a pr! ### code of conduct - [x] i agree to follow this project's [code of conduct]([LINK]) | 2024-03-31 11:27:15.000000000Z |
right | 2024-03-31 16:13:47.000000000Z |
bulma has finally add dark mode capabilities in version 1.0.0. some restructuring of this website's styles are needed to make it gel properly, and then we can have dark mode. will include a button to switch between the two. | 2024-03-31 13:10:55.000000000Z |
[LINK] **filename:** resetcontroller.java **line:** 38 **cwe:** 798 (use of hard-coded credentials ('credentials management')) the application contains hard-coded information that may contain credentials to an external service. the use of hard-coded credentials significantly increases the possibility that the account being protected will be compromised. create store credentials out-of-band from the application code. follow best practices for protecting credentials stored in locations such as configuration or properties files. references: | 2024-03-31 15:53:19.000000000Z |
each elemt need a function to verify it with a post methode sent by the front | 2024-03-31 14:36:48.000000000Z |
  dont know why it is raising this exception. i am running local llm via olllama and got this error. | 2024-03-31 10:53:17.000000000Z |
is gradio available? | 2024-03-31 17:08:20.000000000Z |
this is a backport of [jdk-[HASH]]: remove deprecated internal field sun.security.x509.x509key.key. [jdk-[HASH]]: [LINK] | 2024-03-31 14:06:25.000000000Z |
tutorial issue found: [[LINK]) contains invalid tags. even though your tutorial was created, the invalid tags listed below were disregarded. please double-check the following tags: - software-product>sap btp - abap environment - tutorial>tutorial tutorial>beginner affected server: prod | 2024-03-31 21:20:45.000000000Z |
in [[CODE]]([LINK] ), ahora+ (rrhh.octubre.org.ar) ([LINK]) was **down**: - http code: 503 - response time: 745 ms | 2024-03-31 04:29:12.000000000Z |
see ) | 2024-03-31 08:46:06.000000000Z |
in [[CODE]]([LINK] ), sshoc marketplace api ([LINK]) was **down**: - http code: 0 - response time: 0 ms | 2024-03-31 07:30:07.000000000Z |
we have a source and target client interface that we implement for the 3 formats but this naming can cause some confusion. we will transition to reader/writer style names so it is more clear what these are doing without limiting future developments of what these interfaces can evolve into. | 2024-03-31 23:36:15.000000000Z |
as some testbenches will run for long amounts of time, it would be nice to have a display output showing when the module has asserted a ready signal and when the valid signal has been asserted in the testbench. | 2024-03-31 20:11:28.000000000Z |
### bug description [CODE] hp ssa output: [CODE] ### expected behavior [CODE] data should be collected. ### steps to reproduce 1. install netdata on an hp system with an hp raid adapter 2. enable hpssa ### installation method kickstart.sh ### system info [CODE] ### netdata build info [CODE] ### additional info _no response_ | 2024-03-31 20:03:15.000000000Z |
## summary - this issue is about creating a poster for the 2024 expo ## deadline - 31/03/2023 ## estimated work hours - 4 hr | 2024-03-31 19:04:00.000000000Z |
[USER] community login ..! core-network authauthenticator.kt runblocking mainthread ! #### [CODE] | 2024-03-31 10:48:50.000000000Z |
greetings agoston, i was wondering if there are ways to set different "data" parameters for x and y. specifically, i was wondering if: - can i apply normalization ('zscore') to my biological data (x) but not my behavioural data (y)? - can i deconfound x and y with each having a different set of confounds? from what i can see, i can deconfound both x and y, or one and not the other (with 'none'), but am unsure if there is an available way to have two different sets of variables to use for deconfounding separately in x and y. if i can also ask a slightly unrelated question:for the zscore normalization in the context of cca-pca, i'm assuming the normalization is done to the input features (i.e., pca components) which are then used for cca (and not for the raw x variables prior to pca being done)? thank you for all your help, paul | 2024-03-31 14:13:08.000000000Z |
secret key type is a python bytes, but public key is specified here [LINK] | 2024-03-31 15:14:20.000000000Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.