This file has been truncated, but you can view the full file.
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
| Last login: Sun Nov 9 15:48:32 on ttys009 | |
| cd % ➜ kuende_front git:(master) ✗ cd ~/Development/Selenium | |
| ➜ Selenium java -jar selenium-server-standalone-2.42.2.jar | |
| Nov 09, 2014 5:04:24 PM org.openqa.grid.selenium.GridLauncher main | |
| INFO: Launching a standalone server | |
| 17:04:24.636 INFO - Java: Oracle Corporation 24.51-b03 | |
| 17:04:24.637 INFO - OS: Mac OS X 10.10 x86_64 | |
| 17:04:24.646 INFO - v2.42.2, with Core v2.42.2. Built from revision 6a6995d | |
| 17:04:24.742 INFO - Default driver org.openqa.selenium.ie.InternetExplorerDriver registration is skipped: registration capabilities Capabilities [{platform=WINDOWS, ensureCleanSession=true, browserName=internet explorer, version=}] does not match with current platform: MAC | |
| 17:04:24.783 INFO - RemoteWebDriver instances should connect to: http://127.0.0.1:4444 |
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
| stylus = require 'gulp-stylus' | |
| nib = require 'nib' | |
| gulp.task 'development-style', -> | |
| gulp.src './app/css/style.styl' | |
| .pipe stylus | |
| use: [nib()] | |
| linenos: true | |
| 'include css': true | |
| .pipe gulp.dest "./public/css" |
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
| /* | |
| Accepts one or more transitions and a callback as last argument | |
| Example: | |
| ``` | |
| var transition1 = d3.selectAll('g').transition().duration(500) | |
| , transition2 = d3.selectAll('circle').transition().duration(400) | |
| , callback = function() {console.log('done')} | |
| onD3TransitionsEnd(transition1, transition2, callback) | |
| ``` |
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/bin/env node | |
| import * as fs from 'fs'; | |
| const JIRA_TAG = 'TAG'; | |
| /* If message title: | |
| * * Doesn't start with square brackets [] | |
| * * Doesn't start with Merge branch | |
| * * Doesn't start with Merge pull request |
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
| { | |
| "$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", | |
| "contentVersion":"1.0.0.0", | |
| "parameters":{ | |
| "logicAppName":{ | |
| "type":"String", | |
| "metadata":{ | |
| "description":"Name of the logic app." | |
| } | |
| }, |
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
| { | |
| "$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", | |
| "contentVersion":"1.0.0.0", | |
| "parameters":{ | |
| "logicAppName":{ | |
| "type":"String", | |
| "metadata":{ | |
| "description":"Name of the logic app." | |
| } | |
| }, |
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/bin/python | |
| import RPi.GPIO as GPIO | |
| import time | |
| import sys | |
| import Adafruit_DHT | |
| RELAY_OFF = GPIO.LOW | |
| RELAY_ON = GPIO.HIGH |
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
| // Variables used by Scriptable. | |
| // These must be at the very top of the file. Do not edit. | |
| // icon-color: red; icon-glyph: check; | |
| "use strict"; | |
| /** | |
| * Widget to get a Todoist task based on a filter | |
| * If a filter has multiple sections, will get a random task from first section that has tasks | |
| * The script remembers last selected task, and keeps showing that task while it matches above | |
| * condition (being part of first section with tasks). |
OlderNewer