Skip to content

Instantly share code, notes, and snippets.

View graphicagenda's full-sized avatar
🥳
Just upgraded to GIt Pro

Shining Bright Diamond graphicagenda

🥳
Just upgraded to GIt Pro
View GitHub Profile
@graphicagenda
graphicagenda / dabblet.css
Last active November 29, 2019 22:38 — forked from LeaVerou/dabblet.css
[drop-shadow filter vs box-shadow] #LegacyGISTS
/**
* drop-shadow filter vs box-shadow
*/
html {
background: url('http://subtlepatterns.com/patterns/purty_wood.png')
}
.speech-bubble {
position: relative;
@graphicagenda
graphicagenda / post-receive
Last active November 29, 2019 22:38 — forked from mythmon/post-receive
[The post-receive hook that allows to selectively run git hooks.] #LegacyGISTS
#!/bin/bash
# wrapper script for post-recieve
enabled_hooks="$(git config hooks.enabled)"
hooks_path="/usr/local/share/git/hooks/"
if [ -n "${enabled_hooks}" ] ; then
# change separate to comma
OLDIFS="$IFS"
IFS=","
@graphicagenda
graphicagenda / future_core_login.php
Last active November 29, 2019 22:37 — forked from franz-josef-kaiser/future_core_login.php
[A WordPress plugin to build an environment to develop a single stylesheet for the login/reg/pass screen in WP 3.1] #LegacyGISTS
<?php
/**
* Plugin Name: Future Core Login
* Plugin URI: http://unserkaiser.com
* Description: Replacing the current stylesheets loaded on wp-login.php until this ticket goes into core: <a href="http://core.trac.wordpress.org/ticket/12506">#12506</a>
* Version: 0.1
* Author: Franz Josef Kaiser
* Author URI: http://unserkaiser.com
* License: GPL2
*