Brian Campbell

10,029
reputation
1607 views

Registered User

name Brian Campbell
member for 10 months
seen 3 hours ago
website
location VT, US
age 27
I hack Scheme, C++, and Ruby professionally, and many other languages in my free time. I prefer free software (free as in freedom, sometimes also known as open source software), though I'm willing to use proprietary software if necessary.
3h
answered HTML5 Video tag with no source?
18h
revised Access cookies from Google Chrome extension
format code
1d
awarded  Enlightened
1d
awarded  Nice Answer
2d
answered sprintf(buf, “%.20g”, x) // how large should buf be?
2d
answered Regex help with splitting string
2d
revised InnoSetup: Getting AppName in [Code] section
added 53 characters in body
Dec
19
comment Exclusive OR in Scheme
Scheme is a fairly minimalist language. From R<sup>5</sup>RS: "Programming languages should be designed not by piling feature on top of feature, but by removing the weaknesses and restrictions that make additional features appear necessary." So, there are a lot of things provided by other languages that Scheme merely provides building blocks for. Any given Scheme implementation may provide a more complete library, and the SRFIs srfi.schemers.org help standardize a few of the extensions to the core language.
Dec
18
answered MultiLine Form in HTML ?
Dec
18
answered InnoSetup: Getting AppName in [Code] section
Dec
18
comment InnoSetup: Getting AppName in [Code] section
Hmm. I'd prefer not to have to define every AppName as a macro, and then use that macro to define the real AppName in every program. But this is a start.
Dec
18
revised InnoSetup: Getting AppName in [Code] section
Expand a bit on what I'm looking for
Dec
18
asked InnoSetup: Getting AppName in [Code] section
Dec
15
awarded  Nice Answer
Dec
14
comment blurring a web page background
I'm not sure what blur effect you are talking about. I don't see a blur effect on either of those pages. Can you post a screenshot of what you are referring to, or describe it in a bit more detail?
Dec
10
comment couchDB: storing MB per document
Note that you don't have to upload your attachments in Base64. You can create the document, and then separately add the attachment in a raw put request. See wiki.apache.org/couchdb/… for details.
Dec
6
awarded  Mortarboard
Dec
3
awarded  Nice Question
Dec
2
comment What is in your JavaScript toolchain?
How is it doing on libraries other than their Closure library? The last I heard, it had some bugs when run on jQuery. It certainly is a pretty nice piece of technology; much better than your average minimizer.
Nov
29
comment It’s a good idea use ruby for socket programming?
Hmm. Shouldn't you know because of Twitter that Ruby can handle a lot of requests? Twitter is one of the most popular websites on the internet (#14 according to Alexa). Any scalability problems it has are likely to be far beyond what you will ever experience, and are going to occur no matter what language and framework you use. The fact that Twitter has scaled up so far and fast actually says that they're doing a lot right, even if they do sometimes have a few issues.
Nov
26
accepted A puzzle - a program printing its own source
Nov
26
comment What can you do in 30 lines of Go? Can you create a useful, complete program that demonstrates its features?
Sure. That's a type assertion (golang.org/doc/go_spec.html#Type_assertions/…); it asserts that the type is what you specify (or conforms to the interface that you specify), and allows you to call methods that are defined on that type or interface. The syntax that you mention is a conversion (golang.org/doc/go_spec.html#Conversions), which converts between compatible types (such as integer types). I believe that conversions only work for buit-in types (numbers and strings).
Nov
26
awarded  Self-Learner
Nov
25
accepted Semantic markup for complex or nested HTML tables?
Nov
25
comment working copy is on master branch, how to update from remote server?
Oops. Yeah, that's wrong. Deleted from my answer.
Nov
25
revised working copy is on master branch, how to update from remote server?
delete "pull remote:local", as it's wrong
Nov
25
answered Semantic markup for complex or nested HTML tables?
Nov
25
accepted working copy is on master branch, how to update from remote server?
Nov
25
answered working copy is on master branch, how to update from remote server?
Nov
24
comment Using Dell GPS in FireFox 3.5, not Google/Skyhookwireless
This question would probably be better asked on Super User (superuser.com), a companion site of Stack Overflow for power-user type questions like this. Stack Overflow is intended for programming questions, and it seems like you're asking about configuration. If you are actually asking about how to write such a driver, I'd recommend you reword your question to make that clear; if you're asking about configuration, it would be best to move your question to Super User.
Nov
23
comment Apache virtual host configuration on debian
Just so you know, Server Fault serverfault.com is the equivalent of Stack Overflow, but for systems administration instead of programming; you're likely to find more people with knowledge about Apache configuration there than here.
Nov
22
accepted Regex use in reading file .txt and returning information to screen
Nov
22
answered Regex use in reading file .txt and returning information to screen
Nov
22
revised C Programming: address of a label
add an example of how this can be used.
Nov
22
answered C Programming: address of a label
Nov
22
revised How to insert an element into an array on malloc?
formatting
Nov
22
answered Code Golf: Fractran
Nov
20
comment private type with exported fields
Yep, I tested this with the compiler, this does work.
Nov
20
accepted Why does my site crash in IE7 when fading to a page that has another fade on it?
Nov
20
answered Representing probability in C++
Nov
20
answered A puzzle - a program printing its own source
Nov
19
revised Help needed in writing a GUI app in C
add windows api link
Nov
19
accepted Am I missing something about the Intellij announcement?
Nov
18
comment Removing created temp files in unexpected bash exit
Well, the backticks work fine in this comment, but that's a fair point, it is good to be in the habit of using $(). Added the double quotes as well.
Nov
18
revised Removing created temp files in unexpected bash exit
edit as suggested
Nov
18
answered Help needed in writing a GUI app in C
Nov
18
comment How should I construct a finance DSL?
There are advantages to both approaches. I find it's better to start with an embedded DSL, as you're less likely to spend lots of time up front re-implementing something that's already been implemented better in your host language for no reason; then if it turns out that a better syntax really will help you express your ideas (which it can in some cases), you can write your parser and have it use everything you built for your embedded DSL on the back end. Likewise, when I'm designing macros in Scheme, I try to design a good regular API first, and just use the macro as a thin layer over thet.
Nov
18
answered Combining function bodies at runtime
Nov
18
answered How should I construct a finance DSL?
Nov
17
accepted boost::format - attempting to use HTML as formatter string - need some help