

Yay, welcome to the team.
PS: Are you on !emacs@programming.dev already? Maybe with new people it will have more activity.


Yay, welcome to the team.
PS: Are you on !emacs@programming.dev already? Maybe with new people it will have more activity.


kde connect allows you to sync the (text) clipboard between a pc and a smartphone that are in the same network.


One Japanese anime (Ascendance of a Bookworm) uses German for the names of the gods.


Some minecraft mods had/have a similar problem. They use javas serialization stuff for sending stuff between client and server. There is mod that partially fixes this by only allowing whitelisted classes to be deserialized.
https://downdetector.com/ still works even when cloudflare is down.
I know this under the name sleepSort.
If you click links in the readme (i only tried the last two ones) you get a dmca takedown message.


Btw that seems to be a fork/reupload of a DMCA’d repo.


vim -> back to emacs


First of all, review it yourself. By reading it again and thinking about it you might find some stuff. After that try static analysis tools like olap said (even some lsp (language server protocol) integrated in your editor can give you good tips). Only after those two options i would even consider using llms, but finding a community of people that are about your language/framework can yield better results. Especially if it is a small project.


in my .gitconfig i have
[alias]
glg = log --oneline --decorate --all --graph
This allows me to get a quick overview over all branches with pushes that are recent enough for most cases.


Mine is a bit longer and includes automatically removing unused dependencies:
alias update='sudo apt update && sudo apt upgrade && flatpak update && sudo apt autoremove --purge && flatpak remove --unused --delete-data && notify-send '\''update done'\'''


for 1: kdeconnect or warpinator


For the conversion to lossy, git smudge/clean filters might work. Afaik git-lfs works with them. In general git-lfs might be something interesting for your use case.


You probably want something like the array variables from bash. You can find out more about them in the manpage, in the Arrays section.
Since you are using sh, you don’t have direct access to them. If you want to use them, change the shebang to .
Including the people that only used computercraft?


Jetbrains IntelliJ IDEA for Java programming, emacs for everything else.


In case you have a fritz!box router, take a look at fritz!app fon and see if that is what you want.
My smallest python program was for filtering wifi names according to patterns. I hab collected some wifi names atomatically via sone other programs, and had them sitting in a text file with one name per line (a very simple data format). I wanted to find interesting names out of it, but didn’t want to spend much time scrolling through hundreds of names following the same pattern, like ISP-12C5, ISP-3F4B, … So i invented my own pattern syntax for very simple patterns, (ISP-%4Ax for ISP- followed by 4 hexadecimal digits with only capital letters), and wrote up a python script that read patterns from a file, and then filtered the standard input against those patters. any line not matching any pattern was then printed.
In short it was a small project that i wanted to do, with simple data formats that i could easily parse and relatively simpel logic that i had ideas how to implement while designing the patterns. And i had some data to test it on.
So my advice is similar to the other people here: look for things you are interested in or you need that sound simple to program, and then go on and program one of them. No problem is too small to make a program for.