I hereby claim:
- I am adonaldson on github.
- I am ad (https://keybase.io/ad) on keybase.
- I have a public key whose fingerprint is 7AF3 8C66 99E1 A514 58DB 2936 BB24 B5C4 563D F050
To claim this, I am signing this object:
After a discussion on the future of CodeCumbria. Originally intended to be a call to action to get | |
more stewards, it turned into a discussion on what people want Code Cumbria to be. | |
What is Code Cumbria for: "Community, to learn stuff, to be visible and grow a scene" - it was | |
noticed that of all the people that could attend, those that do are predominantly the remote | |
workers and the young (highlighting the importance of social for the group) | |
Focus on topics, not talks. Rather than dredging up talks each month, we want people to "introduce | |
topics", be it a 30s intro or a 15min presentation. Creating talks is proving too difficult. |
# | |
# Add Virtualhost v0.1 - 13/02/2004 | |
# | |
# by Andrew Donaldson - [email protected] | |
# | |
# Performs three functions | |
# i) Adds entry to HOSTS file | |
# ii) Adds entry to httpd.conf | |
# iii) Restarts apache service |
# Description: | |
# Turning mentions of tickets (#(\d+)) into Lighthouse URLs, with info | |
# | |
# Dependencies: | |
# None | |
# | |
# Configuration: | |
# None | |
# | |
# Commands: |
I hereby claim:
To claim this, I am signing this object:
Steam through Wine stopped working for me yesterday. After starting up it would just quit. | |
According to http://bugs.winehq.org/show_bug.cgi?id=35030 it's fixed in 1.7.8. Sadly the latest version on homebrew at the current time is 1.7.7. Let's fix it! | |
`brew edit wine` | |
Update the 'devel' section: | |
``` | |
devel do |
#!/usr/bin/env ruby | |
TERMINAL_RED = 31 | |
TERMINAL_GREEN = 32 | |
TERMINAL_DEFAULT = 0 | |
LATEST_RAILS_VERSIONS = { | |
'2.3' => '2.3.18', | |
'3.0' => '3.0.20', | |
'3.1' => '3.1.12', | |
'3.2' => '3.2.16', |
# Assumes two things | |
# i) Your user class's to_s method outputs something useful - perhaps their name or email address | |
# ii) Your user class has an 'email' attribute | |
# | |
# This will work with any ruby class, it doesn't have to be an activerecord model | |
# | |
# usage: gravatar_tag(my_user, size: '32x32', alt: 'This is the alt text', title: 'Any other options get passed into image_tag') | |
module UsersHelper |
What do I remember being so good about MMOs? | |
Identifiers that say something about me (Race chosen, name, class, abilities, weapons, armour, appearance) | |
A 'home' - somewhere to idle after questing. Somewhere where it's likely to bump into friends, or other people I 'know' / recognise. | |
Meet people who are different but with shared goals. | |
"Group of friends that I met in game. Similar situations, complementing skills, similar attitudes, etc. Usually introduced by someone helping someone else out." | |
World effects (e.g. Weather) - something that happens on a regional scale that is noticeable by everyone nearby |
require 'rubygems' | |
require 'mechanize' | |
require 'keychain' | |
class Scraper | |
def initialize(url) | |
@url = url | |
@flows = [] | |
end | |