Skip to content

Instantly share code, notes, and snippets.

View FernandoVezzali's full-sized avatar

Fernando Ayrosa Vezzali FernandoVezzali

  • 10:11 (UTC -03:00)
View GitHub Profile
# prints 0-9
for x in range(10):
print x
# prints 1-10
for x in range(1, 11):
print x
# remember, we don't need to declare variables
# we can just assign them
@FernandoVezzali
FernandoVezzali / JS-LINQ.js
Created July 16, 2018 18:27 — forked from DanDiplo/JS-LINQ.js
JavaScript equivalents of some common C# LINQ methods. To help me remember!
// JS array equivalents to C# LINQ methods - by Dan B.
// Here's a simple array of "person" objects
var people = [
{ name: "John", age: 20 },
{ name: "Mary", age: 35 },
{ name: "Arthur", age: 78 },
{ name: "Mike", age: 27 },
{ name: "Judy", age: 42 },
{ name: "Tim", age: 8 }
@FernandoVezzali
FernandoVezzali / .gitconfig
Last active September 5, 2017 17:52 — forked from giggio/_latest.md
My .gitconfig and .gitattributes
[diff]
indentHeuristic = true
submodule = log
[color]
diff = always
interactive = always
status = always
branch = always
[alias]
st = status
@FernandoVezzali
FernandoVezzali / 0_reuse_code.js
Last active August 29, 2015 14:12
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console