Search Results

0
votes

My first Lisp macro; is it leaky?

No, no symbol introduced in the macro's "lexical closure" is released to the outside. Note that leaking isn't NECESSARILY a bad thing, even if accidental leaking almost always is. For one p …
1
vote

What do you think of the “Don’t catch unexpected Exceptions” best practice?

I definitely prefer having my server up with a little unknown side effect on one customer rather than my whole server down. How do you know that the bug that caused the ex …
2
votes

Security plan for business critical information and service accessibility

The system needs to be reachable through the Internet. What should we think about when deciding on how to host it? I'd consider a few things. First, your hosting provider …
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) …
0
votes

Is returning null bad design?

Sometimes, returning NULL is the right thing to do, but specifically when you're dealing with sequences of different sorts (arrays, lists, strings, what-have-you) it is probably better to return a …