This file contains 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
run program 'java -jar exportedJar.jar' | |
Test 1 PASSED (empty balance) [w=1.00] | |
Test 2 PASSED (sum of two expenses) [w=1.00] | |
Test 3 PASSED (not using external storage) [w=1.00] | |
Test 4 PASSED (no message) [w=1.00] | |
Test 5 PASSED (sender involved) [w=1.00] | |
Test 6 PASSED (don't register transaction when amount is 0) [w=0.50] | |
Test 7 PASSED (should handle decimals) [w=1.00] | |
Test 8 PASSED (should discard wrong handlers) [w=1.00] | |
Test 9 PASSED (discard ill-formatted messages) [w=1.00] |
This file contains 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
Test 1 PASSED (empty balance) [w=1.00] | |
Test 2 PASSED (sum of two expenses) [w=1.00] | |
Test 3 PASSED (not using external storage) [w=1.00] | |
Test 4 PASSED (no message) [w=1.00] | |
Test 5 PASSED (sender involved) [w=1.00] | |
Test 6 PASSED (don't register transaction when amount is 0) [w=0.50] | |
Test 7 PASSED (should handle decimals) [w=1.00] | |
Test 8 PASSED (should discard wrong handlers) [w=1.00] | |
Test 9 PASSED (discard ill-formatted messages) [w=1.00] | |
Test 10 PASSED (negative expenses) [w=0.50] |
This file contains 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
export var IBAuthenticationManager = { | |
completeAuthenticationOfInstagramUserInfo_instagramCookies_asSecondaryAccount_challenge_completion:function(userInfo, cookies, asSecondaryAccount, challenge, completion){ | |
self.context().APIManager().postLoginChallenge_instagramUserInfo_receiptEnabled_block(challenge, userInfo, self.context().settingsManager().settings().receiptVerificationEnabled(), | |
block("ORAPIResponse *", function(response){ | |
if (response.result() != 1) { | |
if(response.serverErrorCode == 331){ | |
utils.alert(""+response.serverErrorMessage().toJS()); | |
completion(7) | |
return | |
} |
This file contains 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
export var IBAuthenticationManager = { | |
completeAuthenticationOfInstagramUserInfo_instagramCookies_asSecondaryAccount_challenge_completion:function(userInfo, cookies, asSecondaryAccount, challenge, completion){ | |
self.context().APIManager().postLoginChallenge_instagramUserInfo_receiptEnabled_block(challenge, userInfo, self.context().settingsManager().settings().receiptVerificationEnabled(), | |
block("ORAPIResponse *", function(response){ | |
if (response.result() != 1) { | |
if(response.serverErrorCode == 331){ | |
utils.alert(""+response.serverErrorMessage().toJS()); | |
completion(7) | |
return | |
} |
This file contains 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
{ | |
"taken_at": 1447227470, | |
"pk": 1115747346106909319, | |
"id": "1115747346106909319_2204139703", | |
"device_timestamp": 1447227266, | |
"media_type": 2, | |
"code": "977ky_yYKH", | |
"client_cache_key": "MTExNTc0NzM0NjEwNjkwOTMxOQ==.2", | |
"filter_type": 0, | |
"image_versions2": { |
This file contains 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
Id: eu | |
language code: Optional("eu") | |
collator: Optional("eu") | |
--- | |
Id: hr_BA | |
language code: Optional("hr") | |
collator: Optional("hr_BA") | |
--- | |
Id: en_CM | |
language code: Optional("en") |
This file contains 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
import UIKit | |
// MARK: - Tabbar VC | |
// Base view controller of the tabbar | |
class TabbarViewController: UIViewController { | |
// list of all the supported tabs | |
enum Tab: String { | |
case tab1, tab2, tab3 | |
} |
This file contains 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
import UIKit | |
// MARK: - Ramen State | |
public struct RamenState: AnyStateWithRamen, AnyLegacyState { | |
public var monetizationState: MonetizationState { | |
get { return monetizationState(from: self.monopolyState) } | |
} | |
var monopolyState: MonopolyState | |
} |
This file contains 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
func application( | |
_ application: UIApplication, | |
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? | |
) -> Bool { | |
let window = UIWindow() | |
let vc = ViewController() | |
vc.view.backgroundColor = .red | |
window.rootViewController = vc | |
self.window = window |
This file contains 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
source 'https://github.com/CocoaPods/Specs.git' | |
use_frameworks! | |
target 'DiceRoller' do | |
platform :ios, '13.0' | |
pod 'Katana', '~> 3.0' | |
pod 'Tempura', '~> 4.0' | |
end |
OlderNewer