<?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/"
	>

<channel>
	<title>Sezer YAMAN</title>
	<atom:link href="https://sezeryaman.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://sezeryaman.com</link>
	<description>Yazılım Geliştirici</description>
	<lastBuildDate>Mon, 16 Mar 2026 19:03:46 +0000</lastBuildDate>
	<language>tr</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>.DS_Store dosyası gitignore&#8217;dan kalıcı olarak nasıl engellenir?</title>
		<link>https://sezeryaman.com/ds_store-dosyasi-gitignoredan-kalici-olarak-nasil-engellenir/</link>
					<comments>https://sezeryaman.com/ds_store-dosyasi-gitignoredan-kalici-olarak-nasil-engellenir/#respond</comments>
		
		<dc:creator><![CDATA[szrymn]]></dc:creator>
		<pubDate>Mon, 16 Mar 2026 18:40:20 +0000</pubDate>
				<category><![CDATA[Genel]]></category>
		<category><![CDATA[.DS_Store]]></category>
		<category><![CDATA[engel]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[gitignore]]></category>
		<guid isPermaLink="false">https://sezeryaman.com/?p=245</guid>

					<description><![CDATA[Mac&#8217;indeki tüm repolar için kalıcı olarak engellemek için global gitignore ayarı aşağıdaki gibidir. Bu kodu terminalden uygulamanız yeterlidir.]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Mac&#8217;indeki tüm repolar için kalıcı olarak engellemek için global gitignore ayarı aşağıdaki gibidir. Bu kodu terminalden uygulamanız yeterlidir.</p>



<div class="wp-block-kevinbatdorf-code-block-pro padding-bottom-disabled cbp-has-line-numbers" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-color:#d8dee9ff;--cbp-line-number-width:calc(1 * 0.6 * .875rem);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span style="display:block;padding:16px 0 0 16px;margin-bottom:-1px;width:100%;text-align:left;background-color:#2e3440ff"><svg xmlns="http://www.w3.org/2000/svg" width="54" height="14" viewBox="0 0 54 14"><g fill="none" fill-rule="evenodd" transform="translate(1 1)"><circle cx="6" cy="6" r="6" fill="#FF5F56" stroke="#E0443E" stroke-width=".5"></circle><circle cx="26" cy="6" r="6" fill="#FFBD2E" stroke="#DEA123" stroke-width=".5"></circle><circle cx="46" cy="6" r="6" fill="#27C93F" stroke="#1AAB29" stroke-width=".5"></circle></g></svg></span><span role="button" tabindex="0" style="color:#d8dee9ff;display:none" aria-label="Copy" class="code-block-pro-copy-button"><pre class="code-block-pro-copy-button-pre" aria-hidden="true"><textarea class="code-block-pro-copy-button-textarea" tabindex="-1" aria-hidden="true" readonly>git config --global core.excludesfile ~/.gitignore_global
echo '**/.DS_Store' >> ~/.gitignore_global</textarea></pre><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2"></path></svg></span><pre class="shiki nord" style="background-color: #2e3440ff" tabindex="0"><code><span class="line"><span style="color: #88C0D0">git</span><span style="color: #D8DEE9FF"> </span><span style="color: #A3BE8C">config</span><span style="color: #D8DEE9FF"> </span><span style="color: #A3BE8C">--global</span><span style="color: #D8DEE9FF"> </span><span style="color: #A3BE8C">core.excludesfile</span><span style="color: #D8DEE9FF"> </span><span style="color: #A3BE8C">~/.gitignore_global</span></span>
<span class="line"><span style="color: #88C0D0">echo</span><span style="color: #D8DEE9FF"> </span><span style="color: #ECEFF4">&#39;</span><span style="color: #A3BE8C">**/.DS_Store</span><span style="color: #ECEFF4">&#39;</span><span style="color: #D8DEE9FF"> </span><span style="color: #81A1C1">&gt;&gt;</span><span style="color: #D8DEE9FF"> </span><span style="color: #A3BE8C">~/.gitignore_global</span></span></code></pre><span style="display:flex;align-items:flex-end;padding:10px;width:100%;justify-content:flex-end;background-color:#2e3440ff;color:#c8d0e0;font-size:12px;line-height:1;position:relative">Bash</span></div>
]]></content:encoded>
					
					<wfw:commentRss>https://sezeryaman.com/ds_store-dosyasi-gitignoredan-kalici-olarak-nasil-engellenir/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Windows 11 sağ tık menüsü Windows 10 gibi nasıl yapılır?</title>
		<link>https://sezeryaman.com/windows-11-sag-tik-menusu-windows-10-gibi-nasil-yapilir/</link>
					<comments>https://sezeryaman.com/windows-11-sag-tik-menusu-windows-10-gibi-nasil-yapilir/#respond</comments>
		
		<dc:creator><![CDATA[szrymn]]></dc:creator>
		<pubDate>Sun, 15 Mar 2026 22:37:59 +0000</pubDate>
				<category><![CDATA[Genel]]></category>
		<guid isPermaLink="false">https://sezeryaman.com/?p=240</guid>

					<description><![CDATA[Bilgisayarınızdan powershell açtıktan sonra aşağıdaki kodu çalıştırın ve görev yöneticisinden Windows Gezgini&#8217;ni yeniden başlatın PowerShell nasıl açılır? PowerShell&#8217;e yapıştırılacak kod; &#160;]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Bilgisayarınızdan powershell açtıktan sonra aşağıdaki kodu çalıştırın ve görev yöneticisinden Windows Gezgini&#8217;ni yeniden başlatın</p>



<p class="wp-block-paragraph"><strong>PowerShell nasıl açılır?</strong></p>



<figure class="wp-block-image"><img fetchpriority="high" decoding="async" width="837" height="820" src="https://sezeryaman.com/wp-content/uploads/2026/03/powershell-nasil-acilir.png" alt="" class="wp-image-241" srcset="https://sezeryaman.com/wp-content/uploads/2026/03/powershell-nasil-acilir.png 837w, https://sezeryaman.com/wp-content/uploads/2026/03/powershell-nasil-acilir-300x294.png 300w, https://sezeryaman.com/wp-content/uploads/2026/03/powershell-nasil-acilir-768x752.png 768w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 984px) 61vw, (max-width: 1362px) 45vw, 600px" /></figure>



<p class="wp-block-paragraph">PowerShell&#8217;e yapıştırılacak kod;</p>



<div class="wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-color:#d8dee9ff;--cbp-line-number-width:calc(1 * 0.6 * .875rem);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span style="display:block;padding:16px 0 0 16px;margin-bottom:-1px;width:100%;text-align:left;background-color:#2e3440ff"><svg xmlns="http://www.w3.org/2000/svg" width="54" height="14" viewBox="0 0 54 14"><g fill="none" fill-rule="evenodd" transform="translate(1 1)"><circle cx="6" cy="6" r="6" fill="#FF5F56" stroke="#E0443E" stroke-width=".5"></circle><circle cx="26" cy="6" r="6" fill="#FFBD2E" stroke="#DEA123" stroke-width=".5"></circle><circle cx="46" cy="6" r="6" fill="#27C93F" stroke="#1AAB29" stroke-width=".5"></circle></g></svg></span><span role="button" tabindex="0" style="color:#d8dee9ff;display:none" aria-label="Copy" class="code-block-pro-copy-button"><pre class="code-block-pro-copy-button-pre" aria-hidden="true"><textarea class="code-block-pro-copy-button-textarea" tabindex="-1" aria-hidden="true" readonly>reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve</textarea></pre><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2"></path></svg></span><pre class="shiki nord" style="background-color: #2e3440ff" tabindex="0"><code><span class="line"><span style="color: #D8DEE9FF">reg add </span><span style="color: #ECEFF4">&quot;</span><span style="color: #A3BE8C">HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32</span><span style="color: #ECEFF4">&quot;</span><span style="color: #D8DEE9FF"> </span><span style="color: #81A1C1">/</span><span style="color: #D8DEE9FF">f </span><span style="color: #81A1C1">/</span><span style="color: #D8DEE9FF">ve</span></span></code></pre></div>



<figure class="wp-block-image"><img decoding="async" width="1033" height="525" src="https://sezeryaman.com/wp-content/uploads/2026/03/Windows-Gezgini-nasil-yeniden-baslatilir.png" alt="" class="wp-image-242" srcset="https://sezeryaman.com/wp-content/uploads/2026/03/Windows-Gezgini-nasil-yeniden-baslatilir.png 1033w, https://sezeryaman.com/wp-content/uploads/2026/03/Windows-Gezgini-nasil-yeniden-baslatilir-300x152.png 300w, https://sezeryaman.com/wp-content/uploads/2026/03/Windows-Gezgini-nasil-yeniden-baslatilir-1024x520.png 1024w, https://sezeryaman.com/wp-content/uploads/2026/03/Windows-Gezgini-nasil-yeniden-baslatilir-768x390.png 768w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" /></figure>



<p class="wp-block-paragraph">&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://sezeryaman.com/windows-11-sag-tik-menusu-windows-10-gibi-nasil-yapilir/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>SEZER YAMAN</title>
		<link>https://sezeryaman.com/sezer-yaman/</link>
					<comments>https://sezeryaman.com/sezer-yaman/#respond</comments>
		
		<dc:creator><![CDATA[szrymn]]></dc:creator>
		<pubDate>Mon, 14 Sep 2020 03:28:01 +0000</pubDate>
				<category><![CDATA[whm]]></category>
		<guid isPermaLink="false">https://sezeryaman.com/?p=192</guid>

					<description><![CDATA[İÇERİK]]></description>
										<content:encoded><![CDATA[<p>İÇERİK</p>
<p><figure id="attachment_27" aria-describedby="caption-attachment-27" style="width: 300px" class="wp-caption alignnone"><img decoding="async" class="size-full wp-image-27" src="https://sezeryaman.com/wp-content/uploads/2017/10/6752271332.png" alt="speedtest.net görsel sonucu" width="300" height="135" /><figcaption id="caption-attachment-27" class="wp-caption-text">speedtest.net görsel sonucu</figcaption></figure></p>
<p><img loading="lazy" decoding="async" class="size-full wp-image-25" src="https://sezeryaman.com/wp-content/uploads/2017/10/ssh-speed-test.png" alt="ssh speed test" width="696" height="232" srcset="https://sezeryaman.com/wp-content/uploads/2017/10/ssh-speed-test.png 696w, https://sezeryaman.com/wp-content/uploads/2017/10/ssh-speed-test-300x100.png 300w" sizes="auto, (max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 984px) 61vw, (max-width: 1362px) 45vw, 600px" /></p>
<p><img loading="lazy" decoding="async" class="size-full wp-image-26" src="https://sezeryaman.com/wp-content/uploads/2017/10/radore.png" alt="radore serverinde speedtest sonucu" width="696" height="233" srcset="https://sezeryaman.com/wp-content/uploads/2017/10/radore.png 696w, https://sezeryaman.com/wp-content/uploads/2017/10/radore-300x100.png 300w" sizes="auto, (max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 984px) 61vw, (max-width: 1362px) 45vw, 600px" /></p>
<p><figure id="attachment_26" aria-describedby="caption-attachment-26" style="width: 300px" class="wp-caption alignnone"><img loading="lazy" decoding="async" class="size-medium wp-image-26" src="https://sezeryaman.com/wp-content/uploads/2017/10/radore-300x100.png" alt="radore serverinde speedtest sonucu" width="300" height="100" srcset="https://sezeryaman.com/wp-content/uploads/2017/10/radore-300x100.png 300w, https://sezeryaman.com/wp-content/uploads/2017/10/radore.png 696w" sizes="auto, (max-width: 300px) 85vw, 300px" /><figcaption id="caption-attachment-26" class="wp-caption-text">radore serverinde speedtest sonucu</figcaption></figure></p>
]]></content:encoded>
					
					<wfw:commentRss>https://sezeryaman.com/sezer-yaman/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>C# Sayı tahmin oyunu</title>
		<link>https://sezeryaman.com/c-sayi-tahmin-oyunu/</link>
					<comments>https://sezeryaman.com/c-sayi-tahmin-oyunu/#respond</comments>
		
		<dc:creator><![CDATA[szrymn]]></dc:creator>
		<pubDate>Tue, 05 Jun 2018 13:10:27 +0000</pubDate>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[sayı tahmin oyunu]]></category>
		<guid isPermaLink="false">https://sezeryaman.com/?p=73</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[<div class="wp-block-syntaxhighlighter-code "><pre class="brush: csharp; title: ; notranslate">
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string&#x5B;] args)
        {
            Random rastgele = new Random();
            int sayi = rastgele.Next(100);
            int sayac = 1;
            while (true)
            {
                Console.WriteLine(&quot;Tahmin girin: &quot;);
                int tahmin = Convert.ToInt32(Console.ReadLine());

                if (tahmin &gt; sayi)
                {
                    Console.WriteLine(&quot;Tahminin büyük&quot;);
                }
                else if (tahmin &lt; sayi)
                {
                    Console.WriteLine(&quot;Tahmin küçük&quot;);
                }
                else
                {
                    Console.WriteLine(&quot;Tebrikler, {0} tahminde bildin.&quot;, sayac);
                    break;
                }
                sayac++;
            }
        }
    }
}

</pre></div>]]></content:encoded>
					
					<wfw:commentRss>https://sezeryaman.com/c-sayi-tahmin-oyunu/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>C# Not Harfi Bulma</title>
		<link>https://sezeryaman.com/c-not-harfi-bulma/</link>
					<comments>https://sezeryaman.com/c-not-harfi-bulma/#respond</comments>
		
		<dc:creator><![CDATA[szrymn]]></dc:creator>
		<pubDate>Tue, 05 Jun 2018 13:10:01 +0000</pubDate>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[C# harf notu bulma]]></category>
		<category><![CDATA[C# not harfi bulma]]></category>
		<guid isPermaLink="false">https://sezeryaman.com/?p=71</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[<div class="wp-block-syntaxhighlighter-code "><pre class="brush: csharp; title: ; notranslate">
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string&#x5B;] args)
        {
            while (true)
            {
                byte not;
                Console.Write(&quot;Not Girin: &quot;);
                string notal = Console.ReadLine();
                if (byte.TryParse(notal, out not))
                {
                    if ((not &gt;= 0) &amp;&amp; (not &lt;= 100))
                    {
                        if (not &gt;= 90)
                        {
                            Console.WriteLine(&quot;Not: A1&quot;);
                        }
                        else if ((not &gt;= 80) &amp;&amp; (not &lt;= 89))
                        {
                            Console.WriteLine(&quot;Not: A2&quot;);
                        }
                        else if ((not &gt;= 75) &amp;&amp; (not &lt;= 79))
                        {
                            Console.WriteLine(&quot;Not: B1&quot;);
                        }
                        else if ((not &gt;= 70) &amp;&amp; (not &lt;= 74))
                        {
                            Console.WriteLine(&quot;Not: B2&quot;);
                        }
                        else if ((not &gt;= 65) &amp;&amp; (not &lt;= 69))
                        {
                            Console.WriteLine(&quot;Not: C1&quot;);
                        }
                        else if ((not &gt;= 60) &amp;&amp; (not &lt;= 64))
                        {
                            Console.WriteLine(&quot;Not: C2&quot;);
                        }
                        else if ((not &gt;= 55) &amp;&amp; (not &lt;= 59))
                        {
                            Console.WriteLine(&quot;Not: D1&quot;);
                        }
                        else if ((not &gt;= 50) &amp;&amp; (not &lt;= 54))
                        {
                            Console.WriteLine(&quot;Not: D2&quot;);
                        }
                        else if ((not &gt;= 40) &amp;&amp; (not &lt;= 49))
                        {
                            Console.WriteLine(&quot;Not: E&quot;);
                        }
                        else if ((not &gt;= 0) &amp;&amp; (not &lt;= 39))
                        {
                            Console.WriteLine(&quot;Not: F1&quot;);
                        }
                    }
                    else
                    {
                        Console.WriteLine(&quot;\nNotlar 0-100 aralığında olmalıdır.\nTekrar girin: &quot;);
                        continue;
                    }

                    Console.WriteLine(&quot;\nDevam etmek istiyor musunuz? (E/H)&quot;);
                    string devam = Console.ReadLine();
                    if ((devam == &quot;E&quot;) || (devam == &quot;e&quot;))
                    {
                        Console.Write(&quot;\n&quot;);
                        continue;
                    }
                    else
                    {
                        break;
                    }
                }
                else
                {
                    Console.WriteLine(&quot;Notlar 0-100 aralığında olmalıdır.\n&quot;);
                    
                }
            }

        }
    }
}

</pre></div>]]></content:encoded>
					
					<wfw:commentRss>https://sezeryaman.com/c-not-harfi-bulma/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>C# ile iki sayının toplamını alma</title>
		<link>https://sezeryaman.com/c-ile-iki-sayinin-toplamini-alma/</link>
					<comments>https://sezeryaman.com/c-ile-iki-sayinin-toplamini-alma/#respond</comments>
		
		<dc:creator><![CDATA[szrymn]]></dc:creator>
		<pubDate>Tue, 05 Jun 2018 13:09:19 +0000</pubDate>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[C# ile iki sayı toplamı]]></category>
		<category><![CDATA[iki sayının toplamını alma]]></category>
		<guid isPermaLink="false">https://sezeryaman.com/?p=69</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[<div class="wp-block-syntaxhighlighter-code "><pre class="brush: csharp; title: ; notranslate">
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace odev1
{
    class Program
    {
        static void Main(string&#x5B;] args)
        {
            int a, b;
            string a1, a2;
            Console.Write(&quot;İlk sayıyı girin: &quot;);
            a1 = Console.ReadLine();

            while (true)
            {
                if (int.TryParse(a1, out a))
                {
                    break;
                }
                else
                {
                    Console.Write(&quot;İlk sayı için geçerli değer girilmedi. Tekrar girin: &quot;);
                    a1 = Console.ReadLine();
                }
            }

            Console.Write(&quot;İkinci sayıyı girin: &quot;);
            a2 = Console.ReadLine();

            while (true)
            {
                if (int.TryParse(a2, out b))
                {
                    break;
                }
                else
                {
                    Console.Write(&quot;İkinci sayı için geçerli değer girilmedi. Tekrar girin: &quot;);
                    a2 = Console.ReadLine();
                }
            }

            Console.WriteLine(&quot;\nİlk sayı: &quot; + a);
            Console.WriteLine(&quot;İkinci sayı: &quot; + b);
            Console.WriteLine(&quot;Toplamı: &quot; + (a + b));
        }
    }
}
</pre></div>]]></content:encoded>
					
					<wfw:commentRss>https://sezeryaman.com/c-ile-iki-sayinin-toplamini-alma/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>C# dairenin alan ve çevresini hesaplama</title>
		<link>https://sezeryaman.com/c-dairenin-alan-ve-cevresini-hesaplama/</link>
					<comments>https://sezeryaman.com/c-dairenin-alan-ve-cevresini-hesaplama/#respond</comments>
		
		<dc:creator><![CDATA[szrymn]]></dc:creator>
		<pubDate>Tue, 05 Jun 2018 13:08:23 +0000</pubDate>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[alan ve çevre hesaplama]]></category>
		<category><![CDATA[C# ile alan hesaplama]]></category>
		<category><![CDATA[C# ile alanın çevresini hesaplama]]></category>
		<category><![CDATA[dairenin alanını hesaplama]]></category>
		<category><![CDATA[dairenin çevresini hesaplama]]></category>
		<guid isPermaLink="false">https://sezeryaman.com/?p=67</guid>

					<description><![CDATA[C# ile kullanıcıdan yarıçapı isteyip dairenin alan ve çevresini hesaplatma formülü]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">C# ile kullanıcıdan yarıçapı isteyip dairenin alan ve çevresini hesaplatma formülü</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: csharp; title: ; notranslate">
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace deneme
{
    class Program
    {
        static void Main(string&#x5B;] args)
        {
            // PI'yi sabitle
            const double PI = 3.14;
            double yaricapi, alan, cevre;
            Console.Write(&quot;Dairenin yarı çapını giriniz:&quot;);

            // kullanıcıdan yarıçapı iste
            yaricapi = Convert.ToDouble(Console.ReadLine());

            // alanı hesapla
            alan = PI * yaricapi * yaricapi;

            // çevreyi hesapla
            cevre = 2 * PI * yaricapi;

            // sonuçları ekrana yazdır
            Console.WriteLine(&quot;Alan: &quot; + alan);
            Console.WriteLine(&quot;Çevre: &quot; + cevre);
        }
    }
}

</pre></div>]]></content:encoded>
					
					<wfw:commentRss>https://sezeryaman.com/c-dairenin-alan-ve-cevresini-hesaplama/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Warning: session_start() [function.session-start]: open hatasının çözümü</title>
		<link>https://sezeryaman.com/warning-session_start-function-session-start-open-hatasinin-cozumu/</link>
					<comments>https://sezeryaman.com/warning-session_start-function-session-start-open-hatasinin-cozumu/#respond</comments>
		
		<dc:creator><![CDATA[szrymn]]></dc:creator>
		<pubDate>Tue, 05 Jun 2018 13:07:04 +0000</pubDate>
				<category><![CDATA[php]]></category>
		<category><![CDATA[session_save_path]]></category>
		<category><![CDATA[session_start]]></category>
		<category><![CDATA[session-start]]></category>
		<guid isPermaLink="false">https://sezeryaman.com/?p=65</guid>

					<description><![CDATA[Bu hatayı aldığınız php dosyasının içine girip session_start(); kodunu buluyoruz ve hemen başına session_save_path(&#8220;/tmp&#8221;); ekliyoruz ve bir de bakmışsınız sorununuz çözülmüş 🙂]]></description>
										<content:encoded><![CDATA[<p>Bu hatayı aldığınız php dosyasının içine girip <span style="color: #339966;">session_start();</span> kodunu buluyoruz ve hemen başına <span style="color: #339966;">session_save_path(&#8220;/tmp&#8221;); </span>ekliyoruz ve bir de bakmışsınız sorununuz çözülmüş 🙂</p>
]]></content:encoded>
					
					<wfw:commentRss>https://sezeryaman.com/warning-session_start-function-session-start-open-hatasinin-cozumu/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Terminalden (SSH) tüm veritabanlarını (MySQL) onarmak</title>
		<link>https://sezeryaman.com/terminalden-ssh-tum-veritabanlarini-mysql-onarmak/</link>
					<comments>https://sezeryaman.com/terminalden-ssh-tum-veritabanlarini-mysql-onarmak/#respond</comments>
		
		<dc:creator><![CDATA[szrymn]]></dc:creator>
		<pubDate>Tue, 05 Jun 2018 13:05:57 +0000</pubDate>
				<category><![CDATA[centos]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[mysql onarımı]]></category>
		<category><![CDATA[mysqlcheck]]></category>
		<category><![CDATA[putty]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[veritabanı onarımı]]></category>
		<guid isPermaLink="false">https://sezeryaman.com/?p=63</guid>

					<description><![CDATA[bu kodları terminalde (putty üzerinden ssh&#8217;de) sırasıyla uyguladığınız zaman (buradan kopyala yapıştır yapınca sırasıyla işleme sokar) sunucunuzdaki çözülebilmeye yüzü olan tüm veritabanlarını işleme sokar ve tamamen patlamadıysa eğer veritabanınızı onarma işlemine sokar, bol şanslar.]]></description>
										<content:encoded><![CDATA[<div class="wp-block-syntaxhighlighter-code "><pre class="brush: bash; title: ; notranslate">
mysqlcheck – -all-databases -r #repair
mysqlcheck – -all-databases -a #analyze
mysqlcheck – -all-databases -o #optimize
</pre></div>


<p class="wp-block-paragraph">bu kodları terminalde (putty üzerinden ssh&#8217;de) sırasıyla uyguladığınız zaman (buradan kopyala yapıştır yapınca sırasıyla işleme sokar) sunucunuzdaki çözülebilmeye yüzü olan tüm veritabanlarını işleme sokar ve tamamen patlamadıysa eğer veritabanınızı onarma işlemine sokar, bol şanslar.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://sezeryaman.com/terminalden-ssh-tum-veritabanlarini-mysql-onarmak/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>iptables kullanımı</title>
		<link>https://sezeryaman.com/iptables-kullanimi/</link>
					<comments>https://sezeryaman.com/iptables-kullanimi/#respond</comments>
		
		<dc:creator><![CDATA[szrymn]]></dc:creator>
		<pubDate>Tue, 05 Jun 2018 13:04:50 +0000</pubDate>
				<category><![CDATA[centos]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[iptables]]></category>
		<category><![CDATA[kullanımı]]></category>
		<guid isPermaLink="false">https://sezeryaman.com/?p=61</guid>

					<description><![CDATA[Sunucunuza erişmesini istemediklerinize ip bloğu koymak için kullandığımız veya özellikle erişmek istediklerinizi (dışarıdan kendiniz) beyaz listeye alma gibi işlemleri terminale bağlantıktan sonra iptables aracılığıyla yapıyoruz. Kısaca; // bloklanmış IP'leri listelemek için; iptables -L INPUT -v -n // bloklanmış IP'yi silmek (bloğu kaldırmak) için; iptables -D INPUT -s x.x.x.x -j DROP // IP adreslerini beyaz listeye &#8230; <a href="https://sezeryaman.com/iptables-kullanimi/" class="more-link">Okumaya devam et<span class="screen-reader-text"> "iptables kullanımı"</span></a>]]></description>
										<content:encoded><![CDATA[<p>Sunucunuza erişmesini istemediklerinize ip bloğu koymak için kullandığımız veya özellikle erişmek istediklerinizi (dışarıdan kendiniz) beyaz listeye alma gibi işlemleri terminale bağlantıktan sonra iptables aracılığıyla yapıyoruz.</p>
<p>Kısaca;</p>
<pre class="lang:php decode:true ">// bloklanmış IP'leri listelemek için;
iptables -L INPUT -v -n

// bloklanmış IP'yi silmek (bloğu kaldırmak) için;
iptables -D INPUT -s x.x.x.x -j DROP

// IP adreslerini beyaz listeye eklemek (güvenilir kılmak) için;
// INPUT: girişlere, OUTPUT: çıkışlara
iptables -A INPUT -s  x.x.x.x -j ACCEPT
iptables -A OUTPUT -s x.x.x.x -j ACCEPT</pre>
]]></content:encoded>
					
					<wfw:commentRss>https://sezeryaman.com/iptables-kullanimi/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
