How to include js file in JavaScript code
Sometime you need to include js file in javaScript code. below is the code that will solve this problem.
<script type="text/javascript">//<![CDATA[
document.write('<script src="url_path/js/js-file.js"><\/script>');
}
//]]>
</script&g...
Sunday, February 28, 2016
delete multiple emails in Gmail basic HTML mode

How to delete multiple emails in Gmail basic HTML mode
Sometime you have slow internet connect, so at that time you will not able to open gmail in standard mode. at that time you will open it in HTML mode.
It is okay. now when you want to delete multiple emails(100...
Monday, February 08, 2016
XSS Exploits

XSS Exploits
It is XSS, It is Web site hacking. It is cross site scripting (XSS).
The most usual form of Web site hacking . hackers force a site to perform certain actions like inject a client side scripting code (JavaScript) mixed with submitted content.
so...
Saturday, February 06, 2016
update control value in C# Thread
How to update control value in C# Thread.
Use below sample of code:
Thread t1=new Thread();
String b="";
int all=0;
private void button5_Click(object sender, EventArgs e)
{
t1 = new Thread(new ThreadStart(MyCodeRun)); t1.Start();
}
void MyCodeRun()
{
...
Friday, February 05, 2016
JSON parse in PHP
JSON parse in PHP
Suppose you want to parse listed below JSON data in PHP and you only needed to print objectId values. you can see here 3 records under merchants value "RPEZF3MRM39Z0"
-----------------------------------------------------------------------
{
"appId": "0QA16KMMVJAQR",
"merchants": {
"RPEZF3MRM39Z0": [{
"objectId": "O:S1MXC6FCY6GDW",
...
Wednesday, February 03, 2016
Video Cutter

Video Cutter
A Windows based Video cutter application. compatible with Windows 7, Windows 8,Windows 10 for 32 and 64 bit.
You do not stop or pause movie while cutting any part from video. just watch video while my application cut the part which you set.
Video Cutter
Cut...