Skip to content

Instantly share code, notes, and snippets.

@frytyler
frytyler / React-Hooks-Talk-July-30-2019.md
Last active July 30, 2019 17:22
Eng talks markdown slides from React hooks talk - July 30th 2019

1. React hooks 🎣

::What are we talking about? 👨‍💻::

  • React hooks 🎣 workshop in NYC 🗽
  • What are hooks 🎣
  • Important notes ❗️
  • Peek 👀 at useState & useReducer & useEffect
  • Shopify provided hooks 🎣 useI18n, useQuery + more
  • Other React hooks 🎣
@frytyler
frytyler / wp_postmeta.php
Last active December 18, 2015 16:58
Stripped down functionality for a Wordpress postmeta box
<?php
function add_posts_panels( )
{
if(function_exists('add_meta_box'))
{
add_meta_box('id',__('Meta Box Title'), 'meta_box_function','post');
}
}
function meta_box_function ( )
@frytyler
frytyler / Font Smoothing
Created June 19, 2013 13:55
Font smoothing technique for chrome ( SVG )
@font-face {
font-family: 'LatoRegular';
src: url('/downloads/Lato-Reg-webfont.eot');
src: url('/downloads/Lato-Reg-webfont.eot?#iefix') format('embedded-opentype'),
url('/downloads/Lato-Reg-webfont.woff') format('woff'),
url('/downloads/Lato-Reg-webfont.ttf') format('truetype'),
url('/downloads/Lato-Reg-webfont.svg#LatoRegular') format('svg');
font-weight: normal;
font-style: normal;
@frytyler
frytyler / index.html
Created August 16, 2012 13:19
Simple progress bar styles. *Chris Coyier's scalable background image technique: http://css-tricks.com/perfect-full-page-background-image/
<div id="bg">
<img src="http://img.skitch.com/20120814-m3ei5cptau2yjn7sgi2a4i62kn.png" alt="">
</div>
<div class="wrapper">
<div class="progress"></div>
</div>
<div class="wrapper">