Skip to content

Instantly share code, notes, and snippets.

View Froosk's full-sized avatar
😀
Set status

Froosk

😀
Set status
View GitHub Profile
@Froosk
Froosk / flame
Created November 14, 2018 01:18
Flameshot FTP script for Ubuntu/Debian
#!/bin/bash
_notify() {
notify-send --expire-time 2000 \
--app-name 'Flameshot Uploader' \
--icon 'flameshot' \
"$1" "$2"
}
username="" # The username on the server you want to upload to
@Froosk
Froosk / jsfuck.js
Created February 14, 2018 21:53
JSFuck Description Document
// JSFuck
// Gaining access to letters
// The way to gain access to a letter is to use arrays to get a letter.
"abc"[0] === "a"
// Strings
[]+[] // ""
// adding +[] to the end makes it a string.