What are you working on today?

  • (140 Pages)
  • +
  • « First
  • 119
  • 120
  • 121
  • 122
  • 123
  • Last »

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

#1801 macosxnerd101   User is offline

  • Games, Graphs, and Auctions
  • member icon




Reputation: 12800
  • View blog
  • Posts: 45,992
  • Joined: 27-December 08

Re: What are you working on today?

Posted 08 December 2014 - 09:44 AM

The difference will be measureable.
Was This Post Helpful? 0
  • +
  • -

#1802 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 December 2014 - 10:51 AM

I was just informed that the Work Flow integration has decided to pull up expired requests and send it to us. I think someone awoke the dragon again, now I have to go get milk and cookies and put back to sleep.
Was This Post Helpful? 0
  • +
  • -

#1803 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 December 2014 - 11:05 AM

I've had this cold for a couple weeks now, over the weekend it kicked back into high gear -.- it sucks. Just a really annoying headcold.

Trying to focus today, can't stay focused on one task very long. I've been trying to write the same function for like 30 minutes :( it should be simple and I just can't even get my head into it. Siiiiiigh
Was This Post Helpful? 0
  • +
  • -

#1804 Invoker   User is offline

  • D.I.C Head
  • member icon

Reputation: 32
  • View blog
  • Posts: 165
  • Joined: 29-April 14

Re: What are you working on today?

Posted 08 December 2014 - 11:19 AM

Creating a Simpsons map in android that uses seekBars to allow the user to change the time of day, which changes the way the environment looks. Its been tedious, but really fun.

Also, I haven't been on here for a while so browsing forums a bit. :)
Was This Post Helpful? 0
  • +
  • -

#1805 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 08 December 2014 - 12:26 PM

work and more work
Was This Post Helpful? 0
  • +
  • -

#1806 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 December 2014 - 12:28 PM

Current conundrum. I'm just going to force users to use our method, but I thought this would be a fun one to toy with for everyone: how many different ways might a user write Care Of in an address and how would you reduce it to a single expression with Regex...
Was This Post Helpful? 0
  • +
  • -

#1807 BetaWar   User is offline

  • #include "soul.h"
  • member icon

Reputation: 1695
  • View blog
  • Posts: 8,592
  • Joined: 07-September 06

Re: What are you working on today?

Posted 08 December 2014 - 12:49 PM

Well, assuming that they can spell the 2 words individually (which I would put as a requirement), then a regex like so would probably work:
/(care(\s)*of)/i


Now, that literally just matches "care of", though it is case-insensitive, and allows for 0 or more space characters to be between "care" and "of". I'd hope that gets most of them :)
Was This Post Helpful? 0
  • +
  • -

#1808 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 December 2014 - 12:59 PM

I'm using

        Private Function PrependCareOf(ByRef careOf As String) As String
            If careOf = String.empty Then
                Return String.empty
            End If

            Return If(StartsWithCareOf(careOf), careOf, "Care Of " & careOf)
        End Function

        Private Function StartsWithCareOf(ByVal careOf As String) As Boolean
            careOf = careOf.ToUpper().Trim()
            careOf = Regex.Replace(careOf, "[^A-Z]", "")

            Return If(careOf.Length >= 5, careOf.Substring(0, 5) = "CAREOF", False)

        End Function
so in theory I might have a user who types "c/o your mom" into the care of field and then gets "Care Of c/o your mom" but whatever, they can edit it

troubleshooting this right now cause it's acting weird and always returning false on careOf.Substring(0, 5) = "CAREOF"

derp, because I forgot how to .Substring. The second value is the number of characters, not the index. hahaha
Was This Post Helpful? 0
  • +
  • -

#1809 modi123_1   User is offline

  • Suitor #2
  • member icon



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

Re: What are you working on today?

Posted 08 December 2014 - 01:10 PM

Today - moping up a large amount of emails from being off work Friday while doodling possible construction options for a foot (or so) tall craft foam beaver that would need to have a hinged access to the guts and be modgepodge coated with christmas paper.
Was This Post Helpful? 0
  • +
  • -

#1810 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 08 December 2014 - 01:13 PM

A decoupage beaver... the mind boggles.
Was This Post Helpful? 0
  • +
  • -

#1811 modi123_1   User is offline

  • Suitor #2
  • member icon



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

Re: What are you working on today?

Posted 08 December 2014 - 01:15 PM

No.. a CHRISTMAS decoupage beaver.

Some days I have a strong desire to get all arts and crafty.

This post has been edited by modi123_1: 08 December 2014 - 01:17 PM
Reason for edit:: made it festive

Was This Post Helpful? 2
  • +
  • -

#1812 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 December 2014 - 07:12 AM

Menu Today:
More Cognos Reports
Possibly back to the Dragon this afternoon.
Was This Post Helpful? 0
  • +
  • -

#1813 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 December 2014 - 07:18 AM

WORKING ON COMBINING 4 DATABASES INTO 1 GLORIOUS DATABASE

yes i do love caps
Was This Post Helpful? 0
  • +
  • -

#1814 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 09 December 2014 - 07:30 AM

I'm going through my personal emails right now, and wondering why my house watcher is sending me emails about lots that cost 5.5 million...literally...it's like "ha ha fuck you you will never be able to afford me, but I'm gonna show up on your watch list just to spite you."

I should mention I have a maximum price set on my watch list.
Was This Post Helpful? 0
  • +
  • -

#1815 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 December 2014 - 08:18 AM

Posted Image
Was This Post Helpful? 0
  • +
  • -

  • (140 Pages)
  • +
  • « First
  • 119
  • 120
  • 121
  • 122
  • 123
  • Last »