(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
This gist is no longer in use.
I wrote a blogpost on Medium last week about something I've been doing with my open source project. Check that out first: https://medium.com/@kentcdodds/first-timers-only-78281ea47455
It's had a fantastic response and people are enthusiastic about the idea. In an effort to encourage more projects to participate,
I decided to file an issue on the up-for-grabs website
repo and ask them if they would be willing to have a section dedicated to projects with first-timers-only
issues.
If you checkout that issue, you see that Scott Hanselman has bought the domain firsttimersonly.com and wants to turn it into a one pager about the idea with links/resources/etc.
Advantages compared to using symbols as enum values:
name
provides direct access to the name of an enum value.ordinal
holds a number, the position of the enum value. Useful for some applications.instanceof
to test whether a value is an element of an enum.enum Mode
, below.Static properties of enums:
// collatz conjecture visualization | |
// generateme.tumblr.com | |
void setup() { | |
size(2048, 500); | |
background(20); | |
stroke(220, 100); | |
strokeWeight(0.6); | |
smooth(8); | |
} |