Alegreya font for WriteFreely (Normal+Bold+Italic)
Choose style.css
or style.min.css
(minified css), copy its contents, and paste it into Custom CSS
on Writefreely.
Choose style.css
or style.min.css
(minified css), copy its contents, and paste it into Custom CSS
on Writefreely.
edit_markdown_table(`
|key|value|
|:-|-:|
|a|1|
|b|2|
|c|3|
`, [1, 0])
Developer tools
and go to the Console
tabscript.js
from this gist, then paste it into the console and hit entermkdir -p /tmp/eo_locale | |
find /usr/share/locale/eo/LC_MESSAGES/ -name '*.mo' | xargs -I "{}" sh -c "msgunfmt {} >> /tmp/eo_locale/\$(basename {})" | |
cd /tmp/eo_locale |
var s_a; | |
function s_f() { | |
const s_b = document.querySelector('i[data-role="remove"'); | |
if (s_b == undefined) { | |
clearInterval(s_a); | |
return; | |
} | |
s_b.click(); | |
document.querySelector('a[tabIndex="4000"]').click(); | |
} |
transliterate_page({ "Ĉ": "Cx", "Ĝ": "Gx", "Ĥ": "Hx", "Ĵ": "Jx", "Ŝ": "Sx", "Ŭ": "Ux", "ĉ": "cx", "ĝ": "gx", "ĥ": "hx", "ĵ": "jx", "ŝ": "sx", "ŭ": "ux" })
Ĉiuliteraĵo
const words = require('./temp.json') | |
const fs = require('fs') | |
for (let i = 0; i < words.length; i+=1904) { | |
const lcode = 'word_'+words[i].lan_code | |
for (let j = 0; j < 1904; j++) { | |
words[j][lcode] = words[i+j].word | |
} | |
} |
I hereby claim:
To claim this, I am signing this object:
sudo -i
pacman -Rdd ttf-liberation
rm /usr/share/calibre/fonts/liberation/Liberation*.ttf
fun sort(array: Array<Int>): Array<Int> { | |
when { | |
array.size == 1 -> { | |
return array | |
} | |
array.size <= 2 -> { | |
val left = array[0] | |
val right = array[1] | |
return if (right < left) { | |
arrayOf(right, left) |