Fai_Ryy

#extradirty
taylor price
Sade Olutola
sheepfilms
ojovivo

Discoholic šŖ©

Jimmy Eat World

blake kathryn
hello vonnie

@theartofmadeline
The Bright Sessions
untitled
No title available

tannertan36
Not today Justin
𩵠avery cochrane š©µ
Interview Vampire Daily
One Nice Bug Per Day
Sweet Seals For You, Always
seen from Germany
seen from United States
seen from Panama

seen from France

seen from Australia
seen from United States

seen from Australia
seen from Canada

seen from Brazil
seen from United Kingdom

seen from United States
seen from Brazil
seen from United States

seen from Iraq

seen from China
seen from Uzbekistan
seen from Indonesia
seen from Türkiye
seen from United States
seen from Indonesia
@damianoabballe
Some Git commands - 1
List all branches: git branch -a
Checkout branch: git checkout "branch name"
Actual branch: git branch
Clone branch: git clone develop
Check branch: git status
How to create a random number
{from 0 to 5}
Int(arc4random_uniform(6))
How to install and usingĀ Cocoa pods
Installation: Open terminal and digit: sudo gem install cocoapods. Usage: Open terminal and go to the directory of the project and digit:Ā pod init. Inserting into fileĀ āPodfileā the pods that we want to use and save the file. Digit: pod install Run pod update command to update your local specs repository during migration from one version to another
Start with Angular-CLI
Angular cli is a command line interface to scaffold and build angular apps using nodejs style (commonJs) modules.
Now, some commands: npm install -g angular -cli (this will install angular-CLI)
ng version (this will output the running version on your machine) ng new application_name (this will create a new AngularJS project) ng serve Ā --port 4000 (this will run the application; by default the port is 4200) ng generate component component_name (this will create a component)