Paul Nathan

7,837
reputation
649 views

Registered User

name Paul Nathan
member for 1 year
seen 13 hours ago
website
location Idaho
age 26
Graduate student in CS.
Thesis focus is in bare-metal embedded systems.
Current Hobby Projects
15h
comment Directly manipulating a DataSet
Umph. I'll putz with this later. It's not writing in/out correctly. In another note, Architecture Astronaut detected in MS system design. >.<
15h
revised Directly manipulating a DataSet
found it.
16h
accepted Interpolating variables in a Parse::RecDescent regex
16h
revised List of multicore embedded CPUs
added 2 characters in body
16h
asked Directly manipulating a DataSet
1d
comment mixing cout and printf for faster output
Neil: I don't recall why anymore; it's been literally years. outtis: perhaps.
1d
comment Vehicle Routing / Resource Scheduling Algorithm Design
I think 'dynamic programming' is a popular solution to constraint solving. It's been a while since I poked at scheduling problems.
1d
answered mixing cout and printf for faster output
1d
comment Which text/code editor on Linux is most similar to TextMate?
Emacs(or That Other Editor, vi) are the best unix editors.
1d
comment Programatically invoke garbage collector
I think the SecureString approach is better. Or use C++(which is probably better here if you know what you're doing).
Dec
15
revised looking for developer/programmer news site
added info as to why it's relevant.
Dec
14
asked looking for developer/programmer news site
Dec
13
comment How to determine if memory is aligned? ( *testing* for alignment, not aligning )
int traditionally was the size of the system word, aka a pointer. Is that changing in the 32-bit to 64-bit transition? (curious)
Dec
13
comment How to determine if memory is aligned? ( *testing* for alignment, not aligning )
No, a pointer is an int. It just isn't used as a numeric generally.
Dec
13
accepted C++ string comparison in one clock cycle
Dec
12
answered Is Computer Science For Me?
Dec
12
comment A Gentler Introduction to Functional Programming
Jon: No. I came across it; however it's not on books24x7.com(I have institutional access to that) and I didn't want to spend money.
Dec
12
comment Is Computer Science For Me?
This is really quite true.
Dec
11
comment What should I put in my starter template for my Perl programs?
modulinos are great.
Dec
11
answered How do you create an english like word?
Dec
11
comment A Gentler Introduction to Functional Programming
@jon: most of the newbie tutorials start with 'hello world', then a few notes on writing a function and so forth. "Day 1" kind of stuff. The more advanced topics assume you know how to use the type system & syntax & inferences, the class system, the match operators, etc. The ML type system is frightfully obscure and the inferencing is hard to understand without exhaustive study, which I'm not prepared to do when a language such as Lisp is ready-to-hand that does similar things without the difficulties.
Dec
11
answered Return pointer from function C
Dec
10
comment Should I use YAML or JSON to store my Perl data?
(1)The parser for that is string eval; (2)Data::Dumper load/store requires some gnarly coupling between the loading and storing routine. Also and most importantly, 'PON' is not a standard interchange format. JSON is, and so is YML(within Perl).
Dec
10
comment Should I use YAML or JSON to store my Perl data?
+1 for good info & the security note.
Dec
10
comment The art of programming
You're conflating 'artistic' and 'talented', RCIX.
Dec
10
revised Do you still limit line length in code?
added 2 characters in body
Dec
9
comment Should I use YAML or JSON to store my Perl data?
Well then. Ignorance is exposed and reduced. :-)
Dec
9
comment Should I use YAML or JSON to store my Perl data?
In this specific context, due to circumstances out of my control, pure perl is required. But, I agree that not pure pure is almost certainly better for speed.
Dec
9
comment Should I use YAML or JSON to store my Perl data?
Let's say all leaf data is generic perl scalars. I combine scalars in arrays and perl hashes. Arrays and hashes can have has elements arrays and hashes. This is pretty vanilla data structure stuff. :-)
Dec
9
asked Should I use YAML or JSON to store my Perl data?
Dec
9
awarded  Popular Question
Dec
9
answered What does this statement mean? “good C++ programming typically doesn’t use pointers in complicated ways.”
Dec
9
revised Connecting and Fetching a record form sequel server 2005.
spelling on title
Dec
8
comment Elisp function returning mark instead of the right value
This is really the function I was looking for, but I didn't find it in the emacs documentation.
Dec
8
comment Elisp function returning mark instead of the right value
@PP: huaiyuan answered a really good answer I believe.
Dec
8
comment Elisp function returning mark instead of the right value
I misread eolp to only return T if it was at the final character of the line.
Dec
8
asked Elisp function returning mark instead of the right value
Dec
7
comment returning a lambda function in clisp, then evaluating it
That's a great answer!
Dec
6
awarded  Mortarboard
Dec
5
comment Why not port Linux kernel to Common Lisp?
As I understand it, typical Lisp systems were circa 1978-1990. So a real modern Lisp OS will look different both from the historical lisp OS and from the Linux...
Dec
4
answered Bug Hunting Strategies?
Dec
4
comment Why not port Linux kernel to Common Lisp?
Great answer. Question, though(since you know what you're talking about here): would it be 'reasonably possible' to have a Linux-compatible interface, e.g., the syscalls & driver interface? The internals obviously will be quite different.
Dec
4
comment Why not port Linux kernel to Common Lisp?
rplevy is right; a rewrite in Lisp would almost certainly drop the LOC count due to the Lisp higher-level features.
Dec
4
answered Why not port Linux kernel to Common Lisp?
Dec
4
comment Is this C function written in poor form?
@Steve: Agreed. @Nate: Just making sure!
Dec
4
comment Is this C function written in poor form?
you could statically allocate it such that it persists in the scope of the byte_to_ascii caller, e.g., char c[4];
Dec
4
comment what is work area in system programming?
Parth, can you explain further?
Dec
4
comment what is work area in system programming?
I'm assuming he means the area in memory and he's asking about the changes in linking over time; link techniques in the 60s/70s versus now. I'm not completely certain, though. You might be correct.
Dec
4
answered what is work area in system programming?
Dec
4
comment Is this C function written in poor form?
I mean, is the memory actually allocated? Just making sure. :)