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
// swap the keybindings for paste and paste_and_indent | |
{ "keys": ["super+v"], "command": "paste_and_indent" }, | |
{ "keys": ["super+shift+v"], "command": "paste" } |
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
#include "keymap_common.h" | |
const uint8_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |
[0] = KEYMAP( /* Charlie workman */ | |
ESC, Q, D, R, W, B, J, F, U, P, SCLN, BSLS, | |
LCTL, A, S, H, T, G, Y, N, E, O, I, BSPC, | |
LSFT, Z, X, M, C, V, K, L, COMM, DOT, SLSH, ENT, | |
RSFT, LALT, LGUI, RCTL, FN2, SPC, FN1, LEFT, DOWN, UP, RGHT), | |
[1] = KEYMAP( /* Charlie RAISE */ | |
TAB, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, BSPC, |
(Update: Version 3.2.0
of Jekyll looks like it's breaking a few things, so I've changed the guide to make you specifically install the version I was using, 3.1.3
. I believe this is the issue: jekyll/jekyll#5145.)
You will be using jekyll-import
to export your Tumblr site, Jekyll to (re)create it, and Surge to rehost it.
Update: You can also use Tumblr's native export feature in your blogs' individual settings. But rehosting that might be tricky. Read my comments below this post for how that works.
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
#! /usr/bin/env python | |
# Copyright 2015 Google Inc. All Rights Reserved. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# |
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
" MIT License | |
" Copyright (c) 2017 romain Lafourcade | |
" Permission is hereby granted, free of charge, to any person obtaining a copy | |
" of this software and associated documentation files (the "Software"), to deal | |
" in the Software without restriction, including without limitation the rights | |
" to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
" copies of the Software, and to permit persons to whom the Software is | |
" furnished to do so, subject to the following conditions: |
This guide now lives at https://github.com/joyeusenoelle/GuideToMastodon/ - please check there for updates, and feel free to submit a PR if you have suggestions or want to submit a translation!
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
#!/usr/bin/env python3 | |
# Build a SQLite3 DB for looking up SHA-1 hashes of leaked passwords. | |
# | |
# This can be fed the txt file from one of Have I Been Pwned's hash | |
# lists available from https://haveibeenpwned.com/Passwords -- but any | |
# text file with line format ``hash-hex:count`` will work. | |
# | |
# When run on the v5 hash-ordered SHA-1 file, expect the build to take | |
# about 35 minutes and produce a 15.7 GiB file (~30.5 bytes per record). | |
# |
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
numpy | |
tqdm | |
pdf2image | |
opencv-python | |
pytesseract | |
Pillow |
OlderNewer