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
decatf xda thread: https://forum.xda-developers.com/t/stable-aosp-7-1-setup-w-working-google-and-voice-achieved.3768344/ | |
decatf files: https://androidfilehost.com/?w=files&flid=34770 | |
decatf chromium link: https://drive.google.com/file/d/1H-Kt69zySarK1yhQvv6HjdG3DJjUcfDn/view |
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
# create virtual sink with name Virtual_Sink | |
pacmd load-module module-null-sink sink_name=Virtual_Sink sink_properties=device.description=Virtual_Sink | |
# remove virtual sink with name Virtual_Sink | |
pactl list short modules | grep "sink_name=Virtual_Sink" | cut -f1 | xargs -L1 pactl unload-module | |
# record sound from virtual source with name Virtual_Sink and output file out.mp3 | |
parec -d Virtual_Sink.monitor | lame -r -V0 - out.mp3 |
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
about:config tweaks: | |
general.smoothScroll.msdPhysics.enabled = true | |
general.smoothScroll.msdPhysics.continuousMotionMaxDeltaMS = 250 | |
general.smoothScroll.msdPhysics.motionBeginSpringConstant = 400 | |
general.smoothScroll.msdPhysics.regularSpringConstant = 400 | |
general.smoothScroll.msdPhysics.slowdownMinDeltaMS = 120 | |
general.smoothScroll.msdPhysics.slowdownMinDeltaRatio = 0.4 | |
general.smoothScroll.msdPhysics.slowdownSpringConstant = 5000 | |
mousewheel.min_line_scroll_amount = 22 |
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
qpdf -password=<your-password> -decrypt /path/to/secured.pdf out.pdf | |
Source: https://askubuntu.com/questions/828720/how-to-remove-the-password-from-a-pdf |
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
note down given IP's and password | |
@ end of linux16 -> rd.break | |
ctrl-x | |
<enter> | |
mount -o remount,rw /sysroot/ | |
chroot /sysroot | |
passwd | |
<given-password> | |
touch /.autorelabel | |
ctrl-d |
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
Linux/ macOS: youtube-dl -cit <playlist-link> -f bestvideo+bestaudio/best | |
Windows: ./youtube-dl.exe -cit <playlist-link> -f bestvideo+bestaudio/best | |
-c, --continue Force resume of partially downloaded files. By default, youtube-dl will resume | |
downloads if possible. | |
-i, --ignore-errors Continue on download errors, for example to skip unavailable videos in a playlist | |
-f, --format FORMAT Video format code, see the "FORMAT SELECTION" for all the info | |