<?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>aklıma takılanlar</title>
	<atom:link href="https://onurs.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://onurs.wordpress.com</link>
	<description>edebi kışkırtmalar, iç hesaplaşmalar, bilgilendirmeler, kendime notlar</description>
	<lastBuildDate>Sun, 02 Nov 2014 16:42:45 +0000</lastBuildDate>
	<language>tr-TR</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='onurs.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>https://s0.wp.com/i/buttonw-com.png</url>
		<title>aklıma takılanlar</title>
		<link>https://onurs.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="https://onurs.wordpress.com/osd.xml" title="aklıma takılanlar" />
	<atom:link rel='hub' href='https://onurs.wordpress.com/?pushpress=hub'/>
	<item>
		<title>Rebooting Matlab</title>
		<link>https://onurs.wordpress.com/2014/11/02/rebooting-matlab/</link>
					<comments>https://onurs.wordpress.com/2014/11/02/rebooting-matlab/#respond</comments>
		
		<dc:creator><![CDATA[onurs]]></dc:creator>
		<pubDate>Sun, 02 Nov 2014 16:42:45 +0000</pubDate>
				<category><![CDATA[matlab]]></category>
		<category><![CDATA[reboot]]></category>
		<guid isPermaLink="false">http://onurs.wordpress.com/?p=529</guid>

					<description><![CDATA[I saw a very effective code sniplet to reboot matlab(unfortunately, there is no reboot command in matlab ) and i added it as a shortcut to workspace header. Here is the code: % Reboots matlab. Currently only works if only one instance of matlab is running. [x, out] = system(&#8216;tasklist /v /fo csv &#124; findstr [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>I saw a very effective code sniplet to reboot matlab(unfortunately, there is no <strong>reboot</strong> command in matlab ) and i added it as a shortcut to workspace header. Here is the code:</p>
<blockquote><p>% Reboots matlab. Currently only works if only one instance of matlab is running.<br />
[x, out] = system(&#8216;tasklist /v /fo csv | findstr /i &#8220;matlab.exe&#8221;&#8216;);<br />
if length(strfind(out, 10)) &gt; 1<br />
disp(&#8216;More than one instance of Matlab are running, don&#8221;t know which to kill.&#8217;);<br />
return;<br />
end<br />
out = out(length(&#8216;&#8221;MATLAB.exe&#8221;,&#8221;&#8216;)+1:end);<br />
nd = strfind(out, &#8216;&#8221;&#8216;);<br />
mypid = out(1:nd(1)-1);<br />
% Start a new instance of Matlab on a separate process in the same<br />
% directory.<br />
system([&#8216;start matlab.exe -sd &#8216; pwd()]);<br />
system([&#8216;taskkill /f /pid &#8216; mypid])</p></blockquote>
<ul>
<li><a title="source" href="http://www.mathworks.com/matlabcentral/newsreader/view_original/912377" target="_blank">credits</a></li>
</ul>
]]></content:encoded>
					
					<wfw:commentRss>https://onurs.wordpress.com/2014/11/02/rebooting-matlab/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/1f87b4a02c49a11fa8c889b6ac02bbe6fdb9ed951913c5aeb79d2d5b29b1648d?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">onurs</media:title>
		</media:content>
	</item>
		<item>
		<title>Cleanup Disk in Windows</title>
		<link>https://onurs.wordpress.com/2014/07/25/cleanup-disk-in-windows/</link>
					<comments>https://onurs.wordpress.com/2014/07/25/cleanup-disk-in-windows/#respond</comments>
		
		<dc:creator><![CDATA[onurs]]></dc:creator>
		<pubDate>Fri, 25 Jul 2014 11:06:48 +0000</pubDate>
				<category><![CDATA[pratik çözümler]]></category>
		<guid isPermaLink="false">http://onurs.wordpress.com/?p=525</guid>

					<description><![CDATA[First things first; use cleanmgr: Method 1: Click Start, type cleanmgr in the Start Search box, and then click OK. Method 2: Click Start, click All Programs, click Accessories, click System Tools, and then click Disk Cleanup. Method 3: If a Low Disk Space notification appears, click the notification to open the Disk Cleanup wizard. [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>First things first;</p>
<p>use cleanmgr:</p>
<blockquote>
<ul>
<li>Method 1: Click <strong class="uiterm">Start</strong>, type <span class="userInput">cleanmgr </span>in the <strong class="uiterm">Start Search </strong>box, and then click <strong class="uiterm">OK</strong>.</li>
<li>Method 2: Click <strong class="uiterm">Start</strong>, click <strong class="uiterm">All Programs</strong>, click <strong class="uiterm">Accessories</strong>, click <strong class="uiterm">System Tools</strong>, and then click <strong class="uiterm">Disk Cleanup</strong>.</li>
<li>Method 3: If a Low Disk Space notification appears, click the notification to open the Disk Cleanup wizard.</li>
</ul>
</blockquote>
<p>if it is not enough, disable hibernation:</p>
<blockquote>
<ol>
<li>Click <strong class="uiterm">Start</strong>, and then type <span class="userInput">cmd</span> in the <strong class="uiterm">Start Search</strong> box.</li>
<li>In the search results list, right-click <strong class="uiterm">Command Prompt</strong>, and then click <strong class="uiterm">Run as Administrator</strong>.</li>
<li>When you are prompted by User Account Control, click <strong class="uiterm">Continue</strong>.</li>
<li>At the command prompt, type <span class="userInput">powercfg.exe /hibernate off</span>, and then press Enter.</li>
<li>Type <span class="userInput">exit</span>, and then press Enter to close the Command Prompt window.</li>
</ol>
<p>To make hibernation available, follow these steps:</p>
<ol>
<li>Click <strong class="uiterm">Start</strong>, and then type <span class="userInput">cmd</span> in the <strong class="uiterm">Start Search</strong> box.</li>
<li>In the search results list, right-click <strong class="uiterm">Command Prompt</strong>, and then click <strong class="uiterm">Run as Administrator</strong>.</li>
<li>When you are prompted by User Account Control, click <strong class="uiterm">Continue</strong>.</li>
<li>At the command prompt, type <span class="userInput">powercfg.exe /hibernate on</span>, and then press Enter.</li>
<li>Type <span class="userInput">exit</span>, and then press Enter to close the Command Prompt window.</li>
</ol>
</blockquote>
<p>now you have ay least &gt;5GB space. for <a title="delete WinSxS folder in windows" href="http://www.thewindowsclub.com/winsxs-folder-windows-7-8" target="_blank">more</a></p>
<p>&nbsp;</p>
<p>also you can edit the maximum allowable ram size for a running program with <a href="https://support.microsoft.com/kb/947246">this </a>guide.</p>
<p>You may change the maximum ram for dedicated to a  running program from 768 to 1024 etc, with the steps below:</p>
<p>&nbsp;</p>
<blockquote><p>To resolve this problem, modify the desktop heap size. To do this, follow these steps:</p>
<ol>
<li>Click <strong class="uiterm">Start</strong>, type <span class="userInput">regedit</span> in the <strong class="uiterm">Start Search</strong> box, and then click <strong class="uiterm">regedit.exe</strong> in the <strong class="uiterm">Programs</strong> list.
<p><b>Note</b> If you are prompted for an administrator password or for confirmation, type your password, or click <strong class="uiterm">Continue</strong>.</li>
<li>Locate and then click the following registry subkey:
<div class="indent"><strong class="uiterm">HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\SubSystems</strong></div>
</li>
<li>Right-click the <strong class="uiterm">Windows</strong> entry, and then click <strong class="uiterm">Modify</strong>.</li>
<li>In the <strong class="uiterm">Value data</strong> section of the <strong class="uiterm">Edit String</strong> dialog box, locate the <strong class="uiterm">SharedSection</strong> entry, and then increase the second value and the third value for this entry.</li>
</ol>
<p><b>Notes</b></p>
<ul>
<li>The second value of the SharedSection registry entry is the size of the desktop heap for each desktop that is associated with an interactive window station. The heap is required for each desktop that is created in the interactive window station (WinSta0). The value is in kilobytes (KB).</li>
<li>The third SharedSection value is the size of the desktop heap for each desktop that is associated with a &#8220;non-interactive&#8221; window station. The value is in kilobytes (KB).</li>
<li>We do not recommend that you set a value that is over <span class="userInput">20480</span> KB for the second SharedSection value.</li>
</ul>
<p>By default, the Windows registry entry contains the following data in an x86-based version of Windows Vista.</p>
<div class="kb_codebody">
<div class="kb_codecontent">
<pre class="code">%SystemRoot%\system32\csrss.exe
ObjectDirectory=\Windows
SharedSection=1024,3072,512
Windows=On
SubSystemType=Windows
ServerDll=basesrv,1
ServerDll=winsrv:UserServerDllInitialization,3
ServerDll=winsrv:ConServerDllInitialization,2
ProfileControl=Off
MaxRequestThreads=16
</pre>
</div>
</div>
<p><b>Note</b> By default, the second value for the SharedSection entry is 3072 in an x86-based version of Windows Vista. By default, this second value for this entry is 20480 in an x64-based version of Windows Vista.</p>
<p>In Windows Vista and in later operating systems, memory allocations are dynamic. Therefore, there is no limitation for memory allocation. However, if you allocate too much memory to the desktop heap, negative performance may occur. This is the reason why we do not recommend that you set a value that is over 20480.</p>
<p><b>Note</b> The desktop heap size is not affected by the physical RAM on the computer. Therefore, you cannot improve the performance by adding physical RAM.</p></blockquote>
]]></content:encoded>
					
					<wfw:commentRss>https://onurs.wordpress.com/2014/07/25/cleanup-disk-in-windows/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/1f87b4a02c49a11fa8c889b6ac02bbe6fdb9ed951913c5aeb79d2d5b29b1648d?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">onurs</media:title>
		</media:content>
	</item>
		<item>
		<title>Eclipse math.h linker error</title>
		<link>https://onurs.wordpress.com/2013/10/20/eclipse-math-h-linker-error/</link>
					<comments>https://onurs.wordpress.com/2013/10/20/eclipse-math-h-linker-error/#respond</comments>
		
		<dc:creator><![CDATA[onurs]]></dc:creator>
		<pubDate>Sun, 20 Oct 2013 12:04:26 +0000</pubDate>
				<category><![CDATA[C/C++]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[c/c++]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[gcc]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">http://onurs.wordpress.com/?p=497</guid>

					<description><![CDATA[As you already know the buggy nature of the eclipse ide, there is also a bug on its linker. Actually it is not a bug only in eclipse, because the error is depend on gcc and its inability to solve math library linking after or middle of the code compilation. Let&#8217;s explain this phenomenon with an example: Asssume that we [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>As you already know the buggy nature of the <span class="GINGER_SOFATWARE_correct">eclipse ide</span>, there is also a bug on its <span class="GINGER_SOFATWARE_correct">linker</span>. Actually it is not a bug only in eclipse, because the error <span class="GINGER_SOFATWARE_correct">is depend</span> on <span class="GINGER_SOFATWARE_noSuggestion GINGER_SOFATWARE_correct">gcc and its inability</span> to solve math library linking after or middle of the code compilation. L<span class="GINGER_SOFATWARE_correct">et&#8217;s</span> explain this phenomenon with an example:</p>
<p><span class="GINGER_SOFATWARE_correct">Asssume that</span> we have the following example<span class="GINGER_SOFATWARE_correct">.</span>c code:</p>
<blockquote>
<pre><code>#include &lt;<span class="GINGER_SOFATWARE_correct">stdio</span><span class="GINGER_SOFATWARE_correct">.</span>h&gt;
#include &lt;math<span class="GINGER_SOFATWARE_correct">.</span>h&gt;
<span class="GINGER_SOFATWARE_correct">int</span> main<span class="GINGER_SOFATWARE_correct">(</span>void)
{
        <span class="GINGER_SOFATWARE_correct">double</span> x = 4.0;
        <span class="GINGER_SOFATWARE_correct">double</span> result = <span class="GINGER_SOFATWARE_noSuggestion GINGER_SOFATWARE_correct">sqrt</span><span class="GINGER_SOFATWARE_correct">(</span>x);
        <span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_correct">printf</span><span class="GINGER_SOFATWARE_correct">(</span>"The</span> square root of %lf is %lf\n", x, result);
        <span class="GINGER_SOFATWARE_correct">return</span> 0;
}</code></pre>
</blockquote>
<p><span class="GINGER_SOFATWARE_correct"><span class="GINGER_SOFATWARE_correct"><span class="GINGER_SOFATWARE_correct">If</span></span></span> we compile <span class="GINGER_SOFATWARE_correct">this code in bash terminal with</span>:</p>
<blockquote>
<pre><code>$ <span class="GINGER_SOFATWARE_noSuggestion GINGER_SOFATWARE_correct">gcc</span> -<span class="GINGER_SOFATWARE_correct">lm</span> test<span class="GINGER_SOFATWARE_correct">.</span>c -o test</code></pre>
</blockquote>
<p><span class="GINGER_SOFATWARE_correct">we</span> have an error as <span class="GINGER_SOFATWARE_correct">undefined reference</span> to <span class="GINGER_SOFATWARE_correct">`sqrt</span>&#8216; (or any other function that called from math<span class="GINGER_SOFATWARE_correct">.</span>h library) Interestingly if we have a static variable inside the <span class="GINGER_SOFATWARE_correct">sqrt</span> like &#8216;<span class="GINGER_SOFATWARE_noSuggestion GINGER_SOFATWARE_correct">sqrt</span><span class="GINGER_SOFATWARE_correct">(</span>12.2)&#8217; the compiler don&#8217;t give us any error. T<span class="GINGER_SOFATWARE_correct">his</span> happens because when we give the <span class="GINGER_SOFATWARE_noSuggestion GINGER_SOFATWARE_correct">gcc</span>  &#8216;-<span class="GINGER_SOFATWARE_noSuggestion GINGER_SOFATWARE_correct">lm</span>&#8216; option, we link the <span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_correct">libm</span><span class="GINGER_SOFATWARE_correct">.</span>a</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span> and <span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_correct">libm</span><span class="GINGER_SOFATWARE_correct">.</span>so</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span> to the <span class="GINGER_SOFATWARE_correct">compiler</span>. &#8220;<code><span class="GINGER_SOFATWARE_correct">.</span><span class="GINGER_SOFATWARE_correct">a"</span></code> files are <strong>static libraries</strong>, as opposed to &#8220;<code>.<span class="GINGER_SOFATWARE_correct">so"</span></code> files which are dynamic libraries. Normally <span class="GINGER_SOFATWARE_noSuggestion GINGER_SOFATWARE_correct">gcc</span> looks for dynamic libraries if available unless passed <code>-static</code>.  In &#8221;<span class="GINGER_SOFATWARE_noSuggestion GINGER_SOFATWARE_correct">sqrt</span><span class="GINGER_SOFATWARE_correct">(</span>12.2)&#8221; case <span class="GINGER_SOFATWARE_noSuggestion GINGER_SOFATWARE_correct">gcc</span> is called &#8216;<span class="GINGER_SOFATWARE_correct">libm</span><span class="GINGER_SOFATWARE_correct">.</span>a&#8217; and not call the function <span class="GINGER_SOFATWARE_noSuggestion GINGER_SOFATWARE_correct">sqrt</span> in the run time, simply assign the value to the static variable.</p>
<p>In bash terminal. <span class="GINGER_SOFATWARE_correct">if</span> we compile <span class="GINGER_SOFATWARE_correct">this code with</span>:</p>
<blockquote>
<pre><code>$ <span class="GINGER_SOFATWARE_correct">gcc</span> test<span class="GINGER_SOFATWARE_correct">.</span>c -o test -<span class="GINGER_SOFATWARE_noSuggestion GINGER_SOFATWARE_correct">lm</span></code></pre>
</blockquote>
<p><span class="GINGER_SOFATWARE_correct">problem</span> would be solved for <span class="GINGER_SOFATWARE_correct">bothe</span> cases. <span class="GINGER_SOFATWARE_correct">to</span> <span class="GINGER_SOFATWARE_correct">to</span> this in Eclipse:</p>
<ol>
<li>Right click on your project in Project Explorer and select Properties.</li>
<li>Go to C\C++ Build -&gt; Settings -&gt; Tool Settings -&gt; Gcc Linker -&gt; Libraries and click on green plus button to add a new library. When the dialog pops up, write <span class="GINGER_SOFATWARE_correct">m</span>, and Eclipse will automatically add the &#8211;<span class="GINGER_SOFATWARE_correct">Im</span> <span class="GINGER_SOFATWARE_correct">flag</span>.</li>
</ol>
<p><a href="https://onurs.wordpress.com/wp-content/uploads/2013/10/screenshot-at-2011-10-31-16-06-40.png"><img width="650" height="365" id="i-519" class="size-full wp-image" src="https://onurs.wordpress.com/wp-content/uploads/2013/10/screenshot-at-2011-10-31-16-06-40.png?w=650" alt="Image" srcset="https://onurs.wordpress.com/wp-content/uploads/2013/10/screenshot-at-2011-10-31-16-06-40.png?w=650 650w, https://onurs.wordpress.com/wp-content/uploads/2013/10/screenshot-at-2011-10-31-16-06-40.png?w=1300 1300w, https://onurs.wordpress.com/wp-content/uploads/2013/10/screenshot-at-2011-10-31-16-06-40.png?w=150 150w, https://onurs.wordpress.com/wp-content/uploads/2013/10/screenshot-at-2011-10-31-16-06-40.png?w=300 300w, https://onurs.wordpress.com/wp-content/uploads/2013/10/screenshot-at-2011-10-31-16-06-40.png?w=768 768w, https://onurs.wordpress.com/wp-content/uploads/2013/10/screenshot-at-2011-10-31-16-06-40.png?w=1024 1024w" sizes="(max-width: 650px) 100vw, 650px" /></a></p>
<p><a title="Thanks for the hekp" href="http://dystopiancode.blogspot.com/2011/10/solving-gcc-mathh-linking-problem-in.html" target="_blank"><span class="GINGER_SOFATWARE_correct">source</span></a><span id="more-497"></span></p>
]]></content:encoded>
					
					<wfw:commentRss>https://onurs.wordpress.com/2013/10/20/eclipse-math-h-linker-error/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/1f87b4a02c49a11fa8c889b6ac02bbe6fdb9ed951913c5aeb79d2d5b29b1648d?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">onurs</media:title>
		</media:content>

		<media:content url="https://onurs.wordpress.com/wp-content/uploads/2013/10/screenshot-at-2011-10-31-16-06-40.png?w=650" medium="image">
			<media:title type="html">Image</media:title>
		</media:content>
	</item>
		<item>
		<title>Latex &#8216;de Denklemlerin Sığdırılması</title>
		<link>https://onurs.wordpress.com/2013/08/05/latex-de-denklemlerin-sigdirilmasi/</link>
					<comments>https://onurs.wordpress.com/2013/08/05/latex-de-denklemlerin-sigdirilmasi/#respond</comments>
		
		<dc:creator><![CDATA[onurs]]></dc:creator>
		<pubDate>Mon, 05 Aug 2013 12:33:55 +0000</pubDate>
				<category><![CDATA[gündelik bilgi]]></category>
		<category><![CDATA[pratik çözümler]]></category>
		<category><![CDATA[latex]]></category>
		<guid isPermaLink="false">http://onurs.wordpress.com/?p=487</guid>

					<description><![CDATA[Makale yazanlar bilir, özellikle çift sütunlu formatlarda, denklemleri sığdırmak bir işkence haline gelebilir. Kimi zaman saatlerinizi denklemi düzgün bir şekilde sokuşturmaya harcayabilirsiniz. Bununla ilgili öteden beridir sorunlarla boğuşan bendeniz de yakın bir zamanda etkin bir çözümünü buldum(sanırım). Kod parçası şöyle: \begin{equation}\resizebox{.9\hsize}{!}{$E=m*c^2$} \end{equation}  resizebox komutundaki &#8220;.9&#8221; o sütunun onda olarak kaçta kaçına sığdırmanızı istediğiniz belirtiyor. misal .9 denklemi sütun genişliğinin 9/10 (%90) sığdırılmasını sağlayacaktır ]]></description>
										<content:encoded><![CDATA[<p>Makale <span class="GINGER_SOFATWARE_spelling">yazanlar</span> <span class="GINGER_SOFATWARE_spelling">bilir,</span> özellikle çift sütunlu <span class="GINGER_SOFATWARE_spelling">formatlarda,</span> <span class="GINGER_SOFATWARE_spelling">denklemleri</span> sığdırmak <span class="GINGER_SOFATWARE_spelling">bir</span> işkence <span class="GINGER_SOFATWARE_spelling">haline</span> gelebilir. Kimi <span class="GINGER_SOFATWARE_spelling">zaman</span> <span class="GINGER_SOFATWARE_spelling">saatlerinizi</span> <span class="GINGER_SOFATWARE_spelling">denklemi</span> düzgün <span class="GINGER_SOFATWARE_spelling">bir</span> şekilde sokuşturmaya harcayabilirsiniz. Bununla <span class="GINGER_SOFATWARE_spelling">ilgili</span> öteden <span class="GINGER_SOFATWARE_spelling">beridir</span> <span class="GINGER_SOFATWARE_spelling">sorunlarla</span> boğuşan <span class="GINGER_SOFATWARE_spelling">bendeniz</span> <span class="GINGER_SOFATWARE_spelling">de</span> yakın <span class="GINGER_SOFATWARE_spelling">bir</span> <span class="GINGER_SOFATWARE_spelling">zamanda</span> <span class="GINGER_SOFATWARE_spelling">etkin</span> <span class="GINGER_SOFATWARE_spelling">bir</span> çözümünü buldum(sanırım). Kod parçası şöyle:</p>
<blockquote>
<p>\begin{equation}<br />\resizebox{.9\hsize<span class="GINGER_SOFATWARE_correct">}</span>{!}{$E=m*c^2$}</p>
<p>\end{equation}</p>
</blockquote>
<p> <span class="GINGER_SOFATWARE_spelling">resizebox</span> <span class="GINGER_SOFATWARE_spelling">komutundaki</span> &#8220;.9&#8221; o sütunun <span class="GINGER_SOFATWARE_spelling">onda</span> <span class="GINGER_SOFATWARE_spelling">olarak</span> kaçta kaçına sığdırmanızı istediğiniz belirtiyor. <span class="GINGER_SOFATWARE_spelling">misal</span> .9 <span class="GINGER_SOFATWARE_spelling">denklemi</span> sütun genişliğinin 9/10 (%90) sığdırılmasını sağlayacaktır </p>
]]></content:encoded>
					
					<wfw:commentRss>https://onurs.wordpress.com/2013/08/05/latex-de-denklemlerin-sigdirilmasi/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/1f87b4a02c49a11fa8c889b6ac02bbe6fdb9ed951913c5aeb79d2d5b29b1648d?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">onurs</media:title>
		</media:content>
	</item>
		<item>
		<title>e-Seçmen Seçmen Bilgileri Sorgulama</title>
		<link>https://onurs.wordpress.com/2013/08/03/e-secmen-secmen-bilgileri-sorgulama/</link>
					<comments>https://onurs.wordpress.com/2013/08/03/e-secmen-secmen-bilgileri-sorgulama/#respond</comments>
		
		<dc:creator><![CDATA[onurs]]></dc:creator>
		<pubDate>Sat, 03 Aug 2013 20:07:36 +0000</pubDate>
				<category><![CDATA[gündem]]></category>
		<category><![CDATA[haberler]]></category>
		<category><![CDATA[türkiye]]></category>
		<category><![CDATA[e-seçmen]]></category>
		<category><![CDATA[seçmen bilgi sorgulama]]></category>
		<category><![CDATA[seçsis]]></category>
		<guid isPermaLink="false">http://onurs.wordpress.com/?p=475</guid>

					<description><![CDATA[Her ne kadar ülkemizde gerçek anlamıyla demokrasiden pek söz edilemese de, şimdilik sahip olduğumuz sandık demokrasisi&#8216;ni (şimdilik) en iyi biçimde kullanma adına sandık bilgilerimizi ve aynı meskende(daire, apartman) kişileri görüp şüpheli bir durum varsa bildirmemiz(aynı zamanda komşularımızı tanımamız için) bir sorgu ekranı. resme tıklayıp siteye kimlik bilgilerinizi ve ekranda gördüğünüz doğrulama kodunu (harf ve rakamları) ilgili alana girerseniz sorgunuzu yapabilirsiniz. Duyarlı vatandaşların artması dileğiyle&#8230;    ]]></description>
										<content:encoded><![CDATA[<p>Her ne <span class="GINGER_SOFATWARE_spelling">kadar</span> ülkemizde gerçek anlamıyla <span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling">demokrasiden</span> <span class="GINGER_SOFATWARE_spelling">pek</span> söz <span class="GINGER_SOFATWARE_spelling">edilemese</span> <span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling">de,</span> şimdilik <span class="GINGER_SOFATWARE_spelling">sahip</span> olduğumuz <a title="ekşi sözlük başlığı" href="https://eksisozluk.com/sandik-demokrasisi--2649787" target="_blank">sandık </a><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling"><a title="ekşi sözlük başlığı" href="https://eksisozluk.com/sandik-demokrasisi--2649787" target="_blank">demokrasisi</a>&#8216;ni</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span> (şimdilik) en <span class="GINGER_SOFATWARE_spelling">iyi</span> biçimde <span class="GINGER_SOFATWARE_spelling">kullanma</span> adına sandık <span class="GINGER_SOFATWARE_spelling">bilgilerimizi</span> <span class="GINGER_SOFATWARE_spelling">ve</span> aynı <span class="GINGER_SOFATWARE_spelling">meskende(daire,</span> <span class="GINGER_SOFATWARE_spelling">apartman)</span> kişileri görüp şüpheli <span class="GINGER_SOFATWARE_spelling">bir</span> durum <span class="GINGER_SOFATWARE_spelling">varsa</span> bildirmemiz(aynı <span class="GINGER_SOFATWARE_spelling">zamanda</span> komşularımızı tanımamız için) <span class="GINGER_SOFATWARE_spelling">bir</span> <span class="GINGER_SOFATWARE_spelling">sorgu</span> ekranı. <span class="GINGER_SOFATWARE_spelling">resme</span> tıklayıp <span class="GINGER_SOFATWARE_spelling">siteye</span> <span class="GINGER_SOFATWARE_spelling">kimlik</span> <span class="GINGER_SOFATWARE_spelling">bilgilerinizi</span> <span class="GINGER_SOFATWARE_spelling">ve</span> <span class="GINGER_SOFATWARE_spelling">ekranda</span> gördüğünüz doğrulama <span class="GINGER_SOFATWARE_spelling">kodunu</span> (harf <span class="GINGER_SOFATWARE_spelling">ve</span> rakamları<span class="GINGER_SOFATWARE_spelling">) <span class="GINGER_SOFATWARE_spelling">ilgili</span> <span class="GINGER_SOFATWARE_spelling">alana</span> <span class="GINGER_SOFATWARE_spelling">girerseniz</span> <span class="GINGER_SOFATWARE_spelling">sorgunuzu</span> yapabilirsiniz. Duyarlı vatandaşların artması dileğiyle&#8230;</span></span></span></p>
<p><a href="http://bilisim.chp.org.tr/esecmen/ESecmen.aspx#.Uf1j3IoW38m"><img width="408" height="530" class="size-full wp-image" id="i-483" alt="Image" src="https://onurs.wordpress.com/wp-content/uploads/2013/08/e-sec3a7men.png?w=408" srcset="https://onurs.wordpress.com/wp-content/uploads/2013/08/e-sec3a7men.png?w=408 408w, https://onurs.wordpress.com/wp-content/uploads/2013/08/e-sec3a7men.png?w=115 115w, https://onurs.wordpress.com/wp-content/uploads/2013/08/e-sec3a7men.png?w=231 231w, https://onurs.wordpress.com/wp-content/uploads/2013/08/e-sec3a7men.png 418w" sizes="(max-width: 408px) 100vw, 408px" /></a></p>
<p><span class="GINGER_SOFATWARE_spelling"><span class="GINGER_SOFATWARE_spelling">   </span></span></p>
]]></content:encoded>
					
					<wfw:commentRss>https://onurs.wordpress.com/2013/08/03/e-secmen-secmen-bilgileri-sorgulama/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/1f87b4a02c49a11fa8c889b6ac02bbe6fdb9ed951913c5aeb79d2d5b29b1648d?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">onurs</media:title>
		</media:content>

		<media:content url="https://onurs.wordpress.com/wp-content/uploads/2013/08/e-sec3a7men.png?w=408" medium="image">
			<media:title type="html">Image</media:title>
		</media:content>
	</item>
		<item>
		<title>Dell bluetooth kopma sorunu</title>
		<link>https://onurs.wordpress.com/2013/07/05/dell-bluetooth-kopma-sorunu/</link>
					<comments>https://onurs.wordpress.com/2013/07/05/dell-bluetooth-kopma-sorunu/#respond</comments>
		
		<dc:creator><![CDATA[onurs]]></dc:creator>
		<pubDate>Fri, 05 Jul 2013 16:47:08 +0000</pubDate>
				<category><![CDATA[keşfettiklerim]]></category>
		<category><![CDATA[pratik çözümler]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[dell bluetooth]]></category>
		<category><![CDATA[device manager]]></category>
		<category><![CDATA[power management]]></category>
		<guid isPermaLink="false">http://onurs.wordpress.com/?p=462</guid>

					<description><![CDATA[Dell bilgisayarlarda gözlemlenen, bluetooth fare, klavye ve kulaklıkların sebepsiz yere kopması sıkça gözlemlenen bir sorun. Bunun için format ve anakart değişimi de dahil olmak üzere birçok  çözüm öneriliyor ve işe yaramıyor. Çünkü asıl sorun başka yerde. Güç yönetimi/power management ile ilgili bir sorun bu. bu nedenle Aygıt yöneticisi(Device Manager) altından Bluetooth sekmesine geliyoruz ve buradan [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Dell bilgisayarlarda gözlemlenen, bluetooth fare, klavye ve kulaklıkların sebepsiz yere kopması sıkça gözlemlenen bir sorun. Bunun için format ve anakart değişimi de dahil olmak üzere birçok  çözüm öneriliyor ve işe yaramıyor. Çünkü asıl sorun başka yerde.</p>
<p>Güç yönetimi/power management ile ilgili bir sorun bu. bu nedenle Aygıt yöneticisi(Device Manager) altından Bluetooth sekmesine geliyoruz ve buradan donanımımızı çift tıklayıp Power Management/güç yönetimi altsekmesinden &#8220;Allow the computer to turn off this device to save power&#8221; (Bilgisayarın bu aygıtı güç tasarrufu için kapatmasına izin ver) deki seçimi kaldırıyoruz. Aşağıda ilgili ekran görüntüsü de bulunmakta. taa taaa..</p>
<p> </p>
<p><a href="https://onurs.wordpress.com/wp-content/uploads/2013/07/dell-bluetooth.jpg"><img width="650" height="475" class="size-full wp-image" id="i-473" alt="Görsel" src="https://onurs.wordpress.com/wp-content/uploads/2013/07/dell-bluetooth.jpg?w=650" srcset="https://onurs.wordpress.com/wp-content/uploads/2013/07/dell-bluetooth.jpg?w=650 650w, https://onurs.wordpress.com/wp-content/uploads/2013/07/dell-bluetooth.jpg?w=150 150w, https://onurs.wordpress.com/wp-content/uploads/2013/07/dell-bluetooth.jpg?w=300 300w, https://onurs.wordpress.com/wp-content/uploads/2013/07/dell-bluetooth.jpg?w=768 768w, https://onurs.wordpress.com/wp-content/uploads/2013/07/dell-bluetooth.jpg 784w" sizes="(max-width: 650px) 100vw, 650px" /></a></p>
<p> </p>
]]></content:encoded>
					
					<wfw:commentRss>https://onurs.wordpress.com/2013/07/05/dell-bluetooth-kopma-sorunu/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/1f87b4a02c49a11fa8c889b6ac02bbe6fdb9ed951913c5aeb79d2d5b29b1648d?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">onurs</media:title>
		</media:content>

		<media:content url="https://onurs.wordpress.com/wp-content/uploads/2013/07/dell-bluetooth.jpg?w=650" medium="image">
			<media:title type="html">Görsel</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu &#8216;da multi-touch pad&#8217;e multitouch özelliği ekleme</title>
		<link>https://onurs.wordpress.com/2012/11/18/ubuntu-da-multi-touch-pade-multitouch-ozelligi-ekleme/</link>
					<comments>https://onurs.wordpress.com/2012/11/18/ubuntu-da-multi-touch-pade-multitouch-ozelligi-ekleme/#respond</comments>
		
		<dc:creator><![CDATA[onurs]]></dc:creator>
		<pubDate>Sun, 18 Nov 2012 14:26:07 +0000</pubDate>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[pratik çözümler]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[tips&tricks]]></category>
		<guid isPermaLink="false">http://onurs.wordpress.com/?p=440</guid>

					<description><![CDATA[öncelikle mutouch driver i kuruyoruz: sudo apt-get install xserver-xorg-input-mutouch ardından, xorg.conf dosyasına birkaç satır bir şeyler ekleyeceğiz. öncelikle xorg.conf dosyasını açalım: sudo gedit /etc/X11/xorg.conf bu dosyada aşağıdaki satırları aynen kopyalayıp, oturumu yeniden başlatalım Section &#8220;InputDevice&#8221;Identifier &#8220;Touchpad&#8221; Driver &#8220;microtouch&#8220; Option &#8220;Device&#8221; &#8220;/dev/input/mouse1&#8221;EndSection   bir başka sorun da touchpad i istenildiği zaman açma/kapatma. onun için de buradaki çözümü [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>öncelikle <span id="GRmark_63e58c60d72b2d28f43e08ee488411e103b416a6_mutouch:0" class="GRcorrect">mutouch</span> driver <span id="GRmark_63e58c60d72b2d28f43e08ee488411e103b416a6_i:1" class="GRcorrect">i</span> <span id="GRmark_63e58c60d72b2d28f43e08ee488411e103b416a6_kuruyoruz:2" class="GRcorrect">kuruyoruz</span>:</p>
<p><strong><span id="GRmark_228505e09cada10cabeed2011e9a2669d022e68d_sudo:0" class="GRcorrect">sudo</span> apt-get install xserver-xorg-input-mutouch</strong></p>
<p>ardından, xorg.conf dosyasına birkaç satır bir şeyler ekleyeceğiz. öncelikle xorg.conf dosyasını açalım:</p>
<p><strong><span id="GRmark_ef30ef23c3ebf8aebb22e806a710adaab961489a_sudo:0" class="GRcorrect">sudo</span> gedit /etc/X11/<span id="GRmark_ef30ef23c3ebf8aebb22e806a710adaab961489a_xorg:1" class="GRcorrect">xorg</span><span id="GRmark_ef30ef23c3ebf8aebb22e806a710adaab961489a_.:2" class="GRcorrect">.</span><span id="GRmark_ef30ef23c3ebf8aebb22e806a710adaab961489a_conf:3" class="GRcorrect">conf</span></strong></p>
<p>bu dosyada aşağıdaki satırları aynen kopyalayıp, oturumu yeniden başlatalım</p>
<blockquote>
<p>Section &#8220;InputDevice&#8221;<br /><span id="GRmark_6c7d81d386b98aa72e4653b01cf3aa5c50649303_Identifier:0" class="GRcorrect">Identifier</span> &#8220;Touchpad&#8221;<br /> Driver &#8220;<span id="GRmark_5861b4cbcf2fae77723f6cf1d99302bfda0668b8_microtouch:0" class="GRcorrect">microtouch</span>&#8220;<br /> Option &#8220;Device&#8221; &#8220;/dev/input/mouse1&#8221;<br />EndSection</p>
<p> </p>
</blockquote>
<p>bir başka sorun da touchpad i istenildiği zaman açma/kapatma. onun için de <a title="touchpad enabling/disabling" href="http://forums.fedoraforum.org/showthread.php?t=271945" target="_blank">buradaki</a> çözümü uygularsanız sorununuz hallolacaktır.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://onurs.wordpress.com/2012/11/18/ubuntu-da-multi-touch-pade-multitouch-ozelligi-ekleme/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/1f87b4a02c49a11fa8c889b6ac02bbe6fdb9ed951913c5aeb79d2d5b29b1648d?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">onurs</media:title>
		</media:content>
	</item>
		<item>
		<title>Linux(ubuntu) üzerinde 32 bit sistemde ram arttırımı</title>
		<link>https://onurs.wordpress.com/2012/07/12/linuxubuntu-uzerinde-32-bit-sistemde-ram-arttirimi/</link>
					<comments>https://onurs.wordpress.com/2012/07/12/linuxubuntu-uzerinde-32-bit-sistemde-ram-arttirimi/#respond</comments>
		
		<dc:creator><![CDATA[onurs]]></dc:creator>
		<pubDate>Thu, 12 Jul 2012 09:17:31 +0000</pubDate>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">http://onurs.wordpress.com/?p=435</guid>

					<description><![CDATA[başlık biraz devrik oldu ama kusura bakmayın. malum 32bit sistemlerin adresleyebildiği max ram gözesi teorik olarak 2^32 yani 4.3 GB tabi diğer bazı kısıtlardan dolayı görebileceğiniz max ram değeri 3.2Gb i geçmeyecektir. elbette buna da bir çözüm bulunmuş durumda. kernel&#8217;de physical adres extension (pae)kullanılarak arttırılabilir. sözü uzatmadan kodları verelim: öncelikle işlemcinizin pae destekli olup olmadığına [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>başlık biraz devrik oldu ama kusura bakmayın. malum 32bit sistemlerin adresleyebildiği max ram gözesi teorik olarak 2^32 yani 4.3 GB tabi diğer bazı kısıtlardan dolayı görebileceğiniz max ram değeri 3.2Gb i geçmeyecektir. </p>
<p>elbette buna da bir çözüm bulunmuş durumda. kernel&#8217;de physical adres extension (pae)kullanılarak arttırılabilir. sözü uzatmadan kodları verelim:</p>
<p>öncelikle işlemcinizin pae destekli olup olmadığına bakalım:</p>
<p><code>$ grep --color=always -i PAE /proc/cpuinfo</code></p>
<p>işlemci &#8220;flag&#8221;larında pae kırmızı olarak görünüyorsa işlemcinizin pae desteği vardır. pae desteği ile adresleme için 4 bit daha kazanmış oluyorsunuz. kaba bir hesapla bu normal 32 bit sistemin 2^4=16 katı fazla yani 2^36 bellek gözünü adresleyebileceğiniz anlamına geliyor. zaten günümüzde max 4 ram slotuyla 4x8GB=32GB ram sahibi olabiliyorsunuz. pae desteğiniz varsa devam edelim:</p>
<p><code>#sudo apt-get install linux-generic-pae linux-headers-generic-pae<br />
</code></p>
<p>ve yeniden başladıp default olarak da seçili olan bu kernel ile oturum açıldığında artık tüm ram&#8217;inizi adresliyebiliyor olmanız gerekir ;)</p>
<p>kaldırmak için:</p>
<p><code>#sudo apt-get remove linux-generic-pae linux-headers-generic-pae<br />
</code></p>
]]></content:encoded>
					
					<wfw:commentRss>https://onurs.wordpress.com/2012/07/12/linuxubuntu-uzerinde-32-bit-sistemde-ram-arttirimi/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/1f87b4a02c49a11fa8c889b6ac02bbe6fdb9ed951913c5aeb79d2d5b29b1648d?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">onurs</media:title>
		</media:content>
	</item>
		<item>
		<title>ubuntu üzerinde matlab 2011 b mex ayarları</title>
		<link>https://onurs.wordpress.com/2012/05/09/ubuntu-uzerinde-matlab-2011-b-mex-ayarlari/</link>
					<comments>https://onurs.wordpress.com/2012/05/09/ubuntu-uzerinde-matlab-2011-b-mex-ayarlari/#respond</comments>
		
		<dc:creator><![CDATA[onurs]]></dc:creator>
		<pubDate>Wed, 09 May 2012 01:43:16 +0000</pubDate>
				<category><![CDATA[Tanımlanamayan]]></category>
		<category><![CDATA[matlab]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">http://onurs.wordpress.com/?p=431</guid>

					<description><![CDATA[matlab 2011b için mex düzenlemeleri: öncelikle ubuntu için matlab kurulumundaki adımları biraz kendimize yontarak gerçekleştiriyoruz. Dökümanda bahsedildiği gibi gcc-4.3.4 kullanmak şart değil. Sadece adamlar testlerini o sürümde yapmışlar, başımız ağrımasın diyorlar ;) 2. MATLAB a özel bir bin klasörü oluşturalım: mkdir ~/.matlab/bin 3. gcc ile sistemimizde kurulu(bende 4.5) gcc-4.5 ile via MATLAB a özel bin [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>matlab 2011b için mex düzenlemeleri:</p>
<p>öncelikle ubuntu için matlab kurulumundaki adımları biraz kendimize yontarak gerçekleştiriyoruz. Dökümanda bahsedildiği gibi gcc-4.3.4 kullanmak şart değil. Sadece adamlar testlerini o sürümde yapmışlar, başımız ağrımasın diyorlar ;)</p>
<p>2. MATLAB a özel bir bin klasörü oluşturalım:</p>
<p><strong>mkdir ~/.matlab/bin</strong></p>
<p>3. gcc ile sistemimizde kurulu(bende 4.5) gcc-4.5 ile via MATLAB a özel bin klasörü arasında sembolik link oluşturalım.</p>
<p><strong>ln -s /usr/bin/gcc-4.3 ~/.matlab/bin/gcc</strong></p>
<p>4.local startup.m dosyası oluşturup, bin dosyasını $PATH değişkenine ekleyelim. böylece her çalışma öncesi bin yolu PATH a yazılmış olur:</p>
<p><strong>printf &#8220;setenv(&#8216;PATH&#8217;,sprintf(&#8216;/home/%%s/.matlab/bin:%%s&#8217;,getenv(&#8216;USER&#8217;),getenv(&#8216;PATH&#8217;)));\n&#8221; &gt;&gt; ~/Documents/MATLAB/startup.m</strong></p>
<p>/usr/local/MATLAB/R2011b/bin klasörüne gidip &#8220;mexopts.sh&#8221; dosyasını düzenleyelim:</p>
<p><strong>sudo gedit /usr/local/MATLAB/R2011b/bin/mexopts.sh</strong></p>
<p>bu dosyada <strong>CC=&#8217;gcc&#8217;</strong> yi <strong>CC=&#8217;gcc-4.5&#8242;</strong> e, <strong>CXX=&#8217;g++</strong>&#8216; yi <strong>CXX=&#8217;g++-4.5&#8242;</strong>, ve <strong>FC=&#8217;gfortran&#8217;</strong> ı <strong>FC=&#8217;gfortran-4.5&#8242;</strong> olacak şekilde değişikliklerini yapalım. Elbette bunlar bende kurulu olanlar, siz kendinizde olan derleyicilere göre değiştirebilirsiniz.</p>
<p>bu işlemi yaptıktan sonra kaydedip kapatalım. Ardından</p>
<p><strong>sudo /usr/local/MATLAB/R2011b/bin/mex -setup</strong></p>
<p>komutunu çalıştırıp bu ayarları /home klasörü altındaki ayar dosysına yazmasını sağlayalım</p>
<p>derleme sonrası mex şöyle bir sorunla(kısaltılmış) karşılaştı:</p>
<p>libstdc++.so.6: version `GLIBCXX_3.4.14&#8242; not found (required by /usr/lib/libppl_c.so.2)<br />libstdc++.so.6: version `GLIBCXX_3.4.11&#8242; not found (required by /usr/lib/libppl_c.so.2)<br />libstdc++.so.6: version `GLIBCXX_3.4.14&#8242; not found (required by /usr/lib/libppl.so.7)<br />libstdc++.so.6: version `GLIBCXX_3.4.11&#8242; not found (required by /usr/lib/libppl.so.7)<br />libstdc++.so.6: version `GLIBCXX_3.4.11&#8242; not found (required by /usr/lib/libgmpxx.so.4)</p>
<p>çözümü mevcut libcstd++ kütüphanesine sembolik link oluşturmaktan geçiyor</p>
<p><strong>sudo ln -s /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5/libstdc++.so /usr/local/MATLAB/R2011b/sys/os/glnx86/libstdc++.so.6</strong></p>
<p>ve<strong> finito</strong></p>
]]></content:encoded>
					
					<wfw:commentRss>https://onurs.wordpress.com/2012/05/09/ubuntu-uzerinde-matlab-2011-b-mex-ayarlari/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/1f87b4a02c49a11fa8c889b6ac02bbe6fdb9ed951913c5aeb79d2d5b29b1648d?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">onurs</media:title>
		</media:content>
	</item>
		<item>
		<title>MATLAB &#8216;da Latex(TeX) scriptleri kullanmak</title>
		<link>https://onurs.wordpress.com/2012/04/29/matlab-da-latex-scriptleri-kullanma/</link>
					<comments>https://onurs.wordpress.com/2012/04/29/matlab-da-latex-scriptleri-kullanma/#respond</comments>
		
		<dc:creator><![CDATA[onurs]]></dc:creator>
		<pubDate>Sun, 29 Apr 2012 11:33:09 +0000</pubDate>
				<category><![CDATA[matlab]]></category>
		<category><![CDATA[pratik çözümler]]></category>
		<guid isPermaLink="false">http://onurs.wordpress.com/2012/04/29/matlab-da-latextex-scriptleri-kullanma/</guid>

					<description><![CDATA[Bilen bilir, bir figürün sağına soluna matematiksel bir ifade koymak istersiniz olmaz. Matlab'da bununla ilgili bir düzenleme varmış. figure, text('Interpreter','latex',... % text interp olarak latex kullaniyoruz       'String','$$\int_0^x\!\int_y dF(u,v)$$',...%Latex string'i       'Position',[.5 .5],... %koordinatlar(iceren kutunun sol orta noktasi)       'FontSize',16) % font buyuklugu]]></description>
										<content:encoded><![CDATA[<pre>Bilen bilir, bir figürün sağına soluna matematiksel bir ifade koymak
istersiniz olmaz. Matlab'da bununla ilgili bir düzenleme varmış.</pre>
<p><span style="color:#000000;"><span id="GRmark_02a0089e5d17a9da04132cdfd99bd46077592570_figure:0" class="GRcorrect">figure</span>,</span></p>
<pre class="code">
<span style="font-family:lucidatypewriter, monospace;"><span style="font-size:small;"><span style="color:#000000;"><span id="GRmark_6eb76656c1ee48c026da6978cca802d8390ebe81_text:0" class="GRcorrect">text</span><span id="GRmark_6eb76656c1ee48c026da6978cca802d8390ebe81_(:1" class="GRcorrect">(</span></span><span style="color:#a020f0;">'Interpreter'</span><span style="color:#000000;">,</span><span style="color:#a020f0;">'latex'</span><span style="color:#000000;"><span id="GRmark_6eb76656c1ee48c026da6978cca802d8390ebe81_,:2" class="GRcorrect">,</span></span><span style="color:#0000ff;">...</span><span style="color:#228b22;"> % text <span id="GRmark_6eb76656c1ee48c026da6978cca802d8390ebe81_interp:3" class="GRcorrect">interp</span> <span id="GRmark_6eb76656c1ee48c026da6978cca802d8390ebe81_olarak:4" class="GRcorrect">olarak</span> latex <span id="GRmark_6eb76656c1ee48c026da6978cca802d8390ebe81_kullaniyoruz:5" class="GRcorrect">kullaniyoruz</span></span></span></span>

<span style="font-family:lucidatypewriter, monospace;"><span style="font-size:small;"><span style="color:#a020f0;">      'String'</span><span style="color:#000000;">,</span><span style="color:#a020f0;">'$$\int_0^x\!\int_y <span id="GRmark_873af42f93927eae903d5f0373151baa1a814436_dF:0" class="GRcorrect">dF</span><span id="GRmark_873af42f93927eae903d5f0373151baa1a814436_(:1" class="GRcorrect">(</span>u<span id="GRmark_873af42f93927eae903d5f0373151baa1a814436_,:2" class="GRcorrect">,</span>v<span id="GRmark_873af42f93927eae903d5f0373151baa1a814436_):3" class="GRcorrect">)</span>$$'</span><span style="color:#000000;"><span id="GRmark_873af42f93927eae903d5f0373151baa1a814436_,:4" class="GRcorrect">,</span></span><span style="color:#0000ff;">...</span><span style="color:#228b22;">%Latex <span id="GRmark_873af42f93927eae903d5f0373151baa1a814436_string'i:5" class="GRcorrect">string'i</span></span></span></span>

<span style="font-family:lucidatypewriter, monospace;"><span style="font-size:small;"><span style="color:#a020f0;">      'Position'</span><span style="color:#000000;"><span id="GRmark_989cb6130ea182283e9780fc209894e07005f859_,:0" class="GRcorrect">,</span>[<span id="GRmark_989cb6130ea182283e9780fc209894e07005f859_.:1" class="GRcorrect">.</span>5 .5],</span><span style="color:#0000ff;">...</span><span style="color:#228b22;"> %koordinatlar(iceren kutunun sol orta noktasi)</span></span></span>

<span style="font-family:lucidatypewriter, monospace;"><span style="font-size:small;"><span style="color:#a020f0;">      '<span id="GRmark_71b9c3b2b2588f5527e264dc4ae881c0509f83b9_FontSize:0" class="GRcorrect">FontSize</span>'</span><span style="color:#000000;"><span id="GRmark_71b9c3b2b2588f5527e264dc4ae881c0509f83b9_,:1" class="GRcorrect">,</span>16) </span><span style="color:#228b22;">% font <span id="GRmark_71b9c3b2b2588f5527e264dc4ae881c0509f83b9_buyuklugu:2" class="GRcorrect">buyuklugu</span></span></span></span>
</pre>
<div style="width: 395px" class="wp-caption alignnone"><a href="https://onurs.wordpress.com/wp-content/uploads/2012/04/mat_image_tex1.jpg"><img class=" wp-image" title="TeX on Matlab" src="https://onurs.wordpress.com/wp-content/uploads/2012/04/mat_image_tex1.jpg?w=385&#038;h=288" alt="Görsel" width="385" height="288" /></a><p class="wp-caption-text"><span id='GRmark_f48be5ae77a4b6fc7f72bfce9985e34d25099cf3_Matlab:0' class='GRcorrect'>Matlab</span> üzerine Tex yerleştirme/Insert TeX on Matlab</p></div>
<p><span style="white-space:nowrap;"><br />
</span></p>
<pre></pre>
]]></content:encoded>
					
					<wfw:commentRss>https://onurs.wordpress.com/2012/04/29/matlab-da-latex-scriptleri-kullanma/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/1f87b4a02c49a11fa8c889b6ac02bbe6fdb9ed951913c5aeb79d2d5b29b1648d?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">onurs</media:title>
		</media:content>

		<media:content url="https://onurs.wordpress.com/wp-content/uploads/2012/04/mat_image_tex1.jpg?w=550" medium="image">
			<media:title type="html">TeX on Matlab</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu Klavye Düzenini (Keyboard Layout) Değiştirme</title>
		<link>https://onurs.wordpress.com/2012/03/06/ubuntu-klavye-duzenini-keyboard-layout-degistirme/</link>
					<comments>https://onurs.wordpress.com/2012/03/06/ubuntu-klavye-duzenini-keyboard-layout-degistirme/#comments</comments>
		
		<dc:creator><![CDATA[onurs]]></dc:creator>
		<pubDate>Tue, 06 Mar 2012 13:05:04 +0000</pubDate>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[pratik çözümler]]></category>
		<category><![CDATA[Tanımlanamayan]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[ubuntu; tips&tricks]]></category>
		<guid isPermaLink="false">http://onurs.wordpress.com/2012/03/06/ubuntu-klavye-duzenini-keyboard-layout-degistirme/</guid>

					<description><![CDATA[Ubuntu Klavye Düzenini (Keyboard Layout) Değiştirme   Her zaman canımı sıkan ve bin takla attıran bir nitelik de türkçe klavyelerdeki nümerik klavyedeki virgülü nokta olarak atamaktır. Özellikle İngilizce tabanlı programlara nümerik ifadeler girdiğimizde epey sıkıntı yaratır bu durum. Ubuntu Keyboard Layout diye aradığımızda da genelde OS düzeyinde müdahalelerde bulunmak gerekir(di). Ancak şimdi çok basit bir [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Ubuntu Klavye Düzenini (Keyboard Layout) Değiştirme</p>
<p> </p>
<p>Her zaman canımı sıkan ve bin takla attıran bir nitelik de türkçe klavyelerdeki nümerik klavyedeki virgülü nokta olarak atamaktır. Özellikle İngilizce tabanlı programlara nümerik ifadeler girdiğimizde epey sıkıntı yaratır bu durum. Ubuntu Keyboard Layout diye aradığımızda da genelde OS düzeyinde müdahalelerde bulunmak gerekir(di). Ancak şimdi çok basit bir özellikle bu sorunu halledebiliriz:</p>
<p> </p>
<ol>
<li><strong>Setings&gt;Keyboard</strong> dan <strong>Layout</strong> sekmesini açıyoruz </li>
<li>burada <strong>Options</strong> butonuna tıklıyoruz.</li>
<li>Gelen menüden envai çeşit ayarı değiştirebilme seçeneğine sahibiz artık</li>
<li><strong>Numeric keypad delete key behaviour</strong> &#8216;dan</li>
<li><strong>Four-level key with dot</strong> butonuna tıklıyoruz</li>
</ol>
<div> </div>
<p> </p>
<p>bitti gitti.  </p>
]]></content:encoded>
					
					<wfw:commentRss>https://onurs.wordpress.com/2012/03/06/ubuntu-klavye-duzenini-keyboard-layout-degistirme/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/1f87b4a02c49a11fa8c889b6ac02bbe6fdb9ed951913c5aeb79d2d5b29b1648d?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">onurs</media:title>
		</media:content>
	</item>
		<item>
		<title>Türkiye ile Vize Muafiyeti olan Ülkeler</title>
		<link>https://onurs.wordpress.com/2011/12/25/turkiye-ile-vize-muafiyeti-olan-ulkeler/</link>
					<comments>https://onurs.wordpress.com/2011/12/25/turkiye-ile-vize-muafiyeti-olan-ulkeler/#respond</comments>
		
		<dc:creator><![CDATA[onurs]]></dc:creator>
		<pubDate>Sun, 25 Dec 2011 11:54:54 +0000</pubDate>
				<category><![CDATA[türkiye]]></category>
		<category><![CDATA[vize]]></category>
		<category><![CDATA[vize-muafiyeti]]></category>
		<guid isPermaLink="false">http://onurs.wordpress.com/?p=409</guid>

					<description><![CDATA[Antigua-Barbuda, Arjantin, Arnavutluk, Bahamalar, Barbados, Belize, Bolivya, Bosna-Hersek, Brezilya, Ekvador, El Salvador, Fas, Fiji, Filipinler, Guatemala, Güney Afrika Cumhuriyeti, Gürcistan, Haiti, Hırvatistan, Honduras, Hong Kong, İran, Jamaika, Japonya, Karadağ, Kazakistan, Kırgızistan, Kuzey Kıbrıs Türk Cumhuriyeti, Kolombiya, Kore Cumhuriyeti (Güney Kore), Kosova, Kosta Rika, Libya, Lübnan, Makau Özel İdare Bölgesi, Makedonya, Maldivler, Malezya, Mauritus, Nikaragua, Pakistan, [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Antigua-Barbuda, Arjantin, Arnavutluk, Bahamalar, Barbados, Belize, Bolivya, Bosna-Hersek, Brezilya, Ekvador, El Salvador, Fas, Fiji, Filipinler, Guatemala, Güney Afrika Cumhuriyeti, Gürcistan, Haiti, Hırvatistan, Honduras, Hong Kong, İran, Jamaika, Japonya, Karadağ, Kazakistan, Kırgızistan, Kuzey Kıbrıs Türk Cumhuriyeti, Kolombiya, Kore Cumhuriyeti (Güney Kore), Kosova, Kosta Rika, Libya, Lübnan, Makau Özel İdare Bölgesi, Makedonya, Maldivler, Malezya, Mauritus, Nikaragua, Pakistan, Palau Cumhuriyeti, Paraguay, Rusya, St. Vincent-Grenadines, Singapur, Solomon Adaları, Sri Lanka, Suriye, Svaziland, Şili, Tanzanya, Tayland, Trinidad-Tobago, Tunus, Tuvalu, Uruguay, Ürdün, Venezuela, Vatikan, Katar, Kamerun, Yemen, Ukrayna.</p>
<p>Ayrıca, Belarus ve Nijerya ile da yapılacak anlaşmalarla çok yakında vizelerin kalkacağı belirtilmiştir.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://onurs.wordpress.com/2011/12/25/turkiye-ile-vize-muafiyeti-olan-ulkeler/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/1f87b4a02c49a11fa8c889b6ac02bbe6fdb9ed951913c5aeb79d2d5b29b1648d?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">onurs</media:title>
		</media:content>
	</item>
		<item>
		<title>ubuntu&#8217;da facebook video görüntüleyememe probleminin çözümü</title>
		<link>https://onurs.wordpress.com/2011/04/02/ubuntuda-facebook-video-goruntuleyememe-probleminin-cozumu/</link>
					<comments>https://onurs.wordpress.com/2011/04/02/ubuntuda-facebook-video-goruntuleyememe-probleminin-cozumu/#respond</comments>
		
		<dc:creator><![CDATA[onurs]]></dc:creator>
		<pubDate>Sat, 02 Apr 2011 17:20:01 +0000</pubDate>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[pratik çözümler]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">http://onurs.wordpress.com/?p=405</guid>

					<description><![CDATA[ubuntu da facebook vb. sitelerde görülen &#8220;video unavailable&#8221; yani videonun görüntülenememesi ile ilgili sorunun çözümüne ilişkin önerilen yöntemler içinde işe yaramış olan, şu sitede bulduğum çözümü aşağıda yayınlıyorum: Ubuntu 10.10 Flash Player &#124; Facebook Video Unavailable Solved &#124; Even 64 bit Flash Player Installation Guide &#124; Firefox Chrome Opera Flash Player in Ubuntu 64 bit [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>ubuntu da facebook vb. sitelerde görülen &#8220;video unavailable&#8221; yani videonun görüntülenememesi ile ilgili sorunun çözümüne ilişkin önerilen yöntemler içinde işe yaramış olan, <a href="http://prmxpression.tumblr.com/post/3511654734/ubuntu-10-10-flash-player-facebook-video-unavailable">şu sitede</a> bulduğum çözümü aşağıda yayınlıyorum:</p>
<p>Ubuntu 10.10 Flash Player | Facebook Video Unavailable Solved | Even 64 bit Flash Player Installation Guide | Firefox Chrome Opera Flash Player in Ubuntu 64 bit</p>
<p>After all those Video and Flash player issues in Ubuntu whether Firefox or Google Chrome, I finally got a solution to all of those. The 64 bit Flash Player issue also has the same solution. So let’s get started.</p>
<p>STEP 1 :</p>
<p>64 bit Users </p>
<p>go to Link : <a href="http://labs.adobe.com/downloads/flashplayer10_square.html" rel="nofollow">http://labs.adobe.com/downloads/flashplayer10_square.html</a>       </p>
<p>fron the release list download the one for 64 bit linux extract it get the ‘libflashplayer.so’ file.</p>
<p>32 bit users</p>
<p>go to <a href="http://get.adobe.com/flashplayer/" rel="nofollow">http://get.adobe.com/flashplayer/</a> from the ‘select version to download’ drop down menu download the ‘.tar.gz’ file for linux extract it get the ‘libflashplayer.so’ file </p>
<p>STEP 2:</p>
<p>FIREFOX &#8211;</p>
<p>a. Open terminal go into the folder/directory where ‘libflashplayer.so’ file is using ‘cd’ (eg.  cd Downloads  or  cd Desktop )command or any other way  you like.</p>
<p>After that …..</p>
<p>b. In Terminal type</p>
<p>sudo cp libflashplayer.so /usr/lib/firefox-4.0-4.0b13pre/plugins</p>
<p>Note: Look carefully at bold folder ‘firefox-4.0-4.0b13pre’, this is my installation you can change this to your installation like ‘/usr/lib/firefox-3.6.15pre/plugins’ etc. rest remains same.</p>
<p>GOOGLE CHROME &#8211;</p>
<p>a. same as for firefox.</p>
<p>b. In Terminal type </p>
<p>sudo cp libflashplayer.so /opt/google/chrome</p>
<p>OPERA &#8211;</p>
<p>a. same as for firefox.</p>
<p>b. sudo cp libflashplayer.so /usr/lib/opera</p>
<p>That’s it Enjoy every video in Firefox, Opera, Chrome in Ubuntu</p>
]]></content:encoded>
					
					<wfw:commentRss>https://onurs.wordpress.com/2011/04/02/ubuntuda-facebook-video-goruntuleyememe-probleminin-cozumu/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/1f87b4a02c49a11fa8c889b6ac02bbe6fdb9ed951913c5aeb79d2d5b29b1648d?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">onurs</media:title>
		</media:content>
	</item>
		<item>
		<title>Robotics Education Centers Throughout the USA</title>
		<link>https://onurs.wordpress.com/2011/01/03/robotics-education-centers-throughout-the-usa/</link>
					<comments>https://onurs.wordpress.com/2011/01/03/robotics-education-centers-throughout-the-usa/#respond</comments>
		
		<dc:creator><![CDATA[onurs]]></dc:creator>
		<pubDate>Mon, 03 Jan 2011 20:25:11 +0000</pubDate>
				<category><![CDATA[Tanımlanamayan]]></category>
		<guid isPermaLink="false">http://onurs.wordpress.com/?p=401</guid>

					<description><![CDATA[Getting started with robotics can be difficult. Having a support group for guidance and support is extremely helpful. Many support groups have developed around the country to help schools and teachers get on their feet. Here are a few: Alabama: George Blanks runs the BEST competition for the whole southern region. You can contact him [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Getting started with robotics can be difficult. Having a support group for guidance and support is extremely helpful. Many support groups have developed around the country to help schools and teachers get on their feet. Here are a few:</p>
<p>Alabama:<br />
George Blanks runs the BEST competition for the whole southern region. You can contact him at blankgw@auburn.edu.</p>
<p>Alaska:<br />
AREA, Alaska Robotics Education Association,  manages FIRST LEGO League tournaments statewide, supports Alaska FIRST Robotics Competition teams and will hold its first Alaska Open this Spring.  AREA also works in or with several Alaska school districts and the Alaska university system. Specific contact information for AREA can be found at <a href="http://www.akrobotics.org" rel="nofollow">http://www.akrobotics.org</a>,  information on AREA managed, funded or supported events can be found at <a href="http://www.eteamz.com/AREA" rel="nofollow">http://www.eteamz.com/AREA</a> or you can send any initial queries to <a href="mailto:info@akrobotics.org">info@akrobotics.org</a>.</p>
<p>Arizona:<br />
Pima Community College and NASA’s Phoenix Program Office are putting together an organization to support robotics in this state. Please contact Doug Lombardi for information, Lombardi@lpl.arizona.edu.</p>
<p>California:<br />
Northern California has the Western Regional Robotics Forum (WRRF). You can get in touch with them through Eric Reed, eric@mrreed.com and Tom Murphy, TMurphy@contracosta.edu, at Contra Costa Community College.</p>
<p>Los Angeles has the Southern California Regional Robotics Forum (SCRRF), <a href="http://www.scrrf.org" rel="nofollow">http://www.scrrf.org</a>. You can get in touch with this organization through Chris Husmann <a href="mailto:chusmann@earthlink.net">chusmann@earthlink.net</a>, or Dr. Ken Berry, <a href="mailto:ksberry@csun.edu">ksberry@csun.edu</a>.</p>
<p>San Diego has the San Diego Science Alliance <a href="http://www.sdsa.org/robotics/" rel="nofollow">http://www.sdsa.org/robotics/</a>, contact there is Pat Winter, <a href="mailto:pat.winter@gat.com">pat.winter@gat.com</a>, and Team San Diego FIRST Robotics Coalition, contact is Robert Mainieri, <a href="mailto:rmainier@ucsd.edu">rmainier@ucsd.edu</a>.</p>
<p>Colorado:<br />
Jason Marcks (jmarcks@spaceed.org)</p>
<p>Three robotics groups are working in Colorado around Artificial Intelligence robotics. They can be contacted at their email lists pyro-outreach@emergent.brynmawr.edu,  DenverRoboticsClub@yahoogroups.com, FrontRangeRobotics@yahoogroups.com</p>
<p>Florida:<br />
The University of Central Florida is developing a group with Devry University to have Robot Bootcamps, events and competitions. Contact Cynthia Andrews at andrewc@ocps.k12.fl.us.</p>
<p>In the Miami area Nola Garcia, nola@battlebots.com, Runs the Starbots Robotics Center and runs the BattleBot IQ Competition.</p>
<p>In the Tampa Bay area try First Step Robotics. J. Paul Wahnish, barefo6529@aol.com,<br />
is the contact. You may have seen him on Extreme Makeover, Home Addition. He puts on summer robotic workshops and is supporting curriculum efforts in Florida.</p>
<p>Hawaii:<br />
There seem to be several developing groups on the islands. Art Kimura from Future Flight Hawaii knows most of them, art@higp.hawaii.edu.</p>
<p>Indiana:<br />
The 26 compuses of Ivy Tech Community College are supporting robotics teams through a new initiative that is supporting competitions, conferences and support meetings. Contact Indiana FIRST and the robotics network through Daniel Ward II, dward@ivytech.edu.</p>
<p>Kansas:<br />
The College of Education at Wichita State University (WSU) has a Mindstorms program for middle school students and a Roamer program for early childhood. (<a href="http://education.wichita.edu/mindstorms" rel="nofollow">http://education.wichita.edu/mindstorms</a>) WSU and Butler Community College have also started a robotics program that directly impacts high school students. Contacts are Karen Reynolds, <a href="mailto:karen.reynolds@wichita.edu">karen.reynolds@wichita.edu</a>;  Tonya Witherspoon, <a href="mailto:tonya.witherspoon@wichita.edu">tonya.witherspoon@wichita.edu</a>; and Mel Whiteside, <a href="mailto:mwhiteside@butlercc.edu">mwhiteside@butlercc.edu</a>&#8221;</p>
<p>Wichita State University (WSU) Engineering Department runs the Regional BEST Robotics competition as well. Contact Brenda Gile-Laflin, brenda.gile-laflin@wichita.edu.</p>
<p>Massachusetts:<br />
Worchester Polytechnic Institute (WPI) supports several competitions and summer camp programs. Contact Col. Ken Stafford, stafford@WPI.EDU or Brad Miller, brad@bradhouse.com.</p>
<p>Near Boston and Plymouth contact Mike Bastoni, mbastoni@pnta.org and Mark Newby, mnewby@gearseds.com.</p>
<p>For LEGO, contact Lisbeth Ohse. She is our product specialist here at LEGO Education. Her contact info is lohse@LEGOeducation.com.</p>
<p>Tufts University, contact Chris Rogers, crogers@tufts.edu or Merredith Portsmore merredith.portsmore@tufts.edu. They run camps, teacher training, and competitions.</p>
<p>Michigan:<br />
Washtenaw Community College (WCC) located in Ann Arbor, MI offers LEGO robotics camps to prepare students to compete in FIRST LEGO League and Robofest competitions. WCC also offers an industrial robotics program and students can earn college credit by taking our FIRST Robotics Competition course. Contact Maurice Tedder, mtedder@wccnet.edu, or, Gary Schultz, GSchultz@wccnet.edu.</p>
<p>Lawrence Technological University in Southfield host Robofest, <a href="http://www.robofest.net" rel="nofollow">http://www.robofest.net</a> and Robofest Academy, <a href="http://www.robofest.net/academy" rel="nofollow">http://www.robofest.net/academy</a>.</p>
<p>Oakland County Competitive Robotics Association (OCCRA) is the only Intramural Robotics League in the US. OCCRA serves the Detroit Michigan area. Contact is Mike McIntyre, mcmike51@aol.com.</p>
<p>Minnesota:<br />
The Precision Manufactures Organization is supporting robotics competitions and events throughout the state. You can contact them through Charles Arnold, chaz@mpma.com, or Norm Domholt, Normd@npcinc.com.</p>
<p>Nevada:<br />
University of Navada a Reno has Eric Wang, eric.wang@unr.edu. He wrote a book on LEGO Robotics, Engineering with LEGO Bricks and ROBOLAB.</p>
<p>North Carolina:<br />
Kevin Barnard is leading an effort to support educators  kbarnard@wsfcs.k12.nc.us.</p>
<p>New Hampshire:<br />
FIRST Place in Manchester offers classes, camps, and educator workshops.</p>
<p>FIRST Place 200 Bedford Street Manchester, NH 03101<br />
603-666-3906 x427 firstplace@usfirst.org</p>
<p>FIRST LEGO League &#8211; <a href="http://www.firstlegoleague.org" rel="nofollow">http://www.firstlegoleague.org</a> and the FIRST<br />
Robotics Competition &#8211; <a href="http://www.usfirst.org" rel="nofollow">http://www.usfirst.org</a></p>
<p>Robo Tech Center in Nashua offers robotics courses and RoboFest competition. Contact them at 603-888-6102 or <a href="http://www.robotechcenter.com" rel="nofollow">http://www.robotechcenter.com</a>.</p>
<p>Ohio:<br />
In Cleveland Ohio at Cuyahoga Community College Jerry Seppelt, Jerome.seppelt@tri-c.edu,<br />
and George Bilokonsky, George.Bilokonsky@tri-c.edu have been supporting local educators with competitions and workshops.</p>
<p>Oklahoma:<br />
The KISS institute for Practical Robotics puts on the Botball competitions conferences and workshops. You can find information about them at <a href="http://kipr.org" rel="nofollow">http://kipr.org</a>.</p>
<p>Oregon:<br />
Oregon Robotics Tournament and Outreach Program can be found at <a href="http://www.ortop.org/" rel="nofollow">http://www.ortop.org/</a>.</p>
<p>Pennsylvania:<br />
Robin Shoop directs the Robotics Academy at Carnegie Mellon University. The Robotics Academy offers onsite and online professional development opportunities for teachers as well as a comprehensive robotic curriculum. The Robotics Academy hosts robotic camps and competitions for students.  More can be found at <a href="http://www-education.rec.ri.cmu.edu/" rel="nofollow">http://www-education.rec.ri.cmu.edu/</a> or email <a href="mailto:roboed@rec.ri.cmu.edu">roboed@rec.ri.cmu.edu</a>.</p>
<p>Rhode Island:<br />
Liana Ferreira Fenton is working with a consortium of Business and Education partners to support math, science, and technology in Rhode Island. She and her organization are connecting educational standards and state mandates for students with business and industries&#8217; standards. Contact her at LianaFF@aol.com.</p>
<p>Janice C. Kowalczyk (kowalcjn@ride.ri.net) Director, Rhode Island School of the Future does Robotics Park &#8211; which is really cool. <a href="http://www.risf.net/RoboPark.htm" rel="nofollow">http://www.risf.net/RoboPark.htm</a></p>
<p>South Carolina:<br />
Donn Griffith has worked for the FIRST organization to create a competition for the VEX robot. He is returning to teach at the University of South Carolina and develop a robotics educational organization there. You can reach him at dgriffith@usfirst.org.</p>
<p>Texas:<br />
University of Houston, College of Technology’s Center for Technology Literacy (CTL).<br />
Dr. Enrique Barbieri, EBarbieri@central.uh.edu<br />
Taresa M. Mikle, TMMikle@central.uh.edu<br />
In partnership with NASA, CTL is responsible for coordinating Texas regional robotics competitions and other STEM-based activities.</p>
<p>If you are in Austin or Central Texas contact the University of Texas through Kylee.Kesler@ni.com.</p>
<p>Virginia:<br />
Richmond VA. Adria Hogan: Robotics instructor at Benedictine High School. FIRST team 1033. ahogan@benedictinehighschool.org.</p>
<p>West Virginia:<br />
Marshall University supports several Remote sites to control LEGO Robots in SensorCity and Red Rover. Linda Hamilton is the brains behind this project, <a href="http://www.marshall.edu/LEGO/" rel="nofollow">http://www.marshall.edu/LEGO/</a>.</p>
<p>Wisconsin:<br />
Space Education Initiatives / Wisconsin Institute for Robotics in Education<br />
puts on competitions for VEX Robotics and LEGO Robotics for the state. Eric<br />
Brunsell is the contact, <a href="mailto:eric@spaceed.org">eric@spaceed.org</a>. <a href="http://www.wirobotics.org" rel="nofollow">http://www.wirobotics.org</a></p>
<p>Botball:</p>
<p>Arkansas:<br />
Joe Swaty and Will Elliott at the University of Arkansas, Little Rock organize our Botball events in that region. Contact Will Elliott for more information: willelliott@yahoo.com</p>
<p>Florida:<br />
Charles Winton, cwinton@unf.edu, organizes the local Botball events at the University of North Florida campus.</p>
<p>Georgia:<br />
Contact Phil Olivier, olivier_pd@Mercer.edu, at Mercer University in Macon for information about the local Botball events.</p>
<p>Maryland and Virginia:<br />
Contact Botball@kipr.org for information about our Greater DC regional events.</p>
<p>Indiana:<br />
David Mutchler at Rose-Hulman Institute of Technology organizes the Midwest regional Botball events. You can contact him at: David.Mutchler@Rose-Hulman.edu</p>
<p>Massachusetts:<br />
Contact Holly Yanco (holly@cs.uml.edu) at the University of Massachusetts, Lowell or Karl Wurst (kwurst@worcester.edu) at Worcester State College for information about  Botball events in the New England region.</p>
<p>California:<br />
Educators in the Northern California region can contact Terry Grant with NASA Ames at grant@ptolemy.arc.nasa.gov for information about Botball in that region. Teams in the San Diego area can contact Pat Winter at Pat.Winter@gat.com about Southern California regional Botball events. Other southern California area teams can contact botball@kipr.org for more information.</p>
<p>New York and New Jersey:<br />
Contact the local organizers at Polytechnic University, Lamar McFarland at engineering@polynsbe.org or Beverly Johnson at bjohnson@poly.edu, for more information about Botball in this region.</p>
<p>Pennsylvania:<br />
Contact Illah Nourbakhsh at illah@cs.cmu.edu or Rich Simpson (ris20+@pitt.edu) at the University of Pittsburgh for more information about Botball in the Pennsylvania region.</p>
<p><a href="http://find.botmag.com/200601">Source</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://onurs.wordpress.com/2011/01/03/robotics-education-centers-throughout-the-usa/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/1f87b4a02c49a11fa8c889b6ac02bbe6fdb9ed951913c5aeb79d2d5b29b1648d?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">onurs</media:title>
		</media:content>
	</item>
		<item>
		<title>Korkuyorum senden..</title>
		<link>https://onurs.wordpress.com/2010/11/28/korkuyorum-senden/</link>
					<comments>https://onurs.wordpress.com/2010/11/28/korkuyorum-senden/#respond</comments>
		
		<dc:creator><![CDATA[onurs]]></dc:creator>
		<pubDate>Sun, 28 Nov 2010 16:10:07 +0000</pubDate>
				<category><![CDATA[havadan sudan]]></category>
		<category><![CDATA[hayata dair]]></category>
		<guid isPermaLink="false">http://onurs.wordpress.com/?p=391</guid>

					<description><![CDATA[Epeydir yazmıyorum değil mi? Günlük de tutamazdım hiç. Neyse özet geçelim. Şu sıralar askerdeyim. Şırnak sınır bölgesinde minimalist yapıda inşa edilmiş bir birlik buradaki. İşte toplar var, askerler var, dünya angarya iş var. Gariptir bunları yazarken Show tv ‘de Güneydoğudan öyküler önce vatan dizisine denk geldim. Mehmetçik gerçekten Türkiye’nin aynası. Her tür insan var. Ama [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Epeydir yazmıyorum değil mi? Günlük de tutamazdım hiç. Neyse özet geçelim.</p>
<p>Şu sıralar askerdeyim. Şırnak sınır bölgesinde minimalist yapıda inşa edilmiş bir birlik buradaki. İşte toplar var, askerler var, dünya angarya iş var. Gariptir bunları yazarken Show tv ‘de Güneydoğudan öyküler önce vatan dizisine denk geldim. Mehmetçik gerçekten Türkiye’nin aynası. Her tür insan var. Ama şunu anladım ki gerçekten asker doğan bir milletiz. Onca eziyetime rağmen(içim yanıyor ama mecbur) benim için canlarını verir bu çocuklar.</p>
<p>Onun dışında bir kulunu sevmeye başladım galiba. O beni seviyor mu bilmiyorum. Mantığım zorlama diyor, kalbim işte aradığın o. Zaman her şeyin ilacı.</p>
<p>Haydarpaşa’nın yanışına uzaklardan tanık olmak… Canlı canlı kaldırmazdı yüreğim. Boğazıma takıldı bir şeyler, gözlerim yaşlı. Haydarpaşa’nın saçları da yüreğim gibi alev alev :`(</p>
<p>Uzun zaman sonra <a href="http://www.satovi-online.com/catalog/images/EF-527L-1A.jpg">saat</a> takmaya başladım. Yaşlanma ve olgunlaşma  alametlerinden birisi olsa gerek.</p>
<p>Birşeyler eksiliyor içimden, kayıp gidiyor. Tutamıyorum, anlayamıyorum.</p>
<p>Sözü aragon’ a bırakayım ben, kelimelerim tükendi…</p>
<p><strong>Sana Büyük Bir Sır Söyleyeceğim</strong></p>
<p><strong> </strong></p>
<address>Zaman sensin</address>
<address>Zaman kadındır ister ki</address>
<address>Hep okşansın diz çökülsün hep</address>
<address>Dökülmesi gereken bir giysi gibi ayaklarına</address>
<address>Bir taranmış</address>
<address>Bir upuzun saç gibi zaman</address>
<address>soluğun buğulandırıp sildiği ayna gibi</address>
<address>Zaman sensin uyuyan sen şafakta</address>
<address>ben uykusuz seni beklerken</address>
<address>Sensin gırtlağıma dalan bir bıçak gibi&#8230;</address>
<address>Sen ki benim saat-sakağımda vurursun</address>
<address>Boğulurum soluk alıp vermesen</address>
<address>Tenimde bir duraksar ve yerleşir adımın</address>
<address>Sana büyük bir sır söyleyeceğim</address>
<address>Her söz</address>
<address>Dudağımda bir dillenen zavallı</address>
<address>Acınacak bir şey ellerim için</address>
<address>kararan bir şey bakışının altında..</address>
<address>Sana büyük bir sır söyleyeceğim</address>
<address>Korkuyorum senden</address>
<address>Korkuyorum yanın sıra gidenden</address>
<address>pencerelere doğru akşam üzeri</address>
<address>El kol oynatışından söylenmeyen sözlerden</address>
<address>Korkuyorum hızlı ve yavaş</address>
<address>zamandan korkuyorum senden</address>
<address>Sana büyük bir sır söyleyeceğim</address>
<address>Kapat kapıları</address>
<address>Ölmek daha kolaydır sevmekten</address>
<address>Bundandır işte benim yaşamaya katlanmam</address>
<address>Sevgilim…</address>
]]></content:encoded>
					
					<wfw:commentRss>https://onurs.wordpress.com/2010/11/28/korkuyorum-senden/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/1f87b4a02c49a11fa8c889b6ac02bbe6fdb9ed951913c5aeb79d2d5b29b1648d?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">onurs</media:title>
		</media:content>
	</item>
	</channel>
</rss>
