Skip to content

Instantly share code, notes, and snippets.

View beijaflor's full-sized avatar

sho otani beijaflor

View GitHub Profile
@beijaflor
beijaflor / config.rb
Created April 14, 2014 16:12
compass setting to ask overwrite when it build as :production
# Require any additional compass plugins here.
# Set this to the root of your project when deployed:
http_path = "/"
css_dir = "css"
sass_dir = "sass"
images_dir = "img"
javascripts_dir = "js"
# You can select your preferred output style here (can be overridden via the command line):
@beijaflor
beijaflor / Gruntfile.coffee
Last active August 29, 2015 14:00
Grunt for GitHub flavored markdown
module.exports = (grunt) ->
grunt.initConfig
md2html:
multiple_files:
options:
layout: 'layout/layout.html'
files: [
expand: true
src: ['*.md']
dest: '../'
@beijaflor
beijaflor / clear.gif.txt
Created August 25, 2014 08:34
clear img data scheme
url(data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==)
@beijaflor
beijaflor / 0_reuse_code.js
Last active August 29, 2015 14:09
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@beijaflor
beijaflor / uxCheckList.md
Last active August 29, 2015 14:13
markdown version of UX Check List
  • Research

    • [ ]Competitive Analysis
    • [ ]Data analysis
    • [ ]User feedback
  • Plan

  • [ ]User stories
# EditorConfig is awesome: http://EditorConfig.org
root = true
# root = false
# =================
# --- TARGET
[*.{extention}]
# --- INDENT
@beijaflor
beijaflor / smxwest2015.md
Last active August 29, 2015 14:16
SMX West 3/2-5, 2015 Description

Tearsday


[SEO Track] The Growth Of Direct Answers: How Should SEOs React? (#smx #11A)

about

import test from 'tape';
// For each unit test you write,
// answer these questions:
test('What component aspect are you testing?', assert => {
const actual = 'What is the actual output?';
const expected = 'What is the expected output?';
assert.equal(actual, expected,
'What should the feature do?');