- Download & Install Sublime Text 3.2.2 Build 3211
- Visit https://hexed.it/
- Open file select sublime_text.exe
- Offset
0x8545: Original84->85 - Offset
0x08FF19: Original75->EB - Offset
0x1932C7: Original75->74(remove UNREGISTERED in title bar, so no need to use a license)
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 | |
| dl_and_install_build_prereq() { | |
| # Prerequisites: https://openwrt.org/docs/guide-developer/quickstart-build-images | |
| # Download and install prerequisites for compiling firmware | |
| sudo apt-get -y update && sudo apt-get -y upgrade | |
| sudo apt -y install subversion g++ zlib1g-dev build-essential git python time | |
| sudo apt -y install libncurses5-dev gawk gettext unzip file libssl-dev wget | |
| sudo apt -y install libelf-dev ecj fastjar java-propose-classpath |
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
| #!/usr/bin/env bash | |
| # This is a script that provides infinite history to get around Alfred's 3-month limit. | |
| # It works by regularly backing up and appending the items in the alfred db to a | |
| # sqlite database in the user's home folder. It also provides search functionality. | |
| # 🎉 A NEWER IMPROVED VERSION OF THIS IN WORKFLOW FORM: 🚨 | |
| # ➡️ https://alfred.app/workflows/mayjunejuly/clipboard-history-archive/ | |
| # https://www.alfredforum.com/topic/10969-keep-clipboard-history-forever/?tab=comments#comment-68859 | |
| # https://www.reddit.com/r/Alfred/comments/cde29x/script_to_manage_searching_backing_up_and/ |
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
| $path = ".\.vagrant\machines\default\hyperv\private_key" | |
| icacls.exe $path /reset | |
| icacls.exe $path /GRANT:R "$($env:USERNAME):(R)" | |
| icacls.exe $path /inheritance:r |
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
| [Trigger] | |
| Operation = Remove | |
| Type = Package | |
| Target = * | |
| [Action] | |
| Description = Clearing cache... | |
| When = PostTransaction | |
| Exec = /home/<user>/.local/bin/tools/removehook |
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
| == Adb Server | |
| adb kill-server | |
| adb start-server | |
| == Adb Reboot | |
| adb reboot | |
| adb reboot recovery | |
| adb reboot-bootloader | |
| == Shell |
Download the OpenWRT bin at Firmware OpenWrt Install URL (I renamed it to a shorter name, not sure if needed) and use the firmare update form of the TP-Link webinterface.
Since I already have a setup with a Fritz.box I wanted the Fritz.box to provide the network connection and let the TP-Link run as a server in that network. The TP-Link (WAN port) is connected to the Fritz.box (LAN port) via network cable. To access the SSH server on the TP-Link I need to allow SSH access through the firewall.
Webinterface - Network > Firewall > Traffic Rules > Open ports on router > Add
- Name: Allow-SSH-WAN
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
| #!/usr/bin/env ruby | |
| # Sizes - Calculate and sort all filesizes for current folder Includes | |
| # directory sizes, colorized output Brett Terpstra 2019 WTF License | |
| VERSION = "1.0.1" | |
| require 'shellwords' | |
| # Just including term-ansicolor by @flori and avoiding all the | |
| # rigamarole of requiring multiple files when it's not a gem... - Brett | |
| # |
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
| #!/usr/bin/python3 | |
| """ | |
| Usage: | |
| plasmasetconfig # List all widget namespaces | |
| plasmasetconfig org.kde.plasma.digitalclock # List all config groups+keys | |
| plasmasetconfig org.kde.plasma.digitalclock Appearance showSeconds true | |
| Install: | |
| chmod +x ~/Downloads/plasmasetconfig.py | |
| sudo cp ~/Downloads/plasmasetconfig.py /usr/local/bin/plasmasetconfig | |
| Uninstall: |

