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
Quand je mets à vos pieds un éternel hommage | |
Voulez-vous qu'un instant je change de visage ? | |
Vous avez capturé les sentiments d'un cœur | |
Que pour vous adorer forma le Créateur. | |
Je vous chéris, amour, et ma plume en délire |
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
# Crude, offensively non-pythonic script to export Raindrop bookmarks in Eagle.app, as URL objects or media. | |
# Needs a CSV export from a Raindrop collection. https://help.raindrop.io/export/ | |
# The collection needs to be set to public. | |
import csv | |
from random import choice | |
import re | |
from sys import argv | |
from os import path, sep, mkdir | |
from datetime import datetime |
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
/* | |
Narrow non-breaking space before ? ! ; : | |
espaces fines insécables avant ? ! ; : | |
*/ | |
import markdownIt from 'markdown-it' | |
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
const all = document.querySelectorAll('*') | |
for (var i = all.length - 1; i >= 0; i--) { | |
const after = window.getComputedStyle(all[i], ':after').content | |
const before = window.getComputedStyle(all[i], ':before').content | |
if (after !== 'none' && after !== '\"\"') {console.log(after)} | |
if (before !== 'none' && before !== '\"\"') {console.log(before)} | |
} |
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
// Extract duration, success rate and directness from the task results tab of a study and copy it to the clipboard | |
// Launch the script three times, with n in `div:nth-child(n)`replaced by 1, 2, 3. | |
{ | |
let selector = document.querySelectorAll(".results-task-body .task-charts > div:nth-child(n) .box-plot-label"); | |
let a = [] | |
Array.from(selector).forEach(function(el){a.push(el.textContent.replace(/[ |\n\n|sec]/g,""))}); | |
let output = a.join('\n'); | |
console.log(output); | |
copy(output) |
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
let a=[]; | |
selector = "." + $0.className.replace(/\s/g, '.'); | |
Array.from($$(selector)).forEach(function(el){a.push(el.textContent)}); | |
let output = a.join('\n'); | |
console.log(output); | |
copy(output); | |
//copy([...document.querySelectorAll(".task-container__name")].map(el => el.textContent).join('\n')) |
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
Show hidden characters
// > | |
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
// The most epic theme for Sublime Text 3 | |
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
[ | |
// | |
// @EMPTY WINDOW | |
// Style for empty (no tabs) window |
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
/* | |
CSS injections used with the Stylus Firefox extension. | |
*/ | |
/* | |
In Icescrum, the textareas where you describe stories are teeny-tiny. This fixes it. | |
*/ | |
@-moz-document domain("") { |
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
/************* | |
* colors.js * | |
************* | |
* | |
* You're almost at the exit. You just need to get past this | |
* color lock. | |
* | |
* Changing your environment is no longer enough. You must | |
* learn to change yourself. I've sent you a little something | |
* that should help with that. |
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
<div class="item-1"></div> | |
<div class="item-2"></div> | |
<div class="item-3"></div> | |
<div class="item-4"></div> | |
<div class="item-5"></div> | |
<div class="item-6"></div> |