- heroku cli (logged in)
- git
- curl
- wget
- tar are required
- ~ openssl is required to generate the secret_key, but you're free to use what you want
- How to change the background on Firefox to a dark one on new tab / loading screen ?
- Type
about:config
in the URL bar - Search
toolkit.legacyUserProfileCustomizations.stylesheets
and double-click the field to set it totrue
- Type
about:support
in the URL bar - Look for
Profile folder
field and click on the open button next to it.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
REMOTE="origin" | |
BRANCH="gh-pages" | |
HUGO_FOLDER="public" | |
if ! git diff-files --quiet --ignore-submodules -- | |
then | |
echo "The working directory is dirty. Please commit any pending changes." | |
exit 1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* from github.com/vladocar/CSS-Micro-Reset + blog.koley.in/2019/339-bytes-of-responsive-css */ | |
body { | |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; | |
line-height: 1.6; | |
color: #222; | |
max-width: 40rem; | |
padding: 2rem; | |
margin: auto; | |
background: #fafafa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd ~/Applications | |
wget https://downloads.sourceforge.net/project/dirb/dirb/2.22/dirb222.tar.gz | |
tar -xvf dirb222.tar.gz | |
rm dirb222.tar.gz | |
brew install autoconf | |
chmod -R 755 dirb222 | |
cd dirb222 | |
./configure | |
make | |
make install |
- Paramètres : https://www.linkedin.com/psettings/privacy
- URL personnalisée LinkedIn : https://www.linkedin.com/public-profile/settings
- Profil public : https://www.linkedin.com/public-profile/settings
Ce script permet de vider le flux d'activité d'un compte facebook, sans supprimer les amis ni quitter les groupes. Ce script ne supprime pas les messages messenger.
- se rendre sur facebook.com > Profil > Historique personnel
- fonctionne aussi dans les autres catégories comme
sondages
ouhistorique des recherches
- fonctionne aussi dans les autres catégories comme
- ouvrir la console
- copier-coller l'intégralité du script ci-dessous
Ces scripts permettent de vider le flux d'activité d'un compte twitter : RT, likes, tweets.
Those scripts will flush your twitter activity feed : likes, RT, tweets...
Ces scripts ne fonctionnent que pour twitter en langue anglaise. (https://twitter.com/settings/language)
Those scripts only work for twitter in english.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
su - www-data -s /bin/bash -c 'php /var/www/html/nextcloud/occ dav:sync-birthday-calendar USERNAME' |