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
Create a file with this: | |
#!/bin/bash | |
oldtext=$1 | |
newtext=$2 | |
pdffile=$3 | |
cp $pdffile $pdffile.bak | |
pdftk $pdffile output $pdffile.tmp uncompress |
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
#!/system/bin/sh | |
################################################################################ | |
# | |
# Shell script to disable read receipts for all incoming Whatsapp messages. | |
# | |
# [ ANDROID AND ROOT ONLY ! ] | |
# | |
# Author: Stephan Schmitz <[email protected]> | |
# Source: https://gist.github.com/eyecatchup/9af90363732801b131bf | |
# Last Updated: 09. Nov 2014 |
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
#!/system/bin/sh | |
# | |
# Shell script to disable read receipts for your sent Whatsapp messages. | |
# (Requires "sed" (ie "busybox") being installed on the system to work.) | |
# | |
# Author: Stephan Schmitz <[email protected]> | |
# Source: https://gist.github.com/eyecatchup/9af90363732801b131bf | |
# | |
# In early Nov 2014, Whatsapp added a new "feature" - read receipts. Meaning, | |
# your chat partners will get a visual feedback (2 blue check marks) as soon as |