Skip to content

Instantly share code, notes, and snippets.

View fabiojansenbr's full-sized avatar

Fábio Jansen fabiojansenbr

View GitHub Profile
@fabiojansenbr
fabiojansenbr / gist:fd3c95c93e4194711dc3c1590e6faa32
Created April 16, 2021 11:25 — forked from montyr75/gist:09b5dc9a20ba01955872
Find the last day of the current month with Dart's DateTime class.
DateTime now = new DateTime.now();
DateTime lastDayOfMonth = new DateTime(now.year, now.month + 1, 0);
print("${lastDayOfMonth.month}/${lastDayOfMonth.day}");
@fabiojansenbr
fabiojansenbr / basic.md
Created May 29, 2019 11:09 — forked from zenorocha/basic.md
New Firebase Auth vs Old Firebase Auth
@fabiojansenbr
fabiojansenbr / 0_reuse_code.js
Created April 11, 2017 13:53
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