Skip to content

Instantly share code, notes, and snippets.

View radarek's full-sized avatar

Radosław Bułat radarek

View GitHub Profile
@radarek
radarek / gist:6549850
Last active December 22, 2015 23:49 — forked from oki/gist:6549739
%h5 Formularz
%pre
- form_url = lead_form_url(host: AppConfig.app.hostname)
%p
= String.new(render(partial: 'order_form', locals: { form_url: form_url, form_key: @landing_page_form.key }))

Screencasting Framework

The following document is a written account of the Code School screencasting framework. It should be used as a reference of the accompanying screencast on the topic.

Why you should care about screencasting?

You're probably aren't going to take the time to read this document if you're not interested, but there are a lot of nice side effects caused by learning how to create quality screencasts.

  1. Communicating more effectively - At Envy Labs we produce screencasts for our clients all the time. Whether it's demoing a new feature or for a presentation for an invester, they're often much more effective and pleasent than a phone call or screen sharing.
@radarek
radarek / exception.rb
Created December 19, 2009 14:38 — forked from oki/exception.rb
begin
#raise
#raise Timeout::Error.new('fuckme')
raise ScriptError
rescue Timeout::Error,RuntimeError,ScriptError => e
puts "OK"
end