Clones only the most recent history.
git clone --depth 1 'repo-remote'Clones only the most recent history.
git clone --depth 1 'repo-remote'| @media (prefers-color-scheme: dark) { | |
| body { | |
| background-color: #444; | |
| color: #e4e4e4; | |
| } | |
| a { | |
| color: #e39777; | |
| } | |
| img { | |
| filter: grayscale(30%); |
| window.onerror = function(msg, _path, line, column, error) { | |
| fetch('/errors', { | |
| error: error ? error.stack : '', | |
| column: column, | |
| line: line, | |
| msg: msg | |
| }) | |
| return false | |
| } |
Create a fake "viral" page with cute cat pictures, jokes or whatever, get it shared on Facebook (which is known for opening links via _blank). Create a "phishing" website at https://fakewebsite/facebook.com/page.html for example Put this code on your "viral" page window.opener.location = 'https://fakewebsite/facebook.com/page.html'; which redirects the Facebook tab to your phishing page, asking the user to re-enter her Facebook password.
Add this to your outgoing links.
| # Quick Substitution | |
| ^string1^string2 | |
| # Global Substitution | |
| !!:gs/string1/string2 |
| # With start time and duration | |
| ffmpeg -ss $START -i $INFILE -c copy -map 0 -t $DURATION $OUTFILE | |
| # With start time and end time | |
| ffmpeg -ss $START -i $INFILE -c copy -map 0 -to $END $OUTFILE |
| import time, sys | |
| start = time.clock() | |
| for x in range(1000): | |
| pass | |
| end = time.clock() |
| #!/bin/bash | |
| # Install reflector | |
| sudo pacman -S reflector | |
| # Update mirrorlist | |
| reflector | sudo tee /etc/pacman.d/mirrorlist | |
| #!/bin/bash | |
| chmod 0644 ~/.ssh/id_rsa.pub | |
| chmod 0600 ~/.ssh/id_rsa |