<?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>go &#8211; Selman Tunc</title>
	<atom:link href="https://selmantunc.com.tr/tag/go/feed/" rel="self" type="application/rss+xml" />
	<link>https://selmantunc.com.tr</link>
	<description></description>
	<lastBuildDate>Tue, 06 Apr 2021 19:37:59 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://selmantunc.com.tr/wp-content/uploads/2023/07/cropped-tumblr_inline_oglumuMbgO1tyldvk_540-150x150-1-32x32.jpg</url>
	<title>go &#8211; Selman Tunc</title>
	<link>https://selmantunc.com.tr</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Sevdiğim go projeleri</title>
		<link>https://selmantunc.com.tr/golang/sevdigim-go-projeleri/</link>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 06 Apr 2021 19:37:59 +0000</pubDate>
				<category><![CDATA[golang]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[go]]></category>
		<guid isPermaLink="false">http://selmantunc.com.tr/2021/04/06/sevdigim-go-projeleri/</guid>

					<description><![CDATA[https://docs.gitea.io/en-us/ https://github.com/oxequa/realize#config-sample DOCKER  bunu upload ın silmesinde kullanablirm yada api işlerinde https://github.com/avelino/awesome-go#job-scheduler]]></description>
										<content:encoded><![CDATA[<h2><a href="https://docs.gitea.io/en-us/">https://docs.gitea.io/en-us/</a>
<br></h2>
<p><a href="https://github.com/oxequa/realize#config-sample">https://github.com/oxequa/realize#config-sample</a>
<br></p>
<p>DOCKER </p>
<p>bunu upload ın silmesinde kullanablirm yada api işlerinde </p>
<p><a href="https://github.com/avelino/awesome-go#job-scheduler">https://github.com/avelino/awesome-go#job-scheduler</a></p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Golang tutorials web site</title>
		<link>https://selmantunc.com.tr/golang/golang-tutorials-web-site/</link>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 05 Dec 2020 14:24:29 +0000</pubDate>
				<category><![CDATA[golang]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[go]]></category>
		<guid isPermaLink="false">http://selmantunc.com.tr/2020/12/05/golang-tutorials-web-site/</guid>

					<description><![CDATA[https://go101.org/article/101.html https://softwaredevvideos.tumblr.com/ go clean code  https://github.com/Pungyeon/clean-go-article  Tour of Go How to Write Go Code Effective Go —- Notes on the book Clean Code &#8211; A Handbook of Agile Software Craftsmanship&#8230;]]></description>
										<content:encoded><![CDATA[<p><a href="https://go101.org/article/101.html">https://go101.org/article/101.html</a>
<br></p>
<p><a href="https://softwaredevvideos.tumblr.com/">https://softwaredevvideos.tumblr.com/</a>
<br></p>
<p>go clean code </p>
<p><a href="https://github.com/Pungyeon/clean-go-article">https://github.com/Pungyeon/clean-go-article</a> </p>
<p><br></p>
<p><a href="https://tour.golang.org/">Tour of Go</a></p>
<p><a href="https://golang.org/doc/code.html">How to Write Go Code</a></p>
<p><a href="https://golang.org/doc/effective_go.html">Effective Go</a></p>
<p>—-</p>
<p>Notes on the book Clean Code &#8211; A Handbook of Agile Software Craftsmanship by Robert C. Martin<br></p>
<p><a href="https://github.com/jbarroso/clean-code#error-handling">https://github.com/jbarroso/clean-code#error-handling</a>
<br></p>
<p>—–</p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>golang Numeric Conversions</title>
		<link>https://selmantunc.com.tr/golang/golang-numeric-conversions/</link>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 25 Nov 2020 21:27:18 +0000</pubDate>
				<category><![CDATA[golang]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[go]]></category>
		<guid isPermaLink="false">http://selmantunc.com.tr/2020/11/25/golang-numeric-conversions/</guid>

					<description><![CDATA[Atoi (string to int) i, err := strconv.Atoi(“-42”) ——————————- Itoa (int to string). s := strconv.Itoa(-42)   ——————— int64 to string str:= strconv.FormatInt(int64(165), 10) ——————————- uint64 to string  lastID :=&#8230;]]></description>
										<content:encoded><![CDATA[<h2><b>

Atoi (string to int)

</b></h2>
<p>i, err := strconv.Atoi(“-42”)</p>
<p><b>——————————-</b></p>
<h2><b>

 Itoa (int to string).

</b></h2>
<p>s := strconv.Itoa(-42)</p>
<p>  ———————</p>
<h2><b>int64 to string</b></h2>
<p>str:= strconv.FormatInt(int64(165), 10)<br></p>
<p><b>——————————-</b></p>
<h2><b>

uint64 to string </b></h2>
<p>lastID := strconv.FormatUint(uint64(5656556666), 10) <br></p>
<p><b>——————————–</b></p>
<h2><b>string to 

<b>uint64 </b></b></h2>
<p>catID, _ := strconv.ParseUint(“string”, 10, 64)</p>
<pre></pre>
<h2><b>interface return to string </b></h2>
<p>session.Get(key).(string)</p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>go books</title>
		<link>https://selmantunc.com.tr/golang/go-books/</link>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 20 Oct 2020 20:14:50 +0000</pubDate>
				<category><![CDATA[golang]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[go]]></category>
		<category><![CDATA[gobook]]></category>
		<guid isPermaLink="false">http://selmantunc.com.tr/2020/10/20/go-books/</guid>

					<description><![CDATA[https://thewhitetulip.gitbooks.io/webapp-with-golang-anti-textbook/content/manuscript/02.5ObjectOriented.html]]></description>
										<content:encoded><![CDATA[<p><a href="https://thewhitetulip.gitbooks.io/webapp-with-golang-anti-textbook/content/manuscript/02.5ObjectOriented.html">https://thewhitetulip.gitbooks.io/webapp-with-golang-anti-textbook/content/manuscript/02.5ObjectOriented.html</a>
<br></p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>React.js Notes</title>
		<link>https://selmantunc.com.tr/uncategorized/reactjs-notes/</link>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 29 Aug 2020 00:00:28 +0000</pubDate>
				<category><![CDATA[mobil]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[go]]></category>
		<category><![CDATA[react.js]]></category>
		<guid isPermaLink="false">http://selmantunc.com.tr/2020/08/29/reactjs-notes/</guid>

					<description><![CDATA[https://react.semantic-ui.com/views/advertisement/ https://levelup.gitconnected.com/build-a-todo-app-in-golang-mongodb-and-react-e1357b4690a6 https://coreui.io/react/demo/3.0.1/#/buttons/button-groups]]></description>
										<content:encoded><![CDATA[<p><a href="https://react.semantic-ui.com/views/advertisement/">https://react.semantic-ui.com/views/advertisement/</a></p>
<p><a href="https://levelup.gitconnected.com/build-a-todo-app-in-golang-mongodb-and-react-e1357b4690a6">https://levelup.gitconnected.com/build-a-todo-app-in-golang-mongodb-and-react-e1357b4690a6</a>
<br></p>
<p><br></p>
<p><a href="https://coreui.io/react/demo/3.0.1/#/buttons/button-groups"></a>
<a href="https://coreui.io/react/demo/3.0.1/#/buttons/button-groups">https://coreui.io/react/demo/3.0.1/#/buttons/button-groups</a>
<br></p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>GOPHER AŞKI</title>
		<link>https://selmantunc.com.tr/uncategorized/gopher-aski/</link>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 17 Jul 2020 12:29:56 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[gelengi]]></category>
		<category><![CDATA[go]]></category>
		<category><![CDATA[gopher]]></category>
		<category><![CDATA[sincap]]></category>
		<guid isPermaLink="false">http://selmantunc.com.tr/2020/07/17/gopher-aski/</guid>

					<description><![CDATA[kimse bizim gopher aşkımızı sorgulamaya kalkmasın, golang da severiz gopher da, gelengi de ]]></description>
										<content:encoded><![CDATA[<p>kimse bizim gopher aşkımızı sorgulamaya kalkmasın, golang da severiz gopher da, gelengi de </p>
<figure class="tmblr-full" data-orig-height="1600" data-orig-width="1200"><figure id="attachment_mmd_2135" class="wp-block-image "><img decoding="async" width="1200" height="720" src="https://selmantunc.com.tr/wp-content/uploads/2023/07/31b8441838d4db54c09c579ac647e98508875b74.jpg" class="attachment-full size-full" alt="" loading="lazy" /></figure></figure>
<figure class="tmblr-full" data-orig-height="768" data-orig-width="1024"><figure id="attachment_mmd_2222" class="wp-block-image "><img decoding="async" width="1024" height="405" src="https://selmantunc.com.tr/wp-content/uploads/2023/07/d3ae529d4bba1db6da0f498216c4c40eaeca873b.jpg" class="attachment-full size-full" alt="" loading="lazy" /></figure></figure>
<figure class="tmblr-full" data-orig-height="1600" data-orig-width="1200"><figure id="attachment_mmd_2225" class="wp-block-image "><img decoding="async" width="1200" height="720" src="https://selmantunc.com.tr/wp-content/uploads/2023/07/d9d33b7f83af6c152a1acbc4c4cf7d1643ab2cd5.jpg" class="attachment-full size-full" alt="" loading="lazy" /></figure></figure>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>my gopher</title>
		<link>https://selmantunc.com.tr/uncategorized/my-gopher/</link>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Mon, 18 May 2020 02:56:12 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[go]]></category>
		<category><![CDATA[golang]]></category>
		<category><![CDATA[gopher]]></category>
		<guid isPermaLink="false">http://selmantunc.com.tr/2020/05/18/my-gopher/</guid>

					<description><![CDATA[Gopher is one of the go programmer mascots. And finally he became a gopher in me TR Gopher,  go programcısı maskotlarından biridir. Ve sonunda benimde bir gopher ım  oldu]]></description>
										<content:encoded><![CDATA[<p>Gopher is one of the go programmer mascots. And finally he became a gopher in me</p>
<p>TR</p>
<p>Gopher,  go programcısı maskotlarından biridir. Ve sonunda benimde bir gopher ım  oldu<br></p>
<figure class="tmblr-full" data-orig-height="768" data-orig-width="1024"><figure id="attachment_mmd_2159" class="wp-block-image "><img decoding="async" width="1024" height="405" src="https://selmantunc.com.tr/wp-content/uploads/2023/07/125d3093fe75dd70f4da76cc8bbc6b3336e80e46.jpg" class="attachment-full size-full" alt="" loading="lazy" /></figure></figure>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Install Golang on Raspberry Pi</title>
		<link>https://selmantunc.com.tr/uncategorized/install-golang-on-raspberry-pi/</link>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 11 Jan 2018 23:56:44 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[go]]></category>
		<category><![CDATA[golang]]></category>
		<category><![CDATA[pi]]></category>
		<category><![CDATA[raspberry]]></category>
		<guid isPermaLink="false">http://selmantunc.com.tr/2018/01/11/install-golang-on-raspberry-pi/</guid>

					<description><![CDATA[———————————–1.9.2——————————— wget https://storage.googleapis.com/golang/ go1.9.2.linux-armv6l.tar.gz tar -C /usr/local -xzf go1.9.2.linux-armv6l.tar.gz export PATH=$PATH:/usr/local/go/bin wget https://storage.googleapis.com/golang/go1.8.linux-armv6l.tar.gz  tar -C /usr/local -xzf go1.8.linux-armv6l.tar.gz  export PATH=$PATH:/usr/local/go/bin Compiler (Examples)  your file   -&#62; stnc.go Terminal write  mkdir -p&#8230;]]></description>
										<content:encoded><![CDATA[<p>———————————–1.9.2———————————</p>
<p>wget <a href="https://storage.googleapis.com/golang/">https://storage.googleapis.com/golang/</a>

<a href="https://dl.google.com/go/go1.9.2.linux-armv6l.tar.gz">go1.9.2.linux</a>-armv6l.tar.gz </p>
<p>tar -C /usr/local -xzf

<a href="https://dl.google.com/go/go1.9.2.linux-armv6l.tar.gz">go1.9.2.linux</a>-armv6l.tar.gz </p>
<p>export PATH=$PATH:/usr/local/go/bin</p>
<p>wget <a href="https://storage.googleapis.com/golang/go1.8.linux-armv6l.tar.gz%C2%A0">https://storage.googleapis.com/golang/go1.8.linux-armv6l.tar.gz </a></p>
<p>tar -C /usr/local -xzf go1.8.linux-armv6l.tar.gz </p>
<p>export PATH=$PATH:/usr/local/go/bin</p>
<p><b>Compiler (Examples) </b></p>
<p>
your file   -&gt; stnc.go</p>
<p>Terminal write </p>
<p>
mkdir -p $GOPATH/src/stnc <br>
cd $GOPATH/src/stnc <br>
go get<br>
go build<br>
./stnc<br></p>
<p>—-CRON </p>
<pre><code>sudo crontab -e</code></pre>
<p>

<code>*/25 * * * * /</code>

/src/stnc/stnc<br></p>
<p>My packages cd /root/go/src/stnc  </p>
<p><br></p>
<p>

Debian / UBUNTU Start cron service

<br><code>sudo /etc/init.d/cron start</code>
<br>OR</p>
<p><code>&nbsp;sudo service cron start</code>

<br></p>
<p><b>Mysql </b></p>
<ul><li>sudo apt-get update
</li>
<li>sudo apt-get install mysql-server
</li>
<li>mysql_secure_installation<br><br></li></ul>
<p> mysql -u root -pyourpassword</p>
<p>

CREATE DATABASE crawler;

</p>
<p>mysqldump -u root -p crawler &lt; raspi_.sql </p>
<p>OR</p>
<p>mysql -u root -p crawler &lt; raspi_.sql</p>
<p>MYSQL BACKUP (bash )</p>
<p>mysqldump -u root -pyourpassword crawler &gt; tut_backup.sql</p>
<p>mkdir $(date +%Y_%m_%d-%H%M%S)</p>
<p>// ornek klasor açmak için  <code>mkdir /home/john/$(date +%M)&nbsp;</code></p>
<p><code>&lt;b&gt;Raspian and Diet PI my.cnf file&nbsp;&lt;/b&gt;</code></p>
<p><code>

nano /etc/mysql/mariadb.conf.d/50-server.cnf

&lt;br&gt;</code></p>
<p><code>&lt;a href=&quot;https://dba.stackexchange.com/questions/83125/mysql-any-way-to-import-a-huge-32-gb-sql-dump-faster&quot;&gt;https://dba.stackexchange.com/questions/83125/mysql-any-way-to-import-a-huge-32-gb-sql-dump-faster&lt;/a&gt;
&lt;br&gt;</code></p>
<h2><code>&lt;b&gt;mysql dump&nbsp;&lt;/b&gt;</code></h2>
<p>This error has nothing to do with the php.ini, its clearly an error message from the DBMS.<br></p>
<p>You can increase the value of the max_allowed_packet in the my.cnf file:</p>
<pre><code>[mysqld]
max_allowed_packet = 128M</code></pre>
<p>After restarting your mysqld it should work (for larger data increase the value more)</p>
<p>If you try to “import with putty”, i guess your are using mysql from command line, in this case you can start mysql with the –max_allowed_packet parameter e.g:</p>
<pre><code>mysql --max_allowed_packet=256M -u root -p sampledb &lt; dump.sql</code></pre>
<p>Alternatively if you source the file from within a running mysql session you can set the parameter by:</p>
<pre><code>set global max_allowed_packet=256M;</code></pre>
<p>last example only is effective till next restart of mysqld, for a permanent solution stick to my first example.</p>
<p><br></p>
<p><br></p>
<p><br></p>
<p><br></p>
<h2><b>

Reset your root MySQL password &#8211; Linux</b></h2>
<p>Difficulty: 1<br>Time: 30 minutes</p>
<p>If you’ve forgotten the root user’s password you created for your MySQL database, you can reset it.</p>
<p>It’s important to note that this user and its password are limited to administrator use. This is not the user or password you should use for everyday use.</p>
<h2>Turn off MySQL</h2>
<p> Warning: If you have any sites or application that rely on MySQL to function, these will stop working until you turn MySQL back on.</p>
<p>You must turn the MySQL service off to reset the root password. The command you use to turn MySQL off varies depending on your Linux distribution. Choose the command from the table below for the Linux version you are using:</p>
<p>DistributionsCommand</p>
<p>Ubuntu, Debian</p>
<p><code>sudo service mysql stop</code></p>
<p>Fedora, CentOS 6</p>
<p><code>sudo service mysqld stop</code></p>
<p>CentOS 7</p>
<p><code>sudo systemctl stop mariadb.service</code></p>
<p>Arch Linux</p>
<p><code>sudo systemctl stop mysqld.service</code></p>
<h2>Reset the root password through safe mode</h2>
<p>MySQL safe mode lets you change system settings without using the root password.</p>
<ul><li>Start up safe modesudo mysqld_safe –skip-grant-tablesYou may need to type Enter twice.<br></li></ul>
<p><br></p>
<ul><li>Log into MySQL as root:mysql -u root<br></li></ul>
<p><br></p>
<ul><li>Change to the mysql database, which handles the settings for MySQL itself:use mysql;</li></ul>
<p><br></p>
<ul><li>Update the password for the root user:update user set password=PASSWORD(“the new password you want to use”) where User=‘root’;<br></li></ul>
<p><br></p>
<ul><li>Refresh the MySQL user privileges:flush privileges;<br></li></ul>
<p><br></p>
<ul><li>Exit MySQL:exitIf this doesn’t work, you can try force the application to quit by pressing CTRL-C on your keyboard.<br></li></ul>
<p><br></p>
<h2>Stop and Start MySQL</h2>
<p>Now that the password has been reset, you need to stop and start the MySQL service.</p>
<ol><li>Stop MySQL. Use the table in the “Turn off MySQL section” to find the command.</li>
<li>Start MySQL:DistributionsCommand<br>Ubuntu, Debian<code>sudo service mysql start</code>
<br>Fedora, CentOS 6<code>sudo service mysqld start</code>
<br>CentOS 7<code>sudo systemctl start mariadb.service</code>
<br>Arch Linux<code>sudo systemctl start mysqld.service</code>
<br></li>
<li>Connect to MySQL again with your root user:mysql -u root -p</li>
<li>Enter your new password.</li></ol>
<p>That’s it! You should now be able to log into your MySQL console with the root password.</p>
<p><br></p>
<p><br></p>
<p><br></p>
<p>Olası bir sorun </p>
<p>grant all privileges on *.* to &#8216;root’@&#8217;localhost’ identified by &#8216;passprd gelecek’ with grant option;</p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Golang pointers (İşaretçiler)</title>
		<link>https://selmantunc.com.tr/uncategorized/isaretciler-konusu/</link>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 02 Jan 2018 20:43:14 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[go]]></category>
		<guid isPermaLink="false">http://selmantunc.com.tr/2018/01/02/isaretciler-konusu/</guid>

					<description><![CDATA[https://gobyexample.com/pointersc ve c++ ile uğraşmıssanız işaretciler konusu çok zor bir konu gibi görünebilir, ama bu konuyu öğrenmek için çok sayıda yazı ve blog okursanız ve denemeler yaparsanız öyle korkulacak birşey&#8230;]]></description>
										<content:encoded><![CDATA[<p><a href="https://gobyexample.com/pointers">https://gobyexample.com/pointers</a>c ve c++ ile uğraşmıssanız işaretciler konusu çok zor bir konu gibi görünebilir, ama bu konuyu öğrenmek için çok sayıda yazı ve blog okursanız ve denemeler yaparsanız öyle korkulacak birşey olmadığını görebilirsiniz.</p>
<p>Hatta  <a href="https://stackoverflow.com/users/4/joel-spolsky">Joel Spolsk’</a>ın (

 <a href="https://stackoverflow.com/users/4/joel-spolsky">stackoverflow’</a>un kurucusudur) eski bir <a href="https://www.joelonsoftware.com/">makalesinde </a>okumuştum abimiz derki kendisi pointer yüzünden üniversiteyi bırakan arkadaşlarından söz ediyordu.</p>
<p>Bu yazımda pointer konusunu oldukça geniş ve basit bir şekilde anlatmaya çalışacağım. </p>
<p><b>İşaretçiler ne işe yarar? </b>işaretçiler en yaygın kullanımlarından bazıları </p>
<ul><li>dizi elemanlarını erişmek için </li>
<li>bir fonksiyonun orijinal argümanı değiştirmesi gerekiyorsa bu tür fonksiyonlara argüman göndermek aktarmak için </li>
<li>fonksiyonlara dizi ve karakter Katarı aktarmak için </li>
<li>sistemden bellek almak için </li>
<li>veri yapıları tanımlamak için </li></ul>
<p>Birçok dilde örneğin özel basic ve javada hiç işaretçi olmamasına rağmen işaretçiler c++ önemli bir özelliğidir. </p>
<p>Java da referanslar vardır fakat bunları bir tür sulandırma sulandırılmış işareti diyebiliriz.işaretçileri bunların üzerinde bu denli durmak gerçekten gerekli mi  işaretçileri kullanan bazı işlemler go  da diğer yollardan da gerçekleşebilir.Başka pyhton/ruby  yada php gibi diller ile uğraşmışsanız işaretçiler olmadan da birçok şey yağıldığını görüsünüz.</p>
<p>İşaretçiler Go nun  gücünü arttırmaya yarayan yöntemlerden biridir</p>
<p>işaretçiler kullanılarak veri yapıları oluşturulması mesela bağlı listeler veya ikili ağaçlar göze çarpan örneklerindendir.</p>
<p> Bu nedenle Go da işaretçi kullanmadan kullanmadan da programa yapılabilir/ yapılabiliyor olmamıza rağmen dilden daha fazlasını elde etmek için işaretçileri şart olduğunu fark edeceksiniz.</p>
<p>Devamı gelecek ……..</p>
<p><br></p>
<p><a href="http://piotrzurek.net/2013/09/20/pointers-in-go.html">http://piotrzurek.net/2013/09/20/pointers-in-go.html</a>
<br></p>
<p><a href="https://gobyexample.com/pointers">https://gobyexample.com/pointers</a>
<br></p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>golang Method receivers</title>
		<link>https://selmantunc.com.tr/uncategorized/golang-method-receivers/</link>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 02 Jan 2018 19:35:32 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[go]]></category>
		<category><![CDATA[golang]]></category>
		<guid isPermaLink="false">http://selmantunc.com.tr/2018/01/02/golang-method-receivers/</guid>

					<description><![CDATA[güzel örnek Türkçeye çevrilecek https://nathanleclaire.com/blog/2014/08/09/dont-get-bitten-by-pointer-vs-non-pointer-method-receivers-in-golang/]]></description>
										<content:encoded><![CDATA[<p>güzel örnek Türkçeye çevrilecek</p>
<p><a href="https://nathanleclaire.com/blog/2014/08/09/dont-get-bitten-by-pointer-vs-non-pointer-method-receivers-in-golang/">https://nathanleclaire.com/blog/2014/08/09/dont-get-bitten-by-pointer-vs-non-pointer-method-receivers-in-golang/</a>
<br></p>]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
