Skip to content

Instantly share code, notes, and snippets.

View roman-dzieciol's full-sized avatar
🎯
Focusing

Roman Dzieciol roman-dzieciol

🎯
Focusing
View GitHub Profile
@roman-dzieciol
roman-dzieciol / readme.txt
Last active February 19, 2016 16:48
Creating FAT binaries in Xcode without lipo scripts
Creating FAT binaries in Xcode without lipo scripts
import Foundation
public class MultiArchFramework {
public init() {}
public func random() -> Int {
return 42
}
}
import XCTest
@testable import MultiArchFramework
class MultiArchFrameworkTests: XCTestCase {
func testItWorks() {
XCTAssertEqual(MultiArchFramework().random(), 42)
}
}
//:configuration = Debug
SDKROOT = iphoneos
SDKROOT[arch=i386] = $(CORRESPONDING_SIMULATOR_SDK_NAME)
SDKROOT[arch=x86_64] = $(CORRESPONDING_SIMULATOR_SDK_NAME)
//:configuration = Release
SDKROOT = iphoneos
SDKROOT[arch=i386] = $(CORRESPONDING_SIMULATOR_SDK_NAME)
SDKROOT[arch=x86_64] = $(CORRESPONDING_SIMULATOR_SDK_NAME)
Here are some ideas I was thinking about a lot recently.
I was going to create external app for deck building using ue4, to get myself more familiar with codebase & because I like it ^^
I'd love to prototype them still, and any other that may be too experimental to put in game at this point.
New feature: Detailed character stats
I'd love to see character stats in the deck builder, perhaps as collapsible panel somewhere. Seeing how each stat is affected by level would be very helpful as well.
New feature: Build order
@roman-dzieciol
roman-dzieciol / DeckBuilder.txt
Last active March 20, 2016 16:25
DeckBuilder
Here are some ideas I was thinking about a lot recently.
I was going to create external app for deck building using ue4, to get myself
more familiar with codebase & because I like it ^^
I'd love to prototype them still, and any other that may be too experimental to
put in game at this point.
New feature: Detailed character stats
import UIKit
class CustomWindow: UIWindow {
}
class ViewController: UIViewController {
var window: UIWindow?
@roman-dzieciol
roman-dzieciol / gist:8ebf68ae4397a4e7ce3352e2f431d21e
Created March 19, 2018 16:38
NSLocale.availableLocaleIdentifiers
(lldb) po NSLocale.availableLocaleIdentifiers
▿ 789 elements
- 0 : "eu"
- 1 : "hr_BA"
- 2 : "en_CM"
- 3 : "en_BI"
- 4 : "rw_RW"
- 5 : "ast"
- 6 : "en_SZ"
- 7 : "he_IL"
@roman-dzieciol
roman-dzieciol / gist:2faa92d2d804f0a1f8494366bb92a85c
Created March 19, 2018 16:39
NSTimeZone.knownTimeZoneNames
po NSTimeZone.knownTimeZoneNames
▿ 437 elements
- 0 : "Africa/Abidjan"
- 1 : "Africa/Accra"
- 2 : "Africa/Addis_Ababa"
- 3 : "Africa/Algiers"
- 4 : "Africa/Asmara"
- 5 : "Africa/Bamako"
- 6 : "Africa/Bangui"
- 7 : "Africa/Banjul"
@roman-dzieciol
roman-dzieciol / gist:40bac5ccec604039c4781f1494c5a117
Created March 19, 2018 16:40
NSTimeZone.abbreviationDictionary
po NSTimeZone.abbreviationDictionary
▿ 51 elements
▿ 0 : 2 elements
- key : "CEST"
- value : "Europe/Paris"
▿ 1 : 2 elements
- key : "CDT"
- value : "America/Chicago"
▿ 2 : 2 elements
- key : "EET"