Skip to content

Instantly share code, notes, and snippets.

View hiasinho's full-sized avatar

Mathias Maisberger hiasinho

View GitHub Profile

Keybase proof

I hereby claim:

  • I am hiasinho on github.
  • I am hiasinho (https://keybase.io/hiasinho) on keybase.
  • I have a public key whose fingerprint is 4423 7E1F 5370 B2A6 3052 1786 E039 4132 C5A8 2ECE

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am hiasinho on github.
  • I am hiasinho (https://keybase.io/hiasinho) on keybase.
  • I have a public key ASDgK7kbjlPvU0Uk7kC2pG8p_Zckyq9rOBbsDGInS_-o-wo

To claim this, I am signing this object:

@hiasinho
hiasinho / foundation-grid.scss
Last active March 31, 2017 06:41
Extend inuit.css
// Foundation Grid
//
// A Sticky used on canvases
//
// Markup:
// <div class="row">
// <div class="small-2 large-4 columns"><div class="kss-example-component">...</div></div>
// <div class="small-4 large-4 columns"><div class="kss-example-component">...</div></div>
// <div class="small-6 large-4 columns"><div class="kss-example-component">...</div></div>
// </div>
#! /bin/bash
RED='\033[0;31m'
YELLOW='\033[1;33m'
NC='\033[0m' # No Color
FILE_TYPES="\.(erb|html|haml|rb|js|jsx|cjsx)"
CLASSES_PREFIX="class(Name)?=[\"\'](.*\s)?"
SELECTORS=(
@hiasinho
hiasinho / vim-cheatsheet.md
Last active November 19, 2016 13:16
VIM Cheatsheet

VIM Cheat Sheet

Cursor movement

Key Description
h move cursor left
j move cursor down
@hiasinho
hiasinho / Todos.js
Last active June 3, 2016 06:06
Reducer Adapters
import React, {PropTypes} from 'react';
import {connect} from 'react-redux';
import {bindActionCreators} from 'redux';
import TodoActions as actions from '../actions';
import TodoList from '../components/TodoList';
// This is for POJO
import { query } from '../utils/helpersPojo'
// Uncomment this is for Immutable.js
var hello = "Hello Hias!";
console.log(hello);
@hiasinho
hiasinho / modernie.md
Last active September 1, 2021 22:23
Internet Explorer on Vagrant

The Modern.ie Virtual Machine Images – VMs used for testing several versions of IE – are now also available as vagrant boxes. Here’s the list:

@hiasinho
hiasinho / instructions.md
Last active January 26, 2017 13:48
DigitalOcean, Dokku, Rails, PostgreSQL
@hiasinho
hiasinho / backbone.react.coffee
Last active August 29, 2015 14:14
React mixin for integrating Backbone
Backbone.React = {} unless Backbone.React
Backbone.React.Base = {} unless Backbone.React.Base
###
Backbone React Base Mixin
=========================
Usage example:
--------------