Viewing 15 posts - 121 through 135 (of 160 total)
Michael Valentine Jones (5/24/2012)
Brevity and obscurity
declare @ char(3)
set @=0
while @<100
begin
set @=@+1
case when @%15=0 then 'FizzBuzz'
when @%3=0 then 'Fizz'
when @%5=0 then 'Buzz'
else @ end
end
I didn't realize that you didn't need any...
June 5, 2012 at 6:03 am
I definitely fall under option A. I love going to work every morning. The commute is about half of what I had a few years ago, plus I...
June 4, 2012 at 8:35 am
allmhuran (5/22/2012)
EXCEL BASED SOLUTIONSOPTION: use query engine in excel to pull data from server
ISSUES: requires development of a lot of "front ends" (different excel files), no centrally managed code base
This...
May 23, 2012 at 6:07 am
adb2303 (5/21/2012)
Out of curiosity, why do you dislike synonyms?
May 23, 2012 at 5:48 am
Chris Hamam (5/17/2012)
LightVader (5/17/2012)
Chris Hamam (5/17/2012)
From my experience, starting someone as a freelance contractor makes far more sense to me.
That's how I was hired most recently, only they called me...
May 18, 2012 at 6:21 am
Chris Hamam (5/17/2012)
From my experience, starting someone as a freelance contractor makes far more sense to me.
That's how I was hired most recently, only they called me a temp employee....
May 17, 2012 at 6:59 am
I've recently seen a system that used "prime factors" to determine permissions. Maybe the vendor is using a similar idea.
CREATE TABLE #roles (
roleID INT,
roleName VARCHAR(50)
)
INSERT INTO #roles (roleID, roleName)...
May 14, 2012 at 11:30 am
David Burrows (5/1/2012)
Born a developer.Live a developer.
Retire a developer.
Die a developer.
Change job?
meh
+1
May 1, 2012 at 7:16 am
We have one database that we'll be migrating from 2005 to 2012 this year and another that we'll be migrating to 2008R2. Aside from those two, the rest of...
April 30, 2012 at 5:44 am
I love my job and my company. I haven't been in the industry for long, but I expect to stay in it for a while. I love coding...
April 27, 2012 at 7:26 am
Jeff Moden (3/19/2012)
Seeing virtually any type of decent formatted code is a joy ... 😀
+1
My coworkers laugh at me because before I'll even begin troubleshooting their code, I'll format...
March 20, 2012 at 6:30 am
JJ B (11/14/2011)
I also think this is a walking advertisement for thoroughly documenting the "why" of code as much...
November 15, 2011 at 5:46 am
I try not to criticize code too much. I know that I'm still early in my career and my ways are definitely not always the best way.
I...
November 14, 2011 at 7:18 am
IceDread (9/20/2011)
September 20, 2011 at 5:52 am
Steve Jones - SSC Editor (9/9/2011)
I would argue that US colleges don't teach an ultra liberalist point of view. They seek to teach a broad range of subjects. I'm not...
September 9, 2011 at 10:23 am
Viewing 15 posts - 121 through 135 (of 160 total)