book
Here are 2,146 public repositories matching this topic...
TODO
It says that python gets left to point to the system python (2.7 on OSX), but then goes on to say that python points to homebrew Python3.
https://github.com/realpython/python-guide/blame/master/docs/starting/install/osx.rst#L84-L89
Not sure which bit needs to be changed.
explanation behind that says it's just coercion of one type plus another.
What is happening there is actually a code block and a unary + which coerces the array into 0.
({} + []) would get the same as ([] + {}) understandably.
-
Updated
Apr 11, 2020 - Python
-
Updated
Apr 12, 2020 - Go
-
Updated
Mar 10, 2020 - JavaScript
[198][Typo]
States we need set the current architecture to i386 but the command run afterwards sets it to i8086
Is this intentional or a typo?
-
Updated
Sep 27, 2019 - Java
-
Updated
Mar 7, 2020 - Python
-
Updated
Jan 14, 2018 - HTML
-
Updated
Apr 8, 2020 - JavaScript
-
Updated
Nov 29, 2019 - PHP
-
Updated
Apr 5, 2020 - CSS
-
Updated
Apr 4, 2019 - Ruby
-
Updated
Apr 9, 2020 - Rich Text Format
-
Updated
Mar 18, 2020 - Go
Right now it's just a collection of links (the basic format of each entry is 'name - author'). It might be helpful to make room for 1-2 sentence explanations of the link, particularly as the list grows.
(PS this project is linked prominently from the website now)
Recently, I opened rust-lang/reference#763, which is in the wrong place because the reference should not be a guide. This book, however, should serve as a guide.
I personally found the reference explanation to be a better material to learn about how to use Macros by example rather than the current chapter on Macros the book has (which was a bit confusing, as if it trie
-
Updated
Apr 13, 2020 - Python
-
Updated
Dec 14, 2019 - Jupyter Notebook
-
Updated
Mar 27, 2020
I think it would be valuable to explicitly talk about whitespace requirements in [ ] and [[ ]] conditionals--this tripped me up when learning Bash and I know it's a pain point for a lot of developers.
The way I like to think about it is that [ and [[ are commands/builtins (like echo, etc), as opposed to being part of Bash syntax. For this reason, the command name and each of its argumen
Improve this page
Add a description, image, and links to the book topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the book topic, visit your repo's landing page and select "manage topics."

Update various parts of the text.
There's no such thing as "early ReferenceError" anymore (for things like
0++); they're all just "early SyntaxError" now. tc39/ecma262#691