##Create a new repository on the command line
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin git@github.com:alexpchin/.git
| #!/usr/bin/env xdg-open | |
| # Make sure the Python script has +x | |
| [Desktop Entry] | |
| Version=1.0 | |
| Name=Imgur Uploader | |
| Exec=/path/to/imgur_upload %U | |
| Terminal=true | |
| Type=Application |
##Create a new repository on the command line
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin git@github.com:alexpchin/.git
No, seriously, don't. You're probably reading this because you've asked what VPN service to use, and this is the answer.
Note: The content in this post does not apply to using VPN for their intended purpose; that is, as a virtual private (internal) network. It only applies to using it as a glorified proxy, which is what every third-party "VPN provider" does.
| #!/usr/bin/env bash | |
| # consider if the server is passing a file like | |
| while true; do nc -l 10000 <<<"hi"; done | |
| # on our client side, we can consume this using nc | |
| nc 10.0.0.1 10000 |
| Block Macro in Microsoft office using Windows registry keys | |
| ============================================================ | |
| (ref - https://www.slipstick.com/outlook/block-macros-office-20132016/) | |
| Office 2016 | |
| ------------ | |
| HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\office\16.0\word\security | |
| HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\office\16.0\excel\security | |
| HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\office\16.0\powerpoint\security | |
| In each key listed above, create this value: |
| . | |
| .. | |
| ........ | |
| @ | |
| * | |
| *.* | |
| *.*.* | |
| 🎠|
| Hi All! | |
| I've recently launched a tool that wraps many of the commands here with a user interface. This desktop application is currently available for macOS. There's a roadmap outlining planned features for the near future. | |
| Feel free to request any features you'd like to see, and I'll prioritize them accordingly. | |
| One of the most important aspects of this application is that every command executed behind the scenes is displayed in a special log section. This allows you to see exactly what’s happening and learn from it. | |
| Here's the link to the repository: https://github.com/Pulimet/ADBugger | |
| App Description: | |
| ADBugger is a desktop tool designed for debugging and QA of Android devices and emulators. It simplifies testing, debugging, and performance analysis by offering device management, automated testing, log analysis, and remote control capabilities. This ensures smooth app performance across various setups. |
| @echo off | |
| setLocal enableDelayedExpansion | |
| :: === ADAPTING THIS TEMPLATE (for help, see bottom or invoke with "help") === | |
| :: * Step 1 of 3: CLONE THIS BATCH FILE and give it a name of your choice. | |
| :: * Step 2 of 3: Set the TARGET LANGUAGE on the next line. | |
| :: One of: "ps1" "vbs" "js" (PowerShell, VBScript, JScript) | |
| :: OR: "all" (runs ALL embedded snippets, in sequence) | |
| :: NOTE: To add support for a new language, search for "NEW LANGUAGE" | |
| :: below and follow the instructions there. | |
| set "WRAPPER_LANG=ps1" |