Contents can be deleted
.cache/*
/Library/Caches/*
/Library/Logs/*
Single, not used or uninstalled apps can be deleted (sandboxed apps location) from here:
| #!/bin/bash | |
| # Megkeresi a 2-3 betűs szabad rövid magyar domaineket amiből index.html reportot készít. | |
| # change working dir | |
| cd "$(dirname "$0")" | |
| # get ajax_nonce from webpage | |
| wget --output-document domain.html "https://domain.hu" | |
| AJAX_NONCE=$(cat domain.html | grep nonce | cut -d"=" -f2 | tr -d " ;" | jq --raw-output ".ajax_nonce") |
| <?php | |
| /* | |
| MP3 and YouTube Video to Apple Podcasts Feed Generator | |
| ====================================================== | |
| What is this? | |
| ------------- | |
| Apple Podcasts can receive custom podcast feed URLs (RSS feeds). | |
| You can generate your own feed from individual MP3 files and YouTube videos you want to listen to. |
Contents can be deleted
.cache/*
/Library/Caches/*
/Library/Logs/*
Single, not used or uninstalled apps can be deleted (sandboxed apps location) from here:
| #!/bin/bash | |
| # Searches for CapCut video editor (https://capcut.com) offline installer files. | |
| # If links not available, use https://web.archive.org to download executable. | |
| for va in {4..5}; do | |
| for vb in {1..20}; do | |
| for vc in {0..20}; do | |
| for build in {1647..3000}; do | |
| for extension in dmg exe; do |
| """ | |
| Converts Kindle E-reader's My Clippings.txt file into a Markdown file. | |
| Usage: place My Clippings.txt next to python file, run python file | |
| Output format: | |
| Book title | |
| ========== |
My m.youtube.com greasyfork scripts https://greasyfork.org/en/users/1193838-hlorand
| <?php | |
| echo <<<JSON | |
| [ | |
| { | |
| "category" : "Népszerű termékek", | |
| "products" : [ | |
| { | |
| "url" : "#", | |
| "name" : "Terméknév 1", |
| #!/bin/bash | |
| # list installed brew packages and list its dependencies | |
| # https://www.thingy-ma-jig.co.uk/blog/22-09-2014/homebrew-list-packages-and-what-uses-them | |
| brew list -1 | while read cask; do echo -ne "\x1B[1;34m $cask \x1B[0m"; brew uses $cask --installed | awk '{printf(" %s ", $0)}'; echo ""; done | |
| # list installed brew packages sizes | |
| # https://stackoverflow.com/questions/40065188/get-size-of-each-installed-formula-in-homebrew |
| <body bgcolor="black"> | |
| <script> | |
| /* | |
| Tegyük fel, hogy étteremben kaját rendelünk. Ez vagy megjön, vagy nem. | |
| Attól függően, hogy megjött-e vagy sem különbözőféleképp szeretnénk reagálni. | |
| A reakciókat két függvény írja le: a siker() és a bukas(). Mindkettő a | |
| saját üzenetén kívül képes extra üzenetet fogadni | |
| */ |