• Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
  • Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!

You are not logged in or you do not have permission to access this page. This could be due to one of several reasons:

  • You are not logged in. If you are already registered, fill in the form below to log in, or follow the "Sign Up" link to register a new account.
  • You may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
  • If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.

Previously on "A typical afternoon's work at ThunderCorp"

Collapse

  • threaded
    replied
    Originally posted by zeitghost
    Mmmmmmmmmmmm.

    6303 or Z80 or 6809.

    Mmmmmmmmmmm.

    I didn't understand any of the words in the OP.
    For sheer sexiness you can't beat the 'Novix NC4000' (of which I have one built into a box of Cuban cigars.)

    Leave a comment:


  • NickFitz
    replied
    Originally posted by Sysman View Post
    It's at times like this that I pine for some good old fashioned COBOL
    6502 assembler

    Life was so simple then...

    Leave a comment:


  • Sysman
    replied
    Originally posted by scotspine View Post
    well, neither hib or lucene could reasonably be called obscure. but, they are a tad monolithic and your disco of the ienum parm illustrates the lengths to which these frameworks go to try to be all things to all developers. you could never (ever) call them lightweight! most of what they (claim to) do can be done ordinarily by way of n-tier + sql trad stuff, resulting in faster and more maintainable, less blackbox type code. still, keep up the 'obscure' nomenclature and kerrchingggg



    imho anyway
    It's at times like this that I pine for some good old fashioned COBOL

    Leave a comment:


  • scotspine
    replied
    well, neither hib or lucene could reasonably be called obscure. but, they are a tad monolithic and your disco of the ienum parm illustrates the lengths to which these frameworks go to try to be all things to all developers. you could never (ever) call them lightweight! most of what they (claim to) do can be done ordinarily by way of n-tier + sql trad stuff, resulting in faster and more maintainable, less blackbox type code. still, keep up the 'obscure' nomenclature and kerrchingggg



    imho anyway

    Leave a comment:


  • thunderlizard
    started a topic A typical afternoon's work at ThunderCorp

    A typical afternoon's work at ThunderCorp

    (1) after much soul-searching, decide the best way to get the intersect from my 2 queries (freetext via Lucene, other criteria via Hibernate) is to get the record IDs from the Lucene search then add them into my Hibernate HQL as an extra clause. (for the 95% of people outside this niche, HQL is Hibernate's object querying language that later gets interpreted into vendor-specific SQL; and indeed is itself pretty darn similar to SQL)
    (2) decide that to do it, I need to concatenate my IDs into a HQL "in" clause (which is exactly like SQL's)
    (3) Write a screen of hacky dynamic HQL to do that, taking into account such niceties as null cases, different object subclasses, and batching into manageable chunks.
    (4) Just as it's starting to work, realise there's a HQL parameter type that takes an IEnumerable, and I didn't need to bother with (2) or (3).
    (5) Count myself lucky that I wasn't doing proper TDD like I really should have, because then I would have written twice as much pointless code
    (6) Conclude that next time a client absolutely insists on prior experience of some obscure open-source API, they might have a point.

Working...
X