Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am zikes on github.
  • I am zikes (https://keybase.io/zikes) on keybase.
  • I have a public key ASBSugh561xaMB16W6xH6UlQN9i41K4_UzhT2G5_3JJD_Qo

To claim this, I am signing this object:

#!/usr/bin/env bash
usage() {
cat <<HERE
usage: git make-remote <project-name>
or: git make-remote <path/to/project-name>
HERE
}
GIT_SERVER="git.zikes.me"
@zikes
zikes / reclaimWindows10.ps1
Created January 8, 2017 07:48 — forked from alirobe/reclaimWindows10.ps1
"Reclaim Windows 10" turns off a bunch of unnecessary Windows 10 telemetery, removes bloatware, and privacy invasions. Review and tweak before running. Scripts for reversing are included and commented. Fork via https://github.com/Disassembler0 (different defaults)
##########
# Win10 Initial Setup Script
# Author: Disassembler <disassembler@dasm.cz>
# Version: 1.7, 2016-08-15
# dasm's script: https://github.com/Disassembler0/Win10-Initial-Setup-Script/
# THIS IS A PERSONALIZED VERSION
# This script leaves more MS defaults on, including MS security features.
# Tweaked based on personal preferences for @alirobe 2016-11-16 - v1.7.1
@zikes
zikes / .block
Last active November 22, 2016 19:08
Gocagne Logotype
license: mit
@zikes
zikes / index.html
Created January 21, 2013 21:06
Countdown
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Countdown</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script>
var Time = {};
Time.second = 1000;
Time.minute = Time.second * 60;
@zikes
zikes / index.html
Created December 19, 2012 16:45
Matrix Transpose
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Matrix Transpose</title>
<script src="numbers.min.js"></script>
<script src="http://d3js.org/d3.v3.js"></script>
<style>
.button {
fill: steelBlue;
@zikes
zikes / index.html
Last active November 21, 2015 21:19 — forked from mbostock/.block
Connected Particles III
<!DOCTYPE html>
<meta charset="utf-8">
<canvas width="960" height="500"></canvas>
<script>
/* https://github.com/d3/d3-timer Copyright 2015 Mike Bostock */
"undefined"==typeof requestAnimationFrame&&(requestAnimationFrame="undefined"!=typeof window&&(window.msRequestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||window.oRequestAnimationFrame)||function(e){return setTimeout(e,17)}),function(e,n){"object"==typeof exports&&"undefined"!=typeof module?n(exports):"function"==typeof define&&define.amd?define(["exports"],n):n(e.timer={})}(this,function(e){"use strict";function n(){r=m=0,c=1/0,t(u())}function t(e){if(!r){var t=e-Date.now();t>24?c>e&&(m&&clearTimeout(m),m=setTimeout(n,t),c=e):(m&&(m=clearTimeout(m),c=1/0),r=requestAnimationFrame(n))}}function i(e,n,i){i=null==i?Date.now():+i,null!=n&&(i+=+n);var o={callback:e,time:i,flush:!1,next:null};a?a.next=o:f=o,a=o,t(i)}function o(e,n,t){t=null==t?Date.now():+t,null!=n&&(t+=+n),l.callback=e,l.time=t}function u(e){e=null==e?D
@zikes
zikes / index.html
Created December 14, 2012 14:37
Quartiles using numbers.js & d3.js
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Quartiles using numbers.js & d3.js</title>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="numbers.js"></script>
<style>
body {font: 10px sans-serif;}
@zikes
zikes / pager.php
Created October 8, 2012 17:24
PHP Pagination
<?php
// global configuration,
$page_size = 5; // how many items per page
$page_start = 1; // the starting page
// how many numbers will be shown before and after current, including current
$page_range_near = 3;
// The number of items to paginate through, most likely the result of
@zikes
zikes / Alternator.js
Created August 30, 2012 16:00
Alternator Javascript Control
function Alternator(opts){
var options = {
activate:function(){},
deactivate:function(){},
elements: [],
active: 0
};
// Overwrite defaults with user options
for(var opt in opts) if(opts.hasOwnProperty(opt)){