Give it a hover! Inspired by: Navigation Bar by Jan Kaděra http://dribbble.com/shots/1267103-Navigation-Bar
Forked from Katy DeCorah's Pen Navigation Bar by Jan Kaděra.
A Pen by Branden Dane on CodePen.
| // Just before switching jobs: | |
| // Add one of these. | |
| // Preferably into the same commit where you do a large merge. | |
| // | |
| // This started as a tweet with a joke of "C++ pro-tip: #define private public", | |
| // and then it quickly escalated into more and more evil suggestions. | |
| // I've tried to capture interesting suggestions here. | |
| // | |
| // Contributors: @r2d2rigo, @joeldevahl, @msinilo, @_Humus_, | |
| // @YuriyODonnell, @rygorous, @cmuratori, @mike_acton, @grumpygiant, |
| <?php | |
| /* This Snips file is all about showing some PHP love! | |
| ------------------------------------------------------------- | |
| Unfortunately, due to previous contract stipulations I don't | |
| have access to much of the PHP I've written over the years. | |
| This file contains a few snips I was able to get a hold of and | |
| are based around CMS devlopment */ | |
| ?> | |
| let plainTextEmailAddress = null | |
| let cloudFrontPrivateKey = null | |
| const KMS = require('aws-sdk/clients/kms') | |
| const kms = new KMS({apiVersion: '2014-11-01'}) // <==== TODO: CHECK TO SEE IF apiVersion is correct!!!!!!!!!!!! | |
| const crypto = require('crypto') | |
| const headers = { | |
| "Content-Type": "application/json", | |
| "Access-Control-Allow-Headers": "Content-Type", | |
| "Access-Control-Allow-Methods": "OPTIONS,POST", |
| const http = require('http'); | |
| const url = require('url'); | |
| const fs = require('fs'); | |
| const path = require('path'); | |
| const port = process.argv[2] || 9000; | |
| http.createServer(function (req, res) { | |
| console.log(`${req.method} ${req.url}`); | |
| // parse URL |
| // TODO |
| // -- hyper-stylesheet-hash:128569e017c92721d52dee4a814c9cf1 -- | |
| /* ================================= | |
| GLOBAL HYPER CONFIGS | |
| - Ref: https://hyper.is#cfg | |
| ==================================== */ | |
| module.exports = { | |
| config: { |
| // public |
| // Settings |