This file contains 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
pandoc -V geometry:margin=.75in -V mainfont="Minion Pro" --latex-engine xelatex filename.md -o filename.pdf |
This file contains 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
AL : Alabama | |
AK : Alaska | |
AZ : Arizona | |
AR : Arkansas | |
CA : California | |
CO : Colorado | |
CT : Connecticut | |
DE : Delaware | |
DC : District of Columbia | |
FL : Florida |
This file contains 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
.widget_archives, | |
.widget_calendar, | |
.widget_categories, | |
.widget_nav_menu, | |
.widget_meta, | |
.widget_pages, | |
.widget_recent_comments, | |
.widget_recent_entries, | |
.widget_rss, | |
.widget_search, |
This file contains 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
find -E . -regex ".*-[[:digit:]]{1,4}x[[:digit:]]{1,4}.(jpg|png|gif)" -exec rm {} \; |
This file contains 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
zip -r filename.zip folder-path -x *.git* |
This file contains 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
anything = [260, 292, 390, 395, 440, 487, 520, 585, 750, 790, 880, 975, 1350, 1820, 3250] | |
skins = [195,260,390,487,520,675,750,975,1350,1820,3250] | |
rp20 = [0, 650, 1300, 1950, 2600, 1380, 2030, 2680, 2760, 2800] | |
def printPurchase(v,ans): | |
ret = [] | |
for i in xrange(len(v)): | |
if(ans[i]!=0): | |
ret.append(str(ans[i])+' '+str(v[i])+('s' if ans[i]>1 else '')) | |
return ret |
This file contains 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 | |
/** | |
* @todo Document me! | |
* | |
* @param WP_Customize_Manager $wp_customize Theme Customizer object. | |
*/ | |
function _s_remove_default_customerizer( $wp_customize ) { | |
// Remove unused defaults | |
// Site Identity | |
// $wp_customize->remove_section( 'title_tagline' ); |
This file contains 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 | |
/** | |
* @todo: Document me! | |
*/ | |
if( ! function_exists( 'dd' ) ) { | |
function dd() { | |
array_map(function($x) { var_dump($x); }, func_get_args()); | |
die; | |
} | |
} |
This file contains 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
.site-content { | |
@include clearfix(); | |
@include display(flex); | |
@include flex-direction(row); | |
@include flex-wrap(nowrap); | |
@include justify-content(center); | |
@include align-items(flex-start); | |
@include align-content(flex-start); | |
} |
OlderNewer