Use at your own risks! This hook is basically hijacking the $MY_MODULES
variable used in the caddy ebuild. Disabling the network sandbox is required to allow go
to pull in custom modules at compile time.
Untested with live ebuild.
#!/usr/bin/env bash | |
COLOR='\033[1;32m' | |
NC='\033[0m' # No Color | |
log() { | |
echo -e "${COLOR}#" $@ "${NC}" | |
} | |
WD=$(mktemp -d) |
#!/usr/bin/env fish | |
# | |
# Smelly code ahead | |
set file $argv[1] | |
set bn (basename $file | rev | cut -d. --complement -f1 | rev) | |
set pdf2htmlEX docker run -ti --rm -v (pwd):/pdf bwits/pdf2htmlex pdf2htmlEX | |
$pdf2htmlEX --printing 0 --embed-outline 0 --zoom 1.2 $file |
I hereby claim:
To claim this, I am signing this object:
This script is made to be used along base16-shell.
Just put it in scripts/
and use jay
as the colorscheme.
I take no credit for this, full credit is given to josuegaleas
A Pen by Théophile Cailliau on CodePen.
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.html"> | |
<link rel="import" href="../paper-tabs/paper-tabs.html"> | |
<link rel="import" href="../paper-tabs/paper-tab.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> |
/*jslint node: true */ | |
'use strict'; | |
//Initialize vars | |
var value = '00000'; | |
var int = 0; | |
var finalString = ""; | |
//Main code | |
while(!selfDescripting(value)){ |
//You can ignore this, this is for the editor. | |
/*jslint node: true */ | |
'use strict'; | |
//Initialize vars | |
var visited = []; | |
var first = '0000000000'; | |
var alternativeMethod = false; | |
var result = first; //Should get to 6210001000 |