January 18, 2023
latest_python3.py
11.6 KB
The script to check/download the latest version of Python 3, either source or binary depending on current OS.
github.com/.../latest_python3.py
On Linux, it can also build and install python to
On Windows, it can install to the default per-user location (
github.com/.../latest_python3.py
On Linux, it can also build and install python to
$HOME/.local
.On Windows, it can install to the default per-user location (
%LOCALAPPDATA%\Programs
for python 3.11, see docs.python.org)pip install lxml packaging
before executing :)January 31, 2023
Not much here for now. Older posts are all in Russian in @logicdaemon_pubru
February 1, 2023
With sorrow, I've found out that KC Softwares is shutting down :-( SUMo and DUMo are no longer working, and they will never work again.
There are no replacements for them yet. I’ve temporarily started using https://github.com/NexovaDev/UpdateHub, but it only recognizes a couple of dozen programs out of several hundred I have installed/unpacked in my system :-(
There are no replacements for them yet. I’ve temporarily started using https://github.com/NexovaDev/UpdateHub, but it only recognizes a couple of dozen programs out of several hundred I have installed/unpacked in my system :-(
GitHub
GitHub - NexovaDev/UpdateHub: UpdateHub is an app that simplifies updating software on your computer. A user-friendly interface…
UpdateHub is an app that simplifies updating software on your computer. A user-friendly interface allows you to quickly check for and install available updates for your operating system and applica...
November 6, 2023
Just wrote a simple IMAP4 backup script, which is mostly a boilerplate of a CLI with a config file, which shows expected locations of the config when invoked with
To use with gmail, create app password first in https://myaccount.google.com/apppasswords
--help
.To use with gmail, create app password first in https://myaccount.google.com/apppasswords
GitHub
PersonalUseScripts/misc/py/imap_download.py at master · LogicDaemon/PersonalUseScripts
scripts for my personal use. Nothing private, but barely useful for others - LogicDaemon/PersonalUseScripts
February 8, 2024
February 20, 2024
commit_message.py
20.4 KB
Here on Friday and this morning, I whipped up a commit message generator based on git diff, using gpt4all (tested with
mistral-7b-openorca.gguf2.Q4_0.gguf
but it might work with other models too).April 1, 2024
"Notification Light - aodNotify"
https://play.google.com/store/apps/details?id=com.jamworks.aod.notificationlightled
I've got Pro. Each time I unlock my device now after a delay, I have a popup at bottom saying that I've already purchased something. That sounds extremely sus. * No dark theme in the app settings; even though I rarely open them, it shouldn't be hard to to, and considering the app was made with OLED in mind, completely black background would help too. * When it asks for feedback, if I leave 3 stars in the app, it does not proceed to Google play, so consider reviews here scewed.
https://play.google.com/store/apps/details?id=com.jamworks.aod.notificationlightled
I've got Pro. Each time I unlock my device now after a delay, I have a popup at bottom saying that I've already purchased something. That sounds extremely sus. * No dark theme in the app settings; even though I rarely open them, it shouldn't be hard to to, and considering the app was made with OLED in mind, completely black background would help too. * When it asks for feedback, if I leave 3 stars in the app, it does not proceed to Google play, so consider reviews here scewed.
Google Play
Notification Light - aodNotify - Apps on Google Play
Notification light / LED for your phone! Edge lighting and more!
April 20, 2024
Apparently, WSA works well on Windows 10 https://github.com/YT-Advanced/WSA-Script/
GitHub
GitHub - YT-Advanced/WSA-Script: Integrate Magisk root and Google Apps into WSA (Windows Subsystem for Android) with GitHub Actions
Integrate Magisk root and Google Apps into WSA (Windows Subsystem for Android) with GitHub Actions - YT-Advanced/WSA-Script
April 29, 2024
Found out about Firefox's
about:config
option signon.includeOtherSubdomainsInLookup
. What a bliss!April 29, 2024
logicdaemon/tg-archive on github
forked from knadh/tg-archive
My fork is fixed to work on windows with python 3.12 now.
forked from knadh/tg-archive
My fork is fixed to work on windows with python 3.12 now.
GitHub
GitHub - LogicDaemon/tg-archive: A tool for exporting Telegram group chats into static websites like mailing list archives.
A tool for exporting Telegram group chats into static websites like mailing list archives. - LogicDaemon/tg-archive
May 13, 2024
Finally someone is making sense about LLMs
https://youtu.be/krixaEhLnlA
https://youtu.be/krixaEhLnlA
YouTube
Degenerative AI… The recent failures of "artificial intelligence" tech
Let's take a look at 5 ways AI tech has failed us recently. Find out the what might be in store for the future of AGI now that GPT-5 training has started.
Use Codeium for free forever https://codeium.com/?referrer=fireship
#tech #ai #thecodereport
💬…
Use Codeium for free forever https://codeium.com/?referrer=fireship
#tech #ai #thecodereport
💬…
May 31, 2024
😻https://brython.info/
please click 👍 on the first post https://github.com/microsoft/vscode-python/issues/19415
please click 👍 on the first post https://github.com/microsoft/vscode-python/issues/19415
July 8, 2024
LogicDaemon-pub
logicdaemon/tg-archive on github forked from knadh/tg-archive My fork is fixed to work on windows with python 3.12 now.
now it works on python 3.13 and keeps the original filenames (with the message id prefix)
October 18, 2024
There's this thing—a passphrase generator written in JavaScript—that I've been using for ages: https://www.fourmilab.ch/javascrypt/pass_phrase.html.
In addition to generating passphrases, it can also be really handy to generate email addresses for my domain.
I got tired of opening a new browser tab and manually copy-pasting from there, so I put together a couple of scripts (inspired by that very JavaScrypt generator and its wordlist):
email.ahk — uses the clipboard as a suffix and types the generated email address directly on the keyboard. It's meant to be assigned to a hotkey.
pass_phrase.ahk — a GUI-based script that generates an email address and a set of words in a text field, ready to be copied.
Both scripts read the file
You'll also need wordstab.txt from the same repository for the scripts to work.
In addition to generating passphrases, it can also be really handy to generate email addresses for my domain.
I got tired of opening a new browser tab and manually copy-pasting from there, so I put together a couple of scripts (inspired by that very JavaScrypt generator and its wordlist):
email.ahk — uses the clipboard as a suffix and types the generated email address directly on the keyboard. It's meant to be assigned to a hotkey.
pass_phrase.ahk — a GUI-based script that generates an email address and a set of words in a text field, ready to be copied.
Both scripts read the file
%LocalAppData%\_sec\EmailSuffix.txt
and append the first line of that file to the generated email address.You'll also need wordstab.txt from the same repository for the scripts to work.
November 28, 2024