- Download image
- Remove background and keep only one colour line
- Run script that will replace all non transparent colours with black
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/sh | |
| echo -e "\ | |
| ╔════════════════════════════════════════════╗ | |
| ║ BASH KEYBOARD SHORTCUTS ║ | |
| ╚════════════════════════════════════════════╝ | |
| \033[1mCursor Movement:\033[0m | |
| \033[1mCtrl + A\033[0m |← Move cursor to the \033[3mbeginning\033[0m of the line | |
| \033[1mCtrl + E\033[0m →| Move cursor to the \033[3mend\033[0m of the line |
Go to takeout.google.com and setup export
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
| from flask import Flask, request, jsonify | |
| import random | |
| app = Flask(__name__) | |
| data = {} | |
| @app.route('/') | |
| def home(): |
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
| /** | |
| * Google Apps Script code to close a Google Form when it reaches a maximum number of responses. | |
| * Author: Jakub Andrýsek | |
| * Website: https://kubaandrysek.cz | |
| * Email: email@kubaandrysek.cz | |
| * GitHub: https://github.com/JakubAndrysek | |
| * License: MIT | |
| * File: https://gist.github.com/JakubAndrysek/fbcdf78f7bc91d905d22350e7cbcdb31 | |
| */ |
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
| -- Get JSON of runnin apps + paths on macOS | |
| -- Author: JakubAndrysek + (https://www.alfredforum.com/topic/11318-solved-how-to-load-an-applications-icon-with-applescript/?do=findComment&comment=59154) | |
| -- Version: 1.0 | |
| -- License: MIT | |
| -- Link: https://gist.github.com/JakubAndrysek/2f4f4de69443fc0438ddb6320caf2349 | |
| -- Description: This script lists all running non-background processes and their paths in JSON format. | |
| tell application "System Events" | |
| set runningProcesses to (every process whose background only is false) |