Skip to content

Instantly share code, notes, and snippets.

View hegyessy's full-sized avatar

Jason Hegyessy hegyessy

View GitHub Profile
@hegyessy
hegyessy / keybase.md
Created August 11, 2016 03:52
verification

Keybase proof

I hereby claim:

  • I am hegyessy on github.
  • I am hegyessy (https://keybase.io/hegyessy) on keybase.
  • I have a public key whose fingerprint is D9F5 0534 A29D A445 84E1 BFA4 EC4B 5C11 ADDC 9188

To claim this, I am signing this object:

@hegyessy
hegyessy / breakpoints.sass
Last active December 8, 2016 21:16
CSS breakpoints
@mixin for-phone-only {
@media (max-width: 599px) { @content; }
}
@mixin for-tablet-portrait-up {
@media (min-width: 600px) { @content; }
}
@mixin for-tablet-landscape-up {
@media (min-width: 900px) { @content; }
}
@mixin for-desktop-up {
@hegyessy
hegyessy / kirbycms-php-fpm-module-requirements
Created April 29, 2017 22:18
kirby php-fpm module requirements
sudo pkg install php71-session php71-json php71-filter
@hegyessy
hegyessy / phoenix-setup-mix.create
Last active May 4, 2017 04:14
Error and resolution when following Phoenix setup instructions
# after 'brew install postgres' and starting the service 'brew services start postgresql' to get rid of error:
# "FATAL 28000 (invalid_authorization_specification): role "postgres" does not exist"
psql -d template1
CREATE ROLE postgres LOGIN CREATEDB PASSWORD 'postgres';
# exit psql and run mix.create to set up the dev server