<?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>Creyn &#187; Around dev world</title>
	<atom:link href="http://blog.creyn.pl/category/around-dev-world/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.creyn.pl</link>
	<description>Programmer&#039;s notes</description>
	<lastBuildDate>Mon, 22 Aug 2016 07:00:21 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.0.38</generator>
	<item>
		<title>Invite your friends to your Facebook fanpage like a Dev</title>
		<link>http://blog.creyn.pl/2016/08/22/invite-your-friends-to-your-facebook-fanpage-like-a-dev/</link>
		<comments>http://blog.creyn.pl/2016/08/22/invite-your-friends-to-your-facebook-fanpage-like-a-dev/#comments</comments>
		<pubDate>Mon, 22 Aug 2016 07:00:21 +0000</pubDate>
		<dc:creator><![CDATA[creyn]]></dc:creator>
				<category><![CDATA[Around dev world]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://blog.creyn.pl/?p=509</guid>
		<description><![CDATA[In this post I will show you a very easy way to invite all of your Facebook friends to like your Facebook fanpage. This is a little hack that will require some source code analyzing and dev skills. But after all, this is extremely easy. After I created the Facebook fanpage for this blog (you...]]></description>
				<content:encoded><![CDATA[<p style="text-align: justify;">In this post I will show you a very easy way to invite all of your Facebook friends to like your Facebook fanpage. This is a little hack that will require some source code analyzing and dev skills. But after all, this is extremely easy.</p>
<p style="text-align: justify;"><span id="more-509"></span></p>
<p style="text-align: justify;">After I created the Facebook fanpage for this blog (you can find it here: <a href="https://facebook.com/creynblog/" target="_blank">https://facebook.com/creynblog/</a>) I decided that I want to invite all of my friends to like it. I wanted them all to join me on my path as a blogger. But the default &#8220;Facebook way&#8221; is to click them one by one on the <strong>&#8220;Invite&#8221;</strong> button next to the photo. And I had a lot of friends (222). So I decided that I will use my dev skills.</p>
<p style="text-align: justify;"><div class='warning2'></p>
<p style="text-align: justify;">If you want to follow, please have in mind that this is not an official method and it worked on 2016-06-14 and maybe it isn&#8217;t working when you are reading this. This is more advanced stuff and you are doing it at your own risk.</p>
<p style="text-align: justify;"></div></p>
<p style="text-align: justify;">So first, go to the Facebook fanpage <strong>&#8220;Invite Friends&#8221;</strong> section:</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-586" src="http://blog.creyn.pl/wp-content/uploads/2016/08/f1.png" alt="f1" width="280" height="284" /></p>
<p style="text-align: justify;">Then you will see the list of your friends. Exactly 100 of your friends. So you have to scroll the list to the very bottom and as you will be doing this, you will notice that more of them are showing. So please scroll to the very bottom of the list (to have all of your friends shown). Next let&#8217;s see under the hood. I am using Chrome browser for this. So right click on the <strong>&#8220;Invite&#8221;</strong> button and choose something like <strong>&#8220;Inspect element&#8221;</strong>. The new window should open and then you can find the source code of the button:</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-587" src="http://blog.creyn.pl/wp-content/uploads/2016/08/f3.png" alt="f3" width="404" height="93" /></p>
<p style="text-align: justify;">You can see that the button has a class attribute called &#8220;<strong>uiButton</strong>&#8220;. So we can select all of the buttons using javasctipt. Open the <strong>Console</strong> tab and now you can execute some code in the context of the website. Quick look at the documentation (<a href="https://developer.chrome.com/devtools/docs/console#selecting-elements" target="_blank">https://developer.chrome.com/devtools/docs/console#selecting-elements</a>) and we can see that to get all elements with specific class we should use the &#8220;$$()&#8221; function. It will give us an array of all buttons that we want to click. So if we count them we should get number of our friends. In my case there was 218, so 4 of my friends were missing. Probably there is some &#8220;don&#8217;t invite me to the fanpage&#8221; option that they selected.</p>
<p style="text-align: justify;">And now the final step. We could execute a &#8220;clicking&#8221; action on each button. It would be exactly like we were clicking all of them manually. This is done by following script:</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-588" src="http://blog.creyn.pl/wp-content/uploads/2016/08/f4.png" alt="f4" width="281" height="25" /></p>
<p style="text-align: justify;">And after just about 1 second (on Chrome browser) all of my friends were spammed with my invitation and I was so happy seeing them accepting the invitation :)</p>
<p style="text-align: justify;">C.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.creyn.pl/2016/08/22/invite-your-friends-to-your-facebook-fanpage-like-a-dev/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create Facebook fanpage for your blog</title>
		<link>http://blog.creyn.pl/2016/06/19/how-to-create-facebook-fanpage-for-your-blog/</link>
		<comments>http://blog.creyn.pl/2016/06/19/how-to-create-facebook-fanpage-for-your-blog/#comments</comments>
		<pubDate>Sun, 19 Jun 2016 18:00:10 +0000</pubDate>
		<dc:creator><![CDATA[creyn]]></dc:creator>
				<category><![CDATA[Around dev world]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://blog.creyn.pl/?p=503</guid>
		<description><![CDATA[In this short post I will show you how to create a fanpage for your blog (or any other website) on Facebook. In order to do this, you will have to have your own personal Facebook profile and then use it to create a fanpage. So please login to your personal profile on Facebook and...]]></description>
				<content:encoded><![CDATA[<p style="text-align: justify;">In this short post I will show you how to create a fanpage for your blog (or any other website) on Facebook. In order to do this, you will have to have your own personal Facebook profile and then use it to create a fanpage. So please login to your personal profile on Facebook and go to the <a href="https://web.facebook.com/pages/create" target="_blank">https://web.facebook.com/pages/create</a> site.</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-513" src="http://blog.creyn.pl/wp-content/uploads/2016/06/FB_1.png" alt="FB_1" width="880" height="612" /></p>
<p style="text-align: justify;">The first step is to choose the type for the new fanpage. For blog use the &#8220;<strong>Brand or Produc</strong>t&#8221; and then &#8220;<strong>Website</strong>&#8220;. You will have to pick a name and after clicking &#8220;<strong>Get started</strong>&#8221; the fanpage will be created.</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-515" src="http://blog.creyn.pl/wp-content/uploads/2016/06/FB_2.png" alt="FB_2" width="271" height="175" /></p>
<p style="text-align: justify;">Now you have to configure the URL of your website (in case of my blog it is: <a href="http://blog.creyn.pl" target="_blank">http://blog.creyn.pl</a>), short description and unique fanpage identifier. It will be used in the link of the fanpage. I wanted to choose &#8220;creyn&#8221; but it was already taken so I choose the &#8220;<strong>creynblog</strong>&#8220;. Now you can go directly to the fanpage of my blog by typing the &#8220;<a href="https://facebook.com/creynblog/" target="_blank">https://facebook.com/creynblog/&#8221;</a> in the browser.</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-516" src="http://blog.creyn.pl/wp-content/uploads/2016/06/FB_3.png" alt="FB_3" width="664" height="415" /></p>
<p style="text-align: justify;">On next tab you have to setup the logo. I have to play with few of my old ones. The image should be square because Facebook will crop it otherwise. The problem is that each of the logos you&#8217;ll try will be saved on your timeline and will be visible to your fans. Fortunatelly you can delete them later in the &#8220;<strong>Photos</strong>&#8221; section.</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-517" src="http://blog.creyn.pl/wp-content/uploads/2016/06/FB_4.png" alt="FB_4" width="610" height="374" /></p>
<p style="text-align: justify;">Next you can add your new fanpage to &#8220;<strong>Favourites</strong>&#8220;. I decided to do this because it is easier to go to fanpage by clicking on the link in the &#8220;<strong>Favourites</strong>&#8221; menu group. You can also skip this step.</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-518" src="http://blog.creyn.pl/wp-content/uploads/2016/06/FB_5.png" alt="FB_5" width="606" height="350" />Next tab, the &#8220;<strong>Preferred Page Audience</strong>&#8221; is a big one. You can pick a location, age and even gender for who your fanpage will be presented. There are a lot of interests that you can choose from. Tooooo many for my taste. Really, it is overwhelming. But hey. This is Facebook, they know how to promote your content. So I spend some time to pick just the two that I find fit the best: &#8220;<strong>Computer programming</strong>&#8221; and &#8220;<strong>Photography</strong>&#8220;. Fortunatelly you can change it later (in the &#8220;<strong>Settings &gt; Preferred Page Audience</strong>&#8221; section of the fanpage).</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-519" src="http://blog.creyn.pl/wp-content/uploads/2016/06/FB_6.png" alt="FB_6" width="477" height="452" /></p>
<p style="text-align: justify;">And this is it. Your new Facebook fanpage is created and configured. Of course you can tweek it later and the number of available settings is huge. Yoy can now explore it and spend some time getting familiar with how it works. Please go and have fun with it :)</p>
<p style="text-align: justify;">I am inviting you to go to my fanpage here: <a href="https://facebook.com/creynblog/" target="_blank">https://facebook.com/creynblog/</a>. I would be honored if you like my fanpage, please say hallo and comment that you came directly from the blog :)</p>
<p align="center"><iframe width="340" height="214" style="border: none; overflow: hidden;" src="https://www.facebook.com/plugins/page.php?href=https%3A%2F%2Fwww.facebook.com%2Fcreynblog%2F&amp;tabs&amp;width=340&amp;height=214&amp;small_header=false&amp;adapt_container_width=true&amp;hide_cover=false&amp;show_facepile=true&amp;appId" scrolling="no" frameborder="0" allowtransparency="true"></iframe></p>
<p style="text-align: justify;">C.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.creyn.pl/2016/06/19/how-to-create-facebook-fanpage-for-your-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add Google Analytics to WordPress blog, part 2: configure blog</title>
		<link>http://blog.creyn.pl/2016/06/13/how-to-add-google-analytics-to-wordpress-blog-part-2-configure-blog/</link>
		<comments>http://blog.creyn.pl/2016/06/13/how-to-add-google-analytics-to-wordpress-blog-part-2-configure-blog/#comments</comments>
		<pubDate>Mon, 13 Jun 2016 21:00:39 +0000</pubDate>
		<dc:creator><![CDATA[creyn]]></dc:creator>
				<category><![CDATA[Around dev world]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[GoogleAnalytics]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.creyn.pl/?p=496</guid>
		<description><![CDATA[This is the second post from the series about adding the &#8220;Google Analytics&#8221; to the &#8220;WordPress&#8221; blog. In the first post (http://blog.creyn.pl/2016/06/07/how-to-add-google-analytics-to-wordpress-blog-part-1-registration/) we have registered to the &#8220;Google Analytics&#8221; service and acquired a new &#8220;Tracking ID&#8221; for our blog. Now we have to configure our blog to include that &#8220;Tracking ID&#8221; on every page that we want to have...]]></description>
				<content:encoded><![CDATA[<p style="text-align: justify;">This is the second post from the series about adding the &#8220;<strong>Google Analytics</strong>&#8221; to the &#8220;<strong>WordPress</strong>&#8221; blog. In the first post (<a href="http://blog.creyn.pl/2016/06/07/how-to-add-google-analytics-to-wordpress-blog-part-1-registration/" target="_blank">http://blog.creyn.pl/2016/06/07/how-to-add-google-analytics-to-wordpress-blog-part-1-registration/</a>) we have registered to the &#8220;<strong>Google Analytics</strong>&#8221; service and acquired a new <strong>&#8220;Tracking ID&#8221; </strong>for our blog. Now we have to configure our blog to include that <strong>&#8220;Tracking ID&#8221;</strong> on every page that we want to have analytics on. This actually means that we will add it to all of our pages and posts.</p>
<p style="text-align: justify;">So let&#8217;s go to the second step: Configure blog with the Tracking ID.</p>
<h4 style="text-align: justify;">Step 2: Configure blog</h4>
<p style="text-align: justify;">In the first step, on the <strong>&#8220;Google Analytics&#8221;</strong> website (<a href="https://analytics.google.com/analytics/web/#management/Settings" target="_blank">https://analytics.google.com/analytics/web/#management/Settings</a> &gt; <strong>&#8220;Tracking Info&#8221;</strong> &gt; <strong>&#8220;Tracking Code&#8221;</strong>), right next to the <strong>&#8220;Tracking ID&#8221;</strong> we&#8217;ve found a <strong>&#8220;Tracking Script&#8221;</strong> that could be used to configure our blog.</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-456" src="http://blog.creyn.pl/wp-content/uploads/2016/06/PK_6.png" alt="PK_6" width="894" height="273" /></p>
<p style="text-align: justify;"><div class='warning2'></p>
<p style="text-align: justify;">For blogs hosted on the <a href="https://wordpress.com/" target="_blank">https://wordpress.com/</a> there is an instruction how to enable the &#8220;<strong>Google Analytics</strong>&#8221; and how to properly configure it. You can find it here: <a href="https://en.support.wordpress.com/google-analytics/" target="_blank">https://en.support.wordpress.com/google-analytics/</a>.</p>
<p style="text-align: justify;"></div></p>
<p style="text-align: justify;">My blog is a so called &#8220;self hosted&#8221; version. This is an installation on a hosting platform that I paid for and have more controll over my blog. There are many ways to put the tracking code on every webpage. There are many plugins to do it. I decided to try a simple one that inserts snippets of source code in the header and the footer on each webpage. As I didn&#8217;t have it before, I had to install it from the <strong>&#8220;WordPress&#8221;</strong> plugins repository. If you want to follow, please go to the &#8220;<strong>Plugins &gt; Add New</strong>&#8221; section and look for the &#8220;<strong>Header and Footer</strong>&#8221; plugin. The search engine should return many similar plugins but this is the most popular one and has the 5 star score. After installing it, we can find it in the &#8220;<strong>Settings &gt; Header and Footer</strong>&#8221; section.</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-458" src="http://blog.creyn.pl/wp-content/uploads/2016/06/PK_8.png" alt="PK_8" width="157" height="134" /></p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-459" src="http://blog.creyn.pl/wp-content/uploads/2016/06/PK_9.png" alt="PK_9" width="575" height="253" /></p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-460" src="http://blog.creyn.pl/wp-content/uploads/2016/06/PK_10.png" alt="PK_10" width="316" height="267" /></p>
<p style="text-align: justify;">From the screenshoot below you can see that it is very customizable and has many options for inserting snippets of code on dfferent pages. I&#8217;ve choosen the &#8220;<strong>&lt;HEAD&gt; Section Injection</strong>&#8221; which inserts code on <strong>&#8220;</strong><strong>Every&#8221;</strong> page of my blog.  Here you have to paste the auto generated <strong>&#8220;</strong><strong>Tracking Script&#8221;</strong> from the &#8220;<strong>Google Analytics</strong>&#8221; website.</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-461" src="http://blog.creyn.pl/wp-content/uploads/2016/06/PK_11.png" alt="PK_11" width="760" height="332" /></p>
<p style="text-align: justify;">After this is done we could check if the setup is correct. First go to one of your blog posts and then open the &#8220;<strong>View page source</strong>&#8221; from the browser (you can press <strong>Ctrl+U</strong> on the keyboard, it should work in most browsers). You can now see that the script was succesfully inserted on my &#8220;<a href="http://blog.creyn.pl/2015/06/14/fog-in-warsaw/" target="_blank">Fog in Warsaw</a>&#8221; blog post.</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-462" src="http://blog.creyn.pl/wp-content/uploads/2016/06/PK_12.png" alt="PK_12" width="638" height="248" /></p>
<p style="text-align: justify;">On the &#8220;<strong>Google Analytics</strong>&#8221; reporting page (here: <a href="https://analytics.google.com/analytics/web" target="_blank">https://analytics.google.com/analytics/web</a>) we can also see that the script is working and the statistics are send to Google. Please go to the &#8220;<strong>Reporting &gt; Real Time &gt; Conversions</strong>&#8220;. In my case there is already one visitor showing in this report.</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-463" src="http://blog.creyn.pl/wp-content/uploads/2016/06/PK_13.png" alt="PK_13" width="586" height="427" /></p>
<p style="text-align: justify;">The reports in other reporting sections are shown with some delay and can not be shown from the very beginning. But it will be there tomorrow. Now we could start promote our blog posts and see which one is the most popular.</p>
<p style="text-align: justify;">To sum up, I already had the &#8220;<strong>Jetpack</strong>&#8221; plugin statistics for my &#8220;<strong>WordPress</strong>&#8221; blog but I have the feeling that they are very simple and I hope that the &#8220;<strong>Google Analytics</strong>&#8221; will give me much more insight into my visitors preferences. We&#8217;ll see. And as it turned out, adding GA to my blog was very easy.</p>
<p style="text-align: justify;">C.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.creyn.pl/2016/06/13/how-to-add-google-analytics-to-wordpress-blog-part-2-configure-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add Google Analytics to WordPress blog, part 1: registration</title>
		<link>http://blog.creyn.pl/2016/06/07/how-to-add-google-analytics-to-wordpress-blog-part-1-registration/</link>
		<comments>http://blog.creyn.pl/2016/06/07/how-to-add-google-analytics-to-wordpress-blog-part-1-registration/#comments</comments>
		<pubDate>Tue, 07 Jun 2016 14:00:54 +0000</pubDate>
		<dc:creator><![CDATA[creyn]]></dc:creator>
				<category><![CDATA[Around dev world]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[GoogleAnalytics]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.creyn.pl/?p=437</guid>
		<description><![CDATA[In this short series of posts I will show you how to enable the &#8220;Google Analytics&#8221; statistics on your blog. I am writing about the &#8220;WordPress&#8221; blog but this could be easilly adopted for any other blog platform and static websites that you have. The &#8220;Google Analytics&#8220; is a platform that gives a very detailed insight in the...]]></description>
				<content:encoded><![CDATA[<p style="text-align: justify;">In this short series of posts I will show you how to enable the &#8220;<strong>Google Analytics&#8221;</strong> statistics on your blog. I am writing about the <strong>&#8220;WordPress&#8221;</strong> blog but this could be easilly adopted for any other blog platform and static websites that you have. The &#8220;<strong>Google Analytics</strong><strong>&#8220;</strong> is a platform that gives a very detailed insight in the statistics of the traffic on a website. It is usefull to have more knowledge about your users, their preferences and which content of your blog is the most popular. After all you probably write a blog for someone to read and maybe you should consider writing more posts about what your readers are looking for when comming to your site.</p>
<p style="text-align: justify;">In this post I&#8217;ll focus on the first step that is needed: Registration to the &#8220;<strong>Google Analytics</strong>&#8220;.</p>
<h4 style="text-align: justify;">Step 1: Register</h4>
<p style="text-align: justify;">For the &#8220;<strong>Google Analytics</strong>&#8221; the registration process is actually very simple and it is summarized on this graphic below:</p>
<p style="text-align: justify;"><img class="aligncenter wp-image-451 size-full" src="http://blog.creyn.pl/wp-content/uploads/2016/06/PK_1.png" alt="PK_1" width="1346" height="348" /></p>
<p style="text-align: justify;">First you will need a &#8220;<strong>Google</strong>&#8221; account. I assume you have one already or know how to register for a new one. Then you need to go to the page: <a href="https://www.google.com/analytics/" target="_blank">https://www.google.com/analytics/</a> and login using that account. When logged in you need to go trought a very simple wizard process that helps you create and configure the account.</p>
<p style="text-align: justify;">First step is choosing if the setup will be for a Mobile App or a Website. In case of a blog let&#8217;s choose the &#8220;<strong>Website</strong>&#8221; option. Then you have to set an &#8220;<strong>Account Name</strong>&#8221; and &#8220;<strong>Website Name</strong>&#8220;. Those are for you to differentiate with some other analytics that you might want to have (for example a second blog or some static websites). The &#8220;<strong>Website URL</strong>&#8221; is the URL of your blog. You can copy paste the URL from your blog homepage address (like I did here). The &#8220;<strong>Industry Category</strong>&#8221; section will help Google to prepare some basic raports for you. The last thing is to choose the &#8220;<strong>Reporting Zone Time</strong>&#8220;. You can choose you country and all reports will be properly recalculated to your timezone.</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-452" src="http://blog.creyn.pl/wp-content/uploads/2016/06/PK_2.png" alt="PK_2" width="684" height="657" /></p>
<p style="text-align: justify;">Next thing is to allow Google to gather and share some statistics to help them to imrove their service. I allowed for all of them. And after clicking &#8220;<strong>Get Tracking ID</strong>&#8221; and accepting some &#8220;<strong>Terms of Service Agreement</strong>&#8221; you will be send to a new website and the <strong>&#8220;Tracking ID&#8221;</strong> will be generated for you.</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-453" src="http://blog.creyn.pl/wp-content/uploads/2016/06/PK_3.png" alt="PK_3" width="718" height="574" /></p>
<p style="text-align: justify;">The &#8220;<strong>Tracking ID</strong>&#8221; is very important. This is an identificator that allows Google to track users on your website. Below the &#8220;<strong>Tracking ID</strong>&#8221; is a section with the JavaScript code. You can just copy paste it on the web page that you want to have tracking enabled. In my case, I want to put it on every page on my blog.</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-455" src="http://blog.creyn.pl/wp-content/uploads/2016/06/PK_5.png" alt="PK_5" width="1276" height="624" /></p>
<p style="text-align: justify;">How to do it I will show you in the next post. For now you could play around with the nice <strong>&#8220;Google Analytics&#8221;</strong> website. They have many video tutorials and informations about each report. Even a quick look at the available options will give you the idea of the things you can learn about your visitors. And there are a lot of them.</p>
<p style="text-align: justify;">C.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.creyn.pl/2016/06/07/how-to-add-google-analytics-to-wordpress-blog-part-1-registration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>62.01.Z</title>
		<link>http://blog.creyn.pl/2015/06/09/62-01-z/</link>
		<comments>http://blog.creyn.pl/2015/06/09/62-01-z/#comments</comments>
		<pubDate>Tue, 09 Jun 2015 21:52:15 +0000</pubDate>
		<dc:creator><![CDATA[creyn]]></dc:creator>
				<category><![CDATA[Around dev world]]></category>
		<category><![CDATA[firma]]></category>
		<category><![CDATA[PKD 2007]]></category>

		<guid isPermaLink="false">http://blog.creyn.pl/?p=133</guid>
		<description><![CDATA[Rozpoczynając swoją własną jednoosobową działalność gospodarczą należy zapoznać się z ogromną liczbą nowych rzeczy. Z dnia na dzień pojawia się coraz to nowy obszar wiedzy, o istnieniu którego wcześniej nie miałem pojęcia. Pracując na etacie z wieloma rzeczami po prostu się nie spotkałem, żyłem w błogiej nieświadomości, nie miałem pojęcia jak bardzo to wszystko jest skomplikowane....]]></description>
				<content:encoded><![CDATA[<p style="text-align: justify;">Rozpoczynając swoją własną jednoosobową działalność gospodarczą należy zapoznać się z ogromną liczbą nowych rzeczy. Z dnia na dzień pojawia się coraz to nowy obszar wiedzy, o istnieniu którego wcześniej nie miałem pojęcia. Pracując na etacie z wieloma rzeczami po prostu się nie spotkałem, żyłem w błogiej nieświadomości, nie miałem pojęcia jak bardzo to wszystko jest skomplikowane. Przepisy, prawo, podatki, ZUS, fiskus, kody PKD, VAT, biznesplan, REGON, CEIDG. Wiedziałem że gdzieś tam są, czasem o nich słyszałem, czasem nawet przeczytałem jakiś artykuł, ale w przeważającej większości były poza moim obszarem zainteresowania.</p>
<p style="text-align: justify;"><span id="more-133"></span></p>
<p style="text-align: justify;">Postanowiłem jednak założyć własną <strong>jednoosobową działalność gospodarczą</strong> (DG) a co za tym idzie, muszę się z tym wszystkim zmierzyć. Poznać, zrozumieć i spróbować zaprzyjaźnić. Także po kolei. Jednym z pierwszych kroków do założenia działalności jest określenie jej zakresu. Każda firma musi określić czym się będzie zajmowała. Do tego celu służą kody PKD 2007 (czyli <strong>Polska Klasyfikacja Działalności</strong>, Rozporządzenie Rady Ministrów z dnia 24.12.2007). Jest to bardzo duża i szczegółowa lista obszarów działalności z przyporządkowanymi im kodami. Każda nowa firma musi wybrać sobie jeden lub więcej kodów PKD, które określają obszar jej działalności.</p>
<p style="text-align: justify;">Jaki kod PKD wybrać dla firmy programistycznej? Najbardziej odpowiedni wybór to kod: &#8220;<strong>Działalność związana z oprogramowaniem</strong>&#8221; czyli <strong>62.01.Z</strong>. Znajduje się on w sekcji J (&#8220;INFORMACJA I KOMUNIKACJA&#8221;) w dziale 62. (&#8220;Działalność związana z oprogramowaniem i doradztwem w zakresie informatyki oraz działalność powiązana&#8221;).</p>
<blockquote>
<p style="text-align: justify;">Podklasa ta obejmuje pisanie, modyfikowanie, badanie, dokumentowanie i wspomaganie oprogramowania, włączając pisanie zleceń sterujących programami dla użytkowników.</p>
<p style="text-align: justify;">Podklasa ta obejmuje analizowanie, projektowanie systemów gotowych do użycia:</p>
<p style="text-align: justify;">rozbudowę, tworzenie, dostarczanie oraz dokumentację oprogramowania wykonanego na zlecenie określonego użytkownika,<br />
pisanie programów na zlecenie użytkownika,<br />
projektowanie stron internetowych.<br />
Podklasa ta nie obejmuje:</p>
<p style="text-align: justify;">publikowania pakietów oprogramowania, sklasyfikowanego w 58.29.Z,<br />
tłumaczenia i przystosowania programów na potrzeby rynku, wykonywane na własny rachunek, sklasyfikowanych w 58.29.Z,<br />
planowania i projektowania systemów komputerowych, które integrują sprzęt komputerowy, oprogramowanie i technologie komunikacyjne, nawet wtedy, gdy dostarczane oprogramowanie może być ich integralną częścią,sklasyfikowanego w 62.02.Z</p>
</blockquote>
<p style="text-align: justify;">Niestety nie obejmuje ona wszystkiego, np.odzyskiwania danych czy chociażby hostingu. A działalność firmy programistycznej może być i zapewne będzie dość wszechstronna. Także po przejrzeniu innych kodów wybrałem też takie (kolejność alfabetyczna):</p>
<ul>
<li>46.51.Z &#8211; Sprzedaż hurtowa komputerów, urządzeń peryferyjnych i oprogramowania</li>
<li>46.52.Z &#8211; Sprzedaż hurtowa sprzętu elektronicznego i telekomunikacyjnego oraz części do niego</li>
<li>47.41.Z &#8211; Sprzedaż detaliczna komputerów, urządzeń peryferyjnych i oprogramowania prowadzona w wyspecjalizowanych sklepach</li>
<li>47.91.Z &#8211; Sprzedaż detaliczna prowadzona przez domy sprzedaży wysyłkowej lub Internet</li>
<li>58.21.Z &#8211; Działalność wydawnicza w zakresie gier komputerowych</li>
<li>58.29.Z &#8211; Działalność wydawnicza w zakresie pozostałego oprogramowania</li>
<li>62.02.Z &#8211; Działalność związana z doradztwem w zakresie informatyki</li>
<li>62.03.Z &#8211; Działalność związana z zarządzaniem urządzeniami informatycznymi</li>
<li>62.09.Z &#8211; Pozostała działalność usługowa w zakresie technologii informatycznych i komputerowych</li>
<li>63.11.Z &#8211; Przetwarzanie danych; zarządzanie stronami internetowymi (hosting) i podobna działalność</li>
<li>63.12.Z &#8211; Działalność portali internetowych</li>
<li>73.11.Z &#8211; Działalność agencji reklamowych</li>
<li>73.12.C &#8211; Pośrednictwo w sprzedaży miejsca na cele reklamowe w mediach elektronicznych (Internet)</li>
<li>74.10.Z &#8211; Działalność w zakresie specjalistycznego projektowania</li>
<li>74.20.Z &#8211; Działalność fotograficzna</li>
<li>95.11.Z &#8211; Naprawa i konserwacja komputerów i urządzeń peryferyjnych</li>
</ul>
<p style="text-align: justify;">Jak widzisz, dodatkowo wybrałem jeszcze te dotyczące fotografii. Zrobiłem tak, ponieważ interesuję się fotografią i grafiką oraz planuję kiedyś czerpać zyski z różnych sesji i sprzedaży zdjęć czy ich obróbki.</p>
<p style="text-align: justify;">Jeśli Ty też zastanawiasz się jakie kody PKD 2007 wybrać, to możesz skorzystać z moich, ale też polecam zapoznać się ze wszystkimi w sekcji J. Najlepiej to przejrzyj wszystkie. Być może znajdzie się jeszcze jakiś, który pasuje do rzeczy, które w ramach swojej działalności możesz wybrać. Dlaczego to ma znaczenie? Głównie w celach statystycznych. Urzędy wiedzą ile firm działa w jakim obszarze. Z drugiej strony, spamerzy wiedzą, jakie oferty reklamowe przysyłać na adres Twojej firmy :) Internety mówią też o możliwych grzywnach za wystawianie faktur, w obszarach których nie uwzględniliśmy w naszych kodach a także o przetargach, które wymagają odpowiednich kodów PKD. Także lepiej przezornie wpisać te kody, w których chcielibyśmy prowadzić naszą firmę (tym bardziej że nie ma limitów na liczbę kodów).</p>
<p style="text-align: justify;">Pod tymi adresami znajdują się wyszukiwarki kodów PKD:</p>
<ol>
<li style="text-align: justify;"><a href="https://www.biznes.gov.pl/tabela-pkd" target="_blank">https://www.biznes.gov.pl/tabela-pkd</a></li>
<li style="text-align: justify;"><a href="http://www.klasyfikacje.gofin.pl/pkd/4,0.html" target="_blank">http://www.klasyfikacje.gofin.pl/pkd/4,0.html</a> &#8211; podział na podklasy</li>
</ol>
<p style="text-align: justify;">Kody PKD 2007 już wybrane, pierwszy krok do założenia własnej działalności wykonany. Teraz pora na kolejne, czeka mnie dużo nauki i pracy, zbyt dużo rzeczy wcześniej mnie nie interesowało. Jak tak na to patrzę, to trochę tak jakbym żył w matrixie. Cieszę się też, że postanowiłem się obudzić i wziąć czerwoną pigułkę :) A jak wygląda ta królicza nora? Jest długa i kręta. Czytam i czytam i czytam. Chłonę nową wiedzę jak gąbka. Coś czuję, że takich wpisów pojawi się tutaj więcej :)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.creyn.pl/2015/06/09/62-01-z/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
