Norman Ramsey
|
Registered User
|
Happy hacker in C, Icon, Haskell, Lua, ML, Modula-3, Scheme, and others. Favorite language: whatever I'm using at the moment.
Good ways to get in contact include Skype chat to norman-ramsey or (less reliable) AIM to norman62ramsey |
|
19h |
comment |
Why does C have a distinction between -> and . ? @AndreyT: I didn't say there was no difference between a pointer and an array. Remind me how many compilers you've written again? |
|
1d |
answered | What is so special about Smalltalk? |
|
2d |
comment |
How to fix noncompliant HTML so Expat will parse it (htmltidy not working) I checked it out and BeautifulSoup cleans up the HTML almost completely, but the XML it spits out still contains 5 errors. (This is with output using the prettify method.) I'm a little reluctant to get too deep into the soup since the rest of my infrastructure is in Lua, so I'm probably going to try the xml feed first. But this is still a great thing to know about. |
|
2d |
answered | multiplication of large numbers, how to catch overflow |
|
2d |
comment |
multiplication of large numbers, how to catch overflow This is the right idea, except the + operations can overflow... |
|
2d |
answered | Nested structures |
|
2d |
answered | big integers with fixed length |
|
2d |
answered | Extracting bits |
|
Nov 30 |
comment |
How to fix noncompliant HTML so Expat will parse it (htmltidy not working) Looks really useful, although the Debian package won't run. Grrrr. +1, thanks. |
|
Nov 30 |
comment |
How to fix noncompliant HTML so Expat will parse it (htmltidy not working) BeautifulSoup looks awesome! +1 |
|
Nov 30 |
comment |
Why does C have a distinction between -> and . ? @AndreyT: There's nothing implicit about []; a[i] is always and forever syntactic sugar for *(a+i), just as p->x is syntactic sugar for (*p).x. I used to love to blow people's minds writing i[a] = a[i] + k and similar wackiness. |
|
Nov 30 |
comment |
Building a game, need a language with strongly supported first class functions For educational games and GUI support. DrScheme is unbeatable! +1 |
|
Nov 29 |
accepted | Any real world experience debugging a production functional program? |
|
Nov 29 |
answered | Is there a use case for creating threads without synchronization and locks? |
|
Nov 29 |
comment |
How to fix noncompliant HTML so Expat will parse it (htmltidy not working) @Matthew: Interesting. Unfortunately I doubt I can get the National Football League to mend its evil ways. Hence the question. |
|
Nov 29 |
comment |
How to fix noncompliant HTML so Expat will parse it (htmltidy not working) @johnIdol: nice thought! I checked and it reports many, many errors---added info to question above. |
|
Nov 29 |
revised |
How to fix noncompliant HTML so Expat will parse it (htmltidy not working) add note about validation service |
|
Nov 29 |
asked | How to fix noncompliant HTML so Expat will parse it (htmltidy not working) |
|
Nov 29 |
comment |
Why does C have a distinction between -> and . ? Have you used Cyclone? It's great research, but the type system is from hell. And it was always damned difficult to keep things in statically typed regions as opposed to letting everything work its way up to the garbage-collected heap. It's great work, but let's not oversell it, shall we? |
|
Nov 29 |
answered | Why does C have a distinction between -> and . ? |
|
Nov 29 |
revised |
SML/NJ - Pattern Matching an Dynamic Typing eliminate option from the result type |
|
Nov 29 |
comment |
How to compensate for uneven illumination in a photograph of a printed page? Arkenian, I hope to be able to follow up on your idea next week. Meanwhile I've posted some histograms with tiny thumbnails. (Full images contain copyrighted text, so I'm reluctant to post them.) |
|
Nov 29 |
revised |
How to compensate for uneven illumination in a photograph of a printed page? added sample histograms |
|
Nov 29 |
comment |
How to compensate for uneven illumination in a photograph of a printed page? Sorry, but the whole point of my project is to be able to recover text from crappy images taken under uncontrolled conditions. If it can be done on an iPhone (tinyurl.com/clldjk) then it ought to be possible to code something from a higher-quality image. |
|
Nov 29 |
comment |
How to compensate for uneven illumination in a photograph of a printed page? I think if I could identify and remove the small black objects and just get the background, my problem would be solved. Your mathworks example is interesting but when I get to the part about 'Morphological Operations' it might as well say 'black magic'. +1 for the book. |
|
Nov 29 |
comment |
How to compensate for uneven illumination in a photograph of a printed page? Actually distinguishing background from foreground is really hard. I'm hoping I might be able to repurpose djvu. The rest of your answer is a little too hard for me to follow. |
|
Nov 29 |
awarded | ● Yearling |
|
Nov 28 |
comment |
How to compensate for uneven illumination in a photograph of a printed page? +1 although I think average grayscale is not going to work at any of the edges---lots of junk around the edges. |
|
Nov 28 |
comment |
How to compensate for uneven illumination in a photograph of a printed page? Thanks for suggestion; I am talking about white with dark text (sometimes also red handwritten text, but that's a detail!). There is often junk around the edges but as long as it's dark it's not a problem: tinyurl.com/yh3pczg (URL should be valid approximately October-December of most years). |
|
Nov 28 |
revised |
How to compensate for uneven illumination in a photograph of a printed page? clarify thoughts on alternative algorithm |
|
Nov 28 |
revised |
How to create a new LaTeX command that behaves something like \verb? title change |
|
Nov 28 |
answered | How to create a new LaTeX command that behaves something like \verb? |
|
Nov 28 |
asked | How to compensate for uneven illumination in a photograph of a printed page? |
|
Nov 28 |
answered | Why purely functional languages instead of “impure” functional languages? |
|
Nov 28 |
answered | To which programming language should i switch my project? |
|
Nov 28 |
comment |
To which programming language should i switch my project? A surprising answer, but then OCaml is a surprisingly imperative functional language. Worth checking out. |
|
Nov 28 |
answered | What is Method Dispatch? |
|
Nov 28 |
accepted | breakpoints in GDB |
|
Nov 27 |
comment |
Why is (python|ruby) interpreted? SML/NJ has offered native-code compiled REPL for over 20 years... as have many Lisp systems. |
|
Nov 27 |
answered | SML/NJ - Pattern Matching an Dynamic Typing |
|
Nov 27 |
revised |
SML/NJ - Pattern Matching an Dynamic Typing case not exhaustive |
|
Nov 27 |
answered | Recursive Descent Parser for C |
|
Nov 27 |
answered | breakpoints in GDB |
|
Nov 26 |
answered | What’s your take on the programming language Go? |
|
Nov 26 |
answered | If you can’t change a variable’s value in Haskell, how do you create data structures? |
|
Nov 26 |
comment |
Should I use #include in headers? Well answered! +1 |
|
Nov 26 |
answered | Why is (python|ruby) interpreted? |
|
Nov 25 |
revised |
Programming languages that compile to native code and have the batteries included add link to Haskell Platform |
|
Nov 24 |
answered | pitfalls/disadvantages of functional programming |
|
Nov 24 |
answered | lua call function from a string with function name |
