Skip to content

Instantly share code, notes, and snippets.

View thegeek's full-sized avatar

Francesco Fienga thegeek

  • Nobody Knows ... the trouble i see ...
  • Naples
View GitHub Profile
@thegeek
thegeek / git rm all deleted file
Created June 15, 2013 10:44
Batch Remove all deleted file from a branch
git status --short | grep ' D ' | cut -d D -f 2- | xargs git rm
#make "com" alias for "commit"
git config alias.com commit
#make "co" alias for checkout
git config alias.co checkout
#make "br" alias for branch
git config alias.br branch
# When you want to see just the differences of one function in one file in two different commits
@thegeek
thegeek / AngularJs-Template-ForCodepen.html
Last active May 8, 2017 10:27
A CodePen by Francesco Fienga. AngularJs-Template Codepen - The aim of this CodePen is to have a base for angularJs experiment on Codepen. I want to test some angularjs knowledge and i just wanted to fork out the codepen as bootstrap flow. So if u need a base for a quick test or on the contrary wanna start some angularjs experiment. Just fork an…
<!doctype html>
<html ng-app='myApp'>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script src='http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.2.1/bootstrap.min.js'></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/angular.js/1.1.5/angular.min.js"></script>
</head>
<body>
<div class="container">
@thegeek
thegeek / Fun With AngulaUI-CodePen.html
Last active December 18, 2015 18:09
A CodePen by Francesco Fienga (http://codepen.io/thegeek/pen/iAzfr). AngularJs-Fun With UI Module - Ok let's try bootstrap experiment ... I've forked my AngularJs-Template, add angular-ui modules, have fun adding popover, modal and typeahead functionality and then shared. Look at Contact List example. Typeahead module just suggest the correct va…
<!doctype html>
<html ng-app='myApp'>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script src='http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.2.1/bootstrap.min.js'></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/angular.js/1.1.5/angular.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/angular-ui/0.4.0/angular-ui.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/0.3.0/ui-bootstrap-tpls.min.js"></script>
</head>
<body>
@thegeek
thegeek / ffmpeg
Created August 6, 2013 00:33
Flv to Mp4 (h.264/AAC)
ffmpeg -i {{input}} -c:a aac -strict -2 -b:a 128k -c:v libx264 -profile:v baseline {{output}}.mp4
/* new clearfix */
.clearfix:after {
visibility: hidden;
display: block;
font-size: 0;
content: " ";
clear: both;
height: 0;
}
* html .clearfix { zoom: 1; } /* IE6 */
@thegeek
thegeek / debug grunt google cdnify
Created August 14, 2013 23:20
Debug Grunt Google CDNify
env DEBUG='google-cdn' grunt cdnify
@thegeek
thegeek / tip.sh
Created August 15, 2013 19:04 — forked from JeffreyWay/tip.sh
alias gundo='git reset HEAD~ && git clean -df'
@thegeek
thegeek / .hgrc
Created August 30, 2013 12:07
Mercurial first installation needed step. Create .hgrc file in your user directory.
[ui]
username = forename surname <[email protected]>
verbose = True
@thegeek
thegeek / Gruntfile.js
Created September 8, 2013 08:22
Load all Grunt Npm Task in one line
...
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks);