Skip to content

Instantly share code, notes, and snippets.

@berkin
berkin / intent.js
Last active November 22, 2016 11:35
function Intent() {
const self = this;
let timer;
this.exec = function (callback, duration, ...args) {
self.clear();
timer = setTimeout(callback.bind(this, args), duration || 500);
};
this.clear = function() {
@berkin
berkin / SassMeister-input-HTML.html
Created March 24, 2014 09:07
Generated by SassMeister.com.
<div class="container">
<div class="sidebar">
test
</div>
<div class="content">
test<br />
test
test
test
test
<!DOCTYPE html>
<!-- Helpful things to keep in your <head/>
// Brian Blakely, 360i
// http://twitter.com/brianblakely/
-->
<head>
<!-- According to Heather Champ, former community manager at flickr,
you should not allow search engines to index your "Contact Us"
@berkin
berkin / Windows - Cmd - recursively delete .svn folders
Created April 28, 2011 13:45
recursively delete .svn folders
FOR /R %d IN (.svn) DO rmdir /s /q “%d”