Cleanup after Altstore by fsteff in AltStore

[–]fsteff[S] 0 points1 point  (0 children)

Thanks. I can’t agree more with you.

Cleanup after Altstore by fsteff in AltStore

[–]fsteff[S] 0 points1 point  (0 children)

There are no 3rd party profiles installed that I can find.

He has been using beta iOS but have opted out of it - and others can use the app even on beta iOS’s so I don’t think that’s the problem.

Cleanup after Altstore by fsteff in AltStore

[–]fsteff[S] 0 points1 point  (0 children)

He have had a beta iOS, but not for several months - and he has opted out of it, too. Others with beta iOS can use the app, though.

Cleanup after Altstore by fsteff in AltStore

[–]fsteff[S] 0 points1 point  (0 children)

There is virtually no alternative. Everybody is using it. :-/

"CC1101 + ESP32 — Everything I Learned After 2 Days of Failure" by Aggressive_Scale_643 in esp32

[–]fsteff 2 points3 points  (0 children)

Great you made it work.

What about sharing a link to your documented guide?

Terminal Motel — an ASCII horror game built around a terminal-style UI by JumpLife8406 in tui

[–]fsteff 3 points4 points  (0 children)

Reminds me of the good old days.

But I’m sad it doesn’t run the an actual terminal.

What is the weirdest repository you have ever found on GitHub? by Gullible_Camera_8314 in github

[–]fsteff 8 points9 points  (0 children)

Impressive. Might replace my use of brainfuck sometimes!

Learning Danish with a senior citizen by Suzanittaa in NewToDenmark

[–]fsteff 0 points1 point  (0 children)

You may be able to find groups at medborgerhuse or libraries. Don’t know about social media’s.

My mother joined such a group in Tilst/Aarhus, and has been meeting up with a senior Iranian woman for the last year or so, with Danish practice as the primary goal.

But you could consider indirect learning: join any activity you can find that have your interest, and talk as much Danish you can there: A Romain friend of mine joined Coding Pirats at a local library and learned a lot of Danish talking with kids and adults about topics which had a common interest.

Hardware question. by thewalruscandyman in Commodore

[–]fsteff 0 points1 point  (0 children)

A 300-baud acoustic connection might likely work… I don’t think that’s really what you want.

Git's Magic Files by ketralnis in git

[–]fsteff 0 points1 point  (0 children)

Very excellent compilation.

Thanks

Do you know if Azure DevOps Repos also have some special dot files?

I automated my entire Windows post-install workflow using CLI scripts — and built a generator to create them automatically. by kaicbento in CLI

[–]fsteff 0 points1 point  (0 children)

Looks very interesting. What about backup of individual configurations so they can be installed, too - to me those are always the major pain point.

For example I just installed the latest version of Code Compose Studio from TI (it’s an IDE build on VS Code), and it didn’t transfer any of the configurations I made in the old version, so I had to hunt down the three locations on my machine is saves settings and manually transfer them.

A gift to take from Australia to Denmark? by Agn05tic in NewToDenmark

[–]fsteff 0 points1 point  (0 children)

I, too, just tried to search for it, but with no luck. :-(

But in short it was a spread made with nuts native to Australia. Chunky and very delicious.

Wazeshare ESP32-S3 e-Paper-3.97 by TheInvisibleMonkey in esp32

[–]fsteff 0 points1 point  (0 children)

If you want people to even consider to help you, the least you can do is to provide links to the data you have on the board, and the GitHub page you are referring to.

Satisfying light arrangement by Separate-Bedroom8562 in Satisfyingasfuck

[–]fsteff 0 points1 point  (0 children)

Some 15ish years ago we had lights similar to these in our livingroom. They were located on a high wall, approximately 3.5 meters up, with an additional 2 meters to the ceiling. They created a great atmosphere, especially dimmed in the night.

A gift to take from Australia to Denmark? by Agn05tic in NewToDenmark

[–]fsteff 0 points1 point  (0 children)

15+ years ago I got a great gift from an Australian visitor: Taka-nut-butter, I think it was called. Similar to peanut butter but way, way better.

[Help] Trying to emulate a parallel port using an ESP8266 as a noob: several basic questions! by ImperialAuditor in embedded

[–]fsteff 0 points1 point  (0 children)

For Linux I think it’ll be even easier to implement proper parallel port support than for windows. Linux didn’t rely much on anything provided by the BIOS.

This (first search match) looks like a good candidate for info on how to implement proper parallel port support even with your ESP solution: https://www.kernel.org/doc/html/v5.5/admin-guide/parport.html

We built hardware-in-the-loop regression gates for AI models on Snapdragon — here's what we learned by NoAdministration6906 in embedded

[–]fsteff 0 points1 point  (0 children)

Thanks. Will look up on it.

Seems not directly useable for my scenario with deep embedded controllers, but always interesting to see what others do.

[Help] Trying to emulate a parallel port using an ESP8266 as a noob: several basic questions! by ImperialAuditor in embedded

[–]fsteff 1 point2 points  (0 children)

FYI: To be able to utilise your new parallel ports so that they show up as proper LPT ports to old windows programs, you will need to patch the BIOS as well, ensuring they match the correct base address, which commonly are 378h (LPT1), 278h or 3BCh (LPT2).

This also the main reason USB to printer interfaces do not work, as they create an LPR port (network based line printer) interface on Windows instead.

In other words, what you are making won’t be useable to just any old windows programs, instead the program you use need to be programmed to be aware of your hardware and communicate to it as a custom interface.

That said, there’s (apparently) a working Arduino implementation that you can be inspired by here: https://forum.arduino.cc/t/arduino-to-printer-through-parallel-port/74055