Start command:
ddrescue -d /dev/sda output.img output.mapfileNOTE: If direct disc access is not available in your system, try raw devices.
| const hubs_utils = { | |
| removeEntitiesFromMediaList, | |
| setPinEntities, | |
| loadAssetsFromURLs, | |
| getAvatarFromName, | |
| getFirstElementFromHash, | |
| objects3DFromPartialName, | |
| getFirstElementFromPartialURL, | |
| getAvatarFromName, | |
| resetUserMediaRotation, |
| none of the following data is used in the other file - it's just a different data source. The track eachother pretty well though! | |
| (64218 words in total) | |
| li 4647 | |
| mi 4143 | |
| e 3597 | |
| toki 2905 | |
| ni 2811 | |
| pona 2692 | |
| a 2126 |
| /* | |
| * LOGO | |
| */ | |
| [aria-label="Twitter"] { | |
| display: none; | |
| } | |
| /* | |
| * LEFT COLUMN |
Please refer to this blogpost to get an overview.
Replace *-INSTANCE with one of the public instances listed in the scrapers section. Replace CAPITALIZED words with their corresponding identifiers on the website.
| /* | |
| Vanilla js equivalent of a ramda quicksort (using ES6 features) | |
| Note: | |
| 1. I use arrays and not lists | |
| 2. I do not implement the placeholder helper, not difficult to add but requires more thought | |
| 3. Opted for a curried ifThenElse function | |
| 4. In some places I use ES6 features to avoid further recursion, though its possible to encompass | |
| the recursion in a foldl/foldr | |
| 5. I implement pipe to match the ramda example |
| --[[ | |
| Implemented as described here: | |
| http://flafla2.github.io/2014/08/09/perlinnoise.html | |
| ]]-- | |
| perlin = {} | |
| perlin.p = {} | |
| -- Hash lookup table as defined by Ken Perlin | |
| -- This is a randomly arranged array of all numbers from 0-255 inclusive |
| # Serving Random Payloads with NGINX | |
| # add set_random module https://github.com/openresty/set-misc-nginx-module#set_random | |
| # edit file /etc/nginx/sites-enabled/default | |
| set_random $uri 1 3; | |
| map $uri $payloads { | |
| 1 /payload.lnk; | |
| 2 /payload.hta; | |
| 3 /payload.exe; |
| import struct | |
| import sys | |
| import os | |
| MAX_OUTPUT_SIZE = 1 << 24 # 16 megabytes | |
| def load_binary_file(fn, nbytes=100000000): | |
| data = [] | |
| with open(fn, "rb") as src: | |
| byte = src.read(1) |