Age

  • (6 Pages)
  • +
  • 1
  • 2
  • 3
  • 4
  • 5
  • Last »

78 Replies - 5404 Views - Last Post: 27 July 2010 - 01:58 PM

#31 SixOfEleven   User is offline

  • Planeswalker
  • member icon

Reputation: 1055
  • View blog
  • Posts: 6,643
  • Joined: 18-October 08

Re: Age

Posted 28 June 2010 - 06:58 AM

Not as old as PC but close enough. Turned 41 this past February. I think him and I should have wheel chair races some day. :wheelchair: :wheelchair:
Was This Post Helpful? 0
  • +
  • -

#32 modi123_1   User is offline

  • Suitor #2
  • member icon



Reputation: 16479
  • View blog
  • Posts: 65,313
  • Joined: 12-June 08

Re: Age

Posted 28 June 2010 - 07:48 AM

Indeed.. asl everyone!

(totally not this)
Posted Image

This post has been edited by modi123_1: 28 June 2010 - 02:03 PM

Was This Post Helpful? 0
  • +
  • -

#33 Magixion   User is offline

  • D.I.C Addict



Reputation: 26
  • View blog
  • Posts: 634
  • Joined: 12-March 09

Re: Age

Posted 28 June 2010 - 08:30 AM

22! Finished college in December and am now currently doing random contracts and independent jobs.
Was This Post Helpful? 0
  • +
  • -

#34 JackOfAllTrades   User is offline

  • Saucy!
  • member icon

Reputation: 6260
  • View blog
  • Posts: 24,030
  • Joined: 23-August 08

Re: Age

Posted 28 June 2010 - 09:01 AM

I'm as old as PC.
Was This Post Helpful? 0
  • +
  • -

#35 macosxnerd101   User is offline

  • Games, Graphs, and Auctions
  • member icon




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

Re: Age

Posted 28 June 2010 - 09:22 AM

Damn. Now I feel young. I'm 17 and in high school, currently on summer vacation. I start my internship Thursday, and I have summer work for English, AP Physics, and AP Government to do as well.
Was This Post Helpful? 0
  • +
  • -

#36 corliss   User is offline

  • D.I.C Head
  • member icon

Reputation: 4
  • View blog
  • Posts: 198
  • Joined: 25-October 06

Re: Age

Posted 28 June 2010 - 10:43 AM

29 yrs. of age. I am working as the sr. developer at the Lethbridge Fire Department and I am going to university of Lethbridge where I am working on my BSC of Comp. Sci.
Was This Post Helpful? 0
  • +
  • -

#37 nooblet   User is offline

  • D.I.C Addict

Reputation: 120
  • View blog
  • Posts: 541
  • Joined: 12-March 10

Re: Age

Posted 28 June 2010 - 11:42 AM

LOL looks like PC reign as champion on the oldest forefront so far
Was This Post Helpful? 0
  • +
  • -

#38 Raynes   User is offline

  • D.I.C Lover
  • member icon

Reputation: 616
  • View blog
  • Posts: 2,815
  • Joined: 05-January 09

Re: Age

Posted 28 June 2010 - 11:47 AM

View PostDark_Nexus, on 27 June 2010 - 06:24 PM, said:

obligatory xkcd:
Posted Image

Alt text: This is how I explain computer problems to my cat. My cat usually seems happier than me.

moving onto programming joke about humor (this one is in Java, I find that statically typed languages fair best for getting the point across):

Emotion em = emotionMap.get("Humor");
em.invoke();



ok, covered all my bases.


I think you mean explicitly typed languages. If Java had type inference, that wouldn't look any different than the same thing in a dynamic language.

Obligatory Clojure example: ((emotion-map "Humor"))

EDIT: Obviously, it would look like that. That uses higher order functions and not OOP. If I could remember Ruby, I'd provide a Ruby example. I need to re-learn Ruby. :(

This post has been edited by Raynes: 28 June 2010 - 11:51 AM

Was This Post Helpful? 0
  • +
  • -

#39 dorknexus   User is offline

  • or something bad...real bad.
  • member icon

Reputation: 1272
  • View blog
  • Posts: 4,625
  • Joined: 02-May 04

Re: Age

Posted 28 June 2010 - 12:50 PM

View PostRaynes, on 28 June 2010 - 10:47 AM, said:

I think you mean explicitly typed languages. If Java had type inference, that wouldn't look any different than the same thing in a dynamic language.

Obligatory Clojure example: ((emotion-map "Humor"))

EDIT: Obviously, it would look like that. That uses higher order functions and not OOP. If I could remember Ruby, I'd provide a Ruby example. I need to re-learn Ruby. :(


You would be correct! Statically typed would just mean it was checked at compile time where as explicit typing would mean there were explicit type annotations.

In Ruby it would most likely just be a hash like this:
em = emotionMap["Humor"]


This post has been edited by Dark_Nexus: 28 June 2010 - 12:50 PM

Was This Post Helpful? 0
  • +
  • -

#40 eZACKe   User is offline

  • Garbage Collector

Reputation: 120
  • View blog
  • Posts: 1,278
  • Joined: 01-June 09

Re: Age

Posted 28 June 2010 - 01:21 PM

View Postmacosxnerd101, on 28 June 2010 - 12:22 PM, said:

Damn. Now I feel young. I'm 17 and in high school, currently on summer vacation. I start my internship Thursday, and I have summer work for English, AP Physics, and AP Government to do as well.


I feel your pain. Don't know about you but that class was the death of me a couple years back >.<
Was This Post Helpful? 0
  • +
  • -

#41 Raynes   User is offline

  • D.I.C Lover
  • member icon

Reputation: 616
  • View blog
  • Posts: 2,815
  • Joined: 05-January 09

Re: Age

Posted 28 June 2010 - 01:36 PM

View PostDark_Nexus, on 28 June 2010 - 11:50 AM, said:

View PostRaynes, on 28 June 2010 - 10:47 AM, said:

I think you mean explicitly typed languages. If Java had type inference, that wouldn't look any different than the same thing in a dynamic language.

Obligatory Clojure example: ((emotion-map "Humor"))

EDIT: Obviously, it would look like that. That uses higher order functions and not OOP. If I could remember Ruby, I'd provide a Ruby example. I need to re-learn Ruby. :(


You would be correct! Statically typed would just mean it was checked at compile time where as explicit typing would mean there were explicit type annotations.

In Ruby it would most likely just be a hash like this:
em = emotionMap["Humor"]



That's actually what the Clojure example was too. emotion-map is a hashmap, and hashmaps are also functions that look up their argument within themselves and return the value at that key or nil if it doesn't exist. Since I was assuming that the value at the key "Humor" is a function, the outer parens call that function.

I love you. <3
Was This Post Helpful? 0
  • +
  • -

#42 NeoTifa   User is offline

  • NeoTifa Codebreaker, the Scourge of Devtester
  • member icon





Reputation: 4933
  • View blog
  • Posts: 20,259
  • Joined: 24-September 08

Re: Age

Posted 28 June 2010 - 01:47 PM

ggggggggaaaaaaaaaaaaaaaaayyyyyyyyyyyyyyyyyy
Was This Post Helpful? 0
  • +
  • -

#43 KYA   User is offline

  • Wubba lubba dub dub!
  • member icon

Reputation: 3213
  • View blog
  • Posts: 19,241
  • Joined: 14-September 07

Re: Age

Posted 28 June 2010 - 01:52 PM

No: "Microsoft Partnership"
Was This Post Helpful? 0
  • +
  • -

#44 Christoph   User is offline

  • D.I.C Lover
  • member icon

Reputation: 233
  • View blog
  • Posts: 1,559
  • Joined: 23-August 09

Re: Age

Posted 28 June 2010 - 01:55 PM

There ya go KYA, I let you have that one.
Was This Post Helpful? 0
  • +
  • -

#45 KYA   User is offline

  • Wubba lubba dub dub!
  • member icon

Reputation: 3213
  • View blog
  • Posts: 19,241
  • Joined: 14-September 07

Re: Age

Posted 28 June 2010 - 01:56 PM

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

  • (6 Pages)
  • +
  • 1
  • 2
  • 3
  • 4
  • 5
  • Last »