Search Results

1
vote

Why do most languages not allow binary numbers?

Common Lisp allows binary numbers, using #b... (bits going from highest-to-lowest power of 2). Most of the time, it's at least as convenient to use hexadecimal numbers, though (by using #x...), as …
1
vote

Hardest types of bugs to track?

WAY back in the days, memory leaks. Thankfully, there's a lot of tools to find them, these days. …
1
vote

Design a networking application

I'd typically make sure that there's routing on the network and run one (or more) routing protocol instances on the host. That way network failure is (mostly) transparent to the application, as the …
0
votes

What’s the proper place for input data validation?

There shoudl definitely be validation on the server end. I am thinking taht the validation should be done as early as possible on the server end, so there's less chance of malicious (or incorrect) …
2
votes

Real Life Benefits of Dynamic Languages?

In general, I prefer talking about "interactive" languages rather than "dynamic" languages. When you only have an edit/compile/run cycle, any turn-around takes a long time. Well, at least on the or …