Charlie Flowers

3,160
Reputation
466 views

Registered User

Name Charlie Flowers
Member for 8 months
Seen 3 hours ago
Website
Location Atlanta, GA
Age 40
Developer / Architect, been doing .NET for 7+ years, and Ruby for 1.5 years. Java for 5 years before .NET. Independent Consultant in Atlanta area. 16 years overall. http://charlieflowers.wordpress.com
Nov
17
comment What are some good open source c# examples of quality domain models.
I agree. It is the spawn of Satan. More accurately, it was an excellent pedagogical device that Rocky used to write a good book for OO beginners. Since it was pedagogical, it did not go far enough with refactoring and further needed design improvements (if it had gone that far, it would have lost its pedagogical value for beginners). Then, it was taken and pitched as a fully complete, ready-for-enterprise framework (which is ludicrous), and many business were duped into believing that pitch. Even developers were duped into it because of the religious fervor and guru-status behind it.
Nov
15
awarded  Good Question
Nov
8
comment C# Custom Events with Overloads
I need more info. When you say "make addStatus an overload", what do you mean? You want an overload that takes a different set of parameters?
Nov
8
answered Constructor injection with other, non-dependency, constructor arguments
Nov
8
answered Install MVC on 2.0.NET Server with IIS6 without Admin Rights
Nov
6
awarded  Popular Question
Oct
30
awarded  Guru
Oct
28
comment Best jQuery Book: jQuery in Action vs. Learning jQuery
I didn't know you could say "bullshit" on here. I would have used that a little more often.
Oct
6
awarded  Enlightened
Oct
6
accepted Have you ever derived a programming solution from nature?
Oct
2
revised What is the problem with Visual Studio.Net’s “absolute positioning”, and how is that problem fixed by CSS’s “absolute positioning”?
added 1341 characters in body
Oct
1
comment What is the problem with Visual Studio.Net’s “absolute positioning”, and how is that problem fixed by CSS’s “absolute positioning”?
+1, thanks. Good info.
Oct
1
comment What is the problem with Visual Studio.Net’s “absolute positioning”, and how is that problem fixed by CSS’s “absolute positioning”?
Fantastic response, thanks. I agree with you and I'm starting to see the light. The old advice about using FlowLayout was not just about avoiding VS.Net's own implementation of absolute layout ... it was about avoiding absolute layout in general. Web pages should not have every element laid out with absolute positioning (and yet VS.Net used to default to it). Very helpful, thanks.
Oct
1
comment What is the problem with Visual Studio.Net’s “absolute positioning”, and how is that problem fixed by CSS’s “absolute positioning”?
Well, maybe I have it wrong. My understanding is that the general web community (outside of the Microsoft world) recommends that CSS positioning be used. That HTML elements should convey structure, not positioning or appearance. Then, positioning should be done with CSS. Also, my understanding is that the larger organizing elements of the page should be positioned by CSS absolute positioning. For ex, this link recc's using CSS-P instead of table-driven layout: webdesign.about.com/od/css/a/aa102102a.htm.
Oct
1
revised What is the problem with Visual Studio.Net’s “absolute positioning”, and how is that problem fixed by CSS’s “absolute positioning”?
fixed typo
Oct
1
asked What is the problem with Visual Studio.Net’s “absolute positioning”, and how is that problem fixed by CSS’s “absolute positioning”?
Oct
1
comment Using old ASP.NET 2.0, but with new browser (IE 7) … Should I use Absolute Positioning or Flow Layout or CSS or what? :-)
I think I will turn that into its own separate question.
Oct
1
comment Using old ASP.NET 2.0, but with new browser (IE 7) … Should I use Absolute Positioning or Flow Layout or CSS or what? :-)
OK, I think this question cuts to the chase: what is it that the VS.Net designer does badly at absolute positioning, but that CSS does well about absolute positioning? Why is CSS positioning OK across different screen resolutions, but the VS.Net absolute approach is not?
Sep
30
comment Using old ASP.NET 2.0, but with new browser (IE 7) … Should I use Absolute Positioning or Flow Layout or CSS or what? :-)
Ugh, I'm afraid I may have to do that, but I want to avoid it at all cost. It is a hodgepodge of all the poor practices from the past ... tables to control layout and non-standards based absolute positioning. But I see why you did it and appreciate the response.
Sep
30
comment Using old ASP.NET 2.0, but with new browser (IE 7) … Should I use Absolute Positioning or Flow Layout or CSS or what? :-)
Really? If so that's good to hear. But I thought that many of the ASP.NET controls are not CSS-friendly which would make it difficult to use CSS positioning.
Sep
30
asked Using old ASP.NET 2.0, but with new browser (IE 7) … Should I use Absolute Positioning or Flow Layout or CSS or what? :-)
Sep
26
comment Hidden Features of C#?
Yes, this is powerful.
Sep
26
comment Why use Ruby instead of Smalltalk?
Which one is the interstate, and which is the windy back road with tree cover? lol
Sep
1
awarded  Nice Question
Aug
28
comment Your Favorite Programming Book available for FREE download
His "Thinking in C++" was instrumental to me about 15 years ago. Before I read it, I mistakenly thought I understood C++ only to get eaten alive on tech interviews (twice). Then his book turned on the light for me.
Aug
28
comment Have you ever derived a programming solution from nature?
In fact, there are some rules that are funnier to think about than "elevator rules" ... "urinal rules". The way guys choose a urinal in a crowded restroom is very much like the behavior of the birds. :)
Aug
28
comment What fluent interfaces have you made or seen in C# that were very valuable? What was so great about them?
I agree that nameOf and some similar operators would be great. Let us get to the names of variables that are in scope cheaply so that there is less of a barrier between code and data.
Aug
17
comment How to outer-join two tables (main and many-to-one sub-table) to get only ONE item from second table?
I"m not surprised, I just typed it off top of my head without being able to run it. But the general idea is there. Thanks for supplying the detail.
Aug
17
comment What is the smoothest, most appealing syntax you’ve found for asserting parameter correctness in c#?
Earwicker, that's an interesting observation. I like it, though it is not a slam dunk and there might be cases where I'd go with the many-methods approach (IsNull, IsNotNull, etc.) Or at least I'd debate with myself about it. The error message can be prettier saying "FirstName can't be null" than "The assertion (FirstName != null) failed". Plus if you have a hundred places where you assert (something != null), that feels like code duplication. I'm not sure if it is harmful duplication or not. Depends probably. But cool observation, thanks.
Aug
14
awarded  Nice Question
Aug
8
awarded  Popular Question
Jul
31
awarded  Nice Answer
Jul
7
comment What is the smoothest, most appealing syntax you’ve found for asserting parameter correctness in c#?
Cool. Any plans to use params args to let several variables be verified?
Jun
23
revised Why does this first Haskell function FAIL to handle infinite lists, while this second snippet SUCCEEDS with infinite lists?
Corrected something that was wrong with conclusion # 3.
Jun
23
comment Why does this first Haskell function FAIL to handle infinite lists, while this second snippet SUCCEEDS with infinite lists?
Ganesh, you're absolutely right. This was a key point for me, and I am grateful for you pointing it out. It is not correct for me to say that it is "perfectly fine" to match the 2nd arg against (x:xs), because there are cases when that would NOT be ok. It is only OK here because there are cases when matching against (x:xs) won't cause infinite recursion because it will lead to a space. Thanks!
Jun
23
comment What is the single most influential book every programmer should read?
Good. I do not think you will be disappointed.
Jun
23
comment Ruby or C# as First Web Development Language
Yes, Andrew, I agree. I am not saying Rails is bad. I'm only saying that it has big chunks of "magic" that, while powerful, would obscure things for someone whose goal is to completely understand everything that is happening (and that is the best goal to have in the long run, I believe). And I agree, almost all of that magic resides in Rails, not Ruby itself. Ruby's magic is documented and consistent (the Eigenclass, mixins, etc.), and therefore does not obscure understanding (once you invest in learning it).
Jun
23
comment What is the smoothest, most appealing syntax you’ve found for asserting parameter correctness in c#?
Nice. Thanks for pointing me there.
Jun
15
awarded  Nice Question
Jun
12
awarded  Nice Answer