In my local language (Bahasa Indonesia) there are no verb-2 or past tense form as time tracker. So, I often forget to use the past form of verb when speaking english. I saw him last night (correct) I see him last night ...
The Archive Base Latest Questions
I am trying to get some information out of TFS. Specifically, for a given user, I would like to get a listing of all changesets with their date and all changed items (bonus points for inline diff). This listing ...
I want add a key up event to every text box element in a table excluding the last text box in each row. The table is dynamic on both axis. The key up event will total the values in all but ...
I am applying for a job as java developer. I programmed some hobby apps in java until 2001, after that I have mostly worked in c++ and other languages. Meanwhile, it feels like java has grown a lot, and there ...
Recently, I’ve got a dangerous idea into my head after reading this blog post. That idea can be expressed like this: I don’t need most of what ...
I have a reporting services project with lots of reports developed in SQL server business intelligence development studio that comes with sql server 2008. I want to deploy these reports to a server that has reporting services 2005 only but ...
I’m working on a project where i find i’m checking for the following in many, many places: if(item.Rate == 0 || item.Rate == null) { } more as a curiousity than anything, what’s the best way to check for both cases? I’ve ...
With all the hype around functional programming, which are the best resources to getting started in functional programming [for a C# programmer]? I am not looking for C# 3.0 language improvements.
It was my understanding that JBossAS 5.x supported EJB3 bean injection in servlets with the @EJB3 annotation. I’m using the default configuration for JBossAS 5.0.1.GA and it’s not working. I’ve added the mappedName argument to the @EJB annotation with the ...
Why is it that if I run my query as a parameterized procedure it runs 10 times faster then if I run it directly as a parameterized query? I’m using the exact same query in both cases, and it doesn’t matter ...
I wrote this – very simple – function, and then wondered does VB have some pre-built functionality to do this, but couldn’t find anything specific. Private Shared Function MakeArray(Of T)(ByVal ParamArray args() As T) As T() Return ...