How to compare two tables in MySQL Posted on April 29, 2016 by admin SELECT pk, c1 FROM ( SELECT t1.pk, t1.c1 FROM t1 UNION ALL SELECT t2.pk, t2.c1 FROM t2 ) t GROUP BY pk, c1 HAVING COUNT(*) = 1 ORDER BY pk Posted in Uncategorized Leave a comment
Way to paste image to the browser Posted on April 21, 2016 by admin http://jsfiddle.net/FhUwn/392/ Posted in Uncategorized Leave a comment
XenServer 6.x Power On settings Posted on April 11, 2016 by admin xe pool-list xe pool-param-set uuid=1ebd76b2-f824-653f-137e-8e853c073d61 other-config:auto_poweron=true xe vm-list xe vm-param-set uuid=1ebd76b2-f824-653f-137e-8e853c073d61 other-config:auto_poweron=true Posted in XenServer Leave a comment
Install ssh2_connect for php on Windows Posted on April 8, 2016 by admin Download DLL library from this link.http://pecl.php.net/package/ssh2 Extracted the archive’s content and: placed php_ssh2.dll and php_ssh2.pdb files in the ext folder (e.g. C:\php\ext); copied libssh2.dll file to C:\Windows\system32 and (if you got Win64) C:\Windows\SysWOW64 folder(s); add or enable extension=php_ssh2.dll in php.ini Posted in PHP 1 Comment
TTF Fonts for wkhtmltopdf Posted on March 14, 2016 by admin To install Arial just simply copy it from windows or anywhere. arial.ttf arialbd.ttf to /usr/share/fonts Create dir truetype there and drop those files there. That works at least on Ubuntu and CentOS Posted in Uncategorized Leave a comment