Everything that doesn't fit elsewhere.
in essentials, unity; in doubtful matters, liberty; in all things, charity
- Open in new window: Open Visual Studio Code and select File -> Preferences -> Settings -> User tab -> Window -> New Window -> Open Files in New Window -> from the dropdown menu select off (marked by the mouse cursor in the below screenshot). Also check the Open Files in New Window (
- Write Great Code, Volume 1, Chapter 5
- Joel on Software -- blah, blah Unicode
RFC 3339 is a profile of ISO 8601, adding these constraints:
- a complete representation of date and time (fractional seconds optional).
- requires 4-digit years
- only allows a period character to be used as the decimal point for fractional seconds
- allows the "T" to be replaced by a space (or other character), while the standard only allows it to be omitted. source
- requires the zone offset to be Z
or like +00:00
, while ISO8601 allows like +0000
- crontab guru - crontab editor
- Haskell Programming from First Principles by Allen and Moronuki
- Type Classes courses, also by Allen and Moronuki
- Purely Functional Data Structures by Chris Okasaki
- Why Haskell is our first choice for building production software systems by Christian Charukiewicz
- This Week in Rust
- MKAZ : Working with Rust
- The Rust Programming Language (Covers Rust 2018) by Steve Klabnik and Carol Nichols
%d, %s, %x, and %f
https://en.wikibooks.org/wiki/Regular_Expressions/POSIX_Basic_Regular_Expressions
- zip files must have unique paths within them, so you may need to rename files for auto-created ones
- Write Great Code, Volume 1, Chapter 4