plist: itms-services://?action=download-manifest&url=https://ssl.pgyer.com/app/plist/{app_id}}/s.plist
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
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Reflection; | |
using Realms; | |
namespace ProjectName.Core.Extensions | |
{ | |
public static class RealmExtension | |
{ |
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
#xcodebuild location | |
XBUILD=/Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild | |
#Project root | |
PROJECT_ROOT=/Volumes/LongTime/Shared/RESideMenu/ | |
#Complete Project Path | |
PROJECT=/Volumes/LongTime/Shared/RESideMenu/RESideMenu.xcodeproj | |
#Target Name |
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
# SWAMI KARUPPASWAMI THUNNAI | |
# ============================================================ | |
# Simple yet Hackable! WhatsApp API [UNOFFICIAL] for Python3 | |
# Note: The author gives permission to use it under Apache 2.0 | |
# Special Thanks To: alecxe, For reviewing my code! | |
# ============================================================ | |
import time | |
import datetime as dt |
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
#!/bin/sh | |
# JenkinsStart.sh | |
# scripts | |
# | |
# Created by Vineet Choudhary on 26/05/17. | |
# Copyright © 2017 Vineet Choudhary. All rights reserved. | |
echo -n "Jenkins CI Server" | |
echo -n "Cleaning Jenking CI Server" |
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
+ (void)removeAllStoredCredentials{ | |
// Delete any cached URLrequests! | |
NSURLCache *sharedCache = [NSURLCache sharedURLCache]; | |
[sharedCache removeAllCachedResponses]; | |
// Also delete all stored cookies! | |
NSHTTPCookieStorage *cookieStorage = [NSHTTPCookieStorage sharedHTTPCookieStorage]; | |
NSArray *cookies = [cookieStorage cookies]; | |
id cookie; | |
for (cookie in cookies) { |
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
#Ref http://stackoverflow.com/a/18354072/317461 | |
#Put your release build and your .dSYM file in the same directory and open terminal | |
$cd directory | |
$lldb MyApp.app | |
(lldb) image lookup -v --address 0x00085f3c |
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
#Get the p12 file, it needs to be converted to the PEM format by executing this command from the terminal: | |
openssl pkcs12 -clcerts -nokeys -out apns-dev-cert.pem -in apns-dev-cert.p12 | |
openssl pkcs12 -nocerts -out apns-dev-key.pem -in apns-dev-key.p12 | |
#If you want to create pem file without passphase, use -nodes | |
openssl pkcs12 -nocerts -out apns-dev-key.pem -in apns-dev-key.p12 -nodes | |
#If you wish to remove the passphrase, either do not set one when exporting/converting or execute: | |
openssl rsa -in apns-dev-key.pem -out apns-dev-key-noenc.pem |
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
<script type="text/javascript"> | |
$(document).ready(function () { | |
GetLatestReleaseInfo(); | |
}); | |
function GetLatestReleaseInfo() { | |
$.getJSON("https://api.github.com/repos/ShareX/ShareX/releases/latest").done(function (release) { | |
var asset = release.assets[0]; | |
var downloadCount = 0; | |
for (var i = 0; i < release.assets.length; i++) { |
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
using Newtonsoft.Json; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Net.Http; | |
using System.Net.Http.Headers; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace TestAnalyticsAPI |
NewerOlder