home.social

Search

1000 results for “circfruit”

  1. The f**ing Samsung scx-3405w works on MacOS only with driver for ML2070! After 2y gathering dust because the actual model driver doesn't work, an obscure reddit post finally solved the mystery.

  2. After two years of on and off the project, I sent the wifi card I’m designing. I put a ROM but it’s not fully wired as it should be. on the other hand should be ok, since it's tested on breadboard/protoboard. One more project close to be “finished”

  3. ok, so doesn't actually run bash upon start. If I run /bin/bash, all my usual environment is working.

  4. How to “source venv/bin/activate” in in through TRAMP ssh session? It doesn’t seem to find ‘source’. It’s highly specific but it’s annoying that I can’t do that.

  5. TIL you can drag and drop files from MacOS finder into and they will copy!

  6. I was just looking at “man ls” (as one should) and found this. So ls has a special flag for ?

  7. @blakespot i was thinking recently if they allow something like to takeower the voice recognition and execute shortcuts(the native app), it would be much more useful than Siri.

  8. So I’ve built something not related to the usual retrocomputing stuff I publish here. It was provoked from my daughter who likes colouring. I’ve built a web app for making coloring pages with AI.

    I know there are few similar ones already, but I aimed to make it as simple as possible with least html clutter as possible. Also no subscriptions, just add credits and use them whenever you like.
    I hope there are parents who will like it 😁

    outlinerobot.com

  9. I just found this blogpost, which is really a gem. It explains how you can do a led blink in assembly on Very usefully when I figure out which register to poke when experimenting with . I'm not great at reading datasheets. hexdhog.com/posts/bare-blinky/

  10. I guess it’s not today. Couldn’t find why strobe on port wouldn’t go low on pr#1 (😂how to escape that)

  11. Ok, here's the cherry of the cake 😁 T-deck with very basic GUI messenger over LoRa. youtu.be/yFDQxUWxRlw

  12. Finally! Managed to bind keyboard layout change to work with Emacs on Mac OS with the same key. Using , I map CapsLock (my lang change on MacOS) to Option-o, but just for . Then in Emacs I bind M-o (keymap-global-set "M-o" 'toggle-input-method).

  13. I didn’t believe skipping stdout on modern machine will make difference in speed. Adding -q (quiet) parameter to or makes a difference 😁

  14. While doing the challenge, I went through P-LISP manual thoroughly. Here’s an interesting find. The disk image has an example program for called Eliza which impersonates a psychiatrist and the user is the patient. That’s 1981 so it’s more of a pattern machine and if/else statements (COND for p-lisp 😁)

  15. So, two days digging into the manual which @rlonstein found, experimenting and comparing with the contemporary Elisp, I’ve managed to complete the challenge in 1981 P-Lisp. It was very hard, but it is so personally rewarding! Writing the code on my Mac and then transferring the text file with AppleCommander to the emulator certainly sped up the iterations.

  16. Going further with my quest, I decided to find the oldest I could and do the challenge in on that. So here’s Emacs version 18.55 from 1991 on FreeDos under DosBOX on my M1 Mac 😂😂

  17. @morenonatural ok. So I found what is the problem actually. It seems that if there is no `git init`ed project in the directory AND there is a subdirector(ies) with 1000s of files, thinks that it should pass everything through the loaded LSP (no matter which one). This overloads and it hangs. The solution is to always `git init` and put the path of the 1000s files directory in `.gitignore` so doesn’t pass those to the LSP server. This knowledge cost me few days 😭

  18. Question about and .❓ I have setup pylsp with eglot. Sometimes (not sure why) pylsp timeouts when doing autocompletions. This breaks eglot and it doesn’t recover from this timeout. I have to manually reconnect it to get the functionality again. I’m not sure why pylsp (rather jedi-completion) timeouts because it’s locally on my system. Does anyone have similar timeout problems and how do you solve it? If I increase the timeout wait, Emacs just hangs.

  19. Oh, wow! I would have never suspected. This is the offending config line, causing the memory leak and freeze. I started commenting configs one by one and this came up as the cause for the freeze. Nothing to do with Tramp. I’m not sure what’s going on in that package as I’m no elisp expert.

  20. New mini harvest from my garden. I love the smell of camomile tea.

  21. Things you won’t see in one picture: new for my serial card and a glass of juice 😁 It’s that time of the year.

  22. We’ve got somewhat of split in our network. A couple of the infrastructure node owners think they should run with local_only option of their routers and insist on knowing who runs what node. If the node doesnt identify itself by actual owner, it gets banned from the infrastructure nodes. I, on the other hand, am proponent of not doning such private like control to an open network. What do you think? Is there such discussions in your meshes? How do you solve this?

  23. At some point in my life I need to read this tutorial on and make my own Risc-V processor 😁 I’ve bought this cheap board from Aliexpress for no reason, so it would be useful for such project github.com/BrunoLevy/learn-fpga

  24. ... and this is how you light up a led on rp2040 ( pico) in There's something beautiful in poking registers directly. Nevermind the decimal experiment at declaring the first const, I’m still learning

  25. Whoa success! I managed to send audible voice msg from t-deck #reticulum to MeshChat. Three days struggle 😭 The culprit was the tight loop of screen refreshing, keyboard poll, LoRa poll and i2s mic capture. It turns out esp32 core was skipping bytes from the mic which caused the codec to encode partial voice, causing inaudible msg. I gave preference to i2s bus and now the msgs are good enough and go over LoRa to meshchat successfully. Now i have voice and image transport on t-deck!

  26. Whoa success! I managed to send audible voice msg from t-deck #reticulum to MeshChat. Three days struggle 😭 The culprit was the tight loop of screen refreshing, keyboard poll, LoRa poll and i2s mic capture. It turns out esp32 core was skipping bytes from the mic which caused the codec to encode partial voice, causing inaudible msg. I gave preference to i2s bus and now the msgs are good enough and go over LoRa to meshchat successfully. Now i have voice and image transport on t-deck!

  27. Whoa success! I managed to send audible voice msg from t-deck #reticulum to MeshChat. Three days struggle 😭 The culprit was the tight loop of screen refreshing, keyboard poll, LoRa poll and i2s mic capture. It turns out esp32 core was skipping bytes from the mic which caused the codec to encode partial voice, causing inaudible msg. I gave preference to i2s bus and now the msgs are good enough and go over LoRa to meshchat successfully. Now i have voice and image transport on t-deck!

  28. Whoa success! I managed to send audible voice msg from t-deck #reticulum to MeshChat. Three days struggle 😭 The culprit was the tight loop of screen refreshing, keyboard poll, LoRa poll and i2s mic capture. It turns out esp32 core was skipping bytes from the mic which caused the codec to encode partial voice, causing inaudible msg. I gave preference to i2s bus and now the msgs are good enough and go over LoRa to meshchat successfully. Now i have voice and image transport on t-deck!

  29. I spent all day yesterday (I shouldn’t have): 1. Trying to resolve microreticulum transport issue. I can’t test/fix properly unless I reduce the dbm of tree nodes and simulate network and not going up and down the roof all the time; 2. Tried to implement voice msg in t-deck #reticulum micropython firmware. I got the receiving part ok on codec2 3200, but can’t make it send proper voice. There’s some weird math going on which I can’t fix right now. I suspect the mic capture quality is bad.

  30. I spent all day yesterday (I shouldn’t have): 1. Trying to resolve microreticulum transport issue. I can’t test/fix properly unless I reduce the dbm of tree nodes and simulate network and not going up and down the roof all the time; 2. Tried to implement voice msg in t-deck #reticulum micropython firmware. I got the receiving part ok on codec2 3200, but can’t make it send proper voice. There’s some weird math going on which I can’t fix right now. I suspect the mic capture quality is bad.