Skip to content

Instantly share code, notes, and snippets.

View polyGeek's full-sized avatar

Dan Gardner polyGeek

View GitHub Profile
@polyGeek
polyGeek / 1994-top-1000-movies-by-month.csv
Created July 5, 2021 16:07
Number of top 1000 movies released in 1994 by month.
month count
January 3
February 1
March 4
April 4
May 1
June 4
July 2
September 1
October 6
@polyGeek
polyGeek / imdb-top-1000-movies-from-2004.csv
Last active July 5, 2021 16:56
Movies in IMDb top 1000 from 2004
rank movie
99 Eternal Sunshine of the Spotless Mind
161 Swades
162 Downfall
163 Howl's Moving Castle
239 Nobody Knows
241 Million Dollar Baby
242 Hotel Rwanda
243 Before Sunset
376 3-Iron
@polyGeek
polyGeek / named-constructor.dart
Created July 29, 2021 15:17
Example of Named Constructors
void main() {
Temperature cel = Temperature( celsius: 11 );
print( 'cel: ' + cel.celsius.toString() );
Temperature far = Temperature.f( farenheit: 70 );
print( 'far: ' + far.celsius.toString () );
}