Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
E

ENOTTY

@ENOTTY
About
Posts
28
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Five Rules to Remember in Life
    E ENOTTY

    Well, You Were Only Supposed To Blow The Bloody Doors Off![^]

    The Lounge help

  • Over-documentation
    E ENOTTY

    In general, I agree with you, the exception being concise^Wtoo clever for their own good LINQ expressions like these:

    ' enumerate Future Queries (go to DB in one request), put resulting KatalogIds into HashSets
    Dim katalogErrorResults As Dictionary(Of KatalogErrorType, HashSet(Of Int32?))
    katalogErrorResults = katalogErrorFutures _
    .AsEnumerable() _
    .Select(Function(katErr) _
    New KeyValuePair(Of KatalogErrorType, HashSet(Of Int32?)) _
    (katErr.Key, katErr.Value.ToHashSet)) _
    .ToDictionary(Of KatalogErrorType, HashSet(Of Int32?)) _
    (Function(kvp) kvp.Key, Function(kvp) kvp.Value, katalogErrorTypeComparer)

    ' transform results to Dictionary(Of Int32?, KatalogErrorDTO)
    Return katalogeIds.ToDictionary(
    Function(sourceKatId) sourceKatId,
    Function(sourceKatId) New KatalogErrorDTO() With { _
    .ArtikelNummerPrefix = artikelNummerPrefix,
    .SearchQuery = searchquery,
    .Errors = [Enum].GetValues(GetType(KatalogErrorType)) _
    .Cast(Of KatalogErrorType) _
    .ToDictionary(Function(kErrorType) kErrorType, _
    Function(kErrorType) katalogErrorResults(kErrorType) _
    .Contains(sourceKatId)) _
    })

    The Weird and The Wonderful performance

  • Over-documentation
    E ENOTTY

    What's with the scare quotes?

    The Weird and The Wonderful performance

  • Religious question - MVC benefits vs ASP.NET?
    E ENOTTY

    Just use Flesk.NET ViewState optimizer http://flesk.net/components/vsoptimizer.aspx[^] It can store Viewstate either in Session State or on disk server side (compression optional).

    The Lounge asp-net architecture question csharp database

  • Whats wrong with this code???
    E ENOTTY

    It should be called TryConvertToDouble with the signature and semantics following the TryXXX functions like TryGetValue(), that is: It should return bool true on successful conversion, false otherwise and the converted value in the out parameter.

    The Weird and The Wonderful beta-testing help question

  • BAD xml
    E ENOTTY

    I know what's wrong with it! It's missing the

    The Lounge xml question

  • Programming Preferences
    E ENOTTY

    +1 And, of course, make sure that objects are serializable (like proper DTOs), so "the next guy" (which is yours truly) doesn't want to come after you wielding an axe because stuffing ListItemCollections and GridViewRows into Session makes the StateServer unhappy . :mad:

    The Lounge asp-net oracle com question

  • Number of Database Tables
    E ENOTTY

    MehGerbil wrote:

    3: I've a tendency to put combobox lists into discrete tables so that adding another option is as easy as adding a single row to a table.

    Do you put reference data such as this into its own schema?

    MehGerbil wrote:

    4: I've log tables for everything a user may touch - before and after snapshots of everything.

    Same question here.

    The Lounge database question

  • Both Worlds :: Dot Net Development & Open Source Development
    E ENOTTY

    Move your ass and your mind will follow. http://blogbrut.wordpress.com/2010/04/17/move-your-ass-and-your-mind-will-follow-the-power-of-positive-action/[^]

    The Lounge com

  • Back To Pretending I Know How To Program
    E ENOTTY

    Check out http://filehelpers.sourceforge.net/[^]

    The Lounge csharp database css sql-server sysadmin

  • Citing/Linking WorldNetDaily? Are you fn kidding me?
    E ENOTTY

    One of todays news items: http://www.codeproject.com/News/22816/NSA-has-total-access-via-Microsoft-Windows.aspx[^] :wtf: Seriously, it has been 14 years already? http://en.wikipedia.org/wiki/NSAKEY[^]

    _NSAKEY was a variable name discovered in Windows NT 4 Service Pack 5 (which had been released unstripped of its symbolic debugging data) in August 1999 by Andrew D. Fernandes of Cryptonym Corporation. That variable contained a 1024-bit public key.

    The Lounge com question announcement

  • (Open)VMS - the end of an era
    E ENOTTY

    I still have a MicroVAX 3100-80 (and parts of the Orange Wall) sitting next to me. :cool:

    The Insider News csharp com tools question

  • Tools for enforcing coding guidelines?
    E ENOTTY

    Clue_Stick[^]

    The Lounge algorithms collaboration tools question

  • No names, no refences - and not mine.
    E ENOTTY

    Well, this is keeping with kernel C style, since having one exit point is a well established pattern (not only) there; it makes it easier to argue about the correctness no matter eventual compiler warnings.

    The Weird and The Wonderful beta-testing

  • Developer whose first language is not English
    E ENOTTY

    Yeah, it really should have been:

    count(usr.usr_id) AS NumberOfOrphanedCunts

    Always strive to make the intent clear. The real weird thing is however the nullable foreign key.

    The Weird and The Wonderful asp-net com

  • No names, no refences - and not mine.
    E ENOTTY

    :doh: Actually, jumping out of complicated nested code via goto to an error label is fine in the kernel; what did you expect, setjmp/longjmp? For your enlightenment: http://eli.thegreenplace.net/2009/04/27/using-goto-for-error-handling-in-c/[^]

    The Weird and The Wonderful beta-testing

  • OO-DBMS
    E ENOTTY

    I do need OPP. Just saying.

    The Lounge question

  • Still people are happy with IE6
    E ENOTTY

    "No man, no problem."

    The Lounge com

  • Best Practices turned into Coding Horrors.
    E ENOTTY

    Also you can fake multiline strings (in VB.NET, say) with an inline XML document, of which the text is then converted to a string.

    The Weird and The Wonderful database

  • Direct me to USB
    E ENOTTY

    Well, Universal Short Bus is on topic in Hardware & Devices. As you've already been told.

    The Weird and The Wonderful com design architecture
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups