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 compress(videoPath : String, exportVideoPath : String, renderSize : CGSize, completion : (Bool) -> ()) { | |
let videoUrl = NSURL(fileURLWithPath: videoPath) | |
if (!existsFileAtUrl(videoUrl)) { | |
completion(false) | |
return | |
} | |
let videoAssetUrl = AVURLAsset(URL: videoUrl, options: nil) | |
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
Request URL:https://api.quickblox.com/login.json | |
2017-03-16 14:28:23.594 streetiesapp[47297:2713073] [QBCore] Request method: POST | |
2017-03-16 14:28:23.594 streetiesapp[47297:2713073] [QBCore] Request parameters:{ | |
keys = { | |
token = EAAGA20NDBUsBAKmhxqBaBOfm0QBuR3gEVjk9Foj2hm1EW5bzGLgptwh4T6DVb0395YyN3ZAQ4t2FeUONzx4Yg1fpeNKBY4FdZA3dI7ZBQic4uZCtEWUUxqZAqhgA6EwDIGXSUJlZAoMOqGoFwCv8ZCZA581CsqS7T2PBIhJNxu4HllnZBNMOcQWNd7BSNWeGBmFFOQ6p8yTNoEmLyV8khkSMkoY8dXmEmO5ys4wRTCif6ygZDZD; | |
}; | |
provider = facebook; | |
} | |
2017-03-16 14:28:23.595 streetiesapp[47297:2713073] [QBCore] Request headers: { | |
"Accept-Language" = "en;q=1"; |
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
token:EAAGA20NDBUsBACpi2eZBNcSuFKReqMHmUbCJ6n5vDP6IiOsWLtiiP6SfZA69aBObFxkaCmFn97AU2dAm0FwiZAZAKj1vJNWP7sCQZB15suYtgZBvu3AZBGZAbIJyz1PwnM4ZB2hY6dhlhTc1jBZCePJAOqYPSwQmh6vg7IeBXNyGDUi5BMbKKeuPSY3Yo4zN642oVnQSH82LBiewo3JSjSSnZBR | |
D/QBASDK: ========================================================= | |
=== REQUEST ==== 3f5adf47-29ac-414f-9046-6ed08d4c78d6 === | |
REQUEST | |
POST https://api.quickblox.com/login.json | |
HEADERS | |
QuickBlox-REST-API-Version=0.1.1 | |
QB-SDK=Android 3.3.0 | |
PARAMETERS | |
provider=facebook |
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
// The following data should be run in the console while viewing the page https://read.amazon.com/ | |
// It will export a CSV file called "download" which can (and should) be renamed with a .csv extension | |
var db = openDatabase('K4W', '2', 'thedatabase', 1024 * 1024); | |
getAmazonCsv = function() { | |
// Set header for CSV export line - change this if you change the fields used | |
var csvData = "ASIN,Title,Authors,PurchaseDate\n"; | |
db.transaction(function(tx) { |
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/bash | |
# | |
# Build and iPhone Simulator Helper Script | |
# Shazron Abdullah 2011 | |
# | |
# WARN: - if your .xcodeproj name is not the same as your .app name, | |
# this won't work without modifications | |
# - you must run this script in where your .xcodeproj file is | |
PROJECTNAME=$1 |
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
// by Nikola Despotoski | |
import android.content.Context; | |
import android.text.TextUtils; | |
import com.squareup.okhttp.Headers; | |
import com.squareup.okhttp.Interceptor; | |
import com.squareup.okhttp.Request; | |
import com.squareup.okhttp.Response; |
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
public let kShapeDashed : String = "kShapeDashed" | |
extension UIView { | |
func removeDashedBorder(_ view: UIView) { | |
view.layer.sublayers?.forEach { | |
if kShapeDashed == $0.name { | |
$0.removeFromSuperlayer() | |
} | |
} |
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
// 1. Create this file in your Xcode project | |
// 2. Go to "Build Settings" and find "Objective-C Bridging Header." Use the search bar to find it quickly. | |
// 3. Double-click and type "BridgingHeader.c" | |
// If you get "Could not import Objective-C Header," try "my-project-name/BridgingHeader.h" | |
// 4. Go to "Build Phases," "Link Binary With Libraries," and add libsqlite3.0.dylib | |
#include <sqlite3.h> |
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
// | |
// FileUploader.swift | |
// | |
// Copyright (c) 2015 Narciso Cerezo Jiménez. All rights reserved. | |
// Largely based on this stackoverflow question: http://stackoverflow.com/questions/26121827/uploading-file-with-parameters-using-alamofire/28467829// | |
import Foundation | |
import Alamofire | |
private struct FileUploadInfo { |
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
- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view { | |
UITableViewCell *cell = (UITableViewCell *)view; | |
if (cell == nil) { | |
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil]; | |
[cell setBackgroundColor:[UIColor clearColor]]; | |
[cell setBounds:CGRectMake(0, 0, cell.frame.size.width - 20, 44)]; | |
cell.tag = row; | |
UITapGestureRecognizer * singleTapGestureRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(toggleSelection:)]; | |
singleTapGestureRecognizer.numberOfTapsRequired = 1; | |
[cell addGestureRecognizer:singleTapGestureRecognizer]; |
NewerOlder