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
2246917989
Virtual textures are not supported Hello. Here are some textures from the game The day before. Engine version UE5 5.2.1.0 I was never able to get anything adequate from these files, even through rawtex / texconv thedaybefore_assets.zip Hi, thanks for the report. Do you have more infomation about your assets? T_drum_kit_01_d.uasset says it's a 2d texture. and T_drum_kit_01_d.uexp says it's a 1024x1024 texture that have DXT1 format. Its DDS data should be 683KB at most but T_drum_kit_01_d.ubulk is 830KB. (Usually, the texture ubulk has only pixel data for DDS.) Also, I can see PF_DXT1 twice in T_drum_kit_01_d.uexp. I've never seen like this before. I assume that the day before uses a custom version of UE or a less well-known option. no, unfortunately these files, the version of the game and what kind of game this is is the only thing I can give you, I’m very far from all this stuff with coding) if you need more examples... by the way, the game also contains ordinary textures that umodel was able to immediately convert to a readable format. I confirmed that they are streaming virtual textures. I got similar structures when I enabled the Virtual Texture Streaming option in Unreal Engine. Presumably, their pixel data is subdivided into small pieces and stored in specific data structures. But unfortunately, it's beyond my understanding. Idk how to convert them to the standard image formats. So, I added an error message for virtual textures at 3d6ac1c2708fd9680d809740c628409dd904c717, and gave up to support your assets. It’s a pity, I’m increasingly encountering these virtual textures, even though they were originally just an ordinary picture =( I apologize in advance for a question that doesn't quite belong here, but could you give me some advice on how to properly set up the virtual texture generation in the unreal editor? I've exported the texture in png via Umodel, edited it in Photoshop and would like to create a uasset back from it directly in the editor. But I can't seem to set it up properly. I always end up with a black texture instead of a picture.
gharchive/issue
2024-04-16T21:33:35
2025-04-01T06:39:31.393630
{ "authors": [ "MARK2580", "Mayki07", "matyalatte" ], "repo": "matyalatte/UE4-DDS-Tools", "url": "https://github.com/matyalatte/UE4-DDS-Tools/issues/30", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1590549629
🛑 API announcement - PROD is down In 0411e88, API announcement - PROD (https://announcement.prod.api.eflow.com.ar/swagger) was down: HTTP code: 0 Response time: 0 ms Resolved: API announcement - PROD is back up in a58b5a0.
gharchive/issue
2023-02-19T03:55:46
2025-04-01T06:39:31.398787
{ "authors": [ "mauribesson" ], "repo": "mauribesson/upptime", "url": "https://github.com/mauribesson/upptime/issues/975", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1525807536
PowerShell Error. You cannot call a method on a null-valued expression. At line:17154 char:5 Trying to get started using the tool. I'm getting this error when running DriverAutomationTool.exe Any idea how I can get past this? I could not find the PS1 file to look at the PowerShell code to troubleshoot this further. Also Microsoft is checked and grayed out and can't be unchecked. [Start Up] - Initialising Driver Automation Tool - Loading required PowerShell modules - Checking for preinstalled PS modules - Importing module BitsTransfer [Launching GUI] [Azure Registy Settings Detected] - Obtaining all Azure values from registry path HKLM:\SOFTWARE\MSEndpointMgr\DriverAutomationTool - Setting values in the UI You cannot call a method on a null-valued expression. At line:17154 char:5 + ... $OSBuild = ($WindowsBuildHashTable.Item("$OSBuild")).Spli ... + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : InvalidOperation: (:) [], RuntimeException + FullyQualifiedErrorId : InvokeMethodOnNull Try clicking the Reset Tool button at the bottom left and setting only the settings needed. The reset button worked for me. Thanks for the tip OK i have done the reset... now i am getting... Start-BitsTransfer : The server name or address could not be resolved At line:1093 char:8 ... Start-BitsTransfer -Source $DellXMLCabinetSource -Destina ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ CategoryInfo : InvalidOperation: (:) [Start-BitsTransfer], Exception FullyQualifiedErrorId : StartBitsTransferCOMException,Microsoft.BackgroundIntelligentTransfer.Management.NewBitsTransferCommand
gharchive/issue
2023-01-09T15:22:39
2025-04-01T06:39:31.403221
{ "authors": [ "Get-SomeCofee", "chrisecklar", "jacqtscpl" ], "repo": "maurice-daly/DriverAutomationTool", "url": "https://github.com/maurice-daly/DriverAutomationTool/issues/444", "license": "BSD-2-Clause", "license_type": "permissive", "license_source": "github-api" }
58984513
jsonb support to get read/write jsonb columns to/from play json Starting a new project and jsonb looks very attractive. Any pointers on how to deal with jsonb columns ? Right now there is no support for jsonb as including support would require building a jsonb serializer and de-serializer, but we would definitely accept a PR that introduces it :) I'd be happy to, even if I have to hire somebody to do it :) So two questions: 1 - Is reading/writing jsonb currently possible at all ? 2 - How would I approach "building a jsonb serializer" ? I am not sure how good my scala is, but postgresql with jsonb and non-blocking play is what I want to use for this project. Right now it will be read as string, not sure how PostgreSQL will produce a string out of it. To include it you need to build an encoder and a decoder and register it [here](https://github.com/mauricio/postgresql-async/blob/master/postgresql-async/src/main/scala/com/github/mauricio/async/db/postgresql/column/PostgreSQLColumnEncoderRegistry.scala] and here. Great, already something ! So at least I should be able to use play json support to parse/format the strings. Thank you for a quick reply. Hi @webgress - did you do anything about this? I too want jsonb ok - So if you convert your json into a string before passing it across to posgres and if you parse it when it comes back there's nothing to do (which mauicio more or less said above). It works already Thinking about it, there are many different json ASTs in the scala world. Any decision to write a decoder as part of this package would probably be a mistake - as you'd get in the way of the people with a different Json representation. So I'd suggest this doesn't need fixing. Yeah, which is kind of what I'm thinking as well, we could include a way for you to provide your own JSON parser if you'd like to if people think it's necessary, but I'd rather not force people to use something, specially when there are many different solutions out there already and they aren't even remotely compatible between them.
gharchive/issue
2015-02-25T22:58:35
2025-04-01T06:39:31.409251
{ "authors": [ "TimPigden", "mauricio", "webgress" ], "repo": "mauricio/postgresql-async", "url": "https://github.com/mauricio/postgresql-async/issues/134", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
418010229
Unable to use library with commons-io My project has dependency on commons-io wich conflicts with your placed classes in -> src/main/java/org/apache/commons/io/ You probably should use dependency commons-io:commons-io:2.6. Add to VERSIONS.gradle after line 132 commonsio: [group: 'commons-io', name:'commons-io', version: '2.6'], To build.gradle in array oreoDependencies [configuration: "implementation", dependency: libs.commonsio], And to array preoreoDependencies [configuration: "compile", dependency: libs.commonsio], Have made a PR for this: https://github.com/mauron85/background-geolocation-android/pull/31 @mauron85 would it be possible to get this merged? Its interfering with expo's unimodules. Almost year - still waiting... Next problem is going to be release of older version of mauron85/react-native-background-geolocation Using version 0.5 @petrleocompel Just wanted to say thank you for posting this fix. I already spent so many hours trying to get the library to compile in release mode, and your PR finally helped me get it to work. Thank you for being here for this library since @mauron85 isn't even looking at it anymore. There is "maintained" fork which implemented this. -> https://github.com/darron1217/background-geolocation-android/ And in react-native part https://github.com/darron1217/react-native-background-geolocation I am closing this because it is 3 years later and no change.
gharchive/issue
2019-03-06T21:10:10
2025-04-01T06:39:31.446234
{ "authors": [ "himat", "petrleocompel", "tankers746" ], "repo": "mauron85/background-geolocation-android", "url": "https://github.com/mauron85/background-geolocation-android/issues/29", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
196442009
accuracy issues with points Not necessarily an issue, but wanted to see if other folks are experiencing this kind of thing. May app uses the standard geolocation tools with Phonegap as well as this plugin for the background geolocations. Everything is working reasonably well on android/iphone, except I have these random points with terrible accuracy, 20km+ out. Is this normal? Is there something I can do with the settings to limit this? My initial thought it to use location.accuracy to discard any bad points, but wanted to see if this is an issue I have with my setup overall. Thanks! Your Environment Plugin version: most recent Platform: iOS or Android OS version: varies Phonegap Build 5.2 Notice: this issue has been closed because it has been reported for branch 2.x or later. It could be already fixed in v3 or is not relevant anymore. You may reopen this issue if it has been closed in error.
gharchive/issue
2016-12-19T15:30:25
2025-04-01T06:39:31.448908
{ "authors": [ "culland", "mauron85" ], "repo": "mauron85/cordova-plugin-background-geolocation", "url": "https://github.com/mauron85/cordova-plugin-background-geolocation/issues/229", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
283511684
Partial reconfiguration Your Environment Plugin version: 2.3.2 Platform: iOS and Android OS version: macOS HighSierra Device manufacturer and model: Samsung S7 Cordova version (cordova -v): 7.1.0 Cordova platform version (cordova platform ls): Plugin configuration options: all Link to your project: na Context IMHO partial reconfiguration doesn't work as described. If I try debug: true object as a parameter debug is not started. example BackgroundGeolocation.configure({ debug: true }); Expected Behavior Partial reconfigure should work Actual Behavior IMHO partial reconfiguration doesn't work as described. If I try debug: true object as a parameter debug is not started. example BackgroundGeolocation.configure({ debug: true }); Possible Fix I hope there is a fix or I am doing it wrong. Steps to Reproduce Context Debug logs Just tested in on android and works as advertised. What are your expectations about toggle debug? Plugin must be started to see difference Just realized your problem is plugin version 2.3.2. This feature is 3.0.0 only. You are right. My version of the plugin is 2.3.3 Where is version 3.0 If I reinstall the plugin it is still 2.2.2 Op 20 dec. 2017, om 18:46 heeft Marián Hello notifications@github.com het volgende geschreven: Closed #360 https://github.com/mauron85/cordova-plugin-background-geolocation/issues/360. — You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/mauron85/cordova-plugin-background-geolocation/issues/360#event-1396577998, or mute the thread https://github.com/notifications/unsubscribe-auth/AAZlp2x1HUmUUCe_Dylvj70z7FaCUwkzks5tCUgMgaJpZM4RIK2d. Hi, I found the 3.0.0 version of the plugin: 3.0.0-alpha.12 right? If I remove the 2.3.2 version and install 3.0.0 my app doesn’t build anymore. Here the log of build proces: (node:64674) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): Error: /Users/pietcrombach/Development/Projecten/trinl/trinlfirebase/platforms/android/gradlew: Command failed with exit code 1 Error output: Note: Some input files use or override a deprecated API. Note: Recompile with -Xlint:deprecation for details. Note: Some input files use or override a deprecated API. Note: Recompile with -Xlint:deprecation for details. /Users/pietcrombach/Development/Projecten/trinl/trinlfirebase/platforms/android/src/com/zencity/cordova/bgloc/LocationUpdateService.java:6: error: package org.apache.http does not exist import org.apache.http.HttpResponse; ^ /Users/pietcrombach/Development/Projecten/trinl/trinlfirebase/platforms/android/src/com/zencity/cordova/bgloc/LocationUpdateService.java:7: error: package org.apache.http.client.methods does not exist import org.apache.http.client.methods.HttpPost; ^ /Users/pietcrombach/Development/Projecten/trinl/trinlfirebase/platforms/android/src/com/zencity/cordova/bgloc/LocationUpdateService.java:8: error: package org.apache.http.entity does not exist import org.apache.http.entity.StringEntity; ^ /Users/pietcrombach/Development/Projecten/trinl/trinlfirebase/platforms/android/src/com/zencity/cordova/bgloc/LocationUpdateService.java:9: error: package org.apache.http.impl.client does not exist import org.apache.http.impl.client.DefaultHttpClient; ^ /Users/pietcrombach/Development/Projecten/trinl/trinlfirebase/platforms/android/src/com/zencity/cordova/bgloc/LocationUpdateService.java:662: error: cannot find symbol DefaultHttpClient httpClient = new DefaultHttpClient(); ^ symbol: class DefaultHttpClient location: class LocationUpdateService /Users/pietcrombach/Development/Projecten/trinl/trinlfirebase/platforms/android/src/com/zencity/cordova/bgloc/LocationUpdateService.java:662: error: cannot find symbol DefaultHttpClient httpClient = new DefaultHttpClient(); ^ symbol: class DefaultHttpClient location: class LocationUpdateService /Users/pietcrombach/Development/Projecten/trinl/trinlfirebase/platforms/android/src/com/zencity/cordova/bgloc/LocationUpdateService.java:663: error: cannot find symbol HttpPost request = new HttpPost(url); ^ symbol: class HttpPost location: class LocationUpdateService /Users/pietcrombach/Development/Projecten/trinl/trinlfirebase/platforms/android/src/com/zencity/cordova/bgloc/LocationUpdateService.java:663: error: cannot find symbol HttpPost request = new HttpPost(url); ^ symbol: class HttpPost location: class LocationUpdateService /Users/pietcrombach/Development/Projecten/trinl/trinlfirebase/platforms/android/src/com/zencity/cordova/bgloc/LocationUpdateService.java:677: error: cannot find symbol StringEntity se = new StringEntity(params.toString()); ^ symbol: class StringEntity location: class LocationUpdateService /Users/pietcrombach/Development/Projecten/trinl/trinlfirebase/platforms/android/src/com/zencity/cordova/bgloc/LocationUpdateService.java:677: error: cannot find symbol StringEntity se = new StringEntity(params.toString()); ^ symbol: class StringEntity location: class LocationUpdateService /Users/pietcrombach/Development/Projecten/trinl/trinlfirebase/platforms/android/src/com/zencity/cordova/bgloc/LocationUpdateService.java:691: error: cannot find symbol HttpResponse response = httpClient.execute(request); ^ symbol: class HttpResponse location: class LocationUpdateService Note: Some input files use or override a deprecated API. Note: Recompile with -Xlint:deprecation for details. Note: Some input files use unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. 11 errors After reinstalling 2.00 version of the plugin these errors stay now. So what to do now????? Op 20 dec. 2017, om 18:46 heeft Marián Hello notifications@github.com het volgende geschreven: Closed #360 https://github.com/mauron85/cordova-plugin-background-geolocation/issues/360. — You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/mauron85/cordova-plugin-background-geolocation/issues/360#event-1396577998, or mute the thread https://github.com/notifications/unsubscribe-auth/AAZlp2x1HUmUUCe_Dylvj70z7FaCUwkzks5tCUgMgaJpZM4RIK2d. You've installed wrong plugin. Probably this one https://www.npmjs.com/package/cordova-plugin-background-geolocation I can tell because com/zencity/cordova/bg is not package name I'm using, but it exactly matches this one https://github.com/ZenCity/cordova-plugin-background-geolocation/blob/master/src/android/LocationUpdateService.java#L1
gharchive/issue
2017-12-20T10:12:07
2025-04-01T06:39:31.470222
{ "authors": [ "mauron85", "pcrombach" ], "repo": "mauron85/cordova-plugin-background-geolocation", "url": "https://github.com/mauron85/cordova-plugin-background-geolocation/issues/360", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
491181833
iOS 13.1 Beta - Geolocation not reported when app is in background Seems like the geolocation is not reported when the app runs in background despite the "Always" permission is set Your Environment Plugin version: 3.0.6 Platform: iOS 13.1 beta OS version: Device manufacturer and model: IPhone 6s Cordova version (cordova -v): 9.0.0 (cordova-lib 9.0.1) Cordova platform version (cordova platform ls): ios 5.0.1 Plugin configuration options: Link to your project: Context On iOS 13.1 when the user has checked in the settings of the app the "always" permission for the iOS, the location is not beeing recorded after one leaves the app (switches the app to background i.e.). I can see that on the navtive Cordova Background Geolocation It this issue has been already raised and solved: transistorsoft/cordova-background-geolocation-lt#952 Expected Behavior The Geolocation should be properly sent even if the app is in the background Steps to Reproduce Turn on the "Always" geolocation permission (turned on from the settings page, not from the prompt - as it is no longer available in the iOS 13). Start tracking the geolocation Go to the desktop After approx. 30 seconds the location arrow on the top bar will disappear and the geolocation requests will cease beeing sent to the server. Going back to the application reenables sending of the geolocation requests @mauron85 I am sorry for being pushy, but do you have a clue about this one? iOS 13 releases tomorrow, there might be a great impact if the background geoloc report would not work in the background. For now, the issue still persists. It seems to be a general issue with iOS 13. You dont get (not every time, but sometimes, cant say explicit when) the blue tracking icon If the new authority confirm box (Only in foreground, Once, Never) you got BackgroundGeolocation.AUTHORIZED, if the user select "only in foreground". -- So the trackings stops in background without any response or callback etc. If you resume the app, you got the question from ios if you allowed every time in background and the tracking jumps from the last point in foreground to the current point But i dont have any idea atm to solve the issue :/ @busaku Mhm, thank you for the reply, well, at least I am not the only one fighting this bug. Is seems the issue happens only with ACTIVITY_PROVIDER, when using RAW_PROVIDER (and app has proper permissions) geolocation in background works fine. Hello @tkondej how to change that setting? @itcurves simply by specifying locationProvider, check the example https://github.com/mauron85/cordova-plugin-background-geolocation#example @tkondej, I'm still having issues with background data sending to my server using RAW_PROVIDER - I currently use DISTANCE_FILTER_PROVIDER but I switched to RAW_PROVIDER for testing. Both fail. I was wondering if you could explain what you mean by "and app has proper permissions". My app used to work prior to IOS13 so I was wondering if there is a new permission required for IOS13? @stgraham2000 on iOS 13 you have to enable access to use "geolocation always" in application settings or by accepting additional prompt which popups when after locking and unlocking the phone, check this article for more details https://medium.com/@transistorsoft/ios-13-and-android-q-support-beb7595d2c24 @tkondej, interesting, I had the "always on" under permissions for most of the day and it appeared to be broken, but it looks like another thing to look out for is you need to go for a longer distance test run. In earlier tests today I was probably only walking maybe 50m (around my office). I just tried again by doing a short drive and the points were collected as I expected. Before when I was testing on ios12 I could get points with a much shorter distance travelled. This will be an interesting usability issue to address as the article you referenced also indicates. It looks like this should still be possible to accomplish location updates while the permissions are set to "while in use": https://developer.apple.com/documentation/corelocation/getting_the_user_s_location/handling_location_events_in_the_background https://developer.apple.com/documentation/corelocation/cllocationmanager/1620568-allowsbackgroundlocationupdates I will experiment with this in the morning and report back Any news? :) Unfortunately I took horrible notes on this investigation but I have fixed the problem and here are the changes I in the commit that fixed this: Unfortunately, I took horrible notes on this investigation but I have fixed the problem and here are the changes I have in the commit that fixed this... Went from version 3.0.0-alpha.50 to 3.1.0 Following is a snipped of the config changed: startForeground: true, # Unset prior pauseLocationUpdates: false # Unset prior stationaryRadius: 10 # Used to be 50 Was using this.backgroundGeolocation.finish() at the end of the location handler. I removed these. I hope one of the above changes works for you. Sorry I can't be of more help. Hello, please look at my posts #684 In your config.xml be sure to add the following configuration under the iOs platform xml node: <config-file parent="UIBackgroundModes" target="*-Info.plist"> <array> <string>fetch</string> </array> <array> <string>location</string> </array> <array> <string>processing</string> </array> </config-file> <edit-config file="*-Info.plist" mode="merge" target="NSLocationWhenInUseUsageDescription"> <string>need location access to find things nearby</string> </edit-config> that's equivalent to the following setup from Xcode @jackie-d - Give a try to this plugin- https://www.npmjs.com/package/cordova-plugin-bg-geolocation https://github.com/Anuj-Raghuvanshi/cordova-plugin-bg-geolocation This works, Thanks! I have finally got this to work on a real device! the key change: locationProvider: BackgroundGeolocation.RAW_PROVIDER i,e, do NOT use ACTIVITY_PROVIDER as shown in the geolocation example in the docs as this doe NOT work in the background on IOS devices as explained here https://github.com/mauron85/cordova-plugin-background-geolocation/blob/HEAD/PROVIDERS.md I am not sure these are also required in the config.xml file under the 'ios platform' section as suggested above. I suspect the default already set by the plugin (i.e. 'location') might be sufficient. @tfelici - Can you please share reference of your plugin if you have forked and made changes? I also facing same issue. I have not done any fork. I am using the vanilla 3.1.0 version Kind regards Tom On 11/09/2020 12:05, Anuj Singh wrote: @tfelici https://github.com/tfelici - Can you please share reference of your plugin if you have forked and made changes? I also facing same issue. — You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/mauron85/cordova-plugin-background-geolocation/issues/619#issuecomment-691029600, or unsubscribe https://github.com/notifications/unsubscribe-auth/AB2PYTFAC43VNIMXLF3LQC3SFH76BANCNFSM4IU5AYGQ. ok - after further tests I can confirm this woks on IOS 13.7 on my daughter's iphone and ipad. Here are the relevant settings in BackgroundGeolocation.configure BackgroundGeolocation.configure({ locationProvider: BackgroundGeolocation.RAW_PROVIDER, desiredAccuracy: BackgroundGeolocation.HIGH_ACCURACY, pauseLocationUpdates: false, // need this for IOS I think (default was false anyhow but maybe not) stationaryRadius: 20, distanceFilter: 20, // docs say this is dinamically changed when locationProvider = DISTANCE_FILTER_PROVIDER }); you do NOT need to add the extra lines <config-file parent="UIBackgroundModes" target="*-Info.plist"> <array> <string>location</string> </array> <array> <string>processing</string> </array> </config-file> unless you require to app to refresh other stuff in the background, other than location updates and posting Hi, there are two ways to works geolocation in background, the first is as you commented with RAW_PROVIDER and the second is setting up in locationProvider: backgroundGeolocation.DISTANCE_FILTER_PROVIDER and call in your event location the method switchMode to force foreground and with this continue reporting in base to option.desiredAccuracy and option.distanceFilter BackgroundGeolocation.on('location', function(location) { // handle your locations here // switch to FOREGROUND mode BackgroundGeolocation.switchMode(BackgroundGeolocation.FOREGROUND_MODE); }) But I have a question, in the two ways this works and I can see blue in the status bar that means an app is actively using your location. My question is this can drain the battery? is not sending location until you reach your distance filter but this is always in the status bar. I hope anyone see this
gharchive/issue
2019-09-09T15:53:28
2025-04-01T06:39:31.495446
{ "authors": [ "Anuj-Raghuvanshi", "Anuj-logiciel", "busaku", "diegojoel98", "grabkipower", "itcurves", "jackie-d", "stgraham2000", "tfelici", "tkondej" ], "repo": "mauron85/cordova-plugin-background-geolocation", "url": "https://github.com/mauron85/cordova-plugin-background-geolocation/issues/619", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
194137831
Add search for ExpenseCategory to NetSuite Records pulls in all categories from NetSuite @ahuth @shirish-pampoorickal @AnnaMhairi @shirish-pampoorickal comments addressed
gharchive/pull-request
2016-12-07T19:02:52
2025-04-01T06:39:31.548237
{ "authors": [ "azellsworth" ], "repo": "mavenlink-solutions/netsuite", "url": "https://github.com/mavenlink-solutions/netsuite/pull/5", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
2162128297
Diesel session store support I noticed a discussion in tower-sessions between the maintainer of this repo and a contributor intending to add support for Diesel, which seems to have stalled at the end of last year. I'd like to have support for Diesel, so am proposing to create a pull request with the relevant parts, if that would be welcome. Please let me know if there's anything I might like to take into consideration. We don't vendor session stores so please publish this as an independent crate. There's a number of examples listed in the docs and README which you might reference. Leaving a note here for others to find regarding diesel. I spent about 2 hours looking into writing my own session store and evaluated it as not worth it, and will be migrating my project to sqlx instead, which seems generally better supported both by tower-sessions and other ecosystem projects I'm relying on (shuttle). It was mentioned to me elsewhere that Diesel's has been losing support relative to sqlx/seaORM on the basis of one or more of: of slow compilation times inconsistent async support slower developer experience than just writing compile-time checked SQL a necessarily complex trait ecosystem creating friction for open source maintainers to support diesel
gharchive/issue
2024-02-29T21:25:07
2025-04-01T06:39:31.573211
{ "authors": [ "maxcountryman", "thor314" ], "repo": "maxcountryman/tower-sessions-stores", "url": "https://github.com/maxcountryman/tower-sessions-stores/issues/8", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
94947537
having a problem without knowing how to fix this. Hi. I am currently trying to use your imagePicker in my own project, but I get this error even in my test that I created with your code. Do you have any idea? I have a problem in installing via cocoapods. fingents-Mac-mini-3:HoneyBadger fingent$ pod install Updating local specs repositories CocoaPods 0.39.0.beta.4 is available. To update use: gem install cocoapods --pre [!] This is a test version we'd love you to try. For more information see http://blog.cocoapods.org and the CHANGELOG for this version http://git.io/BaH8pQ. Analyzing dependencies [!] Unable to satisfy the following requirements: RMImagePicker (~> 0.1.4) required by Podfile Here is the podfile. Appreciate your help. Uncomment this line to define a global platform for your project platform :ios, '6.0' target 'HoneyBadger' do pod "RMImagePicker","~> 0.1.4" end target 'HoneyBadgerTests' do end
gharchive/issue
2015-07-14T13:41:26
2025-04-01T06:39:31.577983
{ "authors": [ "alvinreuben", "luxis" ], "repo": "maxdrift/RMImagePicker", "url": "https://github.com/maxdrift/RMImagePicker/issues/2", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
269260007
Floating Section Header not scrolling with tableView after using MXParallaxHeader for the tableHeaderView So I am facing this problem on my project. Somehow we must use UITableView with Plain Style and then dynamically adding table section header in to the tableView. And for the TableHeaderView of course I am using MXParallaxHeader. However, when I scroll the tableView up, my section header view got stock at the origin position while all cells are scrolling up. It is a very weird behavior I never seen before. I know #65 asked the same question but there is no a correct response. Please help. Thank you So I tried #65 solution again and it worked. Basically what you should do to make UITableView Section Header works with MXParallaHeader is to add UITableView into MXScrollView, assign your MXParallaxHeader (View) to the scrollView.parallaheader.view. And then set the correct scrollView.contentSize otherwise it won't be scrollable. This works well for my project, but the upcoming issue is that scrollView.parallaheader.minimumHeight doesn't work in this case. If someone know the solution, please share. Thanks @Tim77277 I did that like you say , it worked . But It have a problem, when I scroll the list to the bottom , I can't keep scroll down although I set scrollView.bounces = true and collectionView.bounces = true. Did you get this problem? Same problem here @Tim77277 I did that like you say , it worked . But It have a problem, when I scroll the list to the bottom , I can't keep scroll down although I set scrollView.bounces = true and collectionView.bounces = true. Did you get this problem? Same problem here
gharchive/issue
2017-10-27T23:06:23
2025-04-01T06:39:31.581522
{ "authors": [ "Tim77277", "manolisep" ], "repo": "maxep/MXParallaxHeader", "url": "https://github.com/maxep/MXParallaxHeader/issues/84", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
409835168
Return value of getWaveform function I tried your package, but when i used the function in the title, I get a boolean (true) instead of the image I expected to get. The getWaveformData function on the other hand return the expected waveform data. I used Version 1.2.0 of the library. I used PHP 7.2.15 and the GD-Extension is enabled. See the readme file and the PhpDoc for getWaveform() method: /** * Get waveform from the audio file. * @param string $filename Image file name * @param int $width Width of the image file in pixels * @param int $height Height of the image file in pixels * @param bool $onePhase `true` to get positive values only, `false` to get both phases * @return bool Returns `true` on success or `false` on failure. * @throws \Exception */ getWaveform() saves the image to $filename and returns boolean (whether the operation succeded).
gharchive/issue
2019-02-13T14:36:39
2025-04-01T06:39:31.588537
{ "authors": [ "Sebastian-Hirsch", "maximal" ], "repo": "maximal/audio-waveform-php", "url": "https://github.com/maximal/audio-waveform-php/issues/5", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
804546856
Suggestion: Add multiple template with template selection I think that you should make multiple differents templates, ones with categories, ones without, one without emojis, etc, and let us select it through the CLI (with a --template argument for example). This would greatly improve this project! I knew someone would ask 😃 I originally wanted this to be more of a DIY solution where you have the info and you can arrange it as you desire and do whatever with the output. I would add multiple templates but there is so much info and so many ways to create changelogs and everyone wants it to be a certain way. so I only have one (opinionated) template by default and export all the info (sorted and unsorted) for people to create their own. for example, in the default template, I put a link to the commit with the short hash. some like to have the link on the commit text, some like to put it on the end, some only like to put the hash but not a link, some people would prefer not to have it altogether. this would either require me to add every requested template, or create a templating language which is dynamic enough. I'd rather that language be javascript/typescript than creating my own. Mh I see, but for example: When I tried to modify this to only have only 1 "Changelog" category, I struggled a lot because code is very axed for multiple categories, maybe you should change this, like regrouping every part of the configuration in 1 ts file? if you just want a list of commits, you can do something like: // ghlog@0.2.x const { _meta }= await getChangeLog(repo, base, head, config); const changelog = `CHANGELOG ${ _meta.commits.all.map(({ message }) => `- ${message}` ).join("\n") } ` // write `changelog` to file I'm trying to think of a good way for how to structure the out put of getChangeLog() so that it's as flexible as possible. Mh I see okay, I was just doing it badly!
gharchive/issue
2021-02-09T13:22:49
2025-04-01T06:39:31.596236
{ "authors": [ "Ayfri", "maximousblk" ], "repo": "maximousblk/ghlog", "url": "https://github.com/maximousblk/ghlog/issues/4", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2453983830
omegaconf.errors.ConfigAttributeError: Missing key ckpt Thanks for the great work! When I ran video_editing.sh, I got the following error. I checked the sample.yaml and there is no ckpt part. Am I missing something? The gardio app works fine. (cinemo) C:\Users\toyxy\Cinemo>bash pipelines/video_editing.sh C:\Users\toyxy\ANACON~1\envs\cinemo\Lib\site-packages\diffusers\utils\outputs.py:63: FutureWarning: `torch.utils._pytree._register_pytree_node` is deprecated. Please use `torch.utils._pytree.register_pytree_node` instead. torch.utils._pytree._register_pytree_node( C:\Users\toyxy\ANACON~1\envs\cinemo\Lib\site-packages\huggingface_hub\file_download.py:1150: FutureWarning: `resume_download` is deprecated and will be removed in version 1.0.0. Downloads always resume when possible. If you want to force a new download, use `force_download=True`. warnings.warn( C:\Users\toyxy\ANACON~1\envs\cinemo\Lib\site-packages\diffusers\models\modeling_utils.py:109: FutureWarning: You are using `torch.load` with `weights_only=False` (the current default value), which uses the default pickle module implicitly. It is possible to construct malicious pickle data which will execute arbitrary code during unpickling (See https://github.com/pytorch/pytorch/blob/main/SECURITY.md#untrusted-models for more details). In a future release, the default value for `weights_only` will be flipped to `True`. This limits the functions that could be executed during unpickling. Arbitrary objects will no longer be allowed to be loaded via this mode unless they are explicitly allowlisted by the user via `torch.serialization.add_safe_globals`. We recommend you start setting `weights_only=True` for any use case where you don't have full control of the loaded file. Please open an issue on GitHub for any issues related to this experimental feature. return torch.load(checkpoint_file, map_location="cpu") Traceback (most recent call last): File "C:\Users\toyxy\Cinemo\pipelines\video_editting.py", line 198, in <module> main(OmegaConf.load(args.config)) File "C:\Users\toyxy\Cinemo\pipelines\video_editting.py", line 87, in main state_dict = find_model(args.ckpt) ^^^^^^^^^ File "C:\Users\toyxy\ANACON~1\envs\cinemo\Lib\site-packages\omegaconf\dictconfig.py", line 355, in __getattr__ self._format_and_raise( File "C:\Users\toyxy\ANACON~1\envs\cinemo\Lib\site-packages\omegaconf\base.py", line 231, in _format_and_raise format_and_raise( File "C:\Users\toyxy\ANACON~1\envs\cinemo\Lib\site-packages\omegaconf\_utils.py", line 899, in format_and_raise _raise(ex, cause) File "C:\Users\toyxy\ANACON~1\envs\cinemo\Lib\site-packages\omegaconf\_utils.py", line 797, in _raise raise ex.with_traceback(sys.exc_info()[2]) # set env var OC_CAUSE=1 for full trace ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\Users\toyxy\ANACON~1\envs\cinemo\Lib\site-packages\omegaconf\dictconfig.py", line 351, in __getattr__ return self._get_impl( ^^^^^^^^^^^^^^^ File "C:\Users\toyxy\ANACON~1\envs\cinemo\Lib\site-packages\omegaconf\dictconfig.py", line 442, in _get_impl node = self._get_child( ^^^^^^^^^^^^^^^^ File "C:\Users\toyxy\ANACON~1\envs\cinemo\Lib\site-packages\omegaconf\basecontainer.py", line 73, in _get_child child = self._get_node( ^^^^^^^^^^^^^^^ File "C:\Users\toyxy\ANACON~1\envs\cinemo\Lib\site-packages\omegaconf\dictconfig.py", line 480, in _get_node raise ConfigKeyError(f"Missing key {key!s}") omegaconf.errors.ConfigAttributeError: Missing key ckpt full_key: ckpt object_type=dict Hi, thanks for your interest. I have fixed this bug. the parameter ckpt will not be used. You can follow this to change your code: https://github.com/maxin-cn/Cinemo/blob/d0e99565dc60084f6afc6c8767463ffc5337b082/pipelines/video_editing.py#L90
gharchive/issue
2024-08-07T17:29:34
2025-04-01T06:39:31.599501
{ "authors": [ "maxin-cn", "toyxyz" ], "repo": "maxin-cn/Cinemo", "url": "https://github.com/maxin-cn/Cinemo/issues/11", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
237314393
Added name to list Added name to list, please merge into master branch. Hey Kevin, I think this might the wrong repo. stevecif/git-demo eventually derives from this one but now lists a different class. Reach out to Steve to confirm. If you're sure you want to merge into this one, please restage your changes and squash any intermediary commits. I'll close this request in the meantime. Let me know if you need any help, Max Thanks. Will do. On Wed, Jun 21, 2017 at 8:52 PM, Max Vu notifications@github.com wrote: Hey Kevin, I think this might the wrong repo. stevecif/git-demo https://github.com/stevecif/git-demo eventually derives from this one but now lists a different class. Reach out to Steve to confirm. If you're sure you want to merge into this one, please restage your changes and squash any intermediary commits. I'll close this request in the meantime. Let me know if you need any help, Max — You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/maxvu/git-demo/pull/4#issuecomment-310245037, or mute the thread https://github.com/notifications/unsubscribe-auth/AbaZ-Xu6ueb1X8zV97QBbAm6J7D6t0aYks5sGbrrgaJpZM4OABph .
gharchive/pull-request
2017-06-20T19:10:45
2025-04-01T06:39:31.613780
{ "authors": [ "kevintmcg", "maxvu" ], "repo": "maxvu/git-demo", "url": "https://github.com/maxvu/git-demo/pull/4", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
170739520
Ansible playbook missing stuff Trying to run the ansible-playbook command in the README.md, it seems to be missing most of its roles: kaijen@daisy:~/ros_webrtc_ws/src/ros-webrtc/test/provision$ ansible-playbook -i 'localhost,' -c local -K dev.yml SUDO password: ERROR! the role 'chrome' was not found in /home/kaijen/research/ros_webrtc_ws/src/ros-webrtc/test/provision/roles:/home/kaijen/research/ros_webrtc_ws/src/ros-webrtc/test/provision:./roles The error appears to have been in '/home/kaijen/ros_webrtc_ws/src/ros-webrtc/test/provision/dev.yml': line 16, column 5, but may be elsewhere in the file depending on the exact syntax problem. The offending line appears to be: roles: {role: chrome, become: yes} ^ here @KaijenHsiao sorry, can u do: ~/code/ros-webrtc/test/provision$ ansible-galaxy install -r requirements.yml just before you run: ~/code/ros-webrtc/test/provision$ ansible-playbook -i 'localhost,' -c local -K dev.yml that should install dependent roles. i'll update the docs if that fixes the issue. Ah, yup, that fixed it. Thanks!
gharchive/issue
2016-08-11T20:34:24
2025-04-01T06:39:31.623046
{ "authors": [ "KaijenHsiao", "aisch" ], "repo": "mayfieldrobotics/ros-webrtc", "url": "https://github.com/mayfieldrobotics/ros-webrtc/issues/67", "license": "bsd-3-clause", "license_type": "permissive", "license_source": "bigquery" }
2126005311
Update README to make the wording friendlier This PR comes with a small rephrasing of the README's "Motivation" section, making the overall text simper and friendlier. Thanks for the pull request!
gharchive/pull-request
2024-02-08T20:20:01
2025-04-01T06:39:31.624035
{ "authors": [ "maypok86", "narqo" ], "repo": "maypok86/otter", "url": "https://github.com/maypok86/otter/pull/49", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
257650046
Echo doesn't work Hi! I've created a vulnerable server using Tomcat9, Struts2 REST Showcase webapp (v2.5.12) and Ubuntu 16.04 in Docker - and your exploit works like a charm (I can touch and rm files), however echo fails for me. The good old ysoserial has some issues with complex commands (pipes and I/O redirection) also, but since you're using echo in your example, maybe I'm just missing something - do you have any ideas how to fix it? Hi @2rcsanyi , Thanks for reporting! It seems that piping and I/O redirections are not working properly in the current exploit payload. I have updated the instructions and examples to use touch instead of echo. I would say it would be better to drop a file-based payload on the box, then execute it. It would be the easiest and most reliable way to do it in my opinion. Thanks again! Best, Mazin
gharchive/issue
2017-09-14T09:18:41
2025-04-01T06:39:31.633947
{ "authors": [ "2rcsanyi", "mazen160" ], "repo": "mazen160/struts-pwn_CVE-2017-9805", "url": "https://github.com/mazen160/struts-pwn_CVE-2017-9805/issues/4", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1170374435
[WCCMMUD] Majormud - Re-entering the game causes your character to drop half his stuff and lose some health Module Information Identifier WCCMMUD Module Name Majormud Version 1.11p Describe the bug Re-entering the game after a hangup causes your character to drop stuff on the group and lose some health. To Reproduce Steps to reproduce the behavior: Create a character, enter the game, go to the armor shop, buy some gear, and equip all of it. Ensure you are at full health. Click the hangup button in Megamud. (or force disconnect the session via whatever your client is) Reconnect and login to the game See a bunch of your gear on the ground. Also see you are missing some health. Expected behavior You should re-enter the game with the same amount of health as you had, and still have your loot equipped. Screenshots Before disconnect above, after disconnect below Software Information: OS: mbbsemu docker Telnet Client Majormud Nevermind. Realized that there is a hangup penalty configured in the WCCMMUD.MSG file.
gharchive/issue
2022-03-15T23:46:04
2025-04-01T06:39:31.649937
{ "authors": [ "fletcherm" ], "repo": "mbbsemu/MBBSEmu", "url": "https://github.com/mbbsemu/MBBSEmu/issues/556", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1198914278
🛑 Fanalitica is down In 943cd6c, Fanalitica (https://www.fanalitica.com) was down: HTTP code: 0 Response time: 0 ms Resolved: Fanalitica is back up in 0c3df13.
gharchive/issue
2022-04-10T07:09:05
2025-04-01T06:39:31.706946
{ "authors": [ "mbove77" ], "repo": "mbove77/upptime", "url": "https://github.com/mbove77/upptime/issues/134", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2180833229
[docs] Fill out the Home and Next Steps pages The docs site could use some love on the landing page and the Next Steps page. CC @aclayton555 for awareness Once we have the first iteration of the community curation docs up on the scroll viewport, would be good to have a "return to curation docs" button within the standards pages to streamline navigation back to these. Change "Contribute" tab to "Contribute to the Data Model"
gharchive/issue
2024-03-12T06:27:18
2025-04-01T06:39:31.724908
{ "authors": [ "aclayton555", "vpchung" ], "repo": "mc2-center/data-models", "url": "https://github.com/mc2-center/data-models/issues/92", "license": "CC0-1.0", "license_type": "permissive", "license_source": "github-api" }
467906874
Twilight Forest Clock Bed? I just hopped into Twilight Forest and a white Bed icon appeared over the game clock. I tried to see if it was an issue with the placement but it's attached directly to the clock. Is there a way to disable this icon? The bed indicates that it's nighttime and therefore possible to sleep. You're right, I should probably add a way to disable it.
gharchive/issue
2019-07-15T01:14:38
2025-04-01T06:39:31.790973
{ "authors": [ "BuddermanTheAmazing", "mccreery" ], "repo": "mccreery/better-hud", "url": "https://github.com/mccreery/better-hud/issues/69", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1502067975
🛑 ChatGenie Client API is down In 613852f, ChatGenie Client API ($CHATGENIE_CLIENT_API) was down: HTTP code: 0 Response time: 0 ms Resolved: ChatGenie Client API is back up in 87351cf.
gharchive/issue
2022-12-18T23:12:02
2025-04-01T06:39:31.793496
{ "authors": [ "mcdave029" ], "repo": "mcdave029/uptime-monitoring", "url": "https://github.com/mcdave029/uptime-monitoring/issues/11820", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1522541920
🛑 ChatGenie Client API is down In e7e02c6, ChatGenie Client API ($CHATGENIE_CLIENT_API) was down: HTTP code: 0 Response time: 0 ms Resolved: ChatGenie Client API is back up in 992a1c5.
gharchive/issue
2023-01-06T12:54:25
2025-04-01T06:39:31.795712
{ "authors": [ "mcdave029" ], "repo": "mcdave029/uptime-monitoring", "url": "https://github.com/mcdave029/uptime-monitoring/issues/12310", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1578380420
🛑 ChatGenie Client API is down In 6c9065c, ChatGenie Client API ($CHATGENIE_CLIENT_API) was down: HTTP code: 0 Response time: 0 ms Resolved: ChatGenie Client API is back up in 77069b8.
gharchive/issue
2023-02-09T18:15:12
2025-04-01T06:39:31.797959
{ "authors": [ "mcdave029" ], "repo": "mcdave029/uptime-monitoring", "url": "https://github.com/mcdave029/uptime-monitoring/issues/13212", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1597209785
🛑 ChatGenie Client API is down In 57e07d1, ChatGenie Client API ($CHATGENIE_CLIENT_API) was down: HTTP code: 0 Response time: 0 ms Resolved: ChatGenie Client API is back up in b544366.
gharchive/issue
2023-02-23T16:56:47
2025-04-01T06:39:31.800151
{ "authors": [ "mcdave029" ], "repo": "mcdave029/uptime-monitoring", "url": "https://github.com/mcdave029/uptime-monitoring/issues/13559", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1619977143
🛑 ChatGenie Client API is down In 012a1e9, ChatGenie Client API ($CHATGENIE_CLIENT_API) was down: HTTP code: 0 Response time: 0 ms Resolved: ChatGenie Client API is back up in 4054172.
gharchive/issue
2023-03-11T11:39:58
2025-04-01T06:39:31.802331
{ "authors": [ "mcdave029" ], "repo": "mcdave029/uptime-monitoring", "url": "https://github.com/mcdave029/uptime-monitoring/issues/13912", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1743839494
🛑 ChatGenie Client API is down In af05bfd, ChatGenie Client API ($CHATGENIE_CLIENT_API) was down: HTTP code: 0 Response time: 0 ms Resolved: ChatGenie Client API is back up in f3ca96a.
gharchive/issue
2023-06-06T13:08:21
2025-04-01T06:39:31.804727
{ "authors": [ "mcdave029" ], "repo": "mcdave029/uptime-monitoring", "url": "https://github.com/mcdave029/uptime-monitoring/issues/17393", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1784706859
🛑 ChatGenie MiniApp API is down In 1c0602e, ChatGenie MiniApp API ($CHATGENIE_BOT_API) was down: HTTP code: 404 Response time: 10224 ms Resolved: ChatGenie MiniApp API is back up in 37c0bca.
gharchive/issue
2023-07-02T16:11:27
2025-04-01T06:39:31.806914
{ "authors": [ "mcdave029" ], "repo": "mcdave029/uptime-monitoring", "url": "https://github.com/mcdave029/uptime-monitoring/issues/18427", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
976002593
🛑 ChatGenie Client API is down In 97d5a98, ChatGenie Client API ($CHATGENIE_CLIENT_API) was down: HTTP code: 0 Response time: 0 ms Resolved: ChatGenie Client API is back up in 1a0e67f.
gharchive/issue
2021-08-21T01:07:10
2025-04-01T06:39:31.809114
{ "authors": [ "mcdave029" ], "repo": "mcdave029/uptime-monitoring", "url": "https://github.com/mcdave029/uptime-monitoring/issues/1945", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1877733928
🛑 ChatGenie Client API is down In 81fb784, ChatGenie Client API ($CHATGENIE_CLIENT_API) was down: HTTP code: 0 Response time: 0 ms Resolved: ChatGenie Client API is back up in 3b05dd9 after 18 minutes.
gharchive/issue
2023-09-01T16:39:48
2025-04-01T06:39:31.811300
{ "authors": [ "mcdave029" ], "repo": "mcdave029/uptime-monitoring", "url": "https://github.com/mcdave029/uptime-monitoring/issues/20336", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1885614674
🛑 ChatGenie Client API is down In ae74db5, ChatGenie Client API ($CHATGENIE_CLIENT_API) was down: HTTP code: 0 Response time: 0 ms Resolved: ChatGenie Client API is back up in 4ad9633 after 9 minutes.
gharchive/issue
2023-09-07T10:28:34
2025-04-01T06:39:31.813621
{ "authors": [ "mcdave029" ], "repo": "mcdave029/uptime-monitoring", "url": "https://github.com/mcdave029/uptime-monitoring/issues/20508", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1899277452
🛑 ChatGenie Client API is down In 128adcb, ChatGenie Client API ($CHATGENIE_CLIENT_API) was down: HTTP code: 0 Response time: 0 ms Resolved: ChatGenie Client API is back up in ed54f52 after 9 minutes.
gharchive/issue
2023-09-16T03:36:24
2025-04-01T06:39:31.815940
{ "authors": [ "mcdave029" ], "repo": "mcdave029/uptime-monitoring", "url": "https://github.com/mcdave029/uptime-monitoring/issues/20772", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2010214933
🛑 ChatGenie Client API is down In 4468e2c, ChatGenie Client API ($CHATGENIE_CLIENT_API) was down: HTTP code: 0 Response time: 0 ms Resolved: ChatGenie Client API is back up in 322b985 after 24 minutes.
gharchive/issue
2023-11-24T20:55:59
2025-04-01T06:39:31.818408
{ "authors": [ "mcdave029" ], "repo": "mcdave029/uptime-monitoring", "url": "https://github.com/mcdave029/uptime-monitoring/issues/22803", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2044630105
🛑 ChatGenie Client API is down In ea678af, ChatGenie Client API ($CHATGENIE_CLIENT_API) was down: HTTP code: 0 Response time: 0 ms Resolved: ChatGenie Client API is back up in 072cff5 after 28 minutes.
gharchive/issue
2023-12-16T06:26:34
2025-04-01T06:39:31.820781
{ "authors": [ "mcdave029" ], "repo": "mcdave029/uptime-monitoring", "url": "https://github.com/mcdave029/uptime-monitoring/issues/23384", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
997770440
🛑 ChatGenie Client API is down In ab5c257, ChatGenie Client API ($CHATGENIE_CLIENT_API) was down: HTTP code: 0 Response time: 0 ms Resolved: ChatGenie Client API is back up in 5c1a77e.
gharchive/issue
2021-09-16T04:54:58
2025-04-01T06:39:31.822876
{ "authors": [ "mcdave029" ], "repo": "mcdave029/uptime-monitoring", "url": "https://github.com/mcdave029/uptime-monitoring/issues/2559", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2167908145
🛑 ChatGenie Client API is down In 6dfddb5, ChatGenie Client API ($CHATGENIE_CLIENT_API) was down: HTTP code: 0 Response time: 0 ms Resolved: ChatGenie Client API is back up in 217a795 after 35 minutes.
gharchive/issue
2024-03-04T22:34:03
2025-04-01T06:39:31.825192
{ "authors": [ "mcdave029" ], "repo": "mcdave029/uptime-monitoring", "url": "https://github.com/mcdave029/uptime-monitoring/issues/25660", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2309265286
🛑 ChatGenie Client API is down In 2fc29b2, ChatGenie Client API ($CHATGENIE_CLIENT_API) was down: HTTP code: 0 Response time: 0 ms Resolved: ChatGenie Client API is back up in 3b631f2 after 12 minutes.
gharchive/issue
2024-05-21T23:12:44
2025-04-01T06:39:31.827568
{ "authors": [ "mcdave029" ], "repo": "mcdave029/uptime-monitoring", "url": "https://github.com/mcdave029/uptime-monitoring/issues/27799", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2342750635
🛑 ChatGenie Client API is down In d921e3d, ChatGenie Client API ($CHATGENIE_CLIENT_API) was down: HTTP code: 0 Response time: 0 ms Resolved: ChatGenie Client API is back up in 17f1ce7 after 11 minutes.
gharchive/issue
2024-06-10T03:22:43
2025-04-01T06:39:31.829969
{ "authors": [ "mcdave029" ], "repo": "mcdave029/uptime-monitoring", "url": "https://github.com/mcdave029/uptime-monitoring/issues/28296", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2646797461
🛑 ChatGenie Client API is down In c342d2e, ChatGenie Client API ($CHATGENIE_CLIENT_API) was down: HTTP code: 0 Response time: 0 ms Resolved: ChatGenie Client API is back up in 03ed8f5 after 11 minutes.
gharchive/issue
2024-11-10T04:31:33
2025-04-01T06:39:31.832153
{ "authors": [ "mcdave029" ], "repo": "mcdave029/uptime-monitoring", "url": "https://github.com/mcdave029/uptime-monitoring/issues/32003", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1065411392
🛑 ChatGenie Client API is down In b7e74e1, ChatGenie Client API ($CHATGENIE_CLIENT_API) was down: HTTP code: 0 Response time: 0 ms Resolved: ChatGenie Client API is back up in 5403fc9.
gharchive/issue
2021-11-28T19:10:32
2025-04-01T06:39:31.834413
{ "authors": [ "mcdave029" ], "repo": "mcdave029/uptime-monitoring", "url": "https://github.com/mcdave029/uptime-monitoring/issues/4285", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1118132009
🛑 ChatGenie Client API is down In d2ff679, ChatGenie Client API ($CHATGENIE_CLIENT_API) was down: HTTP code: 0 Response time: 0 ms Resolved: ChatGenie Client API is back up in 6b716dc.
gharchive/issue
2022-01-29T09:28:32
2025-04-01T06:39:31.836623
{ "authors": [ "mcdave029" ], "repo": "mcdave029/uptime-monitoring", "url": "https://github.com/mcdave029/uptime-monitoring/issues/5645", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1130681628
🛑 ChatGenie Client API is down In 0a066b6, ChatGenie Client API ($CHATGENIE_CLIENT_API) was down: HTTP code: 0 Response time: 0 ms Resolved: ChatGenie Client API is back up in 546eace.
gharchive/issue
2022-02-10T18:54:11
2025-04-01T06:39:31.839063
{ "authors": [ "mcdave029" ], "repo": "mcdave029/uptime-monitoring", "url": "https://github.com/mcdave029/uptime-monitoring/issues/5941", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1202711302
🛑 ChatGenie Client API is down In 10d2c48, ChatGenie Client API ($CHATGENIE_CLIENT_API) was down: HTTP code: 0 Response time: 0 ms Resolved: ChatGenie Client API is back up in 09b717c.
gharchive/issue
2022-04-13T03:40:33
2025-04-01T06:39:31.841239
{ "authors": [ "mcdave029" ], "repo": "mcdave029/uptime-monitoring", "url": "https://github.com/mcdave029/uptime-monitoring/issues/7324", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1213273906
🛑 ChatGenie Client API is down In 8e9ff74, ChatGenie Client API ($CHATGENIE_CLIENT_API) was down: HTTP code: 0 Response time: 0 ms Resolved: ChatGenie Client API is back up in 8de2b31.
gharchive/issue
2022-04-23T11:12:37
2025-04-01T06:39:31.843380
{ "authors": [ "mcdave029" ], "repo": "mcdave029/uptime-monitoring", "url": "https://github.com/mcdave029/uptime-monitoring/issues/7536", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1230275483
🛑 ChatGenie Client API is down In 10a1639, ChatGenie Client API ($CHATGENIE_CLIENT_API) was down: HTTP code: 0 Response time: 0 ms Resolved: ChatGenie Client API is back up in 2683d60.
gharchive/issue
2022-05-09T21:33:44
2025-04-01T06:39:31.845531
{ "authors": [ "mcdave029" ], "repo": "mcdave029/uptime-monitoring", "url": "https://github.com/mcdave029/uptime-monitoring/issues/7851", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1300008723
🛑 ChatGenie Client API is down In 4762ca0, ChatGenie Client API ($CHATGENIE_CLIENT_API) was down: HTTP code: 0 Response time: 0 ms Resolved: ChatGenie Client API is back up in 5a98edd.
gharchive/issue
2022-07-10T20:23:50
2025-04-01T06:39:31.847661
{ "authors": [ "mcdave029" ], "repo": "mcdave029/uptime-monitoring", "url": "https://github.com/mcdave029/uptime-monitoring/issues/9022", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1328222686
🛑 ChatGenie Client API is down In e7ecd50, ChatGenie Client API ($CHATGENIE_CLIENT_API) was down: HTTP code: 0 Response time: 0 ms Resolved: ChatGenie Client API is back up in 84cfc5a.
gharchive/issue
2022-08-04T07:57:57
2025-04-01T06:39:31.850029
{ "authors": [ "mcdave029" ], "repo": "mcdave029/uptime-monitoring", "url": "https://github.com/mcdave029/uptime-monitoring/issues/9453", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1289394708
🛑 Captive Portal is down In 4fa48de, Captive Portal (https://captive.mcha.cloud/generate/android) was down: HTTP code: 403 Response time: 78 ms Resolved: Captive Portal is back up in c222104.
gharchive/issue
2022-06-29T23:15:20
2025-04-01T06:39:31.935171
{ "authors": [ "mochaaP" ], "repo": "mchaNetwork/status", "url": "https://github.com/mchaNetwork/status/issues/163", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2290251457
🛑 GitHub Mirror is down In ca2d8fb, GitHub Mirror (https://gh.chapro.xyz) was down: HTTP code: 500 Response time: 221 ms Resolved: GitHub Mirror is back up in 0bdf994 after 21 minutes.
gharchive/issue
2024-05-10T18:56:29
2025-04-01T06:39:31.937719
{ "authors": [ "mochaaP" ], "repo": "mchaNetwork/status", "url": "https://github.com/mchaNetwork/status/issues/620", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
168163713
Change method of notification/filter list The current method of adding names to the "hide common" and "notify" list is pretty cumbersome. I would suggest pulling up a list of all names and being able to check/uncheck names. If we could export and import lists, that would be helpful too as my list occasionally disappears. i agree, i had a long list of Pokemon ID#s that was EASY to copy/paste into view or hide. While some "do gooder" thought it was "cool" to modernize the UI, it doesn't work easily. You can't copy/paste a list either. I agree it is not very userfriendly. For me this is the most important feature of the map. @tinarazzburton @JaymerJaymer @jane0815 I'd recommend putting an issue in at https://github.com/AHAAAAAAA/PokemonGo-Map. This project simply makes that one easy to use, and I'm sure they'd welcome the feedback.
gharchive/issue
2016-07-28T18:25:53
2025-04-01T06:39:31.940164
{ "authors": [ "JaymerJaymer", "jane0815", "mchristopher", "tinarazzburton" ], "repo": "mchristopher/PokemonGo-DesktopMap", "url": "https://github.com/mchristopher/PokemonGo-DesktopMap/issues/354", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
2587342641
320: Add x to filter params for https://github.com/mcmonkeyprojects/SwarmUI/issues/320 uhhh also an x to clear should only show up if there's content to be cleared, not while empty closing for now, don't feel like fighting css. Turn it into a Draft?
gharchive/pull-request
2024-10-15T00:26:14
2025-04-01T06:39:31.944355
{ "authors": [ "AshtakaOOf", "HellerCommaA", "mcmonkey4eva" ], "repo": "mcmonkeyprojects/SwarmUI", "url": "https://github.com/mcmonkeyprojects/SwarmUI/pull/325", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1694068860
issue creted from python Default Description Automated comment - Wed May 3 13:23:13 2023
gharchive/issue
2023-05-03T13:21:13
2025-04-01T06:39:31.945179
{ "authors": [ "mcmpdemo" ], "repo": "mcmpdemoeng/jpetstore-kubernetes", "url": "https://github.com/mcmpdemoeng/jpetstore-kubernetes/issues/1054", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
179524571
pino cli discards not properly formatted log lines When piping pino in the console, pino discards the lines that are not formatted exactly as it expects. Bunyan instead simply prints those line not formatted. pull request: #95 Duplicate of #94
gharchive/issue
2016-09-27T15:19:49
2025-04-01T06:39:31.969512
{ "authors": [ "jsumners", "teomurgi" ], "repo": "mcollina/pino", "url": "https://github.com/mcollina/pino/issues/96", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
2559988606
I want to add more category Hi! I am Suvadip Sana, I want to work on this project ISSUE I think in shopping website has more categories, For now it has only 3 Suggestion I suggest for this categories for adding - Home & Living Beauty & Personal Care Sports & Fitness Books & Media Toys & Games Please assign me this issue if you think it's an issue need to fix @Suvadip-sana go ahead, but remember to upload AI-generated images. Please don't copy from Google or any other website. Could you please provide me the images? or shall i add myself. Could you please provide me the images? or shall i add myself. You can add yourself @Suvadip-sana Ok. Thank you. @mdazfar2 @thakuratul2 I add this three more row of categories for 9 new and essential categories that might be presnt on shopping site. Please see! If you are happy then I create a new branch and make a pull request. @Suvadip-sana That's amazing! Do one thing: for every three columns, add a load more button. After clicking it, more columns will become visible, and after clicking load more again, it will show another set. Hope you understand. hope you understand. Don't forget to join our official Discord server. And also follow us on Linkedin And please ⭐ our repo Ok. Try my best. https://github.com/user-attachments/assets/32c1bd3a-84a1-4d96-be5f-3ec4551756e8 Check it. Should you please give me max label for this. It take way more time. Actually I work on two issue. So Please! If you give me I would be very grateful! @Suvadip-sana, that's amazing! Please create a pull request and update your sync fork your branch. Could you please give me max label for this? Added @Suvadip-sana You miss hactoberfest label You miss hactoberfest label. please add this. Then i raise a pull request Done! Anything else which i forget please let me know Should you close this issue? Because it merge already!
gharchive/issue
2024-10-01T19:07:12
2025-04-01T06:39:31.996015
{ "authors": [ "Suvadip-sana", "mdazfar2" ], "repo": "mdazfar2/Ezyshop", "url": "https://github.com/mdazfar2/Ezyshop/issues/28", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2350930642
Feat: Adding particle.js in landing page Describe the feature Adding particle.js in landing page Add ScreenShots https://vincentgarreau.com/particles.js/ chek this Record [X] I agree to follow this project's Code of Conduct [X] I'm a GSSOC'24 contributor [X] I want to work on this issue @RamakrushnaBiswal go ahead 🚀 solved with PR #401
gharchive/issue
2024-06-13T11:44:10
2025-04-01T06:39:31.998752
{ "authors": [ "RamakrushnaBiswal", "mdazfar2" ], "repo": "mdazfar2/HelpOps-Hub", "url": "https://github.com/mdazfar2/HelpOps-Hub/issues/389", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1937367888
[enhancement TextField] ReadOnly mode Please, add readonly mode in TextField Copy. It exists now.
gharchive/issue
2023-10-11T10:04:19
2025-04-01T06:39:31.999759
{ "authors": [ "cafrisoft", "yiszza" ], "repo": "mdc-maui/mdc-maui", "url": "https://github.com/mdc-maui/mdc-maui/issues/32", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
277838178
Delta Value switches to +0.0 Delta value is correct for ~1 minute after a new reading, but then it becomes "+0.0". I deleted and reinstalled and now it's working again! The problem was that I had iosxdripreader sending SGV values directly to Nightscout and also to dexcom share servers. I had the bridge variable enabled so after fetching from dexcom share, both readings would be equal and the slope would become 0.0. Once I deleted the "bridge" variable from my ENABLE line in Heroku, everything worked great. Thank you to @miguelkennedy for figuring this out!
gharchive/issue
2017-11-29T17:18:35
2025-04-01T06:39:32.002587
{ "authors": [ "bmammon" ], "repo": "mddub/nightscout-osx-menubar", "url": "https://github.com/mddub/nightscout-osx-menubar/issues/10", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
2060732226
[BUG] Canvas Group: Moving note outside all groups breaks the update feature Obsidian v1.5.3 Metadata-Menu 0.6.11 priority is an inherited canvas-group field Note is inside of a group in the canvas and the priority field has the correct group name: Move note outside the group Move note back into a group - field is not updated and console shows no error Sometimes it works, sometimes it doesn't. It's real strange Updated description: removed the console error, as that was caused by something else. There is no error shown in the console now. Sometimes it works, sometimes not.
gharchive/issue
2023-12-30T12:21:55
2025-04-01T06:39:32.005986
{ "authors": [ "sector101010" ], "repo": "mdelobelle/metadatamenu", "url": "https://github.com/mdelobelle/metadatamenu/issues/504", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1587881387
Feature request : Credits detection auto skip Hi Plex has released the credit detection : https://support.plex.tv/articles/credits-detection/ Any chance you could implement the auto skip like with the intro ? Thanks a lot for all your work Already supported. Just add "credits" to your tags Fantastic ! Thanks a lot
gharchive/issue
2023-02-16T15:23:45
2025-04-01T06:39:32.007825
{ "authors": [ "mdhiggins", "tchirou" ], "repo": "mdhiggins/PlexAutoSkip", "url": "https://github.com/mdhiggins/PlexAutoSkip/issues/31", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1074375153
How to use with GPU? Hi everyone, I've been looking for information on using sickbeard_mp4_automator on a GPU server. The machine is Linux Ubuntu 18 + RTX 2070, could someone guide me how to configure? Lots of discussion on previous issues about this, just search for nvenc for closed issues on this repo to see what other people have done First step is you'll need to understand hardware decoding / encoding for FFMPEG to determine what options you want since this is actually what drives everything https://trac.ffmpeg.org/wiki/HWAccelIntro and specifically additional documentation for NVIDIA https://docs.nvidia.com/video-technologies/video-codec-sdk/ffmpeg-with-nvidia-gpu/ Once you have a working build of FFMPEG and can get hardware encoding working manually then you're ready to configure the script to automate it The main options you'll want for decoding are hwaccels hwaccel-decoders hwdevices hwaccel-output-format and for encoding you'll just want to set your codec to one of the nvenc encoders depending on if you want h264 or hevc/h265 So just set your first codec to h264_nvenc or hevc_nvenc, though you should include hevc or h264 after that so that remuxing can still be enabled Example [Video] codec = hevc_nvenc, hevc That should be more than enough to get you started https://github.com/mdhiggins/sickbeard_mp4_automator/issues/1444 https://github.com/mdhiggins/sickbeard_mp4_automator/issues/1499 https://github.com/mdhiggins/sickbeard_mp4_automator/issues/1463 https://github.com/mdhiggins/sickbeard_mp4_automator/issues/1421 Very grateful for the help.
gharchive/issue
2021-12-08T12:48:36
2025-04-01T06:39:32.013256
{ "authors": [ "kennfoxx", "mdhiggins" ], "repo": "mdhiggins/sickbeard_mp4_automator", "url": "https://github.com/mdhiggins/sickbeard_mp4_automator/issues/1503", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
372074231
manual.py: Exception while retrieving poster "NoneType" object has no attribute 'strip'. Hello, I'm seeing this error when running manual.py. Is this related to the download-artwork option in autoProcess.ini? I have that set to Thumbnail. Can you post the whole error?
gharchive/issue
2018-10-19T18:48:11
2025-04-01T06:39:32.015027
{ "authors": [ "jeff47", "mdhiggins" ], "repo": "mdhiggins/sickbeard_mp4_automator", "url": "https://github.com/mdhiggins/sickbeard_mp4_automator/issues/944", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
355329114
Work on content for Hack on MDN a11y event Acceptance criteria [x] List of suggested tasks and other supporting material produced for starting Tasks If relevant, you can make a checklist for tasks. [ ] Get existing material from Janet. [ ] Look over Estelle's a11y content audit. [ ] Refine material and produce list of suggested tasks for working on in the sprint. [ ] Other supporting material researched; what else do we need? Ask Florian what he did for the BCD HoM. Closing this because the Acceptance Criteria is met.
gharchive/issue
2018-08-29T20:54:05
2025-04-01T06:39:32.257270
{ "authors": [ "chrisdavidmills", "jmswisher" ], "repo": "mdn/sprints", "url": "https://github.com/mdn/sprints/issues/450", "license": "CC0-1.0", "license_type": "permissive", "license_source": "github-api" }
195595219
HTML Output for White Bread Nearing completion so this PR will help to review. Code looks 👍 so far. Could you add something to the README about how to switch to this kind of output? Certainly!
gharchive/pull-request
2016-12-14T17:31:59
2025-04-01T06:39:32.289059
{ "authors": [ "Dzol", "meadsteve" ], "repo": "meadsteve/white-bread", "url": "https://github.com/meadsteve/white-bread/pull/81", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
108483754
Node-pre-gyp package? @lirantal Where are we using the node-pre-gyp package? @ilanbiala maybe you should ask Cody: 5d5d1b7b (Cody Daig 2015-07-17 01:09:08 -0700 50) "node-pre-gyp": "0.6.4", @codydaig do you know what the node-pre-gyp package is doing? I don't see it being required anywhere. Running npm ls shows it being required in a couple of places, notably: ├─┬ connect-mongo@0.8.1 │ ├─┬ debug@2.2.0 │ │ └── ms@0.7.1 │ ├── depd@1.0.1 │ └─┬ mongodb@2.0.31 │ ├─┬ mongodb-core@1.1.26 │ │ ├─┬ bson@0.3.2 │ │ │ └─┬ bson-ext@0.1.6 │ │ │ ├── nan@1.8.4 │ │ │ └─┬ node-pre-gyp@0.6.4 @simison that's fine that it is depended on, but there is no reason to have it as a top level dependency of our app. @ilanbiala Sorry for the delay. That came a PR I did to get rid of the npm warnings for the future upgrade of npm 3. It had something to do with dependency resolution. It's not used anywhere though, do you remember the PR? @ilanbiala just submit a PR to remove it and we'll see if it fails or not in the CI :) #1001
gharchive/issue
2015-09-26T17:53:13
2025-04-01T06:39:32.292396
{ "authors": [ "codydaig", "ilanbiala", "lirantal", "simison" ], "repo": "meanjs/mean", "url": "https://github.com/meanjs/mean/issues/938", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
187084707
Use jq for pretty printing Pipes json through jq for pretty printing instead of using console.dir, so we get valid json output with quotes and such. Defaults to printing in color if stdout is a TTY, but you can override with prettyPrint(obj, {color: false}) Will add the flag for pretty printing per @vyzo's suggestion; do we want it to be enabled or disabled by default? Pretty output by default seems nicer for end users... @denisnazarov, thoughts? I like pretty print by default @parkan what do you think fine by me either way.
gharchive/pull-request
2016-11-03T15:01:20
2025-04-01T06:39:32.309993
{ "authors": [ "denisnazarov", "vyzo", "yusefnapora" ], "repo": "mediachain/aleph", "url": "https://github.com/mediachain/aleph/pull/66", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
2006355898
Login issue We setup self hosted solution and ran on ubuntu. On login page we got stuck, the error says Cannot read properties of undefined (reading 'digest') We're have same issue on self-hosted installation in Google Cloud. What was the resolution? This issue is because of the following call made on Sign in: crypto.subtle.digest('SHA-256', new TextEncoder().encode(str)); If you are not accessing by http://localhost then you should configure to use https to be able to login, because most browsers implementations requires a secure origin in order to allow using WebCrypto API:
gharchive/issue
2023-11-22T13:35:08
2025-04-01T06:39:32.331129
{ "authors": [ "Mindbowser", "bnapora", "luis901101" ], "repo": "medplum/medplum", "url": "https://github.com/medplum/medplum/issues/3363", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1881598201
Disable transitions on theme toggle I've noticed that when switching to light mode and vice versa, the page transition causes the colors of the components to change at different times. This might be caused by varying transition values for each component. There's a simple and easy way to solve this problem, and this article explains it quite effectively. Link: https://paco.me/writing/disable-theme-transitions Looks interesting, could you spare a moment to submit a pull request?
gharchive/issue
2023-09-05T09:39:03
2025-04-01T06:39:32.342946
{ "authors": [ "medyo", "yefreescoding" ], "repo": "medyo/hackertab.dev", "url": "https://github.com/medyo/hackertab.dev/issues/163", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
308963461
Franz 5.0.0. beta drives my MBP fans mad franz 5.0.0. beta drives my 2015er retina mbp fans mad. has anybody a similiar issue? For me the same. Franz 5.0.0-beta.17.834 macOS 10.13.4 Beta(17E197a) Running Services with Franz: WhatsApp, Telegram, Discord, Github, Skype and Riot. CPU load of Franz: 20% the whole time its open. some peaks above if I switch services. I'm still seeing this issue. Mac OS 10.14 (18A391), 3.1 GHz Intel Core i7, 16 GB 1867 MHz DDR3 Franz 5.0.0-beta.24.1110 CPU usage from activity monitor: Franz Helper: 52.5% Franz Helper: 29.2% Franz: 27.8% Franz Helper: 26.3% Franz Helper: 18.2% Services used: Messenger, WhatsApp, 4x Slack It basically overloads my whole system, blocking almost any action, slowing down all programs. Franz has become useless for me, because of this...
gharchive/issue
2018-03-27T13:14:04
2025-04-01T06:39:32.363603
{ "authors": [ "pdellaert", "rygos", "sublabat" ], "repo": "meetfranz/franz", "url": "https://github.com/meetfranz/franz/issues/850", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
275358923
[Deploy] FastMail Service FastMail Link to your repository https://github.com/foss-haas/franz-fastmail Additional Information A version compatible with franz4 also exists in a separate branch. Deployed, thanks for your contribution. :tada: Thank you for your awesome work on Franz!
gharchive/issue
2017-11-20T13:39:42
2025-04-01T06:39:32.366012
{ "authors": [ "adlk", "pluma" ], "repo": "meetfranz/plugins", "url": "https://github.com/meetfranz/plugins/issues/59", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1708679006
I use the colab version and try to run the example, but failed Note that --use-env is set by default in torchrun. If your script expects --local-rank argument to be set, please change it to read from os.environ['LOCAL_RANK'] instead. See https://pytorch.org/docs/stable/distributed.html#launch-utility for further instructions warnings.warn( usage: train.py [-h] [--world_size WORLD_SIZE] [--local_rank LOCAL_RANK] [--dataloader_imgsize DATALOADER_IMGSIZE] [--batch_size BATCH_SIZE] [--model_name MODEL_NAME] [--dataloaders DATALOADERS] [--mode {train,test}] [--test_input_person_images TEST_INPUT_PERSON_IMAGES] [--test_input_poses_images TEST_INPUT_POSES_IMAGES] [--test_checkpoint_dir TEST_CHECKPOINT_DIR] [--test_output_dir TEST_OUTPUT_DIR] [--test_output_video TEST_OUTPUT_VIDEO] [--test_output_udp TEST_OUTPUT_UDP] [--test_pose_use_parser_udp TEST_POSE_USE_PARSER_UDP] train.py: error: unrecognized arguments: --local-rank=0 ERROR:torch.distributed.elastic.multiprocessing.api:failed (exitcode: 2) local_rank: 0 (pid: 993) of binary: /usr/bin/python3 Traceback (most recent call last): File "/usr/lib/python3.10/runpy.py", line 196, in _run_module_as_main return _run_code(code, main_globals, None, File "/usr/lib/python3.10/runpy.py", line 86, in _run_code exec(code, run_globals) File "/usr/local/lib/python3.10/dist-packages/torch/distributed/launch.py", line 196, in main() File "/usr/local/lib/python3.10/dist-packages/torch/distributed/launch.py", line 192, in main launch(args) File "/usr/local/lib/python3.10/dist-packages/torch/distributed/launch.py", line 177, in launch run(args) File "/usr/local/lib/python3.10/dist-packages/torch/distributed/run.py", line 785, in run elastic_launch( File "/usr/local/lib/python3.10/dist-packages/torch/distributed/launcher/api.py", line 134, in call return launch_agent(self._config, self._entrypoint, list(args)) File "/usr/local/lib/python3.10/dist-packages/torch/distributed/launcher/api.py", line 250, in launch_agent raise ChildFailedError( torch.distributed.elastic.multiprocessing.errors.ChildFailedError: train.py FAILED Failures: <NO_OTHER_FAILURES> Root Cause (first observed failure): [0]: time : 2023-05-13_16:38:58 host : 38b080a41a03 rank : 0 (local_rank: 0) exitcode : 2 (pid: 993) error_file: <N/A> traceback : To enable traceback see: https://pytorch.org/docs/stable/elastic/errors.html 抱歉,由于部分作者只对水文章感兴趣,v1已经没人维护了。建议改用 https://github.com/transpchan/Live3D-v2 。
gharchive/issue
2023-05-13T16:41:13
2025-04-01T06:39:32.383290
{ "authors": [ "TentacleCat", "transpchan" ], "repo": "megvii-research/IJCAI2023-CoNR", "url": "https://github.com/megvii-research/IJCAI2023-CoNR/issues/13", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
877431608
Cloudfront rate-limiting not handled Cowin APIs are behind a CloudFront CDN that after a certain number/frequency of requests blocks the device for some time. I'm not sure how long since it only happened to me once, but it is likely around half an hour without any requests. When this limit is exceeded, all GET requests to the API return a 403 Forbidden error 403 Forbidden error is not handled by your client. There is no message or alert that a block has been imposed for a while and the user should try again in a while. To the user it seems like the site is running as expected and refreshing at the defined frequency. It's possible that if they keep the tab open the rate limit will persist. This is an error from open APIs which we are using to fetch data. We are currently using useQuery which is taking care of retry logic for API. Although we will add try...catch block to avoid error If this happens again let us know. Thanks for pointing that out. Hi, This issue is fixed in this commit https://github.com/mehulcse/findmyslot/commit/42cb4353cf2a2458986c8cc7ee7287254bc3c309
gharchive/issue
2021-05-06T12:13:09
2025-04-01T06:39:32.434968
{ "authors": [ "RonitRay", "jjmanglani01" ], "repo": "mehulcse/findmyslot", "url": "https://github.com/mehulcse/findmyslot/issues/3", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1067358457
Add missing searchable_attributes.total metric to the Settings Updated telemetry event According to the telemetry specification, it should send searchable_attributes.total when the Settings Updated occurs. Implemented by https://github.com/meilisearch/MeiliSearch/pull/1941
gharchive/issue
2021-11-30T15:17:56
2025-04-01T06:39:32.440867
{ "authors": [ "gmourier" ], "repo": "meilisearch/MeiliSearch", "url": "https://github.com/meilisearch/MeiliSearch/issues/1948", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1406813576
Add Laravel 9/Scout tutorial to Community Guides Hope all is well; a somewhat recent, beginner-friendly Laravel 9/Scout tutorial. Cheers. Pull Request Related issue Fixes #<issue_number> What does this PR do? Add new tutorial to Community Guides PR checklist Please check if your PR fulfills the following requirements: [x ] Does this PR fix an existing issue, or have you listed the changes applied in the PR description (and why they are needed)? [x] Have you read the contributing guidelines? [x] Have you made sure that the title is accurate and descriptive of the changes? Thank you so much for contributing to Meilisearch! Thanks for the addition @dolcy If you are participating in Hacktoberfest, and you would like to receive some swag from Meilisearch too, please complete this form. Hey there @ferdi05 - thank you!
gharchive/pull-request
2022-10-12T21:09:28
2025-04-01T06:39:32.444928
{ "authors": [ "dolcy", "ferdi05" ], "repo": "meilisearch/awesome-meilisearch", "url": "https://github.com/meilisearch/awesome-meilisearch/pull/24", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1500926210
Case mismatch between loaded and declared class names: "MeiliSearch\Client" vs "Meilisearch\Client". Description See latest release of https://github.com/meilisearch/meilisearch-php/releases/tag/v0.26.1 Environment (please complete the following information): Meilisearch version: 0.26.1 meilisearch-symfony version: 0.9 symfony 6.2.2 Good lord, Symfony is applying custom logic to namespace and class casings 🙄 @mmachatschek can you give a look at #217? I'm also thinking of a way to handle the meili_search.yaml/meilisearch.yml change to not expose it as a breaking change. The bug is fixed and released as 0.10.0 unfortunately, I didn't have enough time to understand better how I could solve the meili_search: to meilisearch: root key in the config file automatically. If someone does, I would love to learn that :) Sorry for the inconvenience.
gharchive/issue
2022-12-16T21:59:04
2025-04-01T06:39:32.459565
{ "authors": [ "brunoocasali", "mmachatschek", "wucherpfennig" ], "repo": "meilisearch/meilisearch-symfony", "url": "https://github.com/meilisearch/meilisearch-symfony/issues/215", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1587274835
Not finding documents that has word occurring on both documents Describe the bug I have 2 documents and when I try to query one word from each document, only the first word will trigger document retrieval. I am not sure if this is a fundamental understanding on my part on the relevant document, but I have asked around my colleague and all says the correct results should be both documents will display. Expected behavior When I query for jet and Satellite I am expecting 2 documents to be returned. Screenshots Meilisearch version: v1.0.1 This might be my own misunderstanding of how searching is supposed to work in enterprise/elasticsearch/Algolia/Meilisearch vs the Google Public Internet way of searching. Because when google, the result might be vast and it is showing all documents with "jet" word in it as well as with "satellite" word in it. Hello @mech The results you got are expected, it's not a bug 😊 Indeed, Meilisearch does prefix search, like Algolia. It means, when you type "jets satellite" Meilisearch first tries to retrieve documents containing jets AND satellite, and then, documents with only jets. This is the behavior of one of the ranking rules: the word ranking rules. Unfortunately, you cannot disable this behavior at the moment. You can customize the relevancy in Meilisearch by using matchingStrategy parameter during the search, but so far, you cannot ask for Meilisearch to retrieve all documents containing at least one word of each query word. Pinging our product team @gmourier for your information 😇 Want to ask further. The ordering is like so: jets AND satellite (will find) jets (will still find) satellite and sequence wording (will no longer try to find) The point 3, am I right? If you type jets satellite, yes. I'm not sure we are meaning the same thing for the third point, so let me give you a second example with 3 words. If you type `Hello everyone here", Meilisearch will try to find First, documents containing hello AND everyone AND here Then, documents containing hello AND everyone Finally documents containing hello If you change matchingStrategy to all (default is last and leads to the behavior I described above) Meilisearch will only retrieve documents containing hello AND everyone AND here, nothing else. Tks @curquiza, now I can see why it is called prefix search 😀. Tks for the explanation.
gharchive/issue
2023-02-16T08:48:50
2025-04-01T06:39:32.468350
{ "authors": [ "curquiza", "mech" ], "repo": "meilisearch/meilisearch", "url": "https://github.com/meilisearch/meilisearch/issues/3503", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2300719164
[v1.8.0] Relevancy changes Motivation Implementing https://github.com/meilisearch/meilisearch/issues/4484 gives us the ability to finally untie the importance (or weight) of each field with their order. Usage Nothing to do. Changes When no searchable attributes are declared When no searchable attributes are declared, all the fields have the same importance instead of randomly giving more importance to the field we've encountered « the most early » in the life of the index. This means that before this PR, send the following json: [ { "id": 0, "name": "kefir", "color": "white" }, { "id": 1, "name": "white", "last name": "spirit" } ] Would make the field name more important than the field color or last name. This means that searching for white would make the document 1 automatically higher ranked than the document 0. After this PR, all the fields have the same weight, and none are considered more important than others. When a nested field is made searchable The second behavior change that happened with this PR is in the case you're sending this document, for example: { "id": 0, "name": "tamo", "doggo": { "name": "kefir", "surname": "le kef" }, "catto": "gromez" } Previously, defining the searchable attributes as: ["tamo", "doggo", "catto"] was actually defining the « real » searchable attributes in the engine as: ["tamo", "doggo", "catto", "doggo.name", "doggo.surname"], which means that doggo.name and doggo.surname were NOT where the user expected them and had completely different weights than doggo. In this PR all the weights have been unified, and the « real » searchable fields look like this: [ "tamo", "doggo", "doggo.name", "doggo.surname", "catto"] ^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^ Weight 0 Weight 1 Weight 2 Impacted teams Implemented in https://github.com/meilisearch/meilisearch/pull/4631
gharchive/issue
2024-05-16T15:28:23
2025-04-01T06:39:32.474782
{ "authors": [ "irevoire" ], "repo": "meilisearch/meilisearch", "url": "https://github.com/meilisearch/meilisearch/issues/4639", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
541740606
update button does not work(bug) Describe the bug When snapshot does not match trying to update it from cypress test runner does not work To Reproduce Steps to reproduce the behavior: Click update snapshot button Expected behavior Snapshot is updated Desktop (please complete the following information): OS: Linux & OSX Cypress Version: latest Additional context Add any other context about the problem here. I can't reproduce this, I am also working in OSX. No errors on the command line? I ran into a similar problem. While setting up the plugin i added the following properties in cypress config "env": { ... "cypress-plugin-snapshots": { "imageConfig": { "threshold": 0.1, "thresholdType": "pixel" }, "serverEnabled": true, "serverHost": "localhost", "serverPort": 2121, } }, In this case the websocket connection string is missing the token. When pressing the update button the save snapshot call just fails silently. Hope that helps. It's not documented anywhere but for me it worked to add token property to the config. No idea why but it's something I found from looking at the code. "serverEnabled": true, "serverHost": "localhost", "serverPort": 2121, "token": "1234" It's not documented anywhere but for me it worked to add token property to the config. No idea why but it's something I found from looking at the code. "serverEnabled": true, "serverHost": "localhost", "serverPort": 2121, "token": "1234"
gharchive/issue
2019-12-23T12:48:05
2025-04-01T06:39:32.479944
{ "authors": [ "herrmannplatz", "meinaart", "olaf89", "omelhoro" ], "repo": "meinaart/cypress-plugin-snapshots", "url": "https://github.com/meinaart/cypress-plugin-snapshots/issues/85", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1580359576
Rename old users In the old website, we did not have usernames, and we kindly asked users to add their names. Yet, when we migrated the users from the old website, we renamed them 'a user from the old website' + their old ID. We no longer want that, but rather want to use their own names. This task is about creating a script that updates user names. If the user name contains 'משתמש מהאתר הישן', then we should rename it to their private name if exists. If not, we should rename them just 'user' + id. For example, the following name משתמש מהאתר הישן 533 will be renamed to משתמש 533 Hey there! To address the issue, I have a few questions regarding the script's placement and structure. Where should we place the script within the "meirim-org/meirim" project? Can it function independently, or should it be integrated into the meirim's CLI? In terms of implementation, should the script be a playbook with SQL queries, or a standalone script that connects to the database and performs the necessary operations? Lastly, I'd like to confirm if Python is an acceptable language for this task. Thanks in advance for your clarification! Hi @dror-ziv thanks for reaching out. We use Knex as a migration manager, the migrations files are at server/migration and are generated automatically by knex commands. The script IMO should be a SQL query, and you may see examples on the other migrations files there. For development, as well as for migrations, we use JS. We're here if you have more questions
gharchive/issue
2023-02-10T21:27:45
2025-04-01T06:39:32.484114
{ "authors": [ "GalGend", "dror-ziv" ], "repo": "meirim-org/meirim", "url": "https://github.com/meirim-org/meirim/issues/651", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
113130096
Error when copying a file that is above x Mb I believe this is more or less an issue with memory allocation (and running out of memory) than with svdt it's self. However, assuming we know the memory allocation limit, what's to stop svdt from only allocating (and then copying) those bytes, and then releasing (or reusing) the allocated memory recursively for the length of the file being copied? Additionally, I do not know when the error begins, but it is between 1.1 Mb -> 10 Mb, since 1 Mb works fine, but 10 causes svdt to throw an error. I'm actually a little surprised that you're able to even copy a file that large. 1 MB or 1 Mb? What game are you testing this under? I wouldn't expect many games to even allocate that much space for the save data partition. 1 Megabyte, I tested with Mario Kart 7 (it has a decent amount of storage because of the replays folder.) When I tried the 10 Megabyte file, it causes SVDT to "crash" (tell me I have to exit due to an error), but when relaunched shows the file. I have not tested to see if the 10 MB file is 1:1 correct. I used Standard Units for my sizes (1 Megabyte = 1 * 10^6.) That is quite odd. Last time I tested trying to move too much data, usually the changes didn't end up sticking. It would be interesting to see if the 10 MB file is empty, partially copied, or just plain broken. I'll check after I finish dumping a friend's dead HDD. Also, Sm4sh is 100% working, so :smile: File is copied, but no bytes are written. Does SVDT alloc the entire sizeof the file? Additionally, is it possible to detect free space in the game cart? I think I've figured out a basic way of cart size. Assuming they're all the same per game, we could find the cart size ourselves using recursion. Then store that in a local db used by SVDT (via the title id) and simply compare bytes on cart vs total allowed bytes on cart to get the free bytes. I think we use ctrulib functions (i.e. FS:USER functions) when actually writing files to the save data, but you're right—we do malloc the entire size of the file (within copyFile() in main.c). That's probably not the smartest thing to do, but there should be enough memory available to us to copy most save files. Given that the 10 MB file on save data is empty, I'd say it's just that you ran out of free space—the OpenFile call probably succeeded, and then the WriteFile call probably failed. The save data size is probably the same for any given title. Are you saying to keep writing bytes to the save data until we run out of free space? It seems rather time-intensive to do this for every game. Write 100mb -> on fail move to Write 10mb -> on fail move to Write 1mb -> on fail move go Etc. Until we get to 1byte Sure, but doing this for every game seems a bit much. Keep in mind too that every time you run out of space, the filesystem becomes inoperable and svdt has to restart to access the filesystem properly again. There must be a less brute-force way to do this. @suloku, do you know if we can use FS:GetFreeBytes on the save data archive? [Not able to test it myself at the moment.] I can try to build this myself, If I clone the source directory (and make file) and add the FS:GetFreeBytes snippet, I can compile correct? I have the 3DS toolchain, but my linux box only has make and gcc/g++ If you'd like to clone the git repo in full, and you already have ctrulib, devkitPro, etc., then it should work. Honestly, though, I'd recommend making a smaller test program if all you want is to test that snippet. Can't provide too much more support at the moment—sorry! About fs:getfreebytes, I guess it should work? Profi2000 thinks so too. I'll try later if substituteCS doesn't do it before me. ps: zlib dependency is for pokemon rumble world de/compresion. Posting this because probably edits don't appear as notifications (see my previous comment) Ah, I guess the zlib dependency is something I added on—sorry. I think I confused it with the blowfish stuff, which is in source rather than as another library. 512-byte blocks makes sense (encryption scheme? flash memory sector size? either way ...), so perhaps we should indicate space used/available in multiples of 512 B. I made some test, they really seem to be 512 byte blocks. 512B blocks might be either because of The encryption method is using chunks of 512 bytes (and is padding data), which would be weird since it looks like it's Blowfish, and that uses 8 byte blocks. Or the Cartridge FS format is just really whack? Eitherway, 512B sizes are better since each cartridge is guaranteed to have at least 512 * n where n = ceiling(totalsize / 512)
gharchive/issue
2015-10-24T02:38:02
2025-04-01T06:39:32.501636
{ "authors": [ "SubstituteCS", "meladroit", "suloku" ], "repo": "meladroit/svdt", "url": "https://github.com/meladroit/svdt/issues/17", "license": "isc", "license_type": "permissive", "license_source": "bigquery" }
206259256
MIT license? what's the license for this repo? i'm willing to <-> integrate between my imgui wrapper which also boasts software rendering support, but I need the license to be MIT so I can reuse this for my dayjob I've been meaning to put up the MIT license for the project. @dpethes , do you have any objections to that? You and I are the only contributors at this point. Fine by me. Thanks a lot! Um, and could you please add the license file then? :) @wizzard0 Yes, sorry 😄. I will add it later today. https://github.com/mellinoe/ImGui.NET/commit/7cc420b16bc540beb0930714239b7437dad2d5e5
gharchive/issue
2017-02-08T16:59:15
2025-04-01T06:39:32.509842
{ "authors": [ "dpethes", "mellinoe", "wizzard0" ], "repo": "mellinoe/ImGui.NET", "url": "https://github.com/mellinoe/ImGui.NET/issues/8", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
27666348
古いコンパイラを隠す どんな風に隠すかが問題。 エディタを read only にしておいて、コンパイラを選択すると編集できるようにする permlink から飛んだときだけそのコンパイラを表示させる 言語別に分けたのでもういいや
gharchive/issue
2014-02-16T08:24:52
2025-04-01T06:39:32.541132
{ "authors": [ "melpon" ], "repo": "melpon/wandbox", "url": "https://github.com/melpon/wandbox/issues/86", "license": "BSL-1.0", "license_type": "permissive", "license_source": "github-api" }
1849449240
Clarified the warning in introduction.md Updated the under construction warning in the introduction based on this info: https://discord.com/channels/1116682155809067049/1140452054888873994 Once version 1.0 is released, semantic versioning will be followed, (limiting breaking changes to major releases). Until then, breaking changes might happen on non-major releases. ^ this - we're prerelease. We do bump minor/patch versions. So right now, minor could consist of a breaking change where patch changes should not. This makes it a lot clearer where breaking changes might happens and what the next goalpost is. Great idea. Thank you!
gharchive/pull-request
2023-08-14T10:03:36
2025-04-01T06:39:32.543438
{ "authors": [ "TGlide", "ivoilic" ], "repo": "melt-ui/melt-ui", "url": "https://github.com/melt-ui/melt-ui/pull/384", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1251992274
Add pages for taps, targets, and singer on the hub Migrated from GitLab: https://gitlab.com/meltano/hub/-/issues/21 Originally created by @tayloramurphy on 2021-05-04 23:41:26 We want pages for the following: [x] hub.meltano.com/taps [x] hub.meltano.com/targets [x] hub.meltano.com/singer [x] hub.meltano.com/singer/spec The /singer page will focus on our commitment to the Singer ecosystem and community. We will detail: [x] The Open API we intend to maintain for broader community access to the clean yaml definitions of every tap and target we find [x] Link to the spec [x] Link to the JSON schemas [x] Discuss the Tap and Target SDK with links to resources on those [x] Link to the /taps and /targets pages The /taps and /targets page will: [x] list all of the available taps/targets we're aware of [x] detail how to do a basic pip install [x] give easy links to the YAML definition and how to contribute to it [x] Link to JSON schema [ ] Have a Table of Contents to make Settings more discoverable: https://gitlab.com/meltano/hub/-/issues/30 View 10 previous comments from the original issue on GitLab
gharchive/issue
2021-05-04T23:41:26
2025-04-01T06:39:32.553293
{ "authors": [ "MeltyBot" ], "repo": "meltano/hub", "url": "https://github.com/meltano/hub/issues/20", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1337564225
refactor(targets): Allow overriding the bulk insert statement in SQLSink Small improvement towards #9 Scratch my comment about the PR title. It looks great as is. I was reading from my mobile app and was looking in the wrong place.
gharchive/pull-request
2022-08-12T18:22:32
2025-04-01T06:39:32.554400
{ "authors": [ "aaronsteers", "edgarrmondragon" ], "repo": "meltano/sdk", "url": "https://github.com/meltano/sdk/pull/908", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1071342758
Add mysql install step to macOS setup instructions Hey there, just getting the backend running locally and had to install mysql for the pip install to work. Not sure if universal but some updated docs in case anyone else hits it. Perfect, thank-you!
gharchive/pull-request
2021-12-05T01:01:55
2025-04-01T06:39:32.555300
{ "authors": [ "jabelone", "mshafer" ], "repo": "membermatters/MemberMatters", "url": "https://github.com/membermatters/MemberMatters/pull/151", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
524359674
Fix EOS and unlinking in bins problems This PR fixes: Wrong elements' behaviour on duplicated EndOfStream events Not notifying parents about EndOfStream event Not generating EndOfStream when elements went from :playing to :prepared @mat-hek also tests from test/membrane/integration/bin_test.exs cover some of this (especially the communication of EOS to parents). More tests are quite difficult to accomplish as this is a fix for RC. @kanes115 if they cover, why didn't they catch that? maybe they need a fix? I don't see any RC in the description of the PR Yea, okey, so there's part of the issue that is RC (receiving duplicate EOS events) and not RC part (not generating EOS in the first place).
gharchive/pull-request
2019-11-18T13:13:42
2025-04-01T06:39:32.557894
{ "authors": [ "kanes115", "mat-hek" ], "repo": "membraneframework/membrane-core", "url": "https://github.com/membraneframework/membrane-core/pull/216", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1507732266
有辦法更改生成圖像的大小嗎 預設是256X256,這個部分能放進環境變數改大嗎,感謝 @g07377 感謝回饋,我也覺得 256x256 有點模糊。 我來加功能。 @g07377 完成實作! 幫我更新程式,然後參考文件的「動態設定」這一章節看看。 感謝。 是直接在LINE機器人那邊打 /configure IMAGE_GENERATION_SIZE=512x512 這串嗎? 我打了他回我:你可以在設定中設定圖片的分辨率,特別地,你可以將IMAGE_GENERATION_SIZE設定為512x512。 然後發的圖片還是256X256 @g07377 幫我用指令確認一下你的應用程式版本是多少? 你可以打「指令」叫出選單。 @g07377 幫我參考「指令」章節的用法。 你想知道我的版本嗎? 我的版本是1.0. 是這個嗎 如果你打「指令」呢? 沒有 我的沒出現這個,這需要先設定甚麼環境變量才會出現嗎? 還是你先更新看看原始碼呢?按 Sync Fork 按鈕一下。 按了還是不行,跟我的手機本身有關係嗎? 可以截圖借我看一下嗎? 你的手機是什麼型號的呀? 手機是zenfone7,安卓機 試試看只有打「Command」呢? NO,一樣不行 好,試試另一個方法。 幫我到 Vercel 看一下環境變數,有沒有 APP_STORAGE,把值貼上來看一下。 Project Settings裡面的Environment Variables嗎,我沒有設定這個, 先幫我到 Tokens 這一頁,生成一個 Vercel 的 Key。 然後新增一個環境變數叫 VERCEL_ACCESS_TOKEN,值填剛剛生成的 Vercel 的 Key: 最後再設定一個環境變數叫 APP_STORAGE,值填以下這樣: {"IMAGE_GENERATION_SIZE":"256x256"} 我直接填了512x512,重新部署後,目前機器人回的圖片還是256x256 這真的太奇怪了 我想知道你的應用程式現在接受哪些指令...可以幫我都試試看嗎 Command command /command 指令 /version 版本 Version version 看起來只有draw <> 正常運行,不知道哪邊出問題 哇!我發現你的 version 指令有用! 你的版本不知為何停留在 1.5.0,要不要試著重新把專案 import 進 Vercel 一次呀? 有了!成功了,重新import那些指令就都可以了,包含改圖像的指令也成功運行了,感謝!! 太好了! 不好意思這個指令比較複雜哈哈,為了動態調整設定,做了比較特別的設計。 有想到特別的功能,歡迎再提出來~ 🙌 🙌 🙌 @g07377 Hi 如果你還有繼續更新程式,請參考用環境變數的方式來修改尺寸,比較簡單一點。 原本的方法棄用了。
gharchive/issue
2022-12-22T11:46:51
2025-04-01T06:39:32.577218
{ "authors": [ "g07377", "memochou1993" ], "repo": "memochou1993/gpt-ai-assistant", "url": "https://github.com/memochou1993/gpt-ai-assistant/issues/60", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1795341082
Add connection ID and req version in RemoveProducerRequest and RemoveConsumerRequest add to the requests: ConnectionId RequestVersion = 1 duplicate
gharchive/issue
2023-07-09T10:43:06
2025-04-01T06:39:32.591478
{ "authors": [ "shay23b" ], "repo": "memphisdev/memphis.net", "url": "https://github.com/memphisdev/memphis.net/issues/96", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1597951707
part-7-send-your-first-test-push-notification Please use the form below, leaving the prefilled data to help us. Thank you. Page link: part-7-send-your-first-test-push-notification Document link: notif-send-test.md My Issue/Suggestion Hi, i have an issue with the step, if the app is opened, i am not receiving the notification on my phone. It's only working if app is running in background or closed. Hello @sonam2207 , Apologies for the delayed response. The push notification process can be difficult indeed. For development help, I recommend searching or posting a question in the Mendix Forum. If you difficulties persist, please file a Mendix Support Ticket and they will help identify parts of the product that need to be improved. After that, I'll be notified and I will alter the documentation accordingly. Thanks for contacting Mendix Documentation, Connor
gharchive/issue
2023-02-24T05:56:28
2025-04-01T06:39:32.631609
{ "authors": [ "ConnorLand", "sonam2207" ], "repo": "mendix/docs", "url": "https://github.com/mendix/docs/issues/5688", "license": "CC-BY-4.0", "license_type": "permissive", "license_source": "github-api" }
775209351
[Feature request]Optimization: The data is too large Is your feature request related to a problem? Please describe. An excel document (200K) with more than 1,000 rows, after being stored as a luckysheet, the db field reached more than 13 million characters (more than 60 times enlarged). Describe the solution you'd like The style of each cell is stored separately and takes up a lot of space. Consider separating repeated cell configurations 问题: 一个1000多行的excel文档(200K),存储成luckysheet后,db字段达到了1300多万个字符(扩大了60多倍)。 解决计划: 每个单元格的样式都是单独存储的,占用了很大空间。考虑分离重复的单元格配置 Duplicate of #418
gharchive/issue
2020-12-28T05:45:06
2025-04-01T06:39:32.638239
{ "authors": [ "Dushusir", "mengshukeji" ], "repo": "mengshukeji/Luckysheet", "url": "https://github.com/mengshukeji/Luckysheet/issues/406", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1596269728
face flicker When the character is not moving, the picture will flicker Could you share some pictures or videos?
gharchive/issue
2023-02-23T05:57:56
2025-04-01T06:39:32.661404
{ "authors": [ "luoww1992", "undcloud" ], "repo": "menyifang/DCT-Net", "url": "https://github.com/menyifang/DCT-Net/issues/32", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
529273612
Erro 17 - invalid credentials Criei um checkout personalizado que interage com a API do mercado pago vi SDK php. Para isto, criei 2 usuários de teste (vendedor e comprador) , e estou usando o token de teste do vendedor para fazer a conexão com a API. Entretanto, quando envio um pagamento, tenho um retorno do objeto com o seguinte erro: 17 - Invalid credentials. Segue abaixo script que recebe os dados do formulario e se faz o envio dos dados: require_once 'vendor/autoload.php'; //token do usuario de teste MercadoPago\SDK::setAccessToken("TEST-6801982578233727-111918-fea7e708ea07dddf3f681204a6ec74ae-491086120"); $email = "test_user_78549141@testuser.com"; //email do comprador $payment = new MercadoPago\Payment(); $payment->transaction_amount = round((float)$_REQUEST['amount'],2); $payment->token = $_REQUEST['token']; $payment->description = $_REQUEST['description']; $payment->installments = (int)$_REQUEST['installmentsOption']; $payment->payment_method_id = $_REQUEST['paymentMethodId']; $payment->payer = array("email" => $_REQUEST['email']); // $payment->payer = array("email" => $email); // e("payment:"); // e($payment); $payment->save(); print_r($payment); Debe ser por esto, pero no hay respuesta oficial https://github.com/mercadopago/devsite-docs/issues/544
gharchive/issue
2019-11-27T11:01:20
2025-04-01T06:39:32.680083
{ "authors": [ "gcsiapn", "sebaherrera" ], "repo": "mercadopago/dx-php", "url": "https://github.com/mercadopago/dx-php/issues/233", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1724524193
code cleanup Removed a number of unused import statements Removed a number of unused parameters / variables @andlaus I will have a chat with the "sheriff" and come back with some changes :) this PR is now obsolete: we now run ruff as part of the CI, ensuring that all imported modules are used. closing.
gharchive/pull-request
2023-05-24T18:20:00
2025-04-01T06:39:32.681744
{ "authors": [ "andlaus", "louwersj" ], "repo": "mercedes-benz/odxtools", "url": "https://github.com/mercedes-benz/odxtools/pull/129", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
271326424
Does it support to md conversion I'm getting raw html .. in the converted .md file Yes it does. But it is limited by what Pandoc can do. For example it has to leave the table in html format in case any styles or custom attributes are present.
gharchive/issue
2017-11-05T23:48:16
2025-04-01T06:39:32.688445
{ "authors": [ "meridius", "pranasblk" ], "repo": "meridius/confluence-to-markdown", "url": "https://github.com/meridius/confluence-to-markdown/issues/1", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1072978879
ubuntu 20.04 creation using packer got stuck Hi @mrtrkmn , Thanks for this repo with detailed info about creating ubuntu VM with packer. I have tried the steps you have mentioned but got stuck in "waiting for ssh". Tried rdp and following is the output: Please let me know any way to resolve this. Thanks, ...Balaji.J are you trying to create the vm in a vm ? @ping2balaji Hi @mrtrkmn , The issue got resolved after i moved my host os from ubuntu server to ubuntu desktop. Not sure what fixed it though. However im facing following issue with virtualbox now while packer is provisioning the VM: "VBoxManage: error: Details: code NS_ERROR_FAILURE (0x80004005), component MachineWrap, interface IMachine" The VM abruptly stops with above error from VirtualBox and this is happening at random times like after 5mins sometme and after 30mins sometimes. Any input here? I checked internet and updated virtualbox to latest version. My host is Ubuntu 20.04. Please let me know ur suggestion. Thanks, ...Balaji Hi @mrtrkmn , the above issue is fixed after updating the vbox extension to same version as vbox. thanks, ...Balaji
gharchive/issue
2021-12-07T06:47:06
2025-04-01T06:39:32.692845
{ "authors": [ "bjeyabalan", "mrtrkmn", "ping2balaji" ], "repo": "merkez/ubuntu-packer", "url": "https://github.com/merkez/ubuntu-packer/issues/1", "license": "Unlicense", "license_type": "permissive", "license_source": "github-api" }
1302433575
Can we change to 1*? Can we change to 1*? It is going to review page but not selecting it then it is opening next new window for new id Hi. Sorry for the late reply. for 1 star review you should try this code instead of current code: line 52 elem=WebDriverWait(self.driver, 10).until(EC.element_to_be_clickable((By.CSS_SELECTOR,"#yDmH0d > c-wiz > div > div > div > div > div.O51MUd > div.l5dc7b > div.DTDhxc.eqAW0b > div.euWHWd.aUVumf > div > div:nth-child(1)"))) it may not be working properly after some updates. i will take a look later IndentationError: unindent does not match any outer indentation level It is logging in and going to the review page but not doing anything. it is opening another tab with next id..
gharchive/issue
2022-07-12T17:51:30
2025-04-01T06:39:32.718008
{ "authors": [ "mert-donmez", "zgtibu" ], "repo": "mert-donmez/GoogleReviewBot", "url": "https://github.com/mert-donmez/GoogleReviewBot/issues/1", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
873839757
Support for PostCSS 7? Would it work to run with PostCSS Thanks for a nice plugin! The plugin is dependent on PostCSS ^8.2.9. Vue (vue-cli) is stil dependent on PostCSS 7, so Tailwindcss needs to be used with Tailwind's PostCSS 7 compatibility build. (Added with npm install -D tailwindcss@npm:@tailwindcss/postcss7-compat postcss@^7 autoprefixer@^9, see https://tailwindcss.com/docs/installation#post-css-7-compatibility-build) Is PostCSS 8 strict needed for this plugin, or could the dependency by changed to be PostCSS 7 or 8 instead? if the tests are successful, I will publish a new version. thank you. @tvartom please upgrade the plugin to v1.1.3 👍
gharchive/issue
2021-05-02T05:04:22
2025-04-01T06:39:32.720594
{ "authors": [ "mertasan", "tvartom" ], "repo": "mertasan/tailwindcss-variables", "url": "https://github.com/mertasan/tailwindcss-variables/issues/4", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
213739643
reset/restart error while compiling Hello Sam, I'm having a problem compiling the firmware in the arduino ide. /Users/samabsalom/Downloads/Sonoff-master/sonoff/sonoff.ino: In function 'void reconnect()': sonoff:237: error: 'restart' was not declared in this scope restart(); ^ sonoff:256: error: 'reset' was not declared in this scope reset(); ^ exit status 1 'restart' was not declared in this scope Do you have any idea what it is i'm doing wrong? I can't work it out! so far all i have altered to the standard firmware you provided was to comment out the TLS support Thanks, Sam Hi Sam, I didn't have this problem before, it's strange. I cannot verify it now. Maybe, you can try to declare the two function at the top of the file (before the reconnect() function), with: void reset(); void restart(); Sam yeah that has allowed me to compile it. do you think the restart and reset functions still work ? thanks again Sam Yes! If my knowledge is C are correct ;). Sam I wouldn't doubt that for a second! all up and running now. Thanks so much for your help Sam
gharchive/issue
2017-03-13T11:28:24
2025-04-01T06:39:32.724923
{ "authors": [ "mertenats", "samabsalom" ], "repo": "mertenats/Sonoff", "url": "https://github.com/mertenats/Sonoff/issues/4", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }