try another color:

 
try another fontsize: tiny small normal big huge
netsperience 2.x
web development, web site design, seo and smo

RSS Reader

David Klein Is on a search for people with Data Center Management experience - NYC & NJ

LinkedIn Network Updates - 1 hour 8 min ago
David Klein Is on a search for people with Data Center Management experience - NYC & NJ

David Klein Is on a search for Java and C++ developers with experience developing high high-performance, multi-threaded applications – location CT..

LinkedIn Network Updates - 1 hour 9 min ago
David Klein Is on a search for Java and C++ developers with experience developing high high-performance, multi-threaded applications – location CT..

David Klein Contact me if you’re a junior level production support engineer involved with improving/refining, monitoring and supporting network technologies in a and want to make a jump to a top hedge fund - NYC

LinkedIn Network Updates - 1 hour 9 min ago
David Klein Contact me if you’re a junior level production support engineer involved with improving/refining, monitoring and supporting network technologies in a and want to make a jump to a top hedge fund - NYC

Tanya Strigach shared a link (http://bit.ly/dtDAN2)

LinkedIn Network Updates - 1 hour 17 min ago
Tanya Strigach And lots of boys in tech now 2 RT @tanyastrigach: Thx @tommj 4 tagging me in this photo from the @GITnyc Happy Hour :) http://bit.ly/dtDAN2

Welcome to Facebook | Facebook m.facebook.com
Facebook helps you connect and share with the people in your life.

Paul Everson is now connected to Hans De Wit (Responsable ICT at Swagelok Belgium - Belgian Fluid System Technologies BVBA)

LinkedIn Network Updates - 2 hours 26 min ago
Paul Everson is now connected to Hans De Wit (Responsable ICT at Swagelok Belgium - Belgian Fluid System Technologies BVBA)

I need a video hosting, streaming and upload solution

LinkedIn Web Development Q&A - 2 hours 34 min ago
Hi Hoping someone can recommend a good solution. Here is what I need: * white label video and audio upload, hosting and streaming solution. * client wants to sell their own video ad inventory against the video streams but would likely also be willing to participate in an ad network to run ads for unsold inventory. Same goes for the audio streams. * the stream volume will not be that high. Under 1 million streams per month. I have read some posts on here and it sounds like Kickapps, Brigh ...
Categories: LinkedIn

Minjuan Wang has updated their current title to Designer/consultant at Creative Science Inc.

LinkedIn Network Updates - 2 hours 38 min ago
Minjuan Wang has an updated profile:
  • Minjuan has updated their current title to Designer/consultant at Creative Science Inc.
  • Minjuan updated Experience

See Minjuan's profile

Adding Natural Numbers

dzone code snippets - 2 hours 42 min ago
I'm trying to work through Project Euler in Clojure. Maybe that will help me figure Clojure out. I included my test cases, because I think that helps show my thinking about things.

This didn't take me nearly as long as my last example. Hurray for me!


;; Goal -- add all sums <=1000 that are divisible by 3 or 5
;; with more than a little help from:
;; http://clojure.roboloco.net/?p=11

(ns squarepegsystems.naturalsums
(:use clojure.test))

(defn divisible [ little big]
(=(mod big little) 0)
)

(defn multiple-3-or-5 [value]
(or (divisible 5 value)
(divisible 3 value)
)
)

(deftest testdiv
(is (= true (divisible 1 1)))
(is (= true (divisible 1 1)))
(is (= false (divisible 2 3)))
(is (= true (divisible 2 4)))
(is (= false (divisible 4 2)))
)

(deftest testmultiple-3-or-5
(is (= true (multiple-3-or-5 5)))
(is (= true (multiple-3-or-5 15)))
(is (= true (multiple-3-or-5 3)))
(is (= true (multiple-3-or-5 9)))
)

(deftest testfilter
(is(=() (filter #(divisible 5 %) [1 2 3 4])))
(is(= [10 15 20] (filter #(divisible 5 %) [10 15 20])))
)

;(run-tests)
(prn (reduce +(filter #(multiple-3-or-5 %) (range 1000))))

Syndicate content