What are you working on today?

  • (133 Pages)
  • +
  • « First
  • 6
  • 7
  • 8
  • 9
  • 10
  • Last »

1991 Replies - 80162 Views - Last Post: 12 December 2013 - 11:56 AM

#106 modi123_1   User is offline

  • Suitor #2
  • member icon



Reputation: 16479
  • View blog
  • Posts: 65,313
  • Joined: 12-June 08

Re: What are you working on today?

Posted 09 April 2013 - 11:27 AM

As if you can't print those off and use them for a "How not to Style: The Guide, volume 1" so everyone can know why to point and laugh.
Was This Post Helpful? 0
  • +
  • -

#107 BenignDesign   User is offline

  • holy shitin shishkebobs
  • member icon




Reputation: 8384
  • View blog
  • Posts: 12,682
  • Joined: 28-September 07

Re: What are you working on today?

Posted 10 April 2013 - 07:33 AM

This morning, in a fit of PMS-fueled rage coupled with the severe angst-riddled attitude problem of my soon-to-be-12-year-old, I yelled at her for being an "entitled little fucknugget". I'm feeling kind of guilty about that now.

I'm not sure she knows what a "fucknugget" is though. I'm not sure I know what a "fucknugget" is.

I can haz Trailer-Trash-Parent-of-the-Year award now?
Was This Post Helpful? 2
  • +
  • -

#108 jon.kiparsky   User is offline

  • Beginner
  • member icon


Reputation: 12350
  • View blog
  • Posts: 20,984
  • Joined: 19-March 11

Re: What are you working on today?

Posted 10 April 2013 - 07:53 AM

I think there's an opportunity here to demonstrate a little maturity and whatnot.

"I'm sorry I called you a fucknugget. You're not actually a fucknugget. By the way, have you got any idea what a 'fucknugget' might be?"
Was This Post Helpful? 1
  • +
  • -

#109 h4nnib4l   User is offline

  • The Noid
  • member icon

Reputation: 1686
  • View blog
  • Posts: 2,335
  • Joined: 24-August 11

Re: What are you working on today?

Posted 10 April 2013 - 08:52 AM

The guilt I feel for swearing at my kids diminishes each time I do it.

EDIT: Actually, I think I just get better at rationalizing and delaying the guilt...

This post has been edited by h4nnib4l: 10 April 2013 - 08:53 AM

Was This Post Helpful? 0
  • +
  • -

#110 BenignDesign   User is offline

  • holy shitin shishkebobs
  • member icon




Reputation: 8384
  • View blog
  • Posts: 12,682
  • Joined: 28-September 07

Re: What are you working on today?

Posted 10 April 2013 - 11:26 AM

...And now for the finishing up loose ends on data entry and final link checks. Estimated time of launch for this beastly ass site is EOD next Wednesday. So help me if it's put on hold for more focus groups, I'm going to go completely off the deep end a la Britney Spears - shave my head, go on a four day bender, and end up in an institution where all the forks have corks on the end for my own protection.
Was This Post Helpful? 0
  • +
  • -

#111 modi123_1   User is offline

  • Suitor #2
  • member icon



Reputation: 16479
  • View blog
  • Posts: 65,313
  • Joined: 12-June 08

Re: What are you working on today?

Posted 12 April 2013 - 07:40 AM

The current goal - staying awake! The higher ups decided to make waffles, and exquisite breakfast sausages, for everyone this morning. Now most everyone smells of breakfast, my body thinks it is Saturday, and some how I am still at work. ugh.

If I make it to lunch I may try some of this "coffee" I hear people go on about.. It may kick start my awake-a-tude.
Was This Post Helpful? 0
  • +
  • -

#112 BenignDesign   User is offline

  • holy shitin shishkebobs
  • member icon




Reputation: 8384
  • View blog
  • Posts: 12,682
  • Joined: 28-September 07

Re: What are you working on today?

Posted 12 April 2013 - 07:55 AM

Trying to desperately to avoid the vending machine for the next hour. So flippin hungry this morning. And all this talk of waffles and sausage isn't helping any!
Was This Post Helpful? 0
  • +
  • -

#113 [email protected]!l   User is offline

  • D.I.C Head

Reputation: 8
  • View blog
  • Posts: 98
  • Joined: 01-March 11

Re: What are you working on today?

Posted 12 April 2013 - 01:01 PM

Bugs... stupid bugs. I hate having to go back and clean up my own code let alone someone else's scary mess of crap.
Was This Post Helpful? 0
  • +
  • -

#114 ph0z   User is offline

  • New D.I.C Head

Reputation: 1
  • View blog
  • Posts: 15
  • Joined: 10-February 13

Re: What are you working on today?

Posted 15 April 2013 - 01:21 AM

Study and ace my java final :bigsmile:
Was This Post Helpful? 0
  • +
  • -

#115 Sho Ke   User is offline

  • D.I.C Regular
  • member icon

Reputation: 110
  • View blog
  • Posts: 250
  • Joined: 13-October 11

Re: What are you working on today?

Posted 15 April 2013 - 08:40 AM

Working on a project that uses Jobberbase. Geez this thing is a mess! On one of the admin-exclusive areas, there's a switch that determines which template file to load. Something like this:
	switch($page) {
		case 'page1':
			if($_SESSION['isAuthenticated']) {
				require_once('page1.tpl');
				break;
			}
			else die;

		case 'page2':
			if($_SESSION['isAuthenticated']) {
				require_once('page2.tpl');
				break;
			}
			else die;

		case 'page3':
			if($_SESSION['isAuthenticated']) {
				require_once('page3.tpl');
				break;
			}
			else die;
		
		//...
	}



Checking the same session variable every single case.. for a grand total of 30 times. Ugh.
Was This Post Helpful? 0
  • +
  • -

#116 jon.kiparsky   User is offline

  • Beginner
  • member icon


Reputation: 12350
  • View blog
  • Posts: 20,984
  • Joined: 19-March 11

Re: What are you working on today?

Posted 15 April 2013 - 08:57 AM

Oh, my stars and garters. Someone ought to be taken out and beaten soundly.
Was This Post Helpful? 1
  • +
  • -

#117 grandmst   User is offline

  • New D.I.C Head

Reputation: 0
  • View blog
  • Posts: 14
  • Joined: 16-August 12

Re: What are you working on today?

Posted 15 April 2013 - 09:45 AM

WordPress :/

Sent from my GT-N7100
Was This Post Helpful? 0
  • +
  • -

#118 BenignDesign   User is offline

  • holy shitin shishkebobs
  • member icon




Reputation: 8384
  • View blog
  • Posts: 12,682
  • Joined: 28-September 07

Re: What are you working on today?

Posted 17 April 2013 - 03:42 AM

My goal right now is to survive the week... then spend the weekend curled in a fetal position.
Was This Post Helpful? 0
  • +
  • -

#119 CSatVTftw   User is offline

  • New D.I.C Head

Reputation: 4
  • View blog
  • Posts: 42
  • Joined: 16-April 13

Re: What are you working on today?

Posted 17 April 2013 - 06:28 AM

Trying to stay awake in differential equations. Never again am I taking classes before 9am. I need coffee...
Was This Post Helpful? 0
  • +
  • -

#120 jon.kiparsky   User is offline

  • Beginner
  • member icon


Reputation: 12350
  • View blog
  • Posts: 20,984
  • Joined: 19-March 11

Re: What are you working on today?

Posted 17 April 2013 - 06:41 AM

For two years, I had Sanskrit at 7:00 AM... in the prof's office... with one other student in the class, so there was no place to hide.
Was This Post Helpful? 2
  • +
  • -

  • (133 Pages)
  • +
  • « First
  • 6
  • 7
  • 8
  • 9
  • 10
  • Last »