Skip to content

Instantly share code, notes, and snippets.

View merenkoff's full-sized avatar
:octocat:
Focusing

Serg Merenkov merenkoff

:octocat:
Focusing
View GitHub Profile
@merenkoff
merenkoff / ipagrabber.py
Created December 24, 2024 14:32 — forked from n0mi1k/ipagrabber.py
.IPA file extracter for Apple Configurator
import os
import shutil
"""
Steps to retrieve the IPA file from the Configurator app:
1. Install Apple Configurator from the Mac App Store and sign in
2. Connect your iOS device to your Mac
3. Select "Add > Apps..." and search for the app you want to install, click "Add"
4. The newer Apple Configurator deletes the IPA after installing it, so you'll need to use this tool to grab it
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
Абрамчук Геннадій Віталійович; 07.**.***4; ПОЛК ШВИДКОГО РЕАГУВАННЯ ГУ МВС УКРАЇНИ «БЕРКУТ»
Абрамянц Сергій Вікторович; 27.**.***4; ПМОП «БЕРКУТ» ПРИ ГУМВС УКРАЇНИ В АР КРИМ
Авдейчик Микола Петрович; 09.**.***0; БМОП «БЕРКУТ» УМВС УКРАІНИ В ДНІПРОПЕТРОВСЬКІЙ ОБЛ.
Авраменко Олег Григорович; 04.**.***8; ОРМОП «БЕРКУТ» УМВС УКРАІНИ В ЗАПОРІЗЬКІЙ ОБЛ.
Аврамов Микола Петрович; 27.**.***1; ПОЛК ШВИДКОГО РЕАГУВАННЯ ГУ МВС УКРАЇНИ «БЕРКУТ»
Агєєв Олексій Борисович; 01.**.***8; БМОП «БЕРКУТ» УМВС УКРАІНИ В ДОНЕЦЬКІЙ ОБЛ.
Адамович Роман Ігорович; 30.**.***6; ОРМОП «БЕРКУТ» УМВС УКРАІНИ В ЗАПОРІЗЬКІЙ ОБЛ.
Адамчук Сергій Степанович; 08.**.***6; ПОЛК ШВИДКОГО РЕАГУВАННЯ ГУ МВС УКРАЇНИ «БЕРКУТ»
Аксьонов Владислав Олександрович; 03.**.***3; ОРМОП «БЕРКУТ» УМВС УКРАІНИ В ЗАПОРІЗЬКІЙ ОБЛ.
Аксьонов Олександр Іванович; 05.**.***6; БМОП «БЕРКУТ» УМВС УКРАІНИ В ДОНЕЦЬКІЙ ОБЛ.
#import <Foundation/Foundation.h>
@interface Node : NSObject
@property (nonatomic) NSInteger identifier;
@property (nonatomic, copy) NSString *value;
+ (Node *)nodeWithIdentifier:(NSInteger)identifier value:(NSString *)value;
@end
@implementation Node
+ (Node *)nodeWithIdentifier:(NSInteger)identifier value:(NSString *)value {
#!/bin/sh
# Launch application using ios-sim and set up environment to inject test bundle into application
# Source: http://stackoverflow.com/a/12682617/504494
if [ "$RUN_APPLICATION_TESTS_WITH_IOS_SIM" = "YES" ]; then
test_bundle_path="$BUILT_PRODUCTS_DIR/$PRODUCT_NAME.$WRAPPER_EXTENSION"
environment_args="--setenv DYLD_INSERT_LIBRARIES=/../../Library/PrivateFrameworks/IDEBundleInjection.framework/IDEBundleInjection --setenv XCInjectBundle=$test_bundle_path --setenv XCInjectBundleInto=$TEST_HOST"
ios-sim launch $(dirname $TEST_HOST) $environment_args --args -SenTest All $test_bundle_path
echo "Finished running tests with ios-sim"
//
// UIDeviceHardware.h
//
// Used to determine EXACT version of device software is running on.
#import <Foundation/Foundation.h>
@interface UIDeviceHardware : NSObject
- (NSString *) platform;
@merenkoff
merenkoff / accounts_ios_001
Last active December 18, 2015 15:38
AccountsiOS pod public
Pod::Spec.new do |s|
s.name = "AccountTunehogiOS"
s.version = "0.1.0"
s.summary = "a Pod for usage Accounts Tunehog.com authorisation mechanism."
s.homepage = "http://tunhog.com/AccountTunehogiOS"
s.license = 'GPL'
s.authors = { "Sergei Merenkov" => "[email protected]", "Eugene Koval" => "[email protected]" }
s.source = { :git => "[email protected]:wetunein/accounts-ios.git", :tag => "0.1.0"}
 /**
    * Request OAuth access token
    *
    * @param  string $code OAuth code we got from service
    * @return string Token, or null if we didn't obtain a proper token
    */
   protected function _requestToken($code)
   {
       $config = $this->_config->oauth;
@merenkoff
merenkoff / git_help_wiki.md
Last active December 15, 2015 17:59
Git help wiki