Skip to content

Instantly share code, notes, and snippets.

@maci1011
maci1011 / script-facebook-group-members-remover.js
Last active February 22, 2023 10:52
Facebook js script for removing all group members
// 1 - Go in the group members page and load 200/300 members
// 2 - Paste this in the console and wait
// 3 - Reload the page and do it again
var FBGMR = (function() {
var FBGroupMembersRemover = {},
_id;
@maci1011
maci1011 / vlc_converter_flac_to_mp3.sh
Last active June 22, 2022 03:59
Linux / Mac Osx - Bash Script - Convert files of a directory - from flac to mp3 - with VLC.
#!/bin/sh
# cd to/your/directory before...
######################## Transcode the files using ... ########################
acodec="mp3"
ab="192"
channels="2"
samplerate="44100"
mux="raw"