Skip to content

Instantly share code, notes, and snippets.

View victorb's full-sized avatar
🏄‍♂️
𝓢𝓾𝓻𝓯𝓲𝓷𝓰 - 𝓽𝓱𝓮 - 𝓬𝔂𝓫𝓮𝓻𝓼𝓹𝓪𝓬𝓮

Victor Bjelkholm victorb

🏄‍♂️
𝓢𝓾𝓻𝓯𝓲𝓷𝓰 - 𝓽𝓱𝓮 - 𝓬𝔂𝓫𝓮𝓻𝓼𝓹𝓪𝓬𝓮
View GitHub Profile
@victorb
victorb / replify
Created August 19, 2016 17:18 — forked from danielrw7/ 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"
@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 / 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;
<!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 / 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} */
@victorb
victorb / form.json
Last active September 3, 2015 10:03 — forked from qustavo/form.json
{
"title": "Sandbox - Boilerplate",
"design_id": "wEdZrLDpiJ",
"fields": [
{
"type": "short_text",
"question": "This is a ShortTextField, What's your name? [ _Edit this text & press Build_ ]",
"description": "I'm sure you have a great name! ← [ _Edit this text & press Build_ ]",
"required": true
},
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<div id="form_here"></div>
<script id="jsbin-javascript">
console.clear();
{
"title": "Sandbox - Example #1",
"design_id": 11,
"fields": [
{
"type": "statement",
"question": "Hi Joe. Thanks for purchasing a new <strong>Toaster Fridge.</strong>"
},
{
"type": "picture_choice",
{
"title": "Apache and Tomcat Logs",
"services": {
"query": {
"list": {
"0": {
"query": "apache !tomcat !static",
"alias": "",
"color": "#7EB26D",
"id": 0,
@victorb
victorb / css_resources.md
Created March 2, 2014 09:47 — forked from jookyboi/css_resources.md
CSS libraries and guides to bring some order to the chaos.

Libraries

  • 960 Grid System - An effort to streamline web development workflow by providing commonly used dimensions, based on a width of 960 pixels. There are two variants: 12 and 16 columns, which can be used separately or in tandem.
  • Compass - Open source CSS Authoring Framework.
  • Bootstrap - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.
  • Font Awesome - The iconic font designed for Bootstrap.
  • Zurb Foundation - Framework for writing responsive web sites.
  • SASS - CSS extension language which allows variables, mixins and rules nesting.
  • Skeleton - Boilerplate for responsive, mobile-friendly development.

Guides