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
// ==UserScript== | |
// @name Remove Ads | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Removes ads from colonist.io | |
// @author jonalter | |
// @match https://colonist.io/ | |
// @icon https://www.google.com/s2/favicons?domain=colonist.io | |
// @grant none | |
// ==/UserScript== |
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
// ==UserScript== | |
// @name Google Meet Video Background | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Allow selecting videos as your background | |
// @author jonalter | |
// @match https://meet.google.com/* | |
// @icon https://www.google.com/s2/favicons?domain=google.com | |
// @grant none | |
// ==/UserScript== |
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
<modules/> | |
<extensions> | |
<extension projectPath="/Users/jalter/Projects/TodayExtension/Test1">TestToday</extension> | |
</extensions> |
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
{ | |
"driver.socketPort":40405 | |
} |
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
//////////////////////////////////////////////////////// | |
// Constants | |
//////////////////////////////////////////////////////// | |
function isIOS7Plus() { | |
if (Titanium.Platform.name == 'iPhone OS') | |
{ | |
var version = Titanium.Platform.version.split("."); | |
var major = parseInt(version[0],10); | |
if (major >= 7) |
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
Titanium.Media.openPhotoGallery({ | |
success:function(event){ | |
var myImage = event.media; | |
var xhr = Titanium.Network.createHTTPClient(); | |
xhr.open('POST','http:// ------ /uploads.php'); | |
xhr.onerror = function(e){alert(e.error);}; | |
xhr.setTimeout(200000); |
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
module.exports = new function() { | |
// local values | |
/*******************************************************************************/ | |
/* | |
local values used for defining the required properties (IE: you can change this section to | |
taste by adding or removing values if desired) | |
Examples: |
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
//////////////////////////////////////////////////////// | |
// Urban Airship | |
// Uncomment the code below to use Urban Airship | |
//////////////////////////////////////////////////////// | |
/** | |
var UrbanAirship = require('ti.urbanairship'); | |
UrbanAirship.tags = [ 'testingtesting', 'appcelerator', 'my-tags' ]; | |
UrbanAirship.alias = 'testDevice'; |
NewerOlder