Skip to content

Instantly share code, notes, and snippets.

View virtual's full-sized avatar
🐈‍⬛
Watching cat videos

Jeanine Schoessler virtual

🐈‍⬛
Watching cat videos
View GitHub Profile
@virtual
virtual / dabblet.css
Created April 6, 2015 16:45
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
@virtual
virtual / dabblet.css
Created April 6, 2015 16:46
Circular Tooltip (SO)
/**
* Circular Tooltip (SO)
* http://stackoverflow.com/q/13132864/1397351
*/
* { margin: 0; padding: 0; }
body {
overflow: hidden;
background: url(http://theearlcarlson.com/experiments/amTooltip/img/bg.jpg);
}
/* generic styles for button & circular menu */
@virtual
virtual / dabblet.css
Last active August 29, 2015 14:18
Candy Template revised 2015-04
/* Candy Template revised 2015-04 */
@import url("http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/foundation/5.5.1/css/foundation.min.css");
@import url("http://fonts.googleapis.com/css?family=Niconne&subset=latin,latin-ext");
.show-for-sr { clip: rect(1px, 1px, 1px, 1px); height: 1px; overflow: hidden; position: absolute !important; width: 1px; }
.clearfix:before, .clearfix:after { content: " "; display: table; }
body { background-color: #a71068; background-image: url('http://www.satinflame.com/images/structure/bk.jpg'); background-position: top center; background-repeat:repeat; font-family: Arial, Helvetica, sans-serif; color: #444; margin: 0; line-height: 1.4em; padding: 0 50px; }
h1, h2, h3, h4, h5, h6 { font-family: 'Niconne', Georgia, "Times New Roman", Times, serif; #bottomcontent h2 {
font-family: 'Niconne', Georgia, serif;
padding: 0 0 2px 0;
@virtual
virtual / dabblet.css
Last active August 29, 2015 14:18
Fun
/* Fun */
@import url("https://cdnjs.cloudflare.com/ajax/libs/foundation/5.5.1/css/foundation.min.css");
a { color:#f00; }

Keybase proof

I hereby claim:

  • I am Virtual on github.
  • I am satinflame (https://keybase.io/satinflame) on keybase.
  • I have a public key whose fingerprint is C561 A092 F537 05AD 59B3 44C8 2422 5DE3 0896 4FE8

To claim this, I am signing this object:

@virtual
virtual / add-checkout-form-key.sh
Created June 26, 2017 14:14 — forked from schmengler/add-checkout-form-key.sh
Magento SUPEE-9767 Checkout Form Key Theme Patch
find -L app/design/frontend -regex '.*\(shipping\|billing\|shipping_method\|payment\).phtml' -exec grep -L formkey {} \; \
| xargs sed -i 's/<\/form>/<?php echo $this->getBlockHtml("formkey") ?><\/form>/g'
find -L skin/frontend -name 'opcheckout.js' -exec grep -L form_key {} \; \
| xargs sed -i 's/if (elements\[i\].name=='\''payment\[method\]'\'') {/if (elements[i].name=='\''payment[method]'\'' || elements[i].name == '\''form_key'\'') {/g'
@virtual
virtual / 3-piece-slider-with-featured-center.markdown
Created July 13, 2017 23:05
3 Piece Slider with featured center
@virtual
virtual / .bash_profile
Created September 21, 2017 13:33
Terminal colors
# ~/.bash_profile
export CLICOLOR=1
export LSCOLORS=GxFxCxDxBxegedabagaced
alias wget='curl -O'
alias ls='ls -GFh'
alias ll='ls -l'
alias j='jasmine-node .'
alias up='cd ..'
alias up2='cd ../..'
@virtual
virtual / App.js
Created October 3, 2017 22:24 — forked from eddywashere/App.js
Reactstrap App.js Example for create-react-app
import React, { Component } from 'react';
import {
Collapse,
Navbar,
NavbarToggler,
NavbarBrand,
Nav,
NavItem,
NavLink,
Container,
alias pushToProd = 'npm run build && cd ../ && git add . && git commit -m "auto commit" && git push && git push heroku master'