View profile.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Aliasses | |
Set-Alias l ls | |
Set-Alias e explorer | |
# Force coloring of git and npm commands | |
$env:TERM = 'cygwin' # windows-ansi | cygwin | |
$env:LESS = 'FRSX' | |
# | |
# Custom prompt |
View gruntfile.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var glob = require('glob'); | |
module.exports = function Gruntfile(grunt) { | |
var config = grunt.file.readJSON('./app/config'); | |
grunt.loadNpmTasks('grunt-htmllint-http'); |
View Registry.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @module Registry pattern implementation | |
*/ | |
define(function() { | |
'use strict'; | |
/** | |
* Constructor | |
*/ |
View gist:951844
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Public Sub AllInternalPasswords() | |
Const DBLSPACE As String = vbNewLine & vbNewLine | |
Const AUTHORS As String = DBLSPACE & vbNewLine & _ | |
"Adapted from Bob McCormick base code by" & _ | |
"Norman Harker and JE McGimpsey" | |
Const HEADER As String = "AllInternalPasswords User Message" | |
Const VERSION As String = DBLSPACE & "Version 1.1.1 2003-Apr-04" | |
Const REPBACK As String = DBLSPACE & "Please report failure " & _ | |
"to the microsoft.public.excel.programming newsgroup." | |
Const ALLCLEAR As String = DBLSPACE & "The workbook should " & _ |
View gist:951833
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$time1 = explode(' ', microtime()); | |
$time1 = $time1[1] . substr($time1[0], 1, -2); | |
// your code | |
$time2 = explode(' ', microtime()); | |
$time2 = $time2[1] . substr($time2[0], 1, -2); | |
View gist:951858
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Split a array into semi-equal sized chunks. | |
* A so-called 'columnizer' | |
* | |
* @param array $array The array to split | |
* @param array $numberOfChunks The number of chunks | |
* @param bool $vertical Whether to order vertically or horizonally | |
* | |
* @return array Array with $numberOfColumns nodes with items of $array |
View changepassword.bat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
@echo This batchfile changes your password 30 times into a temporary password, and finally into your given password. | |
@echo This way, you can use your 'old' password, when you are forced to change it ;) | |
SET /P user=username: | |
SET /P pwd=password: | |
echo username: %user% | |
net user %user% C6us4deSAf /domain |
View ramda-generate-since-docblock.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var R = require('ramda'); | |
var IO = require('ramda-fantasy').IO; | |
var Either = require('ramda-fantasy').Either; | |
var glob = require('glob'); | |
var exec = cmd => require('child_process').execSync(cmd, { encoding: 'utf8' }); | |
// getFiles :: IO [String] | |
var getFiles = () => new IO(() => glob.sync('src/*.js')); |
View gulpfile.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'); | |
require('./tasks-css'); | |
require('./tasks-js'); | |
// etc. | |
gulp.task('dev', ['browsersync', 'html-watch', 'img-watch', 'css-watch', 'js-watch']); | |
gulp.task('dist', ['clean', 'html-compile', 'img-optimize', 'css-compile', 'js-transpile']); | |
// etc. |
View functional-composition-with-functor-map.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// add :: Number -> Number -> Number | |
var add = function(left) { return function(right) { return left + right } }; | |
// multiply :: Number -> Number -> Number | |
var multiply = function(left) { return function(right) { return left * right } }; | |
// map :: (a -> b) -> Functor a -> Functor b | |
var map = function(fn, val) { return val.map(fn) }; | |
// |
OlderNewer