repo_name
stringlengths
4
136
issue_id
stringlengths
5
10
text
stringlengths
37
4.84M
onokumus/metismenujs
368003669
Title: Submenu is not closing when user clicks outside of its container in horizontal menus. Question: username_0: **Describe the bug** Submenu cannot be hidden when user clicks outside of its container **To Reproduce** 1- Go to http://username_1.com/metismenujs/mm-horizontal.html 2- Click any menu with submenu 3- Slick outside of submenu **Expected behavior** It should close the submenu open **Screenshots** If applicable, add screenshots to help explain your problem. **Desktop (please complete the following information):** Any browser **Smartphone (please complete the following information):** Any device **Additional context** No additional context Answers: username_1: Hi @username_0 I have fixed clickable horizontal menu, but not yet the other. Have you any idea? username_0: I don't think you need to fix the vertical one. For vertical menus, it is not expected a menu section to close when user clicks outside. Is it possible publish a new release with the fix? username_1: I think you misunderstood me. I'm talking about the first menu (horizontal clickable, not horizontal hoverable) in http://username_1.com/metismenujs/mm-horizontal.html page. The vertical menu is already working properly. No need for new release. I changed just http://username_1.com/metismenujs/assets/js/mm-horizontal.js file. username_0: "I have fixed clickable horizontal menu, but not yet the other. " Which one is the "other"? and what is not working there? username_1: Which one is the "other"? - Hoverable for Desktop username_0: What's not working there? username_0: Ohh I see... the second level menus are not opening up. username_0: How does the solution you have for the horizontal menu support "multiple menus" on the same page? username_1: Same, you can call MetisMenu as many times as you want. ```javascript document.addEventListener("DOMContentLoaded", function(event) { const mm1 = new MetisMenu("#menu1").on("shown.metisMenu", function(event) { window.addEventListener("click", function mmClick1(e) { if (!event.target.contains(e.target)) { mm1.hide(event.detail.shownElement); window.removeEventListener("click", mmClick1); } }); }); const mm2 = new MetisMenu("#menu2").on("shown.metisMenu", function(event) { window.addEventListener("click", function mmClick2(e) { if (!event.target.contains(e.target)) { mm2.hide(event.detail.shownElement); window.removeEventListener("click", mmClick2); } }); }); }); ``` username_0: Yes, I see that but you're repeating the same code again and again. Don't you? username_1: What you wanna do? Can you give me some detail? username_0: Here is what I've done: var box = document.querySelectorAll("#topmenu-right ul.w3-card-4"); var menu = document.querySelectorAll("#topmenu-right ul.metismenu li"); document.addEventListener("click", function(event) { // If user clicks inside the element, do nothing if (event.target.closest(".w3-top")) return; if (event.target.closest("ul.w3-card-4")) return; // If user clicks outside the element, hide it! var i; for (i = 0; i < box.length; i++) { box[i].classList.remove("in"); } for (i = 0; i < menu.length; i++) { menu[i].classList.remove("active"); } }); username_1: MetisMenu works event-based. If the event does not complete, MetisMenu will not function properly. Therefore if you remove css classes manually, MetisMenu will not function properly. What can you do? You can create a instance from the MetisMenu class. With this instance, you can call functions (hide, show, dispose, update) in MetisMenu. https://github.com/username_1/metismenujs#events See the examples on this pages; https://username_1.com/metismenujs/mm-horizontal.html https://username_1.com/metismenujs/mm-event.html https://username_1.com/metismenujs/mm-event2.html https://username_1.com/metismenujs/mm-github.html username_0: I agree. However, you want to simplify the initialization right? Since you already now the id, you can pass it to your code and do the processing there. Then users don't need to deal with event listeners and all. The only moving part in your code is the id, the others are variables or constant names.
ActivitySim/activitysim
698654826
Title: Add Parking Location Choice Model for ARC Question: username_0: ARC prototype model requires parking location choice model. New model needs to be added to support ARC's (and others') parking location choice implementations. Answers: username_0: @username_1: You can assign this to me. I'm working on it on my [fork](https://github.com/username_0/activitysim/tree/ft_parking_choice). I'm also planning, **at this point**, to add a "psuedo-" parking location choice model to the existing MTC example as my test case. username_0: I finally got everything working. I went down a few different rabbit holes before I finally found a solution I liked. This solution pivots largely from the trip_destination_choice model with some simplifications removing unnecessary components for the ARC implementation. Their are two commits with the components: - [Working Parking Location Choice Model](https://github.com/username_0/activitysim/commit/dfdb3faefcda95d0162b7596fbaa656f75ce1fe1): This works! I temporarily slid it into the MTC example for expediency, but I'll separate it once the core functionality has been reviewed. It could probably use some more error checks. Once our analyst completes the trip_mode_choice UEC conversion, we will flush out a more complete model specification from the ARC UEC. - [Trip Matrix Write](https://github.com/username_0/activitysim/commit/fe5a5d9ac5f31f8f632348129ff8dbf318f8263e): Simple addition that looks for the parking location model in the model workflow. If the parking location model is found, it replaces the trip destination with the trip parking zone. It would be great if @toliwaga and / or @username_1 could take a look and offer feedback. username_1: these are now included in the release, thanks! Status: Issue closed
prometheus-community/helm-charts
697792946
Title: Artifact Hub repo improvements Question: username_0: - [ ] verified - [x] official (https://github.com/artifacthub/hub/issues/642) Answers: username_0: This repo's package now have ` verified` and `official` badges in the hub 🙂 ![image](https://user-images.githubusercontent.com/407675/92722558-c872bb80-f335-11ea-9c88-5e1c33e25e74.png) Status: Issue closed username_1: should we also add ourself to https://chartcenter.io/ ? username_0: From the last Helm dev call, I believe Chart Center will pull from Artifact Hub. If that turns out not to be the case, then sure 😄
jumpinjackie/mapguide-react-layout
197999763
Title: REST-ful service backend Question: username_0: This is to replace the current PHP backend (which is a mish-mash of various PHP scripts, directly copied over from Fusion) with a unified/streamlined REST-ful backend with a clean and documented API. This covers the following - Bootstrapping - [ ] Add composer.json - [ ] Setup slim framework skeleton - [ ] Offload tcpdf to composer - Services API - [ ] /services/query - For servicing the query widget - [ ] /services/theme - For servicing the theme widget - [ ] /services/buffer - For servicing the buffer widget - [ ] /services/search - For servicing the search widget - [ ] /services/redline - For servicing the redline widget - [ ] /services/plot - For servicing the quickplot widget - [ ] /services/featureinfo - For servicing the featureinfo widget - React-ification of existing widgets - [ ] Query - [ ] Theme - [ ] Buffer - [ ] Search - [ ] Redline - [ ] Feature Information Status: Issue closed Answers: username_0: I've decided to just reuse the existing Fusion PHP backend, making this task pointless (except for the react-ification part, but I'll leave that to a separate issue)
open-telemetry/opentelemetry-js-contrib
640438923
Title: Web tracer, zone context manager and User Interaction plugin does not work with Angular Question: username_0: Please answer these questions before submitting a bug report. ### What version of OpenTelemetry are you using? I'm using the following Otel packages: ```json "@opentelemetry/context-zone-peer-dep": "^0.8.3", "@opentelemetry/core": "^0.8.3", "@opentelemetry/plugin-user-interaction": "^0.8.0", "@opentelemetry/tracing": "^0.8.3", "@opentelemetry/web": "^0.8.3", ``` #### Output of `npm ls`: <details> <summary>Click to expand</summary> ``` [email protected] /Users/olone/playground/angular-realworld-example-app ├─┬ @angular-devkit/[email protected] │ ├─┬ @angular-devkit/[email protected] │ │ ├── @angular-devkit/[email protected] deduped │ │ └─┬ [email protected] │ │ └── [email protected] deduped │ ├─┬ @angular-devkit/[email protected] │ │ ├── [email protected] deduped │ │ ├── [email protected] │ │ ├── [email protected] deduped │ │ └── [email protected] deduped │ ├─┬ @angular-devkit/[email protected] │ │ ├── @angular-devkit/[email protected] deduped │ │ ├── @angular-devkit/[email protected] deduped │ │ └─┬ [email protected] │ │ └── [email protected] deduped │ ├─┬ @angular-devkit/[email protected] │ │ ├─┬ [email protected] │ │ │ ├── [email protected] deduped │ │ │ ├── [email protected] deduped │ │ │ ├── [email protected] deduped │ │ │ └── [email protected] deduped │ │ ├─┬ [email protected] │ │ │ ├─┬ [email protected] │ │ │ │ ├── [email protected] deduped │ │ │ │ └── [email protected] deduped │ │ │ ├── [email protected] deduped │ │ │ ├─┬ [email protected] │ │ │ │ ├── [email protected] │ │ │ │ ├── [email protected] deduped │ │ │ │ ├─┬ [email protected] │ │ │ │ │ └── [email protected] deduped │ │ │ │ ├─┬ [email protected] │ │ │ │ │ ├── [email protected] deduped │ │ │ │ │ ├─┬ [email protected] │ │ │ │ │ │ └── [email protected] deduped │ │ │ │ │ ├── [email protected] │ │ │ │ │ └─┬ [email protected] │ │ │ │ │ ├── [email protected] deduped [Truncated] return plugin._tracer.withSpan(span, () => { const currentZone = Zone.current; + currentNgZone.set('OT_ZONE_CONTEXT', currentZone.get('OT_ZONE_CONTEXT')); task._zone = currentZone; - return original.call(currentZone, task, applyThis, applyArgs); + return original.call(currentNgZone, task, applyThis, applyArgs); }); } finally { plugin._decrementTask(span); } } } ``` It looks like we either need to work with the original zone objects and add/duplicate context to them or accept a Zone implementation using some sort of dependency injection mechanism. This can allow all the plugins and the zone context manager to use whatever implementation of Zone is used by the app. Another option is to have a special `angular-context-manager` that specifically uses NgZone, and then have all the plugins work with whatever kind of zone object is used by the context. I've not used Angular, NgZone or Zone.js before so may be I'm doing something horribly wrong. Status: Issue closed Answers: username_0: I think this is probably related more to the context manager than the user interaction plugin so moving to the core repo: https://github.com/open-telemetry/opentelemetry-js/issues/1206
lokalise/i18n-ally
957806337
Title: Hi Question: username_0: **Describe the bug** <!-- A clear and concise description of what the bug is.--> **Extension Version** <!-- i18n Ally or Vue i18n Ally (v0.x) --> **Framework/i18n package you are using** <!-- vue-i18n, react-i18next, npx-translate, etc. --> **To Reproduce** Steps to reproduce the behavior: 1. Go to '...' 2. Click on '....'= 3. See error **Device Infomation** - OS: - Version: - VS Code Version: **Extension Log** Go to `View` -> `Output` -> `i18n Ally`, and paste the content below. **You should mask any sensitive information** ``` ``` **Screenshots** <!-- If applicable, add screenshots to help explain your problem.--> Status: Issue closed Answers: username_0: If hjuh
BEEmod/BEE2-items
367419131
Title: Angled Panels connection error Question: username_0: So in my recent map i've now published to test out PR30 and BMMC (which is for some reason 98 MB for a simple map literally smaller then the normal sized PeTI maps) Angled Panels did not respond to any futbol or logic gate inputs. I have reason to believe this is an error with Angled Panels. as the Futbol and Logic gates worked with other items. Such as the light bridge. As for the 98 MB file size. I will keep you all posted in either the discord or in issues 😄 Answers: username_0: ![20181005233415_1](https://user-images.githubusercontent.com/37309250/46566986-53034280-c8f7-11e8-819d-ea70a6c38455.jpg) ![20181005233417_1](https://user-images.githubusercontent.com/37309250/46566987-53034280-c8f7-11e8-9d6b-a32a73713a35.jpg) username_1: This is a MASSIVE BUG if that is really happening, if you are sure it does not have to do with BMMC, then open a separated new issue for it, please. username_1: I can confirm that this bug occurs, and with all type of connections: ![prl30 bug](https://user-images.githubusercontent.com/12244376/46572855-300e7800-c963-11e8-9ec6-f49be7b37827.jpg) username_1: I have done aditional testing, and in order to solve this issue, everyone must have to do the following: 1 - Open Beemod and click on: `File ----> Uninstall From Selected Game ----> "Are you sure you want to delete "PORTAL 2"? ----> YES`. 2 - Wait 1 minute while Beemod removes their resources from Portal 2. 3 - Verify the Game Cache Files. 4 - Make sure to have downloaded and unzipped the latest Item's Packages and Application version of BEE2.4, and both must be from the same Pre-Release Version, otherwise issues will occur. Links: https://github.com/BEEmod/BEE2.4/releases (Application) https://github.com/BEEmod/BEE2-items/releases (Item's Packages) Note that if you are running Beemod on Linux or Mac Os X, or even on 32 Bit versions of Windows, issues can occur. Beemod currently works well only on 64 Bit versions of Windows 7, 8 and 10. 5 - Click on: `File ----> Options ----> Development`, then uncheck the option: `Preserve Game Directories`. 6 - Now choose your favorite Items & Style and export your palette to the game. 7 - Make sure to save these steps in a text file in case you get similar issues in the future. 8 - Happy mapmaking! Status: Issue closed
YunYouJun/hexo-theme-yun
650571533
Title: 同一个图文网页, 在 27 寸上显示为图片异常大,不便于看文章 Question: username_0: 使用 yun 主题后,对于大屏幕的网页中图片显示体验不佳, 若是可以改进, 非常感激~~~ 7.2 改日 yun 修复后,现在 设置如下 `<img src="https://cdn.jsdelivr.net/**.png" width="50%" />` 后,虽然确实是屏幕的 50% 宽度, 但是图片依旧很大; 且尝试将照片大小写死, 如 `<img src="*.jpg" width="400" height="400" />`, 根本没有其效果, 依旧被强制拉大; **当前效果:** 在小屏幕上看上还好的文章, 在切换到大屏幕上,图片会被加载的过于巨大,但是文字还是那么的小,及其影响阅读体验; **预期效果:** 在不同的屏幕上,13.3, 27., 32 寸 (尤其是大屏幕上)的显示屏幕上看文章的时候,文字是可以自动换行(根据宽度的); 但是照片可以保持同样大小(无论多大屏幕, 其最后肉眼看到的屏幕网页, 图片大小都是固定的,协调) **建议:** 1. 将所有加载图片的地方的宽度都写死, 那样使用 `<img src="*.png" width="50%" />` 这种的话,就可以在写 markdown 插入图片时候, 很好的即时预览效果。 2. 或 其他方案? 我未可知 **补充:** 版本:由 Hexo 驱动 v4.2.1|主题 - Yun v0.9.2 实例: 预览网页 [使用 CDN 加速你的 GitHub Pages 网站](https://www.yunyoujun.cn/note/use-cdn-speed-up-site/) ![image](https://user-images.githubusercontent.com/33887845/86469445-f94dd780-bd6b-11ea-8520-031e586d6147.png) ![image](https://user-images.githubusercontent.com/33887845/86469543-35813800-bd6c-11ea-8084-03f9e46fdf4d.png) 若是不方便调试,附上附件一份: [github加载图片丢失解决方案的副本.md.zip](https://github.com/username_1/hexo-theme-yun/files/4869690/github.md.zip) 最后希望效果,能够同一个网页,在小屏幕看完觉着合适后, 大屏幕看着图文比例大小也很协调即可。 源于是对 yun 主题的喜爱, 提出一个建议; 希望采纳; Answers: username_0: 已赞助, 略表心意,对主题喜爱之情 username_1: --- 感谢支持,已添加进[赞助列表](https://sponsors.yunyoujun.cn/list)中。 username_0: 这个我建议还是显示为暂时统一显示为缩略图,,,事实上, 整体来看, 发布一百篇博客, 也很少有用到长截图效果;从工作量上和体验上来看, 可以先适当的做减法(图文太长完全应该点击一下, 此案时看看长图) 效果如图: 27-4K:效果==> ![27_4K](https://user-images.githubusercontent.com/33887845/86502913-00f89500-bddb-11ea-9a72-bc68924603b2.png) 13.3-2K:效果==> ![13 3_2K](https://user-images.githubusercontent.com/33887845/86502926-1ec5fa00-bddb-11ea-9ff5-a0a7d855bc61.png) 我在文章中, markdown 是使用 <image> 网页标签方式插入图片的; 以前也是 `![13 3_2K](https://....)` 格式来写, 后来发现,文章同步到 csdn 中,会有的图片会被转载不出来, 但是使用 标签 <image> 则可以显示, 不会被吞掉图片。 username_1: 可以自定义 CSS 设置,也可以在文章中单独设置 img 标签大小。 想要左对齐还是右对齐,同样可以在 markdown 中自定义 img 样式实现。 (markdown 本身语法没有左右对齐,解析只会获得普通的 img 标签,所以需要直接写 img 标签的样式自定义。) 因为主题样式与 markdown 样式已分离,本质为修改的 [star-markdown-css](https://github.com/username_1/star-markdown-css) 的样式。并非对单独图片进行了设置,我设置了最大高度。 我现在尝试使用媒体查询,对 1600px 宽度以上的屏幕,设置了图片最大宽度不超过 800px,小于此宽度的屏幕图片,最大宽度则为文章页面宽度的 92%;我 Chrome 模拟效果还行,不是物理设备效果如何? username_0: 这个想法很棒, 效果也是可以的,已经预览过了,效果都可以; 可我若是想要自己尝试设置一些更合适参数? `不超过 800px` 和 `宽度的 92%` , 该如何修改哪一个文件?(我这里只有一个 yun 主题文件夹) 抱歉: 涉及前端知识比较匮乏😶😶 username_1: 看到您此前编辑的内容,现在应该已经自行解决了问题。 以防后续类似问题,我在此说明一下吧。 --- 虽然分割了 star-markdown-css,但不需要操心 markdown 样式的更新,主题将会默认引入锁定版本的 markdown CDN。 同时这么做还有一个好处就是,你甚至可以覆盖主题引入的 markdown 样式,更换为任意你喜欢的样式。只要是以 `.markdown-body` 命名空间即可。(当然肯定我这自身适配的好些,王婆卖瓜。) 想要自定义样式的话,只需自己建立 `source/css/xxx.css`,并在 [head](https://yun.yunyoujun.cn/guide/config.html#head-%E5%A4%B4%E9%83%A8%E8%B5%84%E6%BA%90) 中引入即可。 想要引用主题已有的变量,也可以使用 `stylus` 编写。[自定义样式](https://yun.yunyoujun.cn/guide/config.html#%E8%87%AA%E5%AE%9A%E4%B9%89%E6%A0%B7%E5%BC%8F) --- 因为主题是一种较为统一的风格,难免各位都有一些自定义的特殊需求,所以提供了多种自定义方式,大可在不修改主题文件的情况下进自定义。不直接修改主题文件,也能更方便日后的更新。 username_1: 如果没有后续问题,则请关闭当前 ISSUE。 Status: Issue closed username_0: 为了尽可能少打扰到你, 所以翻看了与其相关的commit, 继续结合和尝试验证,所以后面成功出来了。 thanks 后面的完整解释验证了我的猜测,有帮助到我。😄😄
dataquestio/solutions
448909874
Title: ios contains duplicate data Question: username_0: Based on [Kaggle discussion](https://www.kaggle.com/ramamet4/app-store-apple-data-set-10k-apps/discussion/90409), there are duplicate data exists Answers: username_1: This is not true, as the id column specifies an id number, while the track_name column specifies the actual app name which should be used to detect duplicates. Probably the author used the id column, found no duplicates based on the id (which is correct) and then moved on, but instead he should have used the track_name column.
Shopify/quilt
672910000
Title: Update dot-prop to resolved vulnerability warning Question: username_0: Resolve this error https://github.com/Shopify/quilt/network/alert/yarn.lock/dot-prop/open <img width="894" alt="Screen Shot 2020-08-04 at 11 56 19 AM" src="https://user-images.githubusercontent.com/1610169/89316092-a193dc00-d649-11ea-9dc1-8d07a5f5f428.png"> dot-prop is in our yarn.lock because of lerna. dot-prop@^3.0.0 > compare-func@^1.3.1 > conventional-changelog-angular@^1.6.6 | conventional-changelog-jshint@^0.3.8 | conventional-changelog-writer@^3.0.9 > conventional-changelog-core@^2.0.11> conventional-changelog@^1.1.24 > conventional-changelog-cli@^1.3.13> lerna@^2.9.0 ------ I tried updating to lerna@^3.22.1 and and just ended up with dot-prop@^3.0.0 & dot-prop "^4.2.0" Since it is only part of the release process and not included as part of any packages. I think this vulnerability is acceptable till lerna uses dor-prop > 5.1.1 and we can do a proper upgrade. Answers: username_0: To follow up, the alert is no longer showing up for me
nlpie/mtap
696121559
Title: Deployment utility Question: username_0: It would be helpful to create a generalizable, configuration-based deployment utility for launching multiple processors at once. Currently in biomedicus we're using a python script for this: https://github.com/nlpie/biomedicus3/blob/master/python/biomedicus/deployment/deploy_biomedicus.py<issue_closed> Status: Issue closed
lasso-js/lasso-marko
205094167
Title: lasso-page tag not compiled when lass and/or marko installed global Question: username_0: I have a package which use marko and lasso as template engine. For example, package named PA. PA was installed global: _pa.js (located at /usr/lib/node_modules/pa)_ ``` exports.render = function(data, viewFile, callback) { var viewObj = require(viewFile); viewObj.render(data, function(err, html) { callback(err, html); }); } ``` _pb.js_ ``` var paLib = require('pa'); //some logic paLib.render('/view/file/in/pb/directory/view.marko', {}, function(err, html) { console.log(html) //lasso-page not compiled }); ``` _/view/file/in/pb/directory/view.marko_ ``` <lasso-page package-path="./browser.json"/> <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Test Page</title> <lasso-head/> </head> <body> <h1>Test Page</h1> <lasso-body/> </body> </html> ``` i got this error ``` error: Error: Cannot find module 'marko/compiler' at Function.Module._resolveFilename (module.js:469:15) at module.exports (/usr/lib/node_modules/pa/node_modules/marko/node_modules/resolve-from/index.js:15:16) at Object.markoExtension [as .marko] (/usr/lib/node_modules/pa/node_modules/marko/node-require.js:111:39) at Module.load (module.js:487:32) at tryModuleLoad (module.js:446:12) at Function.Module._load (module.js:438:3) at Module.require (module.js:497:17) at require (internal/module.js:20:19) at /usr/lib/node_modules/pa/pa.js:225:13 at process._tickCallback (internal/process/next_tick.js:103:7) ``` I tried install lasso and marko locally in PB package, the error gone away but lasso-page, lasso-head and lasso-body tags are not compiled, the rendered html was the same as view.marko file Tested on windows 10: nodejs v6.9.1, npm v3.10.8 and centos 6.6: nodejs v6.9.5, npm v3.10.10 both marko and lasso were the latest version. Please help me resolve this problem, thank you!
crossroads-education/eta
277107376
Title: Implement data seeding Question: username_0: - Move data seeding from the `eta-db-shared` module - Load data seeding based on `eta.json` dependencies Answers: username_0: This will be implemented in [`cre-web-shared`](https://github.com/crossroads-education/eta-web-shared), but `lib/EntityCache` will have to be refactored. username_0: Refactored `EntityCache` here: f493e2f290306b00df3b56e1e34e54751abaec10 Status: Issue closed
alexcanessa/typescript-coverage-report
738442737
Title: Suggestion: Use all options from type-coverage package Question: username_0: Closed by #31 Status: Issue closed Status: Issue closed Answers: username_0: Closed by #31 Status: Issue closed Status: Issue closed username_0: @dankv this is the [new release](https://github.com/username_0/typescript-coverage-report/releases/tag/0.3.1). Are you able to test it and see if it's how you would expect it to be? username_1: @username_0 confirmed the fix. Thanks for the quick turnaround! username_2: @username_0 🎉 This is great, I was hoping for the [`ignoreCatch` flag in `type-coverage-core`](https://github.com/plantain-00/type-coverage/blob/162532c6ebb0bfce9704b8608e9d0591503164b9/packages/core/src/interfaces.ts#L45) to be supported as well, from what I can see [in the code it is not](https://github.com/username_0/typescript-coverage-report/blob/f779a4f27ff7f5a44e485a5c4a63652f0170afe0/src/lib/getCoverage.ts#L23). Is that correct? Considering attempting to add support myself but not sure if I will find the time in the near future. username_0: @username_2 you're right, I think I thought that `enableCache = false` would be the same as `ignoreCache`. Is it not? username_2: Hi! Sorry for the short answer that follows, busy day :( The flag I'm talking about is ignore catch, which ignores type coverage on the error parameter in catch clauses, which has to be `any` by design. username_0: @username_2 ok great! I've created an issue #40, it should be pretty straight forward to implement.
google/oss-fuzz
577027146
Title: Issue wrongly marked "verified" Question: username_0: 21076 was found this morning and I could reproduce it locally. Now it was marked "verified" without even being rebuilt. Two minutes earlier, the similar 21085 was being found. There seems to be something wrong. I can't guarantee that there isn't something behaving randomly in our code, but then the issue should be kept open, shouldn't it? https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=21076 https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=21085 Answers: username_1: Stack overflow / OOMs can be notoriously flaky, esp across builds (where stack frames might just shift). This can happen in some crashes, but is this happening consistently on a number of cases ? username_0: It's the first time for me. I'll let you know if it happens again. username_2: Closing for now. Please let us know if that becomes a recurring problem. Status: Issue closed
elthran/RPG-Game
319344965
Title: Issue with number of decimals in items/proficiencies Question: username_0: We have an item called <NAME>. ![coding](https://user-images.githubusercontent.com/11773722/39495788-aab18668-4d50-11e8-9618-4b503302ef30.jpg) It Should add 7 to your Strength (aka max damage) and 0.6 to your Speed. However, this is what the tooltip shows: ![coding](https://user-images.githubusercontent.com/11773722/39495815-c902b830-4d50-11e8-9448-9152733544a8.jpg) The tooltip shows it will add 7 Strength and 1 Speed. It rounds the speed to an integer. ![coding](https://user-images.githubusercontent.com/11773722/39495850-f9b4b424-4d50-11e8-88b2-48b81500a51e.jpg) And you can see it's not just the tooltip, but it actually adds 1 to your Speed value. (I've tested with other values, it always rounds to an integer. It has nothing to do with the number 1). Andif I check the Speed proficiency we can see that it shoul dbe rounding to 3 decimal places. So the error is not there: ![coding](https://user-images.githubusercontent.com/11773722/39495918-461c7e50-4d51-11e8-8ff8-445b13794b68.jpg) Please help me find the bug here @username_1 Here is my last commit which tweaked some of the values while searching for the bug: https://github.com/username_0/RPG-Game/commit/903316d576eb7d6b5fea330d0bdfb4db278767bc Answers: username_0: On a related note, here is our gnarled staff: ![coding](https://user-images.githubusercontent.com/11773722/39496196-48355512-4d52-11e8-8cb0-d1cb5ae55d13.jpg) Shouls add 15 to Strength and then +100% to your Combat (ie. double it). But it does this and I have no idea why! ![coding](https://user-images.githubusercontent.com/11773722/39496217-60ce2a72-4d52-11e8-90e5-83249948b07b.jpg) It adds +1 to your Combat and then adds +100% to it. Then it adds the 15 Strength. In other words, it works bug free and does what I want it to, but I have no idea why it adds +1 to Combat. I never told it to do that anywhere? It must do it by default but I haven't seen where it does that yet. username_0: Note, if I change it to this: ![coding](https://user-images.githubusercontent.com/11773722/39496344-d35a0dea-4d52-11e8-8f56-ea9acf2c9a20.jpg) I still get this: ![coding](https://user-images.githubusercontent.com/11773722/39496355-df9c0518-4d52-11e8-84ae-137ecd79c4f9.jpg) So if you add a modifier, then the base value always seems to default to 1. But if you don't add a modifier, then you have full control of the base. Status: Issue closed username_1: Combat bug fixed in: https://github.com/username_0/RPG-Game/commit/76deaf7313833a6e9ee5e54275095d544a147c5c Speed bug fixed in: https://github.com/username_0/RPG-Game/commit/95a2874977b9e15f43f218572b7dccef4200fe26
SimonBiggs/scriptedforms
306381406
Title: Made a gitter, and made master branch protected Question: username_0: Hi @robmarkcole, Thought you might be interested, I have made a gitter: https://gitter.im/scriptedforms/Lobby Any chat about scriptedforms can go there. I've also made it so that master branch is protected and all code pushes to master branch require someone to review the code this is designed to facilitate @sunyu0410 collaborating with me on this project. However if you did feel like doing any code reviews feel free to do so.<issue_closed> Status: Issue closed
jashkenas/coffeescript
84475012
Title: yield issue when using koa && koa-route Question: username_0: ### a bit different when i code this in coffee ... `index.coffee` route= require 'koa-route' app= koa() app.use route.get '/', list list= ()-> @body= yield render 'list', {posts: posts} .... which could compile into javascript like below ... `index.js` var route = require('koa-route'); var app = koa(); app.use(route.get('/', list)); list = function * () { return this.body= (yield render('list', {posts: posts})) } Neither command `coffee --nodejs --harmony index.coffee` nor `node --harmony index.js` work well. These two command revealed an error: ![qq 20150603175733](https://cloud.githubusercontent.com/assets/1813968/7957448/0a92d9a6-0a1a-11e5-817c-54558e9560f6.png) Web page comes to an `Internal Server Error` error Only if i turn the coffeescript into below: app.use route.get '/', ()-> @body= yield render 'list', {posts: posts} or javascript like this: app.use(route.get('/', list)); function *list() { this.body = yield render('list', { posts: posts }); } Will work! it's interesting to solve the problem , cos i i don't know which part go wrong. Coffee? Koa? or koa-route? waiting for reply~~ Answers: username_1: CoffeeScript's functions are not hoisted. This means they're not available before you defined them: ``` a(); // won't work! var a = function () { console.log("hey"); }; Status: Issue closed username_0: Thank u for reply soon! it's my name sequence go wrong~
creativecommons/creativecommons.org
163953791
Title: New posts on the blog aren't getting featured Question: username_0: New posts on the blog aren't getting featured and the featured image is rendering strangely, see this post: https://creativecommons.org/2016/07/05/icymi-june-oer-roundup/ Answers: username_1: Seems like some posts have the 'Featured' highlights set and two have 'Hero' https://creativecommons.org/wordpress/wp-admin/edit.php?cc_highlight=featured https://creativecommons.org/wordpress/wp-admin/edit.php?cc_highlight=hero I guess you'll either need to set this on the next post, or unset it from previous posts. username_0: The trick appears to be to set the "Highlight" as "hero" Status: Issue closed
uu-sml/sml-book-page
1162671852
Title: "Lunch cancer" instead of "lung cancer" Question: username_0: **Location** Please provide: 1. Draft version: April 30, 2021 2. page, 13 3. "Recent estimates indicate that 4.2 million people die each year as a result of ambient air pollution due to stroke, heart disease, lunch cancer and chronic respiratory diseases." Second line of that page. **Describe the mistake** It sais lunch cancer **Suggested change** Change word to lung cancer **Additional comments**
Buuz135/Thaumic-JEI
327004631
Title: [Question] Aspects from IItemstack without Scanning Question: username_0: Hey! Would it be possible to have Aspects from IItemstacks only scan once, and then have it read from the file said scan produces? The scanning makes the game almost unplayable for 5-15minutes the first time I log in after launch. Status: Issue closed Answers: username_0: Damn that was fast, thank you! username_1: Do you want to know something fasterhttps://minecraft.curseforge.com/projects/thaumic-jei/files/2566912 username_0: O_O gj!
zkSNACKs/WalletWasabi
551547607
Title: Core with bloom filter active issue Question: username_0: ### General Description A user reports the following. He is using wasabi and bisq together with Bitcoin Core v19, this used to work with wasabi, however for bisq, he needs to set in bitcoin.conf `peerbloomfilters=1`. With this changed, bisq works fine. However, this breaks wasabi, as there are no longer any transaction history nor coins. He then changed back to `peerbloomfilters=0`, however, still no coins in Wasabi. ### Operating System & Versions Ubuntu 18.04.3 Bitcoin Core v0.19.0.1 [standalone, not wasabi packaged, fully synced] Wasabi v1.1.10.2 Bisq v1.2.5 Answers: username_1: This info is not enough, sadly. We would need to have the log fragment where we can see the problem otherwise it is really hard. It would also be good to have the user's `bitcoin.conf` (the user can delete the `RpcUser` and `RpcPassword`). ----------------- Just a comment: Wasabi doesn't need `peerbloomfilters` so, enabling/disabling that option is not important and it should work with no problem. In fact, given Wasabi modifies the `bitcoin.conf` file to whitebind the endpoint, wasabi could require bloom filters even if `peerbloomfilters` is `0` (default value in latest bitcoin core version). username_1: I changed my local node (regtest) config file with `peerbloomfilters=1` and it works ok. username_2: I will send you the requests username_2: Log file from wasabi 2020-01-17 14:32:32 INFO Program (44) Wasabi GUI started (e958cd31-a69a-4b6c-b8d4-202028a3e644). 2020-01-17 14:32:46 INFO Global (164) Config is successfully initialized. 2020-01-17 14:32:46 INFO TransactionStore (28) MempoolStore.InitializeAsync finished in 29 milliseconds. 2020-01-17 14:32:46 INFO TorProcessManager (249) Starting Tor monitor... 2020-01-17 14:32:46 INFO Global (230) TorProcessManager is initialized. 2020-01-17 14:32:47 INFO Global (418) Loaded AddressManager from `/home/md/.walletwasabi/client/AddressManager/AddressManagerMain.dat`. 2020-01-17 14:32:47 WARNING Program (95) System.NullReferenceException: Object reference not set to an instance of an object. at Avalonia.Shared.PlatformSupport.StandardRuntimePlatform.UnmanagedBlob.DoDispose() at Avalonia.Shared.PlatformSupport.StandardRuntimePlatform.UnmanagedBlob.Finalize() 2020-01-17 14:32:47 INFO TorProcessManager (66) Tor is already running. 2020-01-17 14:33:46 INFO Program (44) Wasabi GUI started (62b2890d-7f6e-4f6e-ab19-04245ca0117e). 2020-01-17 14:33:48 INFO Global (164) Config is successfully initialized. 2020-01-17 14:33:48 INFO TransactionStore (28) ConfirmedStore.InitializeAsync finished in 5 milliseconds. 2020-01-17 14:33:48 INFO TransactionStore (28) MempoolStore.InitializeAsync finished in 19 milliseconds. 2020-01-17 14:33:48 WARNING Program (95) System.NullReferenceException: Object reference not set to an instance of an object. at Avalonia.Shared.PlatformSupport.StandardRuntimePlatform.UnmanagedBlob.DoDispose() at Avalonia.Shared.PlatformSupport.StandardRuntimePlatform.UnmanagedBlob.Finalize() 2020-01-17 14:34:37 INFO Program (44) Wasabi GUI started (23ec06c5-7be2-42c7-ba34-90f660b5729e). 2020-01-17 14:34:39 INFO Global (164) Config is successfully initialized. 2020-01-17 14:34:39 INFO TransactionStore (28) ConfirmedStore.InitializeAsync finished in 5 milliseconds. 2020-01-17 14:34:39 INFO TransactionStore (28) MempoolStore.InitializeAsync finished in 16 milliseconds. 2020-01-17 14:34:39 WARNING Program (95) System.NullReferenceException: Object reference not set to an instance of an object. at Avalonia.Shared.PlatformSupport.StandardRuntimePlatform.UnmanagedBlob.DoDispose() at Avalonia.Shared.PlatformSupport.StandardRuntimePlatform.UnmanagedBlob.Finalize() 2020-01-17 14:36:40 INFO Program (44) Wasabi GUI started (4d76f561-e989-492f-815a-25f216da57d0). 2020-01-17 14:36:43 INFO Global (164) Config is successfully initialized. 2020-01-17 14:36:43 WARNING Program (95) System.NullReferenceException: Object reference not set to an instance of an object. at Avalonia.Shared.PlatformSupport.StandardRuntimePlatform.UnmanagedBlob.DoDispose() at Avalonia.Shared.PlatformSupport.StandardRuntimePlatform.UnmanagedBlob.Finalize() 2020-01-17 14:39:41 INFO Program (44) Wasabi GUI started (31d8f095-ddc6-4cd4-909f-d169af774ee8). 2020-01-17 14:39:43 INFO Global (164) Config is successfully initialized. 2020-01-17 14:39:43 INFO TransactionStore (28) MempoolStore.InitializeAsync finished in 29 milliseconds. 2020-01-17 14:39:43 INFO TransactionStore (28) ConfirmedStore.InitializeAsync finished in 17 milliseconds. 2020-01-17 14:39:43 INFO TorProcessManager (249) Starting Tor monitor... 2020-01-17 14:39:43 INFO Global (230) TorProcessManager is initialized. 2020-01-17 14:39:43 INFO AllTransactionStore (27) InitializeAsync finished in 35 milliseconds. 2020-01-17 14:39:44 INFO Global (418) Loaded AddressManager from `/home/md/.walletwasabi/client/AddressManager/AddressManagerMain.dat`. 2020-01-17 14:39:44 INFO MainWindow.xaml (74) UiConfig is successfully initialized. 2020-01-17 14:39:44 INFO TorProcessManager (66) Tor is already running. 2020-01-17 14:39:47 INFO IndexStore (43) InitializeAsync finished in 3 seconds. 2020-01-17 14:39:47 INFO BitcoinStore (39) InitializeAsync finished in 3 seconds. 2020-01-17 14:39:47 INFO HostedServices (49) Started Software Update Checker. 2020-01-17 14:39:47 INFO Global (349) Start connecting to nodes... 2020-01-17 14:39:47 INFO Global (373) Start synchronizing filters... 2020-01-17 14:39:52 INFO WasabiSynchronizer (260) Downloaded filters for blocks from 613137 to 613276. 2020-01-17 14:40:26 INFO MainWindow.xaml (168) UiConfig is saved. 2020-01-17 14:40:26 INFO MainWindow.xaml (176) WalletManagerViewModel closed. 2020-01-17 14:40:26 INFO Global (812) Disposed FeeProviders. 2020-01-17 14:40:26 INFO Global (819) CoinJoinProcessor is disposed. 2020-01-17 14:40:26 INFO Global (826) Synchronizer is stopped. 2020-01-17 14:40:26 INFO HostedServices (78) Stopped Software Update Checker. 2020-01-17 14:40:26 INFO HostedServices (130) Disposed Software Update Checker. 2020-01-17 14:40:26 INFO Global (835) Stopped background services. 2020-01-17 14:40:26 INFO Global (846) AddressManager is saved to `/home/md/.walletwasabi/client/AddressManager/AddressManagerMain.dat`. 2020-01-17 14:40:26 INFO Global (859) Nodes are disposed. 2020-01-17 14:40:26 INFO Global (884) TorManager is stopped. 2020-01-17 14:40:26 INFO Global (892) AsyncMutex(es) are stopped. 2020-01-17 14:40:26 INFO Program (62) Wasabi GUI stopped gracefully (31d8f095-ddc6-4cd4-909f-d169af774ee8). username_2: this is my bitcoin.conf server=1 #dbcache=5000 txindex=1 assumevalid=0 proxy=127.0.0.1:9050 bind=127.0.0.1 #listen=1 peerbloomfilters=0 ##Servicios para la red Bisq #maxconnections=800 #timeout=30000 onlynet=onion dnsseed=0 dns=0 username_2: 2020-01-17T17:50:54Z Bitcoin Core version v0.19.0.1 (release build) 2020-01-17T17:50:54Z InitParameterInteraction: parameter interaction: -bind set -> setting -listen=1 2020-01-17T17:50:54Z InitParameterInteraction: parameter interaction: -proxy set -> setting -upnp=0 2020-01-17T17:50:54Z InitParameterInteraction: parameter interaction: -proxy set -> setting -discover=0 2020-01-17T17:50:54Z Validating signatures for all blocks. 2020-01-17T17:50:54Z Setting nMinimumChainWork=000000000000000000000000000000000000000008ea3cf107ae0dec57f03fe8 2020-01-17T17:50:54Z Using the 'sse4(1way),sse41(4way)' SHA256 implementation 2020-01-17T17:50:54Z Using RdRand as an additional entropy source 2020-01-17T17:50:54Z Default data directory /home/md/.bitcoin 2020-01-17T17:50:54Z Using data directory /home/md/.bitcoin 2020-01-17T17:50:54Z Config file: /home/md/.bitcoin/bitcoin.conf 2020-01-17T17:50:54Z Using at most 125 automatic connections (1024 file descriptors available) 2020-01-17T17:50:54Z Using 16 MiB out of 32/2 requested for signature cache, able to store 524288 elements 2020-01-17T17:50:54Z Using 16 MiB out of 32/2 requested for script execution cache, able to store 524288 elements 2020-01-17T17:50:54Z Using 8 threads for script verification 2020-01-17T17:50:54Z scheduler thread start 2020-01-17T17:50:54Z HTTP: creating work queue of depth 16 2020-01-17T17:50:54Z No rpcpassword set - using random cookie authentication. 2020-01-17T17:50:54Z Generated RPC authentication cookie /home/md/.bitcoin/.cookie 2020-01-17T17:50:54Z HTTP: starting 4 worker threads 2020-01-17T17:50:54Z Using wallet directory /home/md/.bitcoin/wallets 2020-01-17T17:50:54Z init message: Verifying wallet(s)... 2020-01-17T17:50:54Z Using BerkeleyDB version Berkeley DB 4.8.30: (April 9, 2010) 2020-01-17T17:50:54Z Using wallet /home/md/.bitcoin/wallets 2020-01-17T17:50:54Z BerkeleyEnvironment::Open: LogDir=/home/md/.bitcoin/wallets/database ErrorFile=/home/md/.bitcoin/wallets/db.log 2020-01-17T17:50:54Z init message: Loading banlist... 2020-01-17T17:50:54Z Cache configuration: 2020-01-17T17:50:54Z * Using 2.0 MiB for block index database 2020-01-17T17:50:54Z * Using 56.0 MiB for transaction index database 2020-01-17T17:50:54Z * Using 8.0 MiB for chain state database 2020-01-17T17:50:54Z * Using 384.0 MiB for in-memory UTXO set (plus up to 286.1 MiB of unused mempool space) 2020-01-17T17:50:54Z init message: Loading block index... 2020-01-17T17:50:54Z Opening LevelDB in /home/md/.bitcoin/blocks/index 2020-01-17T17:50:54Z Opened LevelDB successfully 2020-01-17T17:50:54Z Using obfuscation key for /home/md/.bitcoin/blocks/index: 0000000000000000 2020-01-17T17:50:57Z LoadBlockIndexDB: last block file = 1933 2020-01-17T17:50:57Z LoadBlockIndexDB: last block file info: CBlockFileInfo(blocks=65, size=73980101, heights=613233...613297, time=2020-01-17...2020-01-17) 2020-01-17T17:50:57Z Checking all blk files are present... 2020-01-17T17:50:57Z Opening LevelDB in /home/md/.bitcoin/chainstate 2020-01-17T17:50:57Z Opened LevelDB successfully 2020-01-17T17:50:57Z Using obfuscation key for /home/md/.bitcoin/chainstate: 590731d922024f67 2020-01-17T17:50:57Z Loaded best chain: hashBestChain=0000000000000000000eb48c487e5620a53ef1415dae869d3358d5b65e34f615 height=613297 date=2020-01-17T17:26:47Z progress=0.999989 2020-01-17T17:50:57Z init message: Rewinding blocks... 2020-01-17T17:50:57Z init message: Verifying blocks... 2020-01-17T17:50:57Z Verifying last 6 blocks at level 3 2020-01-17T17:50:57Z [0%]...[16%]...[33%]...[50%]...[66%]...[83%]...[99%]...[DONE]. 2020-01-17T17:50:58Z No coin database inconsistencies in last 6 blocks (18964 transactions) 2020-01-17T17:50:58Z block index 4263ms 2020-01-17T17:50:58Z Opening LevelDB in /home/md/.bitcoin/indexes/txindex 2020-01-17T17:50:58Z Opened LevelDB successfully 2020-01-17T17:50:58Z Using obfuscation key for /home/md/.bitcoin/indexes/txindex: 0000000000000000 2020-01-17T17:50:58Z init message: Loading wallet... 2020-01-17T17:50:58Z txindex thread start 2020-01-17T17:50:58Z txindex is enabled at height 613297 2020-01-17T17:50:58Z txindex thread exit 2020-01-17T17:50:58Z BerkeleyEnvironment::Open: LogDir=/home/md/.bitcoin/wallets/database ErrorFile=/home/md/.bitcoin/wallets/db.log 2020-01-17T17:50:58Z [default wallet] Wallet File Version = 169900 2020-01-17T17:50:58Z [default wallet] Keys: 0 plaintext, 4004 encrypted, 4204 w/ metadata, 4004 total. Unknown wallet records: 0 2020-01-17T17:50:58Z [default wallet] Wallet completed loading in 126ms 2020-01-17T17:50:58Z [default wallet] setKeyPool.size() = 2000 [Truncated] 2020-01-17T17:50:58Z [default wallet] mapAddressBook.size() = 203 2020-01-17T17:50:58Z block tree size = 613324 2020-01-17T17:50:58Z nBestHeight = 613297 2020-01-17T17:50:58Z torcontrol thread start 2020-01-17T17:50:58Z Bound to 127.0.0.1:8333 2020-01-17T17:50:58Z Leaving InitialBlockDownload (latching to false) 2020-01-17T17:50:58Z init message: Loading P2P addresses... 2020-01-17T17:50:59Z tor: Got service ID xxxxxxxxxxxxxx, advertising service xxxxxxxxxxxxx.onion:8333 2020-01-17T17:50:59Z AddLocal(xxxxxxxxxxxxxxx.onion:8333,4) 2020-01-17T17:50:59Z Loaded 49603 addresses from peers.dat 143ms 2020-01-17T17:50:59Z init message: Starting network threads... 2020-01-17T17:50:59Z DNS seeding disabled 2020-01-17T17:50:59Z net thread start 2020-01-17T17:50:59Z init message: Done loading 2020-01-17T17:50:59Z addcon thread start 2020-01-17T17:50:59Z msghand thread start 2020-01-17T17:50:59Z opencon thread start 2020-01-17T17:51:01Z New outbound peer connected: version: 70015, blocks=613297, peer=0 (full-relay) 2020-01-17T17:51:03Z Imported mempool transactions from disk: 8611 succeeded, 0 failed, 0 expired, 0 already there 2020-01-17T17:51:23Z New outbound peer connected: version: 70015, blocks=613297, peer=1 (full-relay) username_2: this is the run up of bitcoind username_3: Tested `peerbloomfilters=1` and it works. win10, core19, testnet username_3: This exception comes in your log 4 times. This is the issue, it has nothing to do with Bitcoin Core it seems. @danwalmsley @username_4 can you take a look at it? ``` 2020-01-17 14:32:47 WARNING Program (95) System.NullReferenceException: Object reference not set to an instance of an object. at Avalonia.Shared.PlatformSupport.StandardRuntimePlatform.UnmanagedBlob.DoDispose() at Avalonia.Shared.PlatformSupport.StandardRuntimePlatform.UnmanagedBlob.Finalize() ``` https://github.com/zkSNACKs/WalletWasabi/blob/a4c3c49e13c681babf33c77c0281c8056ad32b30/WalletWasabi.Gui/Program.cs#L93-L96 username_2: When I have this issue I was conected in a remote desktop to the PC. I don't know if this is relevant. username_3: @username_2 That should not work I think. Where do you point your Bitcoin Core directory in Wasabi? username_2: No, standalone. Separate in .Bitcoin and wasabi are in .wasabi the root are md my user username_3: I'm not sure I understand :) username_2: Sorry. Bitcoin core is in the same dedicated computer ( Bitcoin core, wasabi and bisq) but all in diferents directorys username_2: Wasabi work with my core no with the build in one. username_3: Your Wasabi version is 1.1.10.2, right? And your own Bitcoin Core version is 0.19.0.1, right? And you went to Tools/Settings on Wasabi and turned on the "Run Bitcoin Core on Wasabi's startup" toggle. If you run Bitcoin QT then Wasabi and Bisq can use your Bitcoin Core automatically, right? If you run Wasabi, without running Bitcoin QT first, then Wasabi doesn't work with Bitcoin Core, but Wasabi says "Bitcoin Core is unresponsive", right? If I understand the situation correctly then there're two issues here. One is what I just described, and another one is what the null reference exception. Although I don't think they are related, they may be. Since for the null reference exception we have a clue and for the other issue we do not yet, I think investigating that should happen first. So, let's wait for @danwalmsley @username_4's reply first. Then if that investigation gets stuck or turns out to be unrelated, we can debug the issue from Bitcoin Core side of things. username_4: ``` 2020-01-17 14:32:47 WARNING Program (95) System.NullReferenceException: Object reference not set to an instance of an object. at Avalonia.Shared.PlatformSupport.StandardRuntimePlatform.UnmanagedBlob.DoDispose() at Avalonia.Shared.PlatformSupport.StandardRuntimePlatform.UnmanagedBlob.Finalize() ``` that stack trace means that there's some native binaries that avalonia needs that the app can't find on the system... seems like a similar issue as that on the NixOS issue #2856 . username_2: ok. My question is how can i recover my balance in the 2 wallets that i have? One is wasabi and the other balance is coldcard wallet with outside signature. Should I wait for a solution or can i recover? username_3: You should not wait, you should be able to recover now, but please open another issue for this with a more elaborate description, as it'd be the 3rd issue that's discussed here which would fragment the conversation greatly. username_4: I seem to be not able to repro the NRE issue on a test virtual machine of Ubuntu 18.04.3. perhaps i might need to run a repo update? Status: Issue closed
cms-nanoAOD/cmssw
378640913
Title: Check AK8 jet input collection in all releases Question: username_0: Need to check carefully which AK8 jets are input to downstream calculations as the default AK8 jet collection changed from CHS to PUPPI between 80X and 94X. Answers: username_1: Also includes activating deepAK8 in all datasets where it should run Status: Issue closed
beetbox/beets
133791842
Title: configure beets to use relative paths Question: username_0: I moved my music folder and the beets library file to a new machine. The old path looks like `/media/data1/manu/musik` (external hdd) while the new one is just `/home/manu/Musik`. Now I asked on #beets how to move the library to a new place, as all queries still include the old path. Freso on IRC told me about how to [point beets to a new music directory](http://beets.readthedocs.org/en/latest/faq.html#point-beets-at-a-new-music-directory). I also use syncthing to keep all my music in sync with my computer, laptop and other users. So there could be always different locations included. I dont know why beets is saving the absolute path in its library. In my opinion it just feels wrong. If there is an option to use relative paths, I would never have to mess around with wrong paths in my library. Beets should consider relative paths and provide a **path** option: ``` directory: ~/Musik library: ~/Musik/lib.db path: relative import: move: yes plugins: edit info random missing fetchart embedart badfiles thumbnails duplicates fromfilename ``` Thanks in advance! Answers: username_1: Oops! That looks like a docs bug. Any chance you could open a PR to correct it? Status: Issue closed
conda-forge/triangle-feedstock
922545862
Title: add win build to feedstock Question: username_0: Hi guys, I'm working on modifying the recipe to include a windows build and having good success so far with everything successfully compiling. One thing I'm not familiar with exactly is what form the binary library itself should take. I see that the *nix build creates an archive and pops it into bin eg trilibrary: $(BIN)triangle.o $(BIN)tricall + ar r $(LIB)libtri.a $(BIN)triangle.o + ranlib $(LIB)libtri.a then install: +install: trilibrary $(BIN)triangle $(BIN)showme + cp -f $(LIB)libtri.a $(PROTEUS_PREFIX)/lib + cp -f $(BIN)triangle $(BIN)showme $(PROTEUS_PREFIX)/bin + cp -f triangle.h $(PROTEUS_PREFIX)/include I'm not sure what the equivalent would be for windows. Google around quite a bit and haven't found an obvious answer. Hoping you guys can point me in the right direction! Answers: username_1: For Windows: * binaries & DLLs would go under `%LIBRARY_PREFIX%\bin` * import and static libraries would go under `%LIBRARY_PREFIX%\lib` * headers would go under `%LIBRARY_PREFIX%\include` You can refer to https://docs.microsoft.com/en-us/cpp/build/walkthrough-creating-and-using-a-static-library-cpp to see how one can use the `lib` command to generate a static library with object files. username_1: It would be great if you can submit a PR, even if it is WIP username_0: Thanks for the info! My google fu was coming up short. re PR: Can't do it now but will in the next day or so. I considered it but because you make use of patches, which is also rather new to me, I figured that may just add noise to the question I was trying to get to. With that link I should be able to put a PR that is essentially good to go! One other thing: the documentation around the win conda-forge compiler was slightly unspecific. As far as I can gather it makes use of msvc so currently the plan is to have a makefile_linux.patch and a makefile_windows.patch that makes the appropriate changes. a) Sound reasonable? and b) does conda-forge win builds use msvc? username_1: Most of the conda-forge win builds use MSVC. For some we use the MinGW-w64 GCC compiler, but only if we have no choice and if there are no concerns about ABI compatiblity. As for the patches - are you planning on using the Makefile for launching the build commands? Assuming the overall commands are quite a few, you may instead want to just shove them into the bld.bat file itself (similar to build.sh on Linux). username_1: Resolved via https://github.com/conda-forge/triangle-feedstock/pull/6 Status: Issue closed
golf1052/base16-builder-typescript
251127437
Title: npm package has DOS line endings Question: username_0: The npm package seems to have DOS line endings, which is messing with the shebang [here](https://github.com/username_1/base16-builder-typescript/blob/6e9185ad0dd258a45026aafb1928f0e2ba81c868/bin/main.js#L1). When trying to execute it as a binary the error `/usr/bin/env: ‘node\r’: No such file or directory` is thrown. Not the case if I clone directly from this repo though. Answers: username_1: Jush pushed 1.1.3 that should fix this issue. Can you try and report back? username_0: Fixed 👍. Status: Issue closed
jmcarp/flask-apispec
312731863
Title: How do I use/document a GET parameter in flask-apispec? Question: username_0: I have GET parameters I would like to use/document with apispec. Example: I have the GET parameter **color** so I do requests like `GET /pets?color=black` ``` @app.route('/pets') @use_kwargs({'category': fields.Str(), 'size': fields.Str()}) @marshal_with(PetSchema(many=True)) def get_pets(**kwargs): color=request.args.get('color', None) return Pet.query.filter_by(**kwargs, color) ``` How do I declare **color** GET parameter in flask-apispec? Answers: username_1: Read #32
jlippold/tweakCompatible
718632312
Title: `Activator` partial on iOS 14.0.1 Question: username_0: ``` { "packageId": "libactivator", "action": "working", "userInfo": { "arch32": false, "packageId": "libactivator", "deviceId": "iPhone8,1", "url": "http://cydia.saurik.com/package/libactivator/", "iOSVersion": "14.0.1", "packageVersionIndexed": true, "packageName": "Activator", "category": "System", "repository": "BigBoss", "name": "Activator", "installed": "1.9.13", "packageIndexed": true, "packageStatusExplaination": "A matching version of this tweak for this iOS version could not be found. Please submit a review if you choose to install.", "id": "libactivator", "commercial": false, "packageInstalled": true, "tweakCompatVersion": "0.1.5", "shortDescription": "Centralized gestures, button and shortcut management for iOS", "latest": "1.9.13", "author": "<NAME>", "packageStatus": "Unknown" }, "base64": "<KEY>", "chosenStatus": "partial", "notes": "" } ``` Answers: username_1: This issue is being closed because your review was accepted into the tweakCompatible website. Tweak developers do not monitor or fix issues submitted via this repo. If you have an issue with a tweak, contact the developer via another method. Status: Issue closed
ocornut/imgui
976307928
Title: Unused variable in imgui_impl_glfw.cpp, line 914 Question: username_0: Version: 1.84.1 Branch: docking In imgui_impl_glfw.cpp, there is an unused variable at line 914 `ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();` `bd` is never used, so this line should be deleted. Status: Issue closed Answers: username_1: Pushed a fix for this, thanks! (As an unrequested suggestion: I think your day to day optimized build should preserve asserts, they are immensely helpful. What I often do in large projects is to have a "Debug" build (unoptimized, full debugging experience), "Release" (optimized, lesser debugging experience, debug & tools including asserts, "Final" (optimized, no debug/tools) username_0: Yeah, leaving asserts in a release build is somewhat more common in game development, where you really can't effectively run the full debug build too often because of performance reasons, in which case having a "final" fully optimized build is more important. Personally, I don't like changing the meaning of "Release", and prefer a name like "Development" for the intermediate build which is optimized, but still has some debug info. I don't really do this too often with my own projects at home, which tend to be smaller and don't require three different levels, because I can actually run the debug versions just fine. And since I use CMake now, it's also a bit easier to go with the standard targets that CMake generates for you (Debug, Release, RelWithDebInfo, MinSizeRel). If needed, you could just repurpose RelWithDebInfo for that sort of intermediate development mode.
milvus-io/milvus
521428324
Title: [DOC] Add Mishards README Question: username_0: ## Report needed documentation **Report needed documentation** There is no documentation about Mishards usage. **Describe the documentation you'd like** Add en and cn version of Mishards README. Answers: username_0: Added the file in #298 Status: Issue closed
linebender/piet
835284160
Title: Core Graphics Text Color Question: username_0: It looks text color isn't correct with Core Graphics backend. The following simple example just draws some text with the same color with the background, but the actual text color is different with the background. ``` Label::new("test label") .with_text_color(Color::rgb8(64, 120, 242)) .background(Color::rgb8(64, 120, 242)) ``` <img width="801" alt="Screenshot 2020-09-28 at 09 43 06" src="https://user-images.githubusercontent.com/1169480/94410216-044bb480-016f-11eb-8775-113468e3e039.png"> Answers: username_0: When I change NSColor to be in sRGB, this issue seems gone. username_1: mm interesting, what color space is it using otherwise? 'device rgb'? username_0: It's using ```CGColorCreateGenericRGB``` and that's only the option in core-graphics crate. https://github.com/servo/core-foundation-rs/blob/master/core-graphics/src/color.rs username_2: The simplest thing now would be to use SRGB for all `Color` to `CGColor`/`NSColor` conversions, so while the colors are not correct, at least are consistent between solid / gradient brushes and text. Correct thing, I guess, would be either to use `kCGColorSpaceGenericRGBLinear` everywhere, or convert manually from `Color`s RGBA components?
ARM-software/ComputeLibrary
234427050
Title: how to use NEHOGDescription to compute hog and get hog description? Question: username_0: Hi everybody, I am using ComputeLibrary to do neon acceleration. Here is my compile command: `scons Werror=1 -j8 debug=0 asserts=1 `neon=1` opencl=0 os=linux arch=armv7a build=native build_dir=./build` When I try to compute hog feature,I met some problems,the issues are: 1. I can not get the correct hog description with my code,and I don't know how to initialize the tensors dimensions and type correctly. 2. I calculate the time costing which works with ComputeLibrary ,and it works twice the time than opencv function that computing hog feature.I don't know why it works slower than opencv function. My code is:` #include <iostream> #include <fstream> #include <sys/time.h> #include <stdio.h> #include <stdlib.h> #include <opencv2/opencv.hpp> #include <arm_compute/runtime/NEON/NEFunctions.h> #include <arm_compute/runtime/HOG.h> #include <arm_compute/core/Types.h> using namespace arm_compute; using namespace std; using namespace cv; double getTimeMillisecondMain(); int main() { cv::Mat img = imread("IMG_3824.JPG"); if(img.empty()) { std::cout<<"error!"<<std::endl ; return 0; } cv::cvtColor(img,img,CV_RGB2GRAY); resize(img,img,cv::Size(width_,height_)); // for opencv hog computing time = getTimeMillisecondMain(); HOGDescriptor hog(Size(64,64),Size(16,16),Size(8,8),Size(8,8),9); vector<float> descriptors; hog.compute(img,descriptors,Size(8,8), Size(0,0)); std::cout << "opencv HOGDescriptor function takes " << getTimeMillisecondMain()-time << " ms" << std::endl; for(int i = 0;i<descriptors.size();i++) { std::cout<<descriptors[i]<<" "; } //for ComputeLibrary hog computing int x, y; int width = img.cols; int height = img.rows; int nchannels = img.channels(); [Truncated] output_it); std::cout<<"copy data to cpu memory takes "<<getTimeMillisecondMain()-start_t<<" ms"<<std::endl; for(int i = 0;i<HogDimensions;i++) { std::cout<<(float)dst_data[i]<<" "; } delete hog; delete [] src1_data; delete [] dst_data; }` any discussion will be helpful for me,thanks. I really need your help. Answers: username_1: Hi @username_0 , we are in the process of writing a blog post which I hope can be useful for you. The blog post will explain step by step how to use OpenCV to get the model and how to use our HOG/SVM for implementing a traditional computer vision pipeline for doing object detection. We will let you know once will be published. Thanks username_2: Have you created and published the blog post descirbing usage of HoG from within Compute Library? username_3: Willing to see the blog post! Is there some demo code? username_4: Hi @username_1, when is the blogpost available? greetings! Status: Issue closed username_5: Hi @username_0 I'd suggest you take a look at the fixtures in the validation suite, this will show you how to initialise the tensors and the hog descriptor. https://github.com/ARM-software/ComputeLibrary/blob/master/tests/validation/fixtures/HOGDescriptorFixture.h#L81 Regarding the performance, in your code above I see you take into account the time to copy the memory into the ACL tensor and then running the function. You don't do the same work in your OCV code which I think it's not a fair comparison. I'd suggest you experiment with ACL's HOGDescriptor test in the benchmark suite: https://github.com/ARM-software/ComputeLibrary/blob/master/tests/benchmark/NEON/HOGDescriptor.cpp to get a better understanding of the performance. Hope this helps. I'll close the ticket, if you have any problems please open a new one.
rickinator9/Diadochi-Kings
96707975
Title: Ptolemaic Flavor Question: username_0: I've been trying to come up with ideas for some flavor for the Ptolemies. I was thinking that ruling Egypt as a Macedonian dynast should have its own quirks. For one, Ptolemy and his successors styled themselves Pharaohs, in order to be more accepted by the locals, and to give themselves the prestige of having such an ancient title. We can reflect this with a trait that would lower revolt risk in provinces of Kemetic religion, while it would probably cause quite some unhappiness from Macedonian subjects. We could also give the subjects of e_egypt the option to indulge in Egyptian culture, removing the aforementioned opinion malus between them and their Megas Basileus. As Pharaoh, I think the player should be given the option to fund temples, get involved in religious festivals and cults, learn the local language, order the construction of various projects to boost his approval by the people and the priesthood etc. The Ptolemies were also great patrons of the Arts and Learning, something that I think should also be represented, perhaps by inviting philosophers, mathematicians, scribes and others to improve learning, stewardship etc. This could also apply to other Diadochi, too. The Ptolemies could have access to scribes, an important office to hold in any Egyptian administration, perhaps increasing learning and easing administration.
denoland/deno_lint
762309666
Title: Comparing a literal string union variable to `typeof` throws a `valid-typeof` error Question: username_0: When I run `deno lint --unstable` on this typescript I am getting a error ```ts function test(typeTest: "string" | "number" | "boolean", input: any) { if(typeTest === typeof input) console.log("Yey") } ``` ``` (valid-typeof) Invalid typeof comparison value if (expected === typeof input) { ^^^^^^^^ at file.ts:1:64 ``` Answers: username_1: Thanks for the report! The linter should check `typeof` comparison only when it's compared to string literals, not variables. I'll fix it. username_1: @username_3 Looking at #38, which is the PR that introduced `valid-typeof` rule, there was a discussion that you adopted a stricter option `"requireStringLiterals": true` over the default option in ESLint (actually the default is `false`). It seems like @username_0's example shows one of the useful and practical usages of `typeof` comparison with what's not string literals, although `typeof foo === undefined` still must be a mistake by a programmer in almost all cases. So I'd say it would be great if our `valid-typeof` behaved as follows: #### valid ```typescript typeof foo === 'string'; typeof foo === someVariable; // comparison with normal variables is okay ``` #### invalid ```typescript typeof foo === 'strign'; // this is typo // comparison with the literal of `undefined`, `null`, or `Object` are invalid! typeof foo === undefined; typeof foo === null; typeof foo === Object; ``` Comparison with `undefined`, `null`, `Object` literals are treated as errors, but with other variables are okay. This is a behavior of our own that is different from ESLint. Any thoughts on this? username_2: Of the three items mentioned, only `null` is a literal, the others are global variables, does that complicate anything? username_3: @username_1 sorry I completed missed the ping, I agree with your proposed solution.
zaproxy/zaproxy
85207356
Title: None Question: username_0: It's possible to obtain the details of the message using the "messageId" field and core "message" view (or, for already parsed message, using "messageHar"). Would that be OK? Answers: username_0: Any thoughts on this? @username_1, @username_2? username_1: Seems reasonable to me. username_2: Me too. username_1: Closing per discussion above. Status: Issue closed
abclinuxu/abclinuxu
880573979
Title: Přesunout molsketch do podskupiny chemie (Bugzilla Bug 809) Question: username_0: This issue was created automatically with bugzilla2github # Bugzilla Bug 809 Date: 2007-06-14 12:59:45 -0400 From: petr_p &lt;<<EMAIL>>&gt; To: <NAME> &lt;<<EMAIL>>&gt; Last updated: 2007-06-14 14:01:33 -0400 ## Comment 2520 Date: 2007-06-14 12:59:45 -0400 From: petr_p &lt;<<EMAIL>>&gt; Molsketch je program na kresletni chemicých vzorců a jako takový by měl být přesunut do podkategorie veda/chemie. ## Comment 2521 Date: 2007-06-14 14:01:33 -0400 From: <NAME> &lt;<<EMAIL>>&gt; hotovo
assetgraph/assetgraph
21313966
Title: AngularJS route template relation detection to strict Question: username_0: Currently the detection of angular templates in the $route module is to specific as if requires a very verbose syntax. The smallest common syntax I can find, which should work no matter what people call their local variables providing the route service is this: ``` js foo.when('string', { template: 'templateString', templateUrl: 'path/to/template.html' }); ``` The when method documentation can be found here: http://docs.angularjs.org/api/ngRoute.$routeProvider#methods_when Matching more broadly on this syntax will probably make the template dection work better for more users. Status: Issue closed Answers: username_1: The support for angular templates was removed in 3.0.0
jgthms/bulma
777341955
Title: .navbar-burger:hover doesn't include navbar-item-hover-color Question: username_0: ### Overview of the problem This is about the Bulma **CSS framework** I'm using Bulma **version** 0.9.1 My **browser** is: Firefox I checked the previous issues but couldn't find something similar. ### Description .navbar-burger:hover doesn't include color: $navbar-item-hover-color The hover cover is instead inherited from a:hover. When the `navbar` has a dark background an `a` has a dark color, the combination is not readable. ### Steps to Reproduce 1. Change the bulma scss to have a dark background for the navbar $blue: #336699; $lblue: #00ffff; $lgrey: #cccccc; $xlgrey: #eeeeee; $black: #000000; $navbar-background-color: $blue; $navbar-dropdown-background-color: $blue; $navbar-item-hover-background-color: $blue; $navbar-dropdown-item-hover-background-color: $blue; $navbar-dropdown-item-active-background-color: $blue; $navbar-dropdown-color: $white; $navbar-dropdown-arrow: $white; $navbar-item-color: $white; $navbar-dropdown-item-hover-color: $lblue; $navbar-item-hover-color: $lblue; 2. Create a navbar according to the example. https://bulma.io/documentation/components/navbar/ ... <a class="navbar-burger burger" data-target="navMenuMain"> <span></span> <span></span> <span></span> </a> ... 3. Shink the screen, over over the 3 line hamburger ### Expected behavior The over over color should be applied to the 3 lines as well as the X that make up the burger. ### Actual behavior ![image](https://user-images.githubusercontent.com/26171839/103445262-d4b1ba00-4c3f-11eb-811b-856430557bff.png) ![image](https://user-images.githubusercontent.com/26171839/103445252-c1065380-4c3f-11eb-88c7-5f3b03568839.png) Answers: username_1: Yes, right
Phylliade/ikpy
545357222
Title: ikpy is not pure python because it depends on numpy and scipy Question: username_0: Since numpy and scipy are not pure python (have c / native dependencies), ikpy cannot be considered pure python. (Unless a slower implementation existed that did not depend on numpy or scipy. Answers: username_1: Well you're right, there are C dependencies, but IKPy codebase itself is in pure python. (executing C code is not a problem per se, the Cpython runtime is in C ;) ) username_0: I was looking for a pure Python IK library that I could run on MicroPython (embedded systems), your library came up but unfortunately MicroPython does not provide scipy, and numpy is very limited at this time. I'm not trying to be pedantic, I really did want to use it in a purely Python environment ❤️ username_1: Ah ok got it! I suggest adding a FAQ about dependencies and the supported platforms. Would it solve the issue?
Delegation-numerique-en-sante/mesconseilscovid
621028166
Title: readme contenu anomalie? Question: username_0: Dans le readme contenu, je ne vois plus apparaître le Conseils_isolement.md https://github.com/Delegation-numerique-en-sante/mesconseilscovid/blob/master/contenus/conseils/conseils_isolement.md Pourtant il apparaît bien sur le site internet Status: Issue closed Answers: username_1: @username_0 bien vu, c'est corrigé !
rn222cx/1DV450_rn222cx_client
142794592
Title: Tags (seperate with ,) Question: username_0: För att göra gränssnittet bättre hade jag valt att ha ett fält för varje tagg. Blir tydligare för användaren. T.ex. kan man göra som så att om användaren skriver in en tagg, så dyker ytterligare ett "tagg-fält" upp så att man kan skriva in en ny tagg.
RamiKrispin/coronavirus
586915644
Title: Recovered data Question: username_0: How we can get recovered data now???? As you see in my dashboard I have used recovered cases: https://username_0.shinyapps.io/coronaVirusViz Answers: username_1: Sorry, for now, I don't have a solution as the data was removed from John Hopkins repo. I am looking for an alternative resource to pull this data, but given that <NAME> decided to stop supply this data, I believe that this data is not easy to find Nice dashboard! Status: Issue closed
yonient/KEImageLoopView
197808114
Title: 直接下載的Demo檔案不能run Question: username_0: 錯誤訊息如下: line 2: /usr/local/bin/carthage: No such file or directory Answers: username_1: 需要在電腦上安裝 carthage 或者在 target 的 build phrase 里面把 run script 删掉喔 username_0: 刪除 run script後跑起來出現 dyld: Library not loaded: @rpath/WebImage.framework/WebImage Referenced from: /Users/Daniel/Library/Developer/CoreSimulator/Devices/87A8413C-2BE2-42BE-8950-4637C91F33A7/data/Containers/Bundle/Application/0878AB8C-2CC7-464B-BA40-1BC430B33F91/KEImageLoopView.app/KEImageLoopView Reason: image not found username_1: 在 Link Binary With Libraries 裡面把 WebImage 包設為 Optional 再試一下呢 Status: Issue closed
Splidejs/splide-extension-video
856151960
Title: Laravel 8 support, config? Question: username_0: I noticed that when I: 1. Install the extension through NPM 2. Initialize Splide via the `script` tag 3. Copied and paste the skeleton or default HTML that comes in https://splidejs.com/extension-video/ The plug-in doesn't start. I was able to use the general purpose for the plug-in which are images but somehow I wasn't able to do the same with the extension video. Hoping someone could tell me how to properly set this up in a Laravel 8 application,, thanks. ` <script> new Splide( '#splide', { video: { autoplay: true, mute : true, }, } ); </script> ` Same thing happens if I target the extension using a CDN. Status: Issue closed Answers: username_1: Close the issue due to the major version update. Feel free to create a [new issue](https://github.com/Splidejs/splide-extension-video/issues) or open a [new discussion](https://github.com/Splidejs/splide/discussions). --- You need to mount the extension. https://splidejs.com/extensions/video/#installation
camptocamp/ngeo
200052376
Title: Build one example doc is out of date Question: username_0: https://github.com/camptocamp/ngeo/blob/master/docs/developer-guide.md#compile-the-examples-individually Does anyone know how to do now ? Answers: username_1: it shouldn't be `make .build/examples-hosted/simple.js`? username_0: Yes it is i will update the doc. Status: Issue closed
keleshev/schema
338387924
Title: Schema capture BaseException, invalidating program-exit and [Ctrl+C] Question: username_0: Schema captures any `BaseException` and wraps its as `a `SchemaException`, which inherits `Exception`. The problem is that many libraries may suppress `Exception` instances (e.g. in loops) and that would include also [system-errors like](https://docs.python.org/3/library/exceptions.html#exception-hierarchy) `KeyboardException`, `SystemExit` and `GeneratorException` if they have been wrapped above. Usually that appears as a malfunction python interpreter to the user ("cannot break program"). I can provide a PR with all `BaseException`s replaced with `Exception`.
Protonerd/FX-BlasterOS
802839931
Title: Low volume with 8Ohm 2W speaker volume control does not seem to work. Question: username_0: Low volume with 8Ohm 2W speaker volume control does not seem to work. Answers: username_1: Have you tried to set the volume in the config menu? username_0: Hi Yes I tried that but can not hear or see any difference when I try. Do I need a resister between the dfplayer and the ardiuno the rest is all working :) Thank you for your time on this Regards, Dan username_1: No resistor is needed. However there is a chance you have a bad DFPlayer (or a fake one, whcih amounts to the same). What does the marking on the DFPlayer chips read? You can try to modify the line #334 or FX-BlasterOS.ino from Set_Volume(storage.volume); to Set_Volume(31); If still low volume, either speaker or DFPlayer is defect.
WarEmu/WarBugs
309465837
Title: Invalid username and password Question: username_0: Hello supp. I created 3 accs and all has the same problem .I changed my passwords 4 times but still doesn't work .All my 3 accs unavalible .Do something please Status: Issue closed Answers: username_1: This is not the "supp" This is for ingame bugs. Please use the forum and write to a gamemaster. I would suggest to use another "mode" for this question.
idaholab/raven
626696975
Title: [TASK] Command Separators in the generateCommand of Code Interface Question: username_0: -------- Issue Description -------- **Is your feature request related to a problem? Please describe.** In the generateCommand() method of a Code Interface, the command separators between executables are "&&", which means all commands must return at 0 the end of execution. **Describe the solution you'd like** Command separators ";" require only the last command of the command line to return 0. **Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered. ---------------- For Change Control Board: Issue Review ---------------- This review should occur before any development is performed as a response to this issue. - [ ] 1. Is it tagged with a type: defect or task? - [ ] 2. Is it tagged with a priority: critical, normal or minor? - [ ] 3. If it will impact requirements or requirements tests, is it tagged with requirements? - [ ] 4. If it is a defect, can it cause wrong results for users? If so an email needs to be sent to the users. - [ ] 5. Is a rationale provided? (Such as explaining why the improvement is needed or why current code is wrong.) ------- For Change Control Board: Issue Closure ------- This review should occur when the issue is imminently going to be closed. - [ ] 1. If the issue is a defect, is the defect fixed? - [ ] 2. If the issue is a defect, is the defect tested for in the regression test system? (If not explain why not.) - [ ] 3. If the issue can impact users, has an email to the users group been written (the email should specify if the defect impacts stable or master)? - [ ] 4. If the issue is a defect, does it impact the latest release branch? If yes, is there any issue tagged with release (create if needed)? - [ ] 5. If the issue is being closed without a pull request, has an explanation of why it is being closed been provided?
FCOO/ifm-maps
169372729
Title: Invalid query string parameters Question: username_0: We need consistent handling of invalid query string parameters. My proprosal is to make some input validation which shows an error message to the user but does not throw errors that propagate to the top of the call stack. Answers: username_0: Duplicate of #30 Status: Issue closed
orcoastalmgmt/habitatscreeningtool
580775406
Title: Add new PISCO kelp data Question: username_0: Sara Hamilton of PISCO is passing us some new kelp data, and we will want to add it to the tool Answers: username_0: @mmosesOCMP I think this is a loose end that possibly got dropped this spring due to COVID - do you know the status from Sarah? did I miss something?
raphw/byte-buddy
464114648
Title: byte-buddy-maven-plugin transform failed Question: username_0: Execution default of goal net.bytebuddy:byte-buddy-maven-plugin:1.8.17:transform failed: None of [public static java.lang.Object com.demo.LogAspect.intercept(java.lang.reflect.Method,java.util.concurrent.Callable,java.lang.Object[]) throws java.lang.Exception] allows for delegation from public com.amazonaws.services.dynamodbv2.document.Item com.demo.Demo(java.lang.String,com.amazonaws.services.dynamodbv2.document.spec.GetItemSpec) Answers: username_1: As the exception says, it seems like your method does not allow for delegation to the specified target. Make sure that the delegation target does not require any parameter injections that are impossible for the method being instrumented. username_0: Why do I need to make sure that does not require any parameter to inject? However I need provide the callback method to invoke so that I can pass the request parameters and request object to the method. username_1: The problem is that these parameters are objects which are created in the JVM during the build. These objects do not longer exist if the classes are loaded once again in the JVM that executes the program. Therefore, it is required that you only create stateless references. Status: Issue closed username_1: Please reopen if there are further questions.
invertase/react-native-firebase
227385047
Title: Firebase Auth: current user object doesn't have proper 'providerId' with facebook Question: username_0: Hi all, When I signin with a facebook user, I except the user's object to have *providerId* set to *facebook*, but it's always *firebase*. Furthermore, there's no providerData linked to the user. I'm pretty sure the registration process is correct since Firebase Auth display the user as a Facebook user (see screenshot below). ![image](https://cloud.githubusercontent.com/assets/974918/25855382/55eaaace-34d3-11e7-95e1-9719b2254944.png) Here is the code I use to signin with Facebook: ``` <FBLogin permissions={['public_profile', 'email', 'user_friends', 'user_birthday', 'user_about_me', 'user_hometown']} onLogin={data => { const token = data.credentials.token; const credential = firestack.auth.FacebookAuthProvider.credential(token); firestack.auth().signInWithCredential(credential); .then((user) => { this.props.updateUser(user.uid, { locale: data.profile.locale, gender: data.profile.gender, }); ]); }); /> ``` I can't see something wrong, but maybe you'll see something. Answers: username_1: `providerData` is only of the few things left on auth that hasn't been implemented, will add this to the priority list and get in in the next couple of days. Once this is you should just be able to loop over the providerData array and find the relevant facebook props you need. username_0: OK, thanks for your help ! Status: Issue closed username_1: @username_0 closing as provider data is now available on both platforms.
soukoku/ntwain
689053904
Title: Display scaling issues Question: username_0: I'm on Windows 10 and when display scaling is active executing following lines resets display scaling to 100% for current application. ``` var appId = TWIdentity.CreateFromAssembly(DataGroups.Image, Assembly.GetExecutingAssembly()); var session = new TwainSession(appId); session.Open(); ``` Did anybody else encounter this issue and found a solution? Answers: username_1: You can try to declare the app as high DPI aware by putting these in an app manifest file like below. You may have to use other values depending on whether it actually supports high DPI (see [the docs](https://docs.microsoft.com/en-us/windows/win32/hidpi/setting-the-default-dpi-awareness-for-a-process)). ```xml <application xmlns="urn:schemas-microsoft-com:asm.v3"> <windowsSettings> <dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2,PerMonitor</dpiAwareness> <dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true/PM</dpiAware> </windowsSettings> </application> ``` username_0: Thanks, it worked. Status: Issue closed
typestyle/typestyle
194515602
Title: Move out the remaining csx stuff into the csx npm package Question: username_0: * This will help us have a more stable API post 1.0 :rose: Status: Issue closed Answers: username_0: Moved it out. * [x] Released TypeStyle `0.16.0`. In my mind this is RC. * [x] Released new major `csx` npm package: `8.x.x` :rose: * [x] Updated website / docs http://typestyle.io/#/colors @notoriousb1t Needless to say you have full executive control of the csx package. It is literally all *your* hard work :heart:
concepticon/concepticon-data
645345106
Title: Concepticon 2.4.0 release Question: username_0: Dear all, we've accumulated a number of [fixes and corrections as well as additional lists](https://github.com/concepticon/concepticon-data/compare/v2.3.0...master) (18 as of right now, for a total of 328) in this cycle and since the [last milestone](https://github.com/concepticon/concepticon-data/milestone/10) and [last release](https://github.com/concepticon/concepticon-data/issues/743). Given that a number of these corrections are important for Lexibank datasets and in the spirit of pushing this project forward, releasing a Concepticon 2.4.0 in the 'near future' would be good. If all of you, whenever your time allows, could have a look at * [the 2.4.0 milestone](https://github.com/concepticon/concepticon-data/milestone/11) * and [open issues](https://github.com/concepticon/concepticon-data/issues) this would be good. Open issues can still be assigned to the 2.4.0 milestone should need be, so feel free to do so or let me know! I've set July 10th as a deadline for this milestone which is of course by no means binding. However, sometime during 'the next couple of weeks' would be good I think. Answers: username_1: Yes, this sounds very good. We have a couple of lexibank datasets with almost completed concept lists that just need to be linked. So they are linked inside lexibank, but not to concepticon. And we have some borderline cases, such as, for example gerarditup in lexibank, which has a concept list that we could link, but the article won't appear before 2021, since it is accepted for Diachronica. If we knew it appears in the last 2020 issue, we could date it as 2020, but I tend to try to avoid now to re-name concept lists again and again (e.g., also joophonosemantic, where the concept list is 2020 now instead of 2019, etc.). Concrete lists, that could be done immediately: * [pharaochoracolaztecan](https://github.com/lexibank/pharaocoracholaztecan/blob/master/etc/concepts.tsv). * [ratliffhmongmien](https://github.com/lexibank/ratliffhmongmien), may need some refinement * [bdpa](https://github.com/lexibank/bdpa/blob/master/etc/concepts.tsv), additional concepts can be added * [simsrma](https://github.com/lexibank/simsrma/blob/master/etc/concepts.tsv), needs a bit of work, but basically easy to do * [luangthongkumkaren](https://github.com/lexibank/luangthongkumkaren/blob/master/etc/concepts.tsv) I'll also move lists to our milestones. username_2: The concept list for simsrma is already in the Concepticon (see #833). I'd prefer to begin with the lists now, starting with luangthongkumkaren. username_1: Nice, thanks for clarifying, @username_2, and yes: starting to add the lists now is a good idea! username_0: @username_3 a new Concepticon release in the near future might be good (I dropped the ball on pushing v2.4.0 earlier, apologies). Do you think a v2.4.0 would still be reasonable? I think the directory & pyconcepticon refactorings are still a little bit further down the road. username_0: If we aim for v2.4.0 soon™ I'd say we focus on smaller outstanding issues (gloss refinements, small issues). username_3: So in terms of new concept lists we are all good? username_0: I'd say so, yeah, but that's maybe where the others would like to chime in. username_1: We sure have enough. We also have our precedence for cases like Fabrício's Tupían data: they are first published as CLDF in a pre-release, and then adjusted with full concepticon mapping, once the paper appeared. I think that this is solid. We should only wait to close few of the 2.4 milestone issues and also the last PRs (including the translated list of German glosses in IDS, which I consider important). username_0: Okay, thanks, I'll revisit the milestones and then I think we should go for a release by end of next week. username_0: Dear all, we're aiming for a release tomorrow. Could you please check the [2.4 milestone](https://github.com/concepticon/concepticon-data/milestone/11) and check what you would like to see tackled before the release? Feel free to move non-urgent things to the 3.0 milestone. username_1: I just fixed the ones, so we have only some 6 milestones left, with the PR of #976, the #970 could also be tackled, and one more milestone as well (the issue on call by name and be called). username_0: Very nice, thanks! I'll have a look at the remaining issues first thing in the morning. username_0: Okay, release this afternoon if all goes well? Please everyone who has time check the open PRs (https://github.com/concepticon/concepticon-data/pulls) and the [2.4 milestones](https://github.com/concepticon/concepticon-data/issues?q=is%3Aopen+is%3Aissue+milestone%3A2.4). The updated WALL mapping (see discussion [here](https://github.com/concepticon/concepticon-data/pull/992)) should also go into 2.4, imo. username_1: We have to adjust the list of editors as well. This time, I suggest to: 1. include Tiago, 2. include Carolin This means, description in .zenodo.json should be adjusted: ``` "description": "<p>List, <NAME> &amp; Rzymski, Christoph &amp; Greenhill, Simon &amp; Schweikhard, Nathanael &amp; Pianykh, Kristina &amp; Tjuka, Annika &amp; Wu, Mei-Shin &amp; <NAME> &amp; <NAME> &amp; <NAME> (eds.) 2020. Concepticon. A Resource for the Linking of Concept Lists. Version 2.4.0. Jena: Max Planck Institute for the Science of Human History. Available online at https://concepticon.clld.org</p>", ``` username_3: `.zenodo.json` is created running `concepticon citation`. So this will be taken care off automatically. username_1: Ah, okay, so concepticon citation, the command should be adjusted then. username_3: What do you mean by "adjusted"? It is documented in `RELEASING.md`. username_1: Bad wording: releasing does not document WHO should be included, so including Tiago and Carolin is something we should not forget. username_1: I just saw the citation.py, very cool, so we only need to modify the markdown with contributors... sorry, had not really paid attention to the code before... username_0: https://github.com/concepticon/concepticon-data/releases/tag/v2.4.0 Thanks everyone and thanks @username_3 for releasing! Status: Issue closed
hakierspejs/homepage
963966571
Title: WCAG Question: username_0: # Mini audyt dostępności strony Hakierspejs Łódź ## Przydatny kod: ``` .sr-only { border: 0 !important; clip: rect(1px, 1px, 1px, 1px) !important; -webkit-clip-path: inset(50%) !important; clip-path: inset(50%) !important; height: 1px !important; margin: -1px !important; overflow: hidden !important; padding: 0 !important; position: absolute !important; width: 1px !important; white-space: nowrap !important; } ``` ## Propozycje: 1. Strona jest głównie po polsku, więc zamiana `<html lang="en">` na `<html lang="pl">`. 2. Warto dodać skip linki (tutaj przykład dla strony głównej): HTML ``` <ul class="skip-links wrapper"> <li><a href="#main" class="skip-link">Przejdź do treści</a></li> <li><a href="#event" class="skip-link">Przejdź do wydarzeń</a></li> <li><a href="#map" class="skip-link">Przejdź do lokalizacji</a></li> </ul> ``` CSS ``` .skip-link { clip: rect(1px, 1px, 1px, 1px) !important; -webkit-clip-path: inset(50%) !important; clip-path: inset(50%) !important; height: 1px !important; margin: -1px !important; overflow: hidden !important; position: absolute !important; width: 1px !important; white-space: nowrap !important; text-align: center; text-decoration: none; padding: 0.5rem 1.5rem; position: absolute; top: 1rem; left: 1rem; z-index: 999; color: black; background: white; border: 2px dotted white; } .skip-link:focus, .skip-link:active { clip: auto !important; [Truncated] ``` 3. Jeżeli link kieruje do PDF, np. deklaracja to fajnie dodać zrobić coś takiego w kodzie: `<a href="https://raw.githubusercontent.com/hakierspejs/statut/master/deklaracja/deklaracja.pdf">deklaracja<span class="sr-only">przenosi do dokumentu PDF</span></a>` 4. Warto dodać focus dla linków i przycisków, np. 2px dotted white, bo strona jest czarna. Warto przy tym sprawdzić jak to wygląda i czy nie trzeba dodać padding. 5. Brakuje title dla iframe z mapą. 6. Zdjęcia nie mają dodanego atrybutu "alt", czyli opisu dla zdjęcia. Np. Drewniane brązowe biurko na którym leży komputer. 7. Warto dodać "title" dla linków, które przenoszą na git lub wiki, np. `<a href="//github.com/hakierspejs/wiki/wiki" title="przenosi na inną stronę">wiki</a>` 8. Do strzałek i kropek dla slidera warto dodać w "sr-only" lub "title" informację co one robią, np.: `<div class="fotorama__arr fotorama__arr--prev" tabindex="0" role="button" title="Poprzedni slajd"></div>` 9. Myślę, że fajnie gdyby te kółeczka z slidera były trochę większe. Jeżeli ktoś ma "grubsze" palce, to może mieć problem z trafieniem w nie na smartfonie. 10. Kontrast tekstu w stopce jest zbyt niski ([https://whocanuse.com/?b=000000&c=444444&f=20&s=](https://whocanuse.com/?b=000000&c=444444&f=20&s=)). Powinien wynosić minimum 4.5:1. Answers: username_1: @username_0 dzięki za feedback! Pozwoliłem sobie edytować Twój post, dodając `- [ ]` przed nim, żeby Github wyświetlał to jako issue składający się z 11 zadań.
laplatarb/meetup-nov-2016
187364921
Title: Solicitud de charla: Arquitecturas hexagonales y Domain Driven Development Question: username_0: ## Cualquier cosa, mis contactos: <EMAIL> <EMAIL> <EMAIL> **Skype** Jonathan.Loscalzo Saludos! Answers: username_1: me parece que esto ya está listo! 2 cosas se me ocurren nomas: 1) ver si todos los puntos entran en una charla corta de 20/30 min 2) tener algún caso o experiencia de alguien que haya usado esto en algún sistema en produccion o casi (nosotros tenemos algo así como un anti-caso :P pero no sumaría mucho...) Si no es para esta meetup, puede ser para la próxima!! username_0: Significa que alguien ya lo hizo!!!!??? Yo lo plantié acá en la empresa para charlarlo pero no se si tuvo mucha repercusión Gracias! username_1: no, digo, ya armaste toda la estructura, tenés bocha de contenido leído, falta dar la charla nomas :) username_0: ah, yyy si. Pero no me siento capo para dar la charla. Pero me vendría bien para practicar. Aparte puedo decirle a Christian que me lo tome como final de Ruby ( ? ) username_2: 2 cosas: 1. No hace falta ser capo para dar una charla, con tener ganas de contar algo dale para adelante! 2. Podés preguntarle si querés, pero no tiene nada que ver con la_plata.rb 😉
javaEE-had-been-black/error-record
691726059
Title: cart怎么运行? Question: username_0: 先部署四个cart的子项目。 然后到 glassfish5\glassfish\bin\ 下面找 appclient.bat 用命令行运行 详见教材 cart 教程中的“To Run the cart Example Using Maven”部分 Answers: username_1: 使用powershell无法成功 ![image](https://user-images.githubusercontent.com/70639586/92126292-92fc3880-ee32-11ea-835d-23630297550c.png) 改用cmd成功 ![image](https://user-images.githubusercontent.com/70639586/92126332-a14a5480-ee32-11ea-87a3-c3e7b44d7977.png)
urbit/urbit
119751363
Title: A catalog of syntax collisions with other languages Question: username_0: C, bash, js, perl; I'm sure there's a list of the top 50, or at least 10, somewhere, and it would be useful to be able to point people at a reference for what expressions mean completely different things in hoon vs. something else you might be used to. A sort of inverse Rosetta code, maybe; the list could also contains expressions that *do* mean the same thing in hoon as another language. Simple cases that come to mind: - `a=1` is usually assignment, either mutable or as a local `let` - `a:1` is `{"a":1}` dictionary literal in coffeescript, probably others - `%1 %2 %3` refer to arguments by position(bash, clojure) - `[a - b]`, `[a + b]`, `[a / b]`, `[a ** b]`, `[a ~ b]` (first three used to effect in a maths library I remember writing. @cgyarvin can write a language *hostlie* to DSLs, but this just makes their mechanism of action harder to determine.) - `a.b.c` ordering - `a(b c)` as distinct from `(a b c)` - the expression [ 1 ; 2 ] while nonidiomatic hoon, could give someone a bit of a start. - likewise `[ :* a == b ]` - `++` as "define" and not increment; `--` Answers: username_0: Found the list: http://rigaux.org/language-study/syntax-across-languages username_1: This issue was moved to urbit/docs#134 Status: Issue closed
mtholder/propinquity
135201624
Title: Documentation of output files Question: username_0: Needed for all output directories, but particularly urgent is the `annotated_supertree`. The readme only mentions one file, not three: ./annotated_supertree/annotations.json ./annotated_supertree/annotations1.json ./annotated_supertree/annotations2.json If there is detailed documentation elsewhere on these (and others) output files, the readme(s) should point to that documentation as well. Answers: username_1: I have made a pass over the referenced wiki page https://github.com/OpenTreeOfLife/opentree/wiki/Conflict-and-synthesis-file-formats to make it clearer that there is an interface here, and I have added an example of conflict/support information, which is incomplete but better than nothing. Needs more work. In particular the wiki page does not say anything about 'annotations1.json' or 'annotations2.json' and I don't have examples. But maybe these aren't meant to be exposed? username_2: closing this because those are now documented in README files by the html documentation make target (in the username_2/propinquity fork) Status: Issue closed
consolidation/cgr
329889228
Title: Installation unclear Question: username_0: I have tried to install cgr but the process the readme describes doesn't work. My composer is in /usr/local/bin I run ~/cgr# composer global require consolidation/cgr Changed current directory to /root/.config/composer Do not run Composer as root/super user! See https://getcomposer.org/root for details Using version ^2.0 for consolidation/cgr ./composer.json has been created Loading composer repositories with package information Updating dependencies (including require-dev) Package operations: 1 install, 0 updates, 0 removals - Installing consolidation/cgr (2.0.4): Downloading (100%) Writing lock file Generating autoload files ~/cgr# export PATH="$HOME/.composer/vendor/bin:$PATH" ~# cgr -bash: cgr: command not found .composer does not exist. Why is this and how do I fix that? Answers: username_1: Some systems install to `$HOME/.config/composer` instead of `$HOME/.composer`. Adjust your $PATH appropriately. Also, it would be best to install and use Composer as some non-root user. Any package that you install can run code at install time. username_0: Thanks. On debian it seems to be .config (why ever, for me it doesn't make sense at all to have it under a folder .config which could be basically anything). Is it possible to reflect that in the documentation or is there a way to find out what folder my installation uses in general? Status: Issue closed username_1: @username_0 I updated the README to be more general vis-a-vis platform variations that may exist. username_2: **I needed to symlink from `/usr/local/bin`** @username_0 @username_1 In order to run cgr but just typing `cgr` (and therefore eliminating the `bash: cgr: command not found` error), I had to symlink cgr from `/usr/local/bin` using the following command: `sudo ln -s ~/.config/composer/vendor/bin/cgr .` then I could use cgr to run cgr, and go on to use it to install drush `cgr drush/drush` (as prescribed by: https://github.com/consolidation/cgr#installation-and-usage ) Likewise, I have to also symlink drush from `/usr/local/bin` to be able to just use drush at the command line to run drush `sudo ln -s ~/.config/composer/vendor/bin/drush .` Be careful to use -s (i.e. lower case s, not upper case S) as the option/switch as upper-case means something completely different - "hard link" (and you'll get the error: `ln: .: hard link not allowed for directory` if you try to use capital/uppercase S) **My environment:** Ubuntu 16.04.4 LTS 64bit on DigitalOcean I used a non-root user to install composer, then cgr and drush - my user is called `web` and belongs to the following groups: `web sudo www-data lxd docker` **Other references:** https://askubuntu.com/questions/866161/setting-path-variable-in-etc-environment-vs-profile https://getcomposer.org/doc/00-intro.md#globally https://getcomposer.org/download/ **What didn't work (to stop the `command not found error` - and therefore actually be able to run cgr):** Setting the $PATH variable (and permanently at that in /etc/environment) to point to the $HOME/.config/composer/vendor/bin folder to look for the command there, did not work - I got that same command not found error. The contents of my `/etc/environment` file are as follows: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:$HOME/.config/composer:$HOME/.config/composer/vendor/bin" (I ran the command `source /etc/environment` so that the additions to the $PATH variable to add that vendor/bin path were picked up, saving logging out and back in)
Deepwalker/trafaret
606773349
Title: No FromString/ToBytes? Question: username_0: There is a FromBytes object to convert to string. It would be nice to have the inverse to convert to bytes. Answers: username_1: Do you have real use case? How it should look like? `ToBytes(encoding='utf-8')`? username_0: Looks reasonable, yes. Use case is to pass an argument such as a password into a password hashing function, which requires bytes. ``` login = t.Dict({"password": t.ToBytes(encoding="utf-8"), "username": t.String()}) hashlib.scrypt(login["password"], ...) ``` Status: Issue closed
preactjs/preact-cli
474132784
Title: 3.0.0-rc.3 → 3.0.0-rc.4 causes socket error Question: username_0: **Do you want to request a _feature_ or report a _bug_?** Report a bug. **What is the current behaviour?** When upgrading from rc.3 to rc.4, I get the following error: ```javascript Uncaught TypeError: Cannot read property 'replace' of null at createSocketUrl (createSocketUrl.js?2ef6:20) ``` It appears that `var getCurrentScriptSource = require('./getCurrentScriptSource');` (line 8) doesn’t get the current script source, which then causes `scriptHost.replace` to misfire (line 18-20): ```javascript var scriptHost = getCurrentScriptSource(); // eslint-disable-next-line no-useless-escape scriptHost = scriptHost.replace(/\/[^\/]+$/, ''); ``` Please paste the results of `preact info` here. ``` Environment Info: System: OS: macOS 10.14.4 CPU: (6) x64 Intel(R) Core(TM) i5-8500 CPU @ 3.00GHz Binaries: Node: 12.6.0 - ~/.nvm/versions/node/v12.6.0/bin/node Yarn: 1.17.3 - /usr/local/bin/yarn npm: 6.9.0 - ~/.nvm/versions/node/v12.6.0/bin/npm Browsers: Chrome: 75.0.3770.142 Firefox: 66.0.5 Safari: 12.1 npmPackages: preact: 10.0.0-rc.0 => 10.0.0-rc.0 ``` Status: Issue closed Answers: username_1: Resolved in the latest RC.
Nuklon/Steam-Economy-Enhancer
311340773
Title: Turn ancient market listing automatically into gems Question: username_0: There are market items, that even if you put them on the market for the lowest price, will never sell. The only use for them then is to turn them into gems, and that is what I am proposing. Answers: username_1: Yeah, this would be nice indeed, no time for this to code at the moment though, so I accept a PR for it. Status: Issue closed username_1: Yes, that's the easiest solution right now :) username_2: It is not always worth it to convert trading cards into gems: you may get as little as 1 gem for it, which is currently worth 1/50 of a cent. This automatic conversion would be a bit dangerous. People might prefer to trade their cards away.
ScottLogic/finput
237160512
Title: Compatibility with type=number Question: username_0: Would give more appropriate on-screen keyboard, if the component user specified that on the input. Or use the step attribute for the up/down arrow native behaviour. However, that type doesn't support selections so at the moment it gives an error. Answers: username_1: Today I found there's an `inputmode` attribute. There's no current browser support, but it'll solve this use case when it lands. https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#attr-inputmode https://caniuse.com/#feat=input-inputmode
trichner/fbdraw
925100364
Title: How to improve fb draw speed? Question: username_0: Hi, this is a very good project, and I run it in V3S arm now. After draw a new text,, call the function to refresh fb. draw.Draw(fb, fb.Bounds(), ctx.Image(), image.ZP, draw.Src) It will display very slow. How to improve the draw speed? Thank you very much. Answers: username_0: gg add a function RGBA() func (dc *Context) RGBA() *image.RGBA { return dc.im } copy(framebuffer.Pixels[0:], dc.RGBA().Pix[0:]) Status: Issue closed
cfwheels/cfwheels
68718201
Title: validatesFormatOf(property="Homepage", allowBlank=true, type="URL") does not accept umlauts like äüö Question: username_0: Hi the model validation function validatesFormatOf(property="Homepage", allowBlank=true, type="URL") does not accept umlauts like äüö. Probably other special character are also not possible like ß for example. Regards username_0 Answers: username_1: `validatesFormatOf` uses the inbuilt `isValid()` function of the underlying CFML engine I think. So the easiest way round would be to write your own validation function, as I don't think writing a whole bunch of custom validation functions specifically for cfwheels is a great idea (or rather, would be quite a large job). Status: Issue closed username_2: I agree with Tom, especially since it's fairly easy to work around this ColdFusion bug (use the "regEx" argument instead). username_0: OK, I will use regEx. Thanks!
expo/expo
227217198
Title: Fullscreen Video on Android Question: username_0: Moved from: https://github.com/expo/expo-sdk/issues/39 @username_1 has some ideas for what to do here and it's on the roadmap. Answers: username_1: Note that you can create a fullscreen player that works on both platforms by making a `Video` component that fills the entire screen. This issue is just to either create an android equivalent of the iOS fullscreening available through the imperative API on `Video`, or a convenience cross-platform fullscreen video component implemented with `Video`. username_2: Closing in favor of https://expo.canny.io/feature-requests/p/fullscreen-video-on-android Status: Issue closed
helmetjs/csp
178390704
Title: External links doesn't work when running CSP Question: username_0: up vote 0 down vote favorite I meet a surprising problem. If i don't enable my CSP config, no problem, everything works fine. But when I activate CSP, internal links work normally, but external not. On my website, (for example here, https://www.matosmaison.fr/avis/perceuses-visseuses/ryobi-rpd1200k) I have links to amazon, zanox and other similar. These links doesn't work when using CSP. What is for you my mistake in this config ? ```javascript "defaultSrc": [ "'self'", "www.matosmaison.fr", "cdn.matosmaison.fr", "www.google-analytics.com", "images-na.ssl-images-amazon.com", "youtube.com", "www.youtube.com", "googleads.g.doubleclick.net" ], "scriptSrc": [ "'self'", "www.matosmaison.fr", "cdn.matosmaison.fr", "www.google-analytics.com", "images-na.ssl-images-amazon.com", "youtube.com", "www.youtube.com", "googleads.g.doubleclick.net" ], "styleSrc": [ "'self'", "www.matosmaison.fr", "cdn.matosmaison.fr", "www.google-analytics.com", "images-na.ssl-images-amazon.com", "youtube.com", "www.youtube.com", "googleads.g.doubleclick.net", "'unsafe-inline'" ], "fontSrc": [ "'self'", "www.matosmaison.fr", "cdn.matosmaison.fr", "www.google-analytics.com", "images-na.ssl-images-amazon.com", "youtube.com", "www.youtube.com", "googleads.g.doubleclick.net", "'unsafe-inline'" ], "imgSrc": [ "'self'", "www.matosmaison.fr", "cdn.matosmaison.fr", "www.google-analytics.com", "images-na.ssl-images-amazon.com", "youtube.com", "www.youtube.com", "googleads.g.doubleclick.net", "data:" ], "sandbox": ["allow-forms", "allow-scripts", "allow-same-origin", "allow-top-navigation"], "reportUri": "/report-violation", "objectSrc": [] ``` I have tried with adding amazon, zanox and the others but no changes, it doesn't work. Thanks in advance ! Answers: username_1: That's odd. Could you open your developer console and tell me what errors you see? username_0: Already tried. No errors at all (i have checked, there is no filter or other thing similar which can hide a message). username_1: What browsers have this problem? username_0: Got it on last chrome version (52). Not experimenting it on Firefox 40. username_0: Have tried on Chrome 53 too. Same problem. username_0: Ok, I have found the "issue". It seems that the problem come from the attributes target of my links. If i don't have any target, no problem. If i have target="_blank", the link doesn't work (wtf?) username_0: Ok, I have found the solution. Openning a new "_blank" tab is considered as opening a popup. So in sandbox mode, you can have this message Blocked opening '[your link]' in a new window because the request was made in a sandboxed frame whose 'allow-popups' permission is not set. You can reproduce with the simple JS command : ```javascript window.open('[your link]', '_blank') ``` To fix it, you need to add this part : ```json "sandbox": ["allow-popups"] ``` or to complete the sandbox part with the value "allow-popups". Status: Issue closed username_1: Ah, that makes sense. Feel free to open a new issue if you run into any other problems! username_0: I hope I will not. I have added the value to this site which didn't have this info https://content-security-policy.com/ username_0: Sorry I didn't realize that "I hope I will not" could be misunderstood. Your work with helmet is really great, helmet is great too. I just would like to say that if I encountered a new problem which need a ticket, I think I will not be as intelligent as needed to solve it by myself. Thank you for helmet username_1: Haha, I think I read it the way you meant it. Thanks for the kind words and for using Helmet!
ArctosDB/arctos
1029664612
Title: bulkloader assistance Question: username_0: May I please use the bulkloader? ** Please use the "Report Bad Data" link where available to ensure the correct Curator receives your message. ** ** Outages should be reported to the contacts listed at https://arctosdb.org/arctos-down/ ** ** Arctos Documentation is http://handbook.arctosdb.org/ ** ** Learn more about Arctos at https://arctosdb.org/ ** ** Please include enough information to re-create the problem if this request involves Arctos forms. Links and screenshots are helpful. ** Answers: username_1: Nobody is in there as far as I can tell....
miguelgrinberg/Flask-Migrate
598871601
Title: Binding Multiple Database error Question: username_0: Hi MIguel, I have installed flask-migrate, but I am having issue with multidb part. The Flask Migrate script that I ran from command line as you suggested works fine for single db. But when I added SQLALCHEMY_BINDS and used db init --multidb. This went through and generated the scripts and the folder. However, the db migrate function failed stating that on line 33 in env.py current_app.config.get("SQLALCHEMY_BINDS") returns a not iterable object. However, my db.create_all() from SQLAlchemy works fine. Can you please look into this issue? Thanks, <NAME> Answers: username_1: What's the value of `current_app.config.get("SQLALCHEMY_BINDS")`? username_0: Hi Miguel, Thank you for the quick response. I have set the SQL binds through my config file: Below is how it looks like. The environment is set to development. The three steps that I have taken are: 1) db init --multifb 2) db migrate (this is where I got an error) 3) db upgrade (I would have done this if it worked). environment_type = { "development": { "postgres": "postgresql://postgres:postgres@localhost", "AWS_SECRET_KEY": "aws", "AWS_SECRET_ACCESS_CODE": "aws", "SQLALCHEMY_TRACK_MODIFICATIONS": True, "JWT_SECERET_KEY" : "", "SQLALCHEMY_BINDS" : { "core":"postgresql://postgres:postgres@localhost", "client":"postgresql://postgres:postgres@localhost/client134" } }, "staging": { "postgres": "stagingdb", "SECRET_KEY": "aws", "ACCESS_CODE": "aws", "SQLALCHEMY_TRACK_MODIFICATIONS": False, "JWT_SECERET_KEY" : "" }, "production": { "postgres": "production", "SECRET_KEY": "secretkey", "ACCESS_CODE": "Access Code", "SQLALCHEMY_TRACK_MODIFICATIONS": False, "JWT_SECERET_KEY" : "" } } username_0: one more thing! The readme says "Generic single-database configuration." username_1: Sorry, but this isn't what I'm asking. You said that in line 33 of env.py there is an error because the binds config setting is not iterable. Please add a print statement in line 32 as follows: ```python print("binds:", current_app.config['SQLALCHEMY_BINDS']) ``` Then include the complete output of the script, including the print statement and the stack trace that follows. username_0: My bad: The find for some reason says "None". *Here is the full text:* (core) root@RupeshLaptop:/mnt/d/Reasonable Brands/python-dev/dsiq/core/utils/schemas# python migrate.py db migrate /mnt/d/Reasonable Brands/python-dev/dsiq/core/lib/python3.7/site-packages/flask_sqlalchemy/__init__.py:814: UserWarning: Neither SQLALCHEMY_DATABASE_URI nor SQLALCHEMY_BINDS is set. Defaulting SQLALCHEMY_DATABASE_URI to "sqlite:///:memory:". 'Neither SQLALCHEMY_DATABASE_URI nor SQLALCHEMY_BINDS is set. ' /mnt/d/Reasonable Brands/python-dev/dsiq/core/lib/python3.7/site-packages/flask_sqlalchemy/__init__.py:835: FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future. Set it to True or False to suppress this warning. 'SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and ' *binds: None* Traceback (most recent call last): File "migrate.py", line 49, in <module> manager.run() File "/mnt/d/Reasonable Brands/python-dev/dsiq/core/lib/python3.7/site-packages/flask_script/__init__.py", line 417, in run result = self.handle(argv[0], argv[1:]) File "/mnt/d/Reasonable Brands/python-dev/dsiq/core/lib/python3.7/site-packages/flask_script/__init__.py", line 386, in handle res = handle(*args, **config) File "/mnt/d/Reasonable Brands/python-dev/dsiq/core/lib/python3.7/site-packages/flask_script/commands.py", line 216, in __call__ return self.run(*args, **kwargs) File "/mnt/d/Reasonable Brands/python-dev/dsiq/core/lib/python3.7/site-packages/flask_migrate/__init__.py", line 96, in wrapped f(*args, **kwargs) File "/mnt/d/Reasonable Brands/python-dev/dsiq/core/lib/python3.7/site-packages/flask_migrate/__init__.py", line 212, in migrate version_path=version_path, rev_id=rev_id) File "/mnt/d/Reasonable Brands/python-dev/dsiq/core/lib/python3.7/site-packages/alembic/command.py", line 214, in revision script_directory.run_env() File "/mnt/d/Reasonable Brands/python-dev/dsiq/core/lib/python3.7/site-packages/alembic/script/base.py", line 489, in run_env util.load_python_file(self.dir, "env.py") File "/mnt/d/Reasonable Brands/python-dev/dsiq/core/lib/python3.7/site-packages/alembic/util/pyfiles.py", line 98, in load_python_file module = load_module_py(module_id, path) File "/mnt/d/Reasonable Brands/python-dev/dsiq/core/lib/python3.7/site-packages/alembic/util/compat.py", line 184, in load_module_py spec.loader.exec_module(module) File "<frozen importlib._bootstrap_external>", line 728, in exec_module File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed File "migrations/env.py", line 34, in <module> for bind in current_app.config.get("SQLALCHEMY_BINDS"): TypeError: <flask_script.commands.Command object at 0x7fc60ce138d0>: 'NoneType' object is not iterable (core) root@RupeshLaptop:/mnt/d/Reasonable Brands/python-dev/dsiq/core/utils/schemas# username_1: Well, you see that you have a configuration problem? Neither SQLALCHEMY_DATABASE_URI nor SQLALCHEMY_BINDS is set. This means that for some reason your db configuration isn't being applied. username_0: Miguel, Thank you for the clarification and quick responses. I found the issue. I was initializing the app before setting the required params. I have resolved this issue. Thank you, <NAME> Status: Issue closed
sphinx-contrib/emojicodes
453810045
Title: Missing some emoji codes/aliases Question: username_0: Compared to GitHub: ```python import json import requests github = set(json.loads(requests.get('https://api.github.com/emojis').text).keys()) gitlab = set(json.loads(requests.get('https://gitlab.com/gitlab-org/gitlab-ce/raw/master/fixtures/emojis/index.json').text).keys()) aliases = set(json.loads(requests.get('https://gitlab.com/gitlab-org/gitlab-ce/raw/master/fixtures/emojis/aliases.json').text).keys()) gitlab.update(aliases) print(github - gitlab) ``` We are missing: ``` {'french_guiana', 'switzerland', 'family_man_man_boy_boy', 'tipping_hand_woman', 'sun_behind_large_cloud', 'no_good_woman', 'women_wrestling', 'liberia', 'family_man_man_boy', 'moon', 'south_georgia_south_sandwich_islands', 'paw_prints', 'romania', 'massage_woman', 'serbia', 'norway', 'tornado', 'niger', 'palau', 'bosnia_herzegovina', 'st_kitts_nevis', 'mozambique', 'western_sahara', 'poland', 'biking_man', 'facepunch', 'hugs', 'ng_woman', 'ethiopia', 'cocos_islands', 'st_vincent_grenadines', 'dancing_women', 'zimbabwe', 'running_woman', 'spiral_notepad', 'antigua_barbuda', 'gibraltar', 'sri_lanka', 'family_man_girl', 'black_flag', 'fist_raised', 'balance_scale', 'lebanon', 'policewoman', 'woman_shrugging', 'equatorial_guinea', 'fist_oncoming', 'woman_teacher', 'faroe_islands', 'dominica', 'roll_eyes', 'palestinian_territories', 'haircut_man', 'bahrain', 'sudan', 'woman_farmer', 'phone', 'samoa', 'construction_worker_man', 'rescue_worker_helmet', 'botswana', 'madagascar', 'family_man_woman_boy_boy', 'cape_verde', 'christmas_island', 'honduras', 'kazakhstan', 'martinique', 'rwanda', 'micronesia', 'malawi', 'woman_with_turban', 'north_korea', 'brunei', 'heavy_heart_exclamation', 'american_samoa', 'colombia', 'mountain_biking_man', 'boat', 'singapore', 'kosovo', 'mandarin', 'man_astronaut', 'massage_man', 'pen', 'frowning_woman', 'puerto_rico', 'australia', 'timor_leste', 'trollface', 'rowing_man', 'monaco', 'el_salvador', 'woman_juggling', 'seychelles', 'finnadie', 'falkland_islands', 'milk_glass', 'libya', 'squirrel', 'congo_brazzaville', 'uzbekistan', 'mauritania', 'caribbean_netherlands', 'pitcairn_islands', 'montenegro', 'mali', 'curacao', 'jersey', 'guatemala', 'wallis_futuna', 'croatia', 'goberserk', 'snowman_with_snow', 'cowboy_hat_face', 'swaziland', 'basecampy', 'st_helena', 'spiral_calendar', 'pouting_man', 'man_factory_worker', 'octocat', 'mongolia', 'mountain_biking_woman', 'djibouti', 'guinea_bissau', 'family_man_woman_girl_boy', 'ukraine', 'shipit', 'man_office_worker', 'sleeping_bed', 'sassy_woman', 'northern_mariana_islands', 'construction_worker_woman', 'new_caledonia', 'iran', 'tshirt', 'family_man_girl_boy', 'shoe', 'eye_speech_bubble', 'hurtrealbad', 'bowtie', 'trinidad_tobago', 'cayman_islands', 'new_zealand', 'congo_kinshasa', 'armenia', 'golfing_woman', 'collision', 'british_indian_ocean_territory', 'benin', 'barbados', 'luxembourg', 'woman_playing_water_polo', 'montserrat', 'peru', 'surfing_woman', 'vulcan_salute', 'fleur_de_lis', 'ng_man', 'andorra', 'qatar', 'bangladesh', 'central_african_republic', 'guinea', 'mantelpiece_clock', 'family_woman_girl', 'vanuatu', 'malta', 'british_virgin_islands', 'papua_new_guinea', 'malaysia', 'nepal', 'estonia', 'next_track_button', 'family_man_girl_girl', 'sun_behind_small_cloud', 'sint_maarten', 'wind_face', 'eritrea', 'st_lucia', 'pakistan', 'woman_factory_worker', 'flight_departure', 'algeria', 'togo', [Truncated] 'man_scientist', 'motor_boat', 'san_marino', 'policeman', 'canada', 'guadeloupe', 'basecamp', 'ireland', 'latvia', 'ghana', 'family_woman_woman_girl_girl', 'south_sudan', 'heavy_exclamation_mark', 'anguilla', 'medal_military', 'vatican_city', 'bowing_man', 'woman_cartwheeling', 'oman', 'czech_republic', 'man_playing_water_polo', 'kuwait', 'shopping', 'woman_judge', 'panama', 'greenland', 'flipper', 'raising_hand_woman', 'costa_rica', 'man_pilot', 'play_or_pause_button', '3rd_place_medal', 'film_strip', 'man_teacher', 'denmark', 'derelict_house', 'no_good_man', 'flight_arrival', 'sassy_man', 'tanzania', 'uganda', 'fist_left', 'woman_health_worker', 'bermuda', 'niue', 'portugal', 'syria', 'south_africa', 'electron', 'family_man_man_girl_boy', 'hong_kong', 'kiribati', 'honeybee', 'ice_hockey', 'couple_with_heart_woman_man', 'sierra_leone', 'haircut_woman', 'clamp', 'argentina', 'clinking_glasses', 'ok_man', 'family_woman_woman_boy_boy', 'weight_lifting_woman', 'feelsgood', 'antarctica', 'plate_with_cutlery', 'newspaper_roll', 'united_arab_emirates', 'azerbaijan', 'fu', 'open_umbrella', 'moldova', 'rage2', 'lantern', 'raising_hand_man', 'european_union'} ``` See https://gitlab.com/gitlab-org/gitlab-ce/issues/62985 Answers: username_0: Closing after https://github.com/sphinx-contrib/emojicodes/pull/5. Most emoji codes should be available now. Status: Issue closed
ngxs/store
326144281
Title: Actions dispatched from within another action triggers multiple calls in the inner action call Question: username_0: @Action(InitializeCoreState) initializeCoreState(ctx: StateContext<any>, action: InitializeCoreState) { ctx.dispatch(new SetConfig(action.payload)); // this action is triggered twice } When I dispatch InitializeCoreState action from components/services, it calls SetConfig action twice because it is nested under the InitializeCoreState action. Answers: username_1: @username_0 Is it possible to reproduce this with a stackblitz for us? (You can use [this](https://stackblitz.com/edit/ngxs-simple) as a starting point if you like) username_0: @username_1 Here's the demo https://stackblitz.com/edit/ngxs-simple-6fqip4 Also, please read my comment in the app.module. I am using the NGXS 3.0.1 version. username_2: I think this happens because you extend the CountState to ParentState username_0: @username_2 It's not related to extending but rather related to declarations. See the following code snippet **@NgModule({ imports: [ BrowserModule, NgxsModule.forRoot([CountState, ParentState]) ], // Note: If I remove ParentState from the array list, it works fine. If this is the expected behaviour then please elaborate this. declarations: [ AppComponent ], bootstrap: [ AppComponent ] }) export class AppModule { }** I believe this is a bug. Can anyone from the official team comment on this please? username_3: The parent state should not be included in the list of states. It's included for you when you add the CountState. What it does behind the scenes is walk the prototype chain and add all actions that are available upp the chain. So if you simply remove ParentState from the list, the app works as it should. (as you said). Status: Issue closed
facebook/react
71742631
Title: Remove "V in MVC" text from the website Answers: username_1: :+1: username_1: cc @petehunt who also wants it gone username_2: :+1: username_3: +1 username_4: :+1: username_5: 👍 username_6: Anyway, now that I fully understand React, I can understand why that sentence is arguably a bit misleading, but I also see how it succinctly communicates what React actually does in terms that were very familiar to me. username_7: instead. It implies that React can be used on its own but can also be a view in other frameworks while being succinct. username_8: Oh wait, @username_0 already said that better. I missed that in his initial comment. username_9: @username_6 really succinctly said what I've found really helpful about the line as it is. it's terse and clear, and used analogy I already understood well. Sure it's technically misleading if you already understand react, but I found it really helpful as a newcomer. username_8: I'm kind of ambivalent about it. I'd like to have it phrased in a way that keeps the original “just the UI” meaning but also suggests React is better off without MC baggage. username_10: This way, we still explain how it relates to MVC and present a recommended architecture. username_11: No comments for over six months. It isn't clear that we want to change this, so the bug isn't actionable. This might get changed/fixed as part of a bigger docs rework, but let's close for now. Status: Issue closed username_12: Going with #7012.
martinmoene/martin-moene.blogspot.com
125257349
Title: Unable to download VS6 Installer 4.4 Question: username_0: Hi Martin - There is a problem with the nuke.vbcorner.net website related to creation and use of Logons. While I have created a logon, the site immediately requires and update to my city/state/country fields of my profile. The update fails and I cannot continue. I am in urgent need of his great install utility. I have not been able to find a way to PM him on vbforums.com Appreciate any help you can offer for obtaining that utility. Thanks - <NAME><issue_closed> Status: Issue closed
knownsec/ksubdomain
691276745
Title: 反馈个问题 Question: username_0: 复现了两次,当success大概1037左右个域名的时候,程序就会卡住不动: ![image](https://user-images.githubusercontent.com/22117516/92018989-7efbfc80-ed88-11ea-8839-b91e200767de.png) 环境:阿里云VPS、CentOS 7 Answers: username_1: 发了500w包只收到了1000多个,可能是和网速有关吧? username_2: 貌似mac使用 -b 1m 会导致微信消息 难以发送 username_0: 感谢感谢,确实是网络的问题,可能是被ban了VPS的IP之类的,换了个目标就没有这个问题了。 Status: Issue closed
mono/xwt
93099146
Title: Gtk, Call request gets called twice when closing using the close button Question: username_0: Call request gets called twice when closing using the close button in Gtk. Example code: ```c# using Xwt; public class MainWindow: Window { public MainWindow() { this.Width = 640; this.Height = 480; this.CloseRequested += MainWindow_CloseRequested; this.Closed += (sender, e) => Application.Exit(); } protected void MainWindow_CloseRequested (object sender, CloseRequestedEventArgs args) { MessageDialog.ShowMessage("Closing..."); } } ``` Answers: username_1: This is the normal behaviour with Gtk. Gtk has only the ```DeleteEvent``` which is similar to ```CloseRequested```. Since both Xwt events are called from inside an internal DeleteEvent handler (see https://github.com/mono/xwt/blob/master/Xwt.Gtk/Xwt.GtkBackend/WindowFrameBackend.cs#L314), the window is still not closed, when you receive the Closed event (look at MainWindow.Visible, its true). So calling ```Application.Exit``` triggers the same logic again. One could say that this is a bug, but it isn't really one, cause ```CloseRequested``` should be used to control the closing action and should not depend on the Closed event. In other words, you should use only one of them. If you don't need any control, use Closed and if you want do add some checks use CloseRequested with ```CloseRequestedEventArgs.AllowClose```. Also take a look at: https://github.com/mono/xwt/blob/master/TestApps/Samples/MainWindow.cs#L156 Status: Issue closed username_0: @username_1 Oh... I didn't realize that. Thanks for clarification.
vaadin/flow
438193416
Title: flow-maven-plugin does not copies resources `src/main//resources/META-INF/resources/frontend` Question: username_0: `validate` goal in `flow-maven-plugin` visits all jar dependencies and extract static stuff that is copied to `node_modules/@vaadin/flow-frontend` but resources in the current project are not copied, in consequence they are not available for webpack compilation<issue_closed> Status: Issue closed
dotnet/maui
1113356327
Title: Enable VS 2022 "External Sources", Source Link, and/or Source Server Question: username_0: ### Description In August 2021, the Microsoft Visual Studio team announced the addition of the "External Sources" node that appears in Solution Explorer when in a debugging session. The blog post announcing this feature can be found here: https://devblogs.microsoft.com/visualstudio/debugging-external-sources-with-visual-studio. I've attempted to use this tool with Maui without success as apparently neither a Source Server nor Source Link is enabled. Detailed debug symbols are downloaded but an attempt to access source code fails. I have a number of applications I am porting from Xamarin Forms that use low-level features, such as Effects and Renderers, and source-level debugging deep into Maui is the only way to figure out what is wrong with the code. Unfortunately, many developers like myself, do not have the resources (neither time nor hardware to dedicate) to build Maui locally. On GitHub, each time a Preview or RC is released, the Maui repo is branched so that the source code for that release is frozen. My request is that when the code is branched, that either a Source Server be established or updated as part of the CI stream or that the source code be indexed and available via Source Link. There are a number of potential benefits from implementing this feature: 1. Lower maintenance cost to Microsoft by reducing the number of support calls, especially some of the more complex issues. 2. Increased community engagement and participation in the further development of Maui. 3. Further indication of Microsoft's commitment to the developer community. I respectfully request that this feature request be considered and implemented as soon as possible. ### Public API Changes None ### Intended Use-Case I have an example: I am porting a set of controls that use SkiaSharp on Maui. There is an Effect implemented that I am presently trying to debug. Unfortunately, registration of an effect goes through several *internal* layers of Maui code that are opaque without the ability to use source code debugging into Maui code. I am currently stymied and unable to continue troubleshooting without the assistance of a Maui developer. These developers have been great and very helpful, but their time is a limited resource that should be dedicated to less time-consuming side-issues and more productive endeavors. Making it possible for the developer community to do deep troubleshooting would go a long way to making Maui the success it deserves to be. Answers: username_1: It would be great to have this!
HighQualityTopaz/Project_HQ-BugTracker
706035895
Title: NM - Erle does not exist Question: username_0: **_I have:_** <!-- Place 'x' mark between square [] brackets to checkmark box --> - [x] searched existing issues (https://github.com/HighQualityTopaz/Project_HQ-BugTracker/issues) to see if the issue has already been opened. - [x] downloaded and am using Project HQ's custom .dat files. - [x] provided my client version in the space provided below (type /ver into your in-game chat). **Version**: 30200904_2 **_Additional Information_** (Steps to reproduce/Expected behavior) **:** <!-- Any screenshots, videos, and links to the direct ffxiclopedia articles even more so helpful! --> This NM currently does not have any PHs and does not pop. https://ffxiclopedia.fandom.com/wiki/Erle Missing PHs from the IDs.lua found in: https://github.com/project-topaz/topaz/blob/58a79d21afcfececdf45c448daf2d00ee3b2a35f/scripts/zones/Rolanberry_Fields_%5BS%5D/IDs.lua
thijsbordewijk/web-app-from-scratch-1920
565196466
Title: No comments (yet)? Question: username_0: Your code could use some more comments, althought your code might be understandable after a proper code review, your variables and loops do similair things, so adding comments describing what each of them do could be of great value! Answers: username_1: im on it Status: Issue closed
tableau/extension-data-driven-parameters
556528021
Title: inconsistency between trex and build files Question: username_0: Good work on the extensions and keeping them on github. I had a problem with the deployment of this one: Is it normal that the asset-manifest.json and .trex file reference a different directory structure? Please let me know if I'm missing something. `asset-manifest.json { "files": { "main.css": "/extension-data-driven-parameters/static/css/main.2b70444d.chunk.css", "main.js": "/extension-data-driven-parameters/static/js/main.65f84886.chunk.js", "main.js.map": "/extension-data-driven-parameters/static/js/main.65f84886.chunk.js.map", "runtime~main.js": "/extension-data-driven-parameters/static/js/runtime~main.01d56cb3.js", "runtime~main.js.map": "/extension-data-driven-parameters/static/js/runtime~main.01d56cb3.js.map", "static/js/2.b6686ab4.chunk.js": "/extension-data-driven-parameters/static/js/2.b6686ab4.chunk.js", "static/js/2.b6686ab4.chunk.js.map": "/extension-data-driven-parameters/static/js/2.b6686ab4.chunk.js.map", "index.html": "/extension-data-driven-parameters/index.html", "precache-manifest.65cbc4f640e7148af565096ee4c6204d.js": "/extension-data-driven-parameters/precache-manifest.65cbc4f640e7148af565096ee4c6204d.js", "service-worker.js": "/extension-data-driven-parameters/service-worker.js", "static/css/main.2b70444d.chunk.css.map": "/extension-data-driven-parameters/static/css/main.2b70444d.chunk.css.map" }` Trex file: `<?xml version="1.0" encoding="utf-8"?> <manifest manifest-version="0.1" xmlns="http://www.tableau.com/xml/extension_manifest"> <dashboard-extension id="com.tableau.extensions.datadrivenparamsummary" extension-version="2.1.0"> <default-locale>en_US</default-locale> <name resource-id="name"/> <description>Automatically update your parameters based on your data!</description> <author name="Tableau" email="<EMAIL>" organization="Tableau" website="https://www.tableau.com"/> <min-api-version>0.9</min-api-version> <source-location> <url>https://<redacted_for_git>/extension-data-driven-parameters/2.latest/#/parameter</url> </source-location>` Answers: username_1: Hi @username_0, Thanks for the feedback! It looks like you are looking at the asset manifest file for version 1.0 of the extension which is hosted at `/extension-data-driven-parameters/` from the `/docs/` folder but comparing it to 2.latest which is hosted at `/extension-data-driven-parameters/2.latest/` from `/docs/2.latest/`. Here is the asset manifest you should compare the trex to: https://github.com/tableau/extension-data-driven-parameters/blob/master/docs/2.latest/asset-manifest.json Hope that helps! Keshia Status: Issue closed username_0: @username_1 does that mean the contents of the `docs/2.latest` need to be copied to the deployment, rather than the contents of the `build/` folder? The `asset-manifest.json` I pasted up there was from the `build/` folder. Please advise! username_1: @username_0, yup, grab from `docs/2.latest` I'll update the readme instructions to match! username_1: @username_0 if you want to run the extension locally make sure to follow the instructions in the README. You will need to update the homepage (as you saw in the asset manifest file) to match your setup. The output of your custom build will be in the `build` folder. username_0: @username_1 OK thanks for the tip; My confusion stems from the .trex file not being updated upon yarn build - Should the parent folder .trex be updated for the url during the build, or should that be updated manually? Or am I (again) missing something? username_1: I see, yes the .trex file needs to be updated manually to match where you're hosting it. username_1: I've updated the instructions to reflect this as well.
ludopotte/vStream
400955102
Title: PATCH VSTREAM 2.65 Question: username_0: Informations du Patch fait sur la Version 0.6.8 si-dessous : Changement des Fichiers de l'Extension du 18 Janvier 2019 Patch et Fichiers Externes à télécharger au https://github.com/username_0/vStream/releases/<issue_closed> Status: Issue closed
rspamd/rspamd
435688271
Title: [BUG] Question: username_0: ### Prerequisites * [X] Put an X between the brackets on this line if you have done all of the following: * Read about bug reporting in general: https://rspamd.com/doc/faq.html#how-to-report-bugs-found-in-rspamd * Enabled relevant debugging logs: https://rspamd.com/doc/faq.html#how-to-debug-some-module-in-rspamd * Checked the FAQs about Core files in case of fatal crash: https://rspamd.com/doc/faq.html#how-to-figure-out-why-rspamd-process-crashed * Checked that your issue isn't already filed: https://github.com/issues?utf8=%E2%9C%93&q=is%3Aissue+user%3Arspamd * Checked that there is not already an experimental package or master branch ### Description mime_types can't detect windows executables (.exe) in 7z archives. Same exe file in zip archive correctly detected by mime_types. ### Steps to Reproduce 1. Configure local.d/mime_types.conf: ``` bad_archive_extensions = { exe = 5, } ``` 2. Configure local.d/force_actions: ``` rules { REJECT_MESSAGE_BAD_EXTENSION { action = "reject"; expression = "MIME_BAD_EXTENSION"; message = "Rejected due to bad file extension in attachment."; } } ``` 3. Send e-mail with attached 7z archive, put any exe file in archive, notepad.exe for example. **Expected behavior** Messages should not be sent. ### Versions Rspamd daemon version 1.9.2 Distributor ID: Debian Description: Debian GNU/Linux 9.8 (stretch) Release: 9.8 Codename: stretch ### Additional Information Warning message from logs, probably related: `error in squeezed rule MIME_TYPES_CALLBACK: /usr/share/rspamd/plugins/mime_types.lua:1093: attempt to compare boolean with string` Answers: username_1: You should place `force actions` module configuration in `local.d/force_actions.conf` instead of `local.d/force_actions`. The warning is not related to the issue. username_0: Fixed typo in original post. username_1: Does it work as expected now? username_0: Nope, config file already was named force_actions.conf. Issue not resolved. username_1: I canot reproduce your issue. ``` # rspamc 7z.eml | egrep -v '(:?\([-0]|-ID)' [Metric: default] Action: reject Spam: true Score: 8.00 / 14.00 Symbol: MIME_BAD_ATTACHMENT (1.60)[7z] Symbol: MIME_BAD_EXTENSION (10.00)[exe] Message - smtp_message: Rejected due to bad file extension in attachment. ``` username_0: I was able to reproduce this issue on clean installation, fresh VM. I'm attaching configdump and couple of sample files. ``` # file certutil.* certutil.7z: 7-zip archive data, version 0.4 certutil.exe: PE32 executable (console) Intel 80386, for MS Windows certutil.zip: Zip archive data, at least v?[0x314] to extract ``` ``` # rspamc *.eml Results for file: zipexe.eml (0.119 seconds) [Metric: default] Action: reject Spam: true Score: 12.60 / 15.00 Symbol: ARC_NA (0.00) Symbol: DMARC_NA (0.00)[example.com] Symbol: FORCE_ACTION_REJECT_MESSAGE_BAD_EXTENSION (0.00)[reject] Symbol: FROM_NO_DN (0.00) Symbol: HAS_ATTACHMENT (0.00) Symbol: HFILTER_HOSTNAME_UNKNOWN (2.50) Symbol: MIME_BAD_EXTENSION (10.00)[exe] Symbol: MIME_GOOD (-0.10)[multipart/mixed] Symbol: MIME_HTML_ONLY (0.20) Symbol: MIME_TRACE (0.00)[0:+, 1:~, 2:-, 2:~] Symbol: RCPT_COUNT_ONE (0.00)[1] Symbol: RCVD_COUNT_ZERO (0.00)[0] Symbol: R_DKIM_NA (0.00) Symbol: TO_DN_NONE (0.00) Symbol: TO_EQ_FROM (0.00) Message-ID: [email protected] Message - smtp_message: Rejected due to bad file extension in attachment. ``` ``` Results for file: 7zexe.eml (0.119 seconds) [Metric: default] Action: no action Spam: false Score: 2.70 / 15.00 Symbol: ARC_NA (0.00) Symbol: DMARC_NA (0.00)[example.com] Symbol: FROM_NO_DN (0.00) Symbol: HAS_ATTACHMENT (0.00) Symbol: HFILTER_HOSTNAME_UNKNOWN (2.50) Symbol: MIME_GOOD (-0.10)[multipart/mixed] Symbol: MIME_HTML_ONLY (0.20) Symbol: MIME_TRACE (0.00)[0:+, 1:~, 2:~] Symbol: MIME_UNKNOWN (0.10)[application/x-7z-compressed] Symbol: RCPT_COUNT_ONE (0.00)[1] Symbol: RCVD_COUNT_ZERO (0.00)[0] Symbol: R_DKIM_NA (0.00) Symbol: TO_DN_NONE (0.00) Symbol: TO_EQ_FROM (0.00) Message-ID: c<EMAIL>f-508a-<EMAIL>-7413-<EMAIL> ``` [sample_files.zip](https://github.com/rspamd/rspamd/files/3107096/sample_files.zip) username_1: I've scanned your samples. Rspamd detected exe files in both archives. username_0: How can we proceed from here? username_1: Yes, maybe the problem is the official Debian package. Try to install Rspamd from Rspamd APT repository. https://rspamd.com/downloads.html username_0: Package was installed from rspamd repo: ``` # apt-cache policy rspamd rspamd: Installed: 1.9.2-1~stretch Candidate: 1.9.2-1~stretch Version table: *** 1.9.2-1~stretch 500 500 http://rspamd.com/apt-stable stretch/main amd64 Packages 100 /var/lib/dpkg/status ``` username_1: I've reproduced the issue on Debian 9.8. @username_2 On Debian `get_files_full` returns an empty list for `7zip` archives. https://github.com/rspamd/rspamd/blob/master/src/plugins/lua/mime_types.lua#L1052 Status: Issue closed
github/explore
496229149
Title: Cont with jenkind Question: username_0: Job status notifications can be sent in JSON or XML formats from Jenkins, with out extending it's functionality. False Jenkins can manage job dependencies using File Fingerprinting Which of the following statement is true about Jenkins? Jenkins supports plugins to showcase both metrics and trends Project type supported by Jenkins is/are: All of the options Jabber is a : Messaging plugin Which of the following is an artifact repository that can be configured as a plugin for Jenkins Nexus Which of the following functionality is not supported by Jenkins Code Jenkins allows you to : All of the options ----------------------------------------------- Functional testing can be automated using Jenkins. T Build can be triggered : All of the options 11 Jenkins build job cannot be triggered manually? False If you have multiple projects and if you need to check for new updates, every five minutes, which is the correct CRON expression that Jenkins can use to avoid polling of all the projects at the same time. H/5 * * * * Copy artifacts' is an option that is available for selection under the Build Step In the build status images, which of the following statement is correct? Partial Sun with clouds icon in the status means 20-40% of the recent builds failed Record of multiple builds is displayed using a Weather icon ------------------------------------------------------ Reporting results can be configured under section : Post-Build actions Execution of projects can be restricted to run on a specific slave node? True Originally Jenkins was developed as the Hudson project? True Jenkins is capable of displaying the build reports, generate trends and can render them in the GUI? True Users can now implement entire build, deploy and test using : Pipeline Plugin ThinBackup plugin is used for : Automatic or manual backup of global and job specific configuration Backups can be automated using : Backup Plugin xxx In a distributed environment reporting can be done using : Both Slave and Master node Archive the artifacts' is an option that is available for selection under the : Post-Build actions [Truncated] Publish artifacts All of the options xx Extract artifacts Read artifacts View of upstream and downstream connected jobs that forms a build pipeline is provided by: Build Pipeline Plugin Plugin that changes Jenkins to use green balls instead of blue for successful builds is? Greenballs In the distributed architecture Jenkins should be fully installed both in master and slave? False Which of the below options are used for copying Jenkins from one server to another? all<issue_closed> Status: Issue closed
flytam/blog
589514761
Title: 如何实现一个惊艳面试官的非递归版本的 js 对象深拷贝方法 Question: username_0: 要实现判断数据类型,先来实现这 3 个判断类型的工具方法。最通用的就是利用`Object.prototype.toString`的特性 ```js const getType = v => { switch (Object.prototype.toString.call(v)) { case "[object Object]": return "Object"; case "[object Array]": return "Array"; default: // 只考虑数组和对象,其余都是简单值 return false; } }; ``` ### 递归实现 在讲述非递归实现之前,先看看递归版本的深拷贝实现,很简单,直接上代码 ```js const copy = source => { const _cp = source => { let dest; const type = getType(source); if (type === "Array") { dest = []; source.forEach((item, index) => { dest[index] = _cp(item); }); return dest; } else if (type === "Object") { dest = {}; for (let [k, v] of Object.entries(source)) { dest[k] = _cp(v); } return dest; } else { return source; } }; return _cp(source); }; ``` 当然,这种是处理不了循环引用的。处理循环引用也很简单,用个`Set`记录遍历过的值,每次拷贝前查出`Set`中存在这个值,就直接返回。所以加上处理循环引用后的代码如下 ```js const copy = source => { const set = new Set(); const _cp = source => { let dest; if (set.has(source)) { return source; } set.add(source); const type = getType(source); if (type === "Array") { // 数组 [Truncated] if (vType === "Object") { if (set.has(v)) { dest[k] = v; continue; } dest[k] = {}; queue.push({ source: v, dest: dest[k] }); } } } set.add(source); } return dest; }; ``` 码字不易,如果觉得不错,求给个 star 或者赞吧!
kelektiv/node-cron
389303612
Title: Add changelog Question: username_0: Could you add CHANGELOG or maybe some release notes to each release? I noticed the minor version bump to `1.6.0` and I'd like to update my package but I'm not sure what has changed or whether it will affect my plugin. Answers: username_1: Hey, great idea. How's this? https://github.com/kelektiv/node-cron/blob/master/CHANGELOG I wrote something to try to generate the changelog from commits. It's interactive and doesn't just pull in from commits (I modified the messages heavily). Let me know if you're looking for something else in this. Thanks! In case anyone is interested: this is the link https://github.com/username_1/clh Status: Issue closed username_0: Nice one 👍🏼 Quick suggestion, if you add the extension “.md” it will render the file as markdown username_1: Forgot to respond here, but it is done. :D
winpython/winpython
152836767
Title: "Run in interactive mode" and drag-n-drop support Question: username_0: Here are some Windows registry features from Python(x,y) that I find useful, and I propose them for WinPython: `Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\Python.File\shell\Run in interactive mode] @="" [HKEY_CLASSES_ROOT\Python.File\shell\Run in interactive mode\command] @="\"C:\\Program Files\\WinPython-3.4.4.2\\python-3.4.4.amd64\\python.exe\" \"-i\" \"%1\" %*" [HKEY_CLASSES_ROOT\Python.File\shellex] [HKEY_CLASSES_ROOT\Python.File\shellex\DropHandler] @="{60254CA5-953B-11CF-8C96-00AA00B8708C}" [HKEY_CLASSES_ROOT\Python.NoConFile\shell\Run in interactive mode] @="" [HKEY_CLASSES_ROOT\Python.NoConFile\shell\Run in interactive mode\command] @="\"C:\\Program Files\\WinPython-3.4.4.2\\python-3.4.4.amd64\\python.exe\" \"-i\" \"%1\" %*" [HKEY_CLASSES_ROOT\Python.NoConFile\shellex] [HKEY_CLASSES_ROOT\Python.NoConFile\shellex\DropHandler] @="{60254CA5-953B-11CF-8C96-00AA00B8708C}" ` Before importing the above file into regedit, register WinPython with the OS. Also, edit the paths for your WinPython installation. I am not sure if WinPython's register_python.bat already adds the DropHandler since this registry key has been on my PC before I first registered WinPython. It is really handy to drag an input file onto a Python script and then automatically access the input file name with sys.argv[1] in the Python script. Answers: username_1: hum, I'm not expert in the dark art of Windows registery, and saw some people complaining of current WinPython registering feature ... It may take me a while to get a decision on this. username_0: These are just additional subkeys to the registry keys that WinPython already installs when it is "registered" with the OS. If the user chooses to keep WinPython "portable", they wouldn't be installed of course. If WinPython includes these as standard features, I won't have to instruct every user at my company who uses WinPython. They would also make WinPython easier to use for schools. username_0: I should also clarify that my code above is example code for your experimentation. I expect WinPython's Python code for registering to be modified to include these new features using the installation path. username_1: hum, now I read what @PierreRaybaut wrote: https://github.com/winpython/winpython/blob/master/winpython/associate.py I don't understand what I see, and I understand even less your patch with things like`@="{60254CA5-953B-11CF-8C96-00AA00B8708C}"` username_0: With your tip to look at associate.py, I see the DropHandler is already included in WinPython. Therefore, I withdraw that part of my request. For WinPython users who would like to learn how to use this great DropHandler feature, here is some explanation: http://stackoverflow.com/questions/142844/drag-and-drop-onto-python-script-in-windows-explorer My remaining request to support "Run in interactive mode" can be tested with the following file. Maybe name it "RunInInteractiveMode.reg" so the file will be associated by Windows with the regedit.exe application. ``` Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\Python.File\shell\Run in interactive mode] @="" [HKEY_CLASSES_ROOT\Python.File\shell\Run in interactive mode\command] @="\"C:\\Program Files\\WinPython-3.4.4.2\\python-3.4.4.amd64\\python.exe\" \"-i\" \"%1\" %*" [HKEY_CLASSES_ROOT\Python.NoConFile\shell\Run in interactive mode] @="" [HKEY_CLASSES_ROOT\Python.NoConFile\shell\Run in interactive mode\command] @="\"C:\\Program Files\\WinPython-3.4.4.2\\python-3.4.4.amd64\\python.exe\" \"-i\" \"%1\" %*" ``` To understand how associate.py works, it may be helpful to view its output in the Windows registry. Run regedit.exe and view the following keys, which are like folders for parameters: HKEY_CLASSES_ROOT\Python.File HKEY_CLASSES_ROOT\Python.CompiledFile HKEY_CLASSES_ROOT\Python.NoConFile Navigate through all the subkeys of these keys by double-clicking the mouse cursor on them. Hopefully, this sheds some light on the dark art of the Windows Registry (database). username_0: Request #28 makes sense for Python(x,y), where only one Python version exists on a PC. WinPython supports multiple Python versions/environments installed, and request #28 would break this. Registering one WinPython version with the OS only associates .py, .pyc, .pyo and .pyw extensions with handler applications with a particular WinPython version. "WinPython Command Prompt.exe" is used to modify the path and add environment variables for one cmd shell process. If the control panel changed the environment variables as suggested in #28, "WinPython Command Prompt.exe" for a second WinPython version wouldn't work. Pierre designed WinPython very well. username_1: Indeed. I stiil don't know if and how I should patch the existing `associate.py`. Watching "the phantom menace" didn't help yesterday. username_0: I use the drag-n-drop feature dozens of times a day, while I use "Run in interactive mode" rarely. I now understand WinPython already has the first feature, and the second feature is not a high enough priority for me to reverse-engineer `associate.py` right now. Therefore, I am willing to let this issue go. The registry modifications I suggested just add another right-click application association with .py, .pyc, .pyo and .pyw extensions in Windows Explorer. I feel clear that this is in the spirit of WinPython's model of optionally registering one Python version, while not breaking other Python versions/environments. I think the feature would be most useful for schools. Since this modification is proving difficult for you, I suggest removing this issue from the next release milestone and tagging it with "help wanted". This gives an opportunity to contribute for some kind soul who wants to practice at Python and learn about the Windows registry.
jlippold/tweakCompatible
606883379
Title: `Switcher` working on iOS 13.4.1 8plus Question: username_0: ``` { "packageId": "com.tapsharp.switcher", "action": "working", "userInfo": { "arch32": false, "packageId": "com.tapsharp.switcher", "deviceId": "iPhone10,5", "url": "http://cydia.saurik.com/package/com.tapsharp.switcher/", "iOSVersion": "13.4.1", "packageVersionIndexed": true, "packageName": "Switcher", "category": "Tweaks", "repository": "Packix", "name": "Switcher", "installed": "1.1.3.1", "packageIndexed": true, "packageStatusExplaination": "A matching version of this tweak for this iOS version could not be found. Please submit a review if you choose to install.", "id": "com.tapsharp.switcher", "commercial": true, "packageInstalled": true, "tweakCompatVersion": "0.1.5", "shortDescription": "Switch to a different application from anywhere on your iOS device.", "latest": "1.1.3.1", "author": "<NAME>", "packageStatus": "Unknown" }, "base64": "<KEY>", "chosenStatus": "working", "notes": "" } ```<issue_closed> Status: Issue closed
kubernetes-sigs/azuredisk-csi-driver
938632036
Title: Snapshot CRD conflicts with preinstalled CRD in AKS 1.21 clusters Question: username_0: **What happened**: When deploying chart with snapshots enabled to a 1.21 AKS cluster, helm complains that the VolumeSnapshots CRD already exists and can't be imported. **What you expected to happen**: To be able to install chart alongside the default deployment in AKS 1.21 **How to reproduce it**: Deploy AKS 1.21. Install chart with snapshot.enabled: true **Anything else we need to know?**: CRDs should probably not be included in templates, but rather in a separate chart or in a crds folder: https://helm.sh/docs/topics/charts/#the-chart-file-structure **Environment**: - Kubernetes version (use `kubectl version`): 1.21 Answers: username_1: @username_2 username_2: there should be only one snapshot controller in one cluster, and snapshot controller is already installed by default on aks 1.21, so helm install with `snapshot.enabled: true` is not supported Status: Issue closed username_0: Makes sense, thanks. (Having the CRD as part of templates is going to give people a hard time when migrating to 1.21, since Helm will try to delete the CRD as part of the uninstall)
strands-project/strands_navigation
115038595
Title: Race condition in topo map visualisation when switching maps Question: username_0: When the map is switched using the new service, the visualisation breaks sometimes because it tries to look-up a node before it received the updated topo map. Possible solution would be to remove the topomap callback and replace the member variable storing it with `rospy.wait_for_message(...)`, that would make sure that you always have the up to date topo map but would also increase traffic. Maybe a cleaver exception handling where if the node is not found you try to update the map first and retry it, would be sufficient. Here the error: ``` [ERROR] [WallTime: 1446638032.063907] bad callback: <bound method TopologicalVis.MapCallback of <topological_navigation.map_marker.TopologicalVis object at 0x7fb821b2a650>> Traceback (most recent call last): File "/opt/ros/indigo/lib/python2.7/dist-packages/rospy/topics.py", line 711, in _invoke_callback cb(msg) File "/home/username_0/ros_ws/src/strands_navigation/topological_navigation/src/topological_navigation/map_marker.py", line 136, in MapCallback self._update_everything() File "/home/username_0/ros_ws/src/strands_navigation/topological_navigation/src/topological_navigation/map_marker.py", line 48, in _update_everything marker = self.get_edge_marker(i, j, idn) File "/home/username_0/ros_ws/src/strands_navigation/topological_navigation/src/topological_navigation/map_marker.py", line 67, in get_edge_marker V2= tmap_utils.get_node(self.lnodes, edge.node).pose.position AttributeError: 'NoneType' object has no attribute 'pose' ``` This is a non-critical error as it only breaks the visualisation. Answers: username_1: Yes, I need it in a callback because I want the visualisation updated when an edge is deleted, however this piece of code should be completely rewritten to use the map manager services instead of that topological map class.
chef/chef
382473234
Title: deprecations_map_collision URL is a 404 Question: username_0: <!--- !!!!!! NOTE: CHEF CLIENT BUGS ONLY !!!!!! This issue tracker is for the code contained within this repo -- `chef-client`, base `knife` functionality (not plugins), `chef-apply`, `chef-solo`, `chef-client -z`, etc. * Requests for new or alternative functionality should be made to [feedback.chef.io](https://feedback.chef.io/forums/301644-chef-product-feedback/category/110832-chef-client) * [Chef Server issues](https://github.com/chef/chef-server/issues/new) * [ChefDK issues](https://github.com/chef/chef-dk/issues/new) * Cookbook Issues (see the https://github.com/chef-cookbooks repos or search [Supermarket](https://supermarket.chef.io) or GitHub/Google) --> ## Description Deprecated features used! Resource windows_auto_run from a cookbook is overriding the resource from the client. Please upgrade your cookbook or remove the cookbook from your run_list before the next major release of Chef. at 1 location: - /opt/chef/embedded/lib/ruby/gems/2.5.0/gems/chef-14.7.17/lib/chef/log.rb:51:in `caller_location' See https://docs.chef.io/deprecations_map_collision.html for further details. ## Chef Version <!--- Tell us which version of chef-client you are using (see below for Server+ChefDK bugs). --> 14.7.17 ## Platform Version <!--- Tell us which Operating System distribution and version chef-client is running on. --> Ubuntu 16.04 ## Replication Case <!--- Tell us what steps to take to replicate your problem. See [How to create a Minimal, Complete, and Verifiable example](https://stackoverflow.com/help/mcve) for information on how to create a good replication case. --> Use build-essential (8.1.1) community cookbook. ## Client Output <!--- The relevant output of the chef-client run or a link to a gist of the entire run, if there is one. The debug output (chef-client -l debug) may be useful, but please link to a gist, or truncate it. --> ``` ``` ## Stacktrace <!--- Please include the stacktrace.out output or link to a gist of it, if there is one. -->
guilhemmarchand/TA-nmon
238672135
Title: Review interperter (python/perl) choice in all shell scripts, specially to fix some AIX issues Question: username_0: Review of the interpreter choice in all shell scripts, specially in AIX it has been reported issues while running Python scripts when Perl was available. For AIX, we set a priority to Perl interpreter.<issue_closed> Status: Issue closed
nwjs/nw.js
138366934
Title: The 'width' and 'height' in the manifest file does not work properly on OSX.[nw 0.13 rc1] Question: username_0: The behavior of these two parameters for main window is unstable on OSX,Sometimes it loads the old value, or get some unpredictable values. Answers: username_1: I meet the same problem. username_2: Did it restore with the dimension when you close it last time? username_0: YES,After tests found it's just restores the last dimension and Ignores the value in the package.json even updated. username_3: fullscreen doesn't take either.
TheOdinProject/theodinproject
917891346
Title: Feature: Removing broken links that haven't been updated Question: username_0: #### Description After a project submission has been flagged, links that haven't been updated need to be removed. #### Acceptance Criteria: 1. User receives a broken link notification for one of their projects 2. They haven't updated it in 3 days 3. The project is removed #### Additional Information: 1. Background job to handle automatic project deletion if the link hasn't been updated 2. When a user has been notified a future date corresponding to the time a user has to change their link is set on the project submission for the background job to check<issue_closed> Status: Issue closed
trailofbits/polytracker
765853440
Title: 中卫哪里有真实大保健(找特色服务【+V:10771909】 Question: username_0: 中卫妹子真实找上门服务妹子【十(V)1077_1909】由金利军执导,李立群、孙其君、周子熙、杜冯羽容等联袂主演的国内首部裸眼网络电影《大漠江湖》,近日正式宣布定档并发布首支预告。影片将于月日在爱奇艺与正式上映,掀起年春季的一股“武侠风”。李立群引领江湖回忆展现侠义在心不在身《大漠江湖》讲述了为实现武侠梦而勇敢踏入江湖的小铁匠吕三思,在“高人”的指点下意外卷入阴谋,最终找到真相并成为真正侠义之士的故事。片中人物众多,但每个角色都有着完整的人生故事,波澜十足实则真实感加倍;剧情方面,则用十足的情怀感和层出不穷的悬念转折,引领着观众的想象力不断扩大。同时,影片还用吕三思这个小人物的成长故事告诉大家,江湖的格局绝不仅仅局限于儿女情长爱恨情仇,真正的江湖存在每个人的心里。无论是高居庙堂还是远处村野,只要心怀侠义,你就是真正的“侠”。同时,演员们在片中的精彩表演也注定令人期待加倍。“老戏骨”李立群这次带着他在《新龙门客栈》《神雕侠侣》《绝代双骄》等经典武侠剧作中的回忆,重磅加盟《大漠江湖》,出演重要角色“老铁匠”,将大家一秒带回童年中的记忆江湖。而“吕三思”孙其君和“何青樱”周子熙本次再度合作金利军导演,三位此前在“王思聪香蕉新导演掘地计划”入围影片《刷我滴卡》中的精彩演绎也必将再度擦出全新火花。大漠场面衬托豪情无限裸眼沉浸武侠江湖《大漠江湖》以小角色吕三思误入大漠江湖的成长历程为故事主线,因此在影片中为观众大量呈现了关塞之外的沙漠场景。影片取景银川,将大漠孤烟长河落日的萧肃感展现得淋漓尽致,将生动丰富的角色和情节与大漠交相辉映,既能令人感受到荒漠的苍凉,又能体会到江湖的广袤和侠士的无限豪情。除此之外,《大漠江湖》在拍摄手法上的运用也十足令网友们眼前一亮。作为一部在视频网站上映的网络电影,影片竟别出心裁地采用了“裸眼”的技术,通过前期置景拍摄和后期剪辑制作的结合,将片中的精彩部分以的形式效果呈现在观众面前。配合片中大量运用的角色主观视角镜头,影片不仅在整体场景和动作上还原了“武侠江湖”,更增加了屏幕前的观众的体验感和代入感,在观影过程中可以深度沉浸于快意情仇的故事情节中,亲身体验一回江湖人士的侠义之路。和旨治仆谌葱液艘几假徒科拙饲律https://github.com/trailofbits/polytracker/issues/515 <br />https://github.com/trailofbits/polytracker/issues/538 <br />https://github.com/trailofbits/polytracker/issues/529 <br />https://github.com/trailofbits/polytracker/issues/318 <br />https://github.com/trailofbits/polytracker/issues/244 <br />xydvildonpfaiwcphspkaukts
sonata-project/SonataMediaBundle
410772479
Title: Error uploading media when validation fails for another field Question: username_0: <!-- Before you open an issue, make sure this one does not already exist. Please also read the "guidelines for contributing" link above before posting. --> <!-- If you are reporting a bug, please try to fill in the following. Otherwise remove it. --> ### Environment #### Sonata packages ``` $ composer show --latest 'sonata-project/*' sonata-project/admin-bundle 3.45.2 3.45.2 The missing Symfony Admin Generator sonata-project/block-bundle 3.14.0 3.14.0 Symfony SonataBlockBundle sonata-project/cache 2.0.1 2.0.1 Cache library sonata-project/classification-bundle 3.8.0 3.8.0 Symfony SonataClassificationBundle sonata-project/core-bundle 3.15.1 3.16.0 Symfony SonataCoreBundle sonata-project/datagrid-bundle 2.4.0 2.4.0 Symfony SonataDatagridBundle sonata-project/doctrine-extensions 1.1.5 1.1.5 Doctrine2 behavioral extensions sonata-project/doctrine-orm-admin-bundle 3.8.2 3.8.2 Symfony Sonata / Integrate Doctrine ORM into the SonataAdminBundle sonata-project/easy-extends-bundle 2.5.0 2.5.0 Symfony SonataEasyExtendsBundle sonata-project/exporter 2.0.1 2.0.1 Lightweight Exporter library sonata-project/intl-bundle 2.5.0 2.5.0 Symfony SonataIntlBundle sonata-project/media-bundle 3.18.1 3.18.1 Symfony SonataMediaBundle sonata-project/notification-bundle 3.5.1 3.5.1 Symfony SonataNotificationBundle sonata-project/translation-bundle 2.4.0 2.4.0 SonataTranslationBundle sonata-project/user-bundle 4.3.0 4.3.0 Symfony SonataUserBundle ``` #### Symfony packages ``` $ composer show --latest 'symfony/*' Restricting packages listed in "symfony/symfony" to "4.2.*" symfony/asset v4.1.11 v4.2.3 Symfony Asset Component symfony/browser-kit v4.2.3 v4.2.3 Symfony BrowserKit Component symfony/cache v4.2.3 v4.2.3 Symfony Cache component with PSR-6, PSR-16, and tags symfony/config v4.2.3 v4.2.3 Symfony Config Component symfony/console v4.1.11 v4.2.3 Symfony Console Component symfony/contracts v1.0.2 v1.0.2 A set of abstractions extracted out of the Symfony components symfony/css-selector v4.2.3 v4.2.3 Symfony CssSelector Component symfony/debug v4.2.3 v4.2.3 Symfony Debug Component symfony/debug-bundle v4.2.3 v4.2.3 Symfony DebugBundle symfony/debug-pack v1.0.7 v1.0.7 A debug pack for Symfony projects symfony/dependency-injection v4.2.3 v4.2.3 Symfony DependencyInjection Component symfony/doctrine-bridge v4.2.3 v4.2.3 Symfony Doctrine Bridge symfony/dom-crawler v4.2.3 v4.2.3 Symfony DomCrawler Component symfony/dotenv v4.1.11 v4.2.3 Registers environment variables from a .env file symfony/event-dispatcher v4.2.3 v4.2.3 Symfony EventDispatcher Component symfony/expression-language v4.1.11 v4.2.3 Symfony ExpressionLanguage Component symfony/filesystem v4.2.3 v4.2.3 Symfony Filesystem Component symfony/finder v4.2.3 v4.2.3 Symfony Finder Component symfony/flex v1.1.8 v1.1.8 Composer plugin for Symfony symfony/form v4.1.11 v4.2.3 Symfony Form Component symfony/framework-bundle v4.1.11 v4.2.3 Symfony FrameworkBundle symfony/http-foundation v4.2.3 v4.2.3 Symfony HttpFoundation Component [Truncated] pathinfo() expects parameter 1 to be string, null given at vendor/sonata-project/media-bundle/src/Model/Media.php:575 at pathinfo(null, 4) (vendor/sonata-project/media-bundle/src/Model/Media.php:575) at Sonata\MediaBundle\Model\Media->getExtension() (var/cache/dev/doctrine/orm/Proxies/__CG__AppEntitySonataMediaMedia.php:738) at Proxies\__CG__\App\Entity\SonataMediaMedia->getExtension() (vendor/sonata-project/media-bundle/src/Thumbnail/FormatThumbnail.php:160) at Sonata\MediaBundle\Thumbnail\FormatThumbnail->getExtension(object(SonataMediaMedia)) (vendor/sonata-project/media-bundle/src/Thumbnail/FormatThumbnail.php:94) at Sonata\MediaBundle\Thumbnail\FormatThumbnail->generatePrivateUrl(object(ImageProvider), object(SonataMediaMedia), 'admin') (vendor/sonata-project/media-bundle/src/Thumbnail/ConsumerThumbnail.php:75) at Sonata\MediaBundle\Thumbnail\ConsumerThumbnail->generatePublicUrl(object(ImageProvider), object(SonataMediaMedia), 'admin') (vendor/sonata-project/media-bundle/src/Provider/ImageProvider.php:175) at Sonata\MediaBundle\Provider\ImageProvider->generatePublicUrl(object(SonataMediaMedia), 'admin') (vendor/sonata-project/media-bundle/src/Twig/Extension/MediaExtension.php:185) at Sonata\MediaBundle\Twig\Extension\MediaExtension->path(object(SonataMediaMedia), 'admin') ... ```<issue_closed> Status: Issue closed
Unidata/thredds
121799877
Title: Allow drawing Lon/lat box for NCSS Question: username_0: Inspired by e-support: It would be really nice to allow drawing a box to select the region rather than typing it in. The docs [here](http://dev.openlayers.org/docs/files/OpenLayers/Handler/Box-js.html) make me think this is possible. It would also be good at that time to upgrade to the lastest 2.13.1 release (or even 2.14?) at that time. Another option would be to move to OpenLayers 3, but I'm not sure how much work that would be.
unisonweb/unison
422473208
Title: Something up with `todo` and deprecations and maybe builtins? Question: username_0: CLI says there's nothing `todo`, although the branch still contains a definition that references a deprecated term. ``` test4> view Test.busy Test.busy : Nat -> Nat Test.busy n = if ##Nat.equal n 0 then 0 else Test.busy (Nat.drop n 1) test4> todo ┌ │ ✅ │ │ No conflicts or edits in progress. └ test4> edit.list [(##Float.equal,Deprecate),(##Int.equal,Deprecate),(##Nat.equal,Deprecate),(##Text.equal,Deprecate),(##Universal.==,Deprecate)] [(##Float.equal,Deprecate),(##Int.equal,Deprecate),(##Nat.equal,Deprecate),(##Text.equal,Deprecate),(##Universal.==,Deprecate)] test4> unison: TODO - don't know how to compile this term: ##Nat.equal CallStack (from HasCallStack): error, called at src/Unison/Runtime/IR.hs:440:10 in unison-parser-typechecker-0.1-I7C95FdIglBGnISbV534LW:Unison.Runtime.IR ``` [ubf.zip](https://github.com/unisonweb/unison/files/2980815/ubf.zip) Answers: username_0: Note to self: Need to include the full codebase in the future, not just the branch file. username_0: [codebase.zip](https://github.com/unisonweb/unison/files/2985052/codebase.zip) Status: Issue closed username_1: Closing because unsure how to repro. —Arya