repo_name
stringlengths
4
136
issue_id
stringlengths
5
10
text
stringlengths
37
4.84M
adunkman/dc311rn.com
388495282
Title: Prepare for 2019. Question: username_0: Based on observing data, I expect that in 2019: - Service requests will be issued beginning with `19-`. - The endpoint will change to [.../DCGIS_DATA/ServiceRequests/MapServer/10/query](https://maps2.dcgis.dc.gov/dcgis/rest/services/DCGIS_DATA/ServiceRequests/MapServer/10/query) Answers: username_0: I believe this app will cease to function when we hit 2019, since the endpoint is currently hardcoded to the 2018 endpoint. 🥇 Status: Issue closed
zalando/skipper
554565246
Title: [Question] skipper Ingress resources examples Question: username_0: I am looking for examples for defining ingress resources for skipper. Beside the following [documentation](https://opensource.zalando.com/skipper/kubernetes/ingress-usage/), where can I get more examples? For instance, how would you create ingress resources for the following routes: path1: * -> "https://www.example.org"; path2: Path("/home") -> "https://www.google.com"; dynamicPath1: Path("/catalog/*") -> setPath("") -> <dynamic>; Answers: username_1: @username_0 In case of ingress skipper reads from ingress objects and I don't see how the first routes can be expressed. For routes without host definition you would need to create a backend, which will get default traffic. ``` spec: backend: # default backend serviceName: mybackend servicePort: 80 rules: - http: # drop this if you want to have `*` instead of Path("/home") paths: - path: "/home" ``` You can read more documentation about ingress in https://kubernetes.io/docs/reference/generated/kubernetes-api/ . If you want to proxy to an external URL, you can use https://kubernetes.io/docs/concepts/services-networking/service/#externalname as backend, but there was a bug in our issue tracker, that we did not fixed yet. Your 3rd route is wrong: - Path() has no single "**, if you want to match everything below "/catalog/", use `PathSubtree("/catalog/")` instead. See also https://opensource.zalando.com/skipper/reference/predicates/#path - Backend definition can not be empty. To understand which backend you want to use https://opensource.zalando.com/skipper/reference/backends/. If you want to use another backend from ingress you have to use custom routes https://opensource.zalando.com/skipper/kubernetes/ingress-usage/#custom-routes username_2: Skipper will parse two routes from the yaml above: 1) Host(/^$/) && Method(\"GET\") && PathSubtree(\"/my/resource\") -> setRequestHeader(\"my-header\", \"http://192.168.123.123:4567\") -> setDynamicBackendUrlFromHeader(\"my-header\") -> <dynamic>" 2) PathSubtree(\"/my/resource\") -> \"http://10.105.218.82:80\"" But when I browse to "http://my-skipper-ip-address:port/my/resource", the second rule is matched instead of the first, and as a result dynamic backend is not applied. I suspect this is because the ingress rule doesn't contain "host". Can you plz clarify skipper behavior in this scenario? In addition, is it allowed to use dynamic backend only within custom "skipper-routes"? Thanks, Yury username_1: Your 1. rule won't match any HTTP/1.1 requests, because Host header is mandatory. `Host(/^$/)` will always be false in this case
armink/EasyLogger
228977069
Title: Windows <pthread.h> Question: username_0: Hello. demo/os/windows/easylogger/port/elog_port.c: [32] `#include <pthread.h>` **pthread.h: No such file or directory** Thanks. Answers: username_1: You can using [MinGW](http://www.mingw.org/) for windows toolchain. The pthread.h is on MinGW include path. username_0: Ok. Status: Issue closed
pypa/pip
474910622
Title: Installing from private repository using --extra-index-url results in a prompt for user credentials Question: username_0: **Environment** * pip version: 19.2 and over * Python version: 3.7.2 * OS: Debian 9 <!-- Feel free to add more information about your environment here --> **Description** <!-- A clear and concise description of what the bug is. --> `pip install` results in a prompt for user credentials when specifying a private repository with `--extra-index-url` and a URL that includes a read token. Issues #3931 and #6775 are possibly related. **Expected behavior** <!-- A clear and concise description of what you expected to happen. --> The URL with the read token should suffice to download and install packages from the private repository. **How to Reproduce** <!-- Describe the steps to reproduce this bug. --> The commands below were executed in a docker container using the `python:3.7.2-stretch` image. ``` $ docker run -it python:3.7.2-stretch /bin/bash ``` 1. With version 19.2.1, trying to install from a private repository (in this case, packagecloud) using the `--extra-index-url` option and a URL with a read token (actual repo details were redacted) results in a prompt for user credentials. ``` $ pip --version pip 19.2.1 from /usr/local/lib/python3.7/site-packages/pip (python 3.7) $ pip install --extra-index-url=https://*MY-TOKEN*@packagecloud.io/myuser/myrepo/pypi/simple mypackage Looking in indexes: https://pypi.org/simple, https://*MY-TOKEN*@packagecloud.io/myuser/myrepo/pypi/simple Collecting mypackage User for packagecloud.io: ``` 2. Downgrading pip to 19.1.1 solves the issue: ``` $ pip install pip==19.1.1 Collecting pip==19.1.1 Downloading https://files.pythonhosted.org/packages/5c/e0/be401c003291b56efc55aeba6a80ab790d3d4cece2778288d65323009420/pip-19.1.1-py2.py3-none-any.whl (1.4MB) |████████████████████████████████| 1.4MB 4.5MB/s Installing collected packages: pip Found existing installation: pip 19.2.1 Uninstalling pip-19.2.1: Successfully uninstalled pip-19.2.1 Successfully installed pip-19.1.1 $ pip install --extra-index-url=https://*MY-TOKEN*@packagecloud.io/myuser/myrepo/pypi/simple mypackage Looking in indexes: https://pypi.org/simple, https://*MY-TOKEN*@packagecloud.io/myuser/myrepo/pypi/simple Collecting mypackage Downloading https://packagecloud.io/myuser/myrepo/pypi/packages/mypackage-0.1.0-py2.py3-none-any.whl (80kB) |████████████████████████████████| 81kB 7.0MB/s Installing collected packages: mypackage Successfully installed mypackage-0.1.0 WARNING: You are using pip version 19.1.1, however version 19.2.1 is available. You should consider upgrading via the 'pip install --upgrade pip' command. ``` Answers: username_1: Does it work if you put a colon after the token? username_0: It does! :tada: 19.1.1: works with or without colon. 19.2.1: works with colon, does not without. username_1: This is the same as #6796. username_2: Duplicate of #6796 Status: Issue closed username_0: @username_1 @username_2 Thank you!
python/core-workflow
241822430
Title: Start using CODEOWNERS Question: username_0: https://github.com/blog/2392-introducing-code-owners Since mention-bot seems to be perpetually down, we might as well drop it and switch over to the [CODEOWNER file](https://github.com/blog/2392-introducing-code-owners) instead. Not sure how we want this to interact with https://devguide.python.org/experts/, though (e.g. script to generate CODEOWNERS from the experts file, link to CODEOWNERS from the experts file?). Answers: username_0: FYI the free mention-bot instance we were using is down which used to do something similar for us: https://github.com/facebook/mention-bot/issues/230. So it might be time to drop mention-bot and just switch to this opt-in solution. username_1: I started the CODEOWNERS file https://github.com/python/cpython/pull/2924 Haven't really thought how to add in the experts list from the devguide to CODEOWNERS file 😛 Should we first verify if the list of experts is accurate? username_1: Also, the experts list contains b.p.o usernames. We need GitHub userid for CODEOWNERS. username_0: Yep, which is why I haven't just added `CODEOWNERS` since there's no good solution. 😉 I would say we should drop `experts.rst` and just use `CODEOWNERS`, but that won't work since we need that for the nosy list on bugs.python.org. We could query b.p.o for people's GitHub usernames, but that doesn't translate to file globs that `CODEOWNERS` needs. I think we're stuck with comments in both files saying "make sure to update the other one as appropriate" and cross-linking so people know about both files. 😞 username_0: And we should just tell people to add themselves to `CODEOWNERS` once the file is in instead of making bad assumptions about which files they care about. username_1: We now have `CODEOWNERS` file (https://github.com/python/cpython/pull/2924), and `.mention-bot` has been removed from all branches (https://github.com/python/cpython/pull/2923)! :taco: Status: Issue closed username_0: Thanks for the PRs, @username_1 !
GrumpyOldTroll/libmcrx
1122853822
Title: Ubuntu 20 LTS issues Question: username_0: Resolving these, so we can then add a GitHub Action for CI/CD like: https://github.com/SentryPeer/SentryPeer/actions/runs/1786335895 https://github.com/SentryPeer/SentryPeer/actions/runs/1786335895/workflow then we can do Coverity scans and all sorts like: https://github.com/SentryPeer/SentryPeer/actions Answers: username_0: Errors like: ``` ~/src/libmcrx$ ./autogen.sh configure.ac:9: installing 'build-aux/compile' configure.ac:7: installing 'build-aux/install-sh' configure.ac:7: installing 'build-aux/missing' Makefile.am:45: error: library used but 'RANLIB' is undefined Makefile.am:45: The usual way to define 'RANLIB' is to add 'AC_PROG_RANLIB' Makefile.am:45: to 'configure.ac' and run 'autoconf' again. Makefile.am:44: error: Libtool library used but 'LIBTOOL' is undefined Makefile.am:44: The usual way to define 'LIBTOOL' is to add 'LT_INIT' Makefile.am:44: to 'configure.ac' and run 'aclocal' and 'autoconf' again. Makefile.am:44: If 'LT_INIT' is in 'configure.ac', make sure Makefile.am:44: its definition is in aclocal's search path. Makefile.am: installing 'build-aux/depcomp' parallel-tests: installing 'build-aux/test-driver' autoreconf: automake failed with exit status: 1 ``` Status: Issue closed username_0: This is due to libtool / libtool-bin not being install. Apologies. No issues building on Ubuntu. Closing.
Eomys/MoSQITo
1174188553
Title: There is not "Fluctuation" Question: username_0: There is not "Fluctuation" , could you program "Fluctuation"? Answers: username_1: Hello @username_0, Currently, we have no contributor working on the fluctuation strength metric. If you want to contribute, you will be more than welcome. username_0: Triage notifications on the go with GitHub Mobile for iOS or Android. You are receiving this because you were mentioned.Message ID: ***@***.***> username_0: Triage notifications on the go with GitHub Mobile for iOS or Android. You are receiving this because you were mentioned.Message ID: ***@***.***>
KAIST-IS521/2018s-onion-team5
310821841
Title: Feedback from the professor and TAs Question: username_0: 안녕하세요, 조교 최재승입니다. (앞으로는 Issue를 통한 의사소통은 한글로 진행하도록 하겠습니다.) 우선 프로젝트 진행하느라 수고많으셨습니다. 아래는 이번 프로젝트 및 프레젠테이션에 대한 교수님들과 전체 조교들의 코멘트입니다. - 발표 시간은 발표와 질의응답을 합쳐 17분 30초로 잘 지켜졌습니다. - 발표 준비 부족이 눈에 띄었습니다. 심규찬 수강생이 발표 도중에 버벅거리는 부분을 박정환 수강생이 계속 코치해주는 모습이 보였습니다. 동영상을 설명하는 부분 등도 연습이 부족해 보였고, 전체적으로 좀더 매끄럽게 발표할수 있도록 연습되었다면 좋았을 것입니다. - 카카오톡과 같은 인터페이스를 한 것은 좋은데, 그 이유가 무엇인지 구체화할 필요가 있습니다. 어떤 좋은 점이 있어서 이러한 선택을 하였다라는 형태의 논리적 인과관계를 보여줘야 할 것입니다. - ESC키 및 F2 단축키 등을 사용하는 UI의 편의성은 좋았습니다. 각 사람별로 채팅창을 구분한 것과, 대화 내역(history)가 보이는 점도 좋은 평가를 받았습니다. 다만 아직 최종 결과물에 integrate되지 않은 것으로 보이는데, 이 부분을 발표때 명확히 얘기해 주셨으면 좋을 것입니다. - 발표에 "실패"가 부각되어 있습니다. 실패의 원인을 이야기하고, "희망"을 이야기 하는 편이 더 바람직할 것입니다. - 발표자료에 명백한 오타가 있었으며 발표중에 시인하기도 했습니다. 좀 더 꼼꼼하고 세밀한 준비가 아쉬웠습니다. - Node manage 등의 내용을 그림으로 설명하려 한 시도는 좋았으나, 그림의 전달력을 (눈에 잘 띄는 색상 등을 고려해서) 개선하면 좋을 것 같습니다. - Non-blocking 통신 구현이 완성되지 못한 점과, 프레젠테이션에 이런 완성되지 않은 기능이 부각되어 있는 점도 지적되었습니다. - 그 외에, Live데모를 보여주지 못한 점과 개발한 소프트웨어의 장점 어필이 부족했다는 아쉬움도 있었습니다. - 개발 과정에서의 가장 큰 문제점은, merge를 고려하지 않은 상태로 각자의 branch에서 지나치게 많은 작업이 진행되었으며, merge 작업도 너무 늦게 시작되었다는 점입니다. 이로 인해 심규찬 수강생과 양호준 수강생이 구현한 기능들은 결국 데드라인까지 최종 결과물에 제대로 통합(integrate)되지 못한 것으로 보입니다. - README 작성 등의 문서화가 거의 진행되지 않았습니다.
pulumi/pulumi-kubernetes
697043081
Title: Censor Provider's Kubeconfig parameter during failures Question: username_0: ### Problem description If there's an issue related to the Kubeconfig it is output in plaintext. Example: ``` failed to deploy k8s stack: failed to update stack: code: 0 , stdout: Updating (yarin/test-aws/k8s_us-west-2): pulumi:pulumi:Stack: (same) [urn=urn:pulumi:yarin/test-aws/k8s_us-west-2::test-aws::pulumi:pulumi:Stack::test-aws-yarin/test-aws/k8s_us-west-2] + pulumi:providers:kubernetes: (create) [urn=urn:pulumi:yarin/test-aws/k8s_us-west-2::test-aws::pulumi:providers:kubernetes::kubernetes] kubeconfig: \"CENSORED\" + 1 created 1 unchanged Duration: 5s ``` Answers: username_1: @lblackstone it appears that the issue here is trying to create a provider with the name "kubernetes": ```go p, err := providers.NewProvider(ctx, "kubernetes", &providers.ProviderArgs{ Kubeconfig: pulumi.StringPtr(k.kubeConfig), }) if err != nil { return errors.Wrap(err, "failed to create k8s provider") } _, err = helmv3.NewChart(ctx, "my-chart", helmv3.ChartArgs{ Path: pulumi.String(filepath.Join(chartsPath, "my-chart")), Namespace: pulumi.String("some-ns"), }, pulumi.Provider(p)) if err != nil { return errors.Wrap(err, "failed to deploy chart") } ``` ```shell failed to deploy k8s stack: failed to update stack: code: 0 , stdout: Updating (yarin/test-aws/k8s_us-west-2): pulumi:pulumi:Stack: (same) [urn=urn:pulumi:yarin/test-aws/k8s_us-west-2::test-aws::pulumi:pulumi:Stack::test-aws-yarin/test-aws/k8s_us-west-2] + pulumi:providers:kubernetes: (create) [urn=urn:pulumi:yarin/test-aws/k8s_us-west-2::test-aws::pulumi:providers:kubernetes::kubernetes] kubeconfig: \"CENSORED\" + 1 created 1 unchanged Duration: 5s , stderr: engine: 127.0.0.1:57240resmon: 127.0.0.1:57252error: expected '::' in provider reference '' : failed to run update: failed to run inline program and shutdown gracefully: rpc error: code = Unavailable desc = transport is closing" ``` Not sure if this is unintended, or just undocumneted/unvalidated.
clough42/electronic-leadscrew
583415315
Title: Gear Ratio Question: username_0: Mr Clough, I have Grizzly G9972 lathe. I have been trying to get the ratio for threading right. So far no luck.The Configiration.h file reads: Encoder uses 1:1 ratio from the spindle(45T to Idler 45T) to 60T stacked on the idler and 60T on the encoder. Resolution set to 4096 Servo motor same as yours 1000 P/R Servo motor 24T to 72T L/S 3:1 ratio Stepper Resolution 1000 Microsteps 3 What am I missing? Any help would be greatly appreciated. Thank you, Vrossi8050 Answers: username_1: When you lhread 8 TPI, what TPI do you get? username_0: I was trying 11 TPI. The leadscrew is 8 TPI. What the result is looks 32 TPI or smaller username_1: Please try 8 TPI, because that should be 1:1 spindle to leadscrew, since you have an 8 TPI leadscrew. See if you get 24 TPI on the work. username_0: I will give it a try over the weekend. Thank you username_2: Hi Vrossi8050 Are you using a hybrid stepper or servo,to drive lead screw? Regards John username_2: I’ve read you initial message - you mention the you have the same motor as James. James is using a hybrid servo not a stepper. You need to set the Mictosteps for that motor to 1 Take a look at James’s YouTube video ELS part 10 about 19 minutes in. James explain things there. John username_2: Hi again... If your try for 11 TPI with your configuration/setup you would get 33 TPI with your lead screw. ✔️ username_1: Hi, Johnboy. I agree the microsteps need to be set to 1, but only if the hybrid servo is driving the leadscrew directly. In his configuration.h comments, James writes, “NOTE: If you are using a servo drive with something other than a 1:1 drive ratio, you can use the STEPPER_MICROSTEPS to compensate. For example, if you have a servo configured for 1000 steps/revolution and it drives the leadscrew through a 3:1 reduction, you can set STEPPER_RESOLUTION to 1000 and STEPPER_MICROSTEPS to 3." In his Part 5 video starting at 28:52, James mounts a 24 tooth pulley on the hybrid servo and a 72 tooth pulley on the gearbox input shaft. I think I remember him saying he set the gearbox to 1:1. So he's using the 3:1 reduction mentioned above, and I assume has set his microsteps to 3, even though in his Part 10 video, which you referenced, James sets it to 1. I'm confused. What do you think? It seems to me username_0 is driving his leadscrew directly, but has his microsteps set to 3. username_0: Hi all, Thank you for your help on this. I have configuartion.h file set to : 3 microsteps 1000 P/R. The as mentioned above yes I have a 3:1 ratio as James shows 24T on Hybrid servo motor and the lead screw input is 72T . I wonder if the hardware version matters or? username_1: You have the gearbox set to 1:1 input shaft to leadscrew, right? username_0: Yes the gearbox is set 1:1. username_1: I have another thought. When you changed the values in configuration.h, and downloaded the program to the LAUNCHXL board, are you sure you were in Release mode? username_2: Hi Jan & Vrossio50 I thought I had it - I’m not sure now.😳 I hope James can through some light on what’s happening. Hope you’re all keeping well. John username_2: Jan & Vrossio50 Just looked at James YouTube video ELS Part 11 about 15 minutes in... I’m not sure if that helps. username_1: Did you see my question about building in Release mode? username_0: Yes I flashed the Release to the board. username_0: I reflashed the board and no changes in thread until I change the gearbox dials A=1 and B selected. ![20200321_130528](https://user-images.githubusercontent.com/53663633/77235679-356e7b00-6b75-11ea-844a-2e8f0fcf9bc6.jpg) username_2: ![7A6DD2DD-B620-493A-A6FE-49B79772FE9D](https://user-images.githubusercontent.com/51803701/77235794-c151c880-6bb0-11ea-82cc-2f5694e1b032.jpeg) You encoder gear train looks like this? John username_0: No just 60 to 60T. The 45 sits behind the 60 ![15848222126164337592222346715114](https://user-images.githubusercontent.com/53663633/77235929-34d6e400-6b77-11ea-9d31-7f82bdcf9b7c.jpg) username_2: I see the pcd of the gears is different but I can’t see how it’s driven. 😳 username_0: Next to the black 45t is the spindle gear also 45t but larger in diameter. username_0: ![Screenshot_20200321-150827_Camera](https://user-images.githubusercontent.com/53663633/77237493-de24d680-6b85-11ea-8e3f-5397b4954a69.jpg) username_2: Forgive me if I’m wrong - I have configuartion.h file set to : 3 microsteps 1000 P/R. The as mentioned above yes I have a 3:1 ratio as James shows 24T on Hybrid servo motor and the lead screw input is 72T I still think microsteps should be set to 1 not 3 Could you try it for me? username_2: Gears on encoder - that’s the same effectively as my diagram giving you as you say 1:1 ✔️👍 username_2: I’m turning in now for the night... let us know how you get on with this. 🤔👍 username_0: Sure. username_0: I tried 1 microsteps and puts me back to where I started. Maybe cut resolution in half on the encoder or increase steps to 4. We shall see tomorrow. Any thoughts on this? username_2: Hi username_0 I’ll read though the messages again and some of James’s video again when I get a chance. Let’s see what we can achieve. 👍 Regards, ConfusedJohn.😳 username_1: username_0, I have a new thought. Can you verify the RPM display is accurate? username_0: Hi username_2, I just tested the RPM with a tachometer on the chuck. The ELS display and tachometer match. I marked all the gears and pulleys and they are also 1:1 except for the 24t to 72T servo to Leadscrew which is 3:1. Any thoughts? username_1: Have you tried cutting 8 TPI? username_0: Yes see above photo. Set on 8 TPI but it looks like 16 TPI. username_1: Thanks, I missed that photo. So to summarize, 11 TPI looks like 32 or 33 8 TPI looks like 16 tach readout is correct. Without changing anything in the code, please try cutting 8 TPI (again), 11 TPI (again), 24 TPI, and 32 TPI. This is a very interesting problem, but I imagine it's quite frustrating for you. Sorry. :) username_0: It is quite the challenge. Thanks for your help. username_0: with the gear box set at 1 to 1? username_1: Yes! Always. username_0: 8 TPI ![15850994668683850703449803369934](https://user-images.githubusercontent.com/53663633/77492047-b9866400-6dfc-11ea-90fd-de4cfcfc55e1.jpg) ![15850994875707252841678065621363](https://user-images.githubusercontent.com/53663633/77492062-c86d1680-6dfc-11ea-83cf-4ddfedffd798.jpg) username_0: ![15850995230848765459985594691090](https://user-images.githubusercontent.com/53663633/77492086-dae75000-6dfc-11ea-94c5-835960cd1d2a.jpg) username_1: How many teeth on gear a and gear b? username_1: Please mark a reference on the spindle and leadscrew, then rotate the spindle one turn. Does the leadscrew rotate one turn? username_0: In the gearbox? I don't know. I haven't had it open. 11tpi looks the same as 8tpi ![15851001796212138849660884194934](https://user-images.githubusercontent.com/53663633/77492672-61506180-6dfe-11ea-9284-17abfb34ba24.jpg) username_1: No, the end gears on the left. username_3: Initially I had similar issues, caused by trusting the specs in my manual for Leadscrew pitch. I physically measured (manual was wrong) input correct details; #define LEADSCREW_HMM 250 And issue gone. A quick scan of this message doesn't show 'PITCH'. username_0: I measured with caliper last week. Came up with 8tpi. I defined that in configuration.h file. Tomorrow reflashed board to reflect 3 microsteps and 1000 p/m for servo settings. username_0: 45t idler to 45tspindle 60t idler to 60t encoder. See photos above. username_1: OK. Another new thought: With the leadscrew marked, and the pulley attached directly to the gearbox marked, turn the pulley one rotation and confirm the leadscrew turns one rotation. username_2: I agree with Jan - can you find out what gear setting you need to be to get 1:1 though the gearbox? The other thing - could you confirm the pitch or TPI of the lead screw? I’ve been working out various gear settings to try to understand where the error is hiding. In the gear box setting of ‘1 A’ there is a compound gear (120/127) that in the gear train which under mechanical configuration will give you either metric pitch or TPI with the reverent change gears. John P.S. stay well & away from this virus.🤞 username_0: I just marked the lead screw and pulley. It is set one to one with each other.One revolution and all the hash marks line up. Both gear box knobs are set all the way to the left. Just as James shows in his video. He says his is 12 TPI. Maybe I should adjust encoder resolution and or Micro steps in Configuration .h file?. Stay safe as well !! username_1: I've been looking at the Grizzly G9972z manual. It looks to me that change gear 'a' rotates at spindle speed and drives change gear 'b' through a 127 tooth idler. Thus, the gearbox input shaft, to which 'b' is attached, rotates at fraction a/b of spindle speed. The number of teeth on the idler is immaterial. But note the change gear configuration is different for cutting metric threads. To cut 8 TPI, the lever configuration is IB, and the change gears are 'a' = 35 and 'b' = 70. Thus, the gearbox input rotates at half spindle speed, and the gearbox multiplies its input by 2, which turns the leadscrew at spindle speed, as required for an 8 TPI leadscrew to cut an 8 TPI thread. So in setting IB, the gearbox turns the leadscrew by one half its input shaft speed. To cut a 16 TPI thread, the same change gears are used, but the levers are shifted to IA. To cut a 16 TPI thread with an 8 TPI leadscrew, the leadscrew must turn at half spindle speed. So in setting IA, the gearbox turns the leadscrew the same speed as its input shaft speed. So I agree lever setting IA is 1 to 1 gearbox input shaft speed to leadscrew speed. username_0: So where do I go from here? username_0: ![image](https://user-images.githubusercontent.com/53663633/77593366-530f4d80-6eb1-11ea-89f2-362f0111a1f8.png) The parts manual shows inch lead screw username_1: Indeed! That is the question. We seem to have eliminated everything. This just gets interestinger and interestinger! OK. How about this: Set the ELS to inch and 8 TPI, then rotate the spindle by hand and watch the leadscrew. Does the leadscrew turn one turn for each turn of the spindle? username_2: Well I spent most of the morning checking gear ratio's to try to determine the settings on the gear box selector. I haven't come up with anny conculsions yet... :-( username_0: Can't turn by hand. Servo motor engaged username_1: Turn the spindle, not the gearbox pulley. username_1: <NAME>, are you watching this conversation and laughing? username_0: I got it. One revolution of the chuck by hand and the lead screw rotates about a quarter. It takes 12 revolutions by hand of the chuck to equal 1 revolution of the lead screw username_1: OK. Now we’re on to something! This is with the gearbox levers set to I A, correct? This is why your threads are way too fine. username_2: I'm in the UK - so it past my bedtime! perhaps I'll dream about this tonight (or it will keep me awake!) and I might wake up with the answer!! Good Night all.... username_0: Yes just as the picture shows. Ok good night stay safe!!! username_2: Thanks... John username_1: Be sure and let us know if you wake up with the answer! username_2: At the moment - It's good to wake up in the morning and not feel wood either side of you... :-0 username_1: Please review the settings in configuration.h. Something has changed, because a while back you got 16 TPI when set to 8. At 12:1 spindle to leadscrew, you would get 96 TPI. username_0: I got the 16 by I and B. That;s funny right there!! I don't disagree with that. I set it back to Microstep 1 1000 P/R username_1: Please change to microsteps 3 and perform the test again. I am certain microsteps = 3 is correct for your configuration. username_0: Sorry I had it set to Microsteps 3 1000 P/R when I cut the 8TPI and came up with the 16TPI with the knobs set to l and B username_0: In the configuration.h file the lead screw entry should it be 08 or single digit 8? username_0: Part 4 @ (16:50) of build shows stepper driver programming. I will check those settings as well including Resolution of encoder mounted on the back of the hybrid servo. Which I had changed early on. username_1: Yes! That is where I was going to go next, too. With the change of microsteps back to 3, did you repeat the experiment of turning the chuck by hand? username_0: After my day job today or tomorrow. username_0: Ok so I tried to reprogram the Servo driver and now it locks up. So I will reset if I can and try again. This is frustrating. username_0: OK reset ELS to 3 Micro steps and 1000p/r. The driver for the Servo is also rest. Same result. Even after trying IA, IB and several other combinations. How should the file read for the Servo driver? username_1: With the gearbox set to IA, how many turns of the spindle to get one full turn of the leadscrew? username_0: 12 username_1: Just to be certain I understand: With microsteps = 1, it took 12 rotations of the spindle to rotate the leadscrew one turn. With microsteps = 3, it took 12 rotations of the spindle to rotate the leadscrew one turn. Is that correct? username_0: Had it on wrong setting. Sorry. Retrying test username_0: 4 Chuck revolutions = 1 rotation on the lead screw Microsteps=3 P/R = 1000 username_0: ![image](https://user-images.githubusercontent.com/53663633/77798836-defbb380-7030-11ea-9406-8d628e9aeb00.png) username_1: OK, good! That is exactly what I expected to see. username_1: I believe we have found the problem. Please set Pulses/Revolution to 1000 and Encoder Resolution to 1000 and retest. username_0: on the els or servo driver? username_1: On the servo driver. username_0: ![image](https://user-images.githubusercontent.com/53663633/77799749-aeb51480-7032-11ea-8e9f-efe7e263215d.png) username_0: changed. Does it look correct now? username_1: Correct. username_1: Yes. Be sure to save the new settings. username_0: Retest shows 4 revolutions = 1 lead screw rotation Gear box set one to one username_1: Please import the servo controller settings again and confirm that both Pulses/Revolution and Encoder Resolution are set to 1000. username_0: It immediately goes into alarm. username_1: How many times did the alarm led flash? username_0: I didn't count. username_1: Have you looked at the servo controller programming video at <https://www.youtube.com/watch?v=iEMt9jad3E8>? The all too brief controller manual says the alarm led will flash 1, 2, or 7 times per cycle. I’m guessing it flashed seven times. Just a guess, but please try changing Encoder Resolution back to 4000, while leaving Pulses/Revolution at 1000. username_0: This is the ELS setting ![image](https://user-images.githubusercontent.com/53663633/77801909-048bbb80-7037-11ea-89c9-c4d232b8aa12.png) username_1: That is correct. username_0: test shows 1 revolution of chuck = 1 revolution of lead screw username_1: I just checked the KL23-2N-1000 hybrid servo motor datasheet and it says the encoder is 1000 lines. It that the motor you have? username_0: yes username_1: Yea! It’s finally working correctly! Just for confirmation, your settings are: ELS: LEADSCREW_TPI 8 STEPPER_MICROSTEPS 3 STEPPER_RESOLUTION 1000 KL-5080H Hybrid Servo Drive: Pulses/Revolution = 1000 Encoder Resolution = 1000 Correct? username_0: Motor setting ![image](https://user-images.githubusercontent.com/53663633/77802548-541eb700-7038-11ea-98be-7aaae834f96f.png) username_0: Yes username_0: Actually no on the Servo driver. If I put it to 1000 then it alarms username_0: 7 flashes username_2: Question. Is the settings on the servo driver downloaded via a link into the firmware of the driver or are there dip switched to select hybrid servo 1000 P/R? John... Seem to be making progress 😳🤞 username_1: It alarms – seven flashes – with which parameter set to 1000? username_2: Where are the error codes for the servo driver - can you see what seven flashes refer too in the documentation? Or is it a case where you turn the power off o the servo driver wait 30 second then put power back on to reset the servodriver? username_1: The KL-5080H has to be programmed via an (ancient) RS-232 port. No dip switches. username_2: > I believe we have found the problem. Please set Pulses/Revolution to 1000 and Encoder Resolution to 1000 and retest. username_0: The highlighted parameter when set to 1000 will send it into alarm ![image](https://user-images.githubusercontent.com/53663633/77803915-8aaa0100-703b-11ea-83c3-0da1244922f9.png) username_1: The servo driver manual says 7 flashes indicate Position Following Error. username_1: OK. What were the settings when you got one spindle revolution for one leadscrew revolution? username_2: Did the motor fail to keep up with the headstock encoder or is it an error trying to drive thservo too fast? username_0: lA ELS = 3 Micro steps 1000 P/R Servo driver current setting: it takes two Revolutions of the chuck = 1 leadscrew rotation ![image](https://user-images.githubusercontent.com/53663633/77804571-238d4c00-703d-11ea-8b19-676e1d58dafa.png) username_0: Now it's 4 chuck turn to 1 leadscrew!! what in the world? username_1: Yes. That is what I would expect with servo controller set to 4000 pulses per revolution. What were the settings when you got 1 to 1? username_0: These are the settings to get 1 to 1 without changing anything on the ELS Microsteps 3 Revs 1000 ![image](https://user-images.githubusercontent.com/53663633/77805255-afec3e80-703e-11ea-84a5-86eebc9c3b8a.png) username_1: OK! It must be that the motor encoder is sending a quadrature signal to the servo controller. So it’s seeing 4000 pulses per revolution. This is exactly the situation with the spindle encoder. It has 1024 lines and the quadrature single produces 4096 counts per revolution. I think the problem is solved! Now you get to try cutting some threads again. I predict you will be successful. Keep us informed. Good luck. Jan (Yan) username_0: ![15853482823717135466245599006890](https://user-images.githubusercontent.com/53663633/77805835-1f166280-7040-11ea-97ec-87440cbca8cc.jpg) Success! Eurika! Thank you for the great help! username_1: Great news! It was a fun project and I learned a lot. Jan (Yan) username_2: Well it’s sorted - great effort by all. 👍 I agree Jan - we’ve learnt a lot and exhibited tremendous Patience! LoL. 😂 username_1: This was actually fun. Much better than watching paint dry – or whatever we’re doing for entertainment while confined. We can all sleep peacefully tonight! Thanks for the help. Jan (Yan) Status: Issue closed username_0: Mr Clough, I have Grizzly G9972 lathe. I have been trying to get the ratio for threading right. So far no luck.The Configiration.h file reads: Encoder uses 1:1 ratio from the spindle(45T to Idler 45T) to 60T stacked on the idler and 60T on the encoder. Resolution set to 4096 Servo motor same as yours 1000 P/R Servo motor 24T to 72T L/S 3:1 ratio Stepper Resolution 1000 Microsteps 3 Lead screw TPI set to 8 What am I missing? Any help would be greatly appreciated. Thank you, Vrossi8050 username_0: Still having gearbox ratio issues. Any help would be greatly appreciated. ![Screenshot_20200330-152810_Gallery](https://user-images.githubusercontent.com/53663633/77969313-48ccc500-729e-11ea-9f13-e9fbc51b52b4.jpg) username_2: What’s happened? It looked like it was working Friday when you were cutting 8TPI. What were the gear box settings then? I’m assuming you had 8TPI selected on the push button selector. John username_0: I went into the shop today happy. I plugged it in and that is what I got. I will check settings again tomorrow. username_1: I suspect the latest program was not loaded into the LAUNCHXL’s EEROPM. So when you cycled power, you got an old program. username_0: Let's hope that is all it takes. Is there a way to read what is currently on the eemprom? username_1: There is no practical way to read the EEPROM that I know of. To positively identify the version you have in EEPROM, I suggest you modify the startup messages in Userinterface.cpp. For example, you could modify startup_message_2 and add startup_message_3 like this: const MESSAGE STARTUP_MESSAGE_3 = { .messageBuffer = { LETTER_M, LETTER_Y, BLANK, LETTER_V, ONE, BLANK, BLANK, BLANK }, .displayTime = UI_REFRESH_RATE_HZ * 1.5 }; const MESSAGE STARTUP_MESSAGE_2 = { .messageBuffer = { LETTER_E, LETTER_L, LETTER_S, DASH, ONE | POINT, ONE | POINT, ZERO, TWO }, .displayTime = UI_REFRESH_RATE_HZ * 1.5, .next = &STARTUP_MESSAGE_3 }; Then, on power up, if you see MY V1 (or whatever your current version is), you’ll know what version is in EEPROM. username_2: The only setting on the Grizzly gear box is the one that gives you the 1:1 ratio from from input shaft of the gearbox to the output shaft. There’s no need to change that from then on otherwise I think confusion will set in. I agree with Jan on the program that was used when things start doing what we expected was running from EEPROM memory which hopefully needs to be re-flashed and tested. Once the unit performs correctly the TI LaunchPad can be download the retested as a stand alone system confirmed by a hard power reset. Fingers crossed as Jan says let’s hop that’s what the problem was. Good luck - stay well & away from the virus. John P.S. let us know how you get on. username_1: I’m a bit confused. Is the 8 TPI correct? Is the 12 TPI correct? Why did you change to IB? All threading and feeds should be done with the gear box set on IA username_2: I agree with Jan. 👍 username_0: Today started with this error. I updated. Still same issue. I don't know my way around code Composer or claim to be a programmer of any sort. I can't seem to get the whole project loaded to the left side so it flashes the entire program. It did erase flash once and I guess it uploaded maybe a partial or whole program. I also wanted to check the servo driver settings and ended up breaking the d9 ground pin on the connector. So that is where I am. In a jam. ![20200331_152122](https://user-images.githubusercontent.com/53663633/78085298-6ae24800-736f-11ea-9c72-be8922322e5f.jpg) username_1: Sorry for the new problems. Be confident that we will eventually sort it all out. I had a new thought: perhaps the servo controller change you made was not saved, so it was lost when you powered off. Similar to the problem with the changes to Clough’s software not being loaded into the TI board’s EEPROM. username_0: Yes I agree with the servo motor settings not being saved. Using my homemade RS 232 to Rj45 got me into a corner. New cable should be here soon. Thanks again! username_0: I got the new cable and with some effort the settings are saved to the servo drive and motor. It working !! Thanks again for your patience and help on this! username_1: Great news! username_2: Brilliant. Good fix, well done. 👍 Status: Issue closed
mekanism/Mekanism
792191436
Title: Unexpected error - Crash Question: username_0: *Please use the search functionality before reporting an issue. Also take a look at the closed issues!* #### Issue description: After installing the Mekanism mods(Mekanism,Additons,Tools,Generators) and attempting to enter the server, client forge crashes. Only shows on the server: https://pastebin.pl/view/b7118f61 #### Steps to reproduce: 1. Install Mods on server and client 2. try to join on server #### Version (make sure you are on the latest version before reporting): **Forge: 1.16.4 35.1.37** **Mekanism: Mekanism-1.16.4-10.0.18.445.jar MekanismAdditions-1.16.4-10.0.18.445.jar MekanismGenerators-1.16.4-10.0.18.445.jar MekanismTools-1.16.4-10.0.18.445.jar -- ** **Other relevant version:** #### If a (crash)log is relevant for this issue, link it here: https://pastebin.pl/view/08bb6eff Status: Issue closed Answers: username_1: #6892 #6888 #6906, according to https://github.com/mekanism/Mekanism/issues/6906#issuecomment-765208693 updating optifine fixes it or at the very least removing optifine will fix it. username_0: Working Thanks!
sameersbn/docker-gitlab
201488080
Title: shift one-click installation to containerized architect Question: username_0: first of all, thank you guys to have me such a easy way to deploy gitlab container and run it smoothly. I am now trying to shift my one-click insallation of gitlab, which version goes to 7.11.2(official), to containerized architect. a /home/git/data of my production site has been copied, the data structure is show below `backups builds gitlab-rails log nginx redis shared tmp bootstrapped git-data gitlab-shell logrotate postgresql repositories ssh uploads` assume that the folders shown above are all located on my new host (/mnt/devopsfile) is it possible to directly mount /mnt/devopsfile into /home/git/data in container? I have been trying times and then failed, so I need to consult the professions like you to solve it. thank you very much for example: ` gitlab: container_name: gitlab restart: always image: sameersbn/gitlab:8.15.2 mem_limit: 2048m depends_on: - redis - postgresql ports: - "80:80" - "10022:10022" volumes: # for storing application data - /mnt/devopsfile:/home/git/data:Z # for storing logs - /root/test_gitlab_docker_data/log:/var/log/gitlab:Z`
codalab/codalab-worksheets
443289453
Title: [USER ISSUE] infinite waiting if set --request-gpus or --request-docker-image Question: username_0: **Describe the bug** run any of following commands would result in infinite waiting (stuck in 'staged' stage) ``` cl run --request-gpus 1 "nvidia-smi" cl run --request-gpus 1 "ls" cl run --request-docker-image paddlepaddle/paddle:1.4.1-gpu-cuda9.0-cudnn7 "ls" ``` **Codalab Information** - *username_0*: - * 0x97a906fb0ab94d97b3497872ce577c17*: - *UUID of problem bundle (please don't delete)*: - *Error message received from Codalab (if applicable)*: - *CLI*: - *0.3.0*: - *Browser (if on Web)*; **To Reproduce** Steps to reproduce the behavior : just run any of following commands ``` cl run --request-gpus 1 "nvidia-smi" cl run --request-gpus 1 "ls" cl run --request-docker-image paddlepaddle/paddle:1.4.1-gpu-cuda9.0-cudnn7 "ls" ``` **Expected behavior** run done **Screenshots** ![image](https://user-images.githubusercontent.com/24541791/57610095-b7c7ff00-75a2-11e9-9ab0-d899cbc4d26c.png) **Additional context** Answers: username_1: Closing as workers have freed up. Status: Issue closed
The-Sequence-Ontology/SO-Ontologies
84786649
Title: partof relationship for repeats Question: username_0: **Reported by scalabrin on 2010-04-21 16:29 UTC** I want to annotate LTR retrotransposons. They are composed by two flanking direct repeats. I would annotate them as: scaffold\_1 LTR\_FINDER repeat\_region 84438 89646 6 . . ID=LTR\_0;Name=LTR\_0;Note=TSR,PPT scaffold\_1 LTR\_FINDER direct\_repeat 84438 84709 . + . Parent=LTR\_0 scaffold\_1 LTR\_FINDER direct\_repeat 89375 89646 . + . Parent=LTR\_0 with the two LTRs child of the whole element. Is it possible to add direct\_repeat as partof repeat\_region?
expo/expo
395415731
Title: [BUG] Print API - iOS 11.4+ Question: username_0: ### Environment Expo CLI 2.6.14 environment info: System: OS: macOS 10.14 Shell: 3.2.57 - /bin/bash Binaries: Node: 10.13.0 - /usr/local/bin/node Yarn: 1.12.3 - /usr/local/bin/yarn npm: 6.5.0 - /usr/local/bin/npm Watchman: 4.9.0 - /usr/local/bin/watchman IDEs: Xcode: 10.1/10B61 - /usr/bin/xcodebuild npmPackages: expo: 31.0.6 => 31.0.6 react: 16.5.0 => 16.5.0 react-native: https://github.com/expo/react-native/archive/sdk-31.0.1.tar.gz => 0.57.1 react-navigation: 3.0.9 => 3.0.9 npmGlobalPackages: expo-cli: 2.6.14 App's target (iOS, Android) ### Steps to Reproduce 1. Use Print component from 'expo-print' module and set any url with a pdf. 2. Run project on simulator (or real iPhone) with iOS 11.4+ (12.0, 12.1 too) 3. When AirPrint loads the document, zoom in on the document. Then tap the "Printer Options" button to exit the zoom. ### Expected Behavior What you should expect when you touch the "Printer Options" button to zoom out is to return to the print screen: ![simulator screen shot - iphone 5s - 2019-01-02 at 18 25 09](https://user-images.githubusercontent.com/18200380/50617608-22ae4e80-0ebc-11e9-8be1-3336fd16b79d.png) ### Actual Behavior In reverse, what happens is that you actually return to the print screen but the "Cancel" and "Print" buttons don't appear. It' s also not possible to leave the print screen because it doesn't allow to do the "back". The only way out is to close the application and reopen it. ![simulator screen shot - iphone 5s - 2019-01-02 at 18 32 55](https://user-images.githubusercontent.com/18200380/50617791-e2030500-0ebc-11e9-935d-73558ead6ed5.png) ### Reproducible Demo I couldn't play it with a snack because it couldn't find the "expo-print" module despite adding it in the package.json Answers: username_1: Hey @username_0! Unfortunately, this bug seems to be caused by our internal architecture of view controllers in Expo Client. I've been trying to solve it, but it would break some other things related to modals and alerts. I'm really sorry but we can't fix this in the client right now 😞 Can you check if that works in standalone app? I believe it works there as expected 😉 username_0: Morning @username_1 In fact, the bug was found by my boss when he was testing one of the features of the app in which the Print module is used. He has an iPhone 7 with iOS 12.0 and yes, the problem is also in production right now :(, we had to publish the app with that bug.
AlexanderGubarev/RecordVideo-TestComplete-extension
281374137
Title: VLC crashes on invalid Start call Question: username_0: Run the following code to crash VLC player: `function pzdk() { VideoRecorder.Start("Low") VideoRecorder.Start("FullHD") VideoRecorder.Start(Mobile) }` Answers: username_1: Try to fix by restriction of second launch of VLC Status: Issue closed
GoogleCloudPlatform/python-docs-samples
896822849
Title: Update README of a sample sqlalchemy Question: username_0: ## In which file did you encounter the issue? https://github.com/GoogleCloudPlatform/python-docs-samples/blob/master/cloud-sql/mysql/sqlalchemy/README.md ### Did you change the file? If so, how? ``` -export INSTANCE_CONNECTION_NAME='<MY-PROJECT>:<INSTANCE-REGION>:<INSTANCE-NAME>' +export CLOUD_SQL_CONNECTION_NAME='<MY-PROJECT>:<INSTANCE-REGION>:<INSTANCE-NAME>' ``` ``` -./cloud_sql_proxy -dir=$DB_SOCKET_DIR --instances=$INSTANCE_CONNECTION_NAME --credential_file=$GOOGLE_APPLICATION_CREDENTIALS & +./cloud_sql_proxy -dir=$DB_SOCKET_DIR --instances=$CLOUD_SQL_CONNECTION_NAME --credential_file=$GOOGLE_APPLICATION_CREDENTIALS & ``` ## Describe the issue README.md wrote environment variables as INSTANCE_CONNECTION_NAME but main.py uses CLOUD_SQL_CONNECTION_NAME<issue_closed> Status: Issue closed
elifesciences/package-ejp-raw-output-zip
378402906
Title: Competing interest changes to final XML Question: username_0: ## Problem / Motivation WHO: Production/Bot/Production Vendor/Website WHEN: Between Export from EJP/xPub and delivery to production vendor/new specification for XML delivered to website WHERE: In eLife bot processes WHAT: Competing interests statements WHY: Differences between EJP output and final XML . And update our XML so we are JATS4R compliant ## Proposed solution **For 1 conflict/multiple authors ** ```<contrib-group><contrib contrib-type="author" corresp="yes" id="author-24343"><name><surname>Cembrowski</surname><given-names><NAME></given-names></name>``` ... ```<xref ref-type="author-notes" rid="con1"/></contrib></contrib-group>``` ... ```<contrib-group><contrib contrib-type="author" corresp="yes" id="author-24393"><name><surname>Harrison</surname><given-names>Melissa</given-names></name>``` ... .. ```<xref ref-type="author-notes" rid="con1"/></contrib></contrib-group>``` ```<author-notes><fn fn-type="COI-statement" id="con1"><p>Competing Interests: The authors have declared that no competing interests exist.</p></fn></author-notes>``` **For multiple authors/multiple conflicts - xlinking required and new tagging** ```<contrib-group><contrib contrib-type="author" corresp="yes" id="author-24343"><name><surname>Cembrowski</surname><given-names><NAME></given-names></name>``` ... ```<xref ref-type="author-notes" rid="con1"/></contrib></contrib-group>``` ```<contrib-group><contrib contrib-type="author" corresp="yes" id="author-24393"><name><surname>Harrison</surname><given-names>Melissa</given-names></name>``` ```<xref ref-type="author-notes" rid="con2"/></contrib></contrib-group>``` ```<author-notes><fn fn-type="COI-statement" id="con1"><p>Conflicts of Interest Statement: <NAME> is a member of the Health Technology Assessment (HTA) Primary Care, Community and Preventive Interventions (PCCPI) Panel. </p></fn><fn fn-type="COI-statement" id="con2"><p>Conflicts of Interest Statement: <NAME> is Editor-in-Chief of the <italic>Programme Grants for Applied Research</italic> journal and is a member of the National Institute for Health Research (NIHR) Journals Library Board.</p></fn></author-notes>``` ## Clarification needed and assumptions - Will this work for us and the PMC requirement to have a title? --- ## Tasks <!-- List of tasks for this ticket to be complete --> - [ ] Melissa to test this on PMC - [ ] Discuss with Dev team ## Technical notes @gnott ## User interface / Wireframes
inviwo/inviwo
366197108
Title: Dysfunctional web browser example workspace Question: username_0: **Issue** One of the example workspaces for the web browser processor uses a path that doesn't exist (for most of us) to load the html-file, which means that the example workspace doesn't really work :) Maybe make the path relative to the workspace, or change the property so that the Inviwo user can browse a file instead of typing in the whole file-path? Maybe the processor could have as an option to load an online webpage, but by default use a file browsing property? ![image](https://user-images.githubusercontent.com/8807821/46394031-01d13400-c6e8-11e8-9695-102d3e8cc3b7.png) Answers: username_1: Closed by #270 Status: Issue closed
leo-editor/leo-editor
491487839
Title: Beautify all of Leo's sources, in stages Question: username_0: - [ ] Beautify all of Leo's files, without splitting or joining lines. - [ ] Ditto, allowing the beautifier (orange) to split lines. - [ ] Ditto, allowing orange to join lines. The new **beauty branch** will contain more experimental work. Status: Issue closed Answers: username_0: Completed as part of #1440.
avwo/whistle
642615086
Title: jsAppend/jsPrepend 支持动态values吗? Question: username_0: 规则: baidu.com resScript://{cookie.js} jsPrepend://{tmp.js} 因为某些原因,有网站 cookie 设置了httponly,导致js无法获取 目前想法: cookie.js ``` var cookieJSON = JSON.stringify({cookie:headers.cookie}); values['tmp.js'] = `document.write(${cookieJSON})`; ``` jsPrepend 似乎读不到 tmp.js ?<issue_closed> Status: Issue closed
TaxFoundation/tf-web-styles
159707542
Title: Extended Horizontal Rules Trigger Horizontal Scroll Question: username_0: Extended horizontal rules trigger horizontal scrolling. Setting overflow to be none, which eliminates horizontal scrolling, also cuts off content. We'll have to find a different solution for full-width content.
OraOpenSource/orawrap
198607949
Title: How to perform Batch Insert and Batch Update Using Orawrap? Question: username_0: How to perform Batch Insert and Batch Update Using Orawrap? Answers: username_1: @username_0 Orawrap is no longer being actively developed. Please use the base driver instead. If you post a question there I will put together an example for you. Also, if you do create a question there, please include more details about the batch update. Status: Issue closed
test-kitchen/kitchen-digitalocean
619450246
Title: Remove unsupported images and add support of Ubuntu 20.04 Question: username_0: ``` # Possible fix: Match the parity with current supported digital ocean images distribution. ``` curl -X GET -H "Authorization: Bearer $TOKEN" https://api.digitalocean.com/v2/images?type=distribution | jq '.images[].slug' "centos-6-x32" "centos-6-x64" "fedora-30-x64" "centos-7-x64" "ubuntu-18-04-x64" "ubuntu-16-04-x32" "ubuntu-16-04-x64" "ubuntu-20-04-x64" "ubuntu-19-10-x64" "fedora-31-x64" "centos-8-x64" "rancheros" "freebsd-12-x64" "freebsd-12-x64-zfs" "freebsd-11-x64-ufs" "freebsd-11-x64-zfs" "coreos-alpha" "coreos-beta" "coreos-stable" "debian-10-x64" "debian-9-x64" "fedora-32-x64" ```<issue_closed> Status: Issue closed
CONP-PCNO/conp-dataset
687658164
Title: OSF crawled private datasets can't be downloaded by users Question: username_0: ## Expected Behavior Having setup an OSF provider with the right token, see [here](https://github.com/datalad/datalad/issues/4376), using `datalad get` on an OSF private dataset that has been crawler by the OSF crawler like https://github.com/conp-bot/conp-dataset-Private-Test, we should be able to retrieve the file ## Current Behavior Using `datalad get`, it says invalid authentication ![image](https://user-images.githubusercontent.com/35869923/91513345-19080480-e8b2-11ea-8073-e136be54b65b.png) ## Environment (optional) <!--- Information about the execution environment, in particular: Python version, Docker/Singularity version if relevant --> ## Context (optional) <!--- How has this issue affected you? What are you trying to accomplish? --> <!--- Providing context helps us come up with a solution that is most useful in the real world --> ## Possible fix (optional) Make sure that when you call `datalad get`, it passed by the OSF provider to use the bearer token with all its calls ## Related issues (optional) <!--- Link any related issue --> Answers: username_1: @username_0 Can this be closed now that #572 has been merged? username_0: Yes it can Status: Issue closed
ivarptr/yu-writer.site
356391255
Title: 功能建议:增加“文件资源管理器”设置 Question: username_0: RT, 期望增加一个功能设置:可以自定义“文件资源管理器”程序,本人喜欢用TotalCommander,希望2个软件可以无缝的调用。 类似Everything、Listray。 ![image](https://user-images.githubusercontent.com/8929204/44973542-7ac95880-af8f-11e8-9c00-31753f92de9e.png) ![image](https://user-images.githubusercontent.com/8929204/44973547-80bf3980-af8f-11e8-9c92-5100d3da76c8.png) 非常感谢作者 @username_1 喜欢yu-write的开放,用来做笔记、知识的管理,由于使用开放的文件的管理可以与Everything、TC共同管理笔记文件,非常棒的体验。 使用过麦库、为知、有道笔记等,都感觉有种被绑定的感觉,不能将文件和笔记很好的结合。 加油! Answers: username_1: @username_0 好的,将会在 0.6.x 版的配置文件里加上。
asciidoctor/asciidoctor-pdf
63746215
Title: Glossary display + use Question: username_0: What is the (intended) advantage of using the `[glossary]` tag over a normal definition list? And can I also use `[glossary, horizontal]` for example? Answers: username_1: The glossary tag is purely semantic (no visual difference) for generating DocBook. It provides the hint for the DocBook output to use the `glossary` tag instead of a normal definition list. In the HTML and Asciidoctor PDF backends, I don't believe it does anything special. It's just a normal definition list. Of course, in the future, we might take it further and open the doors to a specialized layout...so it's worth adding. At the moment, you can't use both glossary and horizonal together. Though, to be honest, horizontal should be an option (or a role), not a style. That would solve this issue. horizontal is a bit of a strange legacy piece from AsciiDoc Python that isn't exactly semantic. We might need to rethink the meaning / approach of it in core....such as by making it a role or option as I suggested. username_2: [cf](https://en.wikibooks.org/wiki/LaTeX/Glossary#Changing_Glossary_Entry_Presentation_Using_Glossary_Styles) But this minor issue aside, once more I'm happy with the features that asciidoc does provide which markdown does not.
jazz-community/jazz-debug-environment
268661319
Title: Project Area cannot be created when sdk_files.cfg is generated Question: username_0: When automatically generating the list of features and plugins directly from the sdk files, database integration doesn't seem to work properly. This can be reproduced when using the generated sdk files (which is now renamed and unused, but still generated) vs the one that is included in the project. This is obviously a problem when switching between different versions of the sdk. I assume this is a problem with a plugins that have the same functions for accessing the database in different contexts. To fix this, we have to find out which includes prevent the database from connecting properly when being run with the equinox launcher instead of a proper web server. Answers: username_0: This will never work, without using complicated dependency resolution (a feature of eclipse). Easiest workaround for this is providing an sdk_files configuration file for every major release. Status: Issue closed
locustio/locust
956726034
Title: Display current testscript used Question: username_0: ### Is your feature request related to a problem? Please describe. Currently when we start locust ui , there are no hints on the page to find out what will be executed exactly. ### Describe the solution you'd like It would be nice to at least display the current testscript filename that was used to start the command a.k.a -f option value. If not at least the list of tasks that are going to be executed would be also nice to have. ### Describe alternatives you've considered I have no idea of any possible alternative. ### Additional context Distributed installation with many worker machines and a dedicated master running with UI. Answers: username_1: Good idea! Shouldnt be too difficult to do either. Maybe have a go att doing it yourself? username_0: @username_1 not sure how that could be done by myself unfortunately. I guess more experienced person on this project could add this quicker. username_1: I’m sure it would be quicker, but it is unlikely to happen. Particularly the UI is ”you want it, you build it”, as I dont use it myself :) username_0: is there information how to build locust locally ? or can we simply do pip install . maybe ? not sure, I am not really expert in this area :( username_1: Clone the repo from github, cd into the folder and run pip3 install -e . username_0: @username_1 thanks a lot, I managed to do something, you can check my draft PR on #1833
iltercengiz/ICViewPager
42743897
Title: Crashes - with 4 tabs, and 4 different View Controllers Question: username_0: Hi there, The app crashes with 4 tabs, and each tab returns a different view controller. The error is [UIView _forgetDependentConstraint:]: message sent to deallocated instance 0xb407bb0 This is how i return the viewcontrollers - (UIViewController *)viewPager:(ViewPagerController *)viewPager contentViewControllerForTabAtIndex:(NSUInteger)index { UIViewController *vc=nil; switch (index) { case 0: vc = publicChat; break; case 1: vc = privateChat; break; case 2: vc = roomRanking; break; case 3: vc = songPick; break; } UALogFull(@"View Controller %@ %@",vc,[vc class)]; return vc; } The viewcontrollers are created on viewdidload. - (UIViewController *)viewPager:(ViewPagerController *)viewPager contentViewControllerForTabAtIndex:(NSUInteger)index { UIViewController *vc=nil; switch (index) { case 0: vc = publicChat; break; case 1: vc = privateChat; break; case 2: vc = roomRanking; break; case 3: vc = songPick; break; } UALogFull(@"View Controller %@ %@",vc,[vc class)]; return vc; } Any help is highly appreciated. Answers: username_1: First of All Thanks @iltercengiz it is awesome.. works fine for me as well.. and i know i am really late. Hope this will fix your problem. - (UIViewController *)viewPager:(ViewPagerController *)viewPager contentViewControllerForTabAtIndex:(NSUInteger)index { UIStoryboard * urStoryboard = [UIStoryboard storyboardWithName:@"yourStoryBoardName" bundle: nil]; UIViewController *vc ; switch (index) { case 0: vc= [urStoryboard instantiateViewControllerWithIdentifier: @"FirstVC"]; break; case 1: vc= [urStoryboard instantiateViewControllerWithIdentifier: @"SecondVC"]; break; case 2: vc= [urStoryboard instantiateViewControllerWithIdentifier: @"ThirdVC"]; break; ........ default: break; } return vc; } The way you have called these might not link to storyboard or even using Nibs i Assume...
uc-cdis/cloud-automation
289398553
Title: handle cookie session in revproxy Question: username_0: should handle: - translate access_token from cookie to Authorization header - csrf protection Answers: username_0: fence sets up two cookies (after https://github.com/uc-cdis/fence/pull/37 is merged): an access_token cookie and a session_token cookie. The default TTL for access_token is 10 min, it's a stateless token(we can't revoke it) so the TTL need to be short. The default TTL for session cookie is 30min for stale session and 8h max life time (settings [here](https://github.com/uc-cdis/fence/blob/8f425a2ac53a66e1740eb3f0702e51e7905282c0/fence/settings.py#L18-L25) ) Whenever fence is hit, it will refresh the tokens if the lifetime is < 8h. On the user end though, any action to any api count as a 'user activity', so even if it hits sheepdog it should also refresh the session. So we should also make a subrequest in revproxy to fence for every other api calls if there is a session cookie presented. Status: Issue closed
dotnet/runtime
1167776146
Title: Test failure JIT\\Performance\\CodeQuality\\Roslyn\\CscBench\\CscBench.cmd Question: username_0: Run:[ runtime-coreclr jitstress-isas-x86 20220312.1](https://dev.azure.com/dnceng/public/_build/results?buildId=1660479&view=ms.vss-test-web.build-test-results-tab&runId=45714274&resultId=106209&paneView=debug) Failed test: ``` CoreCLR windows x64 Checked jitstress_isas_nosimd @ Windows.10.Amd64.Open - JIT\\Performance\\CodeQuality\\Roslyn\\CscBench\\CscBench.cmd - JIT\\opt\\Vectorization\\UnrollEqualsStartsWIth\\UnrollEqualsStartsWIth.cmd - JIT\\HardwareIntrinsics\\General\\Vector128_1\\Vector128_1_ro\\Vector128_1_ro.cmd - JIT\\HardwareIntrinsics\\General\\Vector256_1\\Vector256_1_ro\\Vector256_1_ro.cmd - profiler\\unittest\\releaseondetach\\releaseondetach.cmd - Loader\\classloader\\regressions\\dev10_630250\\dev10_630250\\dev10_630250.cmd - profiler\\multiple\\multiple\\multiple.cmd - JIT\\Stress\\ABI\\stubs_do\\stubs_do.cmd - JIT\\Stress\\ABI\\pinvokes_do\\pinvokes_do.cmd - JIT\\Stress\\ABI\\tailcalls_do\\tailcalls_do.cmd - JIT\\Regression\\JitBlue\\DevDiv_461649\\DevDiv_461649\\DevDiv_461649.cmd - JIT\\Performance\\CodeQuality\\Serialization\\Deserialize\\Deserialize.cmd - Interop\\SuppressGCTransition\\SuppressGCTransitionTest\\SuppressGCTransitionTest.cmd CoreCLR Linux x64 Checked jitstress_isas_nosimd @ Ubuntu.1804.Amd64.Open - readytorun/determinism/crossgen2determinism/crossgen2determinism.sh - profiler/eventpipe/eventpipe/eventpipe.sh - JIT/Stress/ABI/pinvokes_do/pinvokes_do.sh - tracing/eventpipe/eventsvalidation/ExceptionThrown_V1/ExceptionThrown_V1.sh - JIT/Performance/CodeQuality/Roslyn/CscBench/CscBench.sh - tracing/eventpipe/eventsvalidation/GCEvents/GCEvents.sh - tracing/eventpipe/gcdump/gcdump/gcdump.sh - readytorun/tests/mainv2/mainv2.sh - Loader/classloader/MethodImpl/CovariantReturns/UnitTest/UnitTestMultiModule/UnitTestMultiModule.sh - tracing/eventpipe/rundownvalidation/rundownvalidation/rundownvalidation.sh - readytorun/tests/mainv1/mainv1.sh CoreCLR Linux x64 Checked jitstress_isas_x86_nosse2 @ Ubuntu.1804.Amd64.Open - JIT/Regression/VS-ia64-JIT/V1.2-Beta1/b91944/b91944/b91944.sh - JIT/IL_Conformance/Old/Conformance_Base/ckfinite_r8/ckfinite_r8.sh - JIT/jit64/regress/vsw/373472/test_il/test_il.sh - JIT/Regression/CLR-x86-JIT/V1-M12-Beta2/b65087/b65087/b65087.sh - tracing/eventpipe/rundownvalidation/rundownvalidation/rundownvalidation.sh - JIT/Regression/CLR-x86-JIT/V1-M09.5-PDC/b12274/b12274/b12274.sh - JIT/jit64/regress/vsw/373472/test/test.sh - profiler/eventpipe/eventpipe/eventpipe.sh CoreCLR Linux x64 Checked jitstress_isas_2_x86_nosse2 @ Ubuntu.1804.Amd64.Open - JIT/Methodical/flowgraph/dev10_bug679008/ehDescriptorPtrUpdate/ehDescriptorPtrUpdate.sh - JIT/Regression/VS-ia64-JIT/V1.2-Beta1/b91944/b91944/b91944.sh - JIT/jit64/regress/vsw/373472/test_il/test_il.sh - JIT/jit64/regress/vsw/373472/test/test.sh - JIT/Regression/CLR-x86-JIT/V1-M11-Beta1/b41990/b41990/b41990.sh - JIT/Regression/CLR-x86-JIT/V1-M11-Beta1/b47080/b47080/b47080.sh - JIT/IL_Conformance/Old/Conformance_Base/div_i8/div_i8.sh - JIT/Directed/IL/leave/leave1/leave1.sh - tracing/eventpipe/eventsourceerror/eventsourceerror/eventsourceerror.sh CoreCLR Linux x64 Checked jitstress_isas_1_x86_nosse2 @ Ubuntu.1804.Amd64.Open - JIT/Methodical/flowgraph/dev10_bug679008/ehDescriptorPtrUpdate/ehDescriptorPtrUpdate.sh [Truncated] Raw output: BEGIN EXECUTION "C:\h\w\B2E20974\p\corerun.exe" -p "System.Reflection.Metadata.MetadataUpdater.IsSupported=false" CscBench.dll Expected: 100 Actual: -1073740286 END EXECUTION - FAILED FAILED Test Harness Exitcode is : 1 To run the test: set CORE_ROOT=C:\h\w\B2E20974\p C:\h\w\B2E20974\w\B4F8094F\e\JIT\Performance\CodeQuality\Roslyn\CscBench\CscBench.cmd Expected: True Actual: False Stack trace at JIT_Performance._CodeQuality_Roslyn_CscBench_CscBench_._CodeQuality_Roslyn_CscBench_CscBench_cmd() ``` Answers: username_1: Seems related to #66411 and #66206. @username_2 this looks like something #66411 was supposed to fix? username_2: Yes. In #66411 I fixed code that was wrongly using a field in Arm64 that it was not supposed to use, but maybe the code at other places have wrong assumptions. I will look into it. username_2: Dup of https://github.com/dotnet/runtime/issues/66206 username_2: https://github.com/dotnet/runtime/pull/66670 fixes this. Status: Issue closed
serde-rs/serde
961387025
Title: For serde-yaml, is there a way to get a struct to serialise in an inline format? Question: username_0: I'm trying to serialise a vector into an inline yaml list. When I serialize, it needs to look like this: `Attribute: [value, value, value]` but it looks like this: `Attribute: -value -value -value` I tried implementing the serialize trait and the result was to produce something like this `Attribute: "[value, value, value]"`. The quotes make it invalid. Here is my custom serializer: `impl Serialize for Router { fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where S: serde::Serializer { let mut output = String::new(); output += "["; output += &self.vlans.join(", "); output += "]"; let mut state = serializer.serialize_struct("Router",1)?; state.serialize_field("vlans", &output); state.end() } }` Answers: username_1: Please take this question to one of the resources listed in https://github.com/serde-rs/serde/tree/v1.0.135#getting-help. Sorry that no one was able to provide guidance here. Status: Issue closed
cleverbeagle/pup
297602480
Title: Write documentation for redirect after login Question: username_0: Whoops. Forgot this. Answers: username_1: Anyone who comes across, register this onLogin callback with Redirect. Unless Ryan has something better. ``` import { Redirect } from 'react-router-dom'; import { Meteor } from 'meteor/meteor'; import { AccountsCommon } from 'meteor/accounts-base'; AccountsCommon.onLogin(loginDetails => { return <Redirect to="/account/dashboard" /> }) ``` Cheers username_1: Hello! Could you please add this on the docs or explain here how to add this? Status: Issue closed username_2: I might be missing something but I can't find the documentation for after login redirection username_0: Hi @username_2 this is documented here: https://username_0.com/pup/v2/routing/defining-routes#authenticated-authorized-and-public-routes. It could use a bit more detail (it's mentioned but not walked through). Do you have a specific question about it?
japgolly/scalajs-react
959672864
Title: `ModStateFn` exposing `Sync.Untyped` Question: username_0: ```scala val modifyViewFn: Reusable[ModStateFnPure[View]] = Reusable.byRef(ModStateFn((mod, cb) => for { p <- pxProject.toCallback (s1, _) <- stateAccess.state fd <- pxFilterDead.toCallback v1 = s1.view.activeView(p.savedViews, fd) v2 = mod(v1) getOrElse v1 s2 = s1.setModifiedView(p, updateFilterText = false)(v2) _ <- stateAccess.setState((s2, v2.filterDead), cb) } yield ())) ``` ``` could not find implicit value for parameter G: username_0.scalajs.react.util.Effect.Dispatch[username_0.scalajs.react.util.Effect.Sync.Untyped] [error] _ <- stateAccess.setState((s2, v2.filterDead), cb) ```<issue_closed> Status: Issue closed
ErikSchierboom/knockout-pre-rendered
229497548
Title: Bug getting childs of virtual nodes Question: username_0: Hi, first of all, thanks for the library, looks very useful. But I noticed some problems using it on virtual fields. Getting these two examples, we should expect a equivalent result . *I edited the code here to keep it simple, so can have some typographical mistake The JS is not relevant here, and i used the same for the two tests . ``` <script> function ItemModel(id){ var self = this; self.id = ko.observable(id); } function ViewModel(){ var self = this; self.items = ko.observableArray(); self.createItem = function(){ return new ItemModel(); } } var viewModel = new ViewModel(); ko.applyBindings(viewModel); </script> ``` Case 1 ( "external" template ) ``` <ul> <li>Header</li> <!-- ko foreachInit: { data: items, name: "itemTemplate", createElement: createItem } --> <li data-bind='init, text: id'>Item1</li> <li data-bind='init, text: id'>Item2</li> <li data-bind='init, text: id'>Item3</li> <!-- /ko --> </ul> <script type="text/ko-template" id="itemTemplate"> <li data-bind='init, text: id'></li> </script> ``` Case 2 ( "internal" template ) ``` <ul> <li>Header</li> <!-- ko foreachInit: { data: items, createElement: createItem } --> <li data-template data-bind='init, text: id'></li> <li data-init data-bind='init, text: id'>Item1</li> <li data-init data-bind='init, text: id'>Item2</li> <li data-init data-bind='init, text: id'>Item3</li> <!-- /ko --> </ul> ``` The "Case 2" is working well, getting the elements marked with "data-init". But in the "Case 1" is getting the "li" element used as header, as a "item" . Looking documentations and library code this seems a bug, since we should have the same result, receiving the childrens of the virtual node <!-- ko --> Answers: username_1: Thanks for the bug report. I'll have a look at at, although it can take a little while due to a holiday. username_1: @username_0 I've just published a new version, 0.9.1-beta, that should fix this problem. Would you be willing to test it? username_0: Hi @username_1 , I have tried the 2 cases and they are working as expected, so it seems to be fixed . Thank you very much for sharing your time . Status: Issue closed username_1: Thanks for testing! I've just published the final 0.9.1 version. 🎉
HEXRD/hexrdgui
702882670
Title: macOS only: snip1d popup only displays once Question: username_0: In the polar image mode, the "Show snip1d" button generates and displays a popup window. On macOS, if you close that popup, clicking the "Show snip1d" button again does not re-display the window. Internally I have confirmed that the figure is generated and the matplotlib figure.show() function is called. Answers: username_1: Possibly related: #204 username_0: Yes same thing. Thanks for pointing that out, Patrick. Status: Issue closed
neuronsimulator/nrn
684288011
Title: NetStim (no gid) -> NetCon -> Synapse and nthread>0 bug in CoreNEURON. Question: username_0: The problem is that when an ```ARTIFICIAL_CELL``` with no gid connects to a synapse in different threads, the spike delivery arrives at different time steps. I.e. for my test program (with dt=1./32) at1.03125 (time step 33) and on NEURON at 1.28125 (time step 41). If the ```ARTIFICIAL_CELL``` is given an gid and connected with ```pc.gid_connect``` this issue does not occur. Answers: username_0: This bug is more or less diagnosed but needs a bit of thought to develop a fix. The highest level issue is that, for file transfer mode, artificial cells without a gid must be in the same thread as the target synapse. This is because, for file transfer mode, different threads on the same processor on the NEURON side may end up on different processors for a CoreNEURON run. So far so good, but we have to make sure there is a clear error message produced by NEURON. However, for direct transfer mode, coupling Artificial cells without gids to targets on other threads is (should be) allowed. My current hypothesis in this case is that the bug turns out to be that NEURON is sending direct transfer info based on the thread where the artificial cell is located. But, CoreNEURON is processing the direct info data assuming that the artificial cell is located on the same thread as the target. This hypothesis may have to be modified to give all the blame to the NEURON side. The diagnostic data so far demonstrates only that during a run the ArtificialCell->NetCon->target is mixed up. username_0: The source of the issue is CellGroup has thread specific ml (```Memb_list```) for artificial cell type in that thread. (via ```mk_tml_with_art```). For artificial cell in ```mk_cgs_netcon_info``` ``` int ix = nrncore_art2index(pnt->prop->param); cgs[ith].netcon_srcgid[i] = -(type + 1000*ix); ``` but ith is the target thread whereas ix is the index for ```ml->data[ix]``` in the thread of the source. And that's the bug. (See how a real positive global gid is safe for netcon_srcgid, but those negative gids are thread specific.) username_0: I think a fix consists of two parts. 1) for file transfer, an error message if any src with a negative gid is not in the thread of the target. 2) modify the direct transfer negative gid's (at least for the case of multiple threads, from ```-(type + 1000*ix)``` to ``` -(nt.tid + nrn_nthread*(type + n_memb_func*ix))``` (but with perhaps an increase in the map domain density through the use of ```nrn_has_net_event_cnt_``` and ```nrn_has_net_event_``` in place of ```n_memb_func``` and to derive the type). An alternative to 2) (that I prefer) is just to modify the relevant direct transfer callback to send back a vector of nt.tid in the same order as the negative gids in the vector of gids (if there is more than one thread).
rapidsai/dask-cuda
750940447
Title: Distributed computation support Question: username_0: Does dask-cuda support distributed memory computations? For instance, can this be used to do a distributed join on top of CuDF? Answers: username_1: Yes, you can use cuDF with Dask-CUDA via Dask-cuDF: https://docs.rapids.ai/api/cudf/stable/10min.html . username_0: @username_1 What I meant was; On a fixed size dataset, can we distribute it to multiple nodes and do a join distributedly on multi-core multi-node using Dask CuDF? username_2: In the example Peter linked, there is [a join illustrated]( https://docs.rapids.ai/api/cudf/stable/10min.html#Join ). username_0: @username_2 can this join be running on multiple machines. Let's say the data is not fitting a machine ( let's say 8 GPU included machine), so we would have to use multiple machines. So will this work on that kind of a larger dataset? username_1: Yes, it will work with multiple nodes too. For that the simplest setup is to use a single [`dask-scheduler`](https://docs.dask.org/en/latest/setup/cli.html?highlight=dask-scheduler#dask-scheduler) process and a [`dask-cuda-worker`](https://github.com/rapidsai/dask-cuda/blob/branch-0.17/dask_cuda/cli/dask_cuda_worker.py) process for each worker node node. username_0: So internally, it doesn't use any all-to-all communication, but it sends to the master and workers back and forth to do the distributed computation? username_1: No, data is communicated peer-to-peer, but the scheduler is responsible for creating task graphs and assigning workers to do computation. I suggest referring to [Dask Distributed docs](https://distributed.dask.org/en/latest/) for additional details. Note that generally Dask-CUDA is merely a specialization of Dask Distributed workers, and specific features are described in the [Dask-CUDA docs](https://dask-cuda.readthedocs.io/en/latest/). username_0: I was also wondering about this since CuDF is on GPUs, isn't it possible to use NCCL underneath to do the communication component? username_1: No, Dask-CUDA/RAPIDS standard today is to use UCX-Py for communication: https://dask-cuda.readthedocs.io/en/latest/ucx.html . username_1: I think the original question has been answered, I'm tentatively closing this, @username_0 please feel free to reopen if there are follow-up questions or open a new issue. Status: Issue closed username_3: @username_0 I think it would be worth reading through the following post on for a more high level understanding of how all these pieces fit together: - https://medium.com/rapids-ai/high-performance-python-communication-with-ucx-py-221ac9623a6a - https://medium.com/rapids-ai/no-more-waiting-interactive-big-data-now-32f7b903cf41
conda-forge/ipywidgets-feedstock
1171317548
Title: consider noarch package? Question: username_0: ### Solution to issue cannot be found in the documentation. - [X] I checked the documentation. ### Issue There are no longer any python-version-specific dependencies, soooo.... @conda-forge-admin, please add noarch: python ### Installed packages ```shell ipywidgets >=7.7.0 ``` ### Environment info ```shell any ``` Status: Issue closed Answers: username_1: Yeah the other blocker was post-link scripts, but those have also been done away with. So shouldn't be an issue any more
fedeDosSantos/GDD_VAMONIUEL
457057616
Title: Pago de reservas, siempre devuelve DBNULL, debo arreglarlo para informar correctamente si se efectuo o no el pago Question: username_0: Pago de reservas, siempre devuelve DBNULL, debo arreglarlo para informar correctamente si se efectuo o no el pago Answers: username_0: https://stackoverflow.com/questions/1999020/handling-executescalar-when-no-results-are-returned ese link podría servir
brandondube/prysm
820173053
Title: Import/Export for Zemax Grid Phase and Sag ASCII Files Question: username_0: Hello, it would be grat to have such a feature in the io module. I already coded a bit but i am not such a good programmer and there are at some points some bugs. How can i contribute? I already read https://prysm.readthedocs.io/en/stable/contributing.html and forked prysm but i never did a project in github so far. So haw can i add my code? All the best Jakob Answers: username_1: This would certainly be a good feature to add! To add your code, please... - [ ] fork prysm - [ ] commit any changes in your fork (io.py) - [ ] if you can, add a sample file, with all the same process as your other comment on #7 - [ ] predicated on having a sample file, write at least one unit test. The minimum bar verifies that the code doesn't crash (say, `tests/test_io.py#test_zemax_gridphase_parser_functional()`). A nice test verifies something about the result is correct, say that the RMS and PV of the extracted data are as expected (pytest.approx is your friend here) Once you do those things, open a PR (pull request tab on username_1/prysm) and it can be reviewed for merge! username_0: Ok i am working on it just started to find my ways in in github and all the terminology :)
jupyter/notebook
116994831
Title: Integration with RELATE Question: username_0: I have written some online widgetry to support my classes. That system is called "RELATE", you can take a look here if interested: https://github.com/username_0/relate The basic "unit of teaching" there is called a "flow", and it presents a sequence of pages to the learner. What's on a page is pretty flexible--there are lots of options (multiple choice, python code, pdf submission, ...). The Python code submission experience could be better though, since every time a learner clicks "submit", a Docker container needs to be spun up, which leads to a 1-3 second delay, which is just enough to disrupt the nice "immediacy" that Python usually provides. It would be really slick (at least IMO) if a Jupyter notebook could be offered up as one of the page types, along with some server-side logistics to spin up the containers running the kernels. To my mind, Relate and Jupyter complement each other very nicely in a teaching setting. Relate's "run python" capability is basic, but it has a good story for authoring, data retention, access control to course content, and exam proctoring. Jupyter hits the opposite spot: It provides a great coding experience, but the classroom integration features are pretty basic. So a first, basic question from my side would be: How friendly is the Jupyter codebase towards being embedded on the server and client sides (Relate is Django on the server side, but that can proxy for any wsgi app. Websockets I don't know so much about, but I assume that's likely solvable, too.) A simple client-side integration story would be to just let Jupyter manage a whole page (or an iframe) and hook into its "save" functionality. For what it's worth, the use case I have in mind is ~200-300 students in a classroom, all hacking away in their own notebooks. As in, I'd like the fan-out to individual little Docker containers on a zoo of backends to happen at the web worker level, but the scale is such that it'd likely be tricky to maintain a worker process per logged-in user. I'd love to hear your thoughts on the feasibility of this. Also, if you're interested in devoting some resources to this, I'd love to chat--but that's not primarily what I'm asking about. Answers: username_1: Hi, Thanks, for writing all these things up. Probably out of order responses: 1) You might want to contact jupyter-education google group. People there might be also interested. 2) The current server is extensible, you can add tornado handler, but not super easy, we are planning on having things more pluggable, we are actively working on it, but it will not be there soon. 3) Yes you can embed, WSGI will likely not be enough for the notebook, that's why we have jupyterhub that can serve the notebook under one prefix, and other app under the other. It's based on a live http proxy that can update routing URLs without restart and without drooping websocket connexion. As far as we know there is not that many apps capable of doing that. [see there](https://developer.rackspace.com/blog/deploying-jupyterhub-for-education/) for detail. It can handle a few hundreds of people. 4) another alternative, we are working on is making notebook component reusable, so you might be able to just embed the part of Jupyter you like. You are likely to reach more people by writing to jupyter/jupyter-education google groups. I can't promise resources, that will likely be on a per-person basis if they decide to dedicate time on that. Various related project that might be useful to you: - mybinder.org - https://groups.google.com/forum/#!search/jupyter-education - https://groups.google.com/forum/#!search/jupyter - https://github.com/oreillymedia/thebe - https://github.com/jupyter/nbgrader - https://github.com/jupyter/jupyterhub username_0: Sent them a message, we'll see what happens. Thanks for the pointers so far. Status: Issue closed
imls-dmt/resources-workflow
511473256
Title: Tutorial for using the netCDF Data Curation Primer Question: username_0: Information about registered data management training resource - [ ] Date resource added: - [ ] Registered by: - [ ] Clearinghouse URL: https://dmtclearinghouse.esipfed.org/node/10452 Tracking: @karlbenedict @username_1 Answers: username_1: Changed URL to be the PID that was on the landing page. Added the PID to the identifier field of type Handle. Added keywords for "Data recipes for Earth science data" and "how-to data recipes". Changes the Learning Resource Type to "learning activity". Changed the media type to "Interactive Resource". Status: Issue closed
podsvirov/osgqtquick
227808116
Title: Changing the camera in a view Question: username_0: I tried to set a view's camera to a different one that I configured in C++, but it didn't work. I get a grey blank display. Also, for a custom HUD camera kind of object (to render axes), I tried to use the view's camera for, but again it causes some crashes. I'll probably need some help with understanding the issue and then resolving it. This issue may be similar to #13. I hope we can discuss this soon. Answers: username_0: Hi @username_1! I think that the issue may be with slave cameras in general for the current implementation. Any comments from you should be helpful. username_1: Hello @username_0, please test latest code from `develop` branch and write about the results. username_0: Sure Konstantin. I'm currently busy with something else, but I'll do that ASAP.
timani/argos
86447894
Title: 400 level error pages needed Question: username_0: See ~ line 44 as error pages are needed ``` location ~ /sites/default/files/.*\.php$ { - error_page 403 /php_in_valhalla.html; + error_page 403 /php_in_valhalla.html; # @TODO ```
cl-tohoku/showcase_miyawaki
557883501
Title: A Discriminative Approach to Japanese Zero Anaphora Resolution with Large-scale Lexicalized Case Frames Question: username_0: ## 1. どんなもの? (タスク) 述語項構造解析 (手法) - 格フレームを用いて,述語の格候補とテキスト中に出現した要素の対応づけを評価 - 対応づけ評価には対数線形モデルを用いる - 構文的選好として照応関係,語彙選好性として格フレームを素性とする モデルの提案というよりは,素性を増やした ## 2. 先行研究と比べてどこがすごい? ### 先行研究:Sasano and Kurohashi, 2006 語彙的選好(格フレーム)を用いた ZAR の確率モデル 1. 対象述語の格フレームを一つ選択 2. dep 関係にある談話要素を格フレームのスロットと対応づける 3. 対応しない格と,dep 関係にない談話要素との対応付けを ZAR として候補を生成 (識別モデルに基づく対応付けの評価) - 述語に対する格フレーム候補と談話要素の対応づけを確率的に評価 - 🙅‍♂️評価の際,**独立性を仮定し,語彙的選好および構文的選好を分解**,それら積を取ることで評価 - 分解するため,新たな素性(既存の素性と重複するような手がかりなど)の導入が困難 - 格の種類による重要性の違いを考慮できない(ガ格: 構文的手がかり,ヲ格: 語彙的手がかり) ### 提案手法 (識別モデルに基づく対応付けの評価) <img src="https://i.gyazo.com/06fd73211988ef1cb2d2a81e0bd164a0.png" alt="" title=""> ``` 重み Λ の線形層にかけられた,encoder F から出力されるベクトル F(•) に対して, 全ての取りうる cf, a に対して softmax 的なことを考える. ``` ## 3. 技術や手法のキモはどこ? ## 4. どうやって有効だと検証した? - Web テキストを対象とした実験 - 素性ごとの学習された重みや,素性ごとの ablation により,格ごとに有効となる素性の傾向を明らかにする - マージ格フレーム(述語における全ての語義をまとめて考慮)と通常の格フレームとの比較により,複数項の選好性における比較を行う ## 5. 議論はある? ## 6. 次に読むべき論文は?<issue_closed> Status: Issue closed
linterhub/schema
332346670
Title: Add external data sets for `collection` schema Question: username_0: Please add external data sets for `collection` schema. Data sets are consist of `language`, `license` and `manager`. Each schema used standard [`draft-06`](http://json-schema.org/specification-links.html#draft-6) `language` schemas are programming languages and associated extensions, consist of parts: | schema | description | | - | - | | `language.linguist.json` | all languages and associated extensions at [`linguist`](https://github.com/github/linguist) | | `language.linter.json` | custom languages and associated extensions for linter, which don't include in `linguist` | | `language.json` | defines a final collection as a composition of several sets | `license` schemas are software licenses names and acronyms, consist of parts: | schema | description | | - | - | | `license.spdx.json` | all software licenses names and acronyms at [`SPDX`](https://spdx.org/licenses/) | | `license.linter.json` | custom license and acronyms for linter, which don't include in `SPDX` | | `license.json` | defines a final collection as a composition of several sets | `manager` schemas are system and language package managers, consist of parts: | schema | description | | - | - | | `manager.package.json` | all packages manager of languages at [Wikipedia](https://en.wikipedia.org/wiki/List_of_software_package_management_systems) | | `manager.system.json` | all packages manager of systems at [Wikipedia](https://en.wikipedia.org/wiki/List_of_software_package_management_systems) | | `manager.json` | defines a final collection as a composition of several sets | Status: Issue closed Answers: username_0: done username_1: :tada: This issue has been resolved in version 1.0.0 :tada: The release is available on: - [GitHub release](https://github.com/linterhub/schema/releases/tag/v1.0.0) - [npm package (@beta dist-tag)](https://www.npmjs.com/package/@linterhub/schema) Your **[semantic-release](https://github.com/semantic-release/semantic-release)** bot :package::rocket:
taoqf/nools-ts
382236835
Title: No typescript unit tests Question: username_0: I suggest that some typescript unit tests be provided in order to verify port to typescript and to serve as guidance as to how this package may be called from typescript. Answers: username_1: Thanks for your report, pr is welcomed.
stylus/stylus
107177813
Title: s() function not working with +cache() Question: username_0: It looks like an issue with Stylus' s() function not recognizing if it's inside a media block and just printing out the CSS ```styl // styles .content width 70% // mobile devices +media('sm') // tablet devices width calc('100% - ' + em($photo-size)) ``` ```styl // calc mixin for prefix in vendors arguments = unquote(arguments) add-property(current-property[0], s('-%s-calc(%s)', prefix, arguments)) s('calc(%s)', arguments) ``` This cache implementation was copied over from http://kizu.ru/en/issues/new-stylus-features/ ```styl // Mixin for caching the blocks with the given conditions media($condition) helper($condition) unless $media_cache[$condition] $media_cache[$condition] = () push($media_cache[$condition], block) +helper($condition) {selector() + ''} {block} // Function we would use to call all the cached styles apply_media_cache() for $media, $blocks in $media_cache $media = unquote($media_aliases[$media] || $media) $media = '(%s)' % $media unless match('\(', $media) $media = 'only screen and %s' % $media @media $media for $block in $blocks {$block} ``` Resulting in: ```css .content width: 70%; width: -webkit-calc(100% - 8.928571428571429em); width: -moz-calc(100% - 8.928571428571429em); width: -ms-calc(100% - 8.928571428571429em); ``` When it should be ```css @media (…'sm' size…) .content width: -webkit-calc(100% - 8.928571428571429em); // etc… ``` Answers: username_1: I can't reproduce this. See http://codepen.io/anon/pen/wKGxXw (everything is working fine). Status: Issue closed username_1: Try to update Stylus version.
symfony/symfony
159572996
Title: Improve error when a template extends from itself Question: username_0: As reported here https://github.com/symfony/symfony-installer/issues/258 if one of your templates extends by mistake from itself, you get a brutal "Segmentation fault" error instead of an informative error message. Would be easy to add this check somewhere and avoid this situation? Thanks! Answers: username_1: I'm sorry but segfault are not our duty... Status: Issue closed username_2: I don't agree. Here, the user made a mistake in the PHP code by using a template that extends itself. That being said, I think we already had some similar reports and we did not find an easy/simple and fast way to do a check. username_2: ... which would be a Twig issue anyway.
ArkEcosystem/core
655718853
Title: Some transactions in `/transactions/${id}` don't return timestamp Question: username_0: This is a follow-up issue on https://github.com/ArkEcosystem/core/issues/3759 which was fixed by https://github.com/ArkEcosystem/core/pull/3761 , specifically on `/transactions` endpoints. But it seems like the `/transactions/${id}` endpoint also has the issue (some transactions don't return timestamp on it).<issue_closed> Status: Issue closed
transloadit/uppy
1086024241
Title: Typescript 4.3.x - Question: username_0: Since Angular12 Migration (Version 12.2.14) I unfortunatly got this error on drag and drop a file to the upload area. _this$opts2.onDragOver is not a function TypeError: _this$opts2.onDragOver is not a function at DragDrop.handleDragOver (http://localhost:4500/vendor.js:128478:64) at HTMLButtonElement.I (http://localhost:4500/vendor.js:222869:22) ![image](https://user-images.githubusercontent.com/36970409/146966676-9a5c3dc4-3bc7-41fe-99f8-95ebb91aaad6.png) It was not appearing with Angular 11 . The normal upload is working but not the drag and drop feature. Tested in Chrome, Edge and Firefox I am using the following libs: "@uppy/core": "~2.1.4", "@uppy/drag-drop": "~2.0.5", "@uppy/xhr-upload": "~2.0.5", Any ideas? Status: Issue closed Answers: username_1: I'm seeing this same error after updating to the same versions of core and drag-drop. What do you mean by adding the events manually? username_0: @username_1 I extended the Drag-And-Drop-Config like that: ```typescript }).use(DragDrop, { target : this.uploaderId, width : '100%', height : '100%', onDragOver: (event) => event.clientX, onDragLeave: (event) => event.clientY, onDrop: (event) => event, }).use(XHRUpload, {............... ``` Adding this to the DragDrop Plugin Config fixed this issue for me but i am not sure if its a problem at all or not onDragOver: (event) => event.clientX, onDragLeave: (event) => event.clientY, onDrop: (event) => event, username_2: @username_3 @arturi looks like this line might not be transpiled correctly. https://github.com/transloadit/uppy/blob/87c716a26559af3ea437c50fe09babf6557323cd/packages/%40uppy/drag-drop/src/index.js#L113 In the screenshot above the null check seems to be against the entire `opts` object instead of the function. username_2: Since Angular12 Migration (Version 12.2.14) I unfortunatly got this error on drag and drop a file to the upload area. _this$opts2.onDragOver is not a function TypeError: _this$opts2.onDragOver is not a function at DragDrop.handleDragOver (http://localhost:4500/vendor.js:128478:64) at HTMLButtonElement.I (http://localhost:4500/vendor.js:222869:22) Screenshot from libary code where the error appears: ![image](https://user-images.githubusercontent.com/36970409/146966676-9a5c3dc4-3bc7-41fe-99f8-95ebb91aaad6.png) It was not appearing with Angular 11 . The normal upload is working but not the drag and drop feature. Tested in Chrome, Edge and Firefox I am using the following libs: "@uppy/core": "~2.1.4", "@uppy/drag-drop": "~2.0.5", "@uppy/xhr-upload": "~2.0.5", Any ideas? username_3: I think the transpilation is correct, but instead of `this.opts?.onDragOver(event)` we should be doing `this.opts.onDragOver?.(event)`, probably a typo that slip through the code review in https://github.com/transloadit/uppy/pull/2449. Status: Issue closed
ddollar/foreman
671710890
Title: About error when debugging Ruby using Vscode: Question: username_0: About error when debugging Ruby using Vscode: Good afternoon my friends Who can help I'm trying to debug an application using Vscode but an error is being generated As per images https://drive.google.com/file/d/1GvQfJhf8WSbvIKecCLCpKcN3hglqs0pQ/view?usp=sharing I created in the workspace some releases The IDE starts the application, until I show the return in chrome The problem is that the variable pointed at the breakpoint is not being returned Can anyone help?<issue_closed> Status: Issue closed
Angeschossen/Lands
810513041
Title: Bluemap integration failure Question: username_0: I have installed Bluemap and it is running correctly. I the following in console `[Lands] [Integrations] Successfully integrated BlueMap into web system.` Which is then occasionally but not always followed by `[Lands] Could not synchronize lands to BlueMap, because BlueMap doesn't seem to be enabled properly.` Lands does not appear in the side bar for bluemap Current version is 5.1.13 Running on 1.16.5 paper 445 Answers: username_0: Fixed with release 5.1.14 Status: Issue closed
brotherlogic/filecopier
1052084041
Title: Copy Error Question: username_0: [floppy] Error on copy: Warning: Permanently added the ECDSA host key for IP address '192.168.86.111' to the list of known hosts. (dev:/media/scratch/buildserver/builds/github.com/username_0/filecopier/filecopier-49872f361ecf8919d474035f62870cac -> /home/simon/gobuild/bin/filecopier.new)<issue_closed> Status: Issue closed
oslokommune/bydelsfakta
454610417
Title: [BUG] Off-by-one error on time series highlighting Question: username_0: **Description** When viewing a time series and clicking a label to highlight the series, the wrong one gets highlighted when in `method: 'value'` (antall). **To Reproduce** Steps to reproduce the behavior: 1. Go to `/bydel/gamleoslo/bygningstyper` 2. Click on 'Historisk (antall)' tab for the Blokker og leiegårder card. 3. Click on a label on the right hand side. 4. See error **Expected behavior** The clicked series should get highlighted. **Desktop (please complete the following information):** - OS: [e.g. iOS] - Browser [e.g. chrome, safari] - Version [e.g. 22] **Smartphone (please complete the following information):** - Device: Macbook Pro - OS: OS X 10.14.4 - Browser: Chrome 74 **Additional context** This bug seems only to be present on `Template B` and not `Template C`.<issue_closed> Status: Issue closed
sigalor/whatsapp-web-reveng
389636667
Title: issue with Contacts Question: username_0: Contacts Response of connection is giving.. ``` ['user', { 'index': 'J', 'jid': '<EMAIL>', 'short': 'xxxxxx', 'notify': 'xxxxx', 'name': 'xxxxxx' }, None], ``` **Issue:** jid is having 9 digits except country code Answers: username_1: What's the issue about that? username_0: Last digit of every contact number is missing. username_2: Is there are a solution for this as yet? Does it have to do with binary decryption which is happening in python? username_2: Hey, I have fixed this in a fork. You can check out arunrrreddy/whatsapp-web-reveng. I have made a bunch of other changes to debug the messageTimestamp issue, therefore, cannot start a pull request. The file you are interested in would be the whatsapp_web_writer.py username_0: @username_2 Can you post the Changes? or link to changes for understanding purpose ! Thanks ! username_2: checkout https://github.com/username_2/whatsapp-web-reveng/commit/cf4a146af4bd654ddd417a5965bf90d136c8f678 for the changes Status: Issue closed
stax76/OpenWithPlusPlus
589572573
Title: Some boxes are missing Question: username_0: As you can see below, some interface options are missing, like "Show in sub menu", "Show for directories", "Run as admin" and "Run hidden". ![OpenWithPPGUI](https://user-images.githubusercontent.com/62797112/77823053-f2f9f080-70d6-11ea-96b4-7c2daf0f8120.png) In addition, the program window is also shown a bit small on my screen and there is no way to resize it. Is there any possible reason for this? Great tool, by the way. Thanks for that. Answers: username_1: What OS, resolution and DPI zoom do you have? username_0: OS: Windows 10 Pro x64 Resolution: 1366x768 DPI: 100 It's a laptop. username_1: Please try version 3.4.0.0 and close the issue if it works. https://github.com/username_1/OpenWithPlusPlus/releases username_0: Version 3.4.0.0 is working perfectly! Thanks a lot. Closing. Status: Issue closed username_0: I won't reopen the bug because they're unrelated, but I think it's pertinent to comment that I found a bug in version 3.4.0.0. ![OpenWithPPGUI](https://user-images.githubusercontent.com/62797112/77852040-d7641800-71b2-11ea-8161-3edbc7001f49.png) As you can see above, the icon field turns red when you select the desired icon after detection. In this case, after confirmation, no icon is shown in the right-click context menu. But if while the red field is shown, I delete the "0" and put it manually works as it should. It's not critical, but you might want to take a look at it. Thank you. username_1: Please try 3.5.0.0. username_0: It's solved. Thanks.
DevExpress/testcafe
563428380
Title: Tests fail when run together via cmdline, pass when run with individual js files Question: username_0: 27 |}); 28 | 29 |//Verify that on clicking the TO date field, a calendar widget should open 30 |test('VerifyToDatePicker', async t => { at <anonymous> (C:\Git\RQE.VA_Azure\TestSuite\Group_EventAttendance\TestCase\VerifyDatePicker.js:25:10) √ VerifyToDatePicker 3/14 failed (2m 55s) ``` </details> <details> <summary>Screenshots:</summary> <!-- If applicable, add screenshots to help explain the issue. --> ``` ``` </details> ### Steps to Reproduce: <!-- Describe what we should do to reproduce the behavior you encountered. --> ### Your Environment details: * testcafe version: 1.8.1 * node.js version: 6.13.6 * command-line arguments: "testcafe chrome:headless TestSuite\**\*" * browser name and version: Chrome 75.0.3770.80 * platform and version: Windows 10 * other: I added the afterEach local storage clearance to the fixture, but the tests still fail when they are run as a group. If i type testcafe chrome:headless headers.js, all pass. ![2020-02-11_11-08-32](https://user-images.githubusercontent.com/49650750/74271783-59ab8200-4cc2-11ea-93fb-152c296df523.png) Answers: username_1: @username_0 Hello, This information is not sufficient to reproduce the issue. As far as I understand, the issue may occur when you start running your test. I suggest you use some timeouts in this case: 1. [`option.timeout` in the problematic `Selector`](https://devexpress.github.io/testcafe/documentation/test-api/selecting-page-elements/selectors/selector-options.html#optionstimeout) 2. [Page load timeout](https://devexpress.github.io/testcafe/documentation/test-api/test-code-structure.html#setting-page-load-timeout) If it doesn't resolve the "... the specified selector does not match any node in the DOM tree" error, you can share a small project with us or a public URL. We will examine it and check for a suitable solution. username_0: @username_1 I will try this tomorrow and let you know how it goes. Thanks for the support! 👍 username_0: We are still having the issue even with the timout options enabled. We have gotten around this by running multiple scripts with the test: tag when our CI Pipeline calls npm test. username_0: Edit: running two testcafe commands still gives us the same error. When I run the individual file manually, it passes. If its part of a group run, it fails. username_0: Final update, I am able to tag -q and succesfully test. The three appear to past but are tagged as unstable Status: Issue closed
WEC-Sim/WEC-Sim
650210651
Title: Paraview Question Question: username_0: Hi, We were trying out Paraview visualization which we have not done for awhile, and had a **question.** Does the writing of the Paraview files typically take a long time? There does not seem to be any other errors we can see, and files are being written to the directory but it seems to be taking awhile (relative to the WecSim solution time), say over an hour to write the files using a 0.2 second output time step for a 240 second WecSim simulation. We have not run anything in Paraview yet, but wanted to check if this is normal or not, or if there are things we should change to improve this. Best, Alex Answers: username_1: @username_0 unfortunately, yes writing the Paraview files at each time step does slow down the simulation substantially. Fortunately, there are some new `simulationClass` options submitted in PR #355 and merged in f55c5fb93a71391bd5762111ccc6bd51da96b6e7 that should speed up the `write_paraview` methods. You can now specify the time-steps you would like to write ParaView VTP files for, and specify start and end times: http://wec-sim.github.io/WEC-Sim/api.html#source.objects.simulationClass.dtParaview http://wec-sim.github.io/WEC-Sim/api.html#source.objects.simulationClass.StartTimeParaview http://wec-sim.github.io/WEC-Sim/api.html#source.objects.simulationClass.EndTimeParaview username_0: @username_1, Thanks for the quick response, it is helpful we just wanted to make sure there wasn't something else going on. Best, Alex Status: Issue closed username_1: @username_0 nothing else going on, writing those files is just slow.
haxsaw/actuator
43334925
Title: Improve error reporting from underlying provisioning system. Question: username_0: Currently, bad returns from underlying provisioning systems such as Openstack aren't handled very well. A better general error reporting system needs to be introduced and better use of it must be made from any actuator provisioner object. Answers: username_0: The initial comment had to do with provisioning, but there's lots of room for improvement across the board: - attribute processing that runs into trouble should provide the name of the attr and the path to the object that attr is on - stack traces should be made available but shouldn't be the first thing that appears - a clean, informative message without a traceback should be shown for any kind of error - log messags should have the task id and the path to the task as well And more as this goes forward.
nwolek/audiomoth-scripts
726922254
Title: remove extra word "slide" Question: username_0: Not sure why I added the word "slide" here: https://github.com/username_0/audiomoth-scripts/blob/master/make-spectrogram-movie.sh#L34 This creates files with and without text, and prevents the text from showing up in the movies.
google/flatbuffers
119230662
Title: https://github.com/google/flatbuffers/issues/598 Question: username_0: 888..959..6787. avast tech support number 888..959..6787. avast technical support phone number 888..959..6787 @ avast technical support number 888..959..6787 @@@ avast support phone number 888..959..6787 @@@ avast support number 888..959..6787 avast tech support phone number 888..959..6787. avast technical support number 888..959..6787. avast technical help phone number 888..959..6787 @ avast helpline phone number 888..959..6787 avast phone number 888..959..6787 avast support number 888..959..6787 avast support phone number ##1-888-959-6787## avast customer service phone number### ##1-888-959-6787## avast service phone number### 888..959..6787. avast tech support number 888..959..6787. avast technical support phone number 888..959..6787 @ avast technical support number 888..959..6787 @@@ avast support phone number 888..959..6787 @@@ avast support number 888..959..6787 avast tech support phone number Services We Offer Call now @ 888..959..6787 @ ### If you are seeking urgent avast technical support, our certified technicians are available 24/7 to help you and resolve your issues resolved immediately. Some of our services include:- Call now @ 888..959..6787 To setup or install new or old avast Call now @ 888..959..6787 To Install drivers and filling toner cartridge Call now @ 888..959..6787 Latest driver software upgrade for avast Call now @ 888..959..6787 Fixing spooling errors and other general issues related to avast Call now @ 888..959..6787 Fixing Connectivity issue Call now @ 888..959..6787 Fixing Carriage Jams Issues Call now @ 888..959..6787 Configuring Network avast Connection to Operating system Call now @ 888..959..6787 Optimizing avast Software for better performance Call now @ 888..959..6787 You may get different technical issue every time but our expert technician are able to understand your issue and resolve it within no time. Do not hesitate to call us if you have any technical issue related to software and hardware of your avast or lexmark avast support. Call now @ 888..959..6787 # Incompatibility issues related to softwares or drivers Call now @ 888..959..6787 ## avast Support Call now @ 888..959..6787 # avast jamming issues Call now @ 888..959..6787 # Upgrading avast driver with latest version Call now @ 888..959..6787 avast configuration issues Call now @ 888..959..6787 Data error Call now @ 888..959..6787 Memory full error Call now @ 888..959..6787 Blank Screen issues Call now @ 888..959..6787 avast’s Overheating issue Call now @ 888..959..6787 Connectivity Error messages Call now @ 888..959..6787 Slow printing speed Call now @ 888..959..6787 Low Quality printing Call now @ 888..959..6787 Issues related to printing images Call now @ 888..959..6787 avast is not responding Call now @ 888..959..6787 Automatically shut down while giving printing commands Errors while printing from Web browser
sportstimes/f1
838659024
Title: Need some new strings for F2, F3, Formula E, W Series for translate Question: username_0: Need some new strings for F2, F3, Formula E, W Series for translate (Race names) And maybe for Selector (F1, .... W Series) ![image](https://user-images.githubusercontent.com/5231223/112143784-2f80ff00-8bfa-11eb-9353-61a73ad1aa55.png)<issue_closed> Status: Issue closed
EvertonQuadros/br.edu.ifrs.restinga.Evoevent
185649173
Title: RF011_T08: Realizar testes para validar a implementação da funcionalidade Question: username_0: Realizar os testes necessário, inclusive validando a parte de visualização da página em busca de erros, o teste se faz necessário em diferentes resoluções também e se possível nos computadores do laboratório onde faremos a demonstração aos professores.
elsiklab/multibigwig
428411480
Title: No fill option Question: username_0: I love this track and was wondering, normal XYplot defaults to "noFill": false, is there anyway to implement that in this track? Answers: username_1: So you are looking to actually use filled histograms is that correct? It is not implemented currently but I'm fairly sure it would not be that difficult username_1: I am guessing sort of that this would include alpha transparency for overlapping things. Not sure if the alpha transparency should be manually specified by the user in their config or automatically calculated username_0: Yes, filled histograms. I actually hadn't thought about the transparency since my features do not overlap, but I imagine automatically calculated alpha transparency might work best or at least that seems to be the case for the UCSC layered histone track. username_1: Apparently this already exists, was a contributio by @keiranmraine ``` [tracks.multibigwigxynoncont] key=RNA-seq BigWig XY Non-Cont type=MultiBigWig/View/Track/MultiWiggle/MultiXYPlot style.height=100 storeClass=MultiBigWig/Store/SeqFeature/MultiBigWig max_score=400 autoscale=global colorizeAbout=true urlTemplates+=json:{"url":"volvox_microarray.bw", "name": "volvox_positive", "color": "#235", "nonCont": true, "fill": true} urlTemplates+=json:{"url":"volvox_microarray_negative.bw", "name": "volvox_negative", "color": "#a54", "nonCont": true, "fill":true} ``` Requires setting both nonCont: true and fill: true username_0: This is great! Thank you SO MUCH! Status: Issue closed
AlexLittlejohn/ALCameraViewController
332628033
Title: Fatal error on ALCameraViewController Question: username_0: Hello, after installing ALCamera with cocoapods. I test it and this show me this error... And idea ? Thanks ![2018-06-15 04 34 45](https://user-images.githubusercontent.com/40283743/41447433-88b58c44-7055-11e8-9762-b1dfe8f75b88.png)
facebook/react
318080578
Title: Styles via className not reflected in print Question: username_0: **Do you want to request a *feature* or report a *bug*?** Not 100% sure, but might be a bug (or just something I'm not doing right). Been trying to get assistance from Stack Overflow, but not getting anywhere: https://stackoverflow.com/questions/50032041/react-component-loses-formatting-related-to-classname-when-printing-triggered-fr https://stackoverflow.com/questions/30135387/how-to-print-react-component-on-click-of-a-button/?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qa **What is the current behavior?** Trying to print content that is in a modal, but external styles (via `className`) are not being passed to it when the print dialog preview is up. However, when done in line (e.g., `style={{ color: 'red' }}`) the styles are reflected. **If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem. Your bug will get fixed much faster if we can run your code and it doesn't have dependencies other than React. Paste the link to your JSFiddle (https://jsfiddle.net/Luktwrdm/) or CodeSandbox (https://codesandbox.io/s/new) example below:** I have a repo of use case with directions. I'll work on migrating it to JSFiddle or CodeSandbox if that is better. https://github.com/username_0/react-print-iframe-issue **What is the expected behavior?** I should still see the styles being applied when using external CSS via `className` when going to print. Everything seems to indicate this should work, so that is why I'm thinking a potential bug possibly...? **Which versions of React, and which browser / OS are affected by this issue? Did this work in previous versions of React?** React 16.2.0, using Chrome 65.0.3325.181. Not sure if it worked in previous versions as I have just started on this feature of the web app. Status: Issue closed Answers: username_1: Sorry for closing but I don't think there's any reason to believe this has to do with React. I'd encourage you to try this with vanilla DOM APIs. React just sets the `class` attribute so if that is broken for some reason, there's nothing React can do to fix it.
squeek502/SpiceOfLife
53221533
Title: TC Manabean bug Question: username_0: Hello I use RR modpack and if i have your spice of life mod i cant plant manabeans. "always want to eat them" i know i think how to solve this problem , default whitelist the manabean maybe? becuse idk how to add this for black/whitelist for ignore manabean becuse this not a food. Answers: username_1: What version of Minecraft? username_0: SPICEOFLIFE-MC1.7.10-1.2.3.jar 1.7.10 and Resonant Rise 3.2.1.0 pack username_1: Will look into it. Status: Issue closed username_0: you can close this topic we solved the problem, username_1: What was the problem? username_0: The Human stupidity... iam the server owner and i asked 2 times how to used the manabeans and others tell me whats the problem , and my bad i not tested ...
darkcrux/consul-skipper
59594019
Title: Issues with locks not being released when the leader is down Question: username_0: Maybe we need to use LockDelay and TTL for sessions. Answers: username_1: I think in the longer run, consul-skipper should add support for – TTL and Checks. The benefit of adding Checks to the session is that it takes the burden out of consul-skipper to renew the session; consul will invalidate the session if the checks fail. However, I think TTL provides a better abstraction to clients as they don't have to register a consul check. What do you say? username_2: I just discovered this project but quickly ran into the issue with stale leader when the application is killed without resigning. :+1: for adding support for TTL. username_3: +1
biosemantics/matrix-generation
301104610
Title: empty column in matrix Question: username_0: [Hong_especies.xlsx](https://github.com/biosemantics/matrix-generation/files/1768046/Hong_especies.xlsx) [EFlower_output_by_TC_task_Eflower_species1.zip](https://github.com/biosemantics/matrix-generation/files/1768047/EFlower_output_by_TC_task_Eflower_species1.zip) Lorena sent the issue with files.
tkaczmarzyk/specification-arg-resolver
712920171
Title: NPE in specification Question: username_0: I'm experiencing the exact problem as #76 . I tried the workaround he implemented but still I get an NPE. I'm working in Kotlin 1.4 and SpringBoot 2.3.4. Please help. Answers: username_1: Hi @username_0. Which version of `specification-arg-resolver` are you used in your project? Please provide full stacktrace. username_0: Hi @username_1 Thanks for the quick reply. I am using version 2.6.2 stacktrace pasted below. ``` 2020-10-01 21:01:00.290 ERROR 3944 --- [nio-8000-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NullPointerException: Parameter specified as non-null is null: method com.g10.lcarro.project.online.OnlineCourseController.list, parameter specification] with root cause java.lang.NullPointerException: Parameter specified as non-null is null: method com.g10.lcarro.project.online.OnlineCourseController.list, parameter specification at com.g10.lcarro.project.online.OnlineCourseController.list(Controllers.kt) ~[main/:na] at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na] at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na] at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na] at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na] at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) ~[spring-web-5.2.9.RELEASE.jar:5.2.9.RELEASE] at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) ~[spring-web-5.2.9.RELEASE.jar:5.2.9.RELEASE] at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:105) ~[spring-webmvc-5.2.9.RELEASE.jar:5.2.9.RELEASE] at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:878) ~[spring-webmvc-5.2.9.RELEASE.jar:5.2.9.RELEASE] at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:792) ~[spring-webmvc-5.2.9.RELEASE.jar:5.2.9.RELEASE] at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.2.9.RELEASE.jar:5.2.9.RELEASE] at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1040) ~[spring-webmvc-5.2.9.RELEASE.jar:5.2.9.RELEASE] at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943) ~[spring-webmvc-5.2.9.RELEASE.jar:5.2.9.RELEASE] at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.2.9.RELEASE.jar:5.2.9.RELEASE] at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) ~[spring-webmvc-5.2.9.RELEASE.jar:5.2.9.RELEASE] at javax.servlet.http.HttpServlet.service(HttpServlet.java:645) ~[javax.servlet-api-4.0.1.jar:4.0.1] at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.2.9.RELEASE.jar:5.2.9.RELEASE] at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) ~[javax.servlet-api-4.0.1.jar:4.0.1] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) ~[tomcat-embed-core-9.0.38.jar:9.0.38] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.38.jar:9.0.38] at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.38.jar:9.0.38] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.38.jar:9.0.38] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.38.jar:9.0.38] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:103) ~[spring-web-5.2.9.RELEASE.jar:5.2.9.RELEASE] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.38.jar:9.0.38] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.38.jar:9.0.38] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:320) ~[spring-security-web-5.3.4.RELEASE.jar:5.3.4.RELEASE] at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:126) ~[spring-security-web-5.3.4.RELEASE.jar:5.3.4.RELEASE] at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:90) ~[spring-security-web-5.3.4.RELEASE.jar:5.3.4.RELEASE] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) ~[spring-security-web-5.3.4.RELEASE.jar:5.3.4.RELEASE] at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:118) ~[spring-security-web-5.3.4.RELEASE.jar:5.3.4.RELEASE] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) ~[spring-security-web-5.3.4.RELEASE.jar:5.3.4.RELEASE] at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137) ~[spring-security-web-5.3.4.RELEASE.jar:5.3.4.RELEASE] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) ~[spring-security-web-5.3.4.RELEASE.jar:5.3.4.RELEASE] at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111) ~[spring-security-web-5.3.4.RELEASE.jar:5.3.4.RELEASE] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) ~[spring-security-web-5.3.4.RELEASE.jar:5.3.4.RELEASE] at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:158) ~[spring-security-web-5.3.4.RELEASE.jar:5.3.4.RELEASE] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) ~[spring-security-web-5.3.4.RELEASE.jar:5.3.4.RELEASE] at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) ~[spring-security-web-5.3.4.RELEASE.jar:5.3.4.RELEASE] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) ~[spring-security-web-5.3.4.RELEASE.jar:5.3.4.RELEASE] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:103) ~[spring-web-5.2.9.RELEASE.jar:5.2.9.RELEASE] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) ~[spring-security-web-5.3.4.RELEASE.jar:5.3.4.RELEASE] at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116) ~[spring-security-web-5.3.4.RELEASE.jar:5.3.4.RELEASE] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) ~[spring-security-web-5.3.4.RELEASE.jar:5.3.4.RELEASE] at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:92) ~[spring-web-5.2.9.RELEASE.jar:5.2.9.RELEASE] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) ~[spring-web-5.2.9.RELEASE.jar:5.2.9.RELEASE] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334) ~[spring-security-web-5.3.4.RELEASE.jar:5.3.4.RELEASE] at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:92) ~[spring-security-web-5.3.4.RELEASE.jar:5.3.4.RELEASE] [Truncated] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) ~[spring-web-5.2.9.RELEASE.jar:5.2.9.RELEASE] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.38.jar:9.0.38] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.38.jar:9.0.38] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) ~[tomcat-embed-core-9.0.38.jar:9.0.38] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.38.jar:9.0.38] at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.38.jar:9.0.38] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) ~[tomcat-embed-core-9.0.38.jar:9.0.38] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.38.jar:9.0.38] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.38.jar:9.0.38] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) ~[tomcat-embed-core-9.0.38.jar:9.0.38] at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) ~[tomcat-embed-core-9.0.38.jar:9.0.38] at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.38.jar:9.0.38] at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) ~[tomcat-embed-core-9.0.38.jar:9.0.38] at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) ~[tomcat-embed-core-9.0.38.jar:9.0.38] at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.38.jar:9.0.38] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) ~[na:na] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) ~[na:na] at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.38.jar:9.0.38] at java.base/java.lang.Thread.run(Thread.java:834) ~[na:na] ``` username_0: This is my function ``` @GetMapping fun list(@RequestParam(defaultValue = "1") page: Int, @RequestParam(defaultValue = "10") size: Int, @RequestParam(defaultValue = "id") sortBy: String, specification: OnlineCourseSpecification, request: HttpServletRequest): PaginatedResponse<OnlineCourse> { ..... } ``` username_1: I guess that NPE had been thrown because there were no parameters in the request. For example, consider following endpoint: ```kotlin @GetMapping("/sar102/customers") fun findProvidersByIdAndName( @Spec(path = "name", spec = Like::class) spec: Specification<Customer>): List<Customer> { return repo.findAll(spec); } ``` Valid request (with `name` param): ```kotlin @Test fun requestWithParam() { mockMvc.perform(get("/sar102/customers") .param("name", "Homer")) .andExpect(status().isOk()) .andExpect(jsonPath("$[0]").exists()) } ``` Invalid request (without `name` param): ```kotlin @Test fun requestWithParam() { mockMvc.perform(get("/sar102/customers")) .andExpect(status().isOk()) .andExpect(jsonPath("$[0]").exists()) } ``` produces following stactrace: ``` org.springframework.web.util.NestedServletException: Request processing failed; nested exception is java.lang.IllegalArgumentException: Parameter specified as non-null is null: method com.example.specargresolverdemo.CustomerController.findProvidersByIdAndName, parameter spec at javax.servlet.http.HttpServlet.service(HttpServlet.java:634) at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) .... .... Caused by: java.lang.IllegalArgumentException: Parameter specified as non-null is null: method com.example.specargresolverdemo.CustomerController.findProvidersByIdAndName, parameter spec ``` Please define required params in endpoint definition, for example if your specification requires params: `courseName` and `courseId, endpoint definition should look like follows: ```kotlin @GetMapping(params = ["courseName", "courseId"]) fun list(@RequestParam(defaultValue = "1") page: Int, @RequestParam(defaultValue = "10") size: Int, @RequestParam(defaultValue = "id") sortBy: String, specification: OnlineCourseSpecification, request: HttpServletRequest): PaginatedResponse<OnlineCourse> { ..... ..... ..... } ``` username_0: Thanks @username_1 I will try this and get back to you. username_0: Hi @username_1 I made the specification `nullable `in my function and traced the path step by step in debug mode. It worked perfectly fine and the `courseRepository `returned results as expected. I didn't want to add `params `to `@GetMapping` because it's an optional parameter. Although my response is a `{}` instead of my response template `{"data":[]}` but I think that's something related to Spring Framework and not this library. This issue does not happen in Java though. Thanks for the support and the detailed explanation. Appreciate the help. Status: Issue closed
devssa/onde-codar-em-salvador
794456439
Title: [SEGURANCA] [REMOTO] [CONSULTOR] Consultor de Segurança da Informação II - SIEM na [TEMPEST] Question: username_0: <!-- ================================================== POR FAVOR, SÓ POSTE SE A VAGA FOR PARA SALVADOR E CIDADES VIZINHAS! Use: "Desenvolvedor Front-end" ao invés de "Front-End Developer" \o/ Exemplo: `[JAVASCRIPT] [MYSQL] [NODE.JS] Desenvolvedor Front-End na [NOME DA EMPRESA]` ================================================== --> ## Descrição da vaga - Fazer parte do time do SOC, atuando na gestão de conteúdo de SIEM. - Responsabilidades: - Definir e atualizar inteligência de Monitoramento - Documentar regras e conteúdos - Apoiar a área de Segurança da Informação na elaboração de processos relacionados a gestão de riscos identificando vulnerabilidades em processos ou tecnologias - Interagir com as áreas de sustentação para propor novas fontes de monitoramento - Contribuir com o time em ações de melhoria dos processos gerais de segurança. ## Local - Remoto ## Benefícios - Oportunidade de desempenhar um papel-chave no crescimento da Tempest - Trabalhar com um time que não descansa até alcançar o melhor resultado - Remuneração Variável: - PLR (Participação nos Lucros e Resultados): até 01 salário/ano de acordo com a política de apuração - MFT (Meta sob Faturamento Trimestral): até 01 salário/ano, de acordo com a política de apuração - Benefícios de direito: auxílio-saúde (50% custeado pela empresa) auxílio-odontológico (100% custeado pelo titular), vale-transporte, vale-refeição e auxílio-creche conforme Convenção Coletiva - Benefícios flexíveis: auxílio-alimentação, auxílio-refeição, auxilio-saúde, auxílio-odontológico, subsídio para capacitação, vale-combustível, vale-cultura e vale-academia, os quais poderão ser distribuídos de acordo com cada pontuação - O local de trabalho foi pensado para abraçar o seu crescimento, disponibilizamos café, capuccino, chocolate quente, refrigerante, suco, frutas e bolachas são algumas das regalias que ficam disponíveis o dia inteiro para os colaboradores ## Requisitos - Formação em Ciência da Computação/Engenharia da Computação/Segurança da Informação ou áreas correlacionadas - Experiência na solução de SIEM (Qradar, Sentinel e SPlunk) - Linguagem de programação, shell script, intregração e automação de processos/tarefas - Experiência em resposta a incidentes, investigações, gerenciamento de vulnerabilidades e atualizações, investigação de logs - Experiência em Construção de casos de uso SIEM, criação de Dashboards - Experiência da documentação de Runbook para casos de uso - Conhecimento em Arquitetura de Segurança e elementos de proteção (Firewall, IPS, WAF, Endpoint Protection e etc.). - Experiência com arquitetura e implantação do QRadar; - Experiência com capacity e health de ambientes QRadar; - Experiência com criação e manutenção de automações envolvendo QRadar; - Experiência com integração das APIs do QRadar; - Experiência com expressões regulares; - Experiência com criação de queries, regras, relatórios, dashboards e tunning em QRadar; - Experiência com relatórios técnicos e documentação do QRadar; - Experiência com atendimento e resposta a incidentes; - Experiência com investigação e hunting; - Experiência em contrução de casos de uso de SIEM. - Experiência em contrução de runbooks para os casos de uso. - Trabalho em grupo, proatividade, trabalho sob pressão, resiliência, senso crítico, atitude de dono, desejo de aprender cada vez mais, inovar e busca pela excelência ## Contratação - a combinar ## Nossa empresa - Fundada em 2000, a Tempest nasceu como uma startup incubada no Porto Digital do Recife, um dos principais e mais avançados polos de tecnologia do País. Referência pela expertise técnica, integridade, maturidade operacional e capacidade de entrega, a Tempest ampliou seu portfólio quando adquiriu a EZ-Security, em fevereiro de 2018, e passou a oferecer também a integração de produtos de tecnologia em cibersegurança, tornando-se a maior companhia de proteção digital para a viabilização de negócios no Brasil, com 280 funcionários e vasta lista de clientes no Brasil e exterior, atendidos a partir dos escritórios de Recife, São Paulo, Rio de Janeiro e Londres ## Como se candidatar - [Clique aqui para se candidatar](https://jobs.kenoby.com/tempest/job/consultor-de-seguranca-da-informacao-ii-siem/5f761877f88d2166698dfce7?utm_source=website)
dobtco/jquery-resizable-columns
151476051
Title: Failed working with ReactJS when column is dynamically updated Question: username_0: I need to use this plugin in reactJS, in which, user has option to use column chooser to update columns. When the app is initially loaded, the resizer worked fine, but when user changed columns, adding new columns, or remove old columns, the resizer failed to work. I already put this: ` componentDidUpdate: function(){ $(this.refs.jnprPlainDataTable).resizableColumns({ }); },` Still no effect. Guessing some events binding still exists. How can I remove all the old event binding and rebind events or just refresh? Thanks
desktop/desktop
445087923
Title: Issue autocomplete popover is below line selections and co-authors placeholders Question: username_0: ## Description If my diff is long enough to get down past the commit message and then I type `#` to autocomplete an issue, then the line selection is on top of the issue autocompletion. The co-authors placeholder is also above the autocompletion menu. <img width="399" alt="Screen Shot 2019-05-16 at 1 53 51 PM" src="https://user-images.githubusercontent.com/13760/57876170-b553e800-77e2-11e9-9891-f5127c855f53.png"> ## Version * GitHub Desktop: 1.7.0-beta7 * Operating system: macOS 10.14.5 (18F132) Status: Issue closed Answers: username_1: Fellow comrade, this is a duplicate of https://github.com/desktop/desktop/issues/4084 so will be closing this issue for now. Thanks for filing 👍
davidmolina/molinas
814878223
Title: Main Page Question: username_0: I would suggest making the title/main page more interactive. One thing you could do to get this is including some videos during projects that depict how Molinas value safety, the culture and diversity at Molinas. Furthermore, I think a "Work for us" section on the website that would hyperlink to the career page on the website. I think this would also be extremely helpful and could increase the UI and SEO of the website. Here are screenshots of what I mean: <img width="664" alt="Screen Shot 2021-02-23 at 1 56 30 PM" src="https://user-images.githubusercontent.com/62920463/108915710-23495800-75e2-11eb-9993-3b41ef6ef6c5.png"> <img width="657" alt="Screen Shot 2021-02-23 at 1 56 43 PM" src="https://user-images.githubusercontent.com/62920463/108915716-25abb200-75e2-11eb-8ed0-29b3965d456d.png">
less/less.js
100908343
Title: Support @return in mixin Question: username_0: Currently we can use a king of hack to return a value from a mixin. For instance: ```less .sum (@a, @b) { @return: (@a + @b); } .size { .sum(5px, 10px); width: @return; .sum(15px, 15px); height: @return; } ``` But it is ugly. Suggestion is use the `@return` variable to literally return a value directly from mixin. ```less .size { width: .sum(5px, 10px); height: .sum(15px, 15px); } ``` Both should return: ```css .size { width: 15px; height: 30px; } ``` To avoid breaking changes, both examples should work. `@return` will keep to set the variable on scope, but too will be used as result of mixin. Answers: username_1: See #538 and [less-plugin-functions](https://github.com/username_1/less-plugin-functions). username_1: Closing as duplicate of #538. Status: Issue closed
Creators-of-Create/Create
1028292897
Title: Cobblestones broken by Mechanical Drill get stuck at certain RPM Question: username_0: Hi, I'd like to report a weird issue. I can't express it in general way so I'll just describe what happened. It happens when I use mechanical drill for cobblestone generator. my setup looks like this and RPM of drill is 80. Cobblestones from generator don't fall into belt, and stick around stairs, glass, etc. This weird problem only happens when the speed is 80 RPM(maybe other number, I couldn't find one). when it's 128 or 256 cobbles are transported without problem (I found this because I doubled the speed twice from wall of 20 RPM water wheels, making Rotation Speed Controller would detour this problem anway :)) ![2021-10-17_20 21 14](https://user-images.githubusercontent.com/28271599/137625424-4002d7bf-d84d-4900-9282-e543f29de8fa.png) Answers: username_0: https://discord.com/channels/620934202875183104/689866656914210897/899291719504363530 Status: Issue closed
googleapis/google-cloud-cpp
696073876
Title: Remove emulator workarounds for NUMERIC in Spanner integration tests Question: username_0: Until the Cloud Spanner Emulator supports `NUMERIC` columns, we have workarounds in place that disable pieces of the Spanner integration tests when run against the Emulator. This is a reminder to remove those workarounds when the Emulator supports `NUMERIC`. Answers: username_0: Let's keep the reminder open (if only to keep our `TODO(#5024)` comments live).
ElisaV-f/Operating-system
835671421
Title: Читаемость кода Question: username_0: https://github.com/ElisaV-f/Operating-system/blob/bd5bda5c8770c039e8512221434ea6b6808ad4a0/Laba-1/Program.cs#L67 1.Разнесите код по отдельным процедурам. Если количество строк больше 50 в одной процедуре , рекомендуется разнести код по отдельным процедурам. Task1, Task2 and etc.... 2. Удалите "висящие" строки, лишние пробелы. 3. Выполните форматирование кода. 4. Добавьте информацию об авторе 5. Добавьте описание вашим процедурам в комментариях
sensu/sensu-docs
531518852
Title: Copy-edit Go Dashboard articles Question: username_0: - Fix typos - Use numbers for link references - Fix broken links - Add trailing slash to all internal links - Apply line break standard (one sentence per line) - Confirm all code examples use the correct api_version - Standardize in-doc heading capitalization, remove gerunds, and correct heading levels - Add and complete top-of-page TOCs - Make other style corrections as needed ## This is an issue with: - [ ] Bug (site functionality or styling) - [ ] Errata (fix needed for doc content) - [ ] New content (guide wanted) - [x] Update (Add missing or refresh existing content) - [ ] Enhancement (add new site functionality) ## Affected Docs Pages https://docs.sensu.io/sensu-go/5.16/dashboard/overview/ https://docs.sensu.io/sensu-go/5.16/dashboard/filtering/ ## Context Copy edit cleanup<issue_closed> Status: Issue closed
ionic-team/ionic-framework
1127209918
Title: bug: presenting element of card style modal over sheet style modal not working Question: username_0: ### Prerequisites - [X] I have read the [Contributing Guidelines](https://github.com/ionic-team/ionic-framework/blob/main/.github/CONTRIBUTING.md#creating-an-issue). - [X] I agree to follow the [Code of Conduct](https://ionicframework.com/code-of-conduct). - [X] I have searched for [existing issues](https://github.com/ionic-team/ionic-framework/issues) that already report this problem, without success. ### Ionic Framework Version - [ ] v4.x - [ ] v5.x - [X] v6.x ### Current Behavior I have a Page with an open sheet style modal. Within i have a Button that opens a Card Style modal. This second modal has the `presentingElement` set to the `<io-router-outlet>` but this doesn't work. ### Expected Behavior I would expect the Page together with the sheet style modal to act like a normal `presentingElement` getting smaller and in the background ### Steps to Reproduce See above ### Code Reproduction URL _No response_ ### Ionic Info Ionic: Ionic CLI : 6.18.1 (/Users/hans/.nvm/versions/node/v16.13.1/lib/node_modules/@ionic/cli) Ionic Framework : @ionic/angular 6.0.4 @angular-devkit/build-angular : 13.2.0 @angular-devkit/schematics : 13.2.0 @angular/cli : 13.2.0 @ionic/angular-toolkit : 5.0.3 Capacitor: Capacitor CLI : 3.4.0 @capacitor/android : 3.4.0 @capacitor/core : 3.4.0 @capacitor/ios : 3.4.0 Cordova: Cordova CLI : 10.0.0 ([email protected]) Cordova Platforms : not available Cordova Plugins : not available Utility: cordova-res : 0.15.4 native-run : 1.5.0 System: Android SDK Tools : 25.2.3 (/Users/hans/Library/Android/sdk) ios-deploy : 1.10.0 NodeJS : v16.13.1 (/Users/hans/.nvm/versions/node/v16.13.1/bin/node) npm : 8.4.0 OS : macOS Monterey Xcode : Xcode 13.2.1 Build version 13C100 ### Additional Information _No response_<issue_closed> Status: Issue closed
spring-projects/spring-boot
89892168
Title: Multiple Spring boot apps sharing classpath / class-loader. Question: username_0: I am looking at how to migrate my current setup to Spring boot and I am blocked by this. In my current setup, I have several micro service apps. During integration tests, these services share the same class-loader, as I bring them up inside tests. Pseudocode: ```java public class MyTest { Service1 s1; Service2 s2; @Before public void setUp() { s1 = new Service1(); s2 = new Service2(s1); } @Test public void test1() { on(s2).get("/something"); verify(s1).received("somethingElse"); } } ``` AFAIK Spring boot discovers everything from classpath, therefore having multiple spring boot apps up and running inside same class-loader would therefore be very conflictive. Is there any way to prevent them from colliding or loading the wrong configurations? BTW I asked this to @joshlong during Spring I/O 15, but I'm not sure I explained properly... Answers: username_1: Well, I do think that having several (separated) micro-services within the same project _is_ confusing. If they have different configuration, how do you load it? Let's say you use `spring.config.name` to specify the name of the configuration (`app1.properties`, `app2.properties` instead of the default `application.properties`). This is a process wide setting so you can't change that using a single process. If you have the same configuration file, my best guess is that you're trying to migrate a set of services to micro-services but you've not done the fully cycle yet. IMO you should have on Spring Boot app with the relevant component scanning to make that working. Ideally a root package that sits on top of `app1`, `app2` and the like. username_0: I should have explained better. My current setup involves NO spring boot, so I'm not using any of the current facilities (eg: there's no overriding of "spring.config.name" in my setup). My setup predates spring boot, and all the facilities for configuration and embedded jetty and such are custom-developed. I want to move them to spring boot and stop maintaining my own, and I found this blocker (for me) during the evaluation to do so. Each service is on its own project, of course. There's however another project that depends (as in gradle-level dependency) on them and brings them up and down as needed, *for integration testing*. But the projects are independent. Each micro-service loads only their own namespaced properties. Eg: in service1's config.properties: ``` service1.jdbc.url=xxx service1.jdbc.username=yyy ``` in service2's config.properties: ``` service2.jdbc.url=xyz service.jdbc.username=abcd ``` username_1: You wrote a request in the Spring Boot issue tracker so you must be using Spring Boot in one way or the other, right? :) Seriously, I don't understand what you're trying to do (if you're not using Spring Boot, then we shouldn't discuss here. If you tried to use it and it failed, then you're using it). I am confused. Let's put the confusion aside, there is no way right now to start several Spring Boot application in the same process for the exact reason I mentioned above. I think we could summarize your problem by: I have X `@SpringBootApplication` annotated classes on my classpath (X,Y,Z), I start one (X) and component scanning is actually adding others (Y, Z). What's the issue you're seeing? username_0: I understand this is not possible in Spring boot right now, so please deal with this issue as a feature request ("run several springboot apps in same JVM"). I wrote it in spring boot because, as I said, I'm trying to move my setup to Spring boot and the exact fact that you pointed out (`Let's put the confusion aside, there is no way right now to start several Spring Boot application in the same process for the exact reason I mentioned above.`) is what's blocking me from moving my setup to spring boot.. During integration test, for my setup to work, X Y and Z actually *are* in the same process, it's not only that X, Y Z are in the classpath, they're in same JVM. This only happens during integration test, which is handled by a project different from X, Y and Z, one that imports all of them and instantiates their main classes as needed. username_2: You can run several Spring Boot apps in the same JVM today. That's exactly what happens if you package you apps as war files and deploy them to a servlet container. This works very well as the servlet container uses a separate class loader for each application. This means that each application can only see the dependencies that it needs, and Spring Boot's auto-configuration will configure the right things for you. I think you have a couple of options: - Use a single class loader, but turn off some or all of Boot's auto-configuration. You could either not use `@EnableAutoConfiguration` entirely, or you could use it with the required excludes to ensure that each application is only auto-configured as required. - Use one class loader for each application. You could also use a shared parent class loader that contains all of the applications' common dependencies to minimise the memory footprint. username_0: Thank you @username_2. I will give it a try again with these hints. Thanks @username_1 also for the time taken to look at the issue. Status: Issue closed username_4: can this feature("run several springboot apps in same JVM") be supported now? I want to replace the rpc between two microservice as direct call. username_2: It's already supported. Please read my [comment above](https://github.com/spring-projects/spring-boot/issues/3300#issuecomment-114048652). username_0: It's supported but it was really painful, having to use separate class-loaders and replicate the current assignation configurationArtifact->service (this class contains configuration that I want to load in this service) at the class-loader level (this jar is allowed for this service, this jar is not). This solution was therefore not suitable for me, but I understand this is consequence of the core design of spring boot, and nothing can be done easily. I want to revisit this when Java 9 is available, maybe easier with jigsaw. username_2: I disagree quite strongly with that. There's nothing about the core design of Spring Boot that stops you from deploying multiple applications in the same JVM. As I said above, that's _exactly_ what happens when you deploy multiple war files that use Spring Boot to a servlet container. If you specifically want to use the exact same class loader with multiple applications then, yes, that will be difficult. However, I don't think it makes sense to do so. An application is intended to be an isolated unit and sharing a ClassLoader breaks that isolation. Irrespective of the use of Spring Boot, breaking that isolation can lead to class path conflicts. This is a standard modularity problem on the JVM. The tried and tested solution to that problem is to use separate class loaders. Here's a basic example of how that might look for four Boot apps: ```java public class MultipleApps { public static void main(String[] args) throws Exception { launchApp(new File("app1.jar")); launchApp(new File("app2.jar")); launchApp(new File("app3.jar")); launchApp(new File("app4.jar")); } private static void launchApp(File fatJar, String... args) throws Exception { ClassLoader classLoader = new URLClassLoader(new URL[] {fatJar.toURI().toURL()}); Class<?> mainClass = classLoader.loadClass(getMainClassName(fatJar)); Method mainMethod = mainClass.getMethod("main", String[].class); mainMethod.invoke(null, new Object[] {args}); } private static String getMainClassName(File fatJar) throws IOException { try (JarFile jarFile = new JarFile(fatJar)) { return jarFile.getManifest().getMainAttributes().getValue(Attributes.Name.MAIN_CLASS); } } } ``` username_0: That is the problem I have - some of the integration tests I have here rely on the fact that you can launch a set of micro-services within the same class-loader. It's a nasty problem and I am not blaming spring boot for not supporting my use-case, just explaining why it's not useful for me. username_5: I have a similar problem. I have a spring-boot app that acts as a small framework for other apps. It provides a couple of JMS queues and a DAO layer to retrieve and store data from a common set of data stores. The problem is that the original developer of this framework app is scanning all the package "com.mycompany" (rather than com.mycompany.framework) so that it can load the beans of the specific app that may be declared under com.mycompany.myapp1 or com.mycompany.myapp2. We only load a single app in the JVM (although it would be great to load more than one), but these apps may share other libraries and sometimes we end up with beans in the context that we don't need. (these may be needed in app1 but not in app2) So, what would be your advice ? username_2: @username_5 GitHub issues, particularly closed ones, aren't the right place to ask for advice. Please post a question on Stack Overflow or come and chat on our Gitter channel. username_6: @username_2 in your example,is it possible to get the four apps applicationContext?as @username_4 said,I want to replace the rpc between two microservice as direct call. Look forward to your reply. username_7: @username_2 Does each Spring Boot Application's Classloader run in a thread within the JVM's process or does it have a unique process of its own ? username_7: @username_0 @username_1 @username_5 @username_4 @username_2 Has anyone been able to use this to run multiple Spring Boot apps in single JVM ?
angular/angular
98479537
Title: Root Element injectors are not ordered properly in the presence of ng-for Question: username_0: Consider the following view: ```` <div text="1"></div> <div *ng-for="var i of ['2','3']" [text]="i"></div> <div text="4"></div> ``` The injectors containing TextDirectives are all root injectors to the view are ordered as 1, 4, 2, 3. Currently this can be only observed by a ViewQuery. However, in general the injector tree should be a contraction of the DOM tree. /cc @tbosch Answers: username_0: Brainstormed with Tobias about best approach to fix this and settled on making query iterate through views and view containers and relieve injectors of their duty to keep downward pointers to children. That would remove the need to keep `rootViewInjectors` containing anything but view local injectors, making it staticly known. username_0: With https://github.com/angular/angular/commit/5ebeaf7c9bdab8de6d11c7b4c4d0954553196903 landing, the rootInjectors array does not need to be mutated to reflect injectors coming from view containers. Status: Issue closed
angular/material
67527369
Title: Don't include Roboto fonts by default Question: username_0: Hi, would it be possible to remove the `@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,400italic);` from the build by default ? I don't want to rely on external resources and this forces the user to do so. I prefer to use something like https://www.npmjs.com/package/webfont-dl to have them locally : `webfont-dl \"https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,400italic\" -o ./src/styles/vendors/_fonts.scss --font-out=./src/assets/fonts --css-rel=assets/fonts` Answers: username_1: This was changed in 2d2d960 via #1009. And I agree with you. I don't think the lib should force me to load assets from a remote source. What if I'm creating an offline application? Ping @username_2 username_2: Great points. We have reopened #1009 as we have a discussion happening with the Material Design UX team about the best way to handle this. We will keep you posted! username_3: FYI - ![screen shot 2015-04-11 at 8 11 07 am](https://cloud.githubusercontent.com/assets/210413/7101507/4f27d084-e022-11e4-9ead-fae7121acf50.png) Status: Issue closed
ReactiveCocoa/ReactiveSwift
191085980
Title: Array of Signal<Any?, NoError>. Array of different Value types Question: username_0: I have some signals. Some from a textfield, and others I have coerced from valuesForKeyPath. ``` let sig1: Signal<Any?, NoError> = specialBtn.reactive.values(forKeyPath: "isSelected").startSignal() let sig2: Signal<String, NoError> = textField.reactive.continuousTextValues ``` where`startSignal` is really just the `internal func startAndRetrieveSignal()`: ``` extension SignalProducer { func startSignal() -> Signal<Value, Error> { var result: Signal<Value, Error>! startWithSignal { signal, _ in result = signal } return result } } ``` I try to put the above 2 signals into an array, but it complains about the types matching. I know `String` conforms to `Any` though. ``` let sigs: [Signal<Any?, NoError>] = [sig1, sig2] Cannot convert value of type 'Signal<String, NoError>' to expected element type 'Signal<Optional<Any>, NoError>' ``` How should I aggregate signals that have different types? Answers: username_1: You can map the value to `Any?`. Swift's generics are invariant. But may I ask what you are trying to accomplish? You can have a composed signal `Signal<(Any?, String>` of the two using `combineLatest(with:)`, which is strong-typed. username_0: Just want to run a `validate` method whenever any form field signal triggers. We have a lot of fields so I aggregate them in different methods, but I can't get the return type correct :/ ``` func __section1Sigs() -> Signal<_, _> { // Tried func __sigs() -> Signal<Any?, NoError> { let (s1, observer1) = Signal<String, NoError>.pipe() let (s2, observer2) = Signal<Any?, NoError>.pipe() return Signal.combineLatest(s1, s2) } ``` ``` Cannot convert value of type 'Signal<Any?, NoError>' (aka 'Signal<Optional<Any>, NoError>') to expected argument type 'Signal<_, _>' ``` username_1: If you do `s1.combineLatest(with: s2)`, or `Signal.combineLatest(s1, s2)`, it gives you a `Signal<(String, Any?), NoError>`. username_0: I have this gross solution: EXAMPLE ``` func __sigs() -> (sig: Signal<Any?, NoError>, os: [Any]) { let (s1, o1) = Signal<String, NoError>.pipe() // In actual code I have 10+ signals in each method let (s2, o2) = Signal<Any?, NoError>.pipe() let (s, o) = Signal<Any?, NoError>.pipe() Signal.combineLatest(s1, s2).observeValues{ _ in o.send(value: "anything") // gross hack } return (sig: s, os: [o1, o2]) } let a: (sig: Signal<Any?, NoError>, os: [Any]) = __sigs() a.sig.observeValues { (things: Any?) in print("work") } let o1 = a.os.first! as! Observer<String, NoError> let o2 = a.os[1] as! Observer<Any?, NoError> o1.send(value: "ao") o2.send(value: "ao") // Just triggers the above to print "work" o2.send(value: "ao") ``` More realistic code: ``` fileprivate final func __investmentOptionSigs() -> Signal<Any?, NoError> { let s1: Signal<Any?, NoError> = specialBtn.reactive.values(forKeyPath: "isSelected").startSignal() let s2: Signal<String, NoError> = tf2.reactive.continuousTextValues let s3: Signal<String, NoError> = tf3.reactive.continuousTextValues let s4: Signal<String, NoError> = tf4.reactive.continuousTextValues let s5: Signal<String, NoError> = tf5.reactive.continuousTextValues let s6: Signal<String, NoError> = tf6.reactive.continuousTextValues let s7: Signal<String, NoError> = tf7.reactive.continuousTextValues let (s, o) = Signal<Any?, NoError>.pipe() Signal.combineLatest(s1, s2, s3, s4, s5,s 6, s7).observeValues { _ in o.send(value: "trigger") } return s } ``` Really want to have the return be: `return Signal.combineLatest(s1, s2, s3, s4, s5,s 6, s7)` username_0: Formal question: Is there a way to make the return signature match w/e `Signal.combineLatest()` returns? My initial solution was to return an array of Signals which would then be used as `Signal.combineLatest(array)` elsewhere, but the strong typing is preventing that. username_1: If you have such tremendous amount of state, and the result would be referenced, you can always consider introducing a `struct` and take advantage of Swift's partial application. ```swift struct FormState { let name: String? let age: String? let occupation: String? let city: String? // Implicit internal memberwise initializer. } // This gives a `Signal<(String, String, String, String), NoError>`. Signal.combineLatest(nameField.reactive.continuousTextValues, ageField.reactive.continuousTextValues, occupationField.reactive.continuousTextValues, cityField.reactive.continuousTextValues) .map(FormState.init) ``` username_0: Appreciate the help @username_1! I'm going to map all values to `Any?`. Just feels weird since all objects are already `Any`... username_1: Well Swift's generic system is still maturing. Generic covariance is limited to only the standard library types at this moment. Status: Issue closed
qingwei91/basil
393738827
Title: Derive seems to not work with other macro Question: username_0: I am trying to reuse the awesome benchmark in https://github.com/plokhotnyuk/jsoniter-scala, but I am getting `implicit not found` error after adding benchmark code basil, need investigation Status: Issue closed Answers: username_0: it seems to do with the annotation used by jsoniter's benchmark, working now by removing those annotation here : https://github.com/username_0/jsoniter-scala/commit/e0402e2a3115e9b45ade5a8bc6ffcbf4a0f28cdf#diff-c4286d8f1a65737d7aad6e18d4e19091L21
eschnett/SIMD.jl
950619362
Title: Requesting Support for `fmaddsub` Question: username_0: I was talking [in the discourse ](https://discourse.julialang.org/t/simd-complex-numbers/65038/8) about SIMD complex numbers (I hadn't seen #60 until a minute or two ago) and I'm trying to get a working implementation of Complex using `Vec` types, at least as a preliminary type. I can shave off a few clock cycles from the multiplication itself if I'm able to access the `fmaddsub`/`fmsubadd` intrinsics, but unfortunately, I can't those working on my computer. I'm not sure what the issue is, but I'd put up a PR if I knew more LLVM. I'm putting my meager attempt at it below ``` function fmaddsub(x::Vec{2,Float64}, y::Vec{2,Float64}, z::Vec{2,Float64}) llvmcall(""" %res = @llvm.x86.fma.vfmaddsub.pd <2 x double> %0, %1, %2 ret <2 x double> %res """, Float64x2, Tuple{Vec{2,Float64},Vec{2,Float64},Vec{2,Float64}}, x, y, z) end ``` Answers: username_1: This looks reasonable. Are you sure this intrinsic exists on your system? The `.fma.` part means that this requires the `fma` instruction set extension, and you might need to explicitly enable it when calling LLVM. I don't know whether Julia does this. You could try the intrinsic `llvm.x86.sse3.addsub.pd` first, which should exist on any halfway modern system. (This intrinsic only adds and subtracts, it doesn't multiply, but it's good for testing.) To go further, I recommend the following: - Fork the SIMD.jl repository - Make changes to your fork (even if they don't compile), commit, and push them to your fork - Open a pull request and mark it `WIP` (work in progress) This allows people to see easily exactly what changes you made. Then report exactly what system you are using (and run `versioninfo()`), what commands you're typing, and what error messages you get. username_1: See #89 username_1: LLVM supports the intrinsic. The question is whether the machine architecture that Julia tells LLVM to use includes the fma extensions. What error message do you see? username_0: I toyed around with it inside `SIMD.jl` on the PR (to integrate it better with the library). I tried adding `:vfmaddsub` to `MULADD_INTRINSICS` and it compiled, but produced this behavior-- ```julia julia> using SIMD julia> x = Vec(1.5, 2.5) <2 x Float64>[1.5, 2.5] julia> xd = x.data (VecElement{Float64}(1.5), VecElement{Float64}(2.5)) julia> SIMD.Intrinsics.fma_fmaddsub(xd, xd, xd) (VecElement{Float64}(3.75), VecElement{Float64}(8.75)) ``` For some reason it's just calling `fmadd` and I'm not sure why since it's theoretically generating with the right intrinsic. Then, I tried implementing it a different way using ```julia function fmaddsub(a::LVec{N, T}, b::LVec{N, T}, c::LVec{N, T}) where {N, T<:FloatingTypes} Base.llvmcall("llvm.x86.fma.vfmaddsub_pd", LVec{N, T}, (LVec{N, T}, LVec{N, T}, LVec{N, T}), a, b, c) end ``` which (using the same previous example) gave me ``` julia> SIMD.Intrinsics.fmaddsub(xd, xd, xd) Internal error: encountered unexpected error during compilation of fmaddsub: TypeError(func=:llvmcall, context="", expected=Type, got=(Tuple{VecElement{Float64}, VecElement{Float64}}, Tuple{VecElement{Float64}, VecElement{Float64}}, Tuple{VecElement{Float64}, VecElement{Float64}})) jl_type_error_rt at /cygdrive/c/buildbot/worker/package_win64/build/src\rtutils.c:119 jl_type_error at /cygdrive/c/buildbot/worker/package_win64/build/src\rtutils.c:127 emit_llvmcall at /cygdrive/c/buildbot/worker/package_win64/build/src\ccall.cpp:750 emit_intrinsic at /cygdrive/c/buildbot/worker/package_win64/build/src\intrinsics.cpp:893 emit_call at /cygdrive/c/buildbot/worker/package_win64/build/src\codegen.cpp:3524 emit_expr at /cygdrive/c/buildbot/worker/package_win64/build/src\codegen.cpp:4390 emit_ssaval_assign at /cygdrive/c/buildbot/worker/package_win64/build/src\codegen.cpp:4041 emit_stmtpos at /cygdrive/c/buildbot/worker/package_win64/build/src\codegen.cpp:4252 emit_function at /cygdrive/c/buildbot/worker/package_win64/build/src\codegen.cpp:6853 jl_emit_code at /cygdrive/c/buildbot/worker/package_win64/build/src\codegen.cpp:7215 jl_emit_codeinst at /cygdrive/c/buildbot/worker/package_win64/build/src\codegen.cpp:7260 _jl_compile_codeinst at /cygdrive/c/buildbot/worker/package_win64/build/src\jitlayers.cpp:124 jl_generate_fptr at /cygdrive/c/buildbot/worker/package_win64/build/src\jitlayers.cpp:352 jl_compile_method_internal at /cygdrive/c/buildbot/worker/package_win64/build/src\gf.c:1970 jl_compile_method_internal at /cygdrive/c/buildbot/worker/package_win64/build/src\gf.c:1924 [inlined] _jl_invoke at /cygdrive/c/buildbot/worker/package_win64/build/src\gf.c:2229 [inlined] jl_apply_generic at /cygdrive/c/buildbot/worker/package_win64/build/src\gf.c:2419 jl_apply at /cygdrive/c/buildbot/worker/package_win64/build/src\julia.h:1703 [inlined] do_call at /cygdrive/c/buildbot/worker/package_win64/build/src\interpreter.c:115 eval_value at /cygdrive/c/buildbot/worker/package_win64/build/src\interpreter.c:204 eval_stmt_value at /cygdrive/c/buildbot/worker/package_win64/build/src\interpreter.c:155 [inlined] eval_body at /cygdrive/c/buildbot/worker/package_win64/build/src\interpreter.c:576 jl_interpret_toplevel_thunk at /cygdrive/c/buildbot/worker/package_win64/build/src\interpreter.c:670 top-level scope at REPL[5]:1 jl_toplevel_eval_flex at /cygdrive/c/buildbot/worker/package_win64/build/src\toplevel.c:877 jl_toplevel_eval_flex at /cygdrive/c/buildbot/worker/package_win64/build/src\toplevel.c:825 jl_toplevel_eval_flex at /cygdrive/c/buildbot/worker/package_win64/build/src\toplevel.c:825 jl_toplevel_eval at /cygdrive/c/buildbot/worker/package_win64/build/src\toplevel.c:886 [inlined] jl_toplevel_eval_in at /cygdrive/c/buildbot/worker/package_win64/build/src\toplevel.c:929 eval at .\boot.jl:360 [inlined] eval at .\Base.jl:39 [inlined] repleval at c:\Users\danny\.vscode\extensions\julialang.language-julia-1.2.8\scripts\packages\VSCodeServer\src\repl.jl:149 #69 at c:\Users\danny\.vscode\extensions\julialang.language-julia-1.2.8\scripts\packages\VSCodeServer\src\repl.jl:115 [Truncated] unknown function (ip: 0000000061127363) jl_apply at /cygdrive/c/buildbot/worker/package_win64/build/src\julia.h:1703 [inlined] jl_f__call_latest at /cygdrive/c/buildbot/worker/package_win64/build/src\builtins.c:714 #invokelatest#2 at .\essentials.jl:708 [inlined] invokelatest at .\essentials.jl:706 jl_apply at /cygdrive/c/buildbot/worker/package_win64/build/src\julia.h:1703 [inlined] do_apply at /cygdrive/c/buildbot/worker/package_win64/build/src\builtins.c:670 macro expansion at c:\Users\danny\.vscode\extensions\julialang.language-julia-1.2.8\scripts\packages\VSCodeServer\src\eval.jl:34 [inlined] #53 at .\task.jl:411 unknown function (ip: 000000006110b543) jl_apply at /cygdrive/c/buildbot/worker/package_win64/build/src\julia.h:1703 [inlined] start_task at /cygdrive/c/buildbot/worker/package_win64/build/src\task.c:839 ERROR: error statically evaluating llvmcall return type Stacktrace: [1] fmaddsub(a::Tuple{Vararg{VecElement{T}, N}}, b::Tuple{Vararg{VecElement{T}, N}}, c::Tuple{Vararg{VecElement{T}, N}}) where {N, T<:Union{Float32, Float64}} @ SIMD.Intrinsics c:\Users\danny\.julia\dev\SIMD\src\LLVM_intrinsics.jl:434 [2] top-level scope @ REPL[5]:1 ``` I know that I *can* theoretically access it through Julia, because I was talking with some people over at VectorizationBase and someone got it to work there and pushed it up. I didn't want to just leave this hanging, but working with LLVM is definitely not in my wheelhouse. username_1: This is my implementation: ``` function fmaddsub(a::LVec{2, Float64}, b::LVec{2, Float64}, c::LVec{2, Float64}) ccall("llvm.x86.fma.vfmaddsub.pd", llvmcall, LVec{2, Float64}, (LVec{2, Float64}, LVec{2, Float64}, LVec{2, Float64}), a, b, c) end ``` and this is the result I get: ``` julia> SIMD.Intrinsics.fmaddsub(xd, xd, xd) (VecElement{Float64}(0.75), VecElement{Float64}(8.75)) ``` which subtracts the first and adds the second element. Note that `ccall` calls a single function, while `llvmcall` expects proper LLVM code, probably multiple lines, including a `ret` statement. The nearby intrinsics in the `SIMD` source code are good examples. Note also the spelling of the intrinsic: there is a letter `v` in front of `fmaddsub`, and the suffix `pd` is separated by a dot, not by an underscore. The test cases in the LLVM source code are a good way of finding out how intrinsics are called. username_0: Ah, I totally missed the underscore I left in, sloppy mistake. Check out the PR again and see how you feel about what I did (I tried to imitate the library's previous syntax). I added `vfmsubadd` since it's basically buy-one get-one free on these kinds of intrinsics, but I observed that, curiously, `vfmsubadd` and `vfmaddsub` give the same result. Do you have any thoughts on this? Also, it seems like at least my version of LLVM doesn't support AVX512 based intrinsics for these (I know that my CPU is capable of the AVX512 instructions, and I can perform those instructions normally through C), so I excluded those using comments and left open the possibility for adding them back in easily later. username_1: I added comments. These comments assume that you plan to submit this to SIMD.jl, and include things such as test cases etc. I don't know which LLVM version supports what intrinsics. I find LLVM's documentation in this respect sparse, i.e. I usually have to look at its source code to find out. I also noticed that `vfmaddsub` seems to calculate `vfmsubadd`. I guessed that's because complex number arithmetic needs this. Now I see that both intrinsics exist, this is strange indeed. Is this a bug in LLVM? username_0: Sure, I've come too far to turn back now. I agree with the problem of finding what version supports which intrinsics, I've had the same issue, but it seems like these were incorporated long enough ago that it shouldn't be a problem for Julia (though I'll check a baseline LLVM version). I can't tell you why `vfmaddsub` calculates `vfmsubadd`, because I know the recent push to VectorizationBase gets correct results and, to my knowledge, they're doing virtually the same thing as the current PR. I'll poke around later when I get to making the changes, but let me know if you have any ideas as to why. username_0: I'm looking at this and I'm starting to rethink whether this does belong in SIMD.jl. In [the original thread](https://discourse.julialang.org/t/simd-complex-numbers/65038/8) I posted I thought it did because this library provides a lot of functionality for the `Vec` types. Now that I'm looking at it though, the whole idea of detecting whether the CPU supports the vectorization seems like it further steps on VectorizationBase and is a little outside the scope of this library. I really don't mind working on this (hopefully it doesn't sound like I'm trying to weasel my way out), but I also don't want to make people even more confused with duplicated features between the two libraries. username_2: Made a comment about this on the PR: https://github.com/username_1/SIMD.jl/pull/89#issuecomment-886469682.
farminf/pannellum-react
1113449688
Title: Unable to use with React 17 Question: username_0: While installing the package error shows up. The error: npm ERR! Found: [email protected] npm ERR! node_modules/react npm ERR! react@"^17.0.2" from the root project npm ERR! npm ERR! Could not resolve dependency: npm ERR! peer react@"16.x" from [email protected] npm ERR! node_modules/pannellum-react npm ERR! pannellum-react@"1.2.4" from the root project I am using React 17.0.2. Answers: username_1: it should work but anyways, try new version [1.3.3](https://www.npmjs.com/package/pannellum-react/v/1.3.3) please and let me know. the demo app in the repo works with React 17 and now it is upgraded Status: Issue closed username_2: I tried and it is still give error, I could use `npm i [email protected] --force`
ampproject/amphtml
661933898
Title: Stories are stored as HTMLAnchorElement in amp-story-player Question: username_0: ## Describe the new feature or change to an existing feature you'd like to see The current amp-story-player implementation handles the list of stories internally as an array of HTMLAnchorElement objects, `this.stories_`. Initially, it is populated with the children anchor elements of the player, directly from the DOM. When adding new stories, this means that a new anchor must be unnecessarily created to maintain consistency. ## Describe alternatives you've considered An alternative to this approach would be to store story information as custom objects holding only the necessary information from the anchors: ``` /** * @typedef {{ * href: string, * title: ?string, * poster: ?string, * iframeIdx: ?number * }} */ ``` These objects would be created and populated with the information from the anchors in the DOM. ## Additional context Add any other context or screenshots about the feature request here.<issue_closed> Status: Issue closed
nilsreiter/CorefAnnotator
823244917
Title: Change underline color when entity is no longer singleton when "De-emphasize singletons" is enabled Question: username_0: When "De-emphasize singletons" is enabled, singletons are gray. However, adding a mention to a singleton entity means it is no longer a singleton and should trigger a refresh of the underline colors; what happens is that the underline of the original mention remains gray. Moreover, strange things happen when the "De-emphasize singletons" option is enabled and disabled: several entities in the entity list become invisible, and all singletons get their normal color when the option is disabled, except, oddly, one of the entities which was a singleton but to which I just added a mention. Answers: username_1: I can reproduce the issue with ex-singletons remaining gray when they get a new mention, but not the other weird things. Does this happen after having added a mention to a singleton entity? Status: Issue closed username_0: Yes, the disappearing entities happen when the "De-emphasize singletons" setting is disabled, after having added a singleton mention to an entity. However, I see now that it is only a re-drawing glitch; if I scroll back and forth, the items are there and there is no issue. ![image](https://user-images.githubusercontent.com/261460/111879828-59db7e00-89a8-11eb-8fd0-4bfc99e04607.png) username_0: The initial issue has been fixed: a singleton with gray underline now gets a color if it is added to an entity. However, if you undo this action, the gray color should come back, but instead the mention which is now a singleton again gets a new color. username_1: Ok thanks. I'll look into this. username_1: When "De-emphasize singletons" is enabled, singletons are gray. However, adding a mention to a singleton entity means it is no longer a singleton and should trigger a refresh of the underline colors; what happens is that the underline of the original mention remains gray. Moreover, strange things happen when the "De-emphasize singletons" option is enabled and disabled: several entities in the entity list become invisible, and all singletons get their normal color when the option is disabled, except, oddly, one of the entities which was a singleton but to which I just added a mention. username_1: I fixed a few more situations, please check here: https://github.com/username_1/CorefAnnotator/releases/tag/v1.15.0-beta1 Status: Issue closed username_0: I checked, all fixed now!
yiisoft/yii
291094093
Title: #3348 Question: username_0: Note that only PHP 7 compatibility issues are accepted. For security issues contact maintainers privately. ### What steps will reproduce the problem? ### What is the expected result? ### What do you get instead? ### Additional info | Q | A | ---------------- | --- | Yii version | 1.1.? | PHP version | 7.? | Operating system |<issue_closed> Status: Issue closed
dask/distributed
320656852
Title: Trouble shutting down local distributed client/displaying it aftewards Question: username_0: Appears the running `Client.close` consistently runs into some sort of hang up. Also it use to be the case that `Client._repr_html_` worked on a `Client` object after it was closed. However that is no longer the case since `Client.scheduler` is now `None`. Example of this behavior in the Gist'd Jupyter Notebook linked below along with the environment used to reproduce it. This happens in Distributed 1.21.8, but not in Distributed 1.21.6. ref: https://gist.github.com/username_0/b9c75e2f7fabdee5f19db8cc3bff0d9e Status: Issue closed Answers: username_0: Thanks @username_1. So there is another issue with `close` generating the exception in the log (as show below). If that's already in a separate issue, happy to follow along. Could also migrate it to a new issue or reopen. Whatever works best. ```python Exception ignored in: <generator object add_client at 0x11e4d1f10> RuntimeError: generator ignored GeneratorExit Future exception was never retrieved future: <Future finished exception=CommClosedError('in <closed TCP>: Stream is closed',)> Traceback (most recent call last): File "/zopt/conda2/envs/test/lib/python3.6/site-packages/distributed/comm/tcp.py", line 179, in read n_frames = yield stream.read_bytes(8) File "/zopt/conda2/envs/test/lib/python3.6/site-packages/tornado/gen.py", line 1099, in run value = future.result() tornado.iostream.StreamClosedError: Stream is closed During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/zopt/conda2/envs/test/lib/python3.6/site-packages/tornado/gen.py", line 1107, in run yielded = self.gen.throw(*exc_info) File "/zopt/conda2/envs/test/lib/python3.6/site-packages/distributed/comm/tcp.py", line 200, in read convert_stream_closed_error(self, e) File "/zopt/conda2/envs/test/lib/python3.6/site-packages/distributed/comm/tcp.py", line 128, in convert_stream_closed_error raise CommClosedError("in %s: %s" % (obj, exc)) distributed.comm.core.CommClosedError: in <closed TCP>: Stream is closed ``` username_1: Yeah, I think that this started appearing when Tornado switched to Asyncio. We don't currently have a good way around it. I spent a long while trying to track this down. In the end the solution was to just ignore this if we're also shutting down the Python process, so in the common case for users it doesn't show up. I agree that it's an issue. I would love to see it resolved. username_0: It's just interesting as the issue was absent for me in Distributed 1.21.6 and shows up in Distributed 1.21.8. Didn't check 1.21.7. Also haven't run `git blame` on individual commits. Would be interesting to know if the same holds true for you. username_1: That is interesting. You're right that it doesn't show up for me on 1.21.6 either. I retract my previous explanation. I don't know what causes this. Perhaps this is a case for git-bisect? username_0: Ha, `git bisect`, that's what I meant. Sorry, corrected above. So you're also seeing this issue? Should we reopen or move this to a new issue? username_1: No strong preference username_0: Went ahead and put it in a new issue ( https://github.com/dask/distributed/issues/1969 ) with a clearer description. Please feel free to add anything else relevant there.
godotengine/godot
972941791
Title: AtlasTexture preview out of bounds Question: username_0: ### Godot version 3.4.beta2,3.4.beta3 ### System information Windows 10, GLES2/GLES3, Nvidia GeForce GTX 750 Ti ### Issue description The AtlasTexture will go out of its preview space in the Inspector Panel ![image](https://user-images.githubusercontent.com/1212509/129777697-c2072f76-60f4-4a21-88dd-1fb1a022e323.png) ![image](https://user-images.githubusercontent.com/1212509/129778000-5f41d5a1-df7c-490e-856e-cb1dc2800934.png) ### Steps to reproduce - Create a new AtlasTexture - Load some Texture on the Atlas property - Give it width and height in Region - Give it some margin x or y so it goes out of bounds ### Minimal reproduction project _No response_ Answers: username_1: Do note that this is not exclusive to the atlas texture. For example, given that you start with a stylebox on the first screenshot, even `StyleBoxFlat` can be made to exceed the bounds if you set its margins to expand. I'm not sure what the proper solution would be here. Though as far as the atlas texture goes, we should probably clip the content at least.
Stratio/cassandra-lucene-index
128118828
Title: Exception (java.lang.NoClassDefFoundError) - RowService Question: username_0: Hi. I have cassandra 2.2.4 running on my docker container and lucene index plugin. Everything was working perfectly well until today, our container did not want to start. I have check what is the issue and i get the next error when i am starting the cassandra instance. And yes I have checked the lib folder from cassandra and the jar file is there. The jar package i get from http://central.maven.org/maven2/com/stratio/cassandra/cassandra-lucene-index-plugin/2.2.4.0/cassandra-lucene-index-plugin-2.2.4.0.jar. Cassandra is installed via ``` apt-get install -y cassandra=2.2.4 ``` and started as ``` cassandra -f ``` Loaded extensions: ``` ... INFO 09:20:14 Classpath: /etc/cassandra:/usr/share/cassandra/lib/ST4-4.0.8.jar:/usr/share/cassandra/lib/airline-0.6.jar:/usr/share/cassandra/lib/antlr-runtime-3.5.2.jar:/usr/share/cassandra/lib/cassandra-driver-core-2.2.0-rc2-SNAPSHOT-20150617-shaded.jar:/usr/share/cassandra/lib/cassandra-lucene-index-plugin-2.2.4.0.jar:/usr/share/cassandra/lib/commons-cli-1.1.jar:/usr/share/cassandra/lib/commons-codec-1.2.jar:/usr/share/cassandra/lib/commons-lang3-3.1.jar:/usr/share/cassandra/lib/commons-math3-3.2.jar:/usr/share/cassandra/lib/compress-lzf-0.8.4.jar:/usr/share/cassandra/lib/concurrentlinkedhashmap-lru-1.4.jar:/usr/share/cassandra/lib/crc32ex-0.1.1.jar:/usr/share/cassandra/lib/disruptor-3.0.1.jar:/usr/share/cassandra/lib/ecj-4.4.2.jar:/usr/share/cassandra/lib/guava-16.0.jar:/usr/share/cassandra/lib/high-scale-lib-1.0.6.jar:/usr/share/cassandra/lib/jackson-core-asl-1.9.2.jar:/usr/share/cassandra/lib/jackson-mapper-asl-1.9.2.jar:/usr/share/cassandra/lib/jamm-0.3.0.jar:/usr/share/cassandra/lib/javax.inject.jar:/usr/share/cassandra/lib/jbcrypt-0.3m.jar:/usr/share/cassandra/lib/jcl-over-slf4j-1.7.7.jar:/usr/share/cassandra/lib/jna-4.0.0.jar:/usr/share/cassandra/lib/joda-time-2.4.jar:/usr/share/cassandra/lib/json-simple-1.1.jar:/usr/share/cassandra/lib/libthrift-0.9.2.jar:/usr/share/cassandra/lib/log4j-over-slf4j-1.7.7.jar:/usr/share/cassandra/lib/logback-classic-1.1.3.jar:/usr/share/cassandra/lib/logback-core-1.1.3.jar:/usr/share/cassandra/lib/lz4-1.3.0.jar:/usr/share/cassandra/lib/metrics-core-3.1.0.jar:/usr/share/cassandra/lib/metrics-logback-3.1.0.jar:/usr/share/cassandra/lib/netty-all-4.0.23.Final.jar:/usr/share/cassandra/lib/ohc-core-0.3.4.jar:/usr/share/cassandra/lib/ohc-core-j8-0.3.4.jar:/usr/share/cassandra/lib/reporter-config-base-3.0.0.jar:/usr/share/cassandra/lib/reporter-config3-3.0.0.jar:/usr/share/cassandra/lib/sigar-1.6.4.jar:/usr/share/cassandra/lib/slf4j-api-1.7.7.jar:/usr/share/cassandra/lib/snakeyaml-1.11.jar:/usr/share/cassandra/lib/snappy-java-1.1.1.7.jar:/usr/share/cassandra/lib/stream-2.5.2.jar:/usr/share/cassandra/lib/super-csv-2.1.0.jar:/usr/share/cassandra/lib/thrift-server-0.3.7.jar:/usr/share/cassandra/apache-cassandra-2.2.4.jar:/usr/share/cassandra/apache-cassandra-thrift-2.2.4.jar:/usr/share/cassandra/apache-cassandra.jar:/usr/share/cassandra/stress.jar::/usr/share/cassandra/lib/jamm-0.3.0.jar ... ``` Error on starting the cassandra (irrelevant stuff from output are omitted): ``` ... INFO 09:20:18 Initializing Lucene index Exception (java.lang.NoClassDefFoundError) encountered during startup: com/stratio/cassandra/lucene/service/RowService java.lang.NoClassDefFoundError: com/stratio/cassandra/lucene/service/RowService at com.stratio.cassandra.lucene.Index.init(Index.java:103) at org.apache.cassandra.db.index.SecondaryIndexManager.addIndexedColumn(SecondaryIndexManager.java:290) at org.apache.cassandra.db.ColumnFamilyStore.<init>(ColumnFamilyStore.java:407) at org.apache.cassandra.db.ColumnFamilyStore.<init>(ColumnFamilyStore.java:354) at org.apache.cassandra.db.ColumnFamilyStore.createColumnFamilyStore(ColumnFamilyStore.java:535) at org.apache.cassandra.db.ColumnFamilyStore.createColumnFamilyStore(ColumnFamilyStore.java:511) at org.apache.cassandra.db.Keyspace.initCf(Keyspace.java:342) at org.apache.cassandra.db.Keyspace.<init>(Keyspace.java:270) at org.apache.cassandra.db.Keyspace.open(Keyspace.java:116) at org.apache.cassandra.db.Keyspace.open(Keyspace.java:93) at org.apache.cassandra.service.CassandraDaemon.setup(CassandraDaemon.java:256) at org.apache.cassandra.service.CassandraDaemon.activate(CassandraDaemon.java:529) at org.apache.cassandra.service.CassandraDaemon.main(CassandraDaemon.java:638) Caused by: java.lang.ClassNotFoundException: com.stratio.cassandra.lucene.service.RowService at java.net.URLClassLoader$1.run(URLClassLoader.java:370) at java.net.URLClassLoader$1.run(URLClassLoader.java:362) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:361) at java.lang.ClassLoader.loadClass(ClassLoader.java:424) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331) at java.lang.ClassLoader.loadClass(ClassLoader.java:357) ... 13 more Caused by: java.util.zip.ZipException: invalid LOC header (bad signature) at java.util.zip.ZipFile.read(Native Method) at java.util.zip.ZipFile.access$1400(ZipFile.java:60) at java.util.zip.ZipFile$ZipFileInputStream.read(ZipFile.java:716) at java.util.zip.ZipFile$ZipFileInflaterInputStream.fill(ZipFile.java:419) at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:158) at sun.misc.Resource.getBytes(Resource.java:124) at java.net.URLClassLoader.defineClass(URLClassLoader.java:462) at java.net.URLClassLoader.access$100(URLClassLoader.java:73) at java.net.URLClassLoader$1.run(URLClassLoader.java:368) ... 19 more ERROR 09:20:18 Exception encountered during startup [Truncated] at java.lang.ClassLoader.loadClass(ClassLoader.java:424) ~[na:1.8.0_66] at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331) ~[na:1.8.0_66] at java.lang.ClassLoader.loadClass(ClassLoader.java:357) ~[na:1.8.0_66] ... 13 common frames omitted Caused by: java.util.zip.ZipException: invalid LOC header (bad signature) at java.util.zip.ZipFile.read(Native Method) ~[na:1.8.0_66] at java.util.zip.ZipFile.access$1400(ZipFile.java:60) ~[na:1.8.0_66] at java.util.zip.ZipFile$ZipFileInputStream.read(ZipFile.java:716) ~[na:1.8.0_66] at java.util.zip.ZipFile$ZipFileInflaterInputStream.fill(ZipFile.java:419) ~[na:1.8.0_66] at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:158) ~[na:1.8.0_66] at sun.misc.Resource.getBytes(Resource.java:124) ~[na:1.8.0_66] at java.net.URLClassLoader.defineClass(URLClassLoader.java:462) ~[na:1.8.0_66] at java.net.URLClassLoader.access$100(URLClassLoader.java:73) ~[na:1.8.0_66] at java.net.URLClassLoader$1.run(URLClassLoader.java:368) ~[na:1.8.0_66] ... 19 common frames omitted ``` As already stated everything was working fine, I could create index, fetch (query) the data until today when suddenly it "stopped" to work. Best regards. Answers: username_1: Hi @username_0. I dont know why you are getting that error. I have downloaded the jar pointed by you and indeed contains the class com.stratio.cassandra.lucene.service.RowService I have also created a 3-node cluster with that jar using ccm and it is working properly. Apart from that, there is a new release version [2.2.4.1](https://github.com/Stratio/cassandra-lucene-index/tree/2.2.4.1) for cassandra 2.2.4 Also, we have [docker containers](https://hub.docker.com/r/stratio/cassandra-lucene-index/), feel free to use them. Regards username_0: I have also now changed to 2.2.4.1 version and it seems that cassandra is starting... Really weird. Thanks for your help tho. Status: Issue closed
smarkwal/jarhc
1091099851
Title: Report Format: Make implementations self-describing Question: username_0: Make implementations self-describing: getType() returns "text" or "html", getExtensions() returns "txt" or "html", etc. Goal: The factory can decide automatically which implementation to use based on command line arguments.
staticafi/symbiotic
192926183
Title: stddef.h is in /usr/lib64 and many of them Question: username_0: get_include_paths does not work well on my system. I have no `stddef.h` in /usr/lib. Only in /usr/lib64 and many of them: ``` /usr/lib64/clang/3.8.1/include/stddef.h /usr/lib64/gcc/aarch64-suse-linux/6/include/stddef.h /usr/lib64/gcc/m68k-suse-linux/6/include/stddef.h /usr/lib64/gcc/powerpc64-suse-linux/6/include/stddef.h /usr/lib64/gcc/x86_64-suse-linux/6/include/stddef.h /usr/lib64/gcc/x86_64-suse-linux/7/include/stddef.h /usr/lib64/gcc/s390x-suse-linux/6/include/stddef.h /usr/lib64/gcc/mips-suse-linux/6/include/stddef.h /usr/lib64/gcc/sparc64-suse-linux/6/include/stddef.h /usr/lib64/gcc/hppa-suse-linux/6/include/stddef.h /usr/lib64/gcc/arm-suse-linux-gnueabi/6/include/stddef.h ``` Answers: username_0: You may want to grep the `cpp -v` output. username_1: Yes, the `get_include_paths` needs redesign (or erasure). Maybe the best way would be to add the path to the `stddef.h` that clang generated while building llvm. Or even better - copy that `stddef.h` to install/include, so that symbiotic can find it. However, on can still export `CPPFLAGS`, `CFLAGS` and `LDFLAGS` variables, Symbiotic should take them into the account (or use --cflags and --cppflags switches) username_1: Yes, that should work better (also, it should not bring in any troubles with a custom `stddef.h` that we would carry between different environments, as I suggested in the previous comment) Status: Issue closed
OpenMendel/SnpArrays.jl
665739061
Title: Add CI test for GPU linear algebra Question: username_0: Your project also needs to be part of the GitLab JuliaGPU group: * request permission to join the GitLab JuliaGPU group * import your project (New Project, CI/CD for external repo), making sure you import it to the JuliaGPU group and not your own account Answers: username_0: Your project also needs to be part of the GitLab JuliaGPU group: * request permission to join the GitLab JuliaGPU group * import your project (New Project, CI/CD for external repo), making sure you import it to the JuliaGPU group and not your own account username_1: Hi @username_0 I am the creator of Cirun.io, "GPU" caught my eye. FWIW I'll share my two cents. I created a service for problems like these, which is basically running custom machines (including GPUs) in GitHub Actions: https://cirun.io/ It is used in multiple open source projects needing GPU support like the following: https://github.com/pystatgen/sgkit/ https://github.com/qutip/qutip-cupy It is fairly simple to setup, all you need is a cloud account (AWS or GCP) and a simple yaml file describing what kind of machines you need and Cirun will spin up ephemeral machines on your cloud for GitHub Actions to run. It's native to GitHub ecosystem, which mean you can see logs/trigger in the Github's interface itself, just like any Github Action run. Also, note that Cirun is free for Open source projects. (You only pay to your cloud provider for machine usage)
nrwl/angular-console
349833560
Title: Unable to generate NgRx Schematics Question: username_0: ## Versions `@angular/cli`: ~6.1.0 `@nrwl/schematics`: ~6.2.0 ## Steps to reproduce 1. Generate new project with @nrwl/schematics 1. Generate lib `foo` 1. Attempt to scaffold NgRx state module tied `foo` module ## Expected NgRx module scaffold done in `foo` lib ## Actual Error is thrown: `Path does not exist: foo.module.ts` Answers: username_1: @username_0 the workaround is to write the whole path manually. Ex: instead of foo.module, libs/foo/src/lib/foo.module.ts Error happens because of autocompletion. Duplicate: https://github.com/nrwl/angular-console/issues/91 Status: Issue closed username_0: @username_1 ah thanks! I had tried the full path earlier but it didn't work, I must have missed part of the path because I just tried it again and the workaround of entering the full path *does* work correctly. Thanks! username_2: Can highlight and copy from the dropdown option (before releasing the mouse buttton)