Copy these files to your ~/Library/Application Support/Notational Velocity/
folder.
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="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<title>isFontAvailable() Demo</title> | |
<meta name="description" content=""> | |
<meta name="author" content="Luís Rodrigues"> | |
<meta name="viewport" content="width=device-width"> | |
<style> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE html | |
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head> | |
<title>Select auto-width workaround for Internet Explorer</title> | |
<link rel="stylesheet" type="text/css" href="select-autowidth.css" title="Select Autowidth" /> | |
<script src="http://code.jquery.com/jquery-1.4.2.min.js" type="text/javascript"></script> |
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
startup_message off | |
screen -t top 0 htop | |
screen -t bash 1 | |
screen -t bash 2 | |
screen -t bash 3 | |
screen -t bash 4 | |
screen -t bash 5 | |
screen -t bash 6 | |
screen -t bash 7 | |
screen -t log 8 |
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
<theme> | |
<!-- color --> | |
<color id="foreground" red="1.0" green=".2" blue=".2" alpha="1.0" /> | |
<color id="background" red="1" green="1" blue="1" alpha="1.0" /> | |
<color id="done" red=".8" green=".8" blue=".8" alpha="1.0" /> | |
<color id="groupHeader" extendsColorID="foreground" /> | |
<color id="handle" extendsColorID="foreground" /> | |
<color id="insertionPoint" red=".4" green=".4" blue=".4" alpha="1.0" /> | |
<color id="note" red=".5" green=".5" blue=".5" alpha="1.0" /> | |
<color id="project" extendsColorID="foreground" /> |
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
<?php | |
function my_http_request_args ( $r ) | |
{ | |
$r['timeout'] = 15; # new timeout | |
return $r; | |
} | |
add_filter( 'http_request_args', 'my_http_request_args', 100, 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
- (void)viewDidLoad { | |
... | |
[[NSNotificationCenter defaultCenter] | |
addObserver:self | |
selector:@selector(didChangeVoiceOverStatus:) | |
name:UIAccessibilityVoiceOverStatusChanged | |
object:nil]; | |
... | |
} |
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
/* | |
This document has been created with Marked.app <http://markedapp.com>, Copyright 2011 Brett Terpstra | |
Please leave this notice in place, along with any additional credits below. | |
--------------------------------------------------------------- | |
Title: goblindegook | |
Author: Luís Rodrigues <https://github.com/goblindegook> | |
Description: Personal Marked theme. | |
*/ | |
body |
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
server { | |
listen 80; | |
server_name www.example.com; | |
rewrite ^ $scheme://example.com$request_uri?; | |
} | |
server { | |
listen 80; | |
server_name example.com; | |
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
<?php | |
/* | |
Plugin Name: Secure oEmbed | |
Plugin URI: https://gist.github.com/goblindegook/9057159 | |
Description: Ensure oEmbed over HTTPS. | |
Version: 1.0 | |
Author: Luís Rodrigues | |
License: GPL 3.0 | |
*/ |
OlderNewer