Skip to content

Instantly share code, notes, and snippets.

// Shows the share sheet with the given items with a list of excludedActivityTypes. See Apple\'s docs for more information on excludedActivityTypes.
public static void shareItems( string[] items, string[] excludedActivityTypes )
// Shows the Facebook composer with optional image path and link
public static void showFacebookComposer( string message, string imagePath, string link )
// Only applies to iOS level Twitter account (Settings -> Twitter)! Shows the tweet composer with the status message and optional image and link.
public static void showTweetComposer( string status, string pathToImage, string link )
@ftvs
ftvs / tk2dTweenAlpha
Created March 7, 2013 13:12
Alpha tween for 2D toolkit sprites. Inherits NGUI's UITweener.
// Alpha tween for 2D toolkit sprites. Uses same method signatures as NGUI's
// TweenAlpha.
using UnityEngine;
using System.Collections;
[RequireComponent (typeof(tk2dBaseSprite))]
public class tk2dTweenAlpha : UITweener
{
public float from = 0f;
@ftvs
ftvs / iOS_time_zones.txt
Created July 30, 2015 09:03
List of time zones on iOS. Displays 30 July 2015 12AM GMT+0 in various time zones.
July 30, 2015 at 12:00:00 AM GMT Africa/Abidjan
July 30, 2015 at 12:00:00 AM GMT Africa/Accra
July 30, 2015 at 3:00:00 AM GMT+3 Africa/Addis_Ababa
July 30, 2015 at 1:00:00 AM GMT+1 Africa/Algiers
July 30, 2015 at 3:00:00 AM GMT+3 Africa/Asmara
July 30, 2015 at 12:00:00 AM GMT Africa/Bamako
July 30, 2015 at 1:00:00 AM GMT+1 Africa/Bangui
July 30, 2015 at 12:00:00 AM GMT Africa/Banjul
July 30, 2015 at 12:00:00 AM GMT Africa/Bissau
July 30, 2015 at 2:00:00 AM GMT+2 Africa/Blantyre
@ftvs
ftvs / main.py
Created November 16, 2014 13:08
Project Euler
import os, sys
if __name__ == '__main__':
print("Python Version: " + sys.version)
print("Python Executable: " + sys.executable)
print("Env var TEST_NAME: " + os.getenv('TEST_NAME', None))
def primes(maxprime):
primes = [2]