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
<ruleset name="Jadi_net"> | |
<target host="www.jadi.net" /> | |
<target host="jadi.net" /> | |
<rule from="^http://(www\.)?jadi\.net/" to="https://jadi.net/"/> | |
</ruleset> |
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
#!/bin/bash | |
START_TIME=$(date +%s) | |
echo | |
echo "Starting..." | |
echo | |
for dirName in */ | |
do | |
( cd $dirName && echo "Generating pdf version of ${dirName%/}" && convert *.jpg ${dirName%/}.pdf ) |
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
# To get file | |
adb pull <PATH/TO/FILE/ON/DEVICE> | |
# To push file | |
adb push <PATH/TO/FILE> <PATH/TO/DESTINATION> | |
# To get wifi MAC address | |
adb shell cat /sys/class/net/wlan0/address | |
# To get IP Address |
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
### Moved to this repository: | |
### https://github.com/aminone/AparatVideoDownlader |