blog.thoughtfolder.com blog.thoughtfolder.com

blog.thoughtfolder.com

New entries — Thoughtfolder

Greg Weber – folding thoughts for you

http://blog.thoughtfolder.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR BLOG.THOUGHTFOLDER.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

July

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Saturday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 4.5 out of 5 with 13 reviews
5 star
9
4 star
3
3 star
0
2 star
0
1 star
1

Hey there! Start your review of blog.thoughtfolder.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

CONTACTS AT BLOG.THOUGHTFOLDER.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
New entries — Thoughtfolder | blog.thoughtfolder.com Reviews
<META>
DESCRIPTION
Greg Weber &#8211; folding thoughts for you
<META>
KEYWORDS
1 thoughtfolder
2 all entries
3 tags
4 archives
5 new entries
6 bloggregweber info
7 tagged as blog
8 object
9 tagged as ruby
10 tagged as rspec
CONTENT
Page content here
KEYWORDS ON
PAGE
thoughtfolder,all entries,tags,archives,new entries,bloggregweber info,tagged as blog,object,tagged as ruby,tagged as rspec,ruby,test,tagged as perl,css template,by ramblingsoul
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

New entries — Thoughtfolder | blog.thoughtfolder.com Reviews

https://blog.thoughtfolder.com

Greg Weber &#8211; folding thoughts for you

INTERNAL PAGES

blog.thoughtfolder.com blog.thoughtfolder.com
1

test — Thoughtfolder

http://blog.thoughtfolder.com/tags-test.html

Moving to a different domain. Inject the Hash before you tap it. RSpec should each matcher. Ruby blocks in Perl. RSpec should each matcher. Should each for easy testing of collections. Written on Wed Nov 5 20:31:20 2008. Authored by Greg Weber. Generated by Rassmalog 10.0.0.

2

New entries — Thoughtfolder

http://blog.thoughtfolder.com/index.html

Moving to a different domain. Inject the Hash before you tap it. RSpec should each matcher. Ruby blocks in Perl. Moving to a different domain. Written on Mon Oct 25 12:38:47 2010. Inject the Hash before you tap it. There is a Ruby best practices blog. That is exploring the uses of. Particularly with respect to building hashes, as per the example they give:. Written on Wed Aug 5 19:57:39 2009. RSpec should each matcher. Should each for easy testing of collections. Written on Wed Nov 5 20:31:20 2008.

3

RSpec should each matcher — Thoughtfolder

http://blog.thoughtfolder.com/2008-11-05-rspec-should-each-matcher.html

Moving to a different domain. Inject the Hash before you tap it. RSpec should each matcher. Ruby blocks in Perl. RSpec should each matcher. One common testing situation is running an assertion over each element of a collection. For a truly contrived example, lets test an array to see that every element is the number 1. Should be an array of ones. N nshould = 1. Should be an array of ones. Should be an array of ones. Should each { n n.should = 1. As expected, the output shows. Note the use of brackets.

4

blog — Thoughtfolder

http://blog.thoughtfolder.com/tags-blog.html

Moving to a different domain. Inject the Hash before you tap it. RSpec should each matcher. Ruby blocks in Perl. Moving to a different domain. Written on Mon Oct 25 12:38:47 2010. In open source software). Setting up my blog got me thinking: Do we really need so many blogging systems? Written on Fri Jan 18 09:00:00 2008. An Efficient Blogging Setup. Written on Fri Jan 18 01:00:00 2008. Authored by Greg Weber. Generated by Rassmalog 10.0.0.

5

perl — Thoughtfolder

http://blog.thoughtfolder.com/tags-perl.html

Moving to a different domain. Inject the Hash before you tap it. RSpec should each matcher. Ruby blocks in Perl. Ruby blocks in Perl. The power of Ruby blocks is hidden in Perl. Create ruby rescue blocks in Perl. Written on Sun Oct 19 21:00:00 2008. Authored by Greg Weber. Generated by Rassmalog 10.0.0.

UPGRADE TO PREMIUM TO VIEW 12 MORE

TOTAL PAGES IN THIS WEBSITE

17

LINKS TO THIS WEBSITE

projects.gregweber.info projects.gregweber.info

Greg Weber .Info

http://projects.gregweber.info/tablelib.html

Greg Weber .Info. Jquery plugin for serializing objects to html tables. Create table objects and table row objects and use convenience methods. Serialize objects to table rows and extract objects from table rows. Support for saving object properties as row attributes. Advanced querying of table rows. Lib/iterators.js (included in tarball). Table('#my-table').save( [{column1 : val1, column2 : val2}, {column1 : val3, column2 : val4}] ). Output = [{column1 : val1, column2 : val2}] */. Column1 : val1} ).

projects.gregweber.info projects.gregweber.info

Greg Weber .Info

http://projects.gregweber.info/uitablefilter.html

Greg Weber .Info. Jquery plugin for filtering table rows. This is a nice example that ties this plugin with the tablesorter plugin. UiTableFilter( t, phrase ). JQuery object containing table rows. Phrase to search for. Column to limit search too (the column title in the table header). IfHidden - callback to execute if one or more elements was hidden. Created by Greg Weber. Design adapted from Free CSS Templates.

projects.gregweber.info projects.gregweber.info

Greg Weber .Info

http://projects.gregweber.info/module-import.html

Greg Weber .Info. Selectively include module methods. Selectively include module methods with Kernel#import. Licensed under the MIT license. Newbar # = 'bar'. Newfoo # = # NoMethodError. Not defined not found in Foo (ImportError). Giving no methods (or all methods) should behave the same as a normal include. Same as import Foo, :foo, :bar. Newbar # = 'bar'. Newfoo # = 'foo'. However, there is one important difference. New changes in the included module will not effect the class. Newbar # = 'bar'.

projects.gregweber.info projects.gregweber.info

Greg Weber .Info

http://projects.gregweber.info/quicktest.html

Greg Weber .Info. Ruby utility for in source unit testing. Quicktest - A utility for inlining ruby unit tests with the ruby code under test. Bar should be initialized to true. Should prepend 'hello' to its argument. Error - no space 'helloworld'. Running quicktest on the source of this README file outputs the following:. To test a method, place another method called ‘quicktest’ immediately after it the quicktest method has one OPTIONAL argument:. A method object for the method under test. Quicktest is de...

projects.gregweber.info projects.gregweber.info

Greg Weber .Info

http://projects.gregweber.info/methodchain.html

Greg Weber .Info. Ruby helpers for method chaining. Methodchain - ruby helpers for method chaining: chain, tap, then, else, and, or. Easy ways to navigate around nil without creating local variables. Initial blog post describing previous ideas: blog.thoughtfolder.com/2008-03-16-navigating-nil-method-chaining-in-ruby.html. Licensed under the MIT license. Person.name : nil. Name = person.then { p p.name} # or. Name = person.then {name}. Args) # do some expensive database queries. Person = find( :first.

projects.gregweber.info projects.gregweber.info

Greg Weber .Info

http://projects.gregweber.info/uitableedit.html

Greg Weber .Info. Jquery plugin for making tables user editable. User clicks on a cell, edits the value, then presses enter or clicks on any cell to save the new value. UiTableEdit( t ) /. Off : turns off table editing. Find : defaults to tbody tr td. Mousedown : callback on mouseDown event. Called in context of the table cell. If mousedown returns false, cell will not become editable. DataVerify : callback after cell has been changed. Called in context of the cell,. EditDone : invoked on completion.

UPGRADE TO PREMIUM TO VIEW 5 MORE

TOTAL LINKS TO THIS WEBSITE

11

OTHER SITES

blog.thoughtboxlearning.com blog.thoughtboxlearning.com

ThoughtBox

Thursday, November 14, 2013. We've moved and they all know it! The ThoughtBox blog moved to a new address! They're now blogging at: www.thoughtboxlearning.net/blog. Posted by Coral Baldominos. Labels: Life at ThoughtBox. Wednesday, November 6, 2013. Can you arrange 6 match sticks to make 4 equilateral triangles? Send us your solution! Posted by Coral Baldominos. Wednesday, October 30, 2013. Happy Halloween from the ThoughtBox team! Have you already gathered your pumpkin? All we need is:. Now prepare the ...

blog.thoughtbrain.com blog.thoughtbrain.com

Thoughtbrain Bloggers

Wireframes – a brief overview : talk from PARISOMA. By admin on March 12, 2015, no comments. Thanks to everyone who came out to my talk workshop tonight. For putting on the event. Those who are interested in learning more about this topic or others, I recommend checking out DesignLab. Here’s the slides from the talk:. Also here’s some helpful links:. Paper & pencil POP app. Apple Keynote for Mac. Also available for iOS. 8211; starts $20/mo. 8211; free & Pro options. 8211; free & Pro options. I found out ...

blog.thoughtbuzz.net blog.thoughtbuzz.net

ThoughtBuzz

ThoughtBuzz is a social media intelligence company in Singapore. We help companies "understand" social media and have fun along the way. TO THE NEW has launched Social IQ –. An integrated Social CRM offering. The innovative solution is designed to enable brands to harness the power of social media beyond advertising and derive tangible business performance. Social IQ’s business framework offers an industry-leading bouquet of 25 end. ThoughtBuzz’s products and solutions, will enrich Social IQ’...ThoughtBu...

blog.thoughtcrime.org.nz blog.thoughtcrime.org.nz

THIS IS THOUGHTCRIME

Wednesday, September 30, 2015. Deterministic Rebuild of Windows 10 Laptop. Yesterday, I attempted to rebuild a box while verifying SHA1 hashes and signatures at every point, with Secure Boot enabled from the start. It turns out to be surprisingly difficult to rebuild a Windows 10 machine in a deterministic way. Using the supplied Microsoft tools, generated ISO files are unique and cannot be verified out of band. Here's the method I wound up using. 6 Boot from the DVD and install Windows as normal, withou...

blog.thoughtcrumbs.com blog.thoughtcrumbs.com

Thoughtcrumbs

Quicker than quicksilver: Mouse-free on the mac. Sometimes it's tough to be a strong advocate for both Macs and ergonomics. Love shouldn't hurt. Even with Quicksilver. The omnipresent app that enables keyboard shortcuts for just about everything) and the most ergonomic desk setup of any computer professional, I find myself thwarted by window management and other ubiquitous tasks that require dragging or clicking, both of which aggravate my RSI. To jump to the first form field. Type! An app version of my ...

blog.thoughtfolder.com blog.thoughtfolder.com

New entries — Thoughtfolder

Moving to a different domain. Inject the Hash before you tap it. RSpec should each matcher. Ruby blocks in Perl. Moving to a different domain. Written on Mon Oct 25 12:38:47 2010. Inject the Hash before you tap it. There is a Ruby best practices blog. That is exploring the uses of. Particularly with respect to building hashes, as per the example they give:. Written on Wed Aug 5 19:57:39 2009. RSpec should each matcher. Should each for easy testing of collections. Written on Wed Nov 5 20:31:20 2008.

blog.thoughtforms-corp.com blog.thoughtforms-corp.com

Thoughtforms

Cambridge / Brookline / Newton. Beacon Hill / Back Bay. Cape Cod / South Shore. Soaring: This Charles Rose Architects designed home reaches over the Atlantic / John Edward Linden photography. Shope Reno Wharton Nanette Lewis Interiors Scott Frances photography. Marcus Gleysteen Architects Richard Mandelkorn photography. Catalano Architects Gregory Lombardi Design Sam Gray Photography. Boardwalk maintenance at Mass Audubon's Broadmoor Wildlife Sanctuary. Thoughtforms built to endure. Well share the basics:.

blog.thoughtful.co blog.thoughtful.co

Thoughtful Co.

We Are A Team Of Creative Problem Solvers. We Make Simple, Beautiful And Usable Products For Our Clients. All data is not equal. In order to pull data in, manipulate it, manage and deliver data from a variety of sources, and do so rapidly and without fail day in and day out, software must incorporate robust data design. Solid data design leads to consistently reliable results, the kind that every software product deserves. Holistic design, better products.

blog.thoughtfulpixel.com blog.thoughtfulpixel.com

Thoughtful Pixel

Busy making awesome things.

blog.thoughtfulpresence.com blog.thoughtfulpresence.com

Thoughtful Presence

Tuesday, May 19, 2015. DIY Gifts for the Hostess. For something unique and inexpensive, consider one of these DIY hostess gifts from some of my favorite blogs and websites. Make this light and fresh Homemade Lemon Soap. From A Pumpkin and A Princess. It’s the perfect summer gift! Nothing screams summer more than s’mores! Bring them these S’Mores in a Jar. From The Frugal Girls. Great for men or women, and especially those friends you play scrabble with, create these scrabble tile coasters. Well, the fact...

blog.thoughthook.com blog.thoughthook.com

ThoughtHook | A place to hang my brain

A place to hang my brain. January 12, 2015. There are some major updatesforthcoming, including changing the focus of the site. Watch this space! Opera Unite – Reinventing the web? June 16, 2009. June 03, 2009. I apologize for the downtime – One of my plugins decided to stop playing nicely so I had to shuffle some things around. Code coloration is disabled for the time being. The Ruby Toolbox: Look up gems by category and popularity. May 19, 2009. Here is a brief description, taken from their site:. They ...