J-_-L
index | github | twitter | irbtools | pws | rubykraut | ruby on ubuntu | zucker | euler | fresh
05.12.11
3 comments

Fixing a little anchor permalinks vs. pagination issue (using javascript and jekyll)

I am using the Jekyll blog generator for some projects (still not sure if I really like it..) and came across the following requirement the other day:

  • The blog should only have an index page, no (visible) sub-posts
  • This index page should use pagination
  • There should be the ability to link to a specific blog post

The problem was: I wanted to use anchor links (http://some.url/#post-identifier), but – because of the pagination – blog posts “change” their index page (e.g. in jekyll, they move from /#example to /page2/#example). […]

28.11.11

Why you should switch to 1.9: Three Ruby 1.8 bugs

Ruby 1.8 dies in June 2012. This post shows some small examples, why this is good ;) […]

24.10.11
3 comments

Pass multiple blocks to methods using named procs

codebrawl · gem · gist · hints · ruby · ruby1-9

My codebrawl entry (gist) got the 5th place (out of 20). Want to use it in real life :) […]

18.08.11
6 comments

RubyBuntu -5- Modernize your gedit Ruby language specs!

How to get the following for your gedit:

  • Up-to-date Ruby syntax highlighting
  • Proper highlighting for .js.erb or .yml.erb files
  • Gemfile.lock highlighting
    […]
15.07.11 16.07.11

Three little tips for slimmer Rails migrations

gem · hints · one-liners · plugin · rails · rails2 · rails3 · ruby

Rails migrations are easy to understand and easy to write. However, you can save some unnecessary key strokes by applying these three tips :) […]

29.06.11

Building yet another terminal colors gem: term-ansicolor meets rainbow

irb · ruby

There are plenty terminal color gems out there. Now, there is one more. Why? […]

01.06.11

eurucamp: Tweak your Ruby consoles - 2011 edition

09.05.11
5 comments

Exploring the stdlib: logger

puts is great for a quick output, but when a script gets more complex or you want to offer a flexible executable, consider using the logger ;). Since the logger class is part of the Ruby standard library, it can be used everywhere, without installing any gems. And it’s very easy to use :D […]

31.03.11
6 comments

♥ .railsrc / rails console snippets

13 Rails-specific hints for your rails 3 console. […]

08.03.11 12.03.11
5 comments

Small Ruby CLI Improvements (Part 4): Edit Ruby Objects Using yaml

hints · irb · ruby

Somehow, I stumbled upon this useful little script by _why: Update […]