Skype Commands

svnlabs: good sys: Available commands: /me [text] /topic [text] /add [skypename] /history /find [text] /fa or / /alertson [text] /alertsoff /leave /goadmin /get creator /get role /whois [skypename] /setrole [skypename] MASTER|HELPER|USER|LISTENER /kick [skypename] /kickban [skypename] /get uri /get guidelines /get xguidelines /set guidelines [text] /get options /set options [[+|-]flag] .. /setpassword [password] [password hint] /clearpassword … Read more

How to create subaccounts and share buckets using IAM and CloudBerry S3 Explorer

Note: this post applies to CloudBerry Explorer 2.4.2 and later. As always we are trying to stay on top of the new functionality offered by Amazon S3 to offer the most compelling Amazon S3 and CloudFront client on Windows platform. A few weeks ago Amazon introduced Identity and Authentication Management (IAM) Service. It is a … Read more

Auto Translation using Wibiya

Wibiya is a one-stop solution for the creation of a fun and customizable free web toolbar. Using the Wibiya free toolbar you can integrate, manage and track third party applications like facebook, twitter, youtube, blog feeds etc. easily. Boost your Blog/Website with Rich and Interactive Features * No coding necessary * Add it in two … Read more

PHP ORM – Create select box with mysql set or enum

PHP have rich set of functions to solve real time problems in programming and web development.. thanks to Rasmus Lerdorf eval — Evaluate a string as PHP code A SET datatype can hold any number of strings from a predefined list of strings. The ENUM datatype restricts to a single member of the set of … Read more

Install geoip on xampp

Geocoding (finding latitude/longitude for street addresses), Geotagging (tagging media with latitude/longitude coordinates), and Geolocation (finding latitude/longitude of computer with IP X-Forwarded-For). There are some options to install on linux environment: # wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz # gunzip GeoLiteCity.dat.gz # sudo mkdir -v /usr/share/GeoIP # sudo mv -v GeoLiteCity.dat /usr/share/GeoIP/GeoIPCity.dat Install geoip with php5 # sudo apt-get install … Read more

How to run cronjobs per second?

Have you checked my previous article on cronjobs… https://www.svnlabs.com/blogs/tag/crontab-command-line/ To run cronjob per second you have to execute crontab/cronjob per minute and then have to run task in cron file per second using PHP function time_sleep_until(). <?php $start = microtime(true); for($ii=0;$ii<60;$ii++) { //………………………. /// here is the tasks which need to run per second… //………………………. … Read more

Make your website instantly available in other languages

I think everyone know about google language translation We can use http://www.wibiya.com/ to translate webpage/blog content in worlds very known languages Add the free Google Translate gadget to instantly translate your webpage or blog into other languages: English, Afrikaans, Albanian, Arabic, Armenian, Azerbaijani, Basque, Belarusian, Bulgarian, Catalan, Chinese, Croatian, Czech, Danish, Dutch, Estonian, Filipino, Finnish, … Read more

CakePHP vs YII

Have you checked my previous article on CakePHP… https://www.svnlabs.com/blogs/cakephp-in-svnlabs/ Yii (Yes, it is) — a high-performance component-based PHP framework best for developing large-scale Web applications. Yii have features, including MVC, DAO/ActiveRecord, I18N/L10N, caching, jQuery-based AJAX support, authentication and role-based access control, scaffolding, input validation, widgets, events, theming, Web services, and so on. Written in strict … Read more