Iván Ávalos

Results 53 comments of Iván Ávalos

It is not the wiring. I soldered the wires again and made sure they were working correctly, and I still get the SPI write errors, that only get fixed when...

I changed `loraChipRestIntervalSeconds` to 20, so that every 20 seconds it resets (I connected the pin). I have received fewer SPI write errors (for some reason), and everytime the chip...

I seriously didn't remember this. 😂 It's been almost six years already!

Look, cylonid, people here are trying to give you money. You made something good, people want to support your work, and that's about it. You don't need to spend a...

I'm experiencing this too with Emacs 29.0.91. It makes writing code very annoying, especially with Dart, since Dart has labels at the end of every nested structure, and while typing,...

It works, but the order of the tabs is not saved.

> Of course I mainly develop this for myself, and XMLRPC support or ActivityPub are aspects that I need for microblog to be useful to me. I am not an...

Also, make sure to also check the fix for localhost deployments that I also implemented in my fork: ## config-dist.php: ```diff - 'url' => 'http'.(!empty($_SERVER['HTTPS']) ? 's' : '').'://'.$_SERVER['SERVER_NAME'].dirname($_SERVER['SCRIPT_NAME']), +...

> Ok I've figured that one out as well. FYI Cookie does not get set because of this check (found in 3 files) `$domain = ($_SERVER['HTTP_HOST'] != 'localhost') ? $_SERVER['HTTP_HOST']...

That's exactly what I was going to suggest! The `until` is very useful. The Kotlin stdlib `forEach` is very useful combined with that `until`: ```kotlin (0 until 100).forEach { it...