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:
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
min-height: 100%; |
/** | |
* 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 */ |
/* 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; |
/* Fun */ | |
@import url("https://cdnjs.cloudflare.com/ajax/libs/foundation/5.5.1/css/foundation.min.css"); | |
a { color:#f00; } |
I hereby claim:
To claim this, I am signing this object:
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' |
# ~/.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 ../..' |
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' |