Mathias Hasselmann

Results 21 comments of Mathias Hasselmann

About the octoprint issues: The original firmware lists SD card files with leading slash, but when octoprint tries to print files discovered that way this fails because the firmware then...

I see the complexity that arises from allowing this feature in both directions: To increase visibility, but also to reduce visibility. For reducing visibility there really is a lot of...

One of the primary goals of Mastodon was it to stop online abuse and harassing. Moderating abusive comments is an essential tool for reaching this goal. Therefore I'd really like...

Your example actually demonstrates perfectly why `default` is not needed at all: As you return from every known case you can just handle the unexpected or default case outside of...

@BenjamenMeyer Nobody argues against handling errors. My problem really is that `default:` causes more errors than it prevents. It seemed like a good idea when introduced, but time has prooven...

> Imagine there's another non-default case that doesn't return. @jwakely I'd call such inconsistency pretty terrible code. It wouldn't pass my code review if I see it. I'd only accept...

There also occur warnings when trying to "pin" 3rd-party platform libraries like ESP8266HTTPClient: ``` Downloading library [email protected]... Library [email protected] not found... Error initializing instance: Library 'ESP8266HTTPClient' not found ``` Arduino-cli...

Heute hat es @marhei erwischt, der so sein Projekt nicht zu Ende bekommt. 😉 #FensterAuf-Sonderzug für @marhei Marcel fehlt auf seiner Streckenkarte noch die Strecke von 🇲🇦 Tanger-Maritime nach 🇲🇦...

Have to admit, that I've never worked on a Electron app before, but hey: "It's just Javascript!". Therefore I'd like to investigate the problem myself, so that I can hopefully...

When trying to load `drivelist.node` via Python's ctypes library I get: ``` OSError: /home/mathias/Sources/arduino-ide/node_modules/drivelist/build/Release/drivelist.node: undefined symbol: _ZN2v86String11NewFromUtf8EPNS_7IsolateEPKcNS_13NewStringTypeEi ``` `c++filt` says, this is `v8::String::NewFromUtf8(v8::Isolate*, char const*, v8::NewStringType, int)` missing. Seems like...