Skip to content

Instantly share code, notes, and snippets.

View Raztor0's full-sized avatar

Razvan Bangu Raztor0

View GitHub Profile
@Raztor0
Raztor0 / RBLinkedList.m
Last active August 5, 2017 20:44
RBLinkedList
NS_ASSUME_NONNULL_BEGIN
@interface RBLinkedListNode : NSObject
@property (nonatomic, strong, readonly, nullable) RBLinkedListNode *previous;
@property (nonatomic, strong, readonly, nullable) RBLinkedListNode *next;
@property (nonatomic, strong, readonly) id object;
+ (instancetype)new NS_UNAVAILABLE;
- (instancetype)init NS_UNAVAILABLE;
import requests
r = requests.get("https://emojilive.content.disney.io/__mapping_emoji_prod.json")
manifest_url = "https://emojilive.content.disney.io/" + r.json()["default"]["n"]
r = requests.get(manifest_url)
game_json_url = "https://emojilive.content.disney.io/" + str(r.json()["paths"]["Game.json"]["v"]) + "/Game.json"
print ("Current Game.json URL: " + game_json_url)
@Raztor0
Raztor0 / iTunesMetadata.plist
Last active October 11, 2021 07:48
iTunesMetadata.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>UIRequiredDeviceCapabilities</key>
<dict>
<key>armv7</key>
<true/>
</dict>
<key>appleId</key>
@Raztor0
Raztor0 / com.apple.ZipMetadata.plist
Created December 29, 2017 21:09
com.apple.ZipMetadata.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CreatorToolCommandLine</key>
<string>"ZipTool" "-c" "10485760" "-s" "-" "-m" "deflate" "extDirabhffjyemxgbjvwk" "znr4517765794991297945"</string>
<key>CreatorToolUUID</key>
<string>E2ECA9F4-FFF3-3A57-A037-F12BFE1B9748</string>
<key>RecordCount</key>
<integer>370</integer>
@Raztor0
Raztor0 / Info.plist
Created December 29, 2017 21:58
Info.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>DTXcode</key>
<string>0720</string>
<key>DTSDKName</key>
<string>iphoneos9.2</string>
<key>CFBundleName</key>
<string>RS Xchange</string>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>UIStoryboardDesignatedEntryPointIdentifier</key>
<string>UIViewController-x1L-Z2-jkR</string>
<key>UIStoryboardVersion</key>
<integer>1</integer>
<key>UIViewControllerIdentifiersToNibNames</key>
<dict>
@Raztor0
Raztor0 / OSRSItemSearchTableViewCell.xib
Created December 30, 2017 00:42
OSRSItemSearchTableViewCell.xib
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="13771" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES">
<device id="retina4_7" orientation="portrait">
<adaptation id="fullscreen"/>
</device>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13772"/>
<capability name="Aspect ratio constraints" minToolsVersion="5.1"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
@Raztor0
Raztor0 / Manifest.plist
Created December 30, 2017 01:11
Manifest.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>SinfPaths</key>
<array>
<string>SC_Info/RS Xchange.sinf</string>
</array>
<key>SinfReplicationPaths</key>
<array>
@Raztor0
Raztor0 / CodeResources
Created December 30, 2017 01:19
CodeResources
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>files</key>
<dict>
<key>AppIcon29x29.png</key>
<data>
g3rQDPhaPPiICI9uF1X6Zu/z7eI=
</data>
@Raztor0
Raztor0 / archived-expanded-entitlements.xcent
Created December 30, 2017 01:28
archived-expanded-entitlements.xcent
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>application-identifier</key>
<string>69CN5HMUNT.co.razio.RS-Exchange</string>
<key>keychain-access-groups</key>
<array>
<string>69CN5HMUNT.co.razio.RS-Exchange</string>
</array>