Skip to content

Instantly share code, notes, and snippets.

View sabalach's full-sized avatar

Sabal Ach sabalach

View GitHub Profile
let follzCounter = 0;
function folllz() {
function rand(min, max) {
return Math.floor(Math.random() * (max - min + 1) + min);
}
var items = document.getElementsByTagName("*");
var stop = "";
for (var i = 0; i < items.length; i++) {
if (items[i].innerHTML.indexOf("Follow") === 0 && items[i].innerHTML.indexOf("Following") && items[i].innerHTML.indexOf("Followers")) {
  1. Piano Covers of Pop Songs: https://open.spotify.com/user/henryecker/playlist/4SBOdi7IMfCrYKZqCqtuXA?si=FL1axIJTTTqYWXYqS6QICw

  2. Extreme focus coding music: Primarily EDM with little to no vocals https://open.spotify.com/user/nebosite/playlist/0hy2h4wf2A3JWvMzK48REE?si=KlMRgPm8QfiC6N9Z-A6jAQ

  3. High Energy programming mix: Most songs have vocals but good for brainstorming portions. https://open.spotify.com/user/jhardinee/playlist/022CloUnijfD00ziUEXJ66?si=WCKBLFEbQmmym-0DNgFLRA

  4. Dubstep study: Dubstep with no vocals

@sabalach
sabalach / install.php
Last active June 28, 2023 14:44 — forked from tschoffelen/install.php
A simple PHP script that automatically downloads and unzips the latest version of Wordpress in the current directory (./), so that I don't have to download it and upload it to my server through FTP manually.
<?php
function curl_get_file_contents($URL)
{
$c = curl_init();
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($c, CURLOPT_URL, $URL);
$contents = curl_exec($c);
curl_close($c);
# initialization file (not found)