The difference will be measureable.
2089 Replies - 87854 Views - Last Post: 08 January 2015 - 02:02 PM
#1802
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.
#1803
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
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
#1804
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.
Also, I haven't been on here for a while so browsing forums a bit.
#1805
Re: What are you working on today?
Posted 08 December 2014 - 12:26 PM
work and more work
#1806
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...
#1807
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:
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
/(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
#1808
Re: What are you working on today?
Posted 08 December 2014 - 12:59 PM
I'm using
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
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 ittroubleshooting 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
#1809
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.
#1810
Re: What are you working on today?
Posted 08 December 2014 - 01:13 PM
A decoupage beaver... the mind boggles.
#1811
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.
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
#1812
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.
More Cognos Reports
Possibly back to the Dragon this afternoon.
#1813
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
yes i do love caps
#1814
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.
I should mention I have a maximum price set on my watch list.

New Topic/Question
This topic is locked






MultiQuote







|