Ben Collins

5,887
Reputation
442 views

Registered User

Name Ben Collins
Member for 1 year
Seen yesterday
Website
Location US
Age 29
I currently work for a small .NET/Sharepoint consulting agency in Dallas. I am a professional developer, formerly in the "Defense & Aerospace" industry. I was daily entrenched in embedded real-time systems, signal processing, C, Git, C++, C#. My side projects involve Lisp, C#, concurrency and distributed systems, algorithms, math. Sometimes, when my wife is mad at me and my kids won't hug me, I do webby stuff. But I don't tell anyone.
7h
awarded  Mortarboard
Nov
27
comment django template url function not matching in app
Yep, I didn't edit my question very well. The problem is here: '{% url openidgae.views.LogoutSubmit %}'. I think I got it fixed, but I still don't quite have my head wrapped around how URLconfs really work. I know it's not that complicated, but it takes some time when you're just jumping in head first instead of studying the docs.
Nov
26
asked django template url function not matching in app
Nov
25
comment django unprintable templatesyntaxerror object caused by urlconf?
looks like the problem is because of a NoReverseMatch exception being thrown because my templates contain a {% url ... %} block that doesn't resolve. From the django site: Note that if the URL you're reversing doesn't exist, you'll get an NoReverseMatch exception raised, which will cause your site to display an error page.
Nov
25
comment django unprintable templatesyntaxerror object caused by urlconf?
good suggestion, but in this case, I am able to import both my top-level module as well as the 'pub' module.
Nov
24
comment django unprintable templatesyntaxerror object caused by urlconf?
pub is a django app. It's the only one for now, and will be the default. Ultimately there will be a few others, and their url modules will be imported too, when I get there.
Nov
24
asked django unprintable templatesyntaxerror object caused by urlconf?
Nov
23
awarded  
Nov
23
awarded  Popular Question
Nov
20
awarded  Popular Question
Nov
16
comment What do I need to install to make Data Connections in Server Explorer work?
This is an odd error - I was connecting to my SQL Server 2005 just fine until today when a co-worker who uses 2008 touched a database file I was using. now VS2008 can't connect anymore. Grrr.
Nov
15
answered Build management in C++ & good IDEs on Linux
Nov
15
answered C++ new operator. Creating a new instance
Nov
11
revised Type inference with control statements
explain "prior assignment"; added 48 characters in body
Nov
11
comment Type inference with control statements
Doh! You're right. I didn't even think about the prior assignment to sortQ. Good call.
Nov
11
asked Type inference with control statements
Nov
9
accepted Passing std::vector for any type to a function
Nov
7
comment Good C++ GUI library for Windows
Do you know of a walkthrough blog or other documentation demonstrating how to build an app using Adam & Eve? I've spent a number of hours researching this thing in the last few days, and I've had a hard time figuring out how to do anything. Even the dialog interface kit is confusing, because I can't find it in the sources. The begin app would have been a good start, but the sources aren't available anywhere that I can find.
Nov
6
answered Suggestions for a fast two way encrypt?
Nov
6
comment Should I learn ASP.NET MVC or the Zend Framework?
I would add to this that the tooling for ASP.NET and C# is much more vast than for PHP.
Nov
3
answered VSeWSS “An item with the same key has already been added”
Nov
3
awarded  Nice Question
Nov
2
comment VSeWSS “An item with the same key has already been added”
This didn't work for me. I tried your suggestion - deleting the solution folder, cleaning the solution, retracting, etc. Then I closed VS. I even checked out the solution from SVN again in a different directory, and still got the same result.
Nov
2
asked VSeWSS “An item with the same key has already been added”
Nov
2
answered VSeWSS phantom feature can’t be deleted
Nov
2
asked VSeWSS phantom feature can’t be deleted
Nov
2
answered How do I get the full path for a filename command-line argument?
Nov
2
answered Why does everybody use unanchored namespace declarations (i.e. std:: not ::std::)?
Oct
30
answered UpdatePanel startup script not executing
Oct
30
comment UpdatePanel startup script not executing
after playing with it a bit, I got it to work. I think the problem was that I was just using quicksearch() incorrectly somehow. I tried later with a simple alert() and it worked fine.
Oct
30
asked UpdatePanel startup script not executing
Oct
28
comment Passing std::vector for any type to a function
I realize refactoring large hierarchies is a pain, but you might also try to use a policy class as a template parameter instead of passing in smart pointers and apparently (based on your description) sacrificing type-safety for flexibility.
Oct
28
revised Passing std::vector for any type to a function
added 190 characters in body
Oct
28
answered Passing std::vector for any type to a function
Oct
28
comment LoadControl on control with assembly reference
I tried that, but it didn't work. (that's what I meant above when I said "I tried adding the AjaxControlToolkit assembly to the web.config..."). Thanks for the suggestion, though.
Oct
27
asked LoadControl on control with assembly reference
Oct
24
awarded  Popular Question
Oct
23
comment Hidden features of C
@Anacrolix: Yes. I understood what he was pointing out. You seem to miss my point though: it's apropos nothing. Whether or not a particular compiler "supports C99" really has nothing at all to do with whether or not you should use the standard integer typedefs. They are portable and easy to define even if your compiler sucks. If you need to specify a certain integer width, then the standard typedefs should always, always be used, regardless of where the definitions come from.
Oct
23
awarded  Popular Question
Oct
12
comment How to extend std::tr1::hash for custom types?
Is there a way to extend std::hash for user-defined types with private copy constructors? Also, is there a way to extend it with an operator() that takes a const ref instead of val?
Oct
8
comment “Microsoft Visual C# IntelliSense has stopped working” in project referencing F#
Is there a connect link for this, or a blog post or something that would allow tracking? I've just been hit by this and had to turn off intellisense (boo!).
Oct
1
awarded  Notable Question
Sep
24
comment What do you use for fixed point representation in C++?
it appears that decNumber++ is all about floating-point, not fixed-point.
Sep
16
comment Google App Engine Python Code: User Service
MainPage /is/ the type of the self object, but it inherits from webapp.RequestHandler, which is where properties like 'response' are defined. You need to look at the Webapp reference docs (within the appengine docs).
Sep
15
comment Personal Version Controller
I second this. For personal projects, Git and Mercurial are the easiest to manage.
Sep
15
awarded  Taxonomist
Sep
13
comment Boost regex not working as expected in my code
I can't get it working with regex_search either. Here's the code I'm testing with: gist.github.com/186124
Sep
13
comment Boost regex not working as expected in my code
I'm trying to use regex_match because I have constraints on my input that let me write simple REs that should consume all the input. However, it seems to always fail, no matter what the inputs are. For example, an RE of "a" fails against a string of "a". What's up with that?
Sep
10
comment Using boost on the iPhone
did you ever find a resolution to this problem?
Sep
9
comment Linking Static Libraries in iPhone SDK 3.0
What version libstdc++ is in OS 3.x?