What are you working on today?

  • (140 Pages)
  • +
  • « First
  • 23
  • 24
  • 25
  • 26
  • 27
  • Last »

2089 Replies - 87861 Views - Last Post: 08 January 2015 - 02:02 PM

#361 depricated   User is offline

  • Nero


Reputation: 2532
  • View blog
  • Posts: 6,273
  • Joined: 13-September 08

Re: What are you working on today?

Posted 08 September 2014 - 04:23 AM

I'm feeling sick :(

and I have a presentation on the new system I've been working on for over a month at 9

Not related, I'm pretty sure I shouldn't have had those buffalo wings after the concert last night.
Was This Post Helpful? 0
  • +
  • -

#362 ybadragon   User is offline

  • Home Owner
  • member icon

Reputation: 571
  • View blog
  • Posts: 2,647
  • Joined: 11-May 12

Re: What are you working on today?

Posted 08 September 2014 - 05:31 AM

Got into work about 15 minutes late because I woke up late after going back to bed and sleeping through my alarm (which gets louder as time passes), when Chelsea woke me up at 5:30 this morning
Was This Post Helpful? 0
  • +
  • -

#363 depricated   User is offline

  • Nero


Reputation: 2532
  • View blog
  • Posts: 6,273
  • Joined: 13-September 08

Re: What are you working on today?

Posted 08 September 2014 - 06:28 AM

Presentation went well, they liked what we've built. Their only nitpick was verbiage and that takes like...10 seconds to change and I don't care about it haha. So that's cool.

Still feeling a little crappy though :(
Was This Post Helpful? 0
  • +
  • -

#364 alapee   User is offline

  • Stressed Out Programmer

Reputation: 239
  • View blog
  • Posts: 2,536
  • Joined: 24-October 13

Re: What are you working on today?

Posted 08 September 2014 - 07:08 AM

Menu Today:
More Learning the ropes
Was This Post Helpful? 0
  • +
  • -

#365 astonecipher   User is offline

  • Enterprise Software Architect
  • member icon

Reputation: 3215
  • View blog
  • Posts: 12,098
  • Joined: 03-December 12

Re: What are you working on today?

Posted 08 September 2014 - 07:55 AM

Exploring other CMS's to hopefully, move my company away from all off the WordPress sites.
Was This Post Helpful? 0
  • +
  • -

#366 modi123_1   User is online

  • Suitor #2
  • member icon



Reputation: 16481
  • View blog
  • Posts: 65,328
  • Joined: 12-June 08

Re: What are you working on today?

Posted 08 September 2014 - 08:14 AM

All to drupal?!
Was This Post Helpful? 0
  • +
  • -

#367 depricated   User is offline

  • Nero


Reputation: 2532
  • View blog
  • Posts: 6,273
  • Joined: 13-September 08

Re: What are you working on today?

Posted 08 September 2014 - 09:19 AM

Not gonna lie, I'm a fan of Drupal. It's pretty tits.
Was This Post Helpful? 0
  • +
  • -

#368 alapee   User is offline

  • Stressed Out Programmer

Reputation: 239
  • View blog
  • Posts: 2,536
  • Joined: 24-October 13

Re: What are you working on today?

Posted 08 September 2014 - 09:27 AM

Cognos is actually a very interesting program.
Was This Post Helpful? 0
  • +
  • -

#369 astonecipher   User is offline

  • Enterprise Software Architect
  • member icon

Reputation: 3215
  • View blog
  • Posts: 12,098
  • Joined: 03-December 12

Re: What are you working on today?

Posted 08 September 2014 - 10:28 AM

I won't do an all to anything. Lumping everything on WordPress where it is more suited elsewhere irritates me, however. WordPress here, Drupal there, and whatever else best suites the site is what I prefer.
Was This Post Helpful? 0
  • +
  • -

#370 ybadragon   User is offline

  • Home Owner
  • member icon

Reputation: 571
  • View blog
  • Posts: 2,647
  • Joined: 11-May 12

Re: What are you working on today?

Posted 08 September 2014 - 01:08 PM

I've been working on an XML serialization issue pretty much all day. I'm making a request to an outside web service and the data I've been getting back hasn't been consistent on 2 of the objects kept throwing an error saying system.string cannot be converted to classes.Value (Value is the name of a class that comes from the json string they return). So I changed the object to a string[] instead of a Value[]. well that threw an error when running the original request (different product) so I ended up just saying screw it and set it to an object[] then punched my EZ button.

    public class Colors
    {

        [JsonProperty("Values")]
        //string causes error with tumbler, Value causes error with towel
        public object[] Values { get; set; }
        //[JsonProperty("Values")]
        //public string[] Values { get; set; }
        //[JsonProperty("Values")]
        //public Value[] Values { get; set; }
    }

    public class Value
    {

        [JsonProperty("Name")]
        public string Name { get; set; }

        [JsonProperty("ImageUrl")]
        public string ImageUrl { get; set; }

        [JsonProperty("Charges")]
        public Charge[] Charges { get; set; }

        [JsonProperty("$index")]
        public int Index { get; set; }
    }


Was This Post Helpful? 0
  • +
  • -

#371 alapee   User is offline

  • Stressed Out Programmer

Reputation: 239
  • View blog
  • Posts: 2,536
  • Joined: 24-October 13

Re: What are you working on today?

Posted 09 September 2014 - 06:37 AM

Menu Today:
More Cognos and CX training
Meetings,Meetings,Meetings
Was This Post Helpful? 0
  • +
  • -

#372 depricated   User is offline

  • Nero


Reputation: 2532
  • View blog
  • Posts: 6,273
  • Joined: 13-September 08

Re: What are you working on today?

Posted 09 September 2014 - 06:41 AM

Everything worked when I went home yesterday.

Came in this morning, nothing works.

What the hell...

I didn't update my source, database, anything. And it's not like it's even a sensical form of not functioning. It's like the computer is tripping over its own feet. If I walk it through slowly it works, step by step. But if I let it run it starts crapping out null values.

PC LOAD LETTER
Was This Post Helpful? 0
  • +
  • -

#373 DarenR   User is offline

  • D.I.C Lover

Reputation: 793
  • View blog
  • Posts: 5,094
  • Joined: 12-January 10

Re: What are you working on today?

Posted 09 September 2014 - 06:51 AM

trying to fix everything
Was This Post Helpful? 0
  • +
  • -

#374 no2pencil   User is offline

  • Professor Snuggly Pants
  • member icon

Reputation: 6968
  • View blog
  • Posts: 31,958
  • Joined: 10-May 07

Re: What are you working on today?

Posted 09 September 2014 - 06:51 AM

View Postdepricated, on 09 September 2014 - 09:41 AM, said:

PC LOAD LETTER


LP0 is on fire
Was This Post Helpful? 0
  • +
  • -

#375 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 09 September 2014 - 06:51 AM

I puked this morning. Not sick, it's just apparently what happens when I've held an iron pill in my mouth for too long. Lovely way to start the day.

As for what I'm working on, however, I'm playing catch-up on all the update and modification requests that flooded my inbox while I was out of the office yesterday.
Was This Post Helpful? 0
  • +
  • -

  • (140 Pages)
  • +
  • « First
  • 23
  • 24
  • 25
  • 26
  • 27
  • Last »