Skip to content

Instantly share code, notes, and snippets.

View mendaomn's full-sized avatar

Alessandro Menduni mendaomn

View GitHub Profile
@mendaomn
mendaomn / dataURI.css
Last active November 16, 2016 09:12
Blog post code samples - The Performance of Images: Inlining
.image-container {
background-image: url(data:image/jpeg;base64,R0lGODlhEAAQAMQAAORHHOVSKudfOulrSOp3WOyDZu6QdvCchPGolfO0o/XBs/fNwfjZ0frl3/zy7////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAkAABAALAAAAAAQABAAAAVVICSOZGlCQAosJ6mu7fiyZeKqNKToQGDsM8hBADgUXoGAiqhSvp5QAnQKGIgUhwFUYLCVDFCrKUE1lBavAViFIDlTImbKC5Gm2hB0SlBCBMQiB0UjIQA7)
}
@mendaomn
mendaomn / QueenAttack.js
Last active January 30, 2016 22:35
FP baby steps: detect if two Chess Queens can attack each other
// QueenAttack.js
var QueenAttack = ( function(){
function sameRow( board ){
return board.white.x === board.black.x;
}
function sameColumn( board ){
return board.white.y === board.black.y;
@mendaomn
mendaomn / spinner.css
Created January 18, 2016 12:03
Material design spinner - Angular 1 directive
/* MATERIAL DESIGN SPINNER, based on http://codepen.io/mrrocks/pen/EiplA
it relies on this SVG code
<svg class="spinner" width="65px" height="65px" viewBox="0 0 66 66" xmlns="http://www.w3.org/2000/svg">
<circle class="path" fill="none" stroke-width="6" stroke-linecap="round" cx="33" cy="33" r="30"></circle>
</svg>
*/
/* PARAMETERS
offset: 187;
@mendaomn
mendaomn / LetsTest.js
Last active January 30, 2016 22:28
LetsTest - Naive Test "framework"
( function __LetsTest__install(){
window.LetsTest = window.LetsTest || {};
function that( toBeChecked ){
var myret;
if ( toBeChecked instanceof Function )
myret = toBeChecked();
else
@mendaomn
mendaomn / Require.js
Created December 11, 2015 10:54
Modules loader - Simple implementation
// Require.js
(function(window, document, undefined) {
var Require = function() {
var modules = {};
function require(name) {
var Module = modules[name];
@mendaomn
mendaomn / gulpfile.js
Created November 3, 2015 19:25
Gulpfile - Livereload and webserver
// Load plugins
var gulp = require('gulp'),
autoprefixer = require('gulp-autoprefixer'),
concatcss = require('gulp-concat-css'),
minifycss = require('gulp-minify-css'),
jshint = require('gulp-jshint'),
uglify = require('gulp-uglify'),
rename = require('gulp-rename'),
concat = require('gulp-concat'),
notify = require('gulp-notify'),
@mendaomn
mendaomn / .gitconfig
Created October 27, 2015 15:10
Gitconfig - colored and highlighted diff
[user]
email = [email protected]
name = Alessandro Menduni
[alias]
diff = diff --color --color-words --abbrev
[core]
pager = bash -lc 'diff-highlight | diff-so-fancy | less -r' -
[color "diff"]
meta = yellow bold
commit = green bold
@mendaomn
mendaomn / .bashrc
Created October 27, 2015 14:33
Bashrc - PS1 customization, git aliases and clone function
# @gf3’s Sexy Bash Prompt, inspired by “Extravagant Zsh Prompt”
# Shamelessly copied from https://github.com/gf3/dotfiles
default_username='marv'
if [[ $COLORTERM = gnome-* && $TERM = xterm ]] && infocmp gnome-256color >/dev/null 2>&1; then
export TERM=gnome-256color
elif infocmp xterm-256color >/dev/null 2>&1; then
export TERM=xterm-256color
fi
@mendaomn
mendaomn / gulpfile.js
Last active November 3, 2015 19:23
Gulpfile - JS, CSS, Angular templates, uncss
// Load plugins
var gulp = require('gulp'),
autoprefixer = require('gulp-autoprefixer'),
concatcss = require('gulp-concat-css'),
minifycss = require('gulp-minify-css'),
uncss = require('gulp-uncss'),
jshint = require('gulp-jshint'),
uglify = require('gulp-uglify'),
imagemin = require('gulp-imagemin'),
rename = require('gulp-rename'),