- Reminders provide an easy way to quickly note down one-off tasks
- The calendar provides me with a a way to keep up with my mess of a timetable
- The calender is flexible enough to allow for throwing the entire thing in the toilet if I want to
- Having emails in my pocket means I don't take breaks out of my day to go and check them
- It provides me with a way to keep a track of physiotherapy appointments
- It provides me with a way to keep up with ortho appointments, and allows me to control them
- It gives me a fast way to liaise with parents as to meetings
- It can link into my college email system, meaning asking a teacher what I missed is not such a struggle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin gradient($from, $to) { | |
/* fallback/image non-cover color */ | |
background-color: $from; | |
/* Firefox 3.6+ */ | |
background-image: -moz-linear-gradient($from, $to); | |
/* Safari 4+, Chrome 1+ */ | |
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from($from), to($to)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Feelings | |
def bad | |
@bad | |
end | |
def bad=(bad) | |
@bad = bad | |
end | |
end | |
class Problems |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace :db do | |
desc "do active_record migrations" | |
task :migrate do | |
ActiveRecord::Base.logger = Logger.new(STDOUT) | |
ActiveRecord::Migration.verbose = true | |
ActiveRecord::Migrator.migrate("migrations") | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://commondatastorage.googleapis.com/chromium-browser-continuous/index.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdlib.h> | |
#include <stdio.h> | |
#include <string.h> | |
int main (int argc, char* argv[]) { | |
if (argc < 2) { | |
printf("Needs an argument\n"); | |
exit(1); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/local/bin/ruby | |
# Creates a new repo called ARGV[0] | |
@args = ARGV | |
@args.each_with_index{|o,i| puts "#{i} : #{o}"} | |
if not @args[1] =~ /(private|public)/ | |
puts "invalid arguments: #{@args.inspect}" | |
exit(1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pretty colour code for headers | |
#474747 |