Skip to content

Instantly share code, notes, and snippets.

View opastorello's full-sized avatar

Nícolas Pastorello opastorello

View GitHub Profile
@jauderho
jauderho / gist:6b7d42030e264a135450ecc0ba521bd8
Last active July 18, 2024 16:11
HOWTO: Upgrade Raspberry Pi OS from Bullseye to Bookworm
### WARNING: READ CAREFULLY BEFORE ATTEMPTING ###
#
# Officially, this is not recommended. YMMV
# https://www.raspberrypi.com/news/bookworm-the-new-version-of-raspberry-pi-os/
#
# This mostly works if you are on 64bit. You are on your own if you are on 32bit or mixed 64/32bit
#
# Credit to anfractuosity and fgimenezm for figuring out additional details for kernels
#
@leidison
leidison / ubuntu20.04_php7.4_sqlsrv.sh
Created February 9, 2022 00:55
Install PHP 7.4 and SQLSRV on Ubuntu 20.04
#!/bin/bash
#ubuntu 20.04
#php7.4
# install php ppa
apt -y install software-properties-common
add-apt-repository ppa:ondrej/php -y
apt update
@rohitsahu4
rohitsahu4 / udemyCompleter.js
Created May 16, 2021 13:52
Udemy course video auto complete bot. ( Finish your udemy course fast by pasting this script in dev console. ) (content like articles may need to be views seperatly ).
copy
var s;
function isArticle(){
return document.querySelector('[class*="curriculum-item-link--is-current"]').querySelector('[class="udi udi-article"]')
}
function foo(){
var video = document.querySelector('video');
@tajnymag
tajnymag / tinder.user.js
Last active July 7, 2024 15:03
Tinder Deblur Userscript (ARCHIVED and DEPRECATED, see https://github.com/tajnymag/tinder-deblur)
// ==UserScript==
// @name Tinder Deblur
// @namespace Violentmonkey Scripts
// @match https://tinder.com/*
// @grant none
// @version 1.4
// @author Tajnymag
// @downloadURL https://raw.githubusercontent.com/tajnymag/tinder-deblur/main/tinder.user.js
// @description Simple script using the official Tinder API to get clean photos of the users who liked you
// ==/UserScript==