Posts

Air Conditioners - air conditioner best price online

Buy Air Conditioners - air conditioner best price online Click to Buy  https://www.amazon.in/Air-Conditioners/b/ref=as_li_ss_tl?ie=UTF8&node=3474656031&linkCode=ll2&tag=prml0d-21&linkId=97920ffbbf7d8751f859a0ba8b35350c&language=en_IN Godrej 1 Ton 3 Star Inverter Split AC (Copper GIC 12YTC3-WTA White) LG 1 Ton 4 Star Inverter Split AC (Copper LS-Q12YNYA, White, Convertible 4-in-1 Cooling) LG 1.5 Ton 5 Star Wi-Fi Inverter Window AC (Copper, JW-Q18WUZA, White, Low Gas Detection) Hitachi 1.5 Ton 5 Star Window AC (RAT518HUD Summer TM White) Lloyd 1.5 Ton 3 Star Inverter Split AC (Copper LS18I32AL White)

Get Random Record From List In Coldfusion

<cfset ColorList="#999999,#FF0F00,#FF6600,#FF9E01, #FCD202,#F8FF01,#B0DE09,#04D215,#0D8ECF,#0D52D1, #2A0CD0,#8A0CCF,#CD0D74,#754DEB,#DDDDDD,#333333">   <cfset randIndex = RandRange(1,listlen(ColorList))> <cfoutput> #ListGetAt(ColorList,randIndex,',')# </cfoutput>

Create text on image in center using php imagettfbbox

Using imagedestroy, imagejpeg, imagettftext, imagettfbbox, imagefill, hexdec, imagesx, imagesy, strtoupper, font, imagecreatetruecolor, Create text image in image center. imagettfbbox() Function return array index values means 0 - lower left corner, X position 1 - lower left corner, Y position 2 - lower right corner, X position 3 - lower right corner, Y position 4 - upper right corner, X position 5 - upper right corner, Y position 6 - upper left corner, X position 7 - upper left corner, Y position createTextImage.php <?php $text = strtoupper ( 'P' ) ; $imgWidth = 53 ; $imgHeight = 53 ; $font = './calibri.ttf' ; $fontSize = 12 ; $angle = 8 ; $imageColor = hexdec ( "#48A201" ) ; $textColor = hexdec ( "#FF0000" ) ; $txtImg = imagecreatetruecolor ( $imgWidth , $imgHeight ) ; imagefill ( $txtImg , 0 , 0 , $imageColor ) ; $xi = imagesx ( $txtImg ) ; $yi = imagesy ( $txtImg ) ; $textLayout ...

Multiple Jquery UI Dialog Box On Single Page

Creating multiple jquery ui dialog box on single page and open it on click event one by one using loop, classes and id attribute. < ! doctype html > < html lang = "en" > < head > < meta charset = "utf-8" > < title > Multiple jQuery UI Dialog < / title > < link rel = "stylesheet" href = " smoothness/jquery-ui.css"> < script src = " //code.jquery.com/jquery-1.10.2.js"></script> < script src = " jquery-ui.js"></script> < script type = "text/javascript" > $ ( function ( ) { var options = { show : 'blind' , hide : 'fold' , width : 800 , modal : true } ; $ ( ".getDetails" ) . on ( "click" , function ( e ) { /*console.log(this.id);*/ e . preventDefault ( ) ; ...

ISO 8601 datetime String format in coldfusion

Convert datetime format into iso datetime format using coldfusion dateconvert, dateformat and timeformat <cfset date = now() /> <cfset datetime = dateConvert( "local2utc", date )> <cfoutput> #dateFormat( datetime, "yyyy-mm-dd" ) & "T"  & timeFormat( datetime, "HH:mm:ss" ) & "Z"# </cfoutput> Output: 2015-06-09T14:22:59Z

Get Previous One Day Data in Sql Server

Get Previous One Day Data in Sql Server using convert(), dateadd(), datediff() and getdate() sql functions and between operator. SELECT OrderID , CustomerID , OrderDateTime FROM [ DEMODB ] . [ dbo ] . [ Orders ] WHERE OrderDateTime   BETWEEN CONVERT ( VARCHAR ( 10 ) ,   DATEADD ( DAY , DATEDIFF ( DAY , 0 , GETDATE ( ) ) , - 1 ) , 101 ) + ' ' + '00:00:00' AND CONVERT ( VARCHAR ( 10 ) ,   DATEADD ( DAY , DATEDIFF ( DAY , 0 , GETDATE ( ) ) , - 1 ) , 101 ) + ' ' + '23:59:59'

Create Json Array in Javascript Dynamically

This is an example to create Json Array in Javascript dynamically using new Array(), new Object() and .push(). < script > var obj = new Array ( ) ; for ( i = 1 ; i <= 5 ; i ++ ) { var jsonData = new Object ( ) ; jsonData . key = "ID" ; jsonData . value = i ; obj . push ( jsonData ) ; } console . log ( obj ) ; < / script >