Skip to content

Instantly share code, notes, and snippets.

View haroonabbasi's full-sized avatar
💭
always looking out for new tools new libraries

Haroon Abbasi haroonabbasi

💭
always looking out for new tools new libraries
  • Lahore
View GitHub Profile
@haroonabbasi
haroonabbasi / stuns
Created August 24, 2017 19:35 — forked from zziuni/stuns
STUN server list
# source : http://code.google.com/p/natvpn/source/browse/trunk/stun_server_list
# A list of available STUN server.
stun.l.google.com:19302
stun1.l.google.com:19302
stun2.l.google.com:19302
stun3.l.google.com:19302
stun4.l.google.com:19302
stun01.sipphone.com
stun.ekiga.net
stun.l.google.com:19302
@haroonabbasi
haroonabbasi / cmd.md
Last active October 27, 2016 09:17
Node related Commands

#for build tools

package like node-gyp require this command

npm install --global --production windows-build-tools
@haroonabbasi
haroonabbasi / gist:5ccc3569f218248246fb
Created March 10, 2016 11:17
Appcelerator Titanium - Check for iOS 7
// check for iOS7
if (OS_IOS && parseInt(Titanium.Platform.version.split(".")[0], 10) >= 7) {
}
@haroonabbasi
haroonabbasi / solution.md
Last active October 22, 2015 10:40
Titanium - Android Pinch Zoom Solution

Using Web View

		var scrollView = Ti.UI.createWebView({
			url:imageURL
			enableZoomControls:true
		});

Using Native Module

@haroonabbasi
haroonabbasi / new_gist_file.js
Created October 20, 2015 12:53
Titanium: get Image Size from ImageView
image_view.addEventListener("load",getImageSize);
function getImageSize(e) {
var blob = e.source.toBlob();
if (blob === null) {
Ti.API.info("unable to get image size");
} else {
Ti.API.info("id:" + e.source.id + " size=" + blob.width + "x" + blob.height);
}
}
@haroonabbasi
haroonabbasi / new_gist_file.md
Last active September 21, 2015 11:45
Awesome Titanium
// media is the video url or the video file blob source
// cb - callback function to receive the thumb image and video duration in seconds
// size - dimension of one side of the required thumb (the other side will be calculated based on aspect ratio)
function getVideoThumb = function(media, cb, size) {
var player = Titanium.Media.createVideoPlayer({
autoplay : false,
media : media,
scalingMode : Ti.Media.VIDEO_SCALING_MODE_FILL
});