This file contains hidden or 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
#!/bin/bash | |
sleep 3 | |
x=800 | |
for y in {0..900..50} | |
do | |
if ($y>0) |
This file contains hidden or 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
sleep 1 | |
xdotool search "Untitled" windowactivate --sync mousemove --window %1 804 230 #te jārēķina sava ekrāna izšķirtspējas izmēri.Peles sākumpunkts | |
sleep 0.5 | |
xdotool mousedown 1 | |
sleep 0.5 | |
xdotool mousemove_relative --sync 500 500 | |
sleep 0.5 | |
xdotool mouseup 1 |
This file contains hidden or 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
longurl(){ | |
URL=$1 | |
while [ -n "${URL}" ] | |
do | |
echo $URL | |
URL=$(curl -sw "\n\n%{redirect_url}" "${URL}" | tail -n 1) | |
done | |
} |
This file contains hidden or 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
#1 | |
curl -s -o /dev/null --head -w "%{url_effective}\n" -L "LONGURL" | |
#2 | |
wget "$LONGURL" 2>&1 | grep Location: | |
#3 | |
URL="LONGURL" | |
while [ -n "${URL}" ] | |
do |
This file contains hidden or 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
<img src="file://c:/$mft/123"> |
This file contains hidden or 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
sudo -i | |
mkdir /mnt/chroot | |
mount /dev/sda3 /mnt/chroot | |
mount -o bind /dev /mnt/chroot/dev | |
mount -o bind /sys /mnt/chroot/sys | |
mount -o bind /proc /mnt/chroot/proc | |
chroot /mnt/chroot | |
update-grub |
This file contains hidden or 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
sudo fdisk -l 2>/dev/null | egrep "Disk /|/dev/" | sed "s#^/dev/#Part /dev/#" | awk '{print $2}' | sed 's/://' | xargs -n1 -IX sudo sh -c "hexdump -v -s 0x80 -n 2 -e '2/1 \"%x\" \"\\n\"' X | xargs -n1 -IY sh -c \"case \"Y\" in '48b4') echo X: GRUB 2 v1.96 ;; 'aa75' | '5272') echo X: GRUB Legacy ;; '7c3c') echo X: GRUB 2 v1.97 oder v1.98 ;; '020') echo X: GRUB 2 v1.99 ;; *) echo X: Kein GRUB Y ;; esac\"" |
This file contains hidden or 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
@Ucibucis | |
@MikelisM | |
@baldone1000 | |
@karlissilins | |
@Tornitis7 | |
@Zile999 | |
@MaraVilde | |
@IlvaKrampuza | |
@aaralds | |
@oposums |
This file contains hidden or 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
wget http://mtgxlv01-vh.akamaihd.net/i/tv3/filmas/2013.04.13.monuments_549649.mp4/segment{1..245}_0_av.ts | |
cat segment{1..245}_0_av.ts > full_video.ts | |
ffmpeg -i full_video.ts full_video.mp4 |
This file contains hidden or 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
<html> | |
<head> | |
<title></title> | |
<meta content=""> | |
<style></style> | |
</head> | |
<body> | |
<script type="text/javascript"> | |
function updateValues() { |