<?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>3digita</title>
	<atom:link href="http://www.3digita.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.3digita.com</link>
	<description>We&#039;re a tech startup based in the UK, Qatar &#38; India</description>
	<lastBuildDate>Thu, 18 Apr 2013 20:56:53 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>12 essential Linux SSH commands for every developer</title>
		<link>http://www.3digita.com/blog/12-essential-linux-ssh-commands-for-every-developer/</link>
		<comments>http://www.3digita.com/blog/12-essential-linux-ssh-commands-for-every-developer/#comments</comments>
		<pubDate>Sun, 30 Dec 2012 16:28:23 +0000</pubDate>
		<dc:creator>Sudip S</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Hosting]]></category>

		<guid isPermaLink="false">http://www.3digita.com/?p=307</guid>
		<description><![CDATA[There are hundreds of commands in Linux (and Unix), but for web developers who setup and configure websites all day long, the following basic commands are probably the ones that are most used. We&#8217;ve included different scenarios of how each command might be used &#8211; please let us know in the comments if there are any [...]]]></description>
				<content:encoded><![CDATA[<p>There are hundreds of commands in Linux (and Unix), but for web developers who setup and configure websites all day long, the following basic commands are probably the ones that are most used.</p>
<p>We&#8217;ve included different scenarios of how each command might be used &#8211; please let us know in the comments if there are any situations we haven&#8217;t covered properly.</p>
<blockquote>
<h3>If you&#8217;re a total beginner to this&#8230;</h3>
<p>SSH (Secure SHell) is a protocol that allows you to login to a remote server and issue commands (with a DOS/Shell text interface). Using a command-line interface can make some tasks 10 times faster than doing them manually.</p>
<p>On a Windows computer, you can SSH using &#8216;<a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/">Putty&#8217;</a> (you only need putty.exe). On a Mac, the &#8216;Terminal&#8217; utility is already built into the OS.</p></blockquote>
<h2>cd &#8211; <em>Go to a directory</em></h2>
<p>Go up a directory :</p>
<pre>cd..</pre>
<p>Go to the &#8216;images&#8217; folder (assumes the images folder is inside the current directory) :</p>
<pre>cd images</pre>
<p>Go to a specific folder (in this case we&#8217;ve gone right back to the server root) :</p>
<pre>cd /var/www/vhosts/mywebsite.co.uk/httpdocs</pre>
<h2>ls &#8211; List files and folders</h2>
<p>Output a simple list of all files and folders :</p>
<pre>ls</pre>
<p>Output an advanced list all the files and folders in a directory (showing permissions, owner, group, dates etc) :</p>
<pre>ls -l</pre>
<h2>zip &#8211; <em>Zip up files and folders</em></h2>
<p>Zip up everything in the &#8216;forms&#8217; folder (the -r flag zips up all sub-folders and files) into a new file call Dec2012FormsBackup.zip :</p>
<pre>zip -r 20Dec2012FormsBackup.zip forms</pre>
<p>Zip up everything in the current directory tree, apart from the &#8216;archive&#8217; folder (the -x flag excludes folders) :</p>
<pre>zip -r 26Dec2012Backup.zip * -x archive/\*</pre>
<p>Zip up the contents of the httpdocs folder and put that zip file in another folder of the server (In this case we&#8217;re using the -v and -r flags together to suppress the output and recurse into the directory, and -9 flag to compress better) :</p>
<pre>zip -vr -9 "/var/www/vhosts/destinationwebsite.co.uk/httpdocs/files.zip" "/var/www/vhosts/mywebsite.co.uk/httpdocs/*"</pre>
<h2>unzip &#8211; <em>Unzip an archive</em></h2>
<p>Unzip a .zip file into the current directory :</p>
<pre>unzip 26Dec2012Backup.zip</pre>
<h2>cp &#8211; <em>Copy files or folders</em></h2>
<p>Copy an html file to another directory :</p>
<pre>cp mypage.html /var/www/vhosts/mywebsite.org/httpdocs</pre>
<p>Copy everything from websiteA&#8217;s httpdocs folder to websiteB&#8217;s :</p>
<pre>cp -r /var/www/vhosts/websiteA.com/httpdocs/* /var/www/vhosts/websiteB.com/httpdocs</pre>
<p>Copy everything in the current folder :</p>
<pre>cp -r * /var/www/vhosts/website.com/httpdocs</pre>
<p>Copy the &#8216;forms&#8217; folder :</p>
<pre>cp -r forms /var/www/vhosts/website.com/httpdocs</pre>
<h2>mv &#8211; <em>Move files or folders</em></h2>
<p>Move the &#8216;js&#8217; folder into the &#8216;oldwebsite&#8217; folder :</p>
<pre>mv js oldwebsite</pre>
<p>Move everything from the current directory into websiteA&#8217;s httpdocs folder :</p>
<pre>mv * /var/www/vhosts/websiteA.com/httpdocs</pre>
<h2>rm &#8211; <em>Remove (permanently delete) files or folders</em></h2>
<p>Remove/delete a html file :</p>
<pre>rm mywebpage.html</pre>
<p>Remove/delete the &#8216;images&#8217; folder and everything inside it (the -f flag removes prompting e.g. &#8216;are you sure?&#8217; and -r recursively deletes sub-folders):</p>
<pre>rm -f -r images</pre>
<h2>chmod &#8211; <em>Change permissions</em></h2>
<p>Change every file and sub-folder in the &#8216;pictures&#8217; folder to &#8217;777&#8242; (note that 777 is the most open permission on linux) :</p>
<pre>chmod -R 777 pictures</pre>
<p>Change everything in the current directory to 755 (note that 755 is the default permission level files are given when uploaded via FTP) :</p>
<pre>chmod -R 755 *</pre>
<h2>chgrp &#8211; <em>Change group</em></h2>
<p>Change everything to to the group &#8216;servergrp&#8217;</p>
<pre>chgrp -R servergrp *</pre>
<p>Change everything in the &#8216;photos&#8217; folder to the group &#8216;psaserv&#8217;</p>
<pre>chgrp -R psaserv photos</pre>
<h2>chown &#8211; <em>Change owner</em></h2>
<p>Change the owner of the &#8216;httpdocs&#8217; folder (and all sub-folders and files) to &#8216;admin&#8217; :</p>
<pre>chown -R admin httpdocs</pre>
<p>Change everything in the current directory to the owner &#8216;website_user&#8217; :</p>
<pre>chown -R website_user *</pre>
<h2>mysqldump &#8211; <em>Export MySQL database</em></h2>
<p>Format:</p>
<pre>mysqldump -a -u USERNAME -p DATABASE &gt; FILENAME.sql</pre>
<p>Export the &#8216;wordpress_db&#8217; database into the &#8216;wp_data_02may13.sql&#8217; file :</p>
<pre>mysqldump -a -u wordpress_user -p wordpress_db &gt; wp_data_02may13.sql</pre>
<h2>mysql &#8211; <em>Import MySQL database</em></h2>
<p>Format:</p>
<pre>mysql -u USERNAME -p DATABASE &lt; FILENAME.sql</pre>
<p>Import the &#8216;wp_data_02may13.sql&#8217; file into the &#8216;wordpress_db&#8217; database (assuming you&#8217;ve already uploaded the .SQL file to your server via FTP) :</p>
<pre>mysql -u wordpress_user -p wordpress_db &lt; /var/www/vhosts/websiteA.com/httpdocs/wp_data_02may13.sql</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.3digita.com/blog/12-essential-linux-ssh-commands-for-every-developer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CMS Comparison: WordPress 3 vs. Drupal 7 vs. ExpressionEngine 2</title>
		<link>http://www.3digita.com/blog/wordpress-vs-drupal-vs-expressionengine/</link>
		<comments>http://www.3digita.com/blog/wordpress-vs-drupal-vs-expressionengine/#comments</comments>
		<pubDate>Wed, 27 Jun 2012 14:23:33 +0000</pubDate>
		<dc:creator>Balal K</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Content Management]]></category>

		<guid isPermaLink="false">http://www.3digita.com/?p=160</guid>
		<description><![CDATA[I recently gave a &#8216;Day 2&#8242; talk at the excellent Front End Design Conference about the pros and cons of WordPress, Drupal and ExpressionEngine &#8211; 3 of the most popular PHP Content Management Systems (CMSs) in use today. Having used all 3 tools pretty rigorously over the years, I compared 18 different factors and requirements that people [...]]]></description>
				<content:encoded><![CDATA[<p>I recently gave a &#8216;Day 2&#8242; talk at the excellent <a href="www.frontenddesignconference.com">Front End Design Conference</a> about the pros and cons of WordPress, Drupal and ExpressionEngine &#8211; 3 of the most popular PHP Content Management Systems (CMSs) in use today.</p>
<p>Having used all 3 tools pretty rigorously over the years, I compared 18 different factors and requirements that people usually look for in a CMS &#8211; and recommend the best tool for a blog, magazine, small business, corporate or complex website.</p>
<div class="mceItemEmbedly" style="max-width: 590px;max-width:590px;" data-ajax="{'url':'https://speakerdeck.com/u/balalkhan/p/wordpress-vs-drupal-vs-expressionengine','width':'590','words':null,'height':null,'embed':'&lt;div class=\&quot;embedly\&quot; style=\&quot;max-width:590px;max-height:nullpx\&quot;&gt;&lt;iframe style=\&quot;border:0; padding:0; margin:0; background:transparent;\&quot; mozallowfullscreen=\&quot;true\&quot; webkitallowfullscreen=\&quot;true\&quot; frameborder=\&quot;0\&quot; allowtransparency=\&quot;true\&quot; id=\&quot;presentation_frame_4fdddcf7b0559d002200281b\&quot; src=\&quot;//speakerdeck.com/embed/4fdddcf7b0559d002200281b\&quot; width=\&quot;590\&quot; height=\&quot;506\&quot;&gt;&lt;/iframe&gt;&lt;div class=\&quot;embedly-clear\&quot;&gt;&lt;/div&gt;&lt;span class=\&quot;embedly-powered\&quot; style=\&quot;float:right;display:block\&quot;&gt;&lt;a target=\&quot;_blank\&quot; href=\&quot;http://embed.ly?src=anywhere\&quot; title=\&quot;Powered by Embedly\&quot;&gt;&lt;img src=\&quot;//static.embed.ly/images/logos/embedly-powered-small-light.png\&quot; alt=\&quot;Embedly Powered\&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;div class=\&quot;media-attribution\&quot;&gt;&lt;span&gt;via &lt;/span&gt;&lt;a href=\&quot;https://speakerdeck.com/\&quot; class=\&quot;media-attribution-link\&quot; target=\&quot;_blank\&quot;&gt;Speaker Deck&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=\&quot;embedly-clear\&quot;&gt;&lt;/div&gt;&lt;/div&gt;'}">
<div class="embedly" style="max-width:590px;max-height:nullpx"><iframe style="border:0; padding:0; margin:0; background:transparent;" mozallowfullscreen="true" webkitallowfullscreen="true" frameborder="0" allowtransparency="true" id="presentation_frame_4fdddcf7b0559d002200281b" src="//speakerdeck.com/embed/4fdddcf7b0559d002200281b" width="590" height="506"></iframe></p>
<div class="embedly-clear"></div>
<p><span class="embedly-powered" style="float:right;display:block"><a target="_blank" href="http://embed.ly?src=anywhere" title="Powered by Embedly"><img src="//static.embed.ly/images/logos/embedly-powered-small-light.png" alt="Embedly Powered" /></a></span></p>
<div class="media-attribution"><span>via </span><a href="https://speakerdeck.com/" class="media-attribution-link" target="_blank">Speaker Deck</a></span></div>
<div class="embedly-clear"></div>
</div>
</div>
<h3>Notes</h3>
<blockquote><p>Picking up from Slide 7&#8230;</p></blockquote>
<p><strong>The wrong software or tool can stop you from doing great work</strong></p>
<p>Because of that, I believe as much as technology is an amazing enabler of ideas, if you pick the wrong technology, it can do the opposite and actually disable you.</p>
<p>It’s really frustrating when you have to go through a long process to do something pretty simple. Has anyone used Magento Commerce? Yeah you guys know what I mean.</p>
<p>The frustration is twice as bad when you’re a UI person, because, the chances are, you’re a perfectionist, and you want to spend almost all of your time improving the UI.</p>
<p><strong>Warning</strong></p>
<p>A lot of what I’m about to say is from personal experience. So that that doesn’t necessarily mean I’m correct, because I’m drawing on my experience from a sample of few dozen projects.</p>
<p>I will say I don’t have any loyalty particular towards any tool or technology &#8211; I use anything that gets the job done. For example, right now I’m using Windows on this Mac. Don’t ask why, it’s a long story; all my friends hate me for it.</p>
<p>OK, so let’s talk about CMSs…</p>
<p><strong>Content management vs. Web Page building</strong></p>
<p>Many clients use CMS’s like web page builders. We as designers and developers concentrate on the skin and have a space in the middle of the page where the client can add text, pictures, video and tables using a WSIWYG editor. And that’s exactly what happens. The client will add all kinds of weird stuff into that middle space, and they will style it in ways that you thought impossible.</p>
<p>I’m sure many of you have had sites you’ve looked at 6 months after you handed it over, and it looks wrecked. Well, it’s partially your fault, because you allowed them to do that.</p>
<p>On simple sites, say a portfolio site, or a blog or when there are less than 25 content pages on a site, you can use any CMS, it doesn’t matter. Personally I like <a href="www.cmsmadesimple.org">CMSMadeSimple</a> for simple business sites – clients love it.</p>
<p>But on big, complicated website, you can get into all kinds of trouble.</p>
<p>Let me illustrate…</p>
<p><strong>Breaking down the content</strong></p>
<p>If anyone has experience with databases, you know that you’re supposed to break down the data to the lowest level. For example, if you have a person database, their name, address, age, height would be stored in separate fields. If you didn’t do this and mixed it all together it would lead to data duplication and make it hard to find anything.</p>
<p>Let’s take a real example &#8211; imagine we have a university website:</p>
<p><strong>Events &#8211; News &#8211; Departments – Faculty – Student Work – Publications &#8211; Research</strong></p>
<p>Each of these sections has content which is connected to each other.</p>
<p>For example, the same news story might appear on the News page, Department page or Faculty page (if it was relevant). Also, Publications and Research can appear on Faculty pages. There are lots of other linkages, but the point is that we do not want to duplicate content and manually link things together.</p>
<p><strong>Defining the content</strong></p>
<p>You can see that using the database model is useful here – I need to define, map the different types of content and link them together:</p>
<ul class="square">
<li>Content is usually a mash of data, text, images, media and tables</li>
<li>There are relationships between content</li>
<li>Content is re-used (not necessarily in the same format)</li>
<li>There is a mix of ‘streams of content’ vs. ‘static content’</li>
</ul>
<p>Knowing this stuff help you in your design, because we design <em>around</em> content.</p>
<p><strong>Let’s talk about EE 2, WordPress 3 and Drupal 7</strong></p>
<ol>
<li>Will this CMS make my life hard and screw up the output? Is setting up the structure of content and templating easy? Will the CMS add extra markup and junk to the output?</li>
<li>Will my clients be able to use the site when they left alone? To use a WSIWYG editor properly, you need to know HTML, which clients don’t know. I would prefer to give them simple ‘forms’ to fill out when add they content.</li>
<li>Regularly updated – big dev teams with successful companies driving them.</li>
<li>A big, friendly community – useful forums with help for newbies.</li>
<li>Lots of plugins – high-quality, updated and supported.</li>
</ol>
<p>Out of the box, for some reason all 3 CMSs assume you’re going to build a blog.</p>
<p>Also, each CMS is fairly limited out of the box, but by adding plugins, it changes how useful that tool is.</p>
<blockquote><p><em><strong>Recommended Plugins</strong></em>:</p>
<p>You will notice most plugins are for ExpressionEngine because EE is not very useful without them! WordPress has thousands of plugins, but in many cases there is no clear leader in a particular category, so none has been recommended.</p>
<ul class="square">
<li>Defining content: <a href="http://pixelandtonic.com/matrix">Matrix</a> (EE), <a href="http://gotolow.com/addons/low-variables">Low Variables</a> (EE), <a href="http://drupal.org/project/cck">CCK</a> (Drupal)</li>
<li>ContentRelationships: <a href="http://pixelandtonic.com/playa">Playa</a> (EE), <a href="http://drupal.org/project/views">Views</a> (Drupal)</li>
<li>Content Structure &amp; Heirachy: <a href="http://buildwithstructure.com/">Structure</a> (EE),</li>
<li>Displaying Content: <a href="http://buildwithstructure.com/">Structure</a> (EE), <a href="http://boldminded.com/add-ons/blueprints">BluePrints</a> (EE), <a href="http://drupal.org/project/views">Views</a> (Drupal), <a href="http://drupal.org/project/panels">Panels</a> (Drupal)</li>
<li>File Manager: <a href="http://pixelandtonic.com/assets">Assets</a> (EE)</li>
<li>Performance: <a href="http://wordpress.org/extend/plugins/w3-total-cache/">W3 Cache</a> (WP), <a href="http://www.causingeffect.com/software/expressionengine/ce-cache">CE Cache</a> (EE), <a href="http://drupal.org/project/boost">Boost</a> (Drupal)</li>
<li>Publishing Workflow: <a href="http://betterworkflow.electricputty.co.uk">Better Workflow</a> (EE), <a href="http://drupal.org/project/workbench">Workbench</a> (Drupal), <a href="http://drupal.org/project/rules/">Rules</a> (Drupal)</li>
<li>Search: <a href="http://gotolow.com/addons/low-search">Low Search</a> (EE)</li>
</ul>
</blockquote>
<p><strong>So which one would I pick?</strong></p>
<p>Drupal and EE are not brilliant without certain Plugins.</p>
<p>WordPress is still primarily a blogging tool.</p>
<p>So which one?</p>
<p><strong>All of them … with conditions</strong></p>
<ul class="square">
<li>Blog = WordPress</li>
<li>Magazine = WordPress</li>
<li>Small Business = WordPress or CMSMadeSimple</li>
<li>Big Corporate = Drupal</li>
<li>Data-driven / Complex = ExpressionEngine or Drupal</li>
<li>E-commerce = ExpressionEngine</li>
</ul>
<p><strong>Bonus Tip</strong></p>
<p>If you come across the problem of clients cutting and pasting from Word into your WSIWYG editor, then I have a cool tip.</p>
<p>You should use CKEditor, and at enable the following plugins in the config:</p>
<ul class="square">
<li>pasteFromWordRemoveFontStyles</li>
<li>pasteFromWordRemoveStyles</li>
</ul>
<p>In addition, you can remove extra buttons to eliminate the problem of weird markup getting into the website.</p>
<p><strong>Thank you!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.3digita.com/blog/wordpress-vs-drupal-vs-expressionengine/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>How to start writing content for a new blog</title>
		<link>http://www.3digita.com/blog/how-to-start-writing-content-for-a-new-blog/</link>
		<comments>http://www.3digita.com/blog/how-to-start-writing-content-for-a-new-blog/#comments</comments>
		<pubDate>Thu, 17 May 2012 14:22:18 +0000</pubDate>
		<dc:creator>Balal K</dc:creator>
				<category><![CDATA[Content Management]]></category>
		<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://localhost/3digita/?p=1</guid>
		<description><![CDATA[Setting up a blog is quick and easy: creating one using a service like tumblr.com or wordpress.com takes seconds. But starting to write for a blog can be a nightmare. From personal experience, the team at 3digita have delayed the launch of our blog for several years because of unresolved debates about the focus and [...]]]></description>
				<content:encoded><![CDATA[<p>Setting up a blog is quick and easy: creating one using a service like tumblr.com or wordpress.com takes seconds. But starting to write for a blog can be a nightmare. From personal experience, the team at 3digita have delayed the launch of our blog for <em>several years</em> because of unresolved debates about the focus and content, and a never-ending re-design process. Now that its actually launched, I&#8217;d like to share a few tips on how you can get started with writing on your own blog.</p>
<p>There are two big hurdles people face when they&#8217;ve decided to start blogging: firstly, deciding the <strong>focus</strong> of the blog (what you want to say), and secondly, getting over the <strong>fear</strong> of &#8216;going public&#8217; and &#8216;exposing&#8217; your personality and intellect to the world (how you&#8217;re going to say it).</p>
<p><strong>Tip #1 : Clarify the focus until its crystal clear</strong></p>
<p>Most problems start at this stage (especially on &#8216;company&#8217; blogs), where the focus of the blog doesn&#8217;t build upon the author&#8217;s expertise or interests.</p>
<ol>
<li>Are you doing it for yourself or your company?</li>
<li>Are you speaking as a person (I &#8230;) or an organization (We &#8230;)?</li>
<li>Are you going to talk about personal issues and experiences or strictly to topics such as politics, business, design?</li>
<li>Are you going to write snippets of news or longer essay-style articles?</li>
<li>How often are you going to publish?</li>
</ol>
<p>After running through these questions, its highly advisable to run your ideas by a friend or family member to get their thoughts on the potential of your blog or difficulties your focus might create.</p>
<blockquote><p>In our case, we wanted a company blog where team members would talk about issues and news that mattered to them. The focus would be limited to topics relating to design, development and business. We decided to have a mix of different types of content: tutorials, links, mini-galleries and publish at least once a week.</p></blockquote>
<p><strong><strong>Tip #2 : </strong>Be true to yourself</strong></p>
<p>The anxiety of &#8216;going live&#8217; and the fear of putting something into the public domain is significant. I believe it is rooted in the fear of making a mistake and being exposed or embarrassed. Anything that might create a negative impression is usually avoided.</p>
<p>One should be aware that we all practice &#8216;impression management&#8217; &#8211; we act and want to be seen in the way we think of ourselves. For example, I may want my friends and family to perceive me as a funny, caring and reliable companion, or my clients to think of me as an honest, capable and trusted advisor. We force ourselves to act in a certain way in situations to maintain this impression. This is especially true when it comes to small business and startups, who pretend to be &#8216;big&#8217;, because they think being seen as &#8216;small&#8217; is a bad thing.</p>
<ol>
<li>Do you want people to know who you are or stay anonymous?</li>
<li>Are you doing it for publicity or just because you want to express your opinion?</li>
<li>Do you want to talk about one side of your personality or are you going to open up and</li>
<li>Does your blog have a name or brand or do you want to keep it a simple &#8216;blog&#8217;?</li>
</ol>
<p>Being &#8216;real&#8217; with your readers will create an emotional bond that will increase trust and convert them into loyal readers.</p>
<blockquote><p>In our case , we wanted to become transparent about who we are, our interests and hopefully grow our audience by providing use links, resources and tutorials that people want to read. We&#8217;ve added photos for each author so people know we&#8217;re real people. We decided to name our blog &#8216;Downtime&#8217; partly because we wanted to talk in a personal voice with our readers and also a pun on the fact that our core business is to offer scalable, ultra-reliable web hosting.</p></blockquote>
<p><strong>Tip #3 : How to write your first blog post</strong></p>
<p>There seems to be 2 strategies to this:</p>
<ol>
<li>A &#8216;Hello World&#8217; type post where you introduce yourself or your company and what you plan to do with your blog.</li>
<li>Start publishing content immediately, without any reference to yourself.</li>
</ol>
<p>Study the market leaders in the segment you&#8217;ve decided to focus on. Look at <em>how</em> they wrote their first post: length, tone of voice, topics covered. You can find good quality blogs on sites like <a href="http://9rules.com/">9rules.com</a>.</p>
<blockquote><p>We&#8217;ve lent a little more towards strategy #2 &#8211; with this first blog post, we&#8217;re hoping to give readers useful information on how to start writing, but also also talk about ourselves a little.</p></blockquote>
<p><strong>Bonus Tip : Start writing!</strong></p>
<p>To wrap up, I&#8217;d recommend you start writing your first blog post right away &#8211; keep it super simple and on point. The look and feel of your blog doesn&#8217;t have to be perfect right now &#8211; change it later when you have at least 20-30 posts under your belt. Writing content is pretty stressful if you haven&#8217;t done it for a while &#8211; but the anxiety reduces each time you publish and make something go live.</p>
<p>So what are you waiting for? Jump into your blogging software right now and publish your first post today!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.3digita.com/blog/how-to-start-writing-content-for-a-new-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
