Skip to content

Instantly share code, notes, and snippets.

View terwanerik's full-sized avatar

Erik Terwan terwanerik

View GitHub Profile
@terwanerik
terwanerik / DateFlowLayout.h
Created December 19, 2016 10:49 — forked from vigorouscoding/DateFlowLayout.h
UICollectionView with sticky headers which works for horizontal as well as vertical scrolling
#import <UIKit/UIKit.h>
@interface DateFlowLayout : UICollectionViewFlowLayout
@end
@terwanerik
terwanerik / Vue component
Created April 16, 2018 12:48
Vue component file template for PHPStorm/WebStorm/IntelliJ
#set( $regex = "([a-z])([A-Z]+)")
#set( $replacement = "$1-$2")
#set( $COMPONENT_NAME_KEBAB = $COMPONENT_NAME.replaceAll($regex, $replacement).toLowerCase())
<template>
<div class="$COMPONENT_NAME">
#[[$END$]]#
</div>
</template>
<script type="text/babel">
<?php
/**
* Made by Erik Terwan
* erik@erikterwan.com
* https://erikterwan.com
*
* All rights reserved
*
* Created on 2019-03-26
*/