This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Requires -RunAsAdministrator | |
| <# | |
| .SYNOPSIS | |
| Windows 11 25H2 - Lokales Konto Einrichtung | |
| .DESCRIPTION | |
| Dieses Skript richtet ein lokales Administrator-Konto auf Windows 11 25H2 ein | |
| und konfiguriert Registry-Einstellungen für OOBE (Out-of-Box Experience). | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ========================================= | |
| # Email to PDF Conversion Script | |
| # ========================================= | |
| # | |
| # Version: 1.0 | |
| # Script written by Warith Al Maawali | |
| # (c) 2024 | |
| # | |
| # Discord channel: https://discord.gg/KEFErEx | |
| # Twitter: http://twitter.com/warith2020 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Auto Close Slack Tab on Redirect | |
| // @namespace https://*.slack.com/archives/* | |
| // @version 0.3 | |
| // @description Auto close Slack's "We’ve redirected you to the desktop app." tabs. | |
| // @author Tim Kersten | |
| // @match https://klarna.slack.com/archives/* | |
| // @grant none | |
| // @homepageURL https://gist.github.com/io41/304b1af0f83f82dd4408612b31bb25b5 | |
| // @updateURL https://gist.github.com/io41/304b1af0f83f82dd4408612b31bb25b5/raw/auto-close-slack-tab-on-redirect.user.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name No toolbars for slack lists (Toggleable), aka Fullscreen Lists | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.6 | |
| // @description Hides toolbars for any given Slack List, toggleable with Command + . Useful when combined with Chrome's ability to turn any webpage into an App. | |
| // @author Tim Kersten | |
| // @match https://app.slack.com/client/*/lists | |
| // @grant GM_addStyle | |
| // @homepageURL https://gist.github.com/io41/7ff3dfa815dd7566237234f7b699a529 | |
| // @downloadURL https://update.greasyfork.org/scripts/501755/No%20toolbars%20for%20slack%20lists%20%28Toggleable%29%2C%20aka%20Fullscreen%20Lists.user.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| #set -F | |
| VOICE=shimmer | |
| AI_NAME=Rosie | |
| RESPONSE_FILE=~/.ai.${AI_NAME}.response | |
| ospeak -v $VOICE "Wie heist du?" > /dev/null 2>&1 | |
| read -p "$AI_NAME: Wie heist du? " NAME | |
| ospeak -v $VOICE "Hallo $NAME, ich bin $AI_NAME. Was brauchst du?" > /dev/null 2>&1 | |
| echo "$AI_NAME: Hallo $NAME, ich bin $AI_NAME. Was brauchst du?" | |
| TODAY=$(date) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Install ospeak: https://github.com/simonw/ospeak | |
| # Install llm: https://github.com/simonw/llm | |
| # Set your OpenAI key: export OPENAI_API_KEY="..." | |
| ospeak -v nova "What's your name?" | |
| read -p "Wanda: What's your name? " NAME | |
| ospeak -v nova "Hi $NAME, I'm Wanda. What's up?" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # install ripgrep & moreutils (for the sponge tool) See https://www.putorius.net/moreutils.html | |
| # On mac: brew install moreutils ripgrep | |
| # Source this file in your zsh config by adding `source .rgr.zsh` to your .zshrc | |
| function rgr() { | |
| local context_lines=2 | |
| local search="$1" | |
| local replace="$2" | |
| shift 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import board | |
| import time | |
| import pwmio | |
| print("Hello world!") | |
| class LCD: | |
| _led = None | |
| _led_max = 65535 | |
| @property |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # dvorak layout | |
| loadkeys dvorak | |
| export HOSTNAME=thinkpad | |
| export DEVICE=/dev/sda | |
| export EFI_PARTITION=/dev/sda1 | |
| export ROOT_PARTITION=/dev/sda2 | |
| # as root | |
| timedatectl set-ntp true |
NewerOlder