Footer Stick Ads – Boost Advertising Income 4X

Hello Friends, Everyone wants to increase their advertising earning using some tool or tricks. I was looking same so, starting search on YouTube to optimize website for advertising and then find some useful info about it. Footer Stick Ads is one of them… “Footer Sticky Ads” are OK, with one exception… if it don’t annoy … Read more

Install Ruby Slate NodeJS on CentOS 7

Slate is Beautiful static documentation for your API Required – Linux or OS X or Windows – Ruby version 2.3.1 or newer – NodeJS – Bundler — gem install bundler # cat /etc/redhat-release CentOS Linux release 7.4.1708 (Core) Install Ruby 2.4 – CentOS 7 # yum update # yum groupinstall “Development Tools” # yum install … Read more

Facebook Delight Text Keywords

Facebook Delight Text display celebration balloons on Facebook Page / Post. Facebook have selected Greeting Text Keywords from different languages. Facebook Delight Text give celebration feel to Facebook Users. Keywords:[“Congrats”,”تهانينا”,”مبروك”,”ألف مبروك”,”مبارك”,”Glückwunsch”,”Gratuliere”,”Enhorabuena”,”Felicitaciones”,”Félicitations”,”बधाई”,”Selamat”,”Congratulazioni”,”おめでとう”,”축하해”,”축하해요”,”Мои поздравления”,”Поздравляем”,”Поздравляю”,”ยินดีด้วย”,”Tebrikler”,”恭喜”,”Geluk”,”অভিনন্দন”,”Gratulace!”,”Til lykke”,”Tillykke”,”Συγχαρητήρια”,”Paljon onnea”,”Onnea”,”અભિનંદન”,”מזל טוב”,”Gratula”,”Čestitam”,”Čestitke”,”Čestitamo”,”അഭിനന്ദനങ്ങൾ”,”ಶುಭಾಶಯ”,”Tahniah”,”Grattis”,”अभिनंदन”,”ਵਧਾਈਆਂ”,”Parabéns”,”Gratki”,”Gratulacje”,”Felicitări!”,”Gratulujem”,”Blahoželám”,”Gefeliciteerd”,”வாழ்த்துகள்”,”வாழ்த்துக்கள்”,”అభినందనలు”,”مبارکباد”,”Chúc mừng”,”Честитам”,”Hongera”] What is a Self-XSS scam? A Self-XSS scam usually works by promising to help you access somebody else’s account. … Read more

JavaScript Detecting Internet Connection

Offline.js automatically alerts users for their internet connection using AJAX requests. Download offline.min.js offline.html <script src=”offline.min.js”></script> <script> Offline.options = {checks: {xhr: {url: ‘offline.html’}}}; var run = function(){ // check internet connection Offline.check(); // return internet connection state console.log(Offline.state); document.getElementById(“status”).innerHTML = Offline.state; } setInterval(run, 5000); </script> <div id=”status”>up</div>

Download Gmail Blocked Email Attachments

Anti-virus warning – 1 attachment contains a virus or blocked file. Downloading this attachment is disabled. Gmail says …. File types you can’t include as attachments .ADE, .ADP, .BAT, .CHM, .CMD, .COM, .CPL, .EXE, .HTA, .INS, .ISP, .JAR, .JS (NEW), .JSE, .LIB, .LNK, .MDE, .MSC, .MSI, .MSP, .MST, .NSH .PIF, .SCR, .SCT, .SHB, .SYS, .VB, … Read more

jPlayer playbackRate Audio Speed Control for Podcast Player

Today one of my customer need Audio PlayBack Speed Control for HTML5 Audio Player. His requirement is that many people speak too slow on podcasts. He wants to speed up the playback so that he don’t have to take so much time to listen to the podcast. He actually wants button for speed [ 0.5x, … Read more

Wowza Live Stream Countdown

<?php function timeElapsed($originalTime){         $timeElapsed=$originalTime-time(); return $timeElapsed; } //$Details[‘datetimepicker’] = “06/26/2014 11:42 am”; // coming from database $dtp = timeElapsed( strtotime($Details[‘datetimepicker’]) ); ?> var myCountdownTest = new Countdown({ time: <?php echo $dtp; ?>, width : 300, height : 50, style:”boring”, rangeHi:”day”, labelText : { second : “SECONDS”, minute : “MINUTES”, hour : “HOURS”, day : “DAYS”, … Read more

Radio Song Album Artwork Cover by YouTube

An album cover is the front / other side of the packaging of a commercially released audio recording product, or album. You can find online APIs or Websites where artwork available – Amazon – LastFM – Soundcloud – Apple iTune – Google Play – Gracenote – Free Music Archive And many more …. But YouTube … Read more

MP3 waveforms with PHP

If you are thinking how soundcloud.com generates the waveform for sound MP3 player? There are some audio processing libraries used to process MP3 files to WAV and then PNG / SVG images.. 1. LAME MP3 encoder/decoder $ lame input.mp3 -f -m m -b 16 –resample 8 resampled.mp3 && lame –decode resampled.mp3 output.wav 2. SOX – … Read more