/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

florimond.dev
| | fabianlindfors.se
5.4 parsecs away

Travel
| | MSc Computer science student
| | davidbieber.com
2.9 parsecs away

Travel
| | The implementation of hoist in my earlier snippet returned the values of local variables of all functions called by the hoisted function. This new version only returns the locals of the hoisted function. As before, you can use it like this: def f(x): y = x + 1 z = y * 2 return z + 1 f(4) == 11 hoist(f)(4) == {'x': 4, 'y': 5, 'z': 10, 'return': 11} Here's another usage example:
| | coady.github.io
2.7 parsecs away

Travel
| |
| | wweb.dev
27.6 parsecs away

Travel
| In this post, I will show how to set up debugging for Javascript in VS Code for Node.js and for React in Firefox or Chrome...