| bio | website | comic-rocket.com |
|---|---|---|
| location | Portland, OR | |
| age | 28 | |
| visits | member for | 6 months |
| seen | 10 hours ago | |
| stats | profile views | 342 |
Software systems architect, developer, and project manager, effectively evaluating solutions spanning entire software stacks from low-level CPU architecture to high-level application frameworks. Focus on providing elegant solutions for complex needs. Open source projects include the Portland State Aerospace Society, with arguably the most sophisticated avionics of any amateur rocketry group in the world; and XCB, a new low-level binding to the X Window System protocol, currently replacing Xlib on every Linux, Solaris, BSD, and MacOS X desktop.
My interests span computer science fields including cryptography, combinatorial search, compilers, and computational complexity; systems-level programming, such as file format and network protocol implementations, Linux kernel development, and boot-loader hacking; computer architecture and its impact on software design; and functional programming, preferably in Haskell.
|
Nov 14 |
comment |
Linux : power fault input? I assume you've already checked that you have some kind of hardware support for power-fail detection and you've implemented backup power of some sort. (Linux is neat but it can't magically give your CPU more electrons.) Details on the hardware you want to interact with would help. |
|
Nov 14 |
comment |
Best Git strategy for testing different client and server versions I did this with a team of four other developers, and various others have come and gone since. For the most part it was one-time setup: Once they ran git submodule update --init they didn't have to think about it further. The developers who had to work with the build system I built on top had more trouble, but you don't have to go that far. :-) (I've given a talk since titled "Why you shouldn't let me design your build system" but the recipients copied my design anyway...) |
|
Nov 14 |
comment |
Django: SQL Injection-proof managers.py It quotes the parameter as needed for your database. However, I'm not sure it quotes it appropriately for a field name; I think it'll just quote it into a string literal. Try it and see? |
|
Nov 14 |
comment |
Automated computation of algorithm time complexity for terminating algorithms Personally, I'd find value in a practical solution--can you imagine compiler warnings about inadvertent n**3 algorithms? But as a theoretical answer it still leaves something to be desired, in the heuristic approach to finding boundary functions. This setting doesn't offer much incentive for improving it, though, I'll grant. |
|
Nov 14 |
comment |
Automated computation of algorithm time complexity for terminating algorithms That seems like an answer that may be true, but it isn't very satisfying... |
|
Nov 14 |
comment |
This code generates a segfault. Where have I gone wrong? Hmmm. For that question, I have no answer. |
|
Nov 14 |
comment |
This code generates a segfault. Where have I gone wrong? Look at the backtrace you got: either this.name or T.name is invalid, and is causing the call to name.compare(T.name) to crash. |
|
Nov 14 |
answered | This code generates a segfault. Where have I gone wrong? |
|
Nov 14 |
answered | double pointer arithimethic, traversing chars of array string |
|
Nov 14 |
comment |
In JavaScript/jQuery, how to retrieve the url of an ajax call after the call is done? possible duplicate of jQuery: get url in success function |
|
Nov 14 |
comment |
jQuery's get() not properly returning Do you see your "entering" message on the console? |
|
Nov 14 |
answered | Unusual Server behavior with sockets |
|
Nov 14 |
comment |
Unusual Server behavior with sockets Did you end your print statements with " \n" so they'd flush the output buffer before running any later code? |
|
Nov 14 |
revised |
reduce Makefile redundancy use "Beta" says GNU make's shortest stem rule does what I meant |
|
Nov 14 |
comment |
reduce Makefile redundancy For example, flex_test.o matches both %_test.o and also %.o. I don't know off-hand how make handles rules that overlap like that. You could try it as-written and see if I got it right. :-) |
|
Nov 14 |
reviewed | Reject suggested edit on openNI interferes with cvCreateCameraCapture() |
|
Nov 14 |
reviewed | Approve suggested edit on WP7 - Visual Studio 2012 Throws 3 NullReferenceExceptions |
|
Nov 14 |
reviewed | Approve suggested edit on What are the ways Linux Kernel can communicate with userspace vise versa? |
|
Nov 14 |
answered | reduce Makefile redundancy |
|
Nov 14 |
comment |
reduce Makefile redundancy Are you using GNU make, or another implementation? And do you need your makefile to work on other implementations? |