/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

blog.fredrb.com
| | www.internalpointers.com
4.3 parsecs away

Travel
| | How not to get lost in a multilingual world.
| | fluffyandflakey.blog
4.0 parsecs away

Travel
| | I've long been fascinated by gremlins in my text. In fact, a very long time ago I was interested in the phenomenon. Recently I've seen this creep up twice and figured it was about time I learned to explain how we get these garbled junk characters. You've seen them before; have you wondered why they...
| | benbrougher.tech
4.0 parsecs away

Travel
| | What are all the different ASCII and UTF-x encodings and why do they matter?
| | aivarsk.com
19.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.