Monthly Data Pack $5 - 250mb
Monthly Data Pack $15 - 1GB
Monthly Data Pack $30 - 3GB
Monthly Data Pack $60 - 6 GB
Monthly Data Pack $100 - 10 GB
Monthly Data Pack $150 - 15 GB
Monthly Data Pack $250 - 25 GB
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
| # Actually Id also move all the rubbish out of the middle and make variables so it hurts your brain less. | |
| # call the variables what you like, but see how it's like, sigh of releif. | |
| # Make your brain pass the least amount of crap as possible. | |
| # Encapsulation lets you hide ugly things inside nice little packages :) | |
| require 'rubygems' | |
| require 'nokogiri' | |
| require 'open-uri' | |
| domain_url = "http://prod3.agileticketing.net/websales/pages/" |
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
| def plus_two num | |
| return num + 2 | |
| end | |
| # Most rubyists would tune that further and remove the 'return' knowing that | |
| # ruby always does an automatic return on the last item in a method. | |
| def plus_two num | |
| num + 2 # no returns nahnahnah | |
| 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
| Enhancement request for Ninefold Chat Support | |
| Spoke to Eden H Support Operator at Ninefold | |
| Ahh just one feedback if you can pass it on to the team | |
| When I open this help chat screen I have to do the following: | |
| 1. Unminimise the chat screen | |
| 2. Press 'Chat' | |
| 3. Get told to wait cause Im X in the queue | |
| 4. What this means for me is that it's a blocking IO on what I want to talk about as I can't just type in whats on my mind right now. I have to wait around until I get to the front of the queue and the nice person says 'hi' before I can say what I came to say. |
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
| /*! | |
| * Copyright 2013 Twitter, Inc. | |
| * | |
| * Licensed under the Creative Commons Attribution 3.0 Unported License. For | |
| * details, see http://creativecommons.org/licenses/by/3.0/. | |
| */ | |
| /* | |
| * Bootstrap Documentation |
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
| $('#main_content').toc(); | |
| alert('well this works!'); |
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
| /* | |
| * jQuery Table of Content Generator for Markdown v1.0 | |
| * | |
| * https://github.com/dafi/tocmd-generator | |
| * Examples and documentation at: https://github.com/dafi/tocmd-generator | |
| * | |
| * Requires: jQuery v1.7+ | |
| * | |
| * Copyright (c) 2013 Davide Ficano | |
| * |
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
| 1. Add versions to all the gems in the Gemfile. | |
| (This app may be picked up again months or years later, its terrible to try to compile it when the versions aren't present.) | |
| 2. Update the README | |
| 3. Ensure the test suite is passing. | |
| 4. Add a 'handover' note in the README which outlines the state of the specs and the pointy bits of the project and in non-political terms where things are at. | |
Meditations
- “As the tests get more specific, the code gets more generic.” [1] (http://cleancoder.posterous.com/the-transformation-priority-premise)
- "Test code is just as important as production code" [1] (http://cleancoder.posterous.com/the-transformation-priority-premise)
- "Do the simplist thing that could possibly work" (see What is Simple Code for guidance)
[Three laws of TDD] (http://dave.thehorners.com/tech-talk/random-tech/387-the-three-laws-of-test-driven-development-tdd)
- You are not allowed to write any production code unless it is to make a failing unit test pass.
- You are not allowed to write any more of a unit test than is sufficient to fail; and compilation failures are failures.
- You are not allowed to write any more production code than is sufficient to pass the one failing unit test.