100% — FF 95% — F2 90% — E6 85% — D9 80% — CC 75% — BF 70% — B3 65% — A6 60% — 99 55% — 8C
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
Refs #{ticket}: {description} | |
Closes: #{ticket}: {description} | |
Fix #{ticket}: {description} |
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
{ | |
"cmd": "make install", | |
"name": "Roku Build", | |
"sh": true, | |
"cwd": "{PROJECT_PATH}", | |
"env": { | |
"ROKU_DEV_TARGET": "192.168.2.30" | |
}, | |
"errorMatch": [ | |
"^regexp1$", |
Use the Interface Segregation Principle to tidy the following:
interface ICrew
{
function communicate(){}
function useLightSaber(){}
function flyShip(ship:Ship)
}
Ry 1 | 4 Carlito |
---|---|
http://www.superawesome.work | GoDaddy domain search |
Nowt | Brightscript syntax highlighter |
Nowt | Brightscript breakpoints |
Nowt | waffle.io-desktop-wrapper |
BrightScript | Notes |
---|---|
ParseJson() |
Can only be used in a Task node |
parseXml() |
Can only be used in a Task node |
ReadAsciiFile() |
Can only be used in a Task node |
roAppInfo |
Cannot be used in a Scene Graph application |
roAppManager |
User interface component, cannot be used in a Scene Graph application |
roAudioMetadata |
Cannot be used in a Scene Graph application |
roAudioPlayer |
Cannot be used in a Scene Graph application |
roAudioResource |
Cannot be used in a Scene Graph application |
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
screen = CreateObject("roSGScreen") ' create the roSGScreen | |
m.port = CreateObject("roMessagePort") | |
screen.setMessagePort(m.port) | |
scene = screen.CreateScene("Scene") ' create a Scene node | |
screen.show() ' display the screen |
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
curl http://domain.com -I |
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
git grep "search string or regex" $(git rev-list --all) |
The Millenium Falcon has a crew of Han Solo, Chewbacca and Luke Sky Walker. Write the classes (included the Visitor class referenced below) you need to make the crew say (trace) their catchphrases (e.g. Chewy says "Gwaaraghhghll").
Class MilleniumFalcon
{
protected var han:Pilot
protected var chewbacca:Wookie;
protected var luke:Gunner;
function accept(visitor:IMilleniumFalconVisitor) : Void