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
var s = '19820'; | |
s = s.split(''); | |
var intVar = 0; | |
var factor = (s.length==1) ? 1 : Math.pow(10, s.length-1) ; | |
for(var i=0; i< s.length; i++){ | |
intVar += s[i] * factor; | |
factor = factor/10; | |
} | |
console.log(intVar) |
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
webview = new UIWebView() | |
webview.setAudioSession( AudioSession.PLAYBACK ) |
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
public function init():void{ | |
nativeWeb = new UIWebView(); | |
nativeWeb.stage = stage; | |
nativeWeb.viewPort = new Rectangle(0,0,1024,748); | |
nativeWeb.loadURL('http://darkredz.com') | |
button.addEventListener(MouseEvent.CLICK, onClick) | |
nativeWeb.addEventListener(PrintJobEvent.COMPLETE, onDone) | |
nativeWeb.addEventListener(PrintJobErrorEvent.ERROR, onError) | |
} |
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
<!DOCTYPE html> | |
<html> | |
<body> | |
<div id="player"></div> | |
<script> | |
var tag = document.createElement('script'); | |
tag.src = "//www.youtube.com/iframe_api"; | |
var firstScriptTag = document.getElementsByTagName('script')[0]; | |
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag); |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<style>body{margin:0px 0px 0px 0px;}</style> | |
</head> | |
<body> | |
<div id="player"></div> | |
<script> | |
var tag = document.createElement('script'); | |
tag.src = "http://www.youtube.com/player_api"; |
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
//additional compiler options: -define+=DEFINE::IOS,true | |
package | |
{ | |
DEFINE::IOS | |
{ | |
// import some IOS only stuff | |
} |
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
protected function view1_viewActivateHandler(event:ViewNavigatorEvent):void | |
{ | |
if(fsVideo) return; | |
fsVideo = new VideoPlayer(stage, new Rectangle(0,0,stage.stageWidth, stage.stageHeight)); | |
//this will auto play and enter full screen mode | |
fsVideo.initAndLoad("videos/IKH5zGaSIfs_c.mp4","video/mp4",true,false,false,false); | |
//make video player fullsize (width and height covers full stage size) |
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> | |
<html><head> | |
<META http-equiv="Content-Type" content="text/html; charset=UTF-8"/> | |
<style>body{margin:0px;}</style> | |
</head> | |
<body> | |
<!-- 1. The <div> tag will contain the <iframe> (youtube video player) --> | |
<div id="player"></div> | |
<script> |
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
<?php | |
//With proper Indexing this will be a lot faster than JS Expression | |
$categoryInput = strtolower($postedFromSomeWhere); | |
$categoryInput = preg_quote($categoryInput); | |
$regex = new MongoRegex ('/^'. $categoryInput .'$/i'); | |
$categoryModel = new Category; | |
$rs = $categoryModel->findOne( | |
'username' => 'leng', |
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
<?php | |
//this would be slow to find case insensitive category | |
$categoryInput = strtolower($postedFromSomeWhere); | |
$categoryModel = new Category; | |
$rs = $categoryModel->findOne( | |
'$where' => 'this.category.toLowerCase()=="'. $categoryInput .'" && this.username=="leng"' | |
); |