Jon Limjap

17,153
Reputation
1236 views

Registered User

Name Jon Limjap
Member for 1 year
Seen 16 hours ago
Website
Location Manila, Philippines
Age 29

.NET Senior Software Design Engineer working for Cormant Technologies, mainly on C#, ASP.NET and Windows Forms.

C# MVP since 2009. Likes to dabble in TDD.

When I'm not coding, I'm dabbling with a little photography. Check out my Flickr photostream.

Add me on Twitter: http://twitter.com/LaTtEX

Nov
24
awarded  Nice Answer
Nov
18
comment Unknown column {0} in on clause
Could you add some details about the table structures/definitions of the joined tables?
Nov
16
awarded  Good Answer
Nov
4
revised How can JQuery validate() be executed before onClick=”functionname()”;
fixed code formatting
Nov
4
accepted is this violating the SOLID principles ?
Oct
29
answered Implementing two interfaces or not?
Oct
29
comment how to see stacktrace of.net application
Yes. You could use logging frameworks to write them to error logs too.
Oct
27
comment Why does Visual Studio create a new .vsmdi file?
Thanks for the wayback link. :)
Oct
21
comment Unit Testing & Primary Keys
Are you generating your own primary keys? Or are you allowing the DB to generate them for you?
Oct
9
answered What do you find to be difficult and frustrating about managing software development?
Oct
8
answered gracefully upgrading a website
Oct
8
revised Generally Writing Code - What practices do you apply? When is enough enough?
edited a typo
Oct
8
revised Generally Writing Code - What practices do you apply? When is enough enough?
added new resource
Oct
2
revised Issues overwriting a cookie
edited tags
Sep
29
awarded  Good Answer
Sep
29
accepted NUnit GUI Runner Multiple Configuration Files
Sep
28
answered How can I enhance the aesthetics of an ugly windows form packed with too many (necessary) features?
Sep
28
comment How can I enhance the aesthetics of an ugly windows form packed with too many (necessary) features?
Pro Mode? Is there a worse version of this thing?
Sep
28
answered Is it code-smelly to have empty classes in the middle of a class hierarchy?
Sep
28
comment Storing a file in a database as opposed to the file system?
This is an implicit task when images have to be displayed afterward, especially when stored in different formats or in scenarios where they can't be held in memory for lenghty periods of time, by virtue of sheer size.
Sep
25
comment Unit testing code coverage - do you have 100% coverage?
You should check this question out: stackoverflow.com/questions/90002/…
Sep
25
accepted What should be the sequence of diagrams creation in UML?
Sep
23
revised Overload Baseform
edited tags; edited tags
Sep
23
revised General on mvc… should controller pass data to view or view should grab it directly from model?
retagged
Sep
23
revised ASP.NET repeater in update panel
edited tags
Sep
23
comment asp.net repeaters. To use or not to use
How much lighter do you think you can get?
Sep
23
answered NUnit GUI Runner Multiple Configuration Files
Sep
23
revised NUnit GUI Runner Multiple Configuration Files
cleaned up tags; added 4 characters in body
Sep
23
answered How to detect where a Memory Leak is?
Sep
23
answered Speeding up ASP MVC Unit Tests
Sep
22
revised C# Caching is dropping rows when synchronizing to the database.
edited tags
Sep
22
revised Does anyone have any real-world experience of CSLA?
corrected a sentence
Sep
21
accepted Tool for generation MSDN-like documentation from <summary> tags?
Sep
21
answered Is it better to go live with a site that isn’t fully developed, or wait untill it’s fully functional?
Sep
18
comment Send email works locally, but not from remote server
Unfortunately that is a serverfault.com question. Depends on your system administrator
Sep
18
revised SQL query without UNION
changed tags to proper ones
Sep
18
answered Send email works locally, but not from remote server
Sep
18
comment Send email works locally, but not from remote server
LOL, I guess some people think letting the code do that talking works. Sometimes it does, mileage will vary.
Sep
18
comment How to know or calculate depth of field of a photo from EXIF tags?
I guess this is the reason why DOF is not in the EXIF data in the first place -- not too many cameras and lenses will have photometry technology that determines subject distance
Sep
18
comment What cool frameworks are there on Java/Ruby etc. that don’t exist on .NET?
Well, there is an open source project that connects directly to Maven for builds, and integrates with Visual Studio: npanday.codeplex.com
Sep
18
comment In this scenario, how to frame a common function and parameterize casting?
I'd like to know what's your implementation of the relationship between types, e.g., A and AFilterObj, B and BFilterObj, etc. That will reveal for caveats we need to take into account.
Sep
18
revised In this scenario, how to frame a common function and parameterize casting?
edited tags
Sep
18
comment is this violating the SOLID principles ?
Well, again, SRP. Your Tool class is doing too much as is. If you have DAO classes you can group them together in a UserManager or ProductManager class where all the CRUD and other functionality are. Extension methods are supposed to add functionality without mucking existing classes, NOT hide existing functionality from their real locations.
Sep
17
accepted Are there any plugins for Visual Studio which automatically formats code how I like?
Sep
17
comment Methodologies for Change-Proof Development in Agile Environment
What do you mean by agile-proof? The lack of need for any agile development practices? Or the lack of need for change?
Sep
17
comment In a C# event handler, why must the “sender” parameter be an object?
Well, it was implemented ever since .NET 1.0, so it might be a backward-compatibility code smell, if anything.
Sep
17
revised Project Solution(.sln) Problem
added visual studio tag
Sep
17
comment is this violating the SOLID principles ?
peterchen, this is actually a very deep topic that will take a lot of training and/or practice to get. The jump from functional/procedural mindset in software development to a truly object-oriented one is a vast gap to cover, unfortunately.
Sep
17
revised is this violating the SOLID principles ?
added more clarifications
Sep
17
answered is this violating the SOLID principles ?