Gmail Calendar Documents Reader Web more »
Recently Visited Groups | Help | Sign in
Google Groups Home
Scala lists on Twitter
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  2 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Dave Briccetti  
View profile  
 More options Oct 18, 11:23 pm
From: Dave Briccetti <da...@davebsoft.com>
Date: Sun, 18 Oct 2009 20:23:08 -0700 (PDT)
Local: Sun, Oct 18 2009 11:23 pm
Subject: Scala lists on Twitter
You may have heard of Twitter’s new Lists feature. If you don’t see
the feature, then hopefully Twitter will turn it on for you soon.

I have a large list of Scala people: http://twitter.com/dcbriccetti/scala

Should you be on it? If so, please send me your Twitter handle
privately.

Michael Galpin has this list: http://twitter.com/michaelg/scala-programmers
Tyler Weir has this list: http://twitter.com/tylerweir/scala

If I may toot TalkingPuffin’s horn a bit, here is a video of
TalkingPuffin showing all of Robert Scobleizer’s lists on a 30 inch
screen:
http://www.youtube.com/watch?v=NUVDP5sX2rA

And so that I don’t end the post with no Scala code, here’s the simple
window tiler that used to place all 15 lists. Note the use of
java.util.concurrent.atomic.AtomicInteger, since all the lists are
fetched in parallel.

  class Tiler(numTiles: Int) {
    val dim = Toolkit.getDefaultToolkit().getScreenSize()
    val cols = Math.sqrt(numTiles.toDouble).ceil.toInt
    val h = dim.height / cols
    val w = dim.width / cols
    var index = new AtomicInteger(0)

    def next: Point = {
      val i = index.getAndIncrement
      val row = i / cols
      val col = i % cols
      new Point(col * w, row * h)
    }
  }


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dave Briccetti  
View profile  
 More options Oct 22, 12:33 am
From: Dave Briccetti <da...@davebsoft.com>
Date: Wed, 21 Oct 2009 21:33:37 -0700 (PDT)
Local: Thurs, Oct 22 2009 12:33 am
Subject: Re: Scala lists on Twitter
    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google