Empty trash large file by using mac terminal code

Empty trash large file by using mac terminal code 

sudo rm -rf ~/.Trash/*


14/07/2016

Money Back Guarantee

Money Back

in case of reasonable unsatisfied condition we will refund your money for the order or plugin,services, template that you had purchased.


22/03/2016

Terms and Conditions

in this content  Terms and Conditions is explained.


22/03/2016

Registration Agreement

IMPORTANT: YOU MUST PROVIDE YOUR REAL NAME (I.E. PERSONAL NAME, NOT NICKNAME OR COMPANY NAME) AND LOCATION. INCOMPLETE OR FALSE REGISTRATION DETAILS WILL RESULT IN YOUR REQUEST FOR AN ACCOUNT BEING DENIED OR AN EXISTING ACCOUNT BEING PERMANENTLY CLOSED - THANK YOU FOR YOUR CO-OPERATION. 


22/03/2016

tinymce responsive

This tuttorial explains how to make images,tables etc. responsive in tinymce html editor.


17/03/2016

tinymce adding Anchors

This tuttorial explains how to use Anchors in tinymce html editor 


22/02/2016

CSS Horizontal Align

css horizontal aligning  


03/02/2016

javascript function for responsive design

function max_width(w) {
   if(window.innerWidth <= w) {
     returntrue;
   } else {
     returnfalse;
   }
}


19/01/2016

vertical align in css

this page give some instruction align text, dom etc. in a div vertically 


11/01/2016

Support

Welcome Dear Customer please Login  before  submitting a support ticket 


04/01/2016

Countries and Continents sql

 
Countries and Continents sql  includes create table and row insertion with iso3 codes

countries.sql
continents.sql


29/12/2015

What is sub-total in e-commerce and how is it calculated ?

The subtotal is the value of all goods on the invoice without discount or other rebates, and no shipping costs applied.

The total amount is calculated by using the subtotal minus discount and rebates and plus shipping costs.


29/12/2015

JavaScript money format

var profits=2489.8237
  profits.toFixed(3)//returns 2489.824 (round up)
  profits.toFixed(2)//returns 2489.82
  profits.toFixed(7)//returns 2489.8237000 (padding)

29/12/2015

Solving Codeigniter Ico File Is Not Allowed Error

go to  config/mimes.php add following to array

 

'ico'=>array('image/vnd.microsoft.icon''image/ico''image/icon''text/ico''application/ico''image/x-icon')


03/12/2015

Linux Command Find File Larger Than N MB ?

Finds files larger than 50 MB in current directory 

 find . -type f -size +50000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'


06/09/2015

How To Run Composer ?

cd /your _project path ...


04/02/2015

Template21 Published On Github Under MIT License (MIT)

Github Template Published under MIT License (MIT)


14/01/2015

Javascript serializeObject function

[code] $.fn.serializeObject = function() { var o = {}; var a = this.serializeArray(); $.each(a, function() { if (o[this.name] !== undefined) { if (!o[this.name].push) { o[this.name] = [o[this.name]]; } o[this.name].push(this.value || ''); } else { o[this.name] = this.value || ''; } }); return o; }; [/code]

14/01/2015

Developing a jQuery plugin example

dd
[code]</pre> (function ( $ ) { $.fn.greenify = function( options ) { // This is the easiest way to have default options. var settings = $.extend({ // These are the defaults. color: "#556b2f", backgroundColor: "white" }, options ); // Greenify the collection based on the settings variable. return this.css({ color: settings.color, backgroundColor: settings.backgroundColor }); }; }( jQuery )); <pre> [/code]
code plugin expect an option   this in function represents  "$(selector)"
usage:   $("div").greenify({font-size:12px});
if want to  any other function for  chaining in plugin function return this;
  $("div").greenify({font-size:12px}).any_function();

14/01/2015

responsive css 3

[code] <!DOCTYPE html> <html> <head> <style> html{font-size:12px;} p.b{font-size:1rem;} @media screen and (orientation:portrait){ p.a{font-size:3rem;} } @media screen and (orientation:landscape){ p.a{font-size:2rem;} } </style> </head> <body> <p class="a"> Lorem ipsum dolor sit amet, consectetur adipiscing elit. <p> <p class="b"> ultricies ut viverra massa rutrum. Nunc pharetra, ipsum ut ullamcorper placerat, <p> </body> </html> [/code]

14/01/2015