Jared Updike
|
Registered User
|
C# developer by day, Haskell, Python, C++, Scheme developer by night. Wannabe Cocoa programmer... someday.
|
|
7h |
comment |
What potential do you see in Silverlight? Excessive User Interaction is not always a good thing. Flash and Silverlight encourage this inaccessibliity compared to HTML. I hope most of the web moves to pure HTML (HTML 5) for as much as possible, reserving for Silverlight and Flash stuff like games. |
|
Dec 2 |
awarded | ● Notable Question |
|
Dec 1 |
revised |
pitfalls/disadvantages of functional programming Better link |
|
Dec 1 |
comment |
pitfalls/disadvantages of functional programming Sorry about the inaccessible link. I would post HTML of text but the PS/PDF is actually an image and I don't have OCR software on hand. I suppose I could post a PDF of it somewhere. Not sure why ACM hides some of these older articles; don't they want to disseminate this information. |
|
Nov 24 |
comment |
pitfalls/disadvantages of functional programming This highlights an interesting problem with FP: programming effectively in FP requires you to know certain tricks---especially dealing with laziness. In your example, it is actually easy to keep your code tail recursive (using a strict left fold) and avoid having things blow up on you. You don't have build the list backwards and reverse the return list. The trick is to use difference lists: en.wikipedia.org/wiki/Difference_list . A lot of these sorts of tricks are not so easy to figure out on your own. Luckily the Haskell community is super friendly (IRC channel, mailing lists). |
|
Nov 24 |
answered | pitfalls/disadvantages of functional programming |
|
Nov 24 |
comment |
pitfalls/disadvantages of functional programming Wadler calls this the expression problem: en.wikipedia.org/wiki/Expression_Problem |
|
Nov 23 |
comment |
Haskell: Force floats to have two decimals Try rounding then printing the float? |
|
Nov 10 |
answered | how is read-only memory implemented in c? |
|
Nov 9 |
comment |
What are the benefits of functional programming? "that's a benefit of learning it, not a benefit of the paradigm itself". The paradigm will leak over into your other OOP work and can help simplify your development there. You can approach problems from a "compute this output from this input" and "compose these two functions that compute new data" instead of "wait---what was the state of some shared variable over there?" and "did I get these procedures to execute in the correct order?". Seriously, you get these benefits (from understand the FP paradigm) in Python, C#, C++, Java, you name it. |
|
Nov 9 |
comment |
C# Image.Clone Out of Memory Exception Yeah bitmap .Dispose doesn't affect these OoM exceptions, in my experience. |
|
Nov 6 |
revised |
What is the difference between procedural programming and functional programming? clarification |
|
Nov 3 |
comment |
Equation (expression) parser with precedence? That's quite a nice little pearl. But extending it (say, with function application, implicit multiplication, prefix and postfix operators, optional type annotations, anything) would break the whole thing. In other words, it's an elegant hack. |
|
Nov 2 |
revised |
Testing with sanitize edited tags |
|
Oct 30 |
comment |
JQuery style display value This is bad because it doesn't generalize when the style attribute has more than just display:blah (anything, like width:100, would get mixed into the split(':')[1]) |
|
Oct 19 |
comment |
does anyone have a working non-recursive floodfill algorithm written in C? Isn't SO wonderful? :-) |
|
Oct 16 |
comment |
Security question: Is this a valid way to hack into Facebook applications? (and possibly Facebook)? Even if the system/cookie does check for IP, can't you still spoof the IP? |
|
Oct 16 |
comment |
Octal number literals: when? why? ever? Nice gravatar... You got me there. |
|
Oct 16 |
comment |
Split ByteString on a ByteString (instead of a Word8 or Char) It looks like breakSubstring isn't in GHC 6.8 libs... is that right? |
|
Sep 30 |
comment |
What is the difference between a delegate and events? Wow it's unfortunate that they call it composing when functional composition is not the same thing (b would be passed a)... but it's cool that delegates can be easily chained. Thanks for the link. |
|
Sep 4 |
comment |
For loop ignoring directories with a space in them? sorry, didn't see that, brain dead on a Friday morning |
|
Sep 4 |
comment |
For loop ignoring directories with a space in them? is this Windows (DOS)? perhaps a 'batch-file' tag |
|
Aug 31 |
comment |
Can I store my .flv files on a file system and have the play in my web page? Your HTML is not showing up. Highlight it and press the little button with the 101010 to indent it four spaces. |
|
Aug 29 |
answered | How does Type Deduction work in Haskell? |
|
Aug 29 |
comment |
Can anyone identify this image format? Did you try saving it as a PCX file AFTER removing every 2nd 00 byte? |
|
Aug 28 |
comment |
How to explain to your mom what an algorithm is? If large hordes of mercenary programmers often create giant heaps up ugly code, it stands to reason that some programmers, given the same requirements, could possibly create something beautiful. It may not be 'art' per se, but what isn't these days? |
|
Aug 28 |
comment |
How to explain to your mom what an algorithm is? I read "4yo son" as "4mo son" |
|
Aug 28 |
comment |
Best Language for a Mandelbrot Zoom? Cool library! Thanks for pointing that out. |
|
Aug 28 |
comment |
Best Language for a Mandelbrot Zoom? Sorry about that. Yes I meant UltraFractal. Stupid nicknames I make up for stuff... |
|
Aug 28 |
comment |
Best Language for a Mandelbrot Zoom? You can zoom quite deep before needing to switch between doubles and higher precision software. I forget the exact zoom level... Would be interested if anyone has a reference. |
|
Aug 28 |
comment |
Best Language for a Mandelbrot Zoom? Also, you can save a lot of time and just use a high performance, interactive fractal system like UltraFrac: basically Photoshop for fractals. It depends if your goal is to make a slick movie or to enjoy fiddling around with code and doing it yourself. |
|
Aug 28 |
answered | Best Language for a Mandelbrot Zoom? |
|
Aug 28 |
comment |
C# Structs - real life examples? A better explanation would suggest that when you pack unboxed structs in an array, you save a lot memory of overhead not having extra pointers (4 bytes (32 bit pointers) or 8 bytes (64 bit pointers) per LatLng. Compared to the 128 bit decimal struct (so 256 bits or 32 bytes per LatLng you are saving 12.5%-25% overhead, not counting the speed increase of not having to dereference LatLngs and put them in and out of the heap, and the speedups of being able to pass LatLngs on the stack. |
|
Aug 28 |
comment |
Linearly increasing color darkness algorithm just divide the number 1 to 500 by 2 and you'll get 1 to 250, which is probably perfect for what you need. (actual math: nuval = oldval * 255 / 500 -- with ints, make sure to multiply before you divide) |
|
Aug 28 |
comment |
Linearly increasing color darkness algorithm other links: en.wikipedia.org/wiki/HSL_and_HSV |
|
Aug 28 |
comment |
What’s a good PROGRAMMING (not gaming) laptop that supports at least two monitors through digital connections I thought the same question this week. |
|
Aug 27 |
comment |
Free JPEG2000 Library or SDK for de-compression I've had success with OpenJPEG in Windows. (C#; I wrote my own wrapper in C and call that DLL with C#). It's kind of slow but it works. |
|
Aug 26 |
comment |
Reinstalling .NET Framework 1.0 Sad how this is often the answer to many Windows ills. |
|
Aug 25 |
answered | Hash tables in prolog |
|
Aug 25 |
asked | Parsing slightly off-kilter XML in C# with XmlSeralizer |
|
Aug 24 |
answered | Can anyone identify this image format? |
|
Aug 24 |
accepted | Haddock: Failed to create dependency graph (when adding sections with * or a module heading) |
|
Aug 23 |
awarded | ● Yearling |
|
Aug 21 |
answered | Is it ethical/legal to bring your favorite code with you after a job? |
|
Aug 20 |
answered | Haddock: Failed to create dependency graph (when adding sections with * or a module heading) |
|
Aug 20 |
asked | Haddock: Failed to create dependency graph (when adding sections with * or a module heading) |
|
Aug 13 |
answered | best way to pass authentication when using ajax |
|
Aug 10 |
answered | does anyone have a working non-recursive floodfill algorithm written in C? |
|
Aug 6 |
answered | Best language for a personal code library? |
|
Aug 6 |
answered | What future does the GPU have in computing? |
