st=>start: Start
e=>end: End
op=>operation: My Operation
op2=>operation: lalala
cond=>condition: Yes or No?
st->op->op2->cond
cond(yes)->e
cond(no)->op2
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
/* ---------------------------------------------------- | |
Common commands | |
gulp dev | |
gulp custom-bootstrap | |
gulp copy-vendors | |
---------------------------------------------------- */ |
A Pen by Alessandro Falchi on CodePen.
A Pen by Alessandro Falchi on CodePen.
A Pen by Alessandro Falchi on CodePen.
A Pen by Alessandro Falchi on CodePen.
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 s = $('.flexslider'), | |
// Clone another slide markup | |
newSlide = s.find('li').eq(0).clone() | |
// Change image source | |
.find('img').attr('src', 'http://www.awwwards.com/awards/submissions/2015/09/5601375a79570.jpeg') | |
// Return parent element | |
.end(); |
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 fucker = 'helvetica neue', | |
allElementsArr = document.querySelectorAll('*'); | |
for( var i=0; i < allElementsArr.length; i++ ) { | |
var element = allElementsArr[i], | |
fontStack = getComputedStyle(element)['font-family'].toLowerCase(); | |
if( fontStack.indexOf(fucker) !== -1 ) { | |
var newStack = fontStack.replace(fucker, 'fuck'); |
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
/* ------------------------------------------- | |
Service | |
--------------------------------------------*/ | |
// Definizione | |
module.service('myService', function() { | |
this.browsers = ['Firefox', 'Chrome', 'Internet Explorer']; | |
}); | |
// Implementazione |
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
# Set your user name and email address | |
$ git config --global user.name "John Doe" | |
$ git config --global user.email [email protected] | |
# Checking Your Settings | |
$ git config --list | |
# Clones a repository to your computer | |
# To grab a complete copy of another user's repository, use git clone like this: |
NewerOlder