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
"intensity" : "20", | |
"vectors" : "1", | |
"worksize" : "256", | |
"kernel" : "scrypt", | |
"lookup-gap" : "2,2", | |
"thread-concurrency" : "24000", | |
"shaders" : "0,0", | |
"gpu-engine" : "0-1085", | |
"gpu-fan" : "0-100", | |
"gpu-memclock" : "1375", |
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
Scenario: Create valid User | |
Given I have no users | |
And I am on the users page | |
When I follow "New User" | |
And I fill in "First Name" with "Paul" | |
And I fill in "Last Name" with "Ketelle" | |
And I fill in "Username" with "ketellep" | |
And I fill in "Email" with "[email protected]" | |
And I fill in "Password" with "pk1" | |
And I fill in "Password Confirmation" with "pk1" |
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
if (!navigator.geolocation) { | |
navigator.geolocation = (function (window) { | |
function reloadGeoIP(callback) { | |
// NOTE: for some reason, chaging the url is *allowed* with this service. Useful, but random | |
var geourl = 'http://j.maxmind.com/app/geoip.js_' + Math.random(), | |
iframe = document.createElement('iframe'), | |
doc, win; | |
iframe.style.display = 'none'; |