- "Standing data"
- "the rest of the data"
- a) Depends on the size of the bakery, if it's Hovis they should probably be careful, but if it's a corner bakery (a la boutique-city-style), they should probably jump to computerized b) Pilot, don't stick all your hens in one basket c) Direct, computerize the records overnight d) Direct, don't try to fragment two halves of the hospital with different records, although staggering the rollover times may ease system load. Make sure the application can be executed in a virtual machine, and can be configured to sit behind a reverse proxy/load balancer, then it is possible to dynamically scale the system by adding more boxes e) Direct, transition in the summer holidays before new timetables are issued, and early in the summer holidays to allow the system to fail f) Depends on the production state of the factory: if its 277365, do a phased conversion to prevent having everyone from having to down tools. If the factory is shut d
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
| for (int iFuckingHateJava = j + 1; iFuckingHateJava < 128; iFuckingHateJava++) { | |
| world.setBlockWithNotify(i, iFuckingHateJava, k, Block.glass.blockID); | |
| } |
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 |
- 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
| 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); | |
| } |