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
151484852
Update README.md Thanks for sharing Inferno! Very intrigued by your work, particularly the focus on performance, to address usability on low-powered devices. Made a few tweaks to your README to correct a few typos and such, that I encountered. @aarontam thank you very much for the PR :) If you're interested in joining in on the discussion and helping more, send me your email and I can invite you to our Slack. My email is dg@domgan.com.
gharchive/pull-request
2016-04-27T20:38:09
2025-04-01T06:46:04.856168
{ "authors": [ "aarontam", "trueadm" ], "repo": "trueadm/inferno", "url": "https://github.com/trueadm/inferno/pull/202", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
2496984167
NAS-130858 / 24.10-RC.1 / remove file exclusion from ixdiagnose on enterprise systems (by themylogin) Original PR: https://github.com/truenas/ixdiagnose/pull/218 Jira URL: https://ixsystems.atlassian.net/browse/NAS-130858 This PR has been merged and conversations have been locked. If you would like to discuss more about this issue please use our forums or raise a Jira ticket.
gharchive/pull-request
2024-08-30T11:32:57
2025-04-01T06:46:04.923532
{ "authors": [ "bugclerk" ], "repo": "truenas/ixdiagnose", "url": "https://github.com/truenas/ixdiagnose/pull/219", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
168388061
Error: Cannot find module './build/Release/scrypt' I simply created a nodejs-file with the following content: var Web3 = require('web3'); var web3 = new Web3(); var TestRPC = require('ethereumjs-testrpc'); web3.setProvider(TestRPC.provider()); testrpc version: 2.1.0 nodejs version: 6.2.2 gcc version : 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.1) os : Linux Mint 18 Sarah Expected Behavior it should just do nothing but also not give errors. Current Behavior module.js:442 throw err; ^ Error: Cannot find module './build/Release/scrypt' at Function.Module._resolveFilename (module.js:440:15) at Function.Module._load (module.js:388:25) at Module.require (module.js:468:17) at require (internal/module.js:20:19) at Object.<anonymous> (/home/[myusername]/Desktop/testRPC/node_modules/ethereumjs-testrpc/node_modules/ethereumjs-wallet/node_modules/scrypt.js/node_modules/scrypt/index.js:3:20) at Module._compile (module.js:541:32) at Object.Module._extensions..js (module.js:550:10) at Module.load (module.js:458:32) at tryModuleLoad (module.js:417:12) at Function.Module._load (module.js:409:3) Possible Solution It seems the problem comes with ethereumjs-wallet Steps to Reproduce (for bugs) create the javascript-file with the shown content install web3, ethereumsjs-testrpc run the file with nodejs It looks like this is your issue. Give this a shot and reopen if it doesn't work. https://github.com/barrysteyn/node-scrypt/issues/108 Just to add, I used --unsafe-perm when installing: sudo npm install --unsafe-perm --verbose -g ethereumjs-testrpc Because I got this error: WARN EACCES user “root” does not have permission to access the dev dir I actually just switched to nodejs v 6.2.2 and reinstalled all modules. The problem came with v4.4.7 and with any other version because I installed it with the 4.x version. Just thought I'd add to this as I came across the same problem. Solution suggested by @tcoulter didn't seem to work for me. Solution suggested by @BlockChange worked for me. I did not try @danielsun174 's solution. Thanks everyone :+1: Environment: node v4.5.0 Just to confirm that this issue went away for me switching from node 4.2.2 to 6.2.2 I meet it also,and I have used sudo npm install --unsafe-perm --verbose -g ethereumjs-testrpc.But nothing happen.Who can help me? @woaiyaomai Which node version do you have? My system is Mac OSX. The workaround I got is install "scrypt" manually ("sudo npm install -g scrypt") go to /node_modules/scrypt make a symbolic link to scrypt build folder e.g. "ln -s /usr/local/lib/node_modules/scrypt/build build" Hope this is helpful thanks dendej, worked for me Ubuntu: 16.04, Node: 8.1.0, I used to have the same issue when installing testrpc, what I did and actually worked were the following: install node version manager(nvm) , curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash then export NVM_DIR="$HOME/.nvm" [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm then test nvm installation: command -v nvm which should output nvm if successful. then what i did was using nvm long term support version (lts): nvm install --lts nvm use --lts Now, if you type node -v, bash should readv6.11.0 (additionally, you could check your all node version you installed by using nvm ls and you could set long term support version as default using nvm alias defaults lts/*) navigate directory to node_modules using cd (location may various, depending on where you install node previously), there should be some folders like scrypt , nan etc. what i did was erase everything using sudo rm -rf /home/<myusername>/node_modules/* (be very careful about this step, It works for me, but please make sure know what you are doing before deleting) Final step was reinstalling using the original: sudo npm install -g truffle ethereumjs-testrpc And everything works like magic. Of course, you could test by typing testrpc and bash should give you 10 available accounts and their respective private keys. and typing 'truffle' and bash should give you a hint of list of available command. This problem hunts me for two days. And finally with the help of my colleague and dare move of total re-installation and downgrade of node, the problem has been finally solved. Hopefully it helps! Cheers! occured using node v8.2.1 after adding/installing an explicit dependency to web3 when ethereumjs-testrpc was already present and installed as a dependency. throwing away node_modules and going for npm i afterwards fixed the issue. I get this same error when including web3 in typescript library and running jest tests. It seems that jest module resolver is getting lost when traversing web3 dependencies... FAIL src/MetaCoinAPI/MetaCoinAPI.spec.ts ● Test suite failed to run Cannot find module './build/Release/scrypt' from 'index.js' at Resolver.resolveModule (node_modules/jest-resolve/build/index.js:179:17) at Object.<anonymous> (node_modules/web3/packages/web3-eth/node_modules/web3-eth-accounts/node_modules/scrypt/index.js:3:20) I had this issue on windows too. Fixed by installing Visual C++ 2015 Build Tools through Visual Studio, then deleting node_modules and npm i made the trick. On Windows 7 x64, Node v8.9.3: delete node_modules folder start an elevated command prompt (run as administrator) install build tools: npm install --global --production windows-build-tools run npm install which will use the build tools to compile scrypt NOTE: npm install must be run from the same elevated command prompt (compiling scrypt without admin rights will fail). May be this was just with me: I was using const ganache=require('ganache'); which was giving me this error It is actually require('ganache-cli'); Silly mistake but it fixed open /usr/local/lib/node_modules/remix-ide/node_modules/scrypt/index.js and change it to require("./build/Release/scrypt")改为require("scrypt"), problem solved. I had this issue with a fresh install of Ubuntu 19.04. The issue was caused by node-gyp failing higher up in the process as it needs python2.7 which is easily fixed: sudo apt install python2.7 sudo ln -s /usr/bin/python2.7 /usr/bin/python Restart your shell or source your .bashrc and the issue should be sorted. change this line require("./build/Release/scrypt") to require("scrypt") from '/node_modules/scrypt/index.js' @sudhiryadav can confirm this worked for me, thanks! Create a patch-scrypt.js file and add the following contents to it const options = { files: './node_modules/scrypt/index.js', from: /\.\/build\/Release\/scrypt/g, to: 'scrypt' } replace(options) .then(results => { console.log('Replacement results:', results) }) .catch(error => { console.error('Error occurred:', error) }) After adding the above content to the file, run node ./patch-scrypt.js
gharchive/issue
2016-07-29T18:41:25
2025-04-01T06:46:04.955989
{ "authors": [ "AlexXiong97", "BlockChange", "ColdFire87", "Honghe", "OR13", "PeterLinX", "axelhodler", "chevdor", "confused1108", "danielsun174", "dappaule", "dendej", "fraylopez", "nolanjacobson", "pubkey", "sudhiryadav", "tcoulter", "witwiki", "woaiyaomai", "yairmark", "yazinsai" ], "repo": "trufflesuite/ganache-cli", "url": "https://github.com/trufflesuite/ganache-cli/issues/134", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
665189287
Node 14 ganache-cli Error: Callback was already called. I know that this issue was filed 3 months ago but the issue is locked and I don't see any progress. I need to use Node 14 but I can't because of a bug in ganache-cli. Does the workaround provided in that issue not solve the problem while we rewrite some internals for Node 14? For those of you using Node 14, you'll need to launch ganache-cli via node 8, 10, or 12 until this is fixed. For example, run nvm use 12 && npm install ganache-cli -g to install for node 12, and then run ganache-cli with nvm use 12 && ganache-cli. https://github.com/trufflesuite/ganache-cli/issues/732#issuecomment-623782405 No because I don't want to use nvm and I need to use Node 14. But I do appreciate that the workaround was given. @kende This workaround should work. Can you provide reproduction steps? I had the same issue but after downgrading to Node 12.18.0 it is working. It's an issue of Node 14 and Ganache. What I did is sudo npm install -g n sudo n 12.18.0 Then when you run ganache it will work Fixed in https://github.com/trufflesuite/ganache-cli/releases/tag/v6.12.0 if you're still getting this error with the latest version, check that you don't have conflicting Yarn and NPM versions of ganache-cli. i've been following these instructions to use The Graph https://thegraph.com/docs/quick-start#local-development, where I've had Node.js 14.7 installed (not the latest, but should be sufficient), and ran the following, which says it has installed Ganache CLI v6.12.2 $ yarn global add truffle ganache-cli yarn global v1.22.4 [1/4] 🔍 Resolving packages... [2/4] 🚚 Fetching packages... [3/4] 🔗 Linking dependencies... [4/4] 🔨 Building fresh packages... success Installed "truffle@5.1.62" with binaries: - truffle success Installed "ganache-cli@6.12.2" with binaries: - ganache-cli ✨ Done in 158.62s. $ ganache-cli -h 0.0.0.0 Ganache CLI v6.10.1 (ganache-core: 2.11.2) Error: Callback was already called. at /Users/ls/.nvm/versions/node/v14.7.0/lib/node_modules/ganache-cli/build/ganache-core.node.cli.js:19:276 at s.<anonymous> (/Users/ls/.nvm/versions/node/v14.7.0/lib/node_modules/ganache-cli/build/ganache-core.node.cli.js:19:2238) at s.emit (events.js:314:20) at s.destroy (/Users/ls/.nvm/versions/node/v14.7.0/lib/node_modules/ganache-cli/build/ganache-core.node.cli.js:39:744230) at finish (_stream_writable.js:658:14) at processTicksAndRejections (internal/process/task_queues.js:80:21) But the old error of this issue still appeared. If you look closely it's because the ganache-cli version that's running is Ganache CLI v6.10.1 instead of Ganache CLI v6.12.2, and I found out that was because I'm on an old laptop where I'd previously installed it globally using NPM instead of Yarn, which I could check with: $ ganache-cli --version Ganache CLI v6.10.1 (ganache-core: 2.11.2) $ npm list -g --depth=0 /Users/ls/.nvm/versions/node/v14.7.0/lib ├── ganache-cli@6.10.1 ├── npm@6.14.7 ├── truffle@5.1.41 └── yarn@1.22.4 $ yarn global list yarn global v1.22.4 info "ganache-cli@6.12.2" has binaries: - ganache-cli info "truffle@5.1.62" has binaries: - truffle ✨ Done in 0.59s. So to avoid the conflict I just removed the NPM version, so it would revert to using the Yarn version instead. npm uninstall -g ganache-cli if you're still getting this error with the latest version, check that you don't have conflicting Yarn and NPM versions of ganache-cli. i've been following these instructions to use The Graph https://thegraph.com/docs/quick-start#local-development, where I've had Node.js 14.7 installed (not the latest, but should be sufficient), and ran the following, which says it has installed Ganache CLI v6.12.2 $ yarn global add truffle ganache-cli yarn global v1.22.4 [1/4] 🔍 Resolving packages... [2/4] 🚚 Fetching packages... [3/4] 🔗 Linking dependencies... [4/4] 🔨 Building fresh packages... success Installed "truffle@5.1.62" with binaries: - truffle success Installed "ganache-cli@6.12.2" with binaries: - ganache-cli ✨ Done in 158.62s. $ ganache-cli -h 0.0.0.0 Ganache CLI v6.10.1 (ganache-core: 2.11.2) Error: Callback was already called. at /Users/ls/.nvm/versions/node/v14.7.0/lib/node_modules/ganache-cli/build/ganache-core.node.cli.js:19:276 at s.<anonymous> (/Users/ls/.nvm/versions/node/v14.7.0/lib/node_modules/ganache-cli/build/ganache-core.node.cli.js:19:2238) at s.emit (events.js:314:20) at s.destroy (/Users/ls/.nvm/versions/node/v14.7.0/lib/node_modules/ganache-cli/build/ganache-core.node.cli.js:39:744230) at finish (_stream_writable.js:658:14) at processTicksAndRejections (internal/process/task_queues.js:80:21) But the old error of this issue still appeared. If you look closely it's because the ganache-cli version that's running is Ganache CLI v6.10.1 instead of Ganache CLI v6.12.2, and I found out that was because I'm on an old laptop where I'd previously installed it globally using NPM instead of Yarn, which I could check with: $ ganache-cli --version Ganache CLI v6.10.1 (ganache-core: 2.11.2) $ npm list -g --depth=0 /Users/ls/.nvm/versions/node/v14.7.0/lib ├── ganache-cli@6.10.1 ├── npm@6.14.7 ├── truffle@5.1.41 └── yarn@1.22.4 $ yarn global list yarn global v1.22.4 info "ganache-cli@6.12.2" has binaries: - ganache-cli info "truffle@5.1.62" has binaries: - truffle ✨ Done in 0.59s. So to avoid the conflict I just removed the NPM version, so it would revert to using the Yarn version instead. npm uninstall -g ganache-cli
gharchive/issue
2020-07-24T14:01:01
2025-04-01T06:46:04.967591
{ "authors": [ "SujithStellargoldcoin", "davidmurdoch", "ltfschoen", "mudgen" ], "repo": "trufflesuite/ganache-cli", "url": "https://github.com/trufflesuite/ganache-cli/issues/768", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2267365809
gunmaking, daikering This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 100 sleep for: 300s close stale after: 4 hours [pullrequest] requests per hour: 0 deps=[d,g] /trunk merge
gharchive/pull-request
2024-04-28T06:04:02
2025-04-01T06:46:04.980919
{ "authors": [ "EliSchleifer" ], "repo": "trunk-io/mergequeue-staging", "url": "https://github.com/trunk-io/mergequeue-staging/pull/10275", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2267841882
dorsolateral, bearberries This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 100 sleep for: 300s close stale after: 4 hours [pullrequest] requests per hour: 0 deps=[b,d] /trunk merge
gharchive/pull-request
2024-04-28T22:03:35
2025-04-01T06:46:04.982777
{ "authors": [ "EliSchleifer" ], "repo": "trunk-io/mergequeue-staging", "url": "https://github.com/trunk-io/mergequeue-staging/pull/10742", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2273332219
cardiopathic, fruitery This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 100 sleep for: 300s close stale after: 4 hours [pullrequest] requests per hour: 0 deps=[c,f] /trunk merge
gharchive/pull-request
2024-05-01T11:04:27
2025-04-01T06:46:04.984407
{ "authors": [ "mmatheson" ], "repo": "trunk-io/mergequeue-staging", "url": "https://github.com/trunk-io/mergequeue-staging/pull/12578", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2238955374
anisated, disrobe This pull request was generated by the 'mq' tool /trunk merge
gharchive/pull-request
2024-04-12T03:04:59
2025-04-01T06:46:04.985094
{ "authors": [ "epes" ], "repo": "trunk-io/mergequeue-staging", "url": "https://github.com/trunk-io/mergequeue-staging/pull/1419", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2279328418
controversional, gentianic This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 100 sleep for: 300s close stale after: 4 hours [pullrequest] requests per hour: 0 deps=[c,g] /trunk merge
gharchive/pull-request
2024-05-05T05:03:18
2025-04-01T06:46:04.986670
{ "authors": [ "epes" ], "repo": "trunk-io/mergequeue-staging", "url": "https://github.com/trunk-io/mergequeue-staging/pull/15193", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2389947723
galley, future This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 100 sleep for: 300s close stale after: 4 hours [pullrequest] requests per hour: 0 deps=[f,g] /trunk merge
gharchive/pull-request
2024-07-04T05:05:46
2025-04-01T06:46:04.988304
{ "authors": [ "EliSchleifer" ], "repo": "trunk-io/mergequeue-staging", "url": "https://github.com/trunk-io/mergequeue-staging/pull/18021", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2392580936
escamoteur, drumlier This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 100 sleep for: 300s close stale after: 4 hours [pullrequest] requests per hour: 0 deps=[d,e] /trunk merge
gharchive/pull-request
2024-07-05T13:08:12
2025-04-01T06:46:04.989930
{ "authors": [ "mmatheson" ], "repo": "trunk-io/mergequeue-staging", "url": "https://github.com/trunk-io/mergequeue-staging/pull/19626", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2406263033
brotherless, floccosely This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 100 sleep for: 300s close stale after: 4 hours [pullrequest] requests per hour: 0 deps=[b,f] /trunk merge
gharchive/pull-request
2024-07-12T20:05:10
2025-04-01T06:46:04.991524
{ "authors": [ "EliSchleifer" ], "repo": "trunk-io/mergequeue-staging", "url": "https://github.com/trunk-io/mergequeue-staging/pull/24440", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2426135226
daffodillies This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 100 sleep for: 300s close stale after: 4 hours [pullrequest] requests per hour: 0 deps=[d] /trunk merge
gharchive/pull-request
2024-07-23T21:10:32
2025-04-01T06:46:04.993343
{ "authors": [ "epes" ], "repo": "trunk-io/mergequeue-staging", "url": "https://github.com/trunk-io/mergequeue-staging/pull/30409", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2426994984
advice, begloom This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 100 sleep for: 300s close stale after: 4 hours [pullrequest] requests per hour: 0 deps=[a,b] /trunk merge
gharchive/pull-request
2024-07-24T09:04:18
2025-04-01T06:46:04.994950
{ "authors": [ "epes" ], "repo": "trunk-io/mergequeue-staging", "url": "https://github.com/trunk-io/mergequeue-staging/pull/30963", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2433204651
demophilism, echolocation This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 100 sleep for: 300s close stale after: 4 hours [pullrequest] requests per hour: 0 deps=[d,e] /trunk merge
gharchive/pull-request
2024-07-27T03:09:01
2025-04-01T06:46:04.996644
{ "authors": [ "epes" ], "repo": "trunk-io/mergequeue-staging", "url": "https://github.com/trunk-io/mergequeue-staging/pull/34246", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2435807092
folktale, archleveler This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 100 sleep for: 300s close stale after: 4 hours [pullrequest] requests per hour: 0 deps=[a,f] /trunk merge
gharchive/pull-request
2024-07-29T16:04:15
2025-04-01T06:46:04.998343
{ "authors": [ "epes" ], "repo": "trunk-io/mergequeue-staging", "url": "https://github.com/trunk-io/mergequeue-staging/pull/37197", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2435928951
augustness, galenobismutite This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 100 sleep for: 300s close stale after: 4 hours [pullrequest] requests per hour: 0 deps=[a,g] /trunk merge
gharchive/pull-request
2024-07-29T17:09:19
2025-04-01T06:46:04.999968
{ "authors": [ "mmatheson" ], "repo": "trunk-io/mergequeue-staging", "url": "https://github.com/trunk-io/mergequeue-staging/pull/37281", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2438074538
epigeous This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 100 sleep for: 300s close stale after: 4 hours [pullrequest] requests per hour: 0 deps=[e] /trunk merge
gharchive/pull-request
2024-07-30T15:07:47
2025-04-01T06:46:05.001584
{ "authors": [ "mmatheson" ], "repo": "trunk-io/mergequeue-staging", "url": "https://github.com/trunk-io/mergequeue-staging/pull/38344", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2254936143
baculite, frena This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 100 sleep for: 300s close stale after: 4 hours [pullrequest] requests per hour: 0 deps=[b,f] /trunk merge
gharchive/pull-request
2024-04-21T07:04:28
2025-04-01T06:46:05.003450
{ "authors": [ "EliSchleifer" ], "repo": "trunk-io/mergequeue-staging", "url": "https://github.com/trunk-io/mergequeue-staging/pull/5395", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2255747401
enlacing, anilines This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 100 sleep for: 300s close stale after: 4 hours [pullrequest] requests per hour: 0 deps=[a,e] /trunk merge
gharchive/pull-request
2024-04-22T07:04:24
2025-04-01T06:46:05.005082
{ "authors": [ "epes" ], "repo": "trunk-io/mergequeue-staging", "url": "https://github.com/trunk-io/mergequeue-staging/pull/6049", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2262840119
digitoxigenin, copalchi This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 100 sleep for: 300s close stale after: 4 hours [pullrequest] requests per hour: 0 deps=[c,d] /trunk merge
gharchive/pull-request
2024-04-25T07:03:03
2025-04-01T06:46:05.006701
{ "authors": [ "EliSchleifer" ], "repo": "trunk-io/mergequeue-staging", "url": "https://github.com/trunk-io/mergequeue-staging/pull/8155", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2406729133
gestural, dismantler This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 1000 sleep for: 600s close stale after: 24 hours [pullrequest] requests per hour: 20 deps=[d,g] /trunk merge
gharchive/pull-request
2024-07-13T06:15:41
2025-04-01T06:46:05.008384
{ "authors": [ "EliSchleifer" ], "repo": "trunk-io/mergequeue", "url": "https://github.com/trunk-io/mergequeue/pull/101593", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2411247827
bicarpellate, floutingly This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 1000 sleep for: 600s close stale after: 24 hours [pullrequest] requests per hour: 20 deps=[b,f] /trunk merge
gharchive/pull-request
2024-07-16T14:07:31
2025-04-01T06:46:05.010039
{ "authors": [ "EliSchleifer" ], "repo": "trunk-io/mergequeue", "url": "https://github.com/trunk-io/mergequeue/pull/104764", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2425845254
eyeline, amphithalami This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 1000 sleep for: 600s close stale after: 24 hours [pullrequest] requests per hour: 20 deps=[a,e] /trunk merge
gharchive/pull-request
2024-07-23T18:28:52
2025-04-01T06:46:05.011630
{ "authors": [ "EliSchleifer" ], "repo": "trunk-io/mergequeue", "url": "https://github.com/trunk-io/mergequeue/pull/111415", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2434581122
bromacetate, aschistic This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 1000 sleep for: 600s close stale after: 24 hours [pullrequest] requests per hour: 20 deps=[a,b] /trunk merge
gharchive/pull-request
2024-07-29T06:39:36
2025-04-01T06:46:05.013539
{ "authors": [ "EliSchleifer" ], "repo": "trunk-io/mergequeue", "url": "https://github.com/trunk-io/mergequeue/pull/116587", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2236835365
dietitians, gelations This pull request was generated by the 'mq' tool /trunk merge
gharchive/pull-request
2024-04-11T03:23:45
2025-04-01T06:46:05.014247
{ "authors": [ "EliSchleifer" ], "repo": "trunk-io/mergequeue", "url": "https://github.com/trunk-io/mergequeue/pull/19792", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2238567155
epoxide, bankroller This pull request was generated by the 'mq' tool /trunk merge
gharchive/pull-request
2024-04-11T20:42:32
2025-04-01T06:46:05.014946
{ "authors": [ "mmatheson" ], "repo": "trunk-io/mergequeue", "url": "https://github.com/trunk-io/mergequeue/pull/20790", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2240882677
begorah, chullpa This pull request was generated by the 'mq' tool /trunk merge
gharchive/pull-request
2024-04-12T20:43:22
2025-04-01T06:46:05.015643
{ "authors": [ "joshmarinacci" ], "repo": "trunk-io/mergequeue", "url": "https://github.com/trunk-io/mergequeue/pull/22633", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2247173462
ethylation, dicacodyl This pull request was generated by the 'mq' tool /trunk merge
gharchive/pull-request
2024-04-17T02:08:27
2025-04-01T06:46:05.016370
{ "authors": [ "joshmarinacci" ], "repo": "trunk-io/mergequeue", "url": "https://github.com/trunk-io/mergequeue/pull/29710", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2254523095
bract, gallotannin This pull request was generated by the 'mq' tool /trunk merge
gharchive/pull-request
2024-04-20T12:06:33
2025-04-01T06:46:05.017091
{ "authors": [ "joshmarinacci" ], "repo": "trunk-io/mergequeue", "url": "https://github.com/trunk-io/mergequeue/pull/38280", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2254695193
bourran, absterging This pull request was generated by the 'mq' tool /trunk merge
gharchive/pull-request
2024-04-20T19:54:41
2025-04-01T06:46:05.017912
{ "authors": [ "mmatheson" ], "repo": "trunk-io/mergequeue", "url": "https://github.com/trunk-io/mergequeue/pull/39169", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2254749421
acotyledon, furrowed This pull request was generated by the 'mq' tool /trunk merge
gharchive/pull-request
2024-04-20T22:45:16
2025-04-01T06:46:05.018641
{ "authors": [ "joshmarinacci" ], "repo": "trunk-io/mergequeue", "url": "https://github.com/trunk-io/mergequeue/pull/39513", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2254995443
feucht, endowed This pull request was generated by the 'mq' tool /trunk merge
gharchive/pull-request
2024-04-21T09:54:50
2025-04-01T06:46:05.019334
{ "authors": [ "mmatheson" ], "repo": "trunk-io/mergequeue", "url": "https://github.com/trunk-io/mergequeue/pull/40580", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2256442362
equiponderate, cresorcin This pull request was generated by the 'mq' tool /trunk merge
gharchive/pull-request
2024-04-22T12:43:18
2025-04-01T06:46:05.020055
{ "authors": [ "joshmarinacci" ], "repo": "trunk-io/mergequeue", "url": "https://github.com/trunk-io/mergequeue/pull/43379", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2257142918
gutter, blueness This pull request was generated by the 'mq' tool /trunk merge
gharchive/pull-request
2024-04-22T17:53:54
2025-04-01T06:46:05.020769
{ "authors": [ "EliSchleifer" ], "repo": "trunk-io/mergequeue", "url": "https://github.com/trunk-io/mergequeue/pull/43949", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2282490187
argos, catjang This pull request was generated by the 'mq' tool /trunk merge
gharchive/pull-request
2024-05-07T07:21:24
2025-04-01T06:46:05.021709
{ "authors": [ "joshmarinacci" ], "repo": "trunk-io/mergequeue", "url": "https://github.com/trunk-io/mergequeue/pull/47237", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2292062205
devanagari, endotoxoid This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 1000 sleep for: 2100s close stale after: 24 hours [pullrequest] requests per hour: 100 deps=[d,e] /trunk merge
gharchive/pull-request
2024-05-13T07:35:50
2025-04-01T06:46:05.023389
{ "authors": [ "EliSchleifer" ], "repo": "trunk-io/mergequeue", "url": "https://github.com/trunk-io/mergequeue/pull/51028", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2299225619
garrisons, abranchian This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 1000 sleep for: 2100s close stale after: 24 hours [pullrequest] requests per hour: 100 deps=[a,g] /trunk merge
gharchive/pull-request
2024-05-16T02:55:37
2025-04-01T06:46:05.025077
{ "authors": [ "EliSchleifer" ], "repo": "trunk-io/mergequeue", "url": "https://github.com/trunk-io/mergequeue/pull/52620", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2304058164
entrept, chemics This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 1000 sleep for: 2100s close stale after: 24 hours [pullrequest] requests per hour: 100 deps=[c,e] /trunk merge
gharchive/pull-request
2024-05-18T12:06:22
2025-04-01T06:46:05.026649
{ "authors": [ "EliSchleifer" ], "repo": "trunk-io/mergequeue", "url": "https://github.com/trunk-io/mergequeue/pull/54069", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2304939266
bisabol This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 1000 sleep for: 2100s close stale after: 24 hours [pullrequest] requests per hour: 100 deps=[b] /trunk merge
gharchive/pull-request
2024-05-20T02:21:37
2025-04-01T06:46:05.028255
{ "authors": [ "EliSchleifer" ], "repo": "trunk-io/mergequeue", "url": "https://github.com/trunk-io/mergequeue/pull/55077", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2322252373
epicure, ginzoes This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 1000 sleep for: 2100s close stale after: 24 hours [pullrequest] requests per hour: 100 deps=[e,g] /trunk merge
gharchive/pull-request
2024-05-29T02:59:42
2025-04-01T06:46:05.029865
{ "authors": [ "EliSchleifer" ], "repo": "trunk-io/mergequeue", "url": "https://github.com/trunk-io/mergequeue/pull/60673", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2331934276
goar, epistle This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 1000 sleep for: 2100s close stale after: 24 hours [pullrequest] requests per hour: 100 deps=[e,g] /trunk merge
gharchive/pull-request
2024-06-03T20:00:43
2025-04-01T06:46:05.031452
{ "authors": [ "EliSchleifer" ], "repo": "trunk-io/mergequeue", "url": "https://github.com/trunk-io/mergequeue/pull/65100", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2365809062
forespeak, gemeinschaften This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 1000 sleep for: 600s close stale after: 24 hours [pullrequest] requests per hour: 20 deps=[f,g] /trunk merge
gharchive/pull-request
2024-06-21T06:22:34
2025-04-01T06:46:05.033364
{ "authors": [ "EliSchleifer" ], "repo": "trunk-io/mergequeue", "url": "https://github.com/trunk-io/mergequeue/pull/81590", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2367860253
directitude, archaeomagnetism This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 1000 sleep for: 600s close stale after: 24 hours [pullrequest] requests per hour: 20 deps=[a,d] /trunk merge
gharchive/pull-request
2024-06-22T14:48:46
2025-04-01T06:46:05.035004
{ "authors": [ "EliSchleifer" ], "repo": "trunk-io/mergequeue", "url": "https://github.com/trunk-io/mergequeue/pull/82887", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2368496530
emictory This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 1000 sleep for: 600s close stale after: 24 hours [pullrequest] requests per hour: 20 deps=[e] /trunk merge
gharchive/pull-request
2024-06-23T10:43:27
2025-04-01T06:46:05.036639
{ "authors": [ "EliSchleifer" ], "repo": "trunk-io/mergequeue", "url": "https://github.com/trunk-io/mergequeue/pull/83687", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2381473793
flamineous, carousers This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 1000 sleep for: 600s close stale after: 24 hours [pullrequest] requests per hour: 20 deps=[c,f] /trunk merge
gharchive/pull-request
2024-06-29T04:41:11
2025-04-01T06:46:05.038248
{ "authors": [ "EliSchleifer" ], "repo": "trunk-io/mergequeue", "url": "https://github.com/trunk-io/mergequeue/pull/89114", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2381619001
docility, appliableness This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 1000 sleep for: 600s close stale after: 24 hours [pullrequest] requests per hour: 20 deps=[a,d] /trunk merge
gharchive/pull-request
2024-06-29T09:42:24
2025-04-01T06:46:05.039994
{ "authors": [ "EliSchleifer" ], "repo": "trunk-io/mergequeue", "url": "https://github.com/trunk-io/mergequeue/pull/89310", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2393649578
bache, centigrade This pull request was generated by the 'mq' tool [test] flake rate: 0.1 logical conflict every: 1000 sleep for: 600s close stale after: 24 hours [pullrequest] requests per hour: 20 deps=[b,c] /trunk merge
gharchive/pull-request
2024-07-06T18:09:16
2025-04-01T06:46:05.041629
{ "authors": [ "EliSchleifer" ], "repo": "trunk-io/mergequeue", "url": "https://github.com/trunk-io/mergequeue/pull/96307", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
707453796
Crash on windows server 2012R2 ; pEnableHighDpiSupport ; SIGSEGV: Illegal storage access Crash on windows server 2012: C:\Users\Administrator\.nimble\pkgs\nigui-0.2.4\nigui\private\windows\platform_impl.nim(402) init C:\Users\Administrator\.nimble\pkgs\nigui-0.2.4\nigui\private\windows\platform_impl.nim(387) pEnableHighDpiSupport SIGSEGV: Illegal storage access. (Attempt to read from nil?) It calls the WinAPI function GetDpiForWindow(). According to https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-getdpiforwindow it's not available on Windows Server. To avoid the crash, I have added a nil pointer check. Can you please confirm that the fix works for you? yes, thank you
gharchive/issue
2020-09-23T15:12:23
2025-04-01T06:46:05.043754
{ "authors": [ "enthus1ast", "trustable-code" ], "repo": "trustable-code/NiGui", "url": "https://github.com/trustable-code/NiGui/issues/109", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
481073430
Compile fails fSystemDpi /.nimble/pkgs/nigui-0.1.1/nigui.nim(1067, 41) Error: cannot evaluate at compile time: fSystemDpi Os : linux Nim : latest devel Do you call scaleToDpi() in your program? I wonder where it is used at compile time. No . The issue seems to appear when importing msgbox . 100.scaleToDpi seems to fail. With "const" -> "let" it should work again. Looks good again. Thank you.
gharchive/issue
2019-08-15T09:38:14
2025-04-01T06:46:05.045801
{ "authors": [ "qqtop", "trustable-code" ], "repo": "trustable-code/NiGui", "url": "https://github.com/trustable-code/NiGui/issues/45", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1333486997
fix: fixed linter/prettier setups and updated targets Fixes #1835 Signed-off-by: Anton Biriukov anton.biriukov@avast.com @birtony - This PR has conflicts @birtony - This PR has conflicts @rolsonquadras resolved Looks ok to me, but would recommend you have someone look at it who's more familiar with this project as well!
gharchive/pull-request
2022-08-09T16:13:02
2025-04-01T06:46:05.047752
{ "authors": [ "DRK3", "birtony", "rolsonquadras" ], "repo": "trustbloc/wallet", "url": "https://github.com/trustbloc/wallet/pull/1844", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2098459154
feat: Upload Sbom|Vex enabled by config Make the Upload feat configurable Fix typos that refer to Scan in the Upload pages looking good for me, Thanks.
gharchive/pull-request
2024-01-24T14:58:26
2025-04-01T06:46:05.051497
{ "authors": [ "bxf12315", "carlosthe19916" ], "repo": "trustification/trustification", "url": "https://github.com/trustification/trustification/pull/1049", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
331571846
Make ports optional in config Ports in the TLNetwork configuration should not be mandatory. Already pushed to PR #79
gharchive/issue
2018-06-12T12:45:51
2025-04-01T06:46:05.052362
{ "authors": [ "dakingha69" ], "repo": "trustlines-network/clientlib", "url": "https://github.com/trustlines-network/clientlib/issues/81", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2484584966
🛑 Bunce Sandbox is down In 033c399, Bunce Sandbox (https://sandbox.bunce.so) was down: HTTP code: 0 Response time: 0 ms Resolved: Bunce Sandbox is back up in 96ece63 after 8 days, 19 hours, 13 minutes.
gharchive/issue
2024-08-24T13:13:50
2025-04-01T06:46:05.076604
{ "authors": [ "dammy001" ], "repo": "trybunce/bunce-uptime", "url": "https://github.com/trybunce/bunce-uptime/issues/133", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2374019117
Canvas is no longer centred in HTML template This alignment issue is new to me. Something may have changed in the last couple Defold versions. Tested on Firefox and Chrome, same result. I thought I was using a css grid to pull that off? I also wonder what happened here...? It doesn't look like the index.html file has changed much over the last 3 years, so maybe some edge case of styling I was leaning on has been modified in web browsers, and this is the result of some implicit behavior that is no longer valid? https://github.com/ts-defold/tsd-template-yagames/blame/4d4b7ffc4c402bb4de5ac89e60bb575c2d0acb21/index.html Something is now injecting inline styling on the app-container element. @thinknathan I just updated the game.project and built it locally, and I do not see this issue. Tracking down what is different from my local env. @thinknathan I just updated the game.project and built it locally, and I do not see this issue. Tracking down what is different from my local env. Well... I didn't restart Defold to apply the update, and the latest binary adds the extra styles to the canvas element. 😭 I think I located the offending changes here: Most of the Scale Modes inject inline styles. https://github.com/defold/defold/pull/8682/files#diff-b82ef5179fba0dcb45eca1520e9a3f9e0372c4846534e91545ab5a84e5ae7326R987-R1041
gharchive/issue
2024-06-26T02:07:19
2025-04-01T06:46:05.083539
{ "authors": [ "thejustinwalsh", "thinknathan" ], "repo": "ts-defold/tsd-template-yagames", "url": "https://github.com/ts-defold/tsd-template-yagames/issues/42", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1855875689
Readiness/liveness check for non-Kubernetes? Information We have https://tsed.io/tutorials/terminus.html but is there a readiness/liveness for non-Kubernetes systems? Acceptance criteria [ ] Criteria 1 Hello @Romakita I'm sorry but I don't understand your question but it seems to be addressed to terminus developer team. Ts.ED just wrap the @godaddy/terminus npm module ;) See you https://www.npmjs.com/package/@godaddy/terminus @Romakita ya terminus is for K8 only. I guess wrapping https://www.npmjs.com/package/lightship would probably be an alternative because it supports normal, containerized and k8 all in one package. Ok I didn't know that ^^. I use terminus for a normal dockerized app. Maybe not on all features ^^. Tell me if you need help for lightship integration ;). See you
gharchive/issue
2023-08-18T00:35:05
2025-04-01T06:46:05.089848
{ "authors": [ "Romakita", "ktalebian" ], "repo": "tsedio/tsed", "url": "https://github.com/tsedio/tsed/issues/2410", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
464866554
add new reaction achievements 新規実績案7つを追加しました Codecov Report Merging #99 into master will decrease coverage by 0.02%. The diff coverage is n/a. @@ Coverage Diff @@ ## master #99 +/- ## ========================================== - Coverage 44.57% 44.55% -0.03% ========================================== Files 36 36 Lines 3883 3883 Branches 755 755 ========================================== - Hits 1731 1730 -1 - Misses 1715 1716 +1 Partials 437 437 Impacted Files Coverage Δ prime/index.js 17.37% <0%> (-0.61%) :arrow_down: mahjong/index.js 27.15% <0%> (+0.31%) :arrow_up: Continue to review full report at Codecov. Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update e9447d9...4b9965c. Read the comment docs.
gharchive/pull-request
2019-07-06T15:54:02
2025-04-01T06:46:05.097368
{ "authors": [ "codecov-io", "naan4UGen" ], "repo": "tsg-ut/slackbot", "url": "https://github.com/tsg-ut/slackbot/pull/99", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
258569420
Apply Partial Update to Virtual Stores Rather than replacing the entire state on content scripts every time a change occurs, this change will create patch messages, containing only the updated fields. This has a number of benefits. Brings behavior in line with standard redux store (expected behavior). More efficient because less data is being transferred over the messaging pipeline. Resolves https://github.com/tshaddix/react-chrome-redux/issues/98 @vhmth Great feedback! I'm very glad you like the change. Please let me know if there is anything else I can do. @jdolle @vhmth Hey guys - sorry I've been so out of the game. Had a family emergency I've been dealing with the last couple weeks. @jdolle - really excited to look through this and see what you're proposing. I'm planning on diving in tomorrow morning. Thanks again for thinking through this! @tshaddix after you leave your feedback, I'll integrate into the Loom chrome extension repo locally to test out and see if there are any hiccups. I would say this is probably good to merge before then if we can get a more trivial example verified working. @vhmth @jdolle Looking through this, this looks good to me. I do have some clarifying questions on the "root" problem we are trying to solve. Consider it devil's advocate and due diligence: More efficient because less data is being transferred over the messaging pipeline. We have had this claim numerous times before. From a purely logical standpoint, you can say "sure that makes sense". That said, every time we have tried to quantify the impact it turns out to be negligible. Are we sure that sending state messages across the channel every time is more costly than a shallow diff every time? Not sure... I would feel really confident in this change if we had some quantified proof of the performance issue. That said, I really don't see this change as having an earth shattering impact on perf either. So then we go back to "this brings us closer to Redux" which is true. I'm happy to move forward with testing it in Loom's extension, @vhmth . We won't be able to do that at GG right now, I'm afraid, or I would offer. @tshaddix I am new to browser extensions and haven't done any performance tests, so I can't quantify the gains -- I just assume there is some since you are copying over less data. However, the major performance gain will likely be because of the simplification to prop comparisons in React. Overriding the entire state every time causes components, that might not otherwise, to be flagged as dirty and therefore re-render. @jdolle Ah - great point. Don't know how we missed that in #10 and #12. Good call. @vhmth Alrighty - let's move this forward! @vhmth I don't believe this warrants a major release semver-wise - thoughts? This seems to land under a minor release unless we consider the port-messages to be part of our package's public "API" 🎉🎉🎉🎉 great stuff @jdolle! @tshaddix roger roger - seems fit for a minor release.
gharchive/pull-request
2017-09-18T18:03:15
2025-04-01T06:46:05.106708
{ "authors": [ "jdolle", "tshaddix", "vhmth" ], "repo": "tshaddix/react-chrome-redux", "url": "https://github.com/tshaddix/react-chrome-redux/pull/100", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
410892024
Right click to copy on Execution Path display window Would be nice to be able to copy out of Execution Path lower display window. Thanks! Fixed in c4f8dc5
gharchive/issue
2019-02-15T18:31:47
2025-04-01T06:46:05.153983
{ "authors": [ "cfazzini", "tslater2006" ], "repo": "tslater2006/Trace-Wizard", "url": "https://github.com/tslater2006/Trace-Wizard/issues/16", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1570994420
Some subscripts are not formatted Hello, I am encountering an issue when using symbols or braces for subscripts. Example In a .md file I write ## Main Project My research project concerns the sets pictured below. $$x+y=0$$ soeme thoiaex adad $ \mathbb{D}_9 $ caslsalnlca. $ \mathcal{M} \subset \mathfrak{C} $. saubiabascb kscabcacs asjk jkba idhbkacicakscbaluc ab lasjcajclqc l9 clajmc li jascasij kl $\mathcal{E}^-\subset\mathcal{F}^{5-4}$ lks;i; d'pj 'sdj dsc;M :S,;sdc'al ' qci $\mathcal{M}_k\subset\mathcal{M}^{f+gte}$ asnasochjanoa ocn9dh akcnapcn achq90 q qpk qdkqph q 9d pk p hdo mpj aicnsalc anxp askan some good word $x-$ is rendered fine however if I change the last equation from $x-$ to $x_-$ or $x_{-}$ or $x_{67}$ or $x_{somewords}$ , things go awry Note that this does not happen with the superscript. Note also that this is happens both on Firefox and with Chrome. Configuration Here is my 11ty configuration. module.exports = function (eleventyConfig) { // Passthrough //fonts eleventyConfig.addPassthroughCopy("./src/assets/fonts/"); eleventyConfig.addWatchTarget("./src/assets/fonts/"); //css eleventyConfig.addPassthroughCopy("./src/assets/css/"); eleventyConfig.addWatchTarget("./src/assets/css/"); //js eleventyConfig.addPassthroughCopy("./src/assets/js/"); eleventyConfig.addWatchTarget("./src/assets/js/"); //img eleventyConfig.addPassthroughCopy("./src/assets/img/"); eleventyConfig.addWatchTarget("./src/assets/img/"); // Plugin // navigation eleventyConfig.addPlugin( require("@11ty/eleventy-navigation") ); eleventyConfig.addPlugin( require("eleventy-plugin-mathjax",{ displayMath: [ ["$$", "$$"] ] }) ); //Shortcodes eleventyConfig.addShortcode("year", () => `${new Date().getFullYear()}`); eleventyConfig.addShortcode("navlist", require("./src/_includes/shortcodes/navlist.js")); return { dir: { input: "src", output: "public", }, }; }; I am using Ubuntu 20.04.5 LTS but I doubt this is relevant. Any suggestion on how to resolve this issue? Thank you It's likely because the Markdown engine turned the characters between the two _ into italics. Adding a \ before the _ could prevent that from happening. See also this markdown-it plugin, which can be used with eleventy's custom markdown-it engine feature, and doesn't have these escaping issues. Hello, I have tried adding the \ but it still does not work. I'll check with markdown-it. Thank you!
gharchive/issue
2023-02-04T15:35:31
2025-04-01T06:46:05.202480
{ "authors": [ "SilvestriStefano", "tsung-ju" ], "repo": "tsung-ju/eleventy-plugin-mathjax", "url": "https://github.com/tsung-ju/eleventy-plugin-mathjax/issues/4", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
245576725
Please add some examples of unit tests and CTest The examples are extremely practical and helpful, so I'll be referring a lot of people to this repository. I think there are some conventions around unit test folders and files. If you could show some examples of how that would look with any unit test framework I think it would be sensible addition. Also, leveraging them with CTest would make sense if possible. I have an example using boost test at https://github.com/ttroy50/cmake-examples/tree/master/05-unit-testing/boost. I do hope to get around to adding other unit test libraries. Next up would probably be Google Test as I'm familiar with it and after that it would come down to how much time I have to investigate different ones. Somehow I didn't see that. i looked at this repo 50 times.
gharchive/issue
2017-07-26T01:03:00
2025-04-01T06:46:05.236060
{ "authors": [ "solvingj", "ttroy50" ], "repo": "ttroy50/cmake-examples", "url": "https://github.com/ttroy50/cmake-examples/issues/10", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1301909134
Disable CI AD LLVM-12 safeptr run It appears to be broken still, see #64 Pull Request Test Coverage Report for Build 2656082405 0 of 0 changed or added relevant lines in 0 files are covered. No unchanged relevant lines lost coverage. Overall coverage increased (+0.06%) to 89.921% Totals Change from base Build 2269873345: 0.06% Covered Lines: 3203 Relevant Lines: 3562 💛 - Coveralls
gharchive/pull-request
2022-07-12T11:12:45
2025-04-01T06:46:05.286532
{ "authors": [ "ahueck", "coveralls" ], "repo": "tudasc/TypeART", "url": "https://github.com/tudasc/TypeART/pull/130", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
802641271
依赖问题 idea导入项目,好多插件依赖都找不到 跑不通。。。。。
gharchive/issue
2021-02-06T08:08:36
2025-04-01T06:46:05.296432
{ "authors": [ "NickLoveHub", "xduperdu" ], "repo": "tuguangquan/mybatis", "url": "https://github.com/tuguangquan/mybatis/issues/24", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
58121226
LSB init functions are required! I want to install collins in my oracle linux 7 machine. I have downloaded latest zip file of collins i.e. collins-1.3.0.zip. I then executed the setup script under collins/scripts directory. ruby setup After following the installation steps, there appeared a message Execute the following commands to finish configuration. mv /tmp/sysconfig-1424288726-20621 /etc/sysconfig/collins for dir in /var/log/collins /var/run/collins; do sudo mkdir $dir; sudo chown root $dir; done sudo -u root /home/labview/Downloads/collins/scripts/collins.sh initdb collins_db_uname collins_db_password sudo chown -R root /home/labview/Downloads/collins sudo /home/labview/Downloads/collins/scripts/collins.sh start curl --basic -u blake:admin:first http://localhost:8080/api/admin/solr When I am executing this command on my oracle linux sudo /home/labview/Downloads/collins/scripts/collins.sh start it is showing me an error -- LSB init functions are required! Starting collins... /home/labview/Downloads/collins/scripts/collins.sh: line 149: log_failure_msg: command not found *** Try checking the logs in /var/log/collins/{stdout,error} to see what the haps are and then it exits!! Can u please help me to resolve this issue ?? My machine information is here -- uname -a Linux labview 3.8.13-55.1.5.el7uek.x86_64 #2 SMP Wed Jan 28 17:08:50 PST 2015 x86_64 x86_64 x86_64 GNU/Linux Thanks Hi @rajatm0303 Can you start by providing the logs that it mentions on the last line? /var/log/collins/{stdout,error} Also, have you tried executing the commands the script tells you to run to finish configuring? Execute the following commands to finish configuration. mv /tmp/sysconfig-1424288726-20621 /etc/sysconfig/collins for dir in /var/log/collins /var/run/collins; do sudo mkdir $dir; sudo chown root $dir; done sudo -u root /home/labview/Downloads/collins/scripts/collins.sh initdb collins_db_uname collins_db_password sudo chown -R root /home/labview/Downloads/collins sudo /home/labview/Downloads/collins/scripts/collins.sh start curl --basic -u blake:admin:first http://localhost:8080/api/admin/solr Here are the last logs-- Play server process ID is 20055 Oops, cannot start the server. To enable GC log rotation, use -Xloggc: -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=<num_of_files> where num_of_file > 0 GC log rotation is turned off Play server process ID is 20273 Oops, cannot start the server. To enable GC log rotation, use -Xloggc: -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=<num_of_files> where num_of_file > 0 GC log rotation is turned off Play server process ID is 20312 Oops, cannot start the server. To enable GC log rotation, use -Xloggc: -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=<num_of_files> where num_of_file > 0 GC log rotation is turned off Yes, I was following the steps provided and got stuck in this 5th step as I mentione dabove. Sorry, the formatting confused me. I see what you did now. What version of java are you running with? sorry for the formatting though.. I am suing jre-8u31 version of java. I installed it using the rpm package jre-8u31-linux-x64.rpm Hmmm so that may be the problem. We've only ever tested collins using java 6 and 7. I don't see a reason why it wouldn't work, but I'm betting java 8 expects a different flag to enable GC log rotation. Do you need to use java 8? Can you try java 7 instead? Yeah, I will try with java 7 and update you then. I tried it with java 7. it is showing up with the same error. So, I found solution for the problem I was facing previously was due to redhat-lsb package not installed on my oracle linux machine. I did a "yum install redhat-lsb" now when I did "sudo /home/labview/Downloads/collins/scripts/collins.sh start" it is giving me a new error-- Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=384m; support was removed in 8.0 java.lang.IllegalArgumentException: requirement failed: solr.embeddedSolrHome '/Users/bmatheny/Downloads/collins/conf/solr' is not writable or not a directory at scala.Predef$.require(Predef.scala:157) at collins.solr.SolrConfig$.validateConfig(SolrConfig.scala:35) at util.config.Configurable$class.mergeReferenceAndSave(Configurable.scala:106) at collins.solr.SolrConfig$.mergeReferenceAndSave(SolrConfig.scala:7) at util.config.Configurable$class.initialize(Configurable.scala:43) at collins.solr.SolrConfig$.initialize(SolrConfig.scala:7) at util.config.Registry$$anonfun$validate$1.apply(Registry.scala:52) at util.config.Registry$$anonfun$validate$1.apply(Registry.scala:52) at scala.collection.Iterator$class.foreach(Iterator.scala:660) at scala.collection.JavaConversions$JIteratorWrapper.foreach(JavaConversions.scala:573) at scala.collection.IterableLike$class.foreach(IterableLike.scala:73) at scala.collection.JavaConversions$JCollectionWrapper.foreach(JavaConversions.scala:592) at util.config.Registry$.validate(Registry.scala:52) at collins.config.ConfigPlugin.onStart(ConfigPlugin.scala:14) at play.api.Play$$anonfun$start$1$$anonfun$apply$mcV$sp$1.apply(Play.scala:84) at play.api.Play$$anonfun$start$1$$anonfun$apply$mcV$sp$1.apply(Play.scala:84) at scala.collection.LinearSeqOptimized$class.foreach(LinearSeqOptimized.scala:59) at scala.collection.immutable.List.foreach(List.scala:45) at play.api.Play$$anonfun$start$1.apply$mcV$sp(Play.scala:84) at play.api.Play$$anonfun$start$1.apply(Play.scala:84) at play.api.Play$$anonfun$start$1.apply(Play.scala:84) at play.utils.Threads$.withContextClassLoader(Threads.scala:17) at play.api.Play$.start(Play.scala:83) at play.core.StaticApplication.(ApplicationProvider.scala:51) at play.core.server.NettyServer$.createServer(NettyServer.scala:136) at play.core.server.NettyServer$$anonfun$main$5.apply(NettyServer.scala:165) at play.core.server.NettyServer$$anonfun$main$5.apply(NettyServer.scala:164) at scala.Option.map(Option.scala:133) at play.core.server.NettyServer$.main(NettyServer.scala:164) at play.core.server.NettyServer.main(NettyServer.scala) Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=384m; support was removed in 8.0 Are you sure you're running java 7? Yes. I am using java 7. I am just guessing that the error is saying about the server machine it need to reach to start collins.... java.lang.IllegalArgumentException: requirement failed: solr.embeddedSolrHome '/Users/bmatheny/Downloads/collins/conf/solr' is not writable or not a directory Yes. I am using java 7. I am just guessing that the error is saying about the server machine it need to reach to start collins.... java.lang.IllegalArgumentException: requirement failed: solr.embeddedSolrHome '/Users/bmatheny/Downloads/collins/conf/solr' is not writable or not a directory As you can see "bmatheny" user. This problem got solved by editing the collins_conf_dir configuration in conf/production_starter.conf. Thanks for the help. Great glad you were able to figure it out @rajatm0303 But I am not able to start using collins. I am figuring out where I am getting wrong. I have successfully started collins.sh script. Last step was -- curl --basic -u blake:admin:first http://localhost:8080/api/admin/solr. When I run this command it shows be an error: curl: (7) couldn't connect to host. Now when I include a http_proxy for my office netwrok before this command. it doesn't give any error and nothing appears then. Can you please tell me how to use collins on my oracle linux 7. I can close this issue and open a new one if you want @Primer42 . When it started, did it say what port it was running on? There are two different default conf files floating around, one listens on 8080, and the other one listens on 9000. Try port 9000 and see if that works better. When I ran this command-- sudo /home/labview/Downloads/collins/scripts/collins.sh start Output was- Starting collins... [ OK ] And initially when I run ruby setup, it said Listen port= 8080 Hmmm OK. That's interesting. I'm not sure anything should appear when you use the api/admin/solr endopoint. What happens when you try to visit localhost:8080 in your browser? it says firefox can't establish a connection to server at localhost:8080 and I tried it with 9000 port also What did you say before about the http_proxy for your office? Is it possible your network and/or firewall is not allowing you to connect? I have disabled my firewall and I was specifying http_proxy=http://rmdc-proxy.oracle.com before that command to direct traffic through my private network proxy. This to me smells like a network issue. Assuming collins is running on your local machine, you should be able to use a browser to access the UI. Do you need to set up the same proxy on your browser? Can you try to hit other API endpoints, and see if you can get a response from them? So I got to know that my collins server is not running. It is giving an error: Im sorry, but it looks like you may be missing the unlimited strength Java Cryptography Extension. Unfortunately this is required for operations. You can find more details here http://www.bouncycastle.org/wiki/display/JA1/Frequently+Asked+Questions.] Can you please see over this ?? I problem was with Java cryptographic extension for java 7. Now it is working. Thanks for all your support.
gharchive/issue
2015-02-18T20:11:57
2025-04-01T06:46:05.330418
{ "authors": [ "Primer42", "rajatm0303" ], "repo": "tumblr/collins", "url": "https://github.com/tumblr/collins/issues/269", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
574811200
request js has been deprecated npm WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142 It looks like this library needs to migrate from requestjs, to something like AxiosJS. Ref: https://github.com/tumblr/tumblr.js/blob/master/package.json#L45 You may also consider dropping support for node versions prior to Node 10 perhaps with a new major version release of this npm module, since those versions of NodeJS are now in end-of-life: https://nodejs.org/en/about/releases Ref: https://github.com/tumblr/tumblr.js/blob/master/package.json#L15 Sent a message thru https://www.tumblr.com/support regarding this issue. Deprecation warnings introduced in projects if using tumblr.js: npm WARN deprecated har-validator@5.1.5: this library is no longer supported npm WARN deprecated uuid@3.4.0: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. npm WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142 Security warnings introduced in projects if using tumblr.js: npm audit report request * Severity: moderate Server-Side Request Forgery in Request - https://github.com/advisories/GHSA-p8p7-x288-28g6 Depends on vulnerable versions of tough-cookie No fix available node_modules/request tumblr.js * Depends on vulnerable versions of request node_modules/tumblr.js tough-cookie <4.1.3 Severity: moderate tough-cookie Prototype Pollution vulnerability - https://github.com/advisories/GHSA-72xf-g2v4-qvf3 No fix available node_modules/tough-cookie 3 moderate severity vulnerabilities Some issues need review, and may require choosing a different dependency. CVE-2023-26136 CVE-2023-28155 It looks like this library needs to migrate from requestjs, to something like AxiosJS. I would cast my vote on using fetch instead. more lightweight with a smaller Bundle Size. built right into all env. cloudflare worker, react native, Node, Deno, Bun. browsers and web workers and so on. Axios are very NodeJS/browser specific that only works with XHR or node:http(s) and service worker don't even have XHR either. ...only fetch API. Axios for browser don't even have streaming support b/c it depends on old XHR. I'm actively working on this. There should be a major release that removes the dependency on request in the next week or so. The request dependency has been removed on the default branch. I agree, it would be nice to use fetch, but it's still experimental in Node.js (at least in current LTS releases). Since this project targets Node.js, I went with Node's http/https request. how about using undici then? it would be simple to just dropping it once it's no longer needed. also it would more useful as a conditional import. i think it's best to avoid loading any nodejs specific dependencies if at all possible to better build cross comp packages const fetch = globalThis.fetch || await import('undici').then(mod => mod.fetch) ...or just let the developer bring in their own fetch impl coming from either node-fetch, undici, window or whatever. then ppl don't need to install any additional dependencies We can certainly look at changing what we use for network requests. If you're interested in that, please open an issue for it.
gharchive/issue
2020-03-03T17:03:51
2025-04-01T06:46:05.342680
{ "authors": [ "YasharF", "jimmywarting", "sirreal" ], "repo": "tumblr/tumblr.js", "url": "https://github.com/tumblr/tumblr.js/issues/91", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
387328378
Fix failed Contrail RBAC Tempest testcases This commit fixes issues found for US441924. The fixes are against Contrail 5.0.1. Change-Id: I94bc166ad9038087eb4839881f44c6f6d00b6c99 This depends on #4 I just moved this commit from ATT gerrit repo, but anyway I will take a look at your comments and will try to fix as much as possible Hi, is this tested and approved in ATT gerrit repo already? Also, we like to have pylint and flake report and test results. Please upload those. @aveeshek This is a copy of patch what is already merged into gerrit on Sep 6th: https://gerrit.mtn5.cci.att.com/gitweb?p=aic-contrail-tempest-plugin.git;a=commit;h=6519d19c57939a2ac02ebd80e951757a720706bb Anyway I don't understand how can we test pull requests? Do we have a special job for it? I see only one way - merge pull request, sync the repos (GitHub to gerrit) and after that we can test a change @aveeshek Here is pep8,pylint and py27 report: 09:08:06$ tox -epep8,pylint,py27 pep8 recreate: .../tungsten-tempest/.tox/pep8 pep8 installdeps: -r.../tungsten-tempest/test-requirements.txt pep8 develop-inst: .../tungsten-tempest pep8 installed: .../tungsten-tempest/.tox/pep8/bin/../lib/python3.7/site.py:165: DeprecationWarning: 'U' mode is deprecated, f = open(fullname, "rU"),.../tungsten-tempest/.tox/pep8/lib/python3.7/distutils/__init__.py:4: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses, import imp,.../tungsten-tempest/.tox/pep8/lib/python3.7/site-packages/pip/_vendor/html5lib/_trie/_base.py:3: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working, from collections import Mapping,asn1crypto==0.24.0,astroid==2.1.0,attrs==18.2.0,Babel==2.6.0,bcrypt==3.1.4,certifi==2018.11.29,cffi==1.11.5,chardet==3.0.4,cliff==2.14.0,cmd2==0.9.6,colorama==0.4.1,cryptography==2.4.2,debtcollector==1.20.0,extras==1.0.0,fasteners==0.14.1,fixtures==3.0.0,flake8==2.6.2,future==0.17.1,hacking==1.1.0,idna==2.7,iso8601==0.1.12,isort==4.3.4,jsonschema==2.6.0,lazy-object-proxy==1.3.1,linecache2==1.0.0,mccabe==0.6.1,monotonic==1.5,msgpack==0.6.0,netaddr==0.7.19,netifaces==0.10.7,oslo.concurrency==3.29.0,oslo.config==6.7.0,oslo.context==2.22.0,oslo.i18n==3.23.0,oslo.log==3.42.0,oslo.policy==1.42.0,oslo.serialization==2.28.1,oslo.utils==3.38.0,paramiko==2.4.2,patrole==0.4.0,pbr==5.1.1,prettytable==0.7.2,pyasn1==0.4.4,pycodestyle==2.0.0,pycparser==2.19,pyflakes==1.2.3,pylint==2.2.2,PyNaCl==1.3.0,pyparsing==2.3.0,pyperclip==1.7.0,python-dateutil==2.7.5,python-mimeparse==1.6.0,python-subunit==1.3.0,pytz==2018.7,PyYAML==3.13,requests==2.20.1,rfc3986==1.1.0,six==1.11.0,stestr==2.2.0,stevedore==1.30.0,tempest==19.0.0,testtools==2.3.0,traceback2==1.4.0,-e git+git@github.com:tungstenfabric/tungsten-tempest.git@204d90c74a0bb14d0dadf1e91dc826929b890b37#egg=tungsten_tempest,unittest2==1.1.0,urllib3==1.24.1,voluptuous==0.11.5,wcwidth==0.1.7,wrapt==1.10.11 pep8 runtests: PYTHONHASHSEED='498004114' pep8 runtests: commands[0] | flake8 .../tungsten-tempest/.tox/pep8/bin/../lib/python3.7/site.py:165: DeprecationWarning: 'U' mode is deprecated f = open(fullname, "rU") .../tungsten-tempest/.tox/pep8/lib/python3.7/site-packages/pycodestyle.py:111: FutureWarning: Possible nested set at position 1 EXTRANEOUS_WHITESPACE_REGEX = re.compile(r'[[({] | []}),;:]') .../tungsten-tempest/.tox/pep8/lib/python3.7/distutils/__init__.py:4: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses import imp pep8 runtests: commands[1] | check-uuid --package tungsten_tempest_plugin.tests.api .../tungsten-tempest/.tox/pep8/bin/../lib/python3.7/site.py:165: DeprecationWarning: 'U' mode is deprecated f = open(fullname, "rU") .../tungsten-tempest/.tox/pep8/lib/python3.7/site-packages/oslo_config/cfg.py:1913: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working class ConfigOpts(collections.Mapping): .../tungsten-tempest/.tox/pep8/lib/python3.7/site-packages/babel/localedata.py:17: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working from collections import MutableMapping .../tungsten-tempest/.tox/pep8/lib/python3.7/distutils/__init__.py:4: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses import imp .../tungsten-tempest/.tox/pep8/lib/python3.7/site-packages/jsonschema/compat.py:6: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working from collections import MutableMapping, Sequence # noqa 2018-12-06 09:09:09.358 14118 INFO tempest [-] Using tempest config file /etc/tempest/tempest.conf pylint develop-inst-nodeps: .../tungsten-tempest pylint installed: .../tungsten-tempest/.tox/pylint/bin/../lib/python3.7/site.py:165: DeprecationWarning: 'U' mode is deprecated, f = open(fullname, "rU"),.../tungsten-tempest/.tox/pylint/lib/python3.7/distutils/__init__.py:4: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses, import imp,.../tungsten-tempest/.tox/pylint/lib/python3.7/site-packages/pip/_vendor/html5lib/_trie/_base.py:3: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working, from collections import Mapping,asn1crypto==0.24.0,astroid==2.1.0,attrs==18.2.0,Babel==2.6.0,bcrypt==3.1.4,certifi==2018.11.29,cffi==1.11.5,chardet==3.0.4,cliff==2.14.0,cmd2==0.9.6,colorama==0.4.1,cryptography==2.4.2,debtcollector==1.20.0,extras==1.0.0,fasteners==0.14.1,fixtures==3.0.0,flake8==2.6.2,future==0.17.1,hacking==1.1.0,idna==2.7,iso8601==0.1.12,isort==4.3.4,jsonschema==2.6.0,lazy-object-proxy==1.3.1,linecache2==1.0.0,mccabe==0.6.1,monotonic==1.5,msgpack==0.6.0,netaddr==0.7.19,netifaces==0.10.7,oslo.concurrency==3.29.0,oslo.config==6.7.0,oslo.context==2.22.0,oslo.i18n==3.23.0,oslo.log==3.42.0,oslo.policy==1.42.0,oslo.serialization==2.28.1,oslo.utils==3.38.0,paramiko==2.4.2,patrole==0.4.0,pbr==5.1.1,prettytable==0.7.2,pyasn1==0.4.4,pycodestyle==2.0.0,pycparser==2.19,pyflakes==1.2.3,pylint==2.2.2,PyNaCl==1.3.0,pyparsing==2.3.0,pyperclip==1.7.0,python-dateutil==2.7.5,python-mimeparse==1.6.0,python-subunit==1.3.0,pytz==2018.7,PyYAML==3.13,requests==2.20.1,rfc3986==1.1.0,six==1.11.0,stestr==2.2.0,stevedore==1.30.0,tempest==19.0.0,testtools==2.3.0,traceback2==1.4.0,-e git+git@github.com:tungstenfabric/tungsten-tempest.git@204d90c74a0bb14d0dadf1e91dc826929b890b37#egg=tungsten_tempest,unittest2==1.1.0,urllib3==1.24.1,voluptuous==0.11.5,wcwidth==0.1.7,wrapt==1.10.11 pylint runtests: PYTHONHASHSEED='498004114' pylint runtests: commands[0] | pylint tungsten_tempest_plugin .../tungsten-tempest/.tox/pylint/bin/../lib/python3.7/site.py:165: DeprecationWarning: 'U' mode is deprecated f = open(fullname, "rU") .../tungsten-tempest/.tox/pylint/lib/python3.7/site-packages/astroid/interpreter/_import/spec.py:12: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses import imp .../tungsten-tempest/.tox/pylint/lib/python3.7/site-packages/isort/pie_slice.py:362: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working class OrderedSet(collections.MutableSet): .../tungsten-tempest/.tox/pylint/lib/python3.7/site-packages/pylint/reporters/text.py:174: DeprecationWarning: parseable output format is deprecated. This is equivalent to --msg-template={path}:{line}: [{msg_id}({symbol}), {obj}] {msg} DeprecationWarning, -------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) py27 develop-inst-nodeps: .../tungsten-tempest py27 installed: asn1crypto==0.24.0,astroid==1.6.5,Babel==2.6.0,backports.functools-lru-cache==1.5,bcrypt==3.1.4,certifi==2018.11.29,cffi==1.11.5,chardet==3.0.4,cliff==2.14.0,cmd2==0.8.9,configparser==3.5.0,contextlib2==0.5.5,cryptography==2.4.2,debtcollector==1.20.0,enum34==1.1.6,extras==1.0.0,fasteners==0.14.1,fixtures==3.0.0,flake8==2.6.2,funcsigs==1.0.2,functools32==3.2.3.post2,future==0.17.1,futures==3.2.0,hacking==1.1.0,idna==2.7,ipaddress==1.0.22,iso8601==0.1.12,isort==4.3.4,jsonschema==2.6.0,lazy-object-proxy==1.3.1,linecache2==1.0.0,mccabe==0.6.1,monotonic==1.5,msgpack==0.6.0,netaddr==0.7.19,netifaces==0.10.7,oslo.concurrency==3.29.0,oslo.config==6.7.0,oslo.context==2.22.0,oslo.i18n==3.23.0,oslo.log==3.41.0,oslo.policy==1.41.1,oslo.serialization==2.28.1,oslo.utils==3.37.1,paramiko==2.4.2,patrole==0.4.0,pbr==5.1.1,prettytable==0.7.2,pyasn1==0.4.4,pycodestyle==2.0.0,pycparser==2.19,pyflakes==1.2.3,pylint==1.9.3,PyNaCl==1.3.0,pyparsing==2.3.0,pyperclip==1.7.0,python-dateutil==2.7.5,python-mimeparse==1.6.0,python-subunit==1.3.0,pytz==2018.7,PyYAML==3.13,requests==2.20.1,rfc3986==1.1.0,singledispatch==3.4.0.3,six==1.11.0,stestr==2.2.0,stevedore==1.30.0,subprocess32==3.5.3,tempest==19.0.0,testtools==2.3.0,traceback2==1.4.0,-e git+git@github.com:tungstenfabric/tungsten-tempest.git@204d90c74a0bb14d0dadf1e91dc826929b890b37#egg=tungsten_tempest,unicodecsv==0.14.1,unittest2==1.1.0,urllib3==1.24.1,voluptuous==0.11.5,wcwidth==0.1.7,wrapt==1.10.11 py27 runtests: PYTHONHASHSEED='498004114' py27 runtests: commands[0] | find . -type f -name '*.pyc' -delete _________________________________________________________________________________________________ summary __________________________________________________________________________________________________ pep8: commands succeeded pylint: commands succeeded py27: commands succeeded congratulations :)```
gharchive/pull-request
2018-12-04T15:03:09
2025-04-01T06:46:05.368422
{ "authors": [ "SVilgelm", "aveeshek" ], "repo": "tungstenfabric/tungsten-tempest", "url": "https://github.com/tungstenfabric/tungsten-tempest/pull/5", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1215676625
Dart 3 support & Fix icon white line and add shadow for dark theme Hello, Thanks for your great work. I would like to submit two fixes with icons in the navigation bar: look at an icon carefully, and you will observe there is a white line (at the top edge of the navigation bar); add shadow for selected icon for dark themes Thanks. Hello, Could you merge this PR please? Changelog: Update dependencies( & support for Dart 3) Migrate the example to to the V2 embedding Fix UI issues (cf my previous message) Thanks.
gharchive/pull-request
2022-04-26T09:34:25
2025-04-01T06:46:05.371613
{ "authors": [ "Eimji" ], "repo": "tunitowen/fancy_bottom_navigation", "url": "https://github.com/tunitowen/fancy_bottom_navigation/pull/69", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1852279856
Add Result.NonEmpty This adds the matching functions for Result that are included in Maybe.NonEmpty. Note that traverseNe is here called combineMapNe, since Maybe.Extra calls it traverse while Result.Extra calls it combineMap. It might of course be preferable to be consistent in naming within this package, rather than match the inconsistent naming conventions of the source packages. released as 1.4.0
gharchive/pull-request
2023-08-15T23:27:02
2025-04-01T06:46:05.373888
{ "authors": [ "SiriusStarr", "turboMaCk" ], "repo": "turboMaCk/non-empty-list-alias", "url": "https://github.com/turboMaCk/non-empty-list-alias/pull/28", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
424226328
NullPointerException Radiation Created new world and after few secs game crashed https://paste.dimdev.org/makihemoza.mccrash NuclearCraft should check the type of ray trace result before using the position in the result. https://github.com/turbodiesel4598/NuclearCraft/blob/f186fbeaf8c432a0644f817cb55f1780785c1095/src/main/java/nc/radiation/RadiationRenders.java#L154 Ah, this is actually a duplicate of #476 Fixed - will get a new build out now!
gharchive/issue
2019-03-22T14:06:30
2025-04-01T06:46:05.376004
{ "authors": [ "Blatts12", "liach", "turbodiesel4598" ], "repo": "turbodiesel4598/NuclearCraft", "url": "https://github.com/turbodiesel4598/NuclearCraft/issues/477", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1819675551
Steampipe doesn't, but now can, support AWS SSO / Identity Center credentials Describe the bug Steampipe doesn't support sso-session settings in AWS config files. AWS Docs here, More background: https://github.com/aws/aws-cli/pull/7364 Steampipe version (steampipe -v) v0.20.9 To reproduce Configure aws cli as documented above. Steampipe will have an error like: ERROR: rpc error: code = Unknown desc = operation error Route 53: ListHostedZones, failed to sign request: failed to retrieve credentials: failed to refresh cached credentials, operation error SSO: GetRoleCredentials, https response error StatusCode: 400, RequestID: 18524593-c0ec-4cab-8fd3-ee37ace064a5, InvalidRequestException: RoleName must be supplied in the queryString params Expected behavior Steampipe should be able to access AWS APIs and return data. Additional context The support was recently added to the SDK in version 1.44.298: https://github.com/aws/aws-sdk-go/pull/4904 @neh, Sincere apology for the long silence on it. Is this still an issue for you, or were you able to resolve this? We can configure the SSO profile in Steampipe for multiple accounts and query the same. Did I miss interpreting any key points from the provided info? Can you please elaborate more? Please share your sample aws.spc & .aws/config files after obfuscating sensitive info from them. This will help to reproduce. Have you looked into this https://hub.steampipe.io/plugins/turbot/aws#aws-sso-credentials? Thanks for checking in, @rajlearner17. This doesn't look to be resolved yet, no. It will require an AWS SDK update, as mentioned in my original message. Once updated, this will allow usage of sso-session configurations supported by the newer AWS CLI/SDK (also linked in my first message). Hey @neh, I was not able to reproduce the above; I have followed the below steps - Here is my config file - Configured SSO with sso_session [profile sso-test] sso_session = test-sso sso_account_id = 2608******12 sso_role_name = SSO-Admin region = us-east-1 [sso-session test-sso] sso_start_url = https://d-9a********42.awsapps.com/start# sso_region = us-east-2 sso_registration_scopes = sso:account:access Here is my aws.spc file - connection "aws" { profile = "sso-test" regions = ["*"] plugin = "aws" } CLI output - ➜ steampipe ✗ aws s3 ls --profile sso-test 2022-07-25 15:29:25 aws-cloudtrail-logs-260848204312-ad80af06 2023-08-28 17:34:08 cf-templates-4rtkbeftz71s-ap-south-1 2022-07-12 00:07:24 elasticbeanstalk-us-east-1-260848204312 2023-01-31 16:25:35 elasticbeanstalk-us-east-2-260848204312 2023-09-26 17:06:08 raj-docker-test 2023-06-29 18:06:13 steampipe-expected-tag-alarm-pc 2023-06-29 18:19:36 steampipe-other-tags-test-pc 2023-06-29 17:33:48 steampipe-tag-test-pc Steampipe query output - > select organization_id, arn, organization_feature_set from aws_account +-----------------+------------------------+--------------------------+ | organization_id | arn | organization_feature_set | +-----------------+------------------------+--------------------------+ | o-c3a243000241 | arn:aws:::2608400082 | ALL | +-----------------+------------------------+--------------------------+ Please let me know if I missed anything. Interesting. I haven't had a chance to retest again yet, but I had assumed that it wouldn't work without AWS SDK version 1.44.298, and didn't work for me at the time of my last update (after updating steampipe and the plugins, of course). I'll test again as soon as I can though. @neh, We are closing this issue as we have not heard from you. Please feel free to reopen the issue if you want to share or discuss anything.
gharchive/issue
2023-07-21T22:37:37
2025-04-01T06:46:05.385233
{ "authors": [ "bigdatasourav", "neh", "rajlearner17" ], "repo": "turbot/steampipe-plugin-aws", "url": "https://github.com/turbot/steampipe-plugin-aws/issues/1855", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1089420585
HA ругается варнингами 2021-12-27 21:51:44 WARNING (MainThread) [homeassistant.helpers.entity] Entity binary_sensor.хххххххххх_hood (<class 'custom_components.pandora_cas.binary_sensor.PandoraBinarySensorEntity'>) implements device_state_attributes. Please report it to the custom component author. Home Assistant 2021.12.5 Исправил в 1.4.4
gharchive/issue
2021-12-27T19:02:38
2025-04-01T06:46:05.388647
{ "authors": [ "Daemon256", "turbulator" ], "repo": "turbulator/pandora-cas", "url": "https://github.com/turbulator/pandora-cas/issues/11", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2003702070
Support for z.readonly() There is currently no support for returning readonly arrays/object. This can be modelled with zod using e.g. z.array(...).readonly() since zod version 3.22.0. When using .readonly the resulting schema would be empty due to missing support from zod-to-json-schema. I raised this issue with zod-to-json-schema here: https://github.com/StefanTerdell/zod-to-json-schema/issues/90 Now that the issue has been fixed with zod-to-json-schema version 3.22.0, support can be added to fastify-type-provider-zod simply by upgrading to version 3.22.0 as well. @thorhj can you send a PR with test? @kibertoad Yes, but I don't have a lot of time currently so it may take some time 🥲
gharchive/issue
2023-11-21T08:17:53
2025-04-01T06:46:05.393998
{ "authors": [ "kibertoad", "thorhj" ], "repo": "turkerdev/fastify-type-provider-zod", "url": "https://github.com/turkerdev/fastify-type-provider-zod/issues/67", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1334230763
Stagger parallel uploads Is your feature request related to a problem? Please describe. The problem we ran into at Skynet Labs was that our server was taking a few seconds to process each chunk after uploading. Because parallel chunks would start and end at roughly the same time, there were considerable gaps in the upload. Describe the solution you'd like We implemented a scheduling algorithm to optimally stagger the chunks. This is off by default and the stagger amount is configurable by the user. We already implemented this in our fork, just let me know if there is interest in a PR. If this feature is too niche, feel free to close this issue. Describe alternatives you've considered None that we could think of. Our staggering algorithm resulted in significant improvements in total upload times. Can you provide help with implementing this feature? We already implemented this feature, just checking for interest on your end. No worries if this is too niche -- we personally found it extremely useful, despite the added complexity. Additional context The first gap is the biggest because both uploads finish at approximately the same time. But then the gaps become smaller since the uploads shift a bit. What we did was finetune to start only one upload and once that upload is almost done, it kicks off the parallel one. Then when that one is done it uploads a chunk for the first one again. This resulted in a pretty amazing upload experience. Thank you for working with us on https://github.com/tus/tus-js-client/pull/299! Interesting proposal, but I still do not fully understand what it is about? Did you implement a feature which can schedule/trigger the beginning of the upload of different partial parts? I am not sure how this could yield an improvement in upload times. Also, I don't know to make of the included graphic. All in all, this is quite confusing for me right now. You might also be able to implement this scheduling directly without modifications by returning a Promise in the onBeforeRequest callback and only resolving the Promise if the associated upload should begin. Did you implement a feature which can schedule/trigger the beginning of the upload of different partial parts? Yes, specifically we were scheduling each individual chunk within the parts. I am not sure how this could yield an improvement in upload times. If we had 2+ chunks going in parallel, they would tend to complete at the same time. Our server was then processing for a few seconds after having received the chunks, and during this time no uploading was occurring. Also, we found that the throughput was the same whether we had 2+ chunks in parallel or just one at once -- the only benefit of parallel uploads for us was in filling in the gaps in uploading. You might also be able to implement this scheduling directly without modifications by returning a Promise in the onBeforeRequest callback and only resolving the Promise if the associated upload should begin. Interesting, I think that would probably work for most use cases. We needed to optimize it a bit more because, in combination with #299, we had some parts that were different in size and we wanted to schedule the larger parts, first. I'm thinking this is probably much too niche for our specific use case so I'll go ahead and close it. Thanks for taking the time!
gharchive/issue
2022-08-10T07:58:34
2025-04-01T06:46:05.417343
{ "authors": [ "Acconut", "m-cat" ], "repo": "tus/tus-js-client", "url": "https://github.com/tus/tus-js-client/issues/443", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
2172867706
n-transfer 使用 n-table 自定义列表,n-data-table 会缺少一行或遮住了 n-data-table-header 描述错误 问题原因是因为 n-transfer 对 n-scrollbar 进行了 position 定位,导致穿透到 n-table 中的 n-scrollbar 也进行了定位,n-data-table-body 会顶上去把 n-data-table-header 覆盖。 复现步骤 <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <script src="https://unpkg.com/vue"></script> <!-- 会使用最新版本,你最好指定一个版本 --> <script src="https://unpkg.com/naive-ui"></script> </head> <body> <div id="app"> <n-transfer :render-source-list="renderSourceList" :options="options" v-model:value="checked"> </n-transfer> </div> <script> const App = { setup() { function createOptions () { return Array.from({ length: 100 }).map((v, i) => ({ label: 'Option ' + i, value: i, disabled: false })) } const options = createOptions(); const checked = Vue.ref([]); console.log(options) const renderSourceList = ({ onCheck }) => { return Vue.h(naive.NDataTable, { columns: [{type: 'selection'},{key: 'label', title: '名称', width: 120}, {key: 'value', title: '值', width: 120}], data: options, style: 'height: 200px;', maxHeight: 250, rowKey: rowData => rowData.value, checkedRowKeys: checked.value, virtualScroll: true, 'onUpdate:checkedRowKeys': (keys) => { onCheck(keys); } }) } return { message: 'naive', renderSourceList, options, checked } } } const app = Vue.createApp(App) app.use(naive) app.mount('#app') </script> </body> </html> 最小复现链接 https://code.juejin.cn/pen/7343451156616511515 系统信息 System: OS: Windows 10 10.0.19045 CPU: (2) x64 Intel(R) Core(TM) i3-9100 CPU @ 3.60GHz Memory: 4.06 GB / 8.00 GB Binaries: Node: 20.10.0 - C:\Program Files\nodejs\node.EXE npm: 10.2.3 - C:\Program Files\nodejs\npm.CMD pnpm: 8.13.1 - C:\Program Files\nodejs\pnpm.CMD Browsers: Edge: Chromium (122.0.2365.66) Internet Explorer: 11.0.19041.3636 使用的包管理器 pnpm 验证 [x] 阅读 贡献指南。 [X] 阅读 文档。 [X] 检查是否已经存在相同问题的问题,以避免创建重复的问题。 [X] 确保这是一个具体的 bug。有关问题和答案,请打开 GitHub 讨论。 [X] 提供的复现是最小可复现的示例。 Provide a based on CodeSandbox or stackblitz [Minimal, Reproducible Example] (https://stackoverflow.com/help/minimal-reproducible-example) This issue does not have any recent activity. If you are still experiencing similar problems, open a new error, including a minimal copy of the problem
gharchive/issue
2024-03-07T03:27:49
2025-04-01T06:46:05.424548
{ "authors": [ "JasonYadi", "jahnli" ], "repo": "tusen-ai/naive-ui", "url": "https://github.com/tusen-ai/naive-ui/issues/5761", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2577445515
能否做一个类似prochat的组件 问题的清晰而简明的描述 一个对话组件,支持markdown显示,代码高亮,打字输出这些。 建议的解决方案 类似prochat就好,https://pro-chat.antdigital.dev/ 备选方案 No response 附加上下文 No response 验证 [X] 阅读 贡献指南。 [X] 阅读 文档。 [X] 检查是否已经存在请求相同功能的问题,以避免创建重复的问题。 No plans as far as I know, but PR is welcome
gharchive/issue
2024-10-10T03:36:31
2025-04-01T06:46:05.428219
{ "authors": [ "jahnli", "swit1983" ], "repo": "tusen-ai/naive-ui", "url": "https://github.com/tusen-ai/naive-ui/issues/6449", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
694606565
cannot use r.db (type *"gorm.io/gorm".DB) as type *"github.com/jinzhu/gorm".DB I'm trying to build tutorial app using copper but following error occured. func (r *PostsRepo) GetPostByID(ctx context.Context, id string) (*Post, error) { db := csql.GetConn(ctx, r.db) fmt.Println(db) return nil, nil } .\main.go:30:27: cannot use r.db (type *"gorm.io/gorm".DB) as type *"github.com/jinzhu/gorm".DB in argument to csql.GetConn Hi @mattn, can you make sure that you are using github.com/jinzhu/gorm in your import statements and try again? I believe the gorm repository has moved to use gorm.io/gorm but Copper has not been updated yet to use that yet. You use github.com/jinzhu/gorm here. https://github.com/tusharsoni/copper/blob/7d4e7be0368e2c3e575b6dc89ff33f3296ac6a43/csql/sql.go#L9 Also here https://github.com/tusharsoni/copper/blob/7d4e7be0368e2c3e575b6dc89ff33f3296ac6a43/csql/conn.go#L6 Ah, sorry. I did not read your mention. I believe the gorm repository has moved to gorm.io/gorm but Copper has not been updated to use that yet. Yes, I'm waiting the fix. Thank you. :) This should now be fixed in ffe3eeb10fa01b35cd165a607921173467b2b2a9! Thank you!
gharchive/issue
2020-09-07T01:15:01
2025-04-01T06:46:05.433773
{ "authors": [ "mattn", "tusharsoni" ], "repo": "tusharsoni/copper", "url": "https://github.com/tusharsoni/copper/issues/1", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2533242432
確定注文の表示する順番を逆にする app/templates/components/placements.html でfor文のリストを逆転させればできるかも Resolved in #30
gharchive/issue
2024-09-18T09:44:36
2025-04-01T06:46:05.436638
{ "authors": [ "exflikt" ], "repo": "tut-cc/murchace", "url": "https://github.com/tut-cc/murchace/issues/25", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1116788834
🛑 Prometheus is down In f41fcca, Prometheus (https://prometheus.eighty-three.me) was down: HTTP code: 523 Response time: 3053 ms Resolved: Prometheus is back up in fa2d8dc.
gharchive/issue
2022-01-27T22:12:36
2025-04-01T06:46:05.464483
{ "authors": [ "tuxpeople" ], "repo": "tuxpeople/monitoring", "url": "https://github.com/tuxpeople/monitoring/issues/710", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
95249055
allowBackup="true" Hi, is there any reason why you are setting the allowBackup to true in the AndroidManifest.xml? company policy requires me to set this flag as false Nice catch ! We will set the allowBackup attribute to false in the next release. Thanks =) thank you looking forward to it Hi @edward-s I did not have the time to update the library, but here is a solution to set the allowBackup flag to false. It simply relies on the "replace" attributs: <?xml version="1.0" encoding="utf-8"?> <manifest package="com.your.package" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools"> <application android:allowBackup="false" tools:replace="allowBackup"> ... </application> </manifest> I have just tested this solution on one of my project, and it seems to work perfectly. Please let me know if this also works for you =) Happy coding, Vincent.
gharchive/issue
2015-07-15T17:37:00
2025-04-01T06:46:05.469605
{ "authors": [ "edward-s", "vbarthel-fr" ], "repo": "tvbarthel/BlurDialogFragment", "url": "https://github.com/tvbarthel/BlurDialogFragment/issues/38", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
1338263536
windows版本妙言安装包 您好,在windows上尝试妙言,发现打包的dmg文件适用于mac,需要用户转换一下,发版有精力的话,能否支持一下windows的安装包,谢谢。 抱歉 妙言不支持windows
gharchive/issue
2022-08-14T14:31:56
2025-04-01T06:46:05.487931
{ "authors": [ "Olivert007", "tw93" ], "repo": "tw93/MiaoYan", "url": "https://github.com/tw93/MiaoYan/issues/118", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1489302144
your session has expired 假如出现 「Your session has expired」 错误,大概率是 OpenAi 这边的限制导致,官方也有这个问题 对于Pake而言,只需要退出重建重新试试应该就好了
gharchive/issue
2022-12-11T02:32:53
2025-04-01T06:46:05.489137
{ "authors": [ "Gensiss", "tw93" ], "repo": "tw93/Pake", "url": "https://github.com/tw93/Pake/issues/141", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
384063559
Can Bootstrap support the Offcanvas in Examples / Experiments I have been trying out the offcanvas experiment example with great success under: https://getbootstrap.com/docs/4.1/examples/offcanvas/ I think these navbar provide the best user experience and I plan to add this to all of the websites I work on. I added a slight modification, make it slide ~80% instead of 100% so you still see the content behind the nav menu. My request is that this will be supported by giving it a section in the 'normal' docs + with code examples. It took me an hour to hack it into my page + finding a way to close the menu by clicking outside the navbar (the last 20% on the screen) Code example to close the menu by clicking outside found online + slight modification: $(document).click(function (event) { var clickover = $(event.target); var _opened = $(".offcanvas-collapse").hasClass("open"); if (_opened === true && !clickover.hasClass("navbar-toggler-icon")) { $('.offcanvas-collapse').toggleClass('open'); } }); This is related to a lot of discussion, for example: #24718 I could not find why is this an experiment, but not a feature? Are there plans to add it? I also saw a discussion about creating a new component, but this seems almost complete to me. The thing is this can have many variations. The JS part is very simple, the problem is having this as a CSS component mostly. /CC @twbs/css-review Another suggestion: what about being able to collapse to the sides, instead of only down like the current navbar does now? So when using the navbar, it could be possible to use .navbar-collapse-right-left or .navbar-collapse-left-right Has something like this be discussed before? Then the developer could just override CSS, for how far he wants to slide the menu like I mentioned above (I personally slide it 70-80% etc.) Default right / left slide could be 80% or even 100%. Is the left-right collapse so much different from the currently used up-down, that we cannot offer it? https://getbootstrap.com/docs/4.1/components/navbar/ There are other issues and PRs open for an offcanvas, drawer style component. Closing this one out since yes, we do want it, but we need to decide how best to implement it.
gharchive/issue
2018-11-25T09:42:23
2025-04-01T06:46:05.497368
{ "authors": [ "XhmikosR", "mdo", "viktorsmari" ], "repo": "twbs/bootstrap", "url": "https://github.com/twbs/bootstrap/issues/27721", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
407631413
3.7 Customize Broken 3.7 isn't a valid version if you meant 3.3.7, you are out of luck, it'll be broken, so just use 3.4.0.
gharchive/issue
2019-02-07T10:29:47
2025-04-01T06:46:05.499754
{ "authors": [ "XhmikosR", "chrisbo" ], "repo": "twbs/bootstrap", "url": "https://github.com/twbs/bootstrap/issues/28198", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
69633332
Update popover.js by adding getTitle function. Fix issue of missing title in Popover.js Tests failed. Automated cross-browser testing via Sauce Labs and Travis CI shows that the JavaScript changes in this pull request are: BUSTED Commit: c5395b6ed4d812a566e4bfe766f0f725283d3ade Build details: https://travis-ci.org/twbs-savage/bootstrap/builds/59275018 (Please note that this is a fully automated comment.) Popover inherits from Tooltip, which already defines this method. Please give an example of the alleged bug that your PR fixes. Closing since this doesn't seem necessary and the tests are failing.
gharchive/pull-request
2015-04-20T17:08:12
2025-04-01T06:46:05.503112
{ "authors": [ "cvrebert", "jinxuejim", "twbs-savage" ], "repo": "twbs/bootstrap", "url": "https://github.com/twbs/bootstrap/pull/16319", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
249562796
Update docs Rubygems version to beta Fixes #23292 @XhmikosR https://github.com/twbs/bootstrap/pull/23300 Sorry that is just wrong. Push here. I went ahead and did it manually, but it would be nice if you got the gist of how things work for future contributions.
gharchive/pull-request
2017-08-11T07:57:52
2025-04-01T06:46:05.504866
{ "authors": [ "XhmikosR", "kukac7" ], "repo": "twbs/bootstrap", "url": "https://github.com/twbs/bootstrap/pull/23289", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
380699576
enforce lowercase class name in .stylelintrc "selector-class-pattern": "^[a-z]+([a-z0-9]?|[a-z0-9\\-]*[a-z0-9])$" I think this could be a useful addition, to prevent the use of a class name against the projects guidelines - mixed case or using underscores etc. REF: http://codeguide.co/#css-classes I think ^[a-z][a-z0-9\\-]*[a-z0-9]$ should do the job? @coliff, can you add an exception to _syntax.scss? I believe this regex needs more work, so don't merge this yet. OK, it seems the regex was fine after all: https://regex101.com/r/m7ynnv/3
gharchive/pull-request
2018-11-14T13:32:23
2025-04-01T06:46:05.507743
{ "authors": [ "MartijnCuppens", "XhmikosR", "coliff" ], "repo": "twbs/bootstrap", "url": "https://github.com/twbs/bootstrap/pull/27668", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1928792420
README instructions don't work Describe the bug Follow README instructions, it fails at init. To Reproduce $ nix flake init -t github:tweag/tf-ncl#hello-tf $ nix run .#terraform -- hello-tf.ncl init error: flake '...' does not provide attribute 'apps.x86_64-linux.terraform', 'packages.x86_64-linux.terraform', 'legacyPackages.x86_64-linux.terraform' or 'terraform' Expected behavior Should init. Then after diff --git a/infra/flake.nix b/infra/flake.nix index 7211af4..1084327 100644 --- a/infra/flake.nix +++ b/infra/flake.nix @@ -13,6 +13,7 @@ outputs = inputs: inputs.utils.lib.eachDefaultSystem (system: { + packages.terraform = inputs.tf-ncl.packages.${system}.terraform; devShell = inputs.tf-ncl.lib.${system}.mkDevShell { providers = p: { inherit (p) null gcp; I get $ nix run .#terraform -- hello-tf.ncl init Terraform has no command named "hello-tf.ncl". To see all of Terraform's top-level commands, run: terraform -help Ah, I neglected to update the README in #43. The equivalent should be nix develop -c run-terraform init etc. If you enter the dev shell using nix develop it also prints a message to that effect. I'll update the README 👍
gharchive/issue
2023-10-05T17:57:32
2025-04-01T06:46:05.511782
{ "authors": [ "GuillaumeDesforges", "vkleen" ], "repo": "tweag/tf-ncl", "url": "https://github.com/tweag/tf-ncl/issues/59", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
139116993
add missing streaming.py link links streaming.py file from examples directory PR contained error in reference as Harmon758 described.
gharchive/pull-request
2016-03-07T22:42:53
2025-04-01T06:46:05.513527
{ "authors": [ "snitzr" ], "repo": "tweepy/tweepy", "url": "https://github.com/tweepy/tweepy/pull/708", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
343488998
No License Hi, Please consider adding a license to your code so that others may use it. I'm particularly interested in the Generalized fast generation algorithm for filter widths > 2 but the lack of a license is a blocker for myself and I imagine others. ok, it's done. Thank you!
gharchive/issue
2018-07-23T05:06:06
2025-04-01T06:46:05.522274
{ "authors": [ "SPGB", "twidddj" ], "repo": "twidddj/tf-wavenet_vocoder", "url": "https://github.com/twidddj/tf-wavenet_vocoder/issues/7", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
506997454
Add my new pixel Checklist [x] I ran npm test locally and it passed without errors. [x] I only edited the _data/pixels.json file. [x] I entered the username in the pixels.json that I'm also using to create this pull request. [x] I acknowledge that all my contributions will be made under the project's license. hi there, it looks like you've already added a pixel in another pull request. We only allow users to add one pixel so I'm going to close this out. Thanks.
gharchive/pull-request
2019-10-15T04:28:47
2025-04-01T06:46:05.535182
{ "authors": [ "annthurium", "decoded-petal" ], "repo": "twilio-labs/open-pixel-art", "url": "https://github.com/twilio-labs/open-pixel-art/pull/1156", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
641339718
Apple AirPods do not show up as bluetooth device when connected Describe the bug Apple AirPods do not show up in availableDevices when connected to an Android phone. (Apparently they work with Android devices) 😄 To Reproduce Steps to reproduce the behavior: Connect a pair of Airpods to Android devices Start audio device selector Query availableDevices Expected behavior Airpods should show up in the available devices. Actual behavior Airpods do not show up as an available devices Version Version: 0.1.4 Additional context Originally reported in #28 I tested this on a Pixel 3 running AudioSwitch 0.1.4, and I was able to successfully connect a pair of Air Pods with audio output routing to it. I was also able to see the correct device name as shown in the following screenshots. @aaalaniz Closing this issue for now. I'm thinking we should prioritize the multiple bluetooth device support story as the reported issues appear to be related to connecting multiple devices at once. Hey What I said in the issue #28 is not what is describe here. It's possible to connect and see AirPods, but sometimes, the name displayed is the name of another bluetooth device, in this case my watch. But it's random, that's why you didn't had the issue @Alton09 Can you please re-open the issue ? Hey @alizeec I think what are you describing relates to supporting multiple Bluetooth devices #15. I think the reason you occasionally don't see the AirPods is because the library will only add one Bluetooth device to the availableDevices. We have a story in our backlog to improve support for multiple bluetooth devices. Thanks! Hey @aaalaniz If the library detects only my watch, how can the audio be properly routed to my AirPods ? Thanks @alizeec Since the library currently only supports a single connected bluetooth device, you should get consistent behavior if you just connect just your AirPods. Please keep an eye out for #15 as we are planning to provide support for multiple bluetooth devices. Thanks!
gharchive/issue
2020-06-18T16:02:31
2025-04-01T06:46:05.547036
{ "authors": [ "Alton09", "aaalaniz", "alizeec" ], "repo": "twilio/audioswitch", "url": "https://github.com/twilio/audioswitch/issues/32", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1270893959
[23648] NSErrors removed and added new specific errors. == Keep in mind the idea is to discuss this PR at Wednesday meeting, I understand this a complicated one == Ticket [23648] Github Issue n/a Description Removed all usage of NSError Replacing generic NSErrors being thrown from low layers to specific custom Error A few forced optional operations fixed just to prevent any case of null pointer exception All unit tests updated No changes were required for demo app Since Error is not comparable, I had to add EquatableError struct to keep tests consistent Commit message update: NSErrors removed and added new specific errors. Testing [ ] Added unit tests [x] Ran unit tests successfully [x] Added documentation for public APIs and/or Wiki 1 Warning :warning: Big PR Code coverage Total coverage: 93.55% File Coverage TwilioVerifySDK/TwilioSecurity/Sources/Keychain/KeyManager.swift 85.71% TwilioVerifySDK/TwilioSecurity/Sources/Keychain/Keychain.swift 88.82% TwilioVerifySDK/TwilioSecurity/Sources/Storage/SecureStorage.swift 84.15% TwilioVerifySDK/TwilioVerify/Sources/Data/KeyStorage.swift 92.50% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/ChallengeFacade.swift 96.63% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/ChallengeListMapper.swift 95.83% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/ChallengeMapper.swift 97.67% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/PushChallengeProcessor.swift 96.91% TwilioVerifySDK/TwilioVerify/Sources/Domain/Factor/FactorFacade.swift 97.62% TwilioVerifySDK/TwilioVerify/Sources/Domain/Factor/FactorMapper.swift 100.00% TwilioVerifySDK/TwilioVerify/Sources/Domain/Factor/PushFactory.swift 98.83% TwilioVerifySDK/TwilioVerify/Sources/Domain/Manager/TwilioVerify.swift 78.12% TwilioVerifySDK/TwilioVerify/Sources/Errors/OperationErrors.swift 96.15% TwilioVerifySDK/TwilioVerify/Sources/Networking/Authentication.swift 100.00% TwilioVerifySDK/TwilioVerify/Sources/TwilioVerifyError.swift 94.32% Powered by Slather Generated by :no_entry_sign: Danger @mejiagarcia Please include your github in the CODEOWNERS file 1 Warning :warning: Big PR Code coverage Total coverage: 93.58% File Coverage TwilioVerifySDK/TwilioSecurity/Sources/Keychain/KeyManager.swift 85.71% TwilioVerifySDK/TwilioSecurity/Sources/Keychain/Keychain.swift 88.82% TwilioVerifySDK/TwilioSecurity/Sources/Storage/SecureStorage.swift 85.37% TwilioVerifySDK/TwilioVerify/Sources/Data/KeyStorage.swift 92.50% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/ChallengeFacade.swift 96.63% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/ChallengeListMapper.swift 95.83% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/ChallengeMapper.swift 97.67% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/PushChallengeProcessor.swift 96.91% TwilioVerifySDK/TwilioVerify/Sources/Domain/Factor/FactorFacade.swift 97.62% TwilioVerifySDK/TwilioVerify/Sources/Domain/Factor/FactorMapper.swift 100.00% TwilioVerifySDK/TwilioVerify/Sources/Domain/Factor/PushFactory.swift 98.83% TwilioVerifySDK/TwilioVerify/Sources/Domain/Manager/TwilioVerify.swift 78.12% TwilioVerifySDK/TwilioVerify/Sources/Errors/OperationErrors.swift 96.15% TwilioVerifySDK/TwilioVerify/Sources/Networking/Authentication.swift 100.00% TwilioVerifySDK/TwilioVerify/Sources/TwilioVerifyError.swift 94.32% Powered by Slather Generated by :no_entry_sign: Danger 1 Warning :warning: Big PR Code coverage Total coverage: 93.57% File Coverage TwilioVerifySDK/TwilioSecurity/Sources/Keychain/KeyManager.swift 85.71% TwilioVerifySDK/TwilioSecurity/Sources/Keychain/Keychain.swift 88.82% TwilioVerifySDK/TwilioSecurity/Sources/Storage/SecureStorage.swift 84.15% TwilioVerifySDK/TwilioVerify/Sources/Data/KeyStorage.swift 92.50% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/ChallengeFacade.swift 96.63% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/ChallengeListMapper.swift 95.83% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/ChallengeMapper.swift 97.67% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/PushChallengeProcessor.swift 96.91% TwilioVerifySDK/TwilioVerify/Sources/Domain/Factor/FactorFacade.swift 97.62% TwilioVerifySDK/TwilioVerify/Sources/Domain/Factor/FactorMapper.swift 100.00% TwilioVerifySDK/TwilioVerify/Sources/Domain/Factor/PushFactory.swift 98.83% TwilioVerifySDK/TwilioVerify/Sources/Domain/Manager/TwilioVerify.swift 78.12% TwilioVerifySDK/TwilioVerify/Sources/Errors/OperationErrors.swift 96.15% TwilioVerifySDK/TwilioVerify/Sources/Networking/Authentication.swift 100.00% TwilioVerifySDK/TwilioVerify/Sources/Networking/NetworkProvider+Models.swift 100.00% TwilioVerifySDK/TwilioVerify/Sources/TwilioVerifyError.swift 94.74% Powered by Slather Generated by :no_entry_sign: Danger 1 Warning :warning: Big PR Code coverage Total coverage: 93.47% File Coverage TwilioVerifySDK/TwilioSecurity/Sources/Keychain/KeyManager.swift 85.71% TwilioVerifySDK/TwilioSecurity/Sources/Keychain/Keychain.swift 88.82% TwilioVerifySDK/TwilioSecurity/Sources/Storage/SecureStorage.swift 85.37% TwilioVerifySDK/TwilioVerify/Sources/Data/KeyStorage.swift 92.50% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/ChallengeFacade.swift 96.63% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/ChallengeListMapper.swift 95.83% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/ChallengeMapper.swift 97.67% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/PushChallengeProcessor.swift 96.91% TwilioVerifySDK/TwilioVerify/Sources/Domain/Factor/FactorFacade.swift 97.62% TwilioVerifySDK/TwilioVerify/Sources/Domain/Factor/FactorMapper.swift 100.00% TwilioVerifySDK/TwilioVerify/Sources/Domain/Factor/PushFactory.swift 98.83% TwilioVerifySDK/TwilioVerify/Sources/Domain/Manager/TwilioVerify.swift 78.12% TwilioVerifySDK/TwilioVerify/Sources/Errors/OperationErrors.swift 89.09% TwilioVerifySDK/TwilioVerify/Sources/Networking/Authentication.swift 100.00% TwilioVerifySDK/TwilioVerify/Sources/Networking/NetworkProvider+Models.swift 100.00% TwilioVerifySDK/TwilioVerify/Sources/TwilioVerifyError.swift 94.74% Powered by Slather Generated by :no_entry_sign: Danger 1 Warning :warning: Big PR Code coverage Total coverage: 93.47% File Coverage TwilioVerifySDK/TwilioSecurity/Sources/Keychain/KeyManager.swift 85.71% TwilioVerifySDK/TwilioSecurity/Sources/Keychain/Keychain.swift 88.82% TwilioVerifySDK/TwilioSecurity/Sources/Storage/SecureStorage.swift 84.15% TwilioVerifySDK/TwilioVerify/Sources/Data/KeyStorage.swift 92.50% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/ChallengeFacade.swift 96.63% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/ChallengeListMapper.swift 95.83% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/ChallengeMapper.swift 97.67% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/PushChallengeProcessor.swift 96.91% TwilioVerifySDK/TwilioVerify/Sources/Domain/Factor/FactorFacade.swift 97.62% TwilioVerifySDK/TwilioVerify/Sources/Domain/Factor/FactorMapper.swift 100.00% TwilioVerifySDK/TwilioVerify/Sources/Domain/Factor/PushFactory.swift 98.83% TwilioVerifySDK/TwilioVerify/Sources/Domain/Manager/TwilioVerify.swift 78.12% TwilioVerifySDK/TwilioVerify/Sources/Errors/OperationErrors.swift 89.09% TwilioVerifySDK/TwilioVerify/Sources/Networking/Authentication.swift 100.00% TwilioVerifySDK/TwilioVerify/Sources/Networking/NetworkProvider+Models.swift 100.00% TwilioVerifySDK/TwilioVerify/Sources/TwilioVerifyError.swift 94.90% Powered by Slather Generated by :no_entry_sign: Danger 1 Warning :warning: Big PR Code coverage Total coverage: 93.41% File Coverage TwilioVerifySDK/TwilioSecurity/Sources/Keychain/KeyManager.swift 85.71% TwilioVerifySDK/TwilioSecurity/Sources/Keychain/Keychain.swift 88.82% TwilioVerifySDK/TwilioSecurity/Sources/Storage/SecureStorage.swift 84.15% TwilioVerifySDK/TwilioVerify/Sources/Data/KeyStorage.swift 92.50% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/ChallengeFacade.swift 96.63% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/ChallengeListMapper.swift 95.83% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/ChallengeMapper.swift 97.67% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/PushChallengeProcessor.swift 96.91% TwilioVerifySDK/TwilioVerify/Sources/Domain/Factor/FactorFacade.swift 97.62% TwilioVerifySDK/TwilioVerify/Sources/Domain/Factor/FactorMapper.swift 100.00% TwilioVerifySDK/TwilioVerify/Sources/Domain/Factor/PushFactory.swift 98.83% TwilioVerifySDK/TwilioVerify/Sources/Domain/Manager/TwilioVerify.swift 78.12% TwilioVerifySDK/TwilioVerify/Sources/Errors/OperationErrors.swift 89.09% TwilioVerifySDK/TwilioVerify/Sources/Networking/Authentication.swift 100.00% TwilioVerifySDK/TwilioVerify/Sources/TwilioVerifyError.swift 94.32% Powered by Slather Generated by :no_entry_sign: Danger 1 Warning :warning: Big PR Code coverage Total coverage: 93.55% File Coverage TwilioVerifySDK/TwilioSecurity/Sources/Keychain/KeyManager.swift 85.71% TwilioVerifySDK/TwilioSecurity/Sources/Keychain/Keychain.swift 88.82% TwilioVerifySDK/TwilioSecurity/Sources/Storage/SecureStorage.swift 85.37% TwilioVerifySDK/TwilioVerify/Sources/Data/KeyStorage.swift 92.50% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/ChallengeFacade.swift 96.63% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/ChallengeListMapper.swift 95.83% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/ChallengeMapper.swift 97.67% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/PushChallengeProcessor.swift 96.91% TwilioVerifySDK/TwilioVerify/Sources/Domain/Factor/FactorFacade.swift 97.62% TwilioVerifySDK/TwilioVerify/Sources/Domain/Factor/FactorMapper.swift 100.00% TwilioVerifySDK/TwilioVerify/Sources/Domain/Factor/PushFactory.swift 98.83% TwilioVerifySDK/TwilioVerify/Sources/Domain/Manager/TwilioVerify.swift 78.12% TwilioVerifySDK/TwilioVerify/Sources/Errors/OperationErrors.swift 94.23% TwilioVerifySDK/TwilioVerify/Sources/Networking/Authentication.swift 100.00% TwilioVerifySDK/TwilioVerify/Sources/TwilioVerifyError.swift 94.32% Powered by Slather Generated by :no_entry_sign: Danger 1 Warning :warning: Big PR Code coverage Total coverage: 93.51% File Coverage TwilioVerifySDK/TwilioSecurity/Sources/Keychain/KeyManager.swift 85.71% TwilioVerifySDK/TwilioSecurity/Sources/Keychain/Keychain.swift 88.82% TwilioVerifySDK/TwilioSecurity/Sources/Storage/SecureStorage.swift 84.15% TwilioVerifySDK/TwilioVerify/Sources/Data/KeyStorage.swift 92.50% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/ChallengeFacade.swift 96.63% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/ChallengeListMapper.swift 95.83% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/ChallengeMapper.swift 97.67% TwilioVerifySDK/TwilioVerify/Sources/Domain/Challenge/PushChallengeProcessor.swift 96.91% TwilioVerifySDK/TwilioVerify/Sources/Domain/Factor/FactorFacade.swift 97.62% TwilioVerifySDK/TwilioVerify/Sources/Domain/Factor/FactorMapper.swift 100.00% TwilioVerifySDK/TwilioVerify/Sources/Domain/Factor/PushFactory.swift 98.83% TwilioVerifySDK/TwilioVerify/Sources/Domain/Manager/TwilioVerify.swift 78.12% TwilioVerifySDK/TwilioVerify/Sources/Errors/OperationErrors.swift 94.23% TwilioVerifySDK/TwilioVerify/Sources/Networking/Authentication.swift 100.00% TwilioVerifySDK/TwilioVerify/Sources/TwilioVerifyError.swift 94.32% Powered by Slather Generated by :no_entry_sign: Danger
gharchive/pull-request
2022-06-14T14:25:38
2025-04-01T06:46:05.628327
{ "authors": [ "AuthyApps", "mejiagarcia", "yafuquen" ], "repo": "twilio/twilio-verify-ios", "url": "https://github.com/twilio/twilio-verify-ios/pull/202", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
817683329
UnsupportedBrowserWarning does not display on some unsupported devices Describe the bug On iPhone 6 Chrome and other unsupported devices, the UnsupportedBrowserWarning does not display. To Reproduce Steps to reproduce the behavior: Try to load the app on iPhone 6, Chrome Expected behavior UnsupportedBrowserWarning displays Screenshots Environment (please complete the following information): OS: iOS 12.5.1 Browser: Chrome 87.0.4280.77 App Version: 0.2.3 SDK Version: 2.11.0 Node.js version: 15.8.0 Additional context I created a branch for this with fixes. Happy to push if you'd like and are able to grant access. Thanks for the issue @LucaProvencal! It looks like the twilio-video SDK may be returning true for isSupported here, when it should be returning false. Can you do me a favor and send me the user agent that is used on the iPhone running Chrome? With this we will be able to test how the SDKs isSupported function responds to the user agent, and make changes accordingly. UA: Mozilla/5.0 (iPhone; CPU iPhone OS 12_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/87.0.4280.77 Mobile/15E148 Safari/604.1 and some more info: Thanks for the extra info @LucaProvencal! I'm trying to determine in there is an issue in this video app, or if there is an issue in the twilio-video.js library. Can you please visit this page on your iPhone 6 in Chrome and let me know what it says? It should say that Video.isSupported is false. https://twilio-video-is-supported.glitch.me/ Thanks! Hey @LucaProvencal - never mind my previous comment. I found the issue. The <UnsupportedBrowserWarning> was set up in such a way that the app still tried to access navigator.mediaDevices even when Video.isSupported is false. I have created this pull request to fix the issue, which I'm going to merge in now. Please let me know if this doesn't fix your issue. Thanks again for pointing it out! @timmydoza Nice! Looks good. Thanks.
gharchive/issue
2021-02-26T21:45:48
2025-04-01T06:46:05.637813
{ "authors": [ "LucaProvencal", "timmydoza" ], "repo": "twilio/twilio-video-app-react", "url": "https://github.com/twilio/twilio-video-app-react/issues/439", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
487898903
[REQUEST][QUESTION] Get only retweets Is there a way to get only retweets of a user? There are two ways, but both will give you just a few results and not as much as expected. Way 1 twint -u username --retweets (you'll have to clean your output, there's a flag to recognize if a tweet is a retweet or not) Way 2 twint -u username --native-retweets
gharchive/issue
2019-09-01T15:29:55
2025-04-01T06:46:05.662004
{ "authors": [ "banyous", "pielco11" ], "repo": "twintproject/twint", "url": "https://github.com/twintproject/twint/issues/508", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
69994228
First sent message is not emitSelf'd Full demo script: https://gist.github.com/mccxiv/eaea4e382ec6ab77d676 client.addListener('chat', function(channel, user, message) { console.log('Received: ', message); }); setTimeout(function() { console.log('Sending first'); client.say(channel, 'first message'); }, 4000); setTimeout(function() { console.log('Sending second'); client.say(channel, 'second message'); }, 5000); Output: [19:17:47] info - Searching for a Twitch server.. [19:17:48] event - connecting [19:17:48] event - logon [19:17:48] raw - 001: Welcome, GLHF! [19:17:48] raw - 002: Your host is tmi.twitch.tv [19:17:48] raw - 003: This server is rather new [19:17:48] raw - 004: - [19:17:48] raw - 375: - [19:17:48] raw - 372: You are in a maze of twisty passages, all alike. [19:17:48] event - connected [19:17:48] raw - 376: > [19:17:48] event - join [19:17:48] raw - 366: #k3nt0456 Sending first Sending second Received: second message Closing this issue as it has been fixed for the next version.
gharchive/issue
2015-04-22T01:24:01
2025-04-01T06:46:05.692990
{ "authors": [ "Schmoopiie", "mccxiv" ], "repo": "twitch-irc/twitch-irc", "url": "https://github.com/twitch-irc/twitch-irc/issues/82", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
2703015837
fix: correct ModeratorManageGuestStar Noticed in https://github.com/twitch-rs/twitch_api/pull/457. Unfortunately, this is technically a breaking change. hopefully that works with the merge queue 1.71.1 should be fine - we require 1.77 on twitch_api.
gharchive/pull-request
2024-11-28T18:53:17
2025-04-01T06:46:05.694643
{ "authors": [ "Nerixyz" ], "repo": "twitch-rs/twitch_oauth2", "url": "https://github.com/twitch-rs/twitch_oauth2/pull/152", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2963891
2.0-wip Docs Modal Popover and tooltip not working on Modal in Docs Dupe of 1109 Closing as dupe of #1109.
gharchive/issue
2012-01-25T11:50:58
2025-04-01T06:46:05.707045
{ "authors": [ "dbpolito", "markdotto", "timboisvert" ], "repo": "twitter/bootstrap", "url": "https://github.com/twitter/bootstrap/issues/1191", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
3115778
Adding tooltip example to javascript docs. It's particularly helpful to show the starting HTML for tooltips, as inspecting the source will show post-processed HTML with data-original-title attributes and may confuse folks (where folks=me :). Resolved in 2.0.1-wip. Thanks! whats the solution?
gharchive/issue
2012-02-06T22:38:29
2025-04-01T06:46:05.708280
{ "authors": [ "marcheidemann", "markdotto", "pamelafox" ], "repo": "twitter/bootstrap", "url": "https://github.com/twitter/bootstrap/issues/1782", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2756900
Added an accordion component Lightweight, I think it fits with your architecture. You can already do accordions in 2.0 with the collapsible plugin, thanks though! oh sorry typo :P just updated 2.0-wip Just be warned that this stuff is only tested against chrome at the moment (i'm going to start working through all the other browsers hopefully this weekend though) I don't envy you... Thanks for the update. Great work, keep it up. :)
gharchive/issue
2012-01-07T17:21:02
2025-04-01T06:46:05.709967
{ "authors": [ "fat", "sandro-pasquali" ], "repo": "twitter/bootstrap", "url": "https://github.com/twitter/bootstrap/issues/917", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
412418127
We cannot create a twitter account One line summary of the issue here. Expected behavior As concisely as possible, describe the expected behavior. Actual behavior As concisely as possible, describe the observed behavior. Steps to reproduce the behavior Please list all relevant steps to reproduce the observed behavior. We cannot create twitter accounts with the email addresses ending with ....@nudge.solutions ....@nudge.services the parts before the @ sign consist of ASCII characters. However, it is not possible to create an account with TLDs .services or .solutions. Can you please help? Twitter text is not involved in validating email addresses during account creation, afaik. Have you tried @TwitterSupport? Hi again, We found a related post on twitter community relating to new gTLDs, such as . technology. This post is referring to the Github twitter-text. Please see the details here: https://twittercommunity.com/t/creating-an-application-for-a-technology-url/14472/2 https://github.com/twitter/twitter-text/blob/master/conformance/tld_lib.yml When I try to create an account with .technology, .services and .consulting email addresses on https://twitter.com/i/flow/signup , I still get an error as "Please enter a valid email." When we first raised such issues, I was directed by Twitter Developer Forum to Github. https://twittercommunity.com/t/domains-and-emails-with-non-ascii-characters-are-not-linkified/116301 I truly appreciate if you can provide assistance on this issue. Best regards, Seda This definitely is not due to twitter-text, however, we have identified some arbitrary limits that are the probably cause of your inability to register with those gTLDs. Fixes for the various clients should be slowly making their way to production.
gharchive/issue
2019-02-20T13:12:42
2025-04-01T06:46:05.728076
{ "authors": [ "UA2018", "leeaustinadams" ], "repo": "twitter/twitter-text", "url": "https://github.com/twitter/twitter-text/issues/281", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }