My m.youtube.com greasyfork scripts https://greasyfork.org/en/users/1193838-hlorand
This file contains 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 | |
# 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 |
This file contains 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
""" | |
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 | |
========== |
This file contains 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
<?php | |
echo <<<JSON | |
[ | |
{ | |
"category" : "Népszerű termékek", | |
"products" : [ | |
{ | |
"url" : "#", | |
"name" : "Terméknév 1", |
This file contains 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 | |
# 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 |
This file contains 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
<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 | |
*/ |
This file contains 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 | |
################################## | |
# Clone every GitHub Gist | |
# Requirement: The GitHub CLI | |
# sudo apt install gh | |
################################## | |
mkdir gists | |
cd gists |
This file contains 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 | |
############################### | |
# .hu domain foglaltság ellenőr | |
# ----------------------------- | |
# Ellenőrzi a 2 és 3 betűs címek foglaltságát | |
# Egy .txt-be írja ha szabad | |
# Kommentezd ki ami nem kell | |
# | |
# Frissítsd az url-ben az ajax_nonce=???? -ot mielőtt futtatnád! |
This file contains 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
# bejelentkezik az nCore-ba és automatikusan letölti a keresés első találatának torrent file-ját | |
from webdriver_manager.chrome import ChromeDriverManager | |
from selenium.webdriver.chrome.service import Service | |
from selenium.webdriver import Chrome | |
from selenium.webdriver.common.keys import Keys | |
from selenium.webdriver.common.by import By | |
from selenium.webdriver.chrome.options import Options | |
search = "harry potter felver" |
NewerOlder