sudo apt update && sudo apt upgrade
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
| module UTF8 | |
| module Params | |
| private | |
| def normalize_parameters_with_encoding(value) | |
| normalize_parameters_without_encoding(value).tap do |value| | |
| value.force_encoding(Encoding.default_external) if value.respond_to?(:force_encoding) | |
| end | |
| end | |
| end | |
| end |
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
| r1.ams03s07.c.youtube.com 74.125.15.6 | |
| r2.ams03s07.c.youtube.com 74.125.15.7 | |
| r3.ams03s07.c.youtube.com 74.125.15.8 | |
| r4.ams03s07.c.youtube.com 74.125.15.9 | |
| r5.ams03s07.c.youtube.com 74.125.15.10 | |
| r6.ams03s07.c.youtube.com 74.125.15.11 | |
| r7.ams03s07.c.youtube.com 74.125.15.12 | |
| r8.ams03s07.c.youtube.com 74.125.15.13 | |
| r9.ams03s07.c.youtube.com 74.125.15.14 | |
| r10.ams03s07.c.youtube.com 74.125.15.15 |
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
| // JSON Array of Towns.. In Rails: <%= @towns = Town.all.to_json %> | |
| var TOWNS = [ | |
| { town: "Abbeville city", id: 1 }, | |
| { town: "Adamsville city", id: 2 }, | |
| { town: "Addison Town", id: 3 } | |
| ]; | |
| $(document).ready(function() { | |
| $('#postcard_city').bind('change', updateStateValue); |
- Sign into https://tiktok.com and go to your profile
- Click favorites or likes
- scroll down till all your videos load
- paste the script in console and run it
- Script will download the file containing newline-delimited links
- download via yt-dlp like so:
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 a file named user userconf (or userconf.txt) containing the following: | |
| pi:$6$c70VpvPsVNCG0YR5$l5vWWLsLko9Kj65gcQ8qvMkuOoRkEagI90qi3F/Y7rm8eNYZHW8CY6BOIKwMH7a3YYzZYL90zf304cAHLFaZE0 | |
| Place userconf (or userconf.txt) plus an empty file named ssh (or ssh.txt) in the BOOT (FAT32) partition of the SD card. | |
| Insert the SD card in the Raspberry Pi and it should boot with access to user 'pi' (password : raspberry) via SSH. |