milahu
milahu
> Did you have success on getting the 2250 to work ? i ended up using [pulseview](https://sigrok.org/wiki/PulseView), cos i needed a logic analyzer iirc, my dso 2250 worked with openhantek...
> When (i.e. what version/commit of openhantek) was that? it worked with the latest version, see https://github.com/OpenHantek/openhantek/issues/236#issuecomment-662283103 that was one year ago, on arch linux bad news: cannot reproduce on...
> Use QtCreator/VisualStudio for fast code navigation while stepping. thanks, will try that > I have a similar problem with the DSO-2250. same here i only see the voltage curve...
> MESA_GL_VERSION_OVERRIDE=3.2 MESA_GLSL_VERSION_OVERRIDE=150 yes! its working now (version e7e0c7b), i just have to wait 5 seconds for the GUI to load tried it before, but gave up too quick is...
> Is there a github action for that? i guess this belongs in [nur/update.py](https://github.com/nix-community/NUR/blob/master/nur/update.py#L51-L60) ```py logger.info(f"Evaluate repository {repo.name}") proc = subprocess.Popen( cmd, env=dict(PATH=os.environ["PATH"]), stdout=subprocess.DEVNULL ) try: res = proc.wait(10) except...
yepp: ``` nix-env -f . -qa \* --meta --xml \ --allowed-uris https://static.rust-lang.org \ --option restrict-eval true \ --option allow-import-from-derivation true \ --drv-path --show-trace \ -I nixpkgs=$(nix-instantiate --find-file nixpkgs) \ -I...
`make` fails with > /usr/bin/ld: developerbox_spi.o:(.bss+0x0): multiple definition of `usb_ctx'; dediprog.o:(.bss+0x8): first defined here ``` $ grep 'usb_ctx;' *.c dediprog.c:struct libusb_context *usb_ctx; developerbox_spi.c:struct libusb_context *usb_ctx; ``` workaround: ``` sed -i...
yes, [window.getComputedStyle](https://developer.mozilla.org/en-US/docs/Web/API/Window/getComputedStyle)(e [, p]) should return a 'live' object > The returned style is a **live** CSSStyleDeclaration object, which updates automatically when the element's styles are changed. e.style != getComputedStyle(e)...
> `style.innerText = '.hello { display: flex; }';` currently we must use `style.innerHTML`, see issue #3052
>> Apparently the spec says: >>> If this element is not being rendered, **or if the user agent is a non-CSS user agent**, [emphasis added] then return the same value...