Skip to content

Instantly share code, notes, and snippets.

View Ziltosh's full-sized avatar
🏠
Working from home

Nicolas Ziltosh

🏠
Working from home
  • Nature et Technologie
  • France / Montpellier
View GitHub Profile
{
"version": "0.0.8",
"notes": "See the assets to download this version and install.",
"pub_date": "2024-06-27T05:12:10.282Z",
"platforms": {
"linux-x86_64": {
"signature": "dW50cnVzdGVkIGNvbW1lbnQ6IHNpZ25hdHVyZSBmcm9tIHRhdXJpIHNlY3JldCBrZXkKUlVUR20rSzJES1QwbUVaNnBxcyttdXJxclFjRmZIbHkyblg3TUZ3cUdzcjJTYXBIaEViM3VYdnFiM0xvOEZuQ2sxWWtLaFU4ZDY3VmJPRG9yZnRhTDMyNWs2bjVzNkhsNmdZPQp0cnVzdGVkIGNvbW1lbnQ6IHRpbWVzdGFtcDoxNzE5NDgzMjMyCWZpbGU6VHJhZGluZyBCb3QgTWFuYWdlci5hcHAudGFyLmd6Ck1CUEgyWlB2UnBtcHdTaHdTdGM5dVR2dlF4TUhvdnlNMzIvVVJBRE5uc1JQQjB0Z2J0WmV2WGF6VDZSNWExeDd2eGtxWmNrbnRwY241UXZtVWFhWURRPT0K",
"url": "https://github.com/Ziltosh/trading-bot-manager/releases/download/app-v0.0.6/trading-bot-manager_0.0.6_amd64.AppImage"
},
"windows-x86_64": {
@Ziltosh
Ziltosh / todo.md
Created December 9, 2022 10:37
iTerm secure input blocking

See https://alexwlchan.net/2021/04/secure-input/

Script

#!/usr/bin/env python
"""
If macOS detects that you're typing sensitive data (e.g. a password), it prevents
other apps from reading keystrokes.  This is normally a good thing, but it's mildly
annoying if you use an app like TextExpander, and macOS doesn't notice that it's
no longer using Secure Input.  Then your keyboard shortcuts stop working!
@Ziltosh
Ziltosh / reinstall_watchman.sh
Created November 11, 2022 12:57
[OSX] Repair watchman operation not permitted
watchman shutdown-server && brew uninstall watchman && brew install watchman
@Ziltosh
Ziltosh / restart_coreaudio.sh
Created November 4, 2022 20:20
[OSX] Restart audio service
sudo kill -9 `ps ax|grep 'coreaudio[a-z]' | awk '{print $1}'
@Ziltosh
Ziltosh / update_internetbs.sh
Created November 4, 2022 14:49
[OSX] Shell script to update internetbs dynamic hostname with IPV6
#!/bin/bash
IP=$(/sbin/ifconfig en0 | awk '/inet6/{print $2}' | tail -1)
RETOUR=$(curl "https://dyndns.topdns.com/update?hostname=***DOMAIN***&username=***USERNAME***&password=***PASSWORD***&myip=$IP")
echo $RETOUR