<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>configuration: debug</title>
	<atom:link href="https://huseyincakir.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://huseyincakir.wordpress.com</link>
	<description>/* some sample codes */</description>
	<lastBuildDate>Fri, 13 Jan 2017 20:19:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='huseyincakir.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>https://secure.gravatar.com/blavatar/770b7a52eea9a08eadb05a9867d91ffe?s=96&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>configuration: debug</title>
		<link>https://huseyincakir.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="https://huseyincakir.wordpress.com/osd.xml" title="configuration: debug" />
	<atom:link rel='hub' href='https://huseyincakir.wordpress.com/?pushpress=hub'/>
	<item>
		<title>Send commands to a remote device over putty/ssh &#8211; Putty send command from command line</title>
		<link>https://huseyincakir.wordpress.com/2015/08/27/send-commands-to-a-remote-device-over-puttyssh-putty-send-command-from-command-line/</link>
		<comments>https://huseyincakir.wordpress.com/2015/08/27/send-commands-to-a-remote-device-over-puttyssh-putty-send-command-from-command-line/#comments</comments>
		<pubDate>Thu, 27 Aug 2015 15:33:32 +0000</pubDate>
		<dc:creator><![CDATA[huseyincakir]]></dc:creator>
				<category><![CDATA[CSharp]]></category>

		<guid isPermaLink="false">http://huseyincakir.wordpress.com/?p=1004</guid>
		<description><![CDATA[Code: using System; using System.Diagnostics; namespace playSound {     class Program     {         public static void Main(string[] args)         {             Console.WriteLine(args[0]);                          Process amixerMediaProcess = new Process();             amixerMediaProcess.StartInfo.CreateNoWindow = false;             amixerMediaProcess.StartInfo.UseShellExecute = false;             amixerMediaProcess.StartInfo.ErrorDialog [&#8230;]<img alt="" border="0" src="https://pixel.wp.com/b.gif?host=huseyincakir.wordpress.com&#038;blog=6853212&#038;post=1004&#038;subd=huseyincakir&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<pre>Code:

using System;
using System.Diagnostics;
namespace playSound
{
    class Program
    {
        public static void Main(string[] args)
        {
            Console.WriteLine(args[0]);
            
            Process amixerMediaProcess = new Process();
            amixerMediaProcess.StartInfo.CreateNoWindow = false;
            amixerMediaProcess.StartInfo.UseShellExecute = false;
            amixerMediaProcess.StartInfo.ErrorDialog = false;
            amixerMediaProcess.StartInfo.RedirectStandardOutput = false;
            amixerMediaProcess.StartInfo.RedirectStandardInput = false;
            amixerMediaProcess.StartInfo.RedirectStandardError = false;
            amixerMediaProcess.EnableRaisingEvents = true;

            amixerMediaProcess.StartInfo.Arguments = string.Format("{0}","-ssh username@"+args[0]+" -pw password -m commands.txt");
            amixerMediaProcess.StartInfo.FileName = "plink.exe";
            amixerMediaProcess.Start();
            
            
            Console.Write("Press any key to continue . . . ");
            Console.ReadKey(true);
        }
    }
}



Sample commands.txt:

ps

<a href="https://huseyincakir.files.wordpress.com/2015/08/untitled.png"><img data-attachment-id="1005" data-permalink="https://huseyincakir.wordpress.com/2015/08/27/send-commands-to-a-remote-device-over-puttyssh-putty-send-command-from-command-line/untitled-8/" data-orig-file="https://huseyincakir.files.wordpress.com/2015/08/untitled.png" data-orig-size="648,230" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Untitled" data-image-description="" data-medium-file="https://huseyincakir.files.wordpress.com/2015/08/untitled.png?w=300&#038;h=106" data-large-file="https://huseyincakir.files.wordpress.com/2015/08/untitled.png?w=632" class="aligncenter size-medium wp-image-1005" src="https://huseyincakir.files.wordpress.com/2015/08/untitled.png?w=300&#038;h=106" alt="Untitled" width="300" height="106" srcset="https://huseyincakir.files.wordpress.com/2015/08/untitled.png?w=300&amp;h=106 300w, https://huseyincakir.files.wordpress.com/2015/08/untitled.png?w=597&amp;h=212 597w, https://huseyincakir.files.wordpress.com/2015/08/untitled.png?w=150&amp;h=53 150w" sizes="(max-width: 300px) 100vw, 300px" /></a></pre><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huseyincakir.wordpress.com/1004/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huseyincakir.wordpress.com/1004/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=huseyincakir.wordpress.com&#038;blog=6853212&#038;post=1004&#038;subd=huseyincakir&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://huseyincakir.wordpress.com/2015/08/27/send-commands-to-a-remote-device-over-puttyssh-putty-send-command-from-command-line/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/346af7ec9c5ae219a55c2971eee6e654?s=96&#38;d=https%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">huseyincakir</media:title>
		</media:content>

		<media:content url="http://huseyincakir.files.wordpress.com/2015/08/untitled.png?w=300" medium="image">
			<media:title type="html">Untitled</media:title>
		</media:content>
	</item>
		<item>
		<title>Mono GtkSharp Application at Taskbar</title>
		<link>https://huseyincakir.wordpress.com/2015/02/19/mono-gtksharp-application-at-taskbar/</link>
		<comments>https://huseyincakir.wordpress.com/2015/02/19/mono-gtksharp-application-at-taskbar/#comments</comments>
		<pubDate>Thu, 19 Feb 2015 13:21:54 +0000</pubDate>
		<dc:creator><![CDATA[huseyincakir]]></dc:creator>
				<category><![CDATA[CSharp]]></category>
		<category><![CDATA[Mono]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://huseyincakir.wordpress.com/?p=997</guid>
		<description><![CDATA[Output: Download: https://drive.google.com/file/d/0B5CGxG0MWhPtQkZUOFp5RVpjelU/view?usp=sharing<img alt="" border="0" src="https://pixel.wp.com/b.gif?host=huseyincakir.wordpress.com&#038;blog=6853212&#038;post=997&#038;subd=huseyincakir&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<pre class="brush: cpp; title: ; notranslate">
using System;
using Gtk;
using Gdk;

namespace monoGTK_Test
{
    class  gtkTest : Gtk.Window
    {
        private static StatusIcon trayIcon;

        public  gtkTest() : base(&quot;monoGTK_Test&quot;)
        {
            trayIcon = new StatusIcon(new Pixbuf (&quot;theIcon.png&quot;));
            trayIcon.Visible = true;
            trayIcon.PopupMenu += OnTrayIconPopup;
            
            this.SetSizeRequest(300,300);
            this.ShowAll();
        }
        static void OnTrayIconPopup (object o, EventArgs args)
        {
            Menu popupMenu = new Menu();
            
            ImageMenuItem menuItemQuit = new ImageMenuItem (&quot;QUIT&quot;);
            Gtk.Image imgmenuItemQuit = new Gtk.Image(Stock.Quit, IconSize.Menu);
            menuItemQuit.Image = imgmenuItemQuit;
            
            
            
            ImageMenuItem menuItemTIME = new ImageMenuItem (&quot;CHK NOW!&quot;);
            Gtk.Image imgmenuItemTIME = new Gtk.Image(&quot;icon_passive.png&quot;);
            menuItemTIME.Image = imgmenuItemTIME;
            
            popupMenu.Add(menuItemQuit);

            popupMenu.Add(menuItemTIME);
            menuItemQuit.Activated += delegate { Application.Quit(); };

            menuItemTIME.Activated+= new EventHandler(menuItemTIME_Activated);
            popupMenu.ShowAll();
            popupMenu.Popup();
        }
        static void menuItemTIME_Activated(object sender, EventArgs e)
        {
            Console.WriteLine(&quot;menuItemTIME_Activated&quot;);
        }

        public static void Main()
        {
            Application.Init();
            new gtkTest();
            Application.Run();
        }

        
    }
}
</pre>
<p>Output:<br />
<a href="https://huseyincakir.files.wordpress.com/2015/02/taskbar.png"><img data-attachment-id="998" data-permalink="https://huseyincakir.wordpress.com/2015/02/19/mono-gtksharp-application-at-taskbar/taskbar/" data-orig-file="https://huseyincakir.files.wordpress.com/2015/02/taskbar.png?w=632" data-orig-size="220,152" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="taskbar" data-image-description="" data-medium-file="https://huseyincakir.files.wordpress.com/2015/02/taskbar.png?w=632?w=220" data-large-file="https://huseyincakir.files.wordpress.com/2015/02/taskbar.png?w=632?w=220" class="aligncenter size-full wp-image-998" src="https://huseyincakir.files.wordpress.com/2015/02/taskbar.png?w=632" alt="taskbar" srcset="https://huseyincakir.files.wordpress.com/2015/02/taskbar.png 220w, https://huseyincakir.files.wordpress.com/2015/02/taskbar.png?w=150 150w" sizes="(max-width: 220px) 100vw, 220px"   /></a></p>
<p>Download:<br />
<a href="https://drive.google.com/file/d/0B5CGxG0MWhPtQkZUOFp5RVpjelU/view?usp=sharing" rel="nofollow">https://drive.google.com/file/d/0B5CGxG0MWhPtQkZUOFp5RVpjelU/view?usp=sharing</a></p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huseyincakir.wordpress.com/997/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huseyincakir.wordpress.com/997/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=huseyincakir.wordpress.com&#038;blog=6853212&#038;post=997&#038;subd=huseyincakir&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://huseyincakir.wordpress.com/2015/02/19/mono-gtksharp-application-at-taskbar/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/346af7ec9c5ae219a55c2971eee6e654?s=96&#38;d=https%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">huseyincakir</media:title>
		</media:content>

		<media:content url="http://huseyincakir.files.wordpress.com/2015/02/taskbar.png" medium="image">
			<media:title type="html">taskbar</media:title>
		</media:content>
	</item>
		<item>
		<title>Simple Security Precaution: Take picture of person who logins to your pc on logon</title>
		<link>https://huseyincakir.wordpress.com/2015/02/13/simple-security-precaution-take-picture-of-person-login-to-your-pc-on-logon/</link>
		<comments>https://huseyincakir.wordpress.com/2015/02/13/simple-security-precaution-take-picture-of-person-login-to-your-pc-on-logon/#comments</comments>
		<pubDate>Fri, 13 Feb 2015 08:35:53 +0000</pubDate>
		<dc:creator><![CDATA[huseyincakir]]></dc:creator>
				<category><![CDATA[CSharp]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://huseyincakir.wordpress.com/?p=988</guid>
		<description><![CDATA[CSharp detect logon/logout to Windows PC CSharp capture picture from webcam CSharp send mail attachment Source: https://drive.google.com/file/d/0B5CGxG0MWhPtZ1FUTVJ4YlNyRGc/view?usp=sharing Setting File Example: &#60;?xml version=&#8221;1.0&#8243; encoding=&#8221;UTF-8&#8243;?&#62;&#60;ROOT&#62;&#60;SYSTEM pathForlogtext=&#8221;C:\Users\huseyin.cakir\Desktop\log.txt&#8221; pathForlogimage=&#8221;C:\Users\huseyin.cakir\Desktop\log.jpg&#8221; mailTo=&#8221;mailto@gmail.com&#8221; mailFrom=&#8221;test@gmail.com&#8221; mailFromClient=&#8221;gmailclientserver&#8221; mailFromClientPort=&#8221;587&#8243; mailFromUser=&#8221;tester&#8221; mailSorucePassword=&#8221;password&#8221;&#62;&#60;/SYSTEM&#62;&#60;/ROOT&#62; Screenshots:<img alt="" border="0" src="https://pixel.wp.com/b.gif?host=huseyincakir.wordpress.com&#038;blog=6853212&#038;post=988&#038;subd=huseyincakir&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<ul>
<li>CSharp detect logon/logout to Windows PC</li>
<li>CSharp capture picture from webcam</li>
<li>CSharp send mail attachment</li>
<li>Source: <a href="https://drive.google.com/file/d/0B5CGxG0MWhPtZ1FUTVJ4YlNyRGc/view?usp=sharing" rel="nofollow">https://drive.google.com/file/d/0B5CGxG0MWhPtZ1FUTVJ4YlNyRGc/view?usp=sharing</a></li>
<li>Setting File Example:
<ul>
<li>&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;UTF-8&#8243;?&gt;&lt;ROOT&gt;&lt;SYSTEM pathForlogtext=&#8221;C:\Users\huseyin.cakir\Desktop\log.txt&#8221; pathForlogimage=&#8221;C:\Users\huseyin.cakir\Desktop\log.jpg&#8221; mailTo=&#8221;mailto@gmail.com&#8221; mailFrom=&#8221;test@gmail.com&#8221; mailFromClient=&#8221;gmailclientserver&#8221; mailFromClientPort=&#8221;587&#8243; mailFromUser=&#8221;tester&#8221; mailSorucePassword=&#8221;password&#8221;&gt;&lt;/SYSTEM&gt;&lt;/ROOT&gt;</li>
</ul>
</li>
<li>Screenshots:</li>
</ul>
<p><a href="https://huseyincakir.files.wordpress.com/2015/02/1.png"><img data-attachment-id="989" data-permalink="https://huseyincakir.wordpress.com/2015/02/13/simple-security-precaution-take-picture-of-person-login-to-your-pc-on-logon/1-8/" data-orig-file="https://huseyincakir.files.wordpress.com/2015/02/1.png" data-orig-size="514,383" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="1" data-image-description="" data-medium-file="https://huseyincakir.files.wordpress.com/2015/02/1.png?w=300&#038;h=224" data-large-file="https://huseyincakir.files.wordpress.com/2015/02/1.png?w=514" class="aligncenter size-medium wp-image-989" src="https://huseyincakir.files.wordpress.com/2015/02/1.png?w=300&#038;h=224" alt="1" width="300" height="224" srcset="https://huseyincakir.files.wordpress.com/2015/02/1.png?w=300&amp;h=224 300w, https://huseyincakir.files.wordpress.com/2015/02/1.png?w=150&amp;h=112 150w, https://huseyincakir.files.wordpress.com/2015/02/1.png 514w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p><a href="https://huseyincakir.files.wordpress.com/2015/02/21.png"><img data-attachment-id="993" data-permalink="https://huseyincakir.wordpress.com/2015/02/13/simple-security-precaution-take-picture-of-person-login-to-your-pc-on-logon/2-7/" data-orig-file="https://huseyincakir.files.wordpress.com/2015/02/21.png?w=632" data-orig-size="300,140" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="2" data-image-description="" data-medium-file="https://huseyincakir.files.wordpress.com/2015/02/21.png?w=632?w=300" data-large-file="https://huseyincakir.files.wordpress.com/2015/02/21.png?w=632?w=300" class="aligncenter size-full wp-image-993" src="https://huseyincakir.files.wordpress.com/2015/02/21.png?w=632" alt="2" srcset="https://huseyincakir.files.wordpress.com/2015/02/21.png 300w, https://huseyincakir.files.wordpress.com/2015/02/21.png?w=150 150w" sizes="(max-width: 300px) 100vw, 300px"   /></a></p>
<p><a href="https://huseyincakir.files.wordpress.com/2015/02/3.png"><img data-attachment-id="991" data-permalink="https://huseyincakir.wordpress.com/2015/02/13/simple-security-precaution-take-picture-of-person-login-to-your-pc-on-logon/3-5/" data-orig-file="https://huseyincakir.files.wordpress.com/2015/02/3.png" data-orig-size="766,256" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="3" data-image-description="" data-medium-file="https://huseyincakir.files.wordpress.com/2015/02/3.png?w=300&#038;h=100" data-large-file="https://huseyincakir.files.wordpress.com/2015/02/3.png?w=632" class="aligncenter size-medium wp-image-991" src="https://huseyincakir.files.wordpress.com/2015/02/3.png?w=300&#038;h=100" alt="3" width="300" height="100" srcset="https://huseyincakir.files.wordpress.com/2015/02/3.png?w=300&amp;h=100 300w, https://huseyincakir.files.wordpress.com/2015/02/3.png?w=598&amp;h=200 598w, https://huseyincakir.files.wordpress.com/2015/02/3.png?w=150&amp;h=50 150w" sizes="(max-width: 300px) 100vw, 300px" /></a></p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huseyincakir.wordpress.com/988/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huseyincakir.wordpress.com/988/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=huseyincakir.wordpress.com&#038;blog=6853212&#038;post=988&#038;subd=huseyincakir&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://huseyincakir.wordpress.com/2015/02/13/simple-security-precaution-take-picture-of-person-login-to-your-pc-on-logon/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/346af7ec9c5ae219a55c2971eee6e654?s=96&#38;d=https%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">huseyincakir</media:title>
		</media:content>

		<media:content url="http://huseyincakir.files.wordpress.com/2015/02/1.png?w=300" medium="image">
			<media:title type="html">1</media:title>
		</media:content>

		<media:content url="http://huseyincakir.files.wordpress.com/2015/02/21.png" medium="image">
			<media:title type="html">2</media:title>
		</media:content>

		<media:content url="http://huseyincakir.files.wordpress.com/2015/02/3.png?w=300" medium="image">
			<media:title type="html">3</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows 8.1 disk usage 100% Problem</title>
		<link>https://huseyincakir.wordpress.com/2015/01/30/windows-8-1-disk-usage-100-problem/</link>
		<comments>https://huseyincakir.wordpress.com/2015/01/30/windows-8-1-disk-usage-100-problem/#respond</comments>
		<pubDate>Fri, 30 Jan 2015 15:12:33 +0000</pubDate>
		<dc:creator><![CDATA[huseyincakir]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://huseyincakir.wordpress.com/?p=984</guid>
		<description><![CDATA[Press &#8220;Windows+R&#8221; from keyboard Write &#8220;services.msc&#8221;  Disable 1-Super fetch 2-Windows search Before: After: &#160;<img alt="" border="0" src="https://pixel.wp.com/b.gif?host=huseyincakir.wordpress.com&#038;blog=6853212&#038;post=984&#038;subd=huseyincakir&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<ul>
<li>Press &#8220;Windows+R&#8221; from keyboard</li>
<li>Write &#8220;services.msc&#8221;</li>
<li> Disable
<ul>
<li>1-Super fetch</li>
<li>2-Windows search</li>
</ul>
</li>
</ul>
<p>Before:</p>
<p><a href="https://huseyincakir.files.wordpress.com/2015/01/100.png"><img data-attachment-id="985" data-permalink="https://huseyincakir.wordpress.com/2015/01/30/windows-8-1-disk-usage-100-problem/attachment/100/" data-orig-file="https://huseyincakir.files.wordpress.com/2015/01/100.png" data-orig-size="660,188" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="100" data-image-description="" data-medium-file="https://huseyincakir.files.wordpress.com/2015/01/100.png?w=300&#038;h=85" data-large-file="https://huseyincakir.files.wordpress.com/2015/01/100.png?w=632" class="aligncenter size-medium wp-image-985" src="https://huseyincakir.files.wordpress.com/2015/01/100.png?w=300&#038;h=85" alt="100" width="300" height="85" srcset="https://huseyincakir.files.wordpress.com/2015/01/100.png?w=300&amp;h=85 300w, https://huseyincakir.files.wordpress.com/2015/01/100.png?w=597&amp;h=170 597w, https://huseyincakir.files.wordpress.com/2015/01/100.png?w=150&amp;h=43 150w" sizes="(max-width: 300px) 100vw, 300px" /></a>After:</p>
<p><a href="https://huseyincakir.files.wordpress.com/2015/01/1001.png"><img data-attachment-id="986" data-permalink="https://huseyincakir.wordpress.com/2015/01/30/windows-8-1-disk-usage-100-problem/attachment/1001/" data-orig-file="https://huseyincakir.files.wordpress.com/2015/01/1001.png" data-orig-size="802,188" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="1001" data-image-description="" data-medium-file="https://huseyincakir.files.wordpress.com/2015/01/1001.png?w=300&#038;h=70" data-large-file="https://huseyincakir.files.wordpress.com/2015/01/1001.png?w=632" class="aligncenter size-medium wp-image-986" src="https://huseyincakir.files.wordpress.com/2015/01/1001.png?w=300&#038;h=70" alt="1001" width="300" height="70" srcset="https://huseyincakir.files.wordpress.com/2015/01/1001.png?w=300&amp;h=70 300w, https://huseyincakir.files.wordpress.com/2015/01/1001.png?w=597&amp;h=140 597w, https://huseyincakir.files.wordpress.com/2015/01/1001.png?w=150&amp;h=35 150w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p>&nbsp;</p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huseyincakir.wordpress.com/984/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huseyincakir.wordpress.com/984/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=huseyincakir.wordpress.com&#038;blog=6853212&#038;post=984&#038;subd=huseyincakir&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://huseyincakir.wordpress.com/2015/01/30/windows-8-1-disk-usage-100-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/346af7ec9c5ae219a55c2971eee6e654?s=96&#38;d=https%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">huseyincakir</media:title>
		</media:content>

		<media:content url="http://huseyincakir.files.wordpress.com/2015/01/100.png?w=300" medium="image">
			<media:title type="html">100</media:title>
		</media:content>

		<media:content url="http://huseyincakir.files.wordpress.com/2015/01/1001.png?w=300" medium="image">
			<media:title type="html">1001</media:title>
		</media:content>
	</item>
		<item>
		<title>CSharp/PowerShell  Calling Another Program and Send/Receive Data</title>
		<link>https://huseyincakir.wordpress.com/2014/12/23/sending-input-from-csharppowershell-to-another-program/</link>
		<comments>https://huseyincakir.wordpress.com/2014/12/23/sending-input-from-csharppowershell-to-another-program/#respond</comments>
		<pubDate>Tue, 23 Dec 2014 16:48:25 +0000</pubDate>
		<dc:creator><![CDATA[huseyincakir]]></dc:creator>
				<category><![CDATA[CSharp]]></category>
		<category><![CDATA[Mono]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://huseyincakir.wordpress.com/?p=975</guid>
		<description><![CDATA[I have searched for sending data from a program and return the result so found a solution as below; I put it here incase someone needs. PowerShell: Output: CSharp: Output:<img alt="" border="0" src="https://pixel.wp.com/b.gif?host=huseyincakir.wordpress.com&#038;blog=6853212&#038;post=975&#038;subd=huseyincakir&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I have searched for sending data from a program and return the result so found a solution as below; I put it here incase someone needs.</p>
<p>PowerShell:</p>
<pre class="brush: cpp; title: ; notranslate">
Write-Host &quot;Hello world1&quot;
$psi = New-Object System.Diagnostics.ProcessStartInfo;
$psi.FileName = &quot;cmd.exe&quot;; #process file
$psi.UseShellExecute = $false; #start the process from it's own executable file
$psi.RedirectStandardInput = $true; #enable the process to read from standard input
$psi.RedirectStandardOutput = $true;

$p = [System.Diagnostics.Process]::Start($psi);

Start-Sleep -s 2 #wait 2 seconds so that the process can be up and running

$p.StandardInput.WriteLine(&quot;ipconfig&quot;); #StandardInput property of the Process is a .NET StreamWriter object

 $p.StandardInput.Close()
 $out=$p.StandardOutput.ReadToEnd()
 $out&lt;/pre&gt;
&lt;pre&gt;</pre>
<p>Output:<br />
<a href="https://huseyincakir.files.wordpress.com/2014/12/powershell.png"><img data-attachment-id="976" data-permalink="https://huseyincakir.wordpress.com/2014/12/23/sending-input-from-csharppowershell-to-another-program/powershell/" data-orig-file="https://huseyincakir.files.wordpress.com/2014/12/powershell.png" data-orig-size="867,641" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="powershell" data-image-description="" data-medium-file="https://huseyincakir.files.wordpress.com/2014/12/powershell.png?w=300&#038;h=222" data-large-file="https://huseyincakir.files.wordpress.com/2014/12/powershell.png?w=632" class="aligncenter size-medium wp-image-976" src="https://huseyincakir.files.wordpress.com/2014/12/powershell.png?w=300&#038;h=222" alt="powershell" width="300" height="222" srcset="https://huseyincakir.files.wordpress.com/2014/12/powershell.png?w=300&amp;h=222 300w, https://huseyincakir.files.wordpress.com/2014/12/powershell.png?w=600&amp;h=444 600w, https://huseyincakir.files.wordpress.com/2014/12/powershell.png?w=150&amp;h=111 150w" sizes="(max-width: 300px) 100vw, 300px" /></a>CSharp:</p>
<pre class="brush: cpp; title: ; notranslate">
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;
using System.Diagnostics;
using System.IO;
namespace testConsoleApp
{
    /// &lt;summary&gt;
    /// Description of MainForm.
    /// &lt;/summary&gt;
    public partial class MainForm : Form
    {
        public MainForm()
        {
            //
            // The InitializeComponent() call is required for Windows Forms designer support.
            //
            InitializeComponent();
            
            //
            // TODO: Add constructor code after the InitializeComponent() call.
            //
        }
        
        void Button1Click(object sender, EventArgs e)
        {
            
            Process myProcess = new Process();

            myProcess.StartInfo.FileName = &quot;cmd.exe&quot;;
            myProcess.StartInfo.UseShellExecute = false;
            myProcess.StartInfo.RedirectStandardInput = true;
            myProcess.StartInfo.RedirectStandardOutput = true;
            myProcess.Start();

            StreamWriter myStreamWriter = myProcess.StandardInput;

            myStreamWriter.WriteLine(&quot;dir&quot;);
            
            myStreamWriter.Close();
        
            using (System.IO.StreamReader myOutput = myProcess.StandardOutput)
            {
                label1.Text = myOutput.ReadToEnd();
        
            }
            
        }
    }
}&lt;/pre&gt;
&lt;pre&gt;</pre>
<pre>Output:
<a href="https://huseyincakir.files.wordpress.com/2014/12/csharp.png"><img data-attachment-id="977" data-permalink="https://huseyincakir.wordpress.com/2014/12/23/sending-input-from-csharppowershell-to-another-program/csharp/" data-orig-file="https://huseyincakir.files.wordpress.com/2014/12/csharp.png" data-orig-size="815,418" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="csharp" data-image-description="" data-medium-file="https://huseyincakir.files.wordpress.com/2014/12/csharp.png?w=300&#038;h=154" data-large-file="https://huseyincakir.files.wordpress.com/2014/12/csharp.png?w=632" class="aligncenter size-medium wp-image-977" src="https://huseyincakir.files.wordpress.com/2014/12/csharp.png?w=300&#038;h=154" alt="csharp" width="300" height="154" srcset="https://huseyincakir.files.wordpress.com/2014/12/csharp.png?w=300&amp;h=154 300w, https://huseyincakir.files.wordpress.com/2014/12/csharp.png?w=600&amp;h=308 600w, https://huseyincakir.files.wordpress.com/2014/12/csharp.png?w=150&amp;h=77 150w" sizes="(max-width: 300px) 100vw, 300px" /></a></pre><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huseyincakir.wordpress.com/975/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huseyincakir.wordpress.com/975/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=huseyincakir.wordpress.com&#038;blog=6853212&#038;post=975&#038;subd=huseyincakir&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://huseyincakir.wordpress.com/2014/12/23/sending-input-from-csharppowershell-to-another-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/346af7ec9c5ae219a55c2971eee6e654?s=96&#38;d=https%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">huseyincakir</media:title>
		</media:content>

		<media:content url="http://huseyincakir.files.wordpress.com/2014/12/powershell.png?w=300" medium="image">
			<media:title type="html">powershell</media:title>
		</media:content>

		<media:content url="http://huseyincakir.files.wordpress.com/2014/12/csharp.png?w=300" medium="image">
			<media:title type="html">csharp</media:title>
		</media:content>
	</item>
		<item>
		<title>libnfc with ACR122 on Windows 8.1</title>
		<link>https://huseyincakir.wordpress.com/2014/12/02/libnfc-with-acr122-on-windows-8-1/</link>
		<comments>https://huseyincakir.wordpress.com/2014/12/02/libnfc-with-acr122-on-windows-8-1/#comments</comments>
		<pubDate>Tue, 02 Dec 2014 19:13:45 +0000</pubDate>
		<dc:creator><![CDATA[huseyincakir]]></dc:creator>
				<category><![CDATA[CSharp]]></category>
		<category><![CDATA[libnfc]]></category>

		<guid isPermaLink="false">http://huseyincakir.wordpress.com/?p=968</guid>
		<description><![CDATA[In this post I try to explain the steps for using libnfc in Windows. INSTALL [1.] http://www.visualstudio.com/downloads/download-visual-studio-vs &#62;&#62; Visual C++ 2010 Express [2.] https://code.google.com/p/libnfc/downloads/list?q=label:Deprecated &#62;&#62; libnfc-1.2.1-vs2005.zip [3.] http://sourceforge.net/projects/libusb-win32/files/latest/download OPEN VISUAL STUDIO IMPORTANT NOTES [1.] Get proper libusb0.dll file from &#8220;libusb-win32-bin-1.2.6.0\libusb-win32-bin-1.2.6.0\bin&#8221; which we have downloaded before in libusb-win32-bin-1.2.6.0.zip(INSTALL STEP 3) [2.] Set project debug in &#8220;release&#8221; [&#8230;]<img alt="" border="0" src="https://pixel.wp.com/b.gif?host=huseyincakir.wordpress.com&#038;blog=6853212&#038;post=968&#038;subd=huseyincakir&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>In this post I try to explain the steps for using libnfc in Windows.</p>
<p><strong><span style="color:#0000ff;">INSTALL</span></strong><br />
[1.] <a href="http://www.visualstudio.com/downloads/download-visual-studio-vs" rel="nofollow">http://www.visualstudio.com/downloads/download-visual-studio-vs</a> &gt;&gt; Visual C++ 2010 Express<br />
[2.] <a href="https://code.google.com/p/libnfc/downloads/list?q=label:Deprecated" rel="nofollow">https://code.google.com/p/libnfc/downloads/list?q=label:Deprecated</a> &gt;&gt; libnfc-1.2.1-vs2005.zip<br />
[3.] <a href="http://sourceforge.net/projects/libusb-win32/files/latest/download" rel="nofollow">http://sourceforge.net/projects/libusb-win32/files/latest/download</a></p>
<p><strong><span style="color:#0000ff;">OPEN VISUAL STUDIO</span></strong></p>
<p><a href="https://huseyincakir.files.wordpress.com/2014/12/1.png"><img data-attachment-id="969" data-permalink="https://huseyincakir.wordpress.com/2014/12/02/libnfc-with-acr122-on-windows-8-1/1-7/" data-orig-file="https://huseyincakir.files.wordpress.com/2014/12/1.png" data-orig-size="1681,903" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="1" data-image-description="" data-medium-file="https://huseyincakir.files.wordpress.com/2014/12/1.png?w=300&#038;h=161" data-large-file="https://huseyincakir.files.wordpress.com/2014/12/1.png?w=632" class="aligncenter size-medium wp-image-969" src="https://huseyincakir.files.wordpress.com/2014/12/1.png?w=300&#038;h=161" alt="1" width="300" height="161" srcset="https://huseyincakir.files.wordpress.com/2014/12/1.png?w=300&amp;h=161 300w, https://huseyincakir.files.wordpress.com/2014/12/1.png?w=600&amp;h=322 600w, https://huseyincakir.files.wordpress.com/2014/12/1.png?w=150&amp;h=81 150w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p><strong><span style="color:#ff0000;">IMPORTANT NOTES</span></strong><br />
[1.] Get proper libusb0.dll file from &#8220;libusb-win32-bin-1.2.6.0\libusb-win32-bin-1.2.6.0\bin&#8221; which we have downloaded before in libusb-win32-bin-1.2.6.0.zip(INSTALL STEP 3)<br />
[2.] Set project debug in &#8220;release&#8221; mode.</p>
<p><a href="https://huseyincakir.files.wordpress.com/2014/12/2.png"><img data-attachment-id="970" data-permalink="https://huseyincakir.wordpress.com/2014/12/02/libnfc-with-acr122-on-windows-8-1/2-5/" data-orig-file="https://huseyincakir.files.wordpress.com/2014/12/2.png" data-orig-size="1681,903" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="2" data-image-description="" data-medium-file="https://huseyincakir.files.wordpress.com/2014/12/2.png?w=300&#038;h=161" data-large-file="https://huseyincakir.files.wordpress.com/2014/12/2.png?w=632" class="aligncenter size-medium wp-image-970" src="https://huseyincakir.files.wordpress.com/2014/12/2.png?w=300&#038;h=161" alt="2" width="300" height="161" srcset="https://huseyincakir.files.wordpress.com/2014/12/2.png?w=300&amp;h=161 300w, https://huseyincakir.files.wordpress.com/2014/12/2.png?w=600&amp;h=322 600w, https://huseyincakir.files.wordpress.com/2014/12/2.png?w=150&amp;h=81 150w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p><a href="https://huseyincakir.files.wordpress.com/2014/12/3.png"><img data-attachment-id="971" data-permalink="https://huseyincakir.wordpress.com/2014/12/02/libnfc-with-acr122-on-windows-8-1/3-4/" data-orig-file="https://huseyincakir.files.wordpress.com/2014/12/3.png" data-orig-size="1681,903" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="3" data-image-description="" data-medium-file="https://huseyincakir.files.wordpress.com/2014/12/3.png?w=300&#038;h=161" data-large-file="https://huseyincakir.files.wordpress.com/2014/12/3.png?w=632" class="aligncenter size-medium wp-image-971" src="https://huseyincakir.files.wordpress.com/2014/12/3.png?w=300&#038;h=161" alt="3" width="300" height="161" srcset="https://huseyincakir.files.wordpress.com/2014/12/3.png?w=300&amp;h=161 300w, https://huseyincakir.files.wordpress.com/2014/12/3.png?w=600&amp;h=322 600w, https://huseyincakir.files.wordpress.com/2014/12/3.png?w=150&amp;h=81 150w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p>[3.] Rebuilt libnfc and than Build nfc-anticol, nfc-mftool<br />
<strong><span style="color:#0000ff;">RESULT FOR NFC-ANTICOL</span></strong></p>
<p><a href="https://huseyincakir.files.wordpress.com/2014/12/4.png"><img data-attachment-id="972" data-permalink="https://huseyincakir.wordpress.com/2014/12/02/libnfc-with-acr122-on-windows-8-1/4-4/" data-orig-file="https://huseyincakir.files.wordpress.com/2014/12/4.png" data-orig-size="1686,903" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="4" data-image-description="" data-medium-file="https://huseyincakir.files.wordpress.com/2014/12/4.png?w=300&#038;h=161" data-large-file="https://huseyincakir.files.wordpress.com/2014/12/4.png?w=632" class="aligncenter size-medium wp-image-972" src="https://huseyincakir.files.wordpress.com/2014/12/4.png?w=300&#038;h=161" alt="4" width="300" height="161" srcset="https://huseyincakir.files.wordpress.com/2014/12/4.png?w=300&amp;h=161 300w, https://huseyincakir.files.wordpress.com/2014/12/4.png?w=600&amp;h=322 600w, https://huseyincakir.files.wordpress.com/2014/12/4.png?w=150&amp;h=80 150w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p><span style="color:#0000ff;"><strong>RESULT FOR NFC-MFTOOL</strong></span></p>
<p><a href="https://huseyincakir.files.wordpress.com/2014/12/5.png"><img data-attachment-id="973" data-permalink="https://huseyincakir.wordpress.com/2014/12/02/libnfc-with-acr122-on-windows-8-1/5-2/" data-orig-file="https://huseyincakir.files.wordpress.com/2014/12/5.png" data-orig-size="1686,903" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="5" data-image-description="" data-medium-file="https://huseyincakir.files.wordpress.com/2014/12/5.png?w=300&#038;h=161" data-large-file="https://huseyincakir.files.wordpress.com/2014/12/5.png?w=632" class="aligncenter size-medium wp-image-973" src="https://huseyincakir.files.wordpress.com/2014/12/5.png?w=300&#038;h=161" alt="5" width="300" height="161" srcset="https://huseyincakir.files.wordpress.com/2014/12/5.png?w=300&amp;h=161 300w, https://huseyincakir.files.wordpress.com/2014/12/5.png?w=600&amp;h=322 600w, https://huseyincakir.files.wordpress.com/2014/12/5.png?w=150&amp;h=80 150w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p>&nbsp;</p>
<p><strong><span style="color:#ff6600;">Thats all</span></strong> <img src="https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p><a href="https://huseyincakir.files.wordpress.com/2009/11/thats-all-folks.jpg"><img data-attachment-id="511" data-permalink="https://huseyincakir.wordpress.com/2009/11/15/finding-mobile-location-using-latitude-and-longitude-by-google-maps-in-java-me/thats-all-folks/" data-orig-file="https://huseyincakir.files.wordpress.com/2009/11/thats-all-folks.jpg" data-orig-size="320,240" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="thats-all-folks" data-image-description="" data-medium-file="https://huseyincakir.files.wordpress.com/2009/11/thats-all-folks.jpg?w=300&#038;h=225" data-large-file="https://huseyincakir.files.wordpress.com/2009/11/thats-all-folks.jpg?w=320" class="aligncenter size-medium wp-image-511" src="https://huseyincakir.files.wordpress.com/2009/11/thats-all-folks.jpg?w=300&#038;h=225" alt="thats-all-folks" width="300" height="225" srcset="https://huseyincakir.files.wordpress.com/2009/11/thats-all-folks.jpg?w=300&amp;h=225 300w, https://huseyincakir.files.wordpress.com/2009/11/thats-all-folks.jpg?w=150&amp;h=113 150w, https://huseyincakir.files.wordpress.com/2009/11/thats-all-folks.jpg 320w" sizes="(max-width: 300px) 100vw, 300px" /></a></p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huseyincakir.wordpress.com/968/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huseyincakir.wordpress.com/968/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=huseyincakir.wordpress.com&#038;blog=6853212&#038;post=968&#038;subd=huseyincakir&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://huseyincakir.wordpress.com/2014/12/02/libnfc-with-acr122-on-windows-8-1/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/346af7ec9c5ae219a55c2971eee6e654?s=96&#38;d=https%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">huseyincakir</media:title>
		</media:content>

		<media:content url="http://huseyincakir.files.wordpress.com/2014/12/1.png?w=300" medium="image">
			<media:title type="html">1</media:title>
		</media:content>

		<media:content url="http://huseyincakir.files.wordpress.com/2014/12/2.png?w=300" medium="image">
			<media:title type="html">2</media:title>
		</media:content>

		<media:content url="http://huseyincakir.files.wordpress.com/2014/12/3.png?w=300" medium="image">
			<media:title type="html">3</media:title>
		</media:content>

		<media:content url="http://huseyincakir.files.wordpress.com/2014/12/4.png?w=300" medium="image">
			<media:title type="html">4</media:title>
		</media:content>

		<media:content url="http://huseyincakir.files.wordpress.com/2014/12/5.png?w=300" medium="image">
			<media:title type="html">5</media:title>
		</media:content>

		<media:content url="http://huseyincakir.files.wordpress.com/2009/11/thats-all-folks.jpg?w=300" medium="image">
			<media:title type="html">thats-all-folks</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows Adding Mono Libraries(atk-sharp/gtk-sharp) to GAC(Global Assembly Cache)</title>
		<link>https://huseyincakir.wordpress.com/2014/11/14/windows-adding-mono-librariesatk-sharpgtk-sharp-to-gacglobal-assembly-cache/</link>
		<comments>https://huseyincakir.wordpress.com/2014/11/14/windows-adding-mono-librariesatk-sharpgtk-sharp-to-gacglobal-assembly-cache/#respond</comments>
		<pubDate>Fri, 14 Nov 2014 13:44:35 +0000</pubDate>
		<dc:creator><![CDATA[huseyincakir]]></dc:creator>
				<category><![CDATA[Mono]]></category>

		<guid isPermaLink="false">http://huseyincakir.wordpress.com/?p=961</guid>
		<description><![CDATA[&#62;&#62;Run Cmd as Adminisrator &#62;&#62;C:\Program Files (x86)\Microsoft SDKs\Windows\v8.1A\bin\NETFX 4.5.1 Tools\gacutil.exe -i &#8220;C:\Program Files (x86)\Mono-3.2.3\lib\mono\gtk-sharp-2.0\gtk-sharp.dll&#8221;<img alt="" border="0" src="https://pixel.wp.com/b.gif?host=huseyincakir.wordpress.com&#038;blog=6853212&#038;post=961&#038;subd=huseyincakir&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="https://huseyincakir.files.wordpress.com/2014/11/gacc.png"><img data-attachment-id="962" data-permalink="https://huseyincakir.wordpress.com/2014/11/14/windows-adding-mono-librariesatk-sharpgtk-sharp-to-gacglobal-assembly-cache/gacc/" data-orig-file="https://huseyincakir.files.wordpress.com/2014/11/gacc.png" data-orig-size="772,425" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="gacc" data-image-description="" data-medium-file="https://huseyincakir.files.wordpress.com/2014/11/gacc.png?w=300&#038;h=165" data-large-file="https://huseyincakir.files.wordpress.com/2014/11/gacc.png?w=632" class="aligncenter size-medium wp-image-962" src="https://huseyincakir.files.wordpress.com/2014/11/gacc.png?w=300&#038;h=165" alt="gacc" width="300" height="165" srcset="https://huseyincakir.files.wordpress.com/2014/11/gacc.png?w=300&amp;h=165 300w, https://huseyincakir.files.wordpress.com/2014/11/gacc.png?w=600&amp;h=330 600w, https://huseyincakir.files.wordpress.com/2014/11/gacc.png?w=150&amp;h=83 150w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p>&gt;&gt;Run Cmd as Adminisrator</p>
<p>&gt;&gt;C:\Program Files (x86)\Microsoft SDKs\Windows\v8.1A\bin\NETFX 4.5.1 Tools\gacutil.exe -i &#8220;C:\Program Files (x86)\Mono-3.2.3\lib\mono\gtk-sharp-2.0\gtk-sharp.dll&#8221;</p>
<p><a href="https://huseyincakir.files.wordpress.com/2014/11/ref.png"><img data-attachment-id="963" data-permalink="https://huseyincakir.wordpress.com/2014/11/14/windows-adding-mono-librariesatk-sharpgtk-sharp-to-gacglobal-assembly-cache/ref-2/" data-orig-file="https://huseyincakir.files.wordpress.com/2014/11/ref.png?w=632" data-orig-size="172,228" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="ref" data-image-description="" data-medium-file="https://huseyincakir.files.wordpress.com/2014/11/ref.png?w=632?w=172" data-large-file="https://huseyincakir.files.wordpress.com/2014/11/ref.png?w=632?w=172" class="aligncenter size-full wp-image-963" src="https://huseyincakir.files.wordpress.com/2014/11/ref.png?w=632" alt="ref" srcset="https://huseyincakir.files.wordpress.com/2014/11/ref.png 172w, https://huseyincakir.files.wordpress.com/2014/11/ref.png?w=113 113w" sizes="(max-width: 172px) 100vw, 172px"   /></a></p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huseyincakir.wordpress.com/961/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huseyincakir.wordpress.com/961/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=huseyincakir.wordpress.com&#038;blog=6853212&#038;post=961&#038;subd=huseyincakir&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://huseyincakir.wordpress.com/2014/11/14/windows-adding-mono-librariesatk-sharpgtk-sharp-to-gacglobal-assembly-cache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/346af7ec9c5ae219a55c2971eee6e654?s=96&#38;d=https%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">huseyincakir</media:title>
		</media:content>

		<media:content url="http://huseyincakir.files.wordpress.com/2014/11/gacc.png?w=300" medium="image">
			<media:title type="html">gacc</media:title>
		</media:content>

		<media:content url="http://huseyincakir.files.wordpress.com/2014/11/ref.png" medium="image">
			<media:title type="html">ref</media:title>
		</media:content>
	</item>
		<item>
		<title>My Android Application in Google Play</title>
		<link>https://huseyincakir.wordpress.com/2014/10/31/my-android-application-in-google-play/</link>
		<comments>https://huseyincakir.wordpress.com/2014/10/31/my-android-application-in-google-play/#respond</comments>
		<pubDate>Fri, 31 Oct 2014 08:42:26 +0000</pubDate>
		<dc:creator><![CDATA[huseyincakir]]></dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://huseyincakir.wordpress.com/?p=958</guid>
		<description><![CDATA[Facebook With Message It is a webview application that opens facebook.com. (No need extra application for facebook messages.) Download Link: https://play.google.com/store/apps/details?id=com.fcbookMes1.Mes &#160;<img alt="" border="0" src="https://pixel.wp.com/b.gif?host=huseyincakir.wordpress.com&#038;blog=6853212&#038;post=958&#038;subd=huseyincakir&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<h2><span style="color:#0000ff;">Facebook With Message</span></h2>
<p>It is a webview application that opens facebook.com. (No need extra application for facebook messages.)</p>
<p>Download Link: <a href="https://play.google.com/store/apps/details?id=com.fcbookMes1.Mes" target="_blank">https://play.google.com/store/apps/details?id=com.fcbookMes1.Mes</a></p>
<p><a href="https://huseyincakir.files.wordpress.com/2014/10/api-qrserver-com.png"><img data-attachment-id="959" data-permalink="https://huseyincakir.wordpress.com/2014/10/31/my-android-application-in-google-play/api-qrserver-com/" data-orig-file="https://huseyincakir.files.wordpress.com/2014/10/api-qrserver-com.png" data-orig-size="400,400" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="api.qrserver.com" data-image-description="" data-medium-file="https://huseyincakir.files.wordpress.com/2014/10/api-qrserver-com.png?w=300&#038;h=300" data-large-file="https://huseyincakir.files.wordpress.com/2014/10/api-qrserver-com.png?w=400" class="size-medium wp-image-959 alignleft" src="https://huseyincakir.files.wordpress.com/2014/10/api-qrserver-com.png?w=300&#038;h=300" alt="api.qrserver.com" width="300" height="300" srcset="https://huseyincakir.files.wordpress.com/2014/10/api-qrserver-com.png?w=300&amp;h=300 300w, https://huseyincakir.files.wordpress.com/2014/10/api-qrserver-com.png?w=150&amp;h=150 150w, https://huseyincakir.files.wordpress.com/2014/10/api-qrserver-com.png 400w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p>&nbsp;</p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huseyincakir.wordpress.com/958/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huseyincakir.wordpress.com/958/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=huseyincakir.wordpress.com&#038;blog=6853212&#038;post=958&#038;subd=huseyincakir&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://huseyincakir.wordpress.com/2014/10/31/my-android-application-in-google-play/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/346af7ec9c5ae219a55c2971eee6e654?s=96&#38;d=https%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">huseyincakir</media:title>
		</media:content>

		<media:content url="http://huseyincakir.files.wordpress.com/2014/10/api-qrserver-com.png?w=300" medium="image">
			<media:title type="html">api.qrserver.com</media:title>
		</media:content>
	</item>
		<item>
		<title>HTML Page To Create Vcard QR</title>
		<link>https://huseyincakir.wordpress.com/2014/09/24/html-page-to-create-vcard-qr/</link>
		<comments>https://huseyincakir.wordpress.com/2014/09/24/html-page-to-create-vcard-qr/#comments</comments>
		<pubDate>Wed, 24 Sep 2014 07:40:49 +0000</pubDate>
		<dc:creator><![CDATA[huseyincakir]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://huseyincakir.wordpress.com/?p=942</guid>
		<description><![CDATA[<img alt="" border="0" src="https://pixel.wp.com/b.gif?host=huseyincakir.wordpress.com&#038;blog=6853212&#038;post=942&#038;subd=huseyincakir&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<pre class="brush: cpp; title: ; notranslate">

&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;TR&quot;&gt;
&lt;head&gt;
&lt;meta http-equiv=&quot;Content-type&quot; content=&quot;UTF-8&quot; /&gt;
&lt;script src=&quot;jquery.min.js&quot;&gt;&lt;/script&gt;
&lt;title&gt;QR&lt;/title&gt;
&lt;meta name=&quot;description&quot; content=&quot;Find the latitude and longitude of a point using Google Maps.&quot;&gt;
&lt;meta name=&quot;keywords&quot; content=&quot;latitude, longitude, google maps, get latitude and longitude&quot;&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://maps.googleapis.com/maps/api/js?sensor=false&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
//&lt;![CDATA[

var map = null;
var latsgn = 1;
var lgsgn = 1;
var marker = null;
var posset = 0;
var mrks = {mvcMarkers: new google.maps.MVCArray()};
var iw;
var drag=false;

function Gmap() {
ll = new google.maps.LatLng(39.426871,27.141053);
zoom=15;
var mO = {
scaleControl:true,
zoom:zoom,
zoomControl:true,
zoomControlOptions: {style:google.maps.ZoomControlStyle.LARGE},
center: ll,
disableDoubleClickZoom:true,
mapTypeId: google.maps.MapTypeId.ROADMAP
};

map = new google.maps.Map(document.getElementById(&quot;map&quot;), mO);
map.setTilt(0);
map.panTo(ll);
marker = new google.maps.Marker({position:ll,map:map,draggable:true,title:'Drag this pin and place you want!.'});

google.maps.event.addListener(marker, 'click', function(mll) {
var html= &quot;&lt;div style='color:#000;background-color:#fff;padding:5px;width:150px;'&gt;&lt;p&gt;Latitude - Longitude:&lt;br /&gt;&quot; + String(mll.latLng.toUrlValue()) + &quot;&lt;br /&gt;&lt;/p&gt;&lt;/div&gt;&quot;;
iw = new google.maps.InfoWindow({content:html});
iw.open(map,marker);
});
google.maps.event.addListener(marker, 'dragstart', function() {if (iw){iw.close();}});

google.maps.event.addListener(marker, 'dragend', function(event) {
posset = 1;

if (map.getZoom() &lt; 10){map.setZoom(15);}
map.setCenter(event.latLng);
computepos(event.latLng);
drag=true;
setTimeout(function(){drag=false;},250);
});

google.maps.event.addListener(map, 'click', function(event) {
if (drag){return;}
posset = 1;
popInfo(event.latLng) ;
if (map.getZoom() &lt; 10){map.setZoom(10);}
map.panTo(event.latLng);
computepos(event.latLng);
});

}

function computepos (point)
{
var latA = Math.abs(Math.round(point.lat() * 1000000.));
var lonA = Math.abs(Math.round(point.lng() * 1000000.));
if(point.lat() &lt; 0)
{
var ls = '-' + Math.floor((latA / 1000000)).toString();
}
else
{
var ls = Math.floor((latA / 1000000)).toString();
}
var lm = Math.floor(((latA/1000000) - Math.floor(latA/1000000)) * 60).toString();
var ld = ( Math.floor(((((latA/1000000) - Math.floor(latA/1000000)) * 60) - Math.floor(((latA/1000000) - Math.floor(latA/1000000)) * 60)) * 100000) *60/100000 ).toString();
if(point.lng() &lt; 0)
{
var lgs = '-' + Math.floor((lonA / 1000000)).toString();
}
else
{
var lgs = Math.floor((lonA / 1000000)).toString();
}
var lgm = Math.floor(((lonA/1000000) - Math.floor(lonA/1000000)) * 60).toString();
var lgd = ( Math.floor(((((lonA/1000000) - Math.floor(lonA/1000000)) * 60) - Math.floor(((lonA/1000000) - Math.floor(lonA/1000000)) * 60)) * 100000) *60/100000 ).toString();
document.getElementById(&quot;latbox&quot;).value=point.lat().toFixed(6);
document.getElementById(&quot;lonbox&quot;).value=point.lng().toFixed(6);
}

// Display box over pin and show Latitude and Longitude info
function popInfo(point)
{
var html= &quot;&lt;div style='color:#000;background-color:#fff;padding:3px;width:150px;'&gt;&lt;p&gt;Latitude - Longitude:&lt;br /&gt;&quot; + String(point.toUrlValue()) + &quot;&lt;br /&gt;&lt;/p&gt;&lt;/div&gt;&quot;;
var iw = new google.maps.InfoWindow({content:html});
var marker = new google.maps.Marker({position:point,map:map,icon:'/i/blue-dot.png',draggable:true});
mrks.mvcMarkers.push(marker);
google.maps.event.addListener(marker, 'click', function(event) {
var html= &quot;&lt;div style='color:#000;background-color:#fff;padding:3px;width:150px;'&gt;&lt;p&gt;Latitude - Longitude:&lt;br /&gt;&quot; + String(event.latLng.toUrlValue()) + &quot;&lt;br /&gt;&lt;br /&gt;Lat: &quot; + ls +  &quot;&#176; &quot; + lm +  &quot;&#039; &quot;  + ld + &quot;&#034;&lt;br /&gt;Long: &quot; + lgs +  &quot;&#176; &quot; + lgm +  &quot;&#039; &quot; + lgd + &quot;&#034;&lt;/p&gt;&lt;/div&gt;&quot;;
var iw = new google.maps.InfoWindow({content:html});
iw.open(map,marker);
computepos(event.latLng);
});
}

// Clear form value
function reset() {
mrks.mvcMarkers.forEach(function(elem, index) {elem.setMap(null);});
mrks.mvcMarkers.clear();
document.getElementById(&quot;latbox&quot;).value='';
document.getElementById(&quot;lonbox&quot;).value='';
marker.setPosition(map.getCenter());
}


function pincenter() {
marker.setPosition(map.getCenter());
computepos (map.getCenter());
}
function myFunction() {
window.open(&quot;http://api.qrserver.com/v1/create-qr-code/?color=000000&amp;bgcolor=FFFFFF&amp;data=BEGIN%3AVCARD%0AVERSION%3A2.1%0AFN%3A&quot; + document.getElementById(&quot;namebox&quot;).value+ &quot;+&quot; +  document.getElementById(&quot;surnamebox&quot;).value+&quot;%0AN%3A&quot; + document.getElementById(&quot;surnamebox&quot;).value+ &quot;%3B&quot;+ document.getElementById(&quot;namebox&quot;).value+&quot;%0ATITLE%3A&quot;+document.getElementById(&quot;titlebox&quot;).value+&quot;%0ATEL%3BCELL%3A%2B&quot;+document.getElementById(&quot;cellbox&quot;).value+&quot;%0ATEL%3BWORK%3BVOICE%3A%2B&quot;+ document.getElementById(&quot;workbox&quot;).value+&quot;%0AEMAIL%3BWORK%3BINTERNET%3A&quot;+ document.getElementById(&quot;emailbox&quot;).value+&quot;%0AURL%3A&quot;+ document.getElementById(&quot;urlbox&quot;).value +&quot;%0AORG%3A&quot;+document.getElementById(&quot;orgbox&quot;).value+&quot;%0AADR%3A%3B%3B&quot;+document.getElementById(&quot;latbox&quot;).value+&quot;,&quot;+document.getElementById(&quot;lonbox&quot;).value+&quot;%0ANOTE%3A&quot;+document.getElementById(&quot;adressbox&quot;).value+&quot;%0AEND%3AVCARD%0A&amp;qzone=1&amp;margin=0&amp;size=400x400&amp;ecc=L&quot;);

}

//]]&gt;
&lt;/script&gt;

&lt;link rel=&quot;stylesheet&quot; href=&quot;//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css&quot;&gt;
&lt;!-- Optional theme --&gt;
&lt;link rel=&quot;stylesheet&quot; href=&quot;//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap-theme.min.css&quot;&gt;
&lt;style&gt;
.header{
display: block;
position: relative;
}
.navbar-brand img{
position: relative;
top: -10px;
}
.form-up{
max-width: 330px;
padding: 15px;
margin: 0 auto;
}
.error{
color: red;
font-weight: bold;
font-size: 18px;
text-align: center;
}
.ftr-cnt{
display: block;
text-align: center;
color: #ccc;
font-weight: bold;
margin-top: 10px;
}
.content{
display: block;
margin: auto;
}
.gap{
display: block;
margin: 20px auto 40px auto;
}

&lt;/style&gt;

&lt;/head&gt;
&lt;body onload=&quot;Gmap()&quot;&gt;
&lt;div class=&quot;header&quot;&gt;
&lt;div class=&quot;navbar navbar-inverse navbar-static-top &quot;&gt;
&lt;div class=&quot;container&quot;&gt;
&lt;!-- Add your navigation --&gt;
&lt;div class=&quot;navbar-header&quot;&gt;
&lt;!-- Button for responsive menu //--&gt;


&lt;/div&gt;
&lt;div class=&quot;collapse navbar-collapse&quot;&gt;

&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;content&quot;&gt;
&lt;div id=&quot;map&quot; style=&quot;width: 100%; height: 450px&quot;&gt;&lt;/div&gt;
&lt;/div&gt;

&lt;h3&gt;QR Bilgileri Giriniz:&lt;/h3&gt;

&lt;table&gt;
&lt;tr&gt;
&lt;td&gt;Ad:&lt;/td&gt;
&lt;td&gt;&lt;input size=&quot;150&quot; type=&quot;text&quot; id=&quot;namebox&quot; name=&quot;name&quot; value=&quot;&quot; &gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Soyad:&lt;/td&gt;
&lt;td&gt;&lt;input size=&quot;150&quot; type=&quot;text&quot; id=&quot;surnamebox&quot; name=&quot;surname&quot; value=&quot;&quot; &gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Ünvan:&lt;/td&gt;
&lt;td&gt;&lt;input size=&quot;150&quot; type=&quot;text&quot; id=&quot;titlebox&quot; name=&quot;title&quot; value=&quot;&quot; &gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Url:&lt;/td&gt;
&lt;td&gt;&lt;input size=&quot;150&quot; type=&quot;text&quot; id=&quot;urlbox&quot; name=&quot;url&quot; value=&quot;&quot; &gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Org:&lt;/td&gt;
&lt;td&gt;&lt;input size=&quot;150&quot; type=&quot;text&quot; id=&quot;orgbox&quot; name=&quot;org&quot; value=&quot;&quot; &gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Latitude:&lt;/td&gt;
&lt;td&gt;&lt;input size=&quot;150&quot; type=&quot;text&quot; id=&quot;latbox&quot; name=&quot;lat&quot; value=&quot;39.42680&quot; &gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Longitude:&lt;/td&gt;
&lt;td&gt;&lt;input size=&quot;150&quot; type=&quot;text&quot; id=&quot;lonbox&quot; name=&quot;lon&quot; value=&quot;27.14102&quot; &gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;td&gt;Cell:&lt;/td&gt;
&lt;td&gt;&lt;input size=&quot;150&quot; type=&quot;text&quot; id=&quot;cellbox&quot; name=&quot;cell&quot; value=&quot;&quot; &gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;td&gt;Work:&lt;/td&gt;
&lt;td&gt;&lt;input size=&quot;150&quot; type=&quot;text&quot; id=&quot;workbox&quot; name=&quot;work&quot; value=&quot;&quot; &gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;td&gt;Email:&lt;/td&gt;
&lt;td&gt;&lt;input size=&quot;150&quot; type=&quot;text&quot; id=&quot;emailbox&quot; name=&quot;email&quot; value=&quot;&quot; &gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;td&gt;Adress:&lt;/td&gt;
&lt;td&gt;&lt;input size=&quot;150&quot; type=&quot;text&quot; id=&quot;adressbox&quot; name=&quot;adress&quot; value=&quot;&quot; &gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt; &lt;button onclick=&quot;myFunction()&quot;&gt;QR&lt;/button&gt; &lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;


&lt;div class=&quot;container&quot;&gt;

&lt;/div&gt;
&lt;!-- Latest compiled and minified JavaScript --&gt;
&lt;script src=&quot;//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js&quot;&gt;&lt;/script&gt;

&lt;script&gt;
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');

ga('create', 'UA-44831294-1', 'trinityblog.in');
ga('send', 'pageview');

&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;

&amp;nbsp;
&lt;pre&gt;</pre><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huseyincakir.wordpress.com/942/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huseyincakir.wordpress.com/942/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=huseyincakir.wordpress.com&#038;blog=6853212&#038;post=942&#038;subd=huseyincakir&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://huseyincakir.wordpress.com/2014/09/24/html-page-to-create-vcard-qr/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/346af7ec9c5ae219a55c2971eee6e654?s=96&#38;d=https%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">huseyincakir</media:title>
		</media:content>
	</item>
		<item>
		<title>Sending Mail Async</title>
		<link>https://huseyincakir.wordpress.com/2014/01/06/sending-mail-async/</link>
		<comments>https://huseyincakir.wordpress.com/2014/01/06/sending-mail-async/#respond</comments>
		<pubDate>Mon, 06 Jan 2014 19:39:51 +0000</pubDate>
		<dc:creator><![CDATA[huseyincakir]]></dc:creator>
				<category><![CDATA[CSharp]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://huseyincakir.wordpress.com/?p=914</guid>
		<description><![CDATA[This post is for an answer to &#8220;how can I show progress of sending mail&#8221; question for my old post: https://huseyincakir.wordpress.com/2010/03/11/mono-c-sending-mail-through-gmail/ Here is my solution;<img alt="" border="0" src="https://pixel.wp.com/b.gif?host=huseyincakir.wordpress.com&#038;blog=6853212&#038;post=914&#038;subd=huseyincakir&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>This post is for an answer to &#8220;how can I show progress of sending mail&#8221; question for my old post: <a href="https://huseyincakir.wordpress.com/2010/03/11/mono-c-sending-mail-through-gmail/">https://huseyincakir.wordpress.com/2010/03/11/mono-c-sending-mail-through-gmail/</a></p>
<p>Here is my solution;</p>
<pre class="brush: cpp; title: ; notranslate">
using System;
using System.Net.Mail;
using System.Collections.Generic;
using System.Text;
using Gtk;
using GtkSharp;
using GLib;
using System.Net;
using System.Security.Cryptography.X509Certificates;
using System.Net.Security;
using System.Net.Mime;
using System.Threading;
using System.ComponentModel;
namespace KentSoft
{
 class printTest : Window
 {
 public printTest()
 : base(&quot;calisma&quot;)
 {

 try{
 MailMessage mail = new MailMessage();
 SmtpClient SmtpServer = new SmtpClient(&quot;smtp.gmail.com&quot;);
 mail.From = new MailAddress(&quot;yourmail@gmail.com&quot;);
 mail.To.Add(&quot;hismail@gmail.com&quot;);
 mail.Subject = &quot;TEST&quot;;
 mail.Body = &quot;This is for testing SMTP mail from GMAIL&quot;;
 SmtpServer.Port = 587;
 SmtpServer.Credentials = new System.Net.NetworkCredential(&quot;youmailwithout@gmail.com&quot;, &quot;yourpassword&quot;);
 SmtpServer.EnableSsl = true;

 SmtpServer.SendCompleted += new SendCompletedEventHandler(client_SendCompleted);

 string userState = &quot;test message1&quot;;
 SmtpServer.SendAsync(mail, userState);
 Console.WriteLine(&quot;Sending message... press c to cancel mail. Press any other key to exit.&quot;);
 string answer = Console.ReadLine();
 // If the user canceled the send, and mail hasn't been sent yet,
 // then cancel the pending operation.
 if (answer.StartsWith(&quot;c&quot;) &amp;&amp; mailSent == false)
 {
 SmtpServer.SendAsyncCancel();
 }
 // Clean up.
 mail.Dispose();
 Console.WriteLine(&quot;Goodbye.&quot;);
 }

 catch(Exception e){
 Console.WriteLine(&quot;Ouch!&quot;+e.ToString());
 }
 }

void client_SendCompleted(object sender, AsyncCompletedEventArgs e)
 {
 // Get the unique identifier for this asynchronous operation.
 String token = (string) e.UserState;

if (e.Cancelled)
 {
 Console.WriteLine(&quot;[{0}] Send canceled.&quot;, token);
 }
 if (e.Error != null)
 {
 Console.WriteLine(&quot;[{0}] {1}&quot;, token, e.Error.ToString());
 } else
 {
 Console.WriteLine(&quot;Message sent.&quot;);
 }
 mailSent = true;
 }
 static bool mailSent = false;

 public static void Main()
 {
 Application.Init();
 new printTest();
 Application.Run();
 }
 }
}
</pre><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huseyincakir.wordpress.com/914/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huseyincakir.wordpress.com/914/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=huseyincakir.wordpress.com&#038;blog=6853212&#038;post=914&#038;subd=huseyincakir&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://huseyincakir.wordpress.com/2014/01/06/sending-mail-async/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/346af7ec9c5ae219a55c2971eee6e654?s=96&#38;d=https%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">huseyincakir</media:title>
		</media:content>
	</item>
	</channel>
</rss>
