# Fuckin A what a day.

**URL:** https://forums.speedlife.net/t/fuckin-a-what-a-day/69271
**Category:** NYSpeed Off Topic
**Created:** [June 16, 2009, 8:01pm UTC](https://forums.speedlife.net/t/fuckin-a-what-a-day/69271 "2009-06-16T20:01:57Z")
**Posts on this page:** 20
**Page:** 1

<div class="post-metadata">

### Author: ![Fry](https://yyz2.discourse-cdn.com/flex034/user_avatar/forums.speedlife.net/fry/32/7284_2.png) [@Fry](https://forums.speedlife.net/u/Fry)
#### Post date: [June 16, 2009, 8:01pm UTC](https://forums.speedlife.net/t/fuckin-a-what-a-day/69271/1 "2009-06-16T20:01:57Z")

</div>

Cliffs: I snatched over 600 engineering hours worth of my work from the jaws of death with 6 hours to spare today.

Full text:

I’ve been working on one project all spring. All new control system for one of our plants. There was one last technical challenge that I’ve been working on for weeks and concluded was impossible. Nobody was any help. Senior consultants had nothing. Engineers at the vendor offered wild ass “maybe” solutions. Last week I taught myself HTML, javascript, and java chasing a solution. No progress. I was out of time and out of ideas.

I’m supposed to go deploy it at a high visibility new plant in like 5 days. It was part of a 2 year 5 million dollar product line re-do. Like, the CEO and Executive VP are very interested in this project. Fucking up would be a severe CLM.

It looked impossible. At 8AM today I called a 4pm meeting to tell all the interested parties that we’re fucked and have to go back to the old system because the new one doesn’t have the capabilities that we were sold it as having.

But I couldn’t let it go. If I’m going to let my last 3 months of work go down in flames it’s going to be kicking and screaming. I took a step back, deep breath, and went back to the basics. Started at square one. What do I fundamentally need? What tools are at my disposal? How creative can I get?

11AM I had a goddamned breakthrough, like I cracked the fucking Da Vinci code. TPGSR is the only one who would understand what I did so I’ll save it for now. Long story short I got creative with html and ladder logic and managed to display 4000 data points in an organized html table in under 2kb without indirect addressing in a javascript loop because that didn’t work for dick squat.

My meeting went flip mode from “We’re fucked and here’s why” to “I’m the smartest man alive and here’s why we golden for next week.”

Fuckin A bubba. Goddamn success feels good. Days like today remind me why you should do what you enjoy and don’t worry about the money.

Details for tpgsr and any other potential uber-nerds:

I’ve got a Spectrum Controls Webport interfacing with a SLC 5/05 processor in a SLC500 rack. 99% of my OIU can be done under the ~500 tag limit of the Webport.

However I have 2 functions that essentially need to quickly/easily display about 30 data points on a cyclic basis. I.E. a scrolling text box that can write a line of data either every process cycle (20 sec) or every 1/4 second. The process one needs to display at least the last 10 cycles, the 1/4 second function needs to display the last 60 seconds.

So, my first instinct is 60 tags total and a live wrapping text box. I think you probably understand what I’m getting at. Write the 30 points, go to the next line, write them again, repeat 20 or 240 times. Well the webport doesn’t have that capability. So I tried javascript with a for (i=0, i\<241, i++) loop. Dur. HTML only executes when it is loading in the browser. That won’t work. So I tried to learn Java. What a clusterfuck.

So using 60 tags and a live wrapping text box was out. So I found the custom web page hosting capability of the SLC 5/05. Sweet! I’ll just fill up a bunch of fucking data tables and display them. I was golden until I stubbed my dick on the 2kb html file limit.

Again I was fucked. Tried a bunch of shit. Got nowhere. Got in way over my head unpacking jar files and decompiling \*.class files trying to learn how Spectrum does it in their Java program. Fuck I can’t even run Java in internut exploder now. I have to use an alternate browser. I screwed up something while having some command line fun.

Finally I got it. The tag addressing functionality in the SLC 5/05 lets you specify a start word and how many consecutive words to display. I have a seperate data file for every real life piece of data I’m gathering and log it historically in the SLC. Then in a custom HTML page I say “Start with F132:0, show the next 255 words.” I place that tag/command into an HTML cell, specify a fixed column width to make it wrap after every word, and presto motherfuckingchango I have a perfect data table organizing 4000 data points in under 2kb without any loop commands.

Did I mention that I barely passed C++ in college because programming is NOT my strong point?

Fuck. I am a god among advanced control system engineers.

---

<div class="post-metadata">

### Author: ![Willybeen](https://yyz2.discourse-cdn.com/flex034/user_avatar/forums.speedlife.net/willybeen/32/7351_2.png) [@Willybeen](https://forums.speedlife.net/u/Willybeen)
#### Post date: [June 16, 2009, 8:05pm UTC](https://forums.speedlife.net/t/fuckin-a-what-a-day/69271/2 "2009-06-16T20:05:26Z")

</div>

:tup:

thank goodness for cliffs :-p

---

<div class="post-metadata">

### Author: ![copperlegend](https://yyz2.discourse-cdn.com/flex034/user_avatar/forums.speedlife.net/copperlegend/32/7445_2.png) [@copperlegend](https://forums.speedlife.net/u/copperlegend)
#### Post date: [June 16, 2009, 8:06pm UTC](https://forums.speedlife.net/t/fuckin-a-what-a-day/69271/3 "2009-06-16T20:06:26Z")

</div>

I have no idea what most of that means, but I know the feeling when I have a major breakthrough. Go you!

---

<div class="post-metadata">

### Author: ![EvilJay](https://avatars.discourse-cdn.com/v4/letter/e/a5b964/32.png) [@EvilJay](https://forums.speedlife.net/u/EvilJay)
#### Post date: [June 16, 2009, 8:09pm UTC](https://forums.speedlife.net/t/fuckin-a-what-a-day/69271/4 "2009-06-16T20:09:27Z")

</div>

But what have you done within the last hour? This is old news Fry.

---

<div class="post-metadata">

### Author: ![Fry](https://yyz2.discourse-cdn.com/flex034/user_avatar/forums.speedlife.net/fry/32/7284_2.png) [@Fry](https://forums.speedlife.net/u/Fry)
#### Post date: [June 16, 2009, 8:13pm UTC](https://forums.speedlife.net/t/fuckin-a-what-a-day/69271/5 "2009-06-16T20:13:32Z")

</div>

> [@EvilJay](#):
>
> But what have you done within the last hour? This is old news Fry.

Drank a glass of Rebel Yell and rubbed one out. :zong: I am still the greatest man alive.

---

<div class="post-metadata">

### Author: ![EvilJay](https://avatars.discourse-cdn.com/v4/letter/e/a5b964/32.png) [@EvilJay](https://forums.speedlife.net/u/EvilJay)
#### Post date: [June 16, 2009, 8:16pm UTC](https://forums.speedlife.net/t/fuckin-a-what-a-day/69271/6 "2009-06-16T20:16:27Z")

</div>

> [@Fry](#):
>
> Drank a glass of Rebel Yell and rubbed one out. :zong: I am still the greatest man alive.

well now you are…

P.S. Your cliffs should be “I accidentally a C++”

---

<div class="post-metadata">

### Author: ![justint](https://avatars.discourse-cdn.com/v4/letter/j/3da27b/32.png) [@justint](https://forums.speedlife.net/u/justint)
#### Post date: [June 16, 2009, 10:02pm UTC](https://forums.speedlife.net/t/fuckin-a-what-a-day/69271/7 "2009-06-16T22:02:39Z")

</div>

Haha I actually understood some of that. I guess I did learn something at RIT after all. Working as a software engineer helps a little too. Java isn’t too bad, C and C++ are much harder to learn IMO. Once you get the basic of programming down though (loops, structures, collections etc), learning a new language isn’t too bad.

Congrats on your break through though, it is a great feeling.

---

<div class="post-metadata">

### Author: ![Penfold](https://yyz2.discourse-cdn.com/flex034/user_avatar/forums.speedlife.net/penfold/32/5007_2.png) [@Penfold](https://forums.speedlife.net/u/Penfold)
#### Post date: [June 16, 2009, 10:08pm UTC](https://forums.speedlife.net/t/fuckin-a-what-a-day/69271/8 "2009-06-16T22:08:01Z")

</div>

For a moment after reading the beginning I was thinking you maybe figured out how to turn hydrogen into gold.

:tup: anyway.

---

<div class="post-metadata">

### Author: ![Carnut](https://yyz2.discourse-cdn.com/flex034/user_avatar/forums.speedlife.net/carnut/32/7590_2.png) [@Carnut](https://forums.speedlife.net/u/Carnut)
#### Post date: [June 16, 2009, 10:20pm UTC](https://forums.speedlife.net/t/fuckin-a-what-a-day/69271/9 "2009-06-16T22:20:01Z")

</div>

> [@Fry"](#):
>
> Fuckin A bubba. Goddamn success feels good. Days like today remind me why you should do what you enjoy and don’t worry about the money

Most important part of the post.

Congratulations on your success.

---

<div class="post-metadata">

### Author: ![ultradriver10000](https://yyz2.discourse-cdn.com/flex034/user_avatar/forums.speedlife.net/ultradriver10000/32/7397_2.png) [@ultradriver10000](https://forums.speedlife.net/u/ultradriver10000)
#### Post date: [June 16, 2009, 11:48pm UTC](https://forums.speedlife.net/t/fuckin-a-what-a-day/69271/10 "2009-06-16T23:48:47Z")

</div>

> [@Carnut](#):
>
> Most important part of the post.
> 
> Congratulations on your success.

+1 congrats man!

---

<div class="post-metadata">

### Author: ![justa4door](https://yyz2.discourse-cdn.com/flex034/user_avatar/forums.speedlife.net/justa4door/32/7259_2.png) [@justa4door](https://forums.speedlife.net/u/justa4door)
#### Post date: [June 17, 2009, 4:19am UTC](https://forums.speedlife.net/t/fuckin-a-what-a-day/69271/11 "2009-06-17T04:19:34Z")

</div>

she have better gave you head last night… that would have been some of the best you have had

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex034/uploads/speedlife/original/2X/b/b7170c8eddc0b95ece6b88172b2f416a08489a45.png) [@system](https://forums.speedlife.net/u/system)
#### Post date: [June 17, 2009, 4:42am UTC](https://forums.speedlife.net/t/fuckin-a-what-a-day/69271/12 "2009-06-17T04:42:30Z")

</div>

> [@justa4door](#):
>
> she have better gave you head last night… that would have been some of the best you have had

and you would know becausssse?..:mamoru:🦨:cky:

Fry, I am by no means a computer guy but what you said made some sense. Congrats:tup:

---

<div class="post-metadata">

### Author: ![LAFENGAS](https://yyz2.discourse-cdn.com/flex034/user_avatar/forums.speedlife.net/lafengas/32/7573_2.png) [@LAFENGAS](https://forums.speedlife.net/u/LAFENGAS)
#### Post date: [June 17, 2009, 5:09am UTC](https://forums.speedlife.net/t/fuckin-a-what-a-day/69271/13 "2009-06-17T05:09:04Z")

</div>

congrats.

now welcome to the life of an engineer and get back to work. 😉

---

<div class="post-metadata">

### Author: ![Joe](https://yyz2.discourse-cdn.com/flex034/user_avatar/forums.speedlife.net/joe/32/7219_2.png) [@Joe](https://forums.speedlife.net/u/Joe)
#### Post date: [June 17, 2009, 5:39am UTC](https://forums.speedlife.net/t/fuckin-a-what-a-day/69271/14 "2009-06-17T05:39:34Z")

</div>

![http://humour.200ok.com.au/img/pancake_bunny.jpg](http://humour.200ok.com.au/img/pancake_bunny.jpg)

Does the plane take off?

---

<div class="post-metadata">

### Author: ![Fry](https://yyz2.discourse-cdn.com/flex034/user_avatar/forums.speedlife.net/fry/32/7284_2.png) [@Fry](https://forums.speedlife.net/u/Fry)
#### Post date: [June 17, 2009, 5:43am UTC](https://forums.speedlife.net/t/fuckin-a-what-a-day/69271/15 "2009-06-17T05:43:24Z")

</div>

> [@LAFENGAS](#):
>
> congrats.
> 
> now welcome to the life of an engineer and get back to work.

Yep. Basking in the glory was fun for about 5 minutes. Now the real work begins. In before 7 and out just in time to make it to class at 6:30 tonight. Proof-of-concept doesn’t make a plant run…

---

<div class="post-metadata">

### Author: ![drvnkd](https://yyz2.discourse-cdn.com/flex034/user_avatar/forums.speedlife.net/drvnkd/32/109615_2.png) [@drvnkd](https://forums.speedlife.net/u/drvnkd)
#### Post date: [June 17, 2009, 5:44am UTC](https://forums.speedlife.net/t/fuckin-a-what-a-day/69271/16 "2009-06-17T05:44:12Z")

</div>

congrats.

Should have stayed with that Basic module 😃

At least you will be the only one that can fix it in 10 years when it breaks…  
(unless they hire NYspeeders that have read your solution:P)

I don’t feel so bad for having to write PLC data logger code by Friday now…  
All I need to do is learn how to write PLC code this week 😉

---

<div class="post-metadata">

### Author: ![Geoff](https://yyz2.discourse-cdn.com/flex034/user_avatar/forums.speedlife.net/geoff/32/6104_2.png) [@Geoff](https://forums.speedlife.net/u/Geoff)
#### Post date: [June 17, 2009, 5:49am UTC](https://forums.speedlife.net/t/fuckin-a-what-a-day/69271/17 "2009-06-17T05:49:47Z")

</div>

so that’s why you were sprinting down the hallway

---

<div class="post-metadata">

### Author: ![Locutus](https://yyz2.discourse-cdn.com/flex034/user_avatar/forums.speedlife.net/locutus/32/7574_2.png) [@Locutus](https://forums.speedlife.net/u/Locutus)
#### Post date: [June 17, 2009, 6:08am UTC](https://forums.speedlife.net/t/fuckin-a-what-a-day/69271/18 "2009-06-17T06:08:13Z")

</div>

Fry. I had no idea you were so smart… I always envisioned you as fat guy with chips on this belly living with 10 cats in a trailer all while sitting behind a keyboard…

:tspry:

---

<div class="post-metadata">

### Author: ![boardjnky4](https://avatars.discourse-cdn.com/v4/letter/b/96bed5/32.png) [@boardjnky4](https://forums.speedlife.net/u/boardjnky4)
#### Post date: [June 17, 2009, 6:18am UTC](https://forums.speedlife.net/t/fuckin-a-what-a-day/69271/19 "2009-06-17T06:18:08Z")

</div>

I like it.

I love when I finally get shit to work too. People that work in my cube area often hear “HOLY FUCKING SHIT IT WORKED!!!”

The Directors nearby don’t like it so much. I am usually saving their asses though, so they don’t get any say.

---

<div class="post-metadata">

### Author: ![justa4door](https://yyz2.discourse-cdn.com/flex034/user_avatar/forums.speedlife.net/justa4door/32/7259_2.png) [@justa4door](https://forums.speedlife.net/u/justa4door)
#### Post date: [June 17, 2009, 6:30am UTC](https://forums.speedlife.net/t/fuckin-a-what-a-day/69271/20 "2009-06-17T06:30:25Z")

</div>

WHAT ABOUT THE HEAD??? lol

[Next page](https://forums.speedlife.net/t/fuckin-a-what-a-day/69271.md?page=2)
