Skip to content

Instantly share code, notes, and snippets.

View nickdominguez's full-sized avatar
🏠
Working from home

Nick Dominguez nickdominguez

🏠
Working from home
View GitHub Profile
! name: Stationery Search
! description: Search popular stationery blogs
! public: true
! author: Nick Dominguez
$boost=3,site=penaddict.com
$boost=1,site=wellappointeddesk.com
$boost=1,site=thepoorpenman.com
$boost=1,site=mnmlscholar.com
$boost=1,site=fountainpenpharmacist.com
body {
color: #fff;
font-family:-apple-system, BlinkMacSystemFont,
'avenir next', avenir,
'helvetica neue', helvetica,
ubuntu,
roboto, noto,
'segoe ui', arial,
sans-serif;
}

8 | 16 | 24 | 32 | 40 | 48 | 56 | 64 | 72 | 80 | 88 | 96 | 104 | 112 | 120 | 128 | 136 | 144 | 152 | 160 | 168 | 176 | 184 | 192 | 200 | 208 | 216 | 224 | 232 | 240 | 248 | 256 | 264 | 272 | 280 | 288 | 296 | 304 | 312 | 320 | 328 | 336 | 344 | 352 | 360 | 368 | 376 | 384 | 392 | 400 | 408 | 416 | 424 | 432 | 440 | 448 | 456 | 464 | 472 | 480 | 488 | 496 | 504 | 512 | 520 | 528 | 536 | 544 | 552 | 560 | 568 | 576 | 584 | 592 | 600 | 608 | 616 | 624 | 632 | 640 | 648 | 656 | 664 | 672 | 680 | 688 | 696 | 704 | 712 | 720 | 728 | 736 | 744 | 752 | 760 | 768 | 776 | 784 | 792 | 800 | 808 | 816 | 824 | 832 | 840 | 848 | 856 | 864 | 872 | 880 | 888 | 896 | 904 | 912 | 920 | 928 | 936 | 944 | 952 | 960 | 968 | 976 | 984 | 992 | 1000 | 1008 | 1016 | 1024 | 1032 |

body {
font-family: system, -apple-system, BlinkMacSystemFont,
"Helvetica Neue", "Lucida Grande";
}
@nickdominguez
nickdominguez / jade-starter-template
Created February 29, 2016 19:48
Jade Starter Template
doctype html
html(lang='en')
head
meta(charset='utf-8')
meta(http-equiv='X-UA-Compatible', content='IE=edge')
meta(name='viewport', content='width=device-width, initial-scale=1')
meta(name='description', content='')
meta(name='author', content='')
link(rel='icon', href='#{pathToAssets}/docs/favicon.ico')
title Jade Starter Template
Christ with me,
Christ before me,
Christ behind me,
Christ in me,
Christ beneath me,
Christ above me,
Christ on my right,
Christ on my left,
Christ when I lie down,
Christ when I sit down,
@nickdominguez
nickdominguez / sequence-names.md
Created March 4, 2015 21:31
Sequence naming scheme
  • Primary
  • Secondary
  • Tertiary
  • Quaternary
  • Quinary
  • Senary
  • Septenary
  • Octonary
  • Nonary
  • Denary
@nickdominguez
nickdominguez / bootstrap-clearfix
Last active August 29, 2015 14:16
Clearing Bootstrap columns
/* Bootstrap Clearfix */
/* Tablet */
@media (min-width:767px){
/* Column clear fix */
.col-lg-1:nth-child(12n+1),
.col-lg-2:nth-child(6n+1),
.col-lg-3:nth-child(4n+1),
.col-lg-4:nth-child(3n+1),

Keybase proof

I hereby claim:

  • I am nickdominguez on github.
  • I am nickdominguez (https://keybase.io/nickdominguez) on keybase.
  • I have a public key whose fingerprint is EDDE 499F 2D27 9FE3 E1AB 2C49 FD6E 8E69 D4BC A931

To claim this, I am signing this object:

@nickdominguez
nickdominguez / gist:5279351
Created March 31, 2013 03:06
Clean URLs with Apache 2 on Ubuntu
First, from the Linux command line, enable the rewrite module for apache with this command:
sudo a2enmod rewrite
You can check to see if this worked by running:
sudo apache2ctl -M
and seeing if rewrite_module is on the list.