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' standalone='no' ?><opml version="1.1"><head><title>BeyondPod Feeds</title><dateCreated>Sat, 20 Dec 2014 14:38:51 CST</dateCreated><dateModified>Sat, 20 Dec 2014 14:38:51 CST</dateModified></head><body><outline text="Uncategorized" /><outline text="Popular Science"><outline text="NPR: TED Radio Hour Podcast" xmlUrl="http://www.npr.org/rss/podcast.php?id=510298" type="rss" /><outline text="Science Friday Audio Podcast" xmlUrl="http://www.sciencefriday.com/audio/scifriaudio.xml" type="rss" /><outline text="Stuff To Blow Your Mind" xmlUrl="http://www.howstuffworks.com/podcasts/stuff-to-blow-your-mind.rss" type="rss" /></outline><outline text="Indie Music"><outline text="Coverville: The Cover Music Podcast (AAC Edition)" xmlUrl="http://feeds.feedburner.com/CovervilleAAC" type="rss" /><outline text="KEXP Song of the Day" xmlUrl="http://feeds.kexp.org/kexp/songoftheday" type="rss" /></outline><outline text="Great Stories"><outline text="New Yorker: Fiction" xmlUrl="http://feeds.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
"set numerichints | |
"set typelinkhints | |
set nativelinkorder | |
let hintcharacters = "asonetuhid" | |
yankText(link) -> {{ | |
var text = link.text; | |
text = text.replace(/^(\s|\n)+|(\s|\n)+$/g,''); |
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
javascript:(function(xs)%7Bfor(var%20i%3D0%3Bi%3Cxs.length%3B%2B%2Bi)%7Bif(xs%5Bi%5D.currentSrc)%7Breturn%20window.open(xs%5Bi%5D.currentSrc)%3B%7D%7D%7D)(document.querySelectorAll('audio%2Cvideo'))%3B |
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
urlencode() { | |
# urlencode <string> | |
local LANG=C | |
local length="${#1}" | |
for (( i = 0; i < length; i++ )); do | |
local c="${1:i:1}" | |
case $c in | |
[a-zA-Z0-9.~_-]) printf "$c" ;; | |
*) printf '%%%02X' "'$c" ;; |
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/bash | |
sudo apt-get install transmission-daemon | |
service_path=/lib/systemd/system/[email protected] | |
if ! [ -s "$service_path" ] | |
then | |
sudo tee "$service_path" <<-UNIT | |
[Unit] |
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
* research vim-gista |
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
diff -r 94df797ed6b0 -r e86e08d8e7af src/gui_gtk_x11.c | |
--- a/src/gui_gtk_x11.c Sat Apr 12 13:12:24 2014 +0200 | |
+++ b/src/gui_gtk_x11.c Sun Apr 20 14:50:35 2014 +0200 | |
@@ -4311,7 +4311,7 @@ get_styled_font_variants(void) | |
static PangoEngineShape *default_shape_engine = NULL; | |
/* | |
- * Create a map from ASCII characters in the range [32,126] to glyphs | |
+ * Create a map from ASCII characters [ ,0-9,a-z,A-Z] to glyphs | |
* of the current font. This is used by gui_gtk2_draw_string() to skip |
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
#cVim-command-bar, #cVim-command-bar-mode, #cVim-command-bar-input, #cVim-command-bar-search-results, | |
.cVim-completion-item, .cVim-completion-item .cVim-full, .cVim-completion-item .cVim-left, | |
.cVim-completion-item .cVim-right { | |
/* font-family: Helvetica, Helvetica Neue, Neue, sans-serif, monospace, Arial; */ | |
font-family: "M+ 1m","Input","PragmataPro","Consolas","Incosoloata","TheMixMono","Monospace"; | |
font-size: 10pt !important; | |
-webkit-font-smoothing: antialiased !important; | |
} | |
#cVim-command-bar { |
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
/** | |
* @version: 1.0 Alpha-1 | |
* @author: Coolite Inc. http://www.coolite.com/ | |
* @date: 2008-05-13 | |
* @copyright: Copyright (c) 2006-2008, Coolite Inc. (http://www.coolite.com/). All rights reserved. | |
* @license: Licensed under The MIT License. See license.txt and http://www.datejs.com/license/. | |
* @website: http://www.datejs.com/ | |
*/ | |
Date.CultureInfo={name:"en-US",englishName:"English (United States)",nativeName:"English (United States)",dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],abbreviatedDayNames:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],shortestDayNames:["Su","Mo","Tu","We","Th","Fr","Sa"],firstLetterDayNames:["S","M","T","W","T","F","S"],monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],abbreviatedMonthNames:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],amDesignator:"AM",pmDesignator:"PM",firstDayOfWeek:0,twoDigitYearMax:2029,dateElementOrder:"mdy",formatPatterns |
OlderNewer