This file contains 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
require 'rubygems' | |
require 'RMagick' | |
require 'rvg/rvg' | |
include Magick | |
require 'picture' | |
RVG::dpi = 72 | |
class PictureGenerator |
This file contains 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
Ext.application({ | |
name: 'Sencha', | |
launch: function() { | |
Ext.create("Ext.TabPanel", { | |
fullscreen: true, | |
tabBarPosition: 'bottom', | |
ui: 'light', | |
items: [ |
This file contains 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
Feature: Revealing statement | |
Scenario Outline: | |
Given I begin a sentence "I'm not <SOMETHING> but ..." | |
When I finish the sentence | |
Then you will realise that I am in fact <SOMETHING> | |
Examples: | |
| SOMETHING | | |
| racist | |
This file contains 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
// ============================================================ // | |
// CAST | |
// ============================================================ // | |
window.chrome = {}; | |
window.chrome.cast = {}; | |
window.chrome.cast.isAvailable = true; | |
window.chrome.cast.initialize = function(a, b, c) { } | |
window.chrome.cast.ApiConfig = function(a, b, c) { | |
// This fakes that chromecast is available so the button appears | |
// call anything other than "available" to fake chromcast dissapearing |
OlderNewer