1,342
Reputation
147 views

Registered User

Name
Member for 1 year
Seen 7 hours ago
Website
Location
Age
18h
answered Can you have hash tables in lisp?
Nov
25
comment A phrase as catchy as ‘Feature Creep’ but for underestimated projects
I'd expect "scope creep" to apply to projects whose scope is expanded, rather than just woefully under-estimated.
Nov
24
comment Compound Conditional in Lisp
The body of a COND expression is wrapped in an implicit PROGN, so there is no need to explicitly provide one.
Nov
23
comment Is functional programming a subset of imperative programming?
Lisp (Common Lisp, specifically) is usually referred to as a multi-paradigm language. You can write imperative as well as functional code with relative ease.
Nov
20
awarded  Organizer
Nov
20
revised Print possible strings created from a Number
edited tags
Nov
20
comment Algorithm Implementation to Improve
Beta: I could certainly see a rigorous approach to implementation optimization as a worthwhile CS research subject, especially if it is machine-implementable.
Nov
19
answered How can I implement ‘tee’ programmatically in C?
Nov
17
answered Weird Time Issue in Python
Nov
14
answered How to make a new list to point somewhere else, Lisp
Nov
14
answered HTTP proxy server
Nov
13
comment eval during emacs lisp macro expansion
So it does! I even looked for that!
Nov
10
answered eval during emacs lisp macro expansion
Nov
10
comment How do you generate random unique identifiers in a multi process and multi thread environment?
You use another piece of state (unique process ID) and concatenate that with the thread-unique ID and a thread-local counter, then hash. Only works as long as you're in "not huge number of threads and processes" territory, as you probably do not want to burst 64 bits for your counter, but that'd give you, say, a thread-local counter that's 32 bits, then 16 bits for process ID and another 16 for thread ID, so well within the space of reasonable.
Nov
6
answered How do you generate random unique identifiers in a multi process and multi thread environment?
Nov
6
answered Private Network (as in IPv4) question
Nov
6
awarded  Yearling
Oct
23
comment Scheduling algorithm/problem
Main reason is that when I was at university, there was nothing (except time) to stop students from taking extra classes. Add in the complication of re-taking a failed exam later on and you're in a world of pain.
Oct
22
answered Automate FAQ system & Algorithm
Oct
22
answered Scheduling algorithm/problem
Oct
22
comment Design of an Alternative (Fluent?) Interface for Regular Expressions
A good notation should suggest a good API (and vice versa).
Oct
21
comment Design of an Alternative (Fluent?) Interface for Regular Expressions
My example is a mix of a "structure-based" and "text-based" (you want the ability to express self-matching literals using strings, I think). There are multiple possible ways of expressing FSMs, in various ways. Though I think you'd actually do better with a good notation for Augmented Transition Networks, because they're capable of more complex matches than regular expressions, while still being (relatively) easy to reason about.
Oct
21
revised Design of an Alternative (Fluent?) Interface for Regular Expressions
Oooops, fixed-up the pseudo-code formatting.
Oct
20
answered Design of an Alternative (Fluent?) Interface for Regular Expressions
Oct
20
answered How can I modify my Shunting-Yard Algorithm so it accepts unary operators?
Oct
20
answered How to strengthen Mysql database server Security?
Oct
20
comment Combine Gyroscope and Accelerometer Data
From what I understand, you smooth one, then use that to apply a corrective factor to the other. Can't say I FULLY understand how it's supposed to work, though. These <a href="tlb.org/scooter2.html">two</a>/…; <a href="tlb.org/scooter.html">articles</a>/…; may be of help.
Oct
19
answered Combine Gyroscope and Accelerometer Data
Oct
19
comment Is there a programming language “below” Assembly?
I don't know what state-of-the-art assembler programs can do these days, but in the Olden Days, a macro assembler could do a fair bit of automatic stuff for you (function entries, keeping track of argument counts, automatic allocation, conditional macro expansion and other Neat Stuff that is a chore to do manually). So I'd say that machine code is "lower" than assembly for taht reason.
Oct
6
answered Clozure Common Lisp - TCP Socket Programming - Sending a Reply
Sep
22
answered When should I ask myself if my method is thread-safe or not?
Sep
4
answered Why is squaring a number faster than multiplying two random numbers?
Aug
28
answered Algorithm for placing nodes on a circle considering their distance to eachother
Aug
14
answered Is returning null bad design?
Aug
1
accepted Which open source OSPF-Routing implementations are available?
Jul
14
answered Which open source OSPF-Routing implementations are available?
Jul
13
answered i++ less efficient than ++i, how to show this?
Jul
8
answered What is the simplest way to write a timer in C/C++?
Jul
6
awarded  Nice Answer
Jul
3
comment Array Searching code challenge
Why not use <a href="lispworks.com/documentation/lw50/…;?
Jul
3
answered Array Searching code challenge
Jul
2
answered Execute a shell command from a shell script without stopping if error occurs
Jul
1
answered Fast Algorithm to Generate 500,000 html file.
Jul
1
answered Dangerous ways of removing compiler warnings?
Jun
26
answered Looking for (c)lisp examples of mini-languages, that is, DSLs.
Jun
26
comment Real Life Benefits of Dynamic Languages?
The language I mostly use this method with is Common Lisp,. I guess this means there's now a third (or maybe even fourth) axis in computer language defnitions (strongly/weakly typed, static/dynamic typing, interactive/batch and possibly scripting or not).
Jun
25
answered Real Life Benefits of Dynamic Languages?
Jun
23
answered How do we calculate the uptime of 24/7 website?
Jun
21
answered Separate Namespaces for Functions and Variables in Common Lisp versus Scheme
Jun
21
comment Getting command line arguments in Common Lisp
Yes, but when you have your FOO conditionally read, it's, possibly, good to have a fall-back. But, then, the value of (or) is, not entirely surprising, NIL (just as the value of (and) is T).