George Mauer

8,059
Reputation
805 views

Registered User

Name George Mauer
Member for 1 year
Seen Nov 23 at 17:11
Website
Location US
Age 27

I am a .NET software developer located in New Orleans. I have been lurking around the ALT.NET community since I have no idea how to actually design a system in early 2008. Since, I have become a big proponent with in my company for tdd, domain driven design, loose coupling, et al. My other programming interests are PHP, F# and Python which I am all bad at.

My interests outside of work are Brazilian Jiu-Jitsu, emergence theory, independent music (mostly post-punk), philosophy, American politics, current science, particle physics, living in New Orleans and learning in general. Not at all in that order.

Nov
23
answered PHP + .Net Web services for data access - Bad Design Choice?
Nov
20
comment Powershell: Is it possible to set-alias on a piped command?
hehehe mem-hogs why didn't I think of that!?
Nov
20
asked Powershell: Is it possible to set-alias on a piped command?
Nov
19
revised Problems redirecting NUnit assembly version (what is [AssemblyName].temp.config?)
Added in answer from comments so that I can upvote
Nov
18
comment Problems redirecting NUnit assembly version (what is [AssemblyName].temp.config?)
Please don't answer a bounty question with a complete guess. This is especially annoying because in the question I actually showed you the FusionLog which demonstrates all the config files checked for binding .
Nov
18
comment Problems redirecting NUnit assembly version (what is [AssemblyName].temp.config?)
That's what Visual studio does already. I have verified that this functionality isn't broken for some reason by checking that the file exists. I've never seen a temp extension like that before though.
Nov
16
comment Does Javascript’s new operator do anything but make life difficult?
@Tim Here you go: pastebin.com/f1d6664e0 each time you call NotificationsDisplay() you get back an object/function with its own private variables, methods and even a public method.
Nov
16
comment Does Javascript’s new operator do anything but make life difficult?
That is not at all true Tim. Like I said, I've managed to do just fine without it. You use a closure instead.
Nov
16
comment Does Javascript’s new operator do anything but make life difficult?
I'm not sure I get what you mean Kendrick, are you saying that I should have linked the term "functional"?
Nov
16
comment Does Javascript’s new operator do anything but make life difficult?
Haha. Actually for a book with "The Good Parts" in the title there's an awful lot of discussion of all the bad parts (as in, most of the book). Thanks for the response.
Nov
16
comment Does Javascript’s new operator do anything but make life difficult?
Thanks Bryan. Wouldn't you just have your function return the function you want to "inherit" from and add whatever new functionality you want directly? Isn't that the more natural way of achieving the same thing?
Nov
16
asked Does Javascript’s new operator do anything but make life difficult?
Nov
16
awarded  Popular Question
Nov
15
awarded  Tumbleweed
Nov
12
comment Where is the prototype property on strings in JavaScript?
Whats the convention there anyways?
Nov
12
comment Where is the prototype property on strings in JavaScript?
Ooooh, capital S ...got it
Nov
12
asked Where is the prototype property on strings in JavaScript?
Nov
12
answered MVC - C#, ASP.net: Tutorial wanted
Nov
9
answered Why does my ajax request disappear immediately from firebug console?
Nov
9
asked Why does my ajax request disappear immediately from firebug console?
Nov
9
awarded  Popular Question
Nov
7
asked Problems redirecting NUnit assembly version (what is [AssemblyName].temp.config?)
Nov
6
revised Let the user design a form and the fields in it
added 297 characters in body
Nov
6
answered Let the user design a form and the fields in it
Nov
3
comment Is there something odd with Powershell and forwards slashes?
Ah thanks that makes sense
Nov
3
asked Is there something odd with Powershell and forwards slashes?
Nov
3
comment Should null == null be true when comparing objects?
I am not a SQL guy so that is totally possible. I work mostly with oracle and in oracle NULL + anything = NULL and SELECT 1 from DUAL WHERE NULL=NULL returns 0 rows. I have read that this is because "I don't know" is the conceptual definition of null.
Nov
3
comment Should null == null be true when comparing objects?
Exactly, and that's the way NULL in SQL works, there is just an implicit cast between NULL and false
Nov
3
comment Should null == null be true when comparing objects?
Hmm, thats a good point actually. A really really good point.
Nov
3
comment Should null == null be true when comparing objects?
Well in C# at least the correct way of doing null checks is object.ReferenceEquals(null, variable)
Nov
3
comment Should null == null be true when comparing objects?
Thats true, "I don't know"=="I don't know" should result in "I don't know", not false - though converting from "I don't know" to false implicitly seems ok.
Nov
3
asked Should null == null be true when comparing objects?
Nov
2
awarded  Notable Question
Oct
31
comment How to use CSS to position divs?
Wow - awesome. I think the concept I was missing was the clear style, I did not know about it
Oct
30
revised How to use CSS to position divs?
added 290 characters in body
Oct
30
comment How to use CSS to position divs?
The problem is that you end up injecting layout logic into html. The columns don't pertain to my structure at all, I am trying to get this page written the 100% right way as a learning exercise.
Oct
30
comment How to use CSS to position divs?
Yeah, I can figure out if I group things by column, but I want to avoid doing that - This is mostly a question of pedagogy but I know it should be possible to get a flow like I showed without any explicit columns
Oct
30
comment How to use CSS to position divs?
Sorry, my fault, missed the Ctrl+K
Oct
30
revised How to use CSS to position divs?
added 34 characters in body
Oct
30
comment How to use CSS to position divs?
But you're using html to define columns! That's hardly guru-ish. I know there's a way to do it besides that.
Oct
30
comment How to use CSS to position divs?
Thanks, but ordering a book is definitely a bit much for what I want to do. I hardly need to make csszengarden, I just need to learn how to do a couple things here and there.
Oct
30
asked How to use CSS to position divs?
Oct
30
comment TortoiseSVN works but command line svn doesn’t work?
Yes! that was exactly it thanks a lot!
Oct
30
comment TortoiseSVN works but command line svn doesn’t work?
I understand how svn works...I am definitely in a working directory. No matter where I type svn status from I get that message.
Oct
30
comment TortoiseSVN works but command line svn doesn’t work?
Thanks for the response - what does the code you posted do? I would use the GUI but sometimes the command line is faster - especially when TortoiseProc chokes up
Oct
30
comment TortoiseSVN works but command line svn doesn’t work?
Why tag it not-programming-related? Its about a prominent programming tool that is malfunctioning...
Oct
30
revised TortoiseSVN works but command line svn doesn’t work?
added 33 characters in body
Oct
30
asked TortoiseSVN works but command line svn doesn’t work?
Oct
29
comment Javascript - get a variable from inside the local scope of a function
Really? I thought just about anything was possible in javascript...Technically I want to treat it as a protected variable used from inside some methods I will add in the future if that makes it any easier.
Oct
29
comment Javascript - get a variable from inside the local scope of a function
Well what I want isn't really the canvasDiv, but the width/height of it that will be used in some simplifying facade methods that I plan to add. The page itself will have many jsGraphics objects however and I will need to work with each one in turn.