Skip to content

Instantly share code, notes, and snippets.

View Vasant-Patel's full-sized avatar

patel Vasant-Patel

View GitHub Profile
@Vasant-Patel
Vasant-Patel / gist:f555e539e2b8247667cd0f8ee68a13e0
Created August 30, 2016 08:50
Solving the NSAppTransportSecurity
/usr/bin/nscurl --verbose --ats-diagnostics https://yourserver.com
@Vasant-Patel
Vasant-Patel / floatsign.sh
Created February 19, 2016 10:50 — forked from mediabounds/floatsign.sh
A small bash script to re-sign iOS applications.
# !/bin/bash
# Copyright (c) 2011 Float Mobile Learning
# http://www.floatlearning.com/
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
@Vasant-Patel
Vasant-Patel / GetFonts.swift
Created January 1, 2016 15:26
Get all available fonts - Swift/iOS/Functional
var fonts = UIFont.familyNames().map({ UIFont.fontNamesForFamilyName($0)}).reduce([]) { $0 + $1 }