Structure and Interpretation of Computer Programs

Results 64 issues of Structure and Interpretation of Computer Programs
trafficstars

1. If defining a member is optional what syntax is used? 2. If a member must be defined when constructing an instance, what syntax specifies this? 3. If a member...

The [default value example](https://atom.readthedocs.io/en/latest/examples/ex_default_value.html) shows numerous ways to initialize a member. But what if you want to initialize it based on the other values of the object being instantiated? Does...

Starlite is gaining in popularity due to it's appealing featureset. Please [include it](https://github.com/starlite-api/starlite).

installing `epyk` and `epyk-studio` still do not allow [this example](https://github.com/epykure/epyk-templates/blob/master/tutos/demo_4.py) to run because of the line: from epyk.tests import data_urls

The official web link for this project is https://python-visualization.github.io/folium/ yet attempting to visit it yields: ``` This site can’t provide a secure connectionpython-visualization.github.io sent an invalid response. [Try running Windows...

Per [this reddit discussion](https://www.reddit.com/r/Nightcode/comments/7klgfa/line_number_of_error/) we see that the following code will cause the Clojure compiler to throw an error: ``` (defn r->lfix ([a op b] (op a b)) ([a op1...

On [this page](http://www.webelements.in/QuickStart) the example imports `Document` but should import `Document.Document` and `page = Document()` should be `page = Document.Document()`

Have you thought about having the about of time slept between various actions be a random number within a range of seconds? This way, the behavior seems more human.

`requirements.txt` is a common way to manage requirements for a project and reduces the number of lines to install dependencies. `.gitignore` is recommended so that files that should not be...

> ingredients = db.Column("ingredients", db.Text) If you want a normalized database then Ingredients should be in a different table/tables. > categories = db.Column("categories", db.Text) The categories most definitely should have...