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
// ------------------------------------------------------- | |
// Rest System | |
// ------------------------------------------------------- | |
// Automatically converts offline seconds to exp, limit of | |
// how many days offline can be set on OnInit. | |
// ------------------------------------------------------- | |
// Author: Ricardo Nacif | |
// Thanks to Cyan Hijirikawa for helping with the base | |
// ------------------------------------------------------- | |
// Version |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<clientinfo> | |
<desc>Ragnarok Client Information</desc> | |
<servicetype>korea</servicetype> | |
<servertype>sakray</servertype> | |
<hideaccountlist /> | |
<passwordencrypt /> | |
<passwordencrypt2 /> | |
<extendedslot /> | |
<readfolder /> |
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
// add a listener and create an array called DataLayerResults | |
var DataLayerResults = []; | |
(function() { | |
console.log("Listening for data layer events"); | |
WSI.dataLayer.registerCallback(function(a, b, c) { | |
var new_event = {}; | |
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
require 'selenium-webdriver' | |
require 'pry' | |
capabilities = { | |
:deviceName => 'iPhone 5s', | |
:browserName => 'Safari', | |
:platformVersion => '8.1', | |
:platformName => 'iOS', | |
:newCommandTimeout => 9999, | |
:app => 'safari', |
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
var element_locator = '#fastclick'; | |
function loadYui(callback) { | |
// Adding the script tag to the head as suggested before | |
var head = document.getElementsByTagName('head')[0]; | |
var script = document.createElement('script'); | |
script.type = 'text/javascript'; | |
script.src = "http://yui.yahooapis.com/3.18.0/build/yui/yui-min.js"; |
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
LanceDaVez::Application.routes.draw do | |
match '/contact', to: "aguarde#contact" | |
root :to => "aguarde#home" | |
root to: 'aguarde#home' | |
# The priority is based upon order of creation: | |
# first created -> highest priority. | |
# Sample of regular route: |