Para votar na Ripped várias vezes utilize o proxy tor.
Instale o tor em seu linux
sudo apt-get install tor
Instale também o proxychains, ele que vai fazer a conexão com o tor quando ele estiver executando
Para votar na Ripped várias vezes utilize o proxy tor.
Instale o tor em seu linux
sudo apt-get install tor
Instale também o proxychains, ele que vai fazer a conexão com o tor quando ele estiver executando
du -ch $files | tail -1 | cut -f 1 | |
ex: du -ch *.zip | tail -1 | cut -f 1 |
#Script
function watch($file, $command) {
$this_time = (get-item $file).LastWriteTime
$last_time = $this_time
while($true) {
if ($last_time -ne $this_time) {
$last_time = $this_time
invoke-command $command
}
Array.prototype.asyncForEach = async function (fn, scope) { | |
for(var i = 0, len = this.length; i < len; ++i) { | |
await fn.call(scope, this[i], i, this) | |
} | |
} |
#!/bin/sh | |
# Usage: fetchall.sh branch ... | |
set -x | |
git fetch --all | |
for branch in "$@"; do | |
git checkout "$branch" || exit 1 | |
git rebase "origin/$branch" || exit 1 | |
done |
ffmpeg -i "video.mov" -f webm -c:v libvpx -b:v 2M -acodec libvorbis -auto-alt-ref 0 "video.webm" -hide_banner |
- Para checar as ultimas X linhas do arquivo | |
Get-Content SEU_ARQUIVO –Tail 30 | |
- Para verificar o arquivo todo em tempo real (lento, pois lê o arquivo inteiro antes de chegar na última linha :/) | |
Get-Content SEU_ARQUIVO –Wait | |
- Para filtrar :) muito útil |
[user] | |
email = [email protected] | |
name = Lucas Comino | |
[core] | |
editor = vim | |
autocrlf = input | |
[push] | |
default = simple | |
[alias] | |
changed = show --stat --name-only |
;(function(){ | |
let adunits = document.querySelectorAll('ins[data-ad-client]') | |
if(adunits && adunits.length > 0){ | |
console.log(adunits) | |
} | |
})() |