Sarcasm noted. An apple would actually be more difficult to hit because of its reduced size.
TOTP doesn't need to be phishing-proof if you use a password manager integrated with the browser, though.
My Lua data types have a notable difference from C Lua: an ability to be “frozen”.[1] https://github.com/OoTRandomizer/OoT-Randomizer/blob/d1bb6c2...
type Foo interface {
Foo() int
}
type Bar interface {
Bar() string
}
type FooBar interface {
Foo
Bar
}
Then functions that accept a Foo will also happily take a FooBar. Does not solve the problem of passing a FooBar[] to a function that expects Foo[] but that can be solved with generics or a simple function to convert FooBar[] to Foo[].Is the author implying Rust's default rounding behavior is a bad default? In what world is "ties to even" a GOOD default?
Skip the first video. The early game is painful if you already know how to program (they gate things like variables, loops, and functions behind unlocks). And tbh I didn’t know how to make a video or use a microphone when I made that video. I just sat down one evening and played it - I had no idea it would resonate with people the way it did.
It’s a great game, and I imagine a very good way to learn programming in a goal oriented way. But I concur that there’s not a great deal of content if you already know how to program.