Skip to content

Instantly share code, notes, and snippets.

View notnian's full-sized avatar
🌠
Aware

Notnian notnian

🌠
Aware
View GitHub Profile
@notnian
notnian / 33rap.js
Last active February 4, 2022 10:22
Ligne javascript pour télécharger un album complet sur 33rap d'un coup
// Line to paste in the javascript console of the browser to download a complete album on the site wvv.33rapfr.com
$(".map-download").toArray().forEach((e) => e.click())
@notnian
notnian / substr.php
Created March 25, 2020 09:27
substr — Retourne un segment de chaîne
<?php
// CODE FROM https://www.php.net/manual/fr/function.substr.php
// biohazard dot ge at gmail dot com
// may be by following functions will be easier to extract the needed sub parts from a string:
after ('@', 'biohazard@online.ge');
//returns 'online.ge'
//from the first occurrence of '@'