Skip to content

Instantly share code, notes, and snippets.

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Ansi 0 Color</key>
<dict>
<key>Blue Component</key>
<real>0.20179691910743713</real>
<key>Green Component</key>
<real>0.1818026602268219</real>
@iidzuka
iidzuka / gist:d9bf6a03c5f9bdc46850
Last active August 29, 2015 14:26 — forked from kent013/gist:1291d28c9f2c50c5801a
github issue list to str
var items = $('ul > li');
$.each(items, function(k, v){
var item = $(v);
var title = item.find('.issue-title > a').text().trim();
var number = item.find('.select-toggle-check').val();
var datetime = item.find('time').attr('title');
console.debug('#' + number + ' ' + title);
});