What are you working on today?

  • (104 Pages)
  • +
  • « First
  • 29
  • 30
  • 31
  • 32
  • 33
  • Last »

1559 Replies - 56184 Views - Last Post: 09 September 2016 - 12:55 AM

#451 Brokenprogrammer   User is offline

  • D.I.C Head

Reputation: 21
  • View blog
  • Posts: 113
  • Joined: 05-January 16

Re: What are you working on today?

Posted 11 July 2016 - 07:28 AM

Tomorrow i get the results from my application to university. So tomorrow i get to know if i will be studying Computer Science or not!
Wish me luck! :sweatdrop:
Was This Post Helpful? 0
  • +
  • -

#452 jon.kiparsky   User is offline

  • Beginner
  • member icon


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

Re: What are you working on today?

Posted 11 July 2016 - 07:36 AM

Luck? No luck involved - you'll do fine. Have fun!

Onboarding the new dev today, which is exciting.
Was This Post Helpful? 0
  • +
  • -

#453 rgfirefly24   User is offline

  • D.I.C Lover
  • member icon


Reputation: 473
  • View blog
  • Posts: 2,222
  • Joined: 07-April 08

Re: What are you working on today?

Posted 11 July 2016 - 07:39 AM

View Postmodi123_1, on 11 July 2016 - 09:20 AM, said:

View Postrgfirefly24, on 11 July 2016 - 09:18 AM, said:

[...]died for the 2nd year in a row on the titanic. [...]

Care to 'splain, Lucy?


lol, sure. Over in Pigeon Forge, TN there is a large Titanic museum. One of the "Fun" things they do is give each person an identity of someone who was aboard the titanic in some capacity. Then as you get toward the end they have a big wall of those who survived and those who died. Both of the identities I got this year and last year went down with the ship. This year I was one of the officers in the crew. Last year I was a 3rd class Irish passenger.
Was This Post Helpful? 0
  • +
  • -

#454 depricated   User is offline

  • Nero


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

Re: What are you working on today?

Posted 11 July 2016 - 08:13 AM

View Postrgfirefly24, on 11 July 2016 - 10:39 AM, said:

Last year I was a 3rd class Irish passenger.


Shouldn't have had that fling with that selfish English brat, there was plenty of room for you on that flotsam she survived on.
Was This Post Helpful? 0
  • +
  • -

#455 modi123_1   User is online

  • Suitor #2
  • member icon



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

Re: What are you working on today?

Posted 11 July 2016 - 08:30 AM

Please tell me you had someone in your party yell - "Ohh '3rd-class-Irish-passenger', draw me like one of your D.I.C. girls!".

Spoiler

Was This Post Helpful? 0
  • +
  • -

#456 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 11 July 2016 - 09:03 AM

Bored. Waiting on estimates for the brake repair, I will probably get to the pi updates I need to make, just to get them out of the way. Being home, I may work on my accounting system that I have been ignoring. It is trivial until December, but vital at that point so I don't have to individually contact my clients. Probably not the best thing to say, but it's true.


I guess I will just screw around and play with Symfony 3.
Was This Post Helpful? 0
  • +
  • -

#457 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 11 July 2016 - 09:40 AM

I've written more javascript in the last 4 hours than I've written in the last 4 years. My brain hurts.
Was This Post Helpful? 3
  • +
  • -

#458 Nitewalkr   User is offline

  • D.I.C Lover

Reputation: 149
  • View blog
  • Posts: 1,045
  • Joined: 17-November 10

Re: What are you working on today?

Posted 11 July 2016 - 10:01 AM

Good Ghaad you are talking in Javascript now.
Was This Post Helpful? 0
  • +
  • -

#459 lordofduct   User is offline

  • I'm a cheeseburger
  • member icon


Reputation: 2668
  • View blog
  • Posts: 4,786
  • Joined: 24-September 10

Re: What are you working on today?

Posted 11 July 2016 - 10:48 AM

Rewriting a "*.vmd", it's a file format that is used by Interfaceware Iguana to parse HL7 to and from a database.

You can write python in it for scripting purposes.

This... this is the sort of code I'm reading right now.

SPECSRC = value
SpecSource = SPECSRC
   
value = value.replace('&', '')
value = value.replace("&", "")
value = value.replace('$', '')
value = value.replace('!','^')



I WANT TO SCREAM!

SPECSRC is a global string that this locally scoped sets to the current value.
SpecSource is ALSO a global string... you know for the places in the *.vmd where one doesn't want to write SPECSRC.
And lets make sure to remove all "&" and '&'s... just in case.

[edit]

OMFG, I found where both of those globals get used.

1 place elsewhere in the *.vmd....

if resultheader=="Material Submitted" and value=="":
   value=SPECSRC
elif (resultheader=="Final Diagnosis" or resultheader=="IMP") and recfacid == "**redacted for anonymity**":
   value = SpecSource + ": " + value



::head explodes::

This post has been edited by lordofduct: 11 July 2016 - 10:54 AM

Was This Post Helpful? 1
  • +
  • -

#460 rgfirefly24   User is offline

  • D.I.C Lover
  • member icon


Reputation: 473
  • View blog
  • Posts: 2,222
  • Joined: 07-April 08

Re: What are you working on today?

Posted 11 July 2016 - 11:04 AM

I feel for you LOD, I deal with X12 and HL7 daily. I have used a program called X12Parser which if used in code pukes because the ISA segment is "Too Short", but if I call it as a process passing it the exact same file it succeeds. I'll have to take a look at Iguana to see if it'll work for what I'm after now.

View Postmodi123_1, on 11 July 2016 - 10:30 AM, said:

Please tell me you had someone in your party yell - "Ohh '3rd-class-Irish-passenger', draw me like one of your D.I.C. girls!".

my party consisted of Me, My wife, and my two young girls... so No, not in public at least. However, once the kids are in bed...
Was This Post Helpful? 0
  • +
  • -

#461 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 11 July 2016 - 11:33 AM

I don't remember what system the etl guys use for our processing, other than it used an outdated version of rhino parser.
Was This Post Helpful? 0
  • +
  • -

#462 lordofduct   User is offline

  • I'm a cheeseburger
  • member icon


Reputation: 2668
  • View blog
  • Posts: 4,786
  • Joined: 24-September 10

Re: What are you working on today?

Posted 11 July 2016 - 12:12 PM

View Postrgfirefly24, on 11 July 2016 - 01:04 PM, said:

I feel for you LOD, I deal with X12 and HL7 daily. I have used a program called X12Parser which if used in code pukes because the ISA segment is "Too Short", but if I call it as a process passing it the exact same file it succeeds. I'll have to take a look at Iguana to see if it'll work for what I'm after now.


Ah, another person here who has to wade through the quagmire that is the medical industry... I always had little faith in the bureaucracy of this industry, now that I work in it, I have even less. It is terrifyingly outdated, held together by ducttape, and most annoyingly... everyone involved in it nickles and dimes every little electronic transaction along the way.
Was This Post Helpful? 0
  • +
  • -

#463 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 11 July 2016 - 12:17 PM

So three of us are med. Wonder where everyone else falls?
Was This Post Helpful? 0
  • +
  • -

#464 lordofduct   User is offline

  • I'm a cheeseburger
  • member icon


Reputation: 2668
  • View blog
  • Posts: 4,786
  • Joined: 24-September 10

Re: What are you working on today?

Posted 11 July 2016 - 12:20 PM

Oh, you're med too?

I wasn't sure if you were talking to B9 or something, the mention of rhino (mozilla rhino js parser?) made me think that.
Was This Post Helpful? 0
  • +
  • -

#465 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 11 July 2016 - 12:23 PM

Yep. The rhino parser works in some program that escapes me for eligibility, claims, and hl7 files.
Was This Post Helpful? 0
  • +
  • -

  • (104 Pages)
  • +
  • « First
  • 29
  • 30
  • 31
  • 32
  • 33
  • Last »