Jump To Content

LearnHub



194 Comments

  1. From the video A Lesson in Brain Anatomy with Pinky and the Brain

    Wed, 30 Apr 2008 15:29:33 -0000

    Hahaha! YES! I used to watch these cartoons everyday after school.

    Vote
    Current Rating
    0
    Rate Up
    Rate Down
    No Votes
  2. From the video Sex Education for Girls-Part 2

    Wed, 30 Apr 2008 15:27:32 -0000

    Oh man, times have changed.

    Vote
    Current Rating
    0
    Rate Up
    Rate Down
    No Votes
  3. From the discussion Fair trade vs local

    Mon, 28 Apr 2008 19:50:10 -0000

    I definitely prefer to purchase local products since I’d like to think it impacts the environment less and local products are usually fresher and tastier.

    I’m always on the look-out for local organic unless it’s something that does not grow in North America, such as cacao or (to my knowledge) coffee, I always make sure its USDA Organic or Canada Organic certified and free trade.

    Vote
    Current Rating
    0
    Rate Up
    Rate Down
    No Votes
  4. From the lesson Rationalize This!

    Wed, 23 Apr 2008 23:12:48 -0000

    LOL

    Vote
    Current Rating
    0
    Rate Up
    Rate Down
    No Votes
  5. From the discussion Overwatering / Underwatering

    Tue, 22 Apr 2008 17:48:09 -0000

    Very good point about drainage.

    Rating
    0
    Rate Up
  6. From the discussion The Site Wide Search

    Sun, 20 Apr 2008 05:32:59 -0000

    LOL

    Vote
    Current Rating
    0
    Rate Up
    Rate Down
    No Votes
  7. From the lesson Using Haml

    Fri, 18 Apr 2008 17:39:51 -0000

    Also to note, there are a couple TextMate bundles that are quite handy when using Haml & Sass:

    And remember to use Soft Tabs set to 2 spaces when editing Haml or Sass files.

    Vote
    Current Rating
    1
    Rate Up
    Rate Down
    1 Total Vote
  8. From the lesson How to create concept-maps on your computer

    Wed, 16 Apr 2008 02:07:20 -0000

    This is pretty cool Peter, I am downloading it right now and I’ll give it a whirl.

    Vote
    Current Rating
    0
    Rate Up
    Rate Down
    No Votes
  9. From the discussion LearnHub Notifications

    Tue, 15 Apr 2008 05:48:56 -0000

    I’ve set all of mine to ‘Instantly’ but who knows how long that will last, ha!

    Vote
    Current Rating
    0
    Rate Up
    Rate Down
    No Votes
  10. From the lesson Licenses

    Tue, 15 Apr 2008 04:53:38 -0000

    I’m really digging Attribution, sweet lesson lechuck (as always.)

    Vote
    Current Rating
    0
    Rate Up
    Rate Down
    No Votes
  11. From the discussion Community Picture

    Tue, 15 Apr 2008 04:37:09 -0000

    Haha, yea this community had gone too long without an avatar. I should start putting stuff into the Design community.

    Vote
    Current Rating
    0
    Rate Up
    Rate Down
    No Votes
  12. From the lesson How to: Notifications

    Tue, 15 Apr 2008 03:48:36 -0000

    Finally!!! ;-)

    Vote
    Current Rating
    0
    Rate Up
    Rate Down
    No Votes
  13. From the discussion Haml is the best template engine on Rails

    Sat, 12 Apr 2008 15:50:57 -0000

    Gabe, the majority of people will be reading the rendered page, not the markup.

    Rating
    1
    Rate Up
  14. From the lesson Using md5 sums

    Fri, 11 Apr 2008 20:29:56 -0000

    Or with Ruby…

    
    require 'digest'
    puts Digest::MD5.hexdigest(File.read('some_file.png'))
    

    And if you don’t want to put the entire file into memory, try this out:

    
    hash = Digest::MD5.new
    
    File.open('some_file.iso', 'r') do |file|
      hash.update(file.read(16384)) until file.eof
    end
    
    puts hash.hexdigest
    
    Vote
    Current Rating
    0
    Rate Up
    Rate Down
    No Votes
  15. From the discussion Remember When...

    Fri, 11 Apr 2008 20:19:14 -0000

    Hahaha, scanlines! Remember when we built everything out of <table> tags and used <marquee> as well, remember before XHTML when you didn’t have to explicitly close every tag <br />, it’s amazing how many things change, and how quickly in our world.

    Vote
    Current Rating
    1
    Rate Up
    Rate Down
    1 Total Vote
  16. From the discussion GIMP

    Fri, 11 Apr 2008 20:13:46 -0000

    That’s been my experience too Andrew.

    Rating
    1
    Rate Up
  17. From the discussion What type of Graphic Design do you do?

    Fri, 11 Apr 2008 20:10:55 -0000

    Print for identities, (logos, stationary, business cards) and some advertising (a poster and promotional materials), some wayfinding and signage stuff mostly 2 or 3 color designs that were cut out of vinyl. I designed and built a sign out of stainless steel when I was working as a fabricator, that was pretty fun although stainless is a bit of a PITA to work with.

    These days it’s markup and style sheets, I use Photoshop and Illustrator accordingly and should probably make more comps, but I often find myself sketching things out roughly and then going direct to markup. I would consider my text editor (TextMate) a design tool, and it is by far the tool I use most.

    Vote
    Current Rating
    0
    Rate Up
    Rate Down
    No Votes
  18. From the discussion Best Blog Software?

    Thu, 10 Apr 2008 02:37:06 -0000

    I really enjoy Mephisto, but it does not have a very good in-browser editor.

    Vote
    Current Rating
    0
    Rate Up
    Rate Down
    No Votes
  19. From the lesson How to Install Merb

    Thu, 20 Mar 2008 22:10:55 -0000

    Postgre is a pretty sweet option too for a production database server. I’ve actually been playing with DataMapper a lot lately and I’ve got to admit that I am really loving it!

    Vote
    Current Rating
    1
    Rate Up
    Rate Down
    1 Total Vote
  20. From the lesson Unzipping a File

    Fri, 14 Mar 2008 21:06:30 -0000

    Good content Anita, 7zip is my archive utility of choice too if using Windows.

    Vote
    Current Rating
    0
    Rate Up
    Rate Down
    No Votes