Skip to content

Instantly share code, notes, and snippets.

View victorb's full-sized avatar
๐Ÿ„โ€โ™‚๏ธ
๐“ข๐“พ๐“ป๐“ฏ๐“ฒ๐“ท๐“ฐ - ๐“ฝ๐“ฑ๐“ฎ - ๐“ฌ๐”‚๐“ซ๐“ฎ๐“ป๐“ผ๐“น๐“ช๐“ฌ๐“ฎ

Victor Bjelkholm victorb

๐Ÿ„โ€โ™‚๏ธ
๐“ข๐“พ๐“ป๐“ฏ๐“ฒ๐“ท๐“ฐ - ๐“ฝ๐“ฑ๐“ฎ - ๐“ฌ๐”‚๐“ซ๐“ฎ๐“ป๐“ผ๐“น๐“ช๐“ฌ๐“ฎ
  • Stuff
  • Barcelona, Spain
  • 20:22 (UTC +08:00)
  • Bluesky @victor.earth
View GitHub Profile
@victorb
victorb / twc.js
Created September 9, 2015 12:38 — forked from ivarvong/twc.js
(function() {
/**
* @param {number} meta
* @param {number} child
* @return {?}
*/
function addImage(meta, child) {
meta = meta || 1;
child = child || 0;
/** @type {Image} */
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-2.1.4.js"></script>
<meta charset="utf-8">
<title>JS Bin</title>
<style id="jsbin-css">
body, html {
margin: 0;
padding: 0;
@victorb
victorb / index.html
Created November 4, 2015 11:31 — forked from anonymous/index.html
JS Bin // source http://jsbin.com/vogubu
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-2.1.4.js"></script>
<meta charset="utf-8">
<title>JS Bin</title>
<style id="jsbin-css">
body, html {
margin: 0;
padding: 0;
@victorb
victorb / introrx.md
Created January 4, 2016 09:47 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@victorb
victorb / replify
Created August 19, 2016 17:18 — forked from postpostscript/ replify
replify - Create a REPL for any command
#!/bin/sh
command="${*}"
printf "Initialized REPL for [%s]\n" "$command"
printf "%s> " "$command"
read -r input
while [ "$input" != "" ];
do
eval "$command $input"
printf "\n%s> " "$command"