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 "spaceship" | |
Spaceship::Tunes.login("[email protected]") | |
app = Spaceship::Application.find("krone.at-krone.at") | |
version = app.live_version | |
puts version.review_first_name | |
puts version.review_last_name | |
puts version.review_notes | |
puts version.review_email |
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
stages: | |
- danger | |
Danger: | |
dependencies: [] | |
stage: danger | |
script: | |
- fastlane danger_krn | |
tags: | |
- linux-native |
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
https://gitlab.com/gitlab-org/gitlab-ce/issues/18106#note_12209189 |
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
<?php | |
$mapper = new JsonMapper(); | |
$contactObject = $mapper->map( | |
json_decode(file_get_contents('http://example.org/contact.json')), | |
new Contact() | |
); | |
?> |
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
<?php | |
class KMMSDKConfig { | |
protected static $_instance = null; | |
public $cookie_lifetime = -1; | |
public static function getInstance() | |
{ | |
if (null === self::$_instance) | |
{ | |
self::$_instance = new self; |
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 g = document.createElement("script"), | |
s = document.getElementsByTagName("script")[0]; | |
g.src = 'https://code.jquery.com/jquery-2.2.4.js'; | |
s.parentNode.insertBefore(g, s); | |
var fxfMissionId="1b463464d9252bc9"; | |
var fxfPollId = "15a41c66437548b0"; | |
window.setTimeout(doIt, 2000) | |
function doIt() { |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>fastlane/snapshot</title> | |
<meta charset="UTF-8"> | |
<style type="text/css"> | |
* { | |
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; | |
font-weight: 300; |
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
/** | |
* Simple localStorage with Cookie Fallback | |
* v.1.0.0 | |
* | |
* USAGE: | |
* ---------------------------------------- | |
* Set New / Modify: | |
* store('my_key', 'some_value'); | |
* | |
* Retrieve: |
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 "tty-spinner" | |
require "tty-table" | |
require 'rest-client' | |
require "pry" | |
require 'xmlsimple' | |
require "colored" | |
module HJ | |
class VAST |
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 "spaceship" | |
Spaceship::Tunes::login("[email protected]") | |
app = Spaceship::Tunes::Application.find("krone.at-sport") | |
# get history of Promocodes | |
app.promocodes_history.each do | code | | |
puts "------" | |
puts "effective: #{code.effective_date}" | |
puts "expire: #{code.expiration_date}" |