• RSS Feeds
  • Audibase Recording App Banner

    sc_7cabc029490e9fcb99b8d58793c625bd

    Author


    S3audible Video Update

    [code]<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"><title>s3audible Updates</title></p> <style type=\"text/css\">a{color:#4A72AF} body,#header h1,#header h2,p{margin:0;padding:0} #main{border:1px solid #cfcece} img{display:block} p{color:#2E2E33} #top-message p,#bottom-message p{color:#2E2E33;font-size:12px;font-family:Arial, Helvetica, sans-serif} #header h1{color:#fff!important;font-family:\"Lucida Grande\", \"Lucida Sans\", \"Lucida Sans Unicode\", sans-serif;font-size:24px;margin-bottom:0!important;padding-bottom:0} #header h2{color:#fff!important;font-family:Arial, Helvetica, sans-serif;font-size:24px;margin-bottom:0!important;padding-bottom:0} #header p{color:#fff!important;font-family:\"Lucida Grande\", \"Lucida Sans\", \"Lucida Sans Unicode\", sans-serif;font-size:12px} h1,h2,h3,h4,h5,h6{margin:0 0 .8em} h3{font-size:28px;color:#444!important;font-family:Arial, Helvetica, sans-serif} h4{font-size:22px;color:#2E2E33!important;font-family:Arial, Helvetica, sans-serif} h5{font-size:18px;color:#444!important;font-family:Arial, Helvetica, sans-serif} p{font-size:12px;color:#444!important;font-family:\"Lucida [...]

    s3audible updates email

    [code]<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"><title>s3audible Updates</title></p> <style type=\"text/css\">a{color:#4A72AF} body,#header h1,#header h2,p{margin:0;padding:0} #main{border:1px solid #cfcece} img{display:block} p{color:#2E2E33} #top-message p,#bottom-message p{color:#2E2E33;font-size:12px;font-family:Arial, Helvetica, sans-serif} #header h1{color:#fff!important;font-family:\"Lucida Grande\", \"Lucida Sans\", \"Lucida Sans Unicode\", sans-serif;font-size:24px;margin-bottom:0!important;padding-bottom:0} #header h2{color:#fff!important;font-family:Arial, Helvetica, sans-serif;font-size:24px;margin-bottom:0!important;padding-bottom:0} #header p{color:#fff!important;font-family:\"Lucida Grande\", \"Lucida Sans\", \"Lucida Sans Unicode\", sans-serif;font-size:12px} h1,h2,h3,h4,h5,h6{margin:0 0 .8em} h3{font-size:28px;color:#444!important;font-family:Arial, Helvetica, sans-serif} h4{font-size:22px;color:#2E2E33!important;font-family:Arial, Helvetica, sans-serif} h5{font-size:18px;color:#444!important;font-family:Arial, Helvetica, sans-serif} p{font-size:12px;color:#444!important;font-family:\"Lucida [...]

    Dummy code for mobile recording device

    [code]var main = require(\'controller\'); var helpers = require(\'helper\'); exports.create = function(model) { var file; var timer; var sound; duration = 0; self = Ti.UI.createWindow({ title: \'Audio Recording from audibase\', backgroundColor: \'#edeff1\' }); Titanium.Media.audioSessionMode = Ti.Media.AUDIO_SESSION_MODE_PLAY_AND_RECORD; var record = Ti.Media.createAudioRecorder(); record.compression = Ti.Media.AUDIO_FORMAT_ULAW; record.format = Ti.Media.AUDIO_FILEFORMAT_WAVE; label = Titanium.UI.createLabel({ text:\'\', top:150, color:\'#999\', textAlign:\'center\', width:\'auto\', height:\'auto\' }); [...]

    Absolutely love google for this html5 canvas fix

    [code]<meta charset=\"utf-8\" http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=IE6\">[/code] Tweet This Post

    Setting up icecast

    [code]# yum install curl-devel libtheora-devel libvorbis-devel libxslt-devel speex-devel Steps -------------- cd /usr/src/ wget http://downloads.xiph.org/releases/icecast/icecast-2.3.2.tar.gz tar -xvzf icecast-2.3.2.tar.gz cd icecast-2.3.2/ ./configure --sysconfdir=/etc/icecast --prefix=/usr --exec-prefix=/usr --datadir=/usr/share --enable-fsstd --with-libwra make make install Configuration ---------------- You need to modify the /etc/icecast/icecast.xml file and change the default passwords for the users: source, relay, admin. The default passwords are ‘hackme’. <authentication> [...]

    Internet explorer json jsonp ajax fix

    [code]function ieCompatibleAjax(url, callback) { if (\'XDomainRequest\' in window && window.XDomainRequest !== null) { // Use Microsoft XDR var xdr = new XDomainRequest(); xdr.open(\"get\", url); xdr.onload = function() { //parse response as JSON var JSON = $.parseJSON(xdr.responseText); if (JSON == null || typeof (JSON) == \'undefined\') { JSON = $.parseJSON(data.firstChild.textContent); } processData(JSON); }; xdr.send(); } else [...]

    Just for testing creating a modal and appending it to the window paste into console dont do in real life

    [code]var overlay = document.createElement(\"div\"); overlay.setAttribute(\"id\",\"overlay\"); overlay.setAttribute(\"class\", \"overlay\"); overlay.style.background = \'black\'; overlay.style.opacity = \'0.5\'; overlay.style.width = \'100%\'; overlay.style.height = \'100%\'; overlay.style.position = \'absolute\'; overlay.style.left = \'0\'; overlay.style.top = \'0\'; overlay.style.right = \'0\'; overlay.style.bottom = \'0\'; overlay.style.zIndex = \'9998\'; document.body.appendChild(overlay); var button = document.createElement(\"div\"); button.setAttribute(\"id\",\"center\"); button.style.width = \'300px\'; button.style.height = \'300px\'; button.style.position = \'absolute\'; button.style.left = \'50%\'; [...]

    Paypal IPN codeignitor gladtohelpyou

    [code]<?php class Paypal_ipn extends CI_Controller { /** * Constructor */ function __construct() { parent::__construct(); // Load the necessary stuff... } function index() { /* ipn.php - example code used for the tutorial: PayPal IPN with PHP How To Implement an Instant Payment Notification listener script in PHP http://www.micahcarrick.com/paypal-ipn-with-php.html (c) 2011 - Micah Carrick */ // [...]

    Detecting mobile handheld device and then redirecting

    [code]if( /iPad/i.test(navigator.userAgent) ) { window.location = \"https://itunes.apple.com/us/app/world-news-translate/id580676065?ls=1&mt=8\" }else if( /iPhone|iPod/i.test(navigator.userAgent) ) { window.location = \"https://itunes.apple.com/us/app/world-news-translate/id580676065?ls=1&mt=8\" }else if( /Android|webOS|BlackBerry/i.test(navigator.userAgent) ) { window.location = \"https://play.google.com/store/apps/details?id=com.wnt\" }else{ }[/code] Tweet This Post

    Titanium blur all textfields within a view

    [code]scrollView.addEventListener(\'click\',function(){ for(var i=0; i<settingsNamesTableData.length; i++){ if(settingsNamesTableData[i].toString() === \'[object TiUITableViewRow]\'){ var textLength = settingsNamesTableData[i].children for(var a=0; a<textLength.length; a++){ if(textLength[a].toString() === \'[object TiUITextField]\'){ textLength[a].blur(); } } } } });[/code] Tweet This Post

    Page 1 of 1312345678910...Last »

    Quick Signup And Connect

    Sponsors

    Book Printing

    Follow us