[](https://github.com/username/repo/releases)
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
#!/usr/bin/python | |
# Returns the common lines between each of the 'n' specified files | |
python -c 'import sys;print " ".join(sorted(set.intersection(*[set(open(a).readl | |
ines()) for a in sys.argv[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
var gulp = require('gulp'), | |
shell = require('gulp-shell'), | |
minifyHTML = require('gulp-minify-html'), | |
sass = require('gulp-sass'), | |
importCss = require('gulp-import-css'), | |
autoprefixer = require('gulp-autoprefixer'), | |
uncss = require('gulp-uncss'), | |
minifyCss = require('gulp-minify-css'), | |
rename = require('gulp-rename'), | |
glob = require('glob'), |
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
--- | |
title: | |
desc: | |
date: | |
options: | |
image: | |
categories: | |
tags: | |
priority: | |
--- |
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
:root.theme-dark { | |
/* --theme-body-background: var(--grey-80); */ | |
--theme-body-background: #2c292e !important; | |
--theme-body-background: hsl(270,4%,17%) !important; | |
--theme-sidebar-background: #202020 !important; | |
--theme-contrast-background: #efb35b !important; | |
/* Toolbar */ | |
--theme-tab-toolbar-background: #202020 !important; | |
--theme-toolbar-background: #202020 !important; |
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
/** | |
* Syntax highlighting styles | |
*/ | |
$syntax-hue: 270; | |
$syntax-saturation: 4%; | |
$syntax-brightness: 15%; | |
$base: hsl($syntax-hue, $syntax-saturation, $syntax-brightness); | |
$text: hsl($syntax-hue, 9%, 87%); |
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
// Gulpfile.js | |
const autoprefixer = require('autoprefixer'); | |
const browserSync = require('browser-sync').create(); | |
const concat = require('gulp-concat'); | |
const cssnano = require('cssnano'); | |
const del = require('del'); | |
const gulp = require('gulp'); | |
const gutil = require('gulp-util'); | |
const imagemin = require('gulp-imagemin'); |
This file has been truncated, but you can view the full file.
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 plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>AllowClipboardAccess</key> | |
<true/> | |
<key>AlternateMouseScroll</key> | |
<true/> | |
<key>AppleAntiAliasingThreshold</key> | |
<integer>1</integer> |