Skip to content

Instantly share code, notes, and snippets.

View odemolliens's full-sized avatar

@odemolliens odemolliens

View GitHub Profile
@odemolliens
odemolliens / ODAnnotation.h
Last active August 29, 2015 14:01
MKAnnotation Override
//
// ODMapAnnotation.h
// iVelo
//
// Created by Olivier Demolliens on 24/06/13.
// Copyright (c) 2013 Olivier Demolliens. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <MapKit/MapKit.h>
@odemolliens
odemolliens / NSUrlConnection+Blocks
Last active August 29, 2015 14:02
NSURLConnection with blocks for Swift language
//
//Copyright 2014 Olivier Demolliens - @odemolliens
//
//Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
//
//file except in compliance with the License. You may obtain a copy of the License at
//
//http://www.apache.org/licenses/LICENSE-2.0
//
//Unless required by applicable law or agreed to in writing, software distributed under
@odemolliens
odemolliens / FontFactory.java
Last active February 22, 2016 08:40
FontFactory - improve performance when using custom fonts
import java.util.HashMap;
import android.content.Context;
import android.graphics.Typeface;
import android.util.Log;
/**
* Manage font
* @author Olivier Demolliens. @odemolliens
*/
@odemolliens
odemolliens / multipleRows.mm
Last active April 4, 2016 10:24 — forked from suda/multipleRows.mm
Multiple Row Selection in UIPickerView
- (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];
@odemolliens
odemolliens / FileUploader.swift
Last active August 11, 2016 07:36 — forked from ncerezo/FileUploader.swift
Alamofire multipart upload
//
// 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 {
@odemolliens
odemolliens / BridgingHeader.h
Created September 21, 2016 06:00 — forked from zgchurch/BridgingHeader.h
Using SQLite3 from Swift
// 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>
@odemolliens
odemolliens / .swift
Created October 5, 2016 11:37
iOS Swift dashed lines extension
public let kShapeDashed : String = "kShapeDashed"
extension UIView {
func removeDashedBorder(_ view: UIView) {
view.layer.sublayers?.forEach {
if kShapeDashed == $0.name {
$0.removeFromSuperlayer()
}
}
@odemolliens
odemolliens / gist:a948bafbaf06bbf8c72f993cdfb1395d
Created December 12, 2016 14:52 — forked from reixa00/gist:94543264bbe3b9d94d26
Shared OkHttp application Interceptor that will add or intercept E-Tag hash for ALL requests on client instance
// 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;
@odemolliens
odemolliens / sim-run.sh
Created December 23, 2016 08:02 — forked from shazron/sim-run.sh
Run Xcode Simulator project from the command line XCode 8
#!/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
@odemolliens
odemolliens / ExportKindle.js
Created March 2, 2017 08:18 — forked from jkubecki/ExportKindle.js
Amazon Kindle Export
// 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) {