Skip to content

Instantly share code, notes, and snippets.

Gradient shadow in pure CSS

alt text

HTML
<button>Let's Go !</button>
### Keybase proof
I hereby claim:
* I am thedonquixotic on github.
* I am davidaslanfrench (https://keybase.io/davidaslanfrench) on keybase.
* I have a public key ASAZfGfYHoEDyLhShVgEstRkCNi_j17MwAXqj5nXrSZwvwo
To claim this, I am signing this object:
@jcklpe
jcklpe / .hyper.js
Created April 24, 2018 17:42
HyperJS Terminal settings.
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// Choose either "stable" for receiving highly polished,
// or "canary" for less polished but more frequent updates
updateChannel: 'stable',
@jcklpe
jcklpe / matrix.sh
Created July 25, 2018 03:22 — forked from alexfornuto/matrix.sh
Matrix Bash Script
#!/bin/bash
#
# matrix: matrix-ish display for Bash terminal
# Author: Brett Terpstra 2012 <http://brettterpstra.com>
# Contributors: Lauri Ranta and Carl <http://blog.carlsensei.com/>
#
# A morning project. Could have been better, but I'm learning when to stop.
### Customization:
blue="\033[0;34m"
@jcklpe
jcklpe / FF57+RoomyBookmarksToolbar.md
Created August 15, 2018 19:20 — forked from sboettcher/FF57+RoomyBookmarksToolbar.md
Firefox Quantum Roomy Bookmarks Toolbar

In your Profile folder, add/edit the file chrome/userChrome.css with the following contents:

/* Recreates the basic functionality of the popular Roomy Bookmarks Toolbar add-on:
Hide bookmarks bar items label text, show on hover. */

.bookmark-item > .toolbarbutton-text {
  margin-top: -1px !important;
}
.bookmark-item {
@jcklpe
jcklpe / .hyper.js
Created November 12, 2018 07:31
hyper config
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'stable',
@jcklpe
jcklpe / hyper-global-hotkey.md
Created November 12, 2018 18:50
Create global shortcut on Windows 10 for launching Hyper.js terminal
  1. Install AHK
  2. write a file that contains the following config. ^+.:: ; ctrl+shift+. to launch hyper.js Run C:\Users\{{YOUR USERNAME}}\AppData\Local\hyper\app-2.0.0\Hyper.exe Return
  3. Hit the win key and type run to open the windows runner.
  4. type shell:startup to open the Windows shell startup folder.
  5. Place the file.ahk in the folder. Now that ahk script will always register itself at start time.
@jcklpe
jcklpe / wp-theme-gitignore.txt
Last active November 12, 2018 20:25
Wordpress gitignore file
# NPM #
##########
# Ignore all directories called node_modules in current folder and any subfolders.
node_modules/
/node_modules/
# Packages #
############
*.7z
*.dmg
@jcklpe
jcklpe / gmail-tweak.css
Created November 13, 2018 19:40
Userstyle to hide unread badge on gmail
/*hide unread button*/
.bhZ:not(.bym):not(.bjB) .bsU{
display:none;
}
@jcklpe
jcklpe / wp-gulp.js
Created November 13, 2018 19:45 — forked from zachattack/wp-gulp.js
Simple Gulp Config for Word Press Dev
// Gulp.js configuration
'use strict';
const
// source and build folders
dir = {
src : './static/',
lib : './static/lib/',
build : './assets/'