The Artima Developer Community
Sponsored Link

Agile Buzz Forum
whenSelectorsTurnIntoDisertationsAndRunOnAndOnNeverEnding

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
James Robertson

Posts: 29924
Nickname: jarober61
Registered: Jun, 2003

David Buck, Smalltalker at large
whenSelectorsTurnIntoDisertationsAndRunOnAndOnNeverEnding Posted: Oct 7, 2008 1:42 PM
Reply to this message Reply

This post originated from an RSS feed registered with Agile Buzz by James Robertson.
Original Post: whenSelectorsTurnIntoDisertationsAndRunOnAndOnNeverEnding
Feed Title: Travis Griggs - Blog
Feed URL: http://www.cincomsmalltalk.com/rssBlog/travis-rss.xml
Feed Description: This TAG Line is Extra
Latest Agile Buzz Posts
Latest Agile Buzz Posts by James Robertson
Latest Posts From Travis Griggs - Blog

Advertisement

Introspection and statistics are a fun game to play with a Smalltalk image. I've posted a number of these before. Here's todays query:

allCodeSymbols := Set new.

Root

	enumerateMethods:

		[:class :selector :code | 

		code

			allSymbolLiteralsDo:

				[:each | allCodeSymbols addAll: (each runsFailing: [:char | char = $:])]].

allCodeSymbols

	groupedBy:

		[:each | (each piecesCutWhere: [:a :b | a isLowercase and: [b isUppercase]]) size]

Ever noticed how you have a hard time coming up with a good method name? Or maybe a good user message key? So you end up typing out something that rivals a novella to explain what it does, all in camelCase? I was doing so earlier, and decided to see how close I was getting to a default development environment's worst offender. I was at 8 at the time. I was beat out by a the method checkForNameSpaceAndDataInZeroOrMultiplePackagesOn: which has 12 words in there.

Have a better one? Leave a comment and share your worst offender.

Read: whenSelectorsTurnIntoDisertationsAndRunOnAndOnNeverEnding

Topic: VisualHub closes shop Previous Topic   Next Topic Topic: Rebooting Manufacturing?

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use