Skip to content

Instantly share code, notes, and snippets.

View radiovisual's full-sized avatar
😬
Hello

Michael Wuergler radiovisual

😬
Hello
  • UBS
  • Switzerland
View GitHub Profile
@radiovisual
radiovisual / stringCharCodes.js
Created April 10, 2016 13:19
Get the character codes of all characters in a string
var str = '[]{}:,"\'';
for (var i = 0; i < str.length; i++) {
console.log(str[i], str.charCodeAt(i));
}
/*
[ 91
] 93
{ 123
@radiovisual
radiovisual / url-regex.js
Created March 14, 2016 11:59
Simple URL RegExp
// WIP
var urlrx = /%&=a-zA-Z:\/0-9\._-]*/g;
@radiovisual
radiovisual / component-boilerplate.js
Created March 7, 2016 20:54
Simple component boilerplate
// Change references to "blahCode" on lines 10 and 19
// to reflect the name of your module, as you want it to
// appear in the global scope of your enviornment
(function (root, factory) {
'use strict';
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
define([], function () {
return (root.blahCode = factory());
@radiovisual
radiovisual / bindToUDP.py
Created January 24, 2016 00:17
Bind a useless process to any port (useful for testing)
import socket
import sys
# Create a TCP/IP socket
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
port = sys.argv[1]
# Bind the socket to the port
server_address = ('localhost', int(port))
@radiovisual
radiovisual / uninstall_homebrew.sh
Created December 14, 2015 12:52 — forked from mxcl/uninstall_homebrew.sh
Uninstall Homebrew
#!/bin/sh
# Just copy and paste the lines below (all at once, it won't work line by line!)
# MAKE SURE YOU ARE HAPPY WITH WHAT IT DOES FIRST! THERE IS NO WARRANTY!
function abort {
echo "$1"
exit 1
}
set -e
@radiovisual
radiovisual / keystone-rootpath.js
Last active September 25, 2015 15:39
Add a rootpath value to your keystone templates
var path = require('path');
exports.assignRootPath = function(req, res, next) {
var locals = res.locals;
var rootPath = "";
req.path.split(path.sep).forEach(function(item){
if(item) {
rootPath += "../";
@radiovisual
radiovisual / template.html
Created September 16, 2015 17:21
Start template for working with WebGL
<!DOCTYPE html>
<html>
<head>
<title>YOUR TITLE</title>
</head>
<body>
<script>
var canvas = document.createElement("canvas");
canvas.width = window.innerWidth;
canvas.height= window.innerHeight;
@radiovisual
radiovisual / isFileType.js
Created August 19, 2015 15:42
Check a path string for a specific file type
/**
* Check a path string for a specific file type
* @param {String} path
* @param {String} extension
* @returns {Boolean}
**/
function isFileType(path, extension){
console.log("checking %s %s", path, extension);
return new RegExp("\."+extension+"$", 'i').test(path);
}
@radiovisual
radiovisual / OpenMobileMenu-DisableBGScroll.js
Last active December 6, 2019 03:31
Open your Mobile Menus and Disable Background Scrolling
$(document).ready(function() {
function closeMobileMenu() {
var mobileContent = $("#mobile_menu_content");
// now `unlock` the body contents and put things back to
// normal before fading out the mobile menu.
var bodyTemp = $('.body_temp');
var scrolltop = Math.abs(bodyTemp.position().top);
@radiovisual
radiovisual / gulp.js
Created July 22, 2015 16:09
Base gulp file for auto-reloading of the browser and auto-min-cat of CSS
var gulp = require('gulp');
var minifyCSS = require('gulp-minify-css');
var concat = require('gulp-concat');
var browserSync = require('browser-sync').create();
var paths = {
css: ['./css/*.css'],
scripts: ['./js/*.js'],
html: ['./*.html']
};