/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

yasoob.me
| | nickjanetakis.com
2.9 parsecs away

Travel
| | In this video we'll go over how ShellCheck can help us find both subtle and obvious bugs / issues with in shell scripts.
| | jvns.ca
3.7 parsecs away

Travel
| | Bash scripting quirks & safety tips
| | pythonspeed.com
3.8 parsecs away

Travel
| | It is quite difficult to write correct shell scripts; you're much better off just using Python.
| | aivarsk.com
22.5 parsecs away

Travel
| I have a piece of C++ code that calls user-defined functions implemented in Python. Instead of requiring all functions to have the same signature with 6 arguments, the C++ code inspects the function signature and passes only the arguments function accepts - 1, 3, or all 6 of them. I use the inspect module and getargspec function for that but it feels a bit wrong and bloated. So let's see how we can get the work done without the inspect module.