Skip to content

Instantly share code, notes, and snippets.

View rundeploy's full-sized avatar
🎯
Focusing

Cristian Mitul rundeploy

🎯
Focusing
View GitHub Profile
@lubosz
lubosz / mandelbrot.html
Last active October 14, 2016 15:42
Simple Mandelbrot Set WebGL
<html>
<head>
<title>Mandelbrot WebGL</title>
<style>
body, canvas {
margin: 0px;
width: 100%;
height: 100%;
overflow: hidden;
}
@atimb
atimb / LICENSE.txt
Created December 8, 2011 23:32 — forked from 140bytes/LICENSE.txt
Snake game in 140byt.es
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2011 Attila Incze <http://atimb.me>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
@wolever
wolever / Term.vim
Created May 10, 2011 22:32
Vim command to open Terminal.app at the current file's location
fun! Term()
!term "%:p:h"
endfun
command! Term call Term()