- Sorceress
- Ghost of Perdition
- Demon of the Fall
- The Wilde Flowers
- Face of Melinda
- In My Time Of Need
- Cusp Of Eternity
- The Drapery Falls
- Heir Apparent
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
var pager = require('pager') | |
for (let i = 1, l = 20; i <= l; i++) { | |
console.log(`Selected page ${i}:`, pager(i, l)) | |
} |
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
$delim = '<!--more-->'; | |
$content = explode($delim, $post->post_content); | |
$content_before = apply_filters('the_content', $content[0]); | |
$content_after = apply_filters('the_content', $content[1]); |
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 tid | |
timer() | |
function timer() { | |
tid = window.setTimeout(loki, 2000) | |
} | |
function loki() { | |
alert('loki is a ferret') | |
clearloki() |
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
Vagrant.configure("2") do |config| | |
config.vm.box = "ubuntu/trusty64" | |
config.vm.network "forwarded_port", guest: 80, host: 8080 | |
config.vm.synced_folder "./app", "/var/www/app" | |
config.vm.provider "virtualbox" do |vb| | |
vb.memory = "512" | |
vb.name = "quantifoo" | |
end |
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
/** | |
* Module dependencies. | |
*/ | |
var budo = require('budo') | |
var fs = require('fs') | |
var path = require('path') | |
var postcss = require('postcss') | |
var cssimport = require('postcss-import') |
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
<!DOCTYPE html> | |
<html lang="de"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, minimum-scale=1.0" /> | |
<title>Template</title> | |
<meta http-equiv="x-ua-compatible" content="ie=edge"> | |
<meta name="description" content="template" /> | |
<meta name="keywords" content="template" /> | |
<link type="text/plain" rel="author" href="humans.txt" /> |
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
$if2(%albumartist%,%artist%)/$if($ne(%albumartist%,),%originalyear% - %album%/)$if($gt(%totaldiscs%,1),%discnumber%-,)$if($ne(%albumartist%,),$num(%tracknumber%,2) ,)$if(%_multiartist%,%artist% - ,)%title% |
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
" The default vimrc file. | |
" | |
" Maintainer: Bram Moolenaar <[email protected]> | |
" Last change: 2016 Sep 02 | |
" | |
" This is loaded if no vimrc file was found. | |
" Except when Vim is run with "-u NONE" or "-C". | |
" Individual settings can be reverted with ":set option&". | |
" Other commands can be reverted as mentioned below. |
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
#!/bin/sh | |
cli=/Applications/Karabiner.app/Contents/Library/bin/karabiner | |
$cli set general.dont_remap_apple_keyboard 1 | |
/bin/echo -n . | |
$cli set general.dont_remap_apple_pointing 1 | |
/bin/echo -n . | |
$cli set remap.fkeys_to_consumer_f7 1 | |
/bin/echo -n . |