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
Pod::Spec.new do |s| | |
s.name = "FlipView" | |
s.version = "0.0.1" | |
s.summary = "Magazine Style View/Layout like Flipboard." | |
s.homepage = "https://github.com/Reefaq/FlipView" | |
s.license = 'MIT' | |
s.author = { "Reefaq" => "Reefaq@Reefaq.com" } | |
s.source = { :git => "https://github.com/Reefaq/FlipView.git", :commit => "c2df511c6c5a98e9eb6b9ccfb57681a0f7af09a1" } | |
s.source_files = 'Classes/AFKPageFlipper.*', 'Classes/ColorHelper.{h,m}' | |
end |
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
require "sinatra" | |
require "./lib/pocket.rb" | |
require "open-uri" | |
require "iconv" | |
require "json" | |
use Rack::Logger | |
helpers do |
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
require "sinatra" | |
require "./lib/pocket.rb" | |
require "open-uri" | |
require "iconv" | |
require "json" | |
enable :sessions | |
CALLBACK_URL = "http://localhost:4567/oauth/callback" |
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
Pod::Spec.new do |s| | |
s.name = "vfrReader" | |
s.version = "2.6.2" | |
s.summary = "An open source PDF file reader/viewer for iOS." | |
s.homepage = "https://github.com/vfr/Reader" | |
s.license = 'MIT' | |
s.author = { "Julius Oklamcak" => "joklamcak@gmail.com" } | |
s.source = { :git => "https://github.com/vfr/Reader.git", :commit => "87a138c0b389d270807ee5fb82fdaf9516305aad" } | |
s.platform = :ios, '5.0' | |
s.source_files = 'Sources/**/*.{h,m}' |
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
Pod::Spec.new do |s| | |
s.name = 'PrettyKit' | |
s.version = '0.3.0' | |
s.license = 'MIT' | |
s.summary = 'PrettyKit for iOS is a small set of new widgets and UIKit subclasses that gives you a deeper UIKit customization.' | |
s.homepage = 'http://github.com/vicpenap/PrettyKit' | |
s.author = { 'Victor Pena' => 'contact@victorpena.es' } | |
s.source = { :git => 'https://github.com/jessesquires/PrettyKit.git', | |
:branch => 'arc' } | |
s.description = 'PrettyKit for iOS is a small set of new widgets and UIKit subclasses that gives you a deeper UIKit customization. You will be able to change their background color, add gradients, shadows, etc.' |
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
- (BOOL)validateNRIC:(NSString*)nric { | |
nric = [nric uppercaseString]; | |
// NRIC length should be 9 | |
if ([nric length]!=9) { | |
return NO; | |
} | |
//NRIC.charAt( 0 ) should be “S” or “T” | |
unichar prefix = [nric characterAtIndex:0]; |
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 | |
if [ $# == 1 ] | |
then | |
echo "UDIDs inside IPA: $1" | |
unzip -p "$1" Payload/\*.app/embedded.mobileprovision | grep -a "[a-z0-9]\{40\}" | |
elif [ $# == 2 ] | |
then | |
echo "Searching UDID: '$2' inside: '$1'" | |
unzip -p "$1" Payload/\*.app/embedded.mobileprovision | grep -a "[a-z0-9]\{40\}" | tr -d ' ' | grep "$2" |
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
#!/usr/bin/env ruby | |
require 'plist' | |
require 'json' | |
require 'csv' | |
header = ['city_name', 'type', 'address', 'branch_name', 'lat', 'lon', 'phone'] | |
csv = CSV.open('branches.csv', 'w', {force_quotes: true}) do |csv| | |
csv << header |
NewerOlder