<?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>Development Archives - EckoThemes</title>
	<atom:link href="https://slate-wp.ecko.me/tag/development/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>Slate WordPress Theme</description>
	<lastBuildDate>Fri, 09 Jul 2021 08:01:51 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://slate-wp.ecko.me/wp-content/uploads/2018/05/ecko-icon-50x50.png</url>
	<title>Development Archives - EckoThemes</title>
	<link></link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Getting Started with Version Control &#038; GitHub</title>
		<link>https://slate-wp.ecko.me/started-github/</link>
					<comments>https://slate-wp.ecko.me/started-github/#comments</comments>
		
		<dc:creator><![CDATA[Mike Ross]]></dc:creator>
		<pubDate>Sat, 26 Jun 2021 19:15:51 +0000</pubDate>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Software]]></category>
		<guid isPermaLink="false">http://koala-wp.ecko.me/?p=821</guid>

					<description><![CDATA[<p>This chapter will be about getting started with Git. We will begin by explaining some background on version control tools, then move on to how to get Git running on your system and finally how to get it set up to start working with. At the end of this chapter you should understand why Git [&#8230;]</p>
<p>The post <a href="https://slate-wp.ecko.me/started-github/">Getting Started with Version Control &#038; GitHub</a> appeared first on <a href="https://slate-wp.ecko.me">EckoThemes</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>This chapter will be about getting started with Git. We will begin by explaining some background on version control tools, then move on to how to get Git running on your system and finally how to get it set up to start working with. At the end of this chapter you should understand why Git is around, why you should use it and you should be all set up to do so.</p>



<h3 class="wp-block-heading">About Version Control</h3>



<p>What is &#8220;version control&#8221;, and why should you care? Version control is a system that records changes to a file or set of files over time so that you can recall specific versions later. For the examples in this book you will use software source code as the files being version controlled, though in reality you can do this with nearly any type of file on a computer.</p>



<p>If you are a graphic or web designer and want to keep every version of an image or layout (which you would most certainly want to), a Version Control System (VCS) is a very wise thing to use. It allows you to revert files back to a previous state, revert the entire project back to a previous state, compare changes over time, see who last modified something that might be causing a problem, who introduced an issue and when, and more. Using a VCS also generally means that if you screw things up or lose files, you can easily recover. In addition, you get all this for very little overhead.</p>



<h3 class="wp-block-heading">Local Version Control Systems</h3>



<p>Many people’s version-control method of choice is to copy files into another directory (perhaps a time-stamped directory, if they’re clever). This approach is very common because it is so simple, but it is also incredibly error prone. It is easy to forget which directory you’re in and accidentally write to the wrong file or copy over files you don’t mean to.</p>



<p>One of the more popular VCS tools was a system called RCS, which is still distributed with many computers today. Even the popular Mac OS X operating system includes the rcs command when you install the Developer Tools. RCS works by keeping patch sets (that is, the differences between files) in a special format on disk; it can then re-create what any file looked like at any point in time by adding up all the patches.</p>



<h3 class="wp-block-heading">Centralized Version Control Systems</h3>



<p>The next major issue that people encounter is that they need to collaborate with developers on other systems. To deal with this problem, Centralized Version Control Systems (CVCSs) were developed. These systems, such as CVS, Subversion, and Perforce, have a single server that contains all the versioned files, and a number of clients that check out files from that central place. For many years, this has been the standard for version control.</p>



<p>Furthermore, many of these systems deal pretty well with having several remote repositories they can work with, so you can collaborate with different groups of people in different ways simultaneously within the same project. This allows you to set up several types of workflows that aren’t possible in centralized systems, such as hierarchical models.</p>
<p>The post <a href="https://slate-wp.ecko.me/started-github/">Getting Started with Version Control &#038; GitHub</a> appeared first on <a href="https://slate-wp.ecko.me">EckoThemes</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://slate-wp.ecko.me/started-github/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Introduction to User Experience &#038; Interface Design</title>
		<link>https://slate-wp.ecko.me/intorduction-to-ui-ux/</link>
					<comments>https://slate-wp.ecko.me/intorduction-to-ui-ux/#comments</comments>
		
		<dc:creator><![CDATA[Harvey Specter]]></dc:creator>
		<pubDate>Tue, 18 May 2021 19:12:53 +0000</pubDate>
				<category><![CDATA[Frontend]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[UI/UX]]></category>
		<guid isPermaLink="false">http://koala-wp.ecko.me/?p=819</guid>

					<description><![CDATA[<p>Mountain ranges are usually segmented by highlands or mountain passes and valleys. Individual mountains within the same mountain range do not necessarily have the same geologic structure or petrology. They may be a mix of different orogenic expressions and terranes, for example thrust sheets, uplifted blocks, fold mountains, and volcanic landforms resulting in a variety [&#8230;]</p>
<p>The post <a href="https://slate-wp.ecko.me/intorduction-to-ui-ux/">Introduction to User Experience &#038; Interface Design</a> appeared first on <a href="https://slate-wp.ecko.me">EckoThemes</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Mountain ranges are usually segmented by highlands or mountain passes and valleys. Individual mountains within the same mountain range do not necessarily have the same geologic structure or petrology. They may be a mix of different orogenic expressions and terranes, for example thrust sheets, uplifted blocks, fold mountains, and volcanic landforms resulting in a variety of rock types.</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p>I don’t believe you have to be better than everybody else. I believe you have to be better than you ever thought you could be.</p><cite>Ken Venturi</cite></blockquote>



<p>A mountain range is a geographic area containing numerous geologically related mountains. A mountain system or system of mountain ranges, sometimes is used to combine several geological features that are geographically (regionally) related.</p>



<h2 class="wp-block-heading">Rocky Mountains</h2>



<p>On Earth, most significant mountain ranges are the result of plate tectonics, though mountain ranges are formed by a range of processes, are found on many planetary mass objects in the Solar System and are likely a feature of most terrestrial planets.</p>



<div class="wp-block-image"><figure class="aligncenter"><img fetchpriority="high" decoding="async" width="1680" height="1080" src="http://eckoslate.local/wp-content/uploads/2015/01/desk-work.jpg" alt="" class="wp-image-930" srcset="https://slate-wp.ecko.me/wp-content/uploads/2015/01/desk-work.jpg 1680w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/desk-work-300x193.jpg 300w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/desk-work-768x494.jpg 768w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/desk-work-1024x658.jpg 1024w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/desk-work-1240x797.jpg 1240w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/desk-work-860x553.jpg 860w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/desk-work-680x437.jpg 680w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/desk-work-500x321.jpg 500w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/desk-work-400x257.jpg 400w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/desk-work-250x161.jpg 250w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/desk-work-200x129.jpg 200w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/desk-work-150x96.jpg 150w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/desk-work-100x64.jpg 100w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/desk-work-76x49.jpg 76w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/desk-work-50x32.jpg 50w" sizes="(max-width: 1680px) 100vw, 1680px" /></figure></div>



<p>The mountain systems of the earth are characterized by a tree structure, that is, many mountain ranges have sub-ranges within them. It can be thought of as a parent-child relationship.For example, the Appalachian Mountains range is the parent of other ranges it comprises, some of which are the White Mountains and the Blue Ridge Mountains.</p>



<p>The White Mountains are a child of the Appalachians, and there are also children of the Whites, including the Sandwich Range and the Presidential Range. Further, the Presidential Range can be broken up into the Northern Presidential Range and Southern Presidential Range.</p>



<h3 class="wp-block-heading">Geology</h3>



<div class="wp-block-image"><figure class="alignleft size-medium"><img decoding="async" width="300" height="200" src="https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-300x200.jpg" alt="" class="wp-image-743" srcset="https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-300x200.jpg 300w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-768x512.jpg 768w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-1024x683.jpg 1024w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology.jpg 1680w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-1240x827.jpg 1240w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-860x573.jpg 860w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-680x453.jpg 680w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-500x333.jpg 500w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-400x267.jpg 400w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-250x167.jpg 250w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-200x133.jpg 200w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-150x100.jpg 150w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-100x67.jpg 100w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-76x51.jpg 76w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-50x33.jpg 50w" sizes="(max-width: 300px) 100vw, 300px" /><figcaption>Image Capation</figcaption></figure></div>



<p>The Rocky Mountains, commonly known as the Rockies, are a major mountain range in western North America. The Rocky Mountains stretch more than 3,000 miles (4,800 km) from the northernmost part of British Columbia, in western Canada, to New Mexico, in the southwestern United States of American. Economic resources of the Rocky Mountains are varied.</p>



<div class="wp-block-image"><figure class="alignright size-medium"><img decoding="async" width="300" height="200" src="https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-300x200.jpg" alt="" class="wp-image-751" srcset="https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-300x200.jpg 300w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-768x512.jpg 768w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-1024x683.jpg 1024w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6.jpg 1680w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-1240x827.jpg 1240w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-860x573.jpg 860w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-680x453.jpg 680w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-500x333.jpg 500w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-400x267.jpg 400w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-250x167.jpg 250w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-200x133.jpg 200w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-150x100.jpg 150w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-100x67.jpg 100w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-76x51.jpg 76w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-50x33.jpg 50w" sizes="(max-width: 300px) 100vw, 300px" /><figcaption>Photography Application</figcaption></figure></div>



<p>Within the North American Cordillera, the Rockies are somewhat distinct from the Pacific Coast Ranges and the Cascade Range and Sierra Nevada which all lie further to the west. They were initially formed from 80 million to 55 million years ago during the Laramide orogeny, in which a number of plates began to slide underneath the North American plate.</p>



<h2 class="wp-block-heading">Ecology and Climate</h2>



<p>The angle of subduction was shallow, resulting in a broad belt of mountains running down western North America. Since then, further tectonic activity and erosion by glaciers have sculpted the Rockies into dramatic peaks and valleys. At the end of the last ice age, humans started to inhabit the mountain range.</p>



<div class="wp-block-ecko-blocks-contrast alignfull" style="background-color:#1b1b1d;color:#ffffff"><div class="wp-block-ecko-blocks-contrast-content" multline="p"><p>The rocks in the Rocky Mountains were formed before the mountains were raised by tectonic forces. The oldest rock is Precambrian metamorphic rock that forms the core of the North American continent. There is also Precambrian sedimentary argillite, dating back to 1.7 billion years ago. During the Paleozoic, western North America lay underneath a shallow sea, which deposited many kilometers of limestone and dolomite.</p></div></div>



<p>The Rockies range in latitude between the Liard River in British Columbia (at 59° N) and the Rio Grande in New Mexico (at 35° N). Prairie occurs at or below 1,800 feet (550 m), while the highest peak in the range is Mount Elbert at 14,440 feet (4,400 m). Precipitation ranges from 10 inches (250 mm) per year in the southern valleys to 60 inches (1,500 mm) per year locally in the northern peaks Average January temperatures can range from 20 °F (−7 °C) in Prince George, British Columbia, to 43 °F (6 °C) in Trinidad, Colorado.</p>



<h3 class="wp-block-heading">History</h3>



<p>The USGS defines ten forested zones in the Rocky Mountains. Zones in more southern, warmer, or drier areas are defined by the presence of pinyon pines/junipers, ponderosa pines, or oaks mixed with pines. In more northern, colder, or wetter areas, zones are defined by Douglas-firs, Cascadian species (such as western hemlock), lodgepole pines/quaking aspens, or firs mixed with spruce.</p>



<pre class="wp-block-code eckosc_syntax eckosc_syntax_theme_dark wp-block-code__dark language-javascript" data-language="language-javascript" data-color-scheme="dark"><code>var http = require('http');
http.createServer(function (req, res) {
    res.writeHead(200, {'Content-Type': 'text/plain'});
    res.end('Hello World\n');
}).listen(1337, '127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');</code></pre>



<p>Near treeline, zones can consist of white pines (such as whitebark pine or bristlecone pine); or a mixture of white pine, fir, and spruce that appear as shrub-like krummholz. Finally, rivers and canyons can create a unique forest zone in more arid parts of the mountain range.</p>



<figure class="wp-block-pullquote alignright"><blockquote><p>I don’t believe you have to be better than everybody else. I believe you have to be better than you ever thought you could be.</p><cite>Ken Venturi</cite></blockquote></figure>



<p>Quisque fringilla justo tristique mi fermentum accumsan. Integer feugiat, sem sit amet sodales cursus, enim lectus tempus tellus, nec facilisis tortor enim vel nunc. Donec facilisis arcu ac suscipit sagittis. Aliquam sollicitudin tortor et viverra commodo. Donec venenatis dignissim lacus quis dictum. Aliquam iaculis quam nec tortor volutpat, nec tempus diam efficitur. Phasellus vel orci placerat, ultricies nunc eu, tempus felis. Ut sit amet convallis velit. Mauris placerat neque at velit vehicula, iaculis semper purus blandit. Vestibulum vel tempus felis. Integer posuere orci vel commodo dictum. Vestibulum sit amet neque vitae dui tempor placerat non et nunc. Duis efficitur est a venenatis facilisis. Vestibulum in leo sem</p>



<h3 class="wp-block-heading">Header Three</h3>



<p>Duis lectus nulla, tristique in diam vel, posuere luctus elit. Duis convallis turpis venenatis enim eleifend, at ultrices dui luctus. Suspendisse sapien augue, pretium aliquet est eget, vehicula cursus nisl. Praesent eu sodales dolor, vitae dapibus turpis. Fusce in egestas justo.</p>



<figure class="wp-block-image alignfull size-full"><img loading="lazy" decoding="async" width="1680" height="1149" src="https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724.jpg" alt="" class="wp-image-929" srcset="https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724.jpg 1680w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724-300x205.jpg 300w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724-768x525.jpg 768w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724-1024x700.jpg 1024w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724-1240x848.jpg 1240w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724-860x588.jpg 860w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724-680x465.jpg 680w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724-500x342.jpg 500w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724-400x274.jpg 400w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724-250x171.jpg 250w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724-200x137.jpg 200w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724-150x103.jpg 150w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724-100x68.jpg 100w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724-76x52.jpg 76w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724-50x34.jpg 50w" sizes="auto, (max-width: 1680px) 100vw, 1680px" /></figure>



<p>Aliquam sollicitudin sed nisl non gravida. Vivamus placerat quis nisl vel sodales. Integer vitae tortor tristique, sodales orci sed, viverra nibh. Suspendisse vel dapibus dui. Quisque tempor metus sit amet lorem sollicitudin, vitae pellentesque massa iaculis. Mauris eu bibendum turpis, eu efficitur eros. Curabitur ante diam, volutpat pellentesque facilisis dapibus, blandit nec purus. In euismod fermentum semper. Aliquam ac ex sem. Pellentesque sit amet volutpat augue.</p>



<p>Sed commodo rutrum risus, et tincidunt orci condimentum id. Mauris turpis magna, bibendum a molestie eu, interdum a neque. Cras ac accumsan odio, euismod blandit metus. Donec et feugiat lorem. Aenean sed sem at magna laoreet gravida fermentum egestas orci. Aliquam nec semper quam, id porta erat.</p>



<hr class="wp-block-separator"/>



<p>Integer sit amet lobortis magna, id ultrices lectus. Mauris eget sem elit. Aliquam ac luctus nunc, vitae auctor sem. Integer ut luctus elit. Donec ligula turpis, mattis facilisis felis non, mollis fermentum justo. Maecenas consequat vulputate elit. Vestibulum ullamcorper luctus quam at cursus. Morbi a magna placerat est elementum dictum sed vel nulla.</p>
<p>The post <a href="https://slate-wp.ecko.me/intorduction-to-ui-ux/">Introduction to User Experience &#038; Interface Design</a> appeared first on <a href="https://slate-wp.ecko.me">EckoThemes</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://slate-wp.ecko.me/intorduction-to-ui-ux/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Effective Use of Whitespace in Minimal UI Design</title>
		<link>https://slate-wp.ecko.me/style-guide/</link>
					<comments>https://slate-wp.ecko.me/style-guide/#comments</comments>
		
		<dc:creator><![CDATA[Harvey Specter]]></dc:creator>
		<pubDate>Mon, 08 Mar 2021 15:55:26 +0000</pubDate>
				<category><![CDATA[Frontend]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[HTML]]></category>
		<guid isPermaLink="false">http://koala-wp.ecko.me/?p=793</guid>

					<description><![CDATA[<p>Mountain ranges are usually segmented by highlands or mountain passes and valleys. Individual mountains within the same mountain range do not necessarily have the same geologic structure or petrology. They may be a mix of different orogenic expressions and terranes, for example thrust sheets, uplifted blocks, fold mountains, and volcanic landforms resulting in a variety [&#8230;]</p>
<p>The post <a href="https://slate-wp.ecko.me/style-guide/">Effective Use of Whitespace in Minimal UI Design</a> appeared first on <a href="https://slate-wp.ecko.me">EckoThemes</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Mountain ranges are usually segmented by highlands or mountain passes and valleys. Individual mountains within the same mountain range do not necessarily have the same geologic structure or petrology. They may be a mix of different orogenic expressions and terranes, for example thrust sheets, uplifted blocks, fold mountains, and volcanic landforms resulting in a variety of rock types.</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p>I don’t believe you have to be better than everybody else. I believe you have to be better than you ever thought you could be.</p><cite>Ken Venturi</cite></blockquote>



<p>A mountain range is a geographic area containing numerous geologically related mountains. A mountain system or system of mountain ranges, sometimes is used to combine several geological features that are geographically (regionally) related.</p>



<h2 class="wp-block-heading">Rocky Mountains</h2>



<p>On Earth, most significant mountain ranges are the result of plate tectonics, though mountain ranges are formed by a range of processes, are found on many planetary mass objects in the Solar System and are likely a feature of most terrestrial planets.</p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img decoding="async" src="https://slate-wp.ecko.me/wp-content/uploads/2015/01/desk-work.jpg" alt=""/></figure></div>



<p>The mountain systems of the earth are characterized by a tree structure, that is, many mountain ranges have sub-ranges within them. It can be thought of as a parent-child relationship.For example, the Appalachian Mountains range is the parent of other ranges it comprises, some of which are the White Mountains and the Blue Ridge Mountains.</p>



<p>The White Mountains are a child of the Appalachians, and there are also children of the Whites, including the Sandwich Range and the Presidential Range. Further, the Presidential Range can be broken up into the Northern Presidential Range and Southern Presidential Range.</p>



<h3 class="wp-block-heading">Geology</h3>



<div class="wp-block-image"><figure class="alignleft size-medium"><img loading="lazy" decoding="async" width="300" height="200" src="https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-300x200.jpg" alt="" class="wp-image-743" srcset="https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-300x200.jpg 300w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-768x512.jpg 768w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-1024x683.jpg 1024w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology.jpg 1680w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-1240x827.jpg 1240w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-860x573.jpg 860w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-680x453.jpg 680w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-500x333.jpg 500w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-400x267.jpg 400w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-250x167.jpg 250w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-200x133.jpg 200w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-150x100.jpg 150w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-100x67.jpg 100w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-76x51.jpg 76w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/man-hands-working-technology-50x33.jpg 50w" sizes="auto, (max-width: 300px) 100vw, 300px" /><figcaption>Image Capation</figcaption></figure></div>



<p>The Rocky Mountains, commonly known as the Rockies, are a major mountain range in western North America. The Rocky Mountains stretch more than 3,000 miles (4,800 km) from the northernmost part of British Columbia, in western Canada, to New Mexico, in the southwestern United States of American. Economic resources of the Rocky Mountains are varied.</p>



<div class="wp-block-image"><figure class="alignright size-medium"><img loading="lazy" decoding="async" width="300" height="200" src="https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-300x200.jpg" alt="" class="wp-image-751" srcset="https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-300x200.jpg 300w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-768x512.jpg 768w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-1024x683.jpg 1024w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6.jpg 1680w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-1240x827.jpg 1240w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-860x573.jpg 860w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-680x453.jpg 680w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-500x333.jpg 500w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-400x267.jpg 400w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-250x167.jpg 250w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-200x133.jpg 200w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-150x100.jpg 150w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-100x67.jpg 100w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-76x51.jpg 76w, https://slate-wp.ecko.me/wp-content/uploads/2015/08/photo-1425315283416-2acc50323ee6-50x33.jpg 50w" sizes="auto, (max-width: 300px) 100vw, 300px" /><figcaption>Photography Application</figcaption></figure></div>



<p>Within the North American Cordillera, the Rockies are somewhat distinct from the Pacific Coast Ranges and the Cascade Range and Sierra Nevada which all lie further to the west. They were initially formed from 80 million to 55 million years ago during the Laramide orogeny, in which a number of plates began to slide underneath the North American plate.</p>



<h2 class="wp-block-heading">Ecology and Climate</h2>



<p>The angle of subduction was shallow, resulting in a broad belt of mountains running down western North America. Since then, further tectonic activity and erosion by glaciers have sculpted the Rockies into dramatic peaks and valleys. At the end of the last ice age, humans started to inhabit the mountain range.</p>



<div class="wp-block-ecko-blocks-contrast alignfull" style="background-color:#1b1b1d;color:#ffffff"><div class="wp-block-ecko-blocks-contrast-content" multline="p"><p>The rocks in the Rocky Mountains were formed before the mountains were raised by tectonic forces. The oldest rock is Precambrian metamorphic rock that forms the core of the North American continent. There is also Precambrian sedimentary argillite, dating back to 1.7 billion years ago. During the Paleozoic, western North America lay underneath a shallow sea, which deposited many kilometers of limestone and dolomite.</p></div></div>



<p>The Rockies range in latitude between the Liard River in British Columbia (at 59° N) and the Rio Grande in New Mexico (at 35° N). Prairie occurs at or below 1,800 feet (550 m), while the highest peak in the range is Mount Elbert at 14,440 feet (4,400 m). Precipitation ranges from 10 inches (250 mm) per year in the southern valleys to 60 inches (1,500 mm) per year locally in the northern peaks Average January temperatures can range from 20 °F (−7 °C) in Prince George, British Columbia, to 43 °F (6 °C) in Trinidad, Colorado.</p>



<h3 class="wp-block-heading">History</h3>



<p>The USGS defines ten forested zones in the Rocky Mountains. Zones in more southern, warmer, or drier areas are defined by the presence of pinyon pines/junipers, ponderosa pines, or oaks mixed with pines. In more northern, colder, or wetter areas, zones are defined by Douglas-firs, Cascadian species (such as western hemlock), lodgepole pines/quaking aspens, or firs mixed with spruce.</p>



<pre class="wp-block-code eckosc_syntax eckosc_syntax_theme_dark wp-block-code__dark language-javascript" data-language="language-javascript" data-color-scheme="dark"><code>var http = require('http');
http.createServer(function (req, res) {
    res.writeHead(200, {'Content-Type': 'text/plain'});
    res.end('Hello World\n');
}).listen(1337, '127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');</code></pre>



<p>Near treeline, zones can consist of white pines (such as whitebark pine or bristlecone pine); or a mixture of white pine, fir, and spruce that appear as shrub-like krummholz. Finally, rivers and canyons can create a unique forest zone in more arid parts of the mountain range.</p>



<figure class="wp-block-pullquote alignright"><blockquote><p>I don’t believe you have to be better than everybody else. I believe you have to be better than you ever thought you could be.</p><cite>Ken Venturi</cite></blockquote></figure>



<p>Quisque fringilla justo tristique mi fermentum accumsan. Integer feugiat, sem sit amet sodales cursus, enim lectus tempus tellus, nec facilisis tortor enim vel nunc. Donec facilisis arcu ac suscipit sagittis. Aliquam sollicitudin tortor et viverra commodo. Donec venenatis dignissim lacus quis dictum. Aliquam iaculis quam nec tortor volutpat, nec tempus diam efficitur. Phasellus vel orci placerat, ultricies nunc eu, tempus felis. Ut sit amet convallis velit. Mauris placerat neque at velit vehicula, iaculis semper purus blandit. Vestibulum vel tempus felis. Integer posuere orci vel commodo dictum. Vestibulum sit amet neque vitae dui tempor placerat non et nunc. Duis efficitur est a venenatis facilisis. Vestibulum in leo sem</p>



<h3 class="wp-block-heading">Header Three</h3>



<p>Duis lectus nulla, tristique in diam vel, posuere luctus elit. Duis convallis turpis venenatis enim eleifend, at ultrices dui luctus. Suspendisse sapien augue, pretium aliquet est eget, vehicula cursus nisl. Praesent eu sodales dolor, vitae dapibus turpis. Fusce in egestas justo.</p>



<figure class="wp-block-image alignfull size-full"><img loading="lazy" decoding="async" width="1680" height="1149" src="https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724.jpg" alt="" class="wp-image-929" srcset="https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724.jpg 1680w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724-300x205.jpg 300w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724-768x525.jpg 768w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724-1024x700.jpg 1024w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724-1240x848.jpg 1240w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724-860x588.jpg 860w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724-680x465.jpg 680w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724-500x342.jpg 500w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724-400x274.jpg 400w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724-250x171.jpg 250w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724-200x137.jpg 200w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724-150x103.jpg 150w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724-100x68.jpg 100w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724-76x52.jpg 76w, https://slate-wp.ecko.me/wp-content/uploads/2015/01/photo-1439798060585-62ab242d7724-50x34.jpg 50w" sizes="auto, (max-width: 1680px) 100vw, 1680px" /></figure>



<p>Aliquam sollicitudin sed nisl non gravida. Vivamus placerat quis nisl vel sodales. Integer vitae tortor tristique, sodales orci sed, viverra nibh. Suspendisse vel dapibus dui. Quisque tempor metus sit amet lorem sollicitudin, vitae pellentesque massa iaculis. Mauris eu bibendum turpis, eu efficitur eros. Curabitur ante diam, volutpat pellentesque facilisis dapibus, blandit nec purus. In euismod fermentum semper. Aliquam ac ex sem. Pellentesque sit amet volutpat augue.</p>



<p>Sed commodo rutrum risus, et tincidunt orci condimentum id. Mauris turpis magna, bibendum a molestie eu, interdum a neque. Cras ac accumsan odio, euismod blandit metus. Donec et feugiat lorem. Aenean sed sem at magna laoreet gravida fermentum egestas orci. Aliquam nec semper quam, id porta erat.</p>



<hr class="wp-block-separator"/>



<p>Integer sit amet lobortis magna, id ultrices lectus. Mauris eget sem elit. Aliquam ac luctus nunc, vitae auctor sem. Integer ut luctus elit. Donec ligula turpis, mattis facilisis felis non, mollis fermentum justo. Maecenas consequat vulputate elit. Vestibulum ullamcorper luctus quam at cursus. Morbi a magna placerat est elementum dictum sed vel nulla.</p>
<p>The post <a href="https://slate-wp.ecko.me/style-guide/">Effective Use of Whitespace in Minimal UI Design</a> appeared first on <a href="https://slate-wp.ecko.me">EckoThemes</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://slate-wp.ecko.me/style-guide/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Responsive &#038; Mobile Design</title>
		<link>https://slate-wp.ecko.me/responsive-mobile-design/</link>
					<comments>https://slate-wp.ecko.me/responsive-mobile-design/#respond</comments>
		
		<dc:creator><![CDATA[Mike Ross]]></dc:creator>
		<pubDate>Thu, 14 Jan 2021 19:57:44 +0000</pubDate>
				<category><![CDATA[Frontend]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[SASS]]></category>
		<guid isPermaLink="false">http://wpdev.ecko.me/?p=52</guid>

					<description><![CDATA[<p>RWD allows&#160;easy reading and navigation with a minimum of resizing, panning, and scrolling—across a wide range of devices (from mobile phones to desktop computer monitors).&#160;A site designed with RWD adapts the layout to the viewing environment by using fluid, proportion-based grids, flexible images,and CSS3 media queries, an extension of the @media rule. The fluid grid [&#8230;]</p>
<p>The post <a href="https://slate-wp.ecko.me/responsive-mobile-design/">Responsive &#038; Mobile Design</a> appeared first on <a href="https://slate-wp.ecko.me">EckoThemes</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>RWD allows&nbsp;easy reading and navigation with a minimum of resizing, panning, and scrolling—across a wide range of devices (from mobile phones to desktop computer monitors).&nbsp;A site designed with RWD adapts the layout to the viewing environment by using fluid, proportion-based grids, flexible images,and CSS3 media queries, an extension of the @media rule.</p>



<ul class="wp-block-list"><li>The fluid grid concept calls for page element sizing to be in relative units like percentages, rather than absolute units like pixels or points.</li><li>Flexible images are also sized in relative units, so as to prevent them from displaying outside their containing element.</li><li>Media queries allow the page to use different CSS style rules based on characteristics of the device the site is being displayed on, most commonly the width of the browser.</li><li>Server-side components (RESS) in conjunction with client-side ones such as media queries can produce faster-loading sites for access over cellular networks and also deliver richer functionality/usability avoiding some of the pitfalls of device-side-only solutions.</li></ul>



<h2 class="wp-block-heading" id="relatedconcepts">Related Concepts</h2>



<h3 class="wp-block-heading" id="audienceanddeviceawareada">Audience and Device Aware (ADA)</h3>



<p>Audience and Device Aware is an approach aimed at ensuring that a site is optimised to deliver what a user wants and that works effectively on the device being used to access the site. Unlike Responsive web design (RWD), which crafts a site visually for a range of devices, ADA aims to reflect the many different elements that enhance and impact on the performance and usability of a site. The predominant application for the ADA approach is for mobile and smaller screen devices. The principle truly sees the adoption of a “mobile first” strategy and focuses on the performance of a site and value that it delivers to a user and the business.</p>



<h3 class="wp-block-heading" id="mobilefirst">Mobile First</h3>



<p>&#8220;Mobile first&#8221;, unobtrusive JavaScript, and progressive enhancement (strategies for when a new site design is being considered) are related concepts that predated RWD: browsers of basic mobile phones do not understand JavaScript or media queries, so the recommended practice is to create a basic web site, and enhance it for smart phones and PCs—rather than try graceful degradation to make a complex, image-heavy site work on the most basic mobile phones.</p>
<p>The post <a href="https://slate-wp.ecko.me/responsive-mobile-design/">Responsive &#038; Mobile Design</a> appeared first on <a href="https://slate-wp.ecko.me">EckoThemes</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://slate-wp.ecko.me/responsive-mobile-design/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Initial Server Configuration &#038; Setup on Debian</title>
		<link>https://slate-wp.ecko.me/initial-server-setup-with-ubuntu-14-04/</link>
					<comments>https://slate-wp.ecko.me/initial-server-setup-with-ubuntu-14-04/#respond</comments>
		
		<dc:creator><![CDATA[Harvey Specter]]></dc:creator>
		<pubDate>Wed, 02 Dec 2020 17:01:46 +0000</pubDate>
				<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Software]]></category>
		<guid isPermaLink="false">http://ivywp-light.ecko.me/?p=387</guid>

					<description><![CDATA[<p>When you first create a new Debian 8 server, there are a few configuration steps that you should take early on as part of the basic setup. This will increase the security and usability of your server and will give you a solid foundation for subsequent actions. Step One &#8211; Root Login To log into [&#8230;]</p>
<p>The post <a href="https://slate-wp.ecko.me/initial-server-setup-with-ubuntu-14-04/">Initial Server Configuration &#038; Setup on Debian</a> appeared first on <a href="https://slate-wp.ecko.me">EckoThemes</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>When you first create a new Debian 8 server, there are a few configuration steps that you should take early on as part of the basic setup. This will increase the security and usability of your server and will give you a solid foundation for subsequent actions.</p>



<h2 class="wp-block-heading">Step One &#8211; Root Login</h2>



<p>To log into your server initially, you will need to know your server&#8217;s public IP address and the password for the &#8220;root&#8221; user&#8217;s account. For servers on DigitalOcean, you will receive an email with your server credentials and the server&#8217;s IP address.</p>



<p>The root user is the administrative user in a Linux environment that has very broad privileges. Because of the heightened privileges of the root account, you are actually <em>discouraged</em> from using it on a regular basis. This is because part of the power inherent with the root account is the ability to make very destructive changes, even by accident.</p>



<p>In this guide, we&#8217;ll help you set up an alternative user account with a reduced scope of influence for day-to-day work. We&#8217;ll teach you how to gain increased privileges during the times when you need them.&nbsp;The first step is to log into your server, and the only account we start out with is the root account. We can connect to the server by using the <code>ssh</code> command in the terminal. The command will look like this:</p>



<pre class="wp-block-code eckosc_syntax eckosc_syntax_theme_dark wp-block-code__dark language-bash" data-language="language-bash" data-color-scheme="dark"><code>ssh root@server_ip_address</code></pre>



<p>You will most likely see a warning in your terminal window that looks like this:</p>



<pre class="wp-block-code eckosc_syntax eckosc_syntax_theme_dark wp-block-code__dark language-bash" data-language="language-bash" data-color-scheme="dark"><code>The authenticity of host '123.123.123.123 (123.123.123.123)' can't be established.
ECDSA key fingerpring is
79:95:46:1a:ab:37:11:8e:86:54:36:38:bb:3c:fa:c0.
Are you sure you want to continue connecting (yes/no)?</code></pre>



<p>Here, your computer is basically telling you that it doesn&#8217;t recognize your remote server. Since this is your first time connecting, this is completely expected.&nbsp;Go ahead and type &#8220;yes&#8221; to accept the connection. Afterwards, you&#8217;ll need to enter the password for the root account.</p>



<h2 class="wp-block-heading">Step Two &#8211; Change Your Password</h2>



<p>You are not likely to remember the password that is currently set for your root account. You can change the password to something you will remember more easily by typing:</p>



<pre class="wp-block-code eckosc_syntax eckosc_syntax_theme_dark wp-block-code__dark language-bash" data-language="language-bash" data-color-scheme="dark"><code>passwd</code></pre>



<p>It will ask you to enter and confirm your new password. During this process, you will not see anything show up on your screen as you type. This is intentional and is there so that people looking over your shoulder cannot guess your password by the number of characters.</p>



<h2 class="wp-block-heading">Step Three &#8211; Create a New User</h2>



<p>At this point, we&#8217;re prepared to add the new user account that we will use to log in from now on.&nbsp;I&#8217;m going to name my user &#8220;demo&#8221;, but you can select whatever name you&#8217;d like:</p>



<pre class="wp-block-code eckosc_syntax eckosc_syntax_theme_dark wp-block-code__dark language-bash" data-language="language-bash" data-color-scheme="dark"><code>adduser demo</code></pre>



<p>You will be asked a few questions, starting with the account password.&nbsp;Fill out the password and, optionally, fill in any of the additional information if you would like. This is not required and you can just hit &#8220;ENTER&#8221; in any field you wish to skip.</p>



<h2 class="wp-block-heading">Step Four &#8211; Root Privileges</h2>



<p>To avoid having to log out of our normal user and log back in as the root account, we can set up what is known as &#8220;sudo&#8221; privileges for our normal account. This will allow our normal user to run commands with administrative privileges by putting the word &#8220;sudo&#8221; before each command.&nbsp;To add these privileges to our new account, we need to use a command called <code>visudo</code>. This will open a configuration file:</p>



<pre class="wp-block-code eckosc_syntax eckosc_syntax_theme_dark wp-block-code__dark language-bash" data-language="language-bash" data-color-scheme="dark"><code>visudo</code></pre>



<p>Scroll down until you find a section that deals with user privileges. It will look similar to this:</p>



<pre class="wp-block-code eckosc_syntax eckosc_syntax_theme_dark wp-block-code__dark language-bash" data-language="language-bash" data-color-scheme="dark"><code># User privilege specification
root    ALL=(ALL:ALL) ALL</code></pre>



<p>While this might look complicated, we don&#8217;t need to worry about that. All we need to do is add another line below it that follows the format, replacing &#8220;demo&#8221; with the user you created:</p>



<pre class="wp-block-code eckosc_syntax eckosc_syntax_theme_dark wp-block-code__dark language-bash" data-language="language-bash" data-color-scheme="dark"><code># User privilege specification
root    ALL=(ALL:ALL) ALL
demo    ALL=(ALL:ALL) ALL</code></pre>



<p>After this is done, press CTRL-X to exit. You will have to type &#8220;Y&#8221; to save the file and then press &#8220;ENTER&#8221; to confirm the file location.</p>



<h2 class="wp-block-heading">Step Five &#8211; Configure SSH (Optional)</h2>



<p>Now that we have our new account, we can secure our server a little bit by modifying the configuration of SSH (the program that allows us to log in remotely).&nbsp;Begin by opening the configuration file with your text editor as root:</p>



<pre class="wp-block-code eckosc_syntax eckosc_syntax_theme_dark wp-block-code__dark language-bash" data-language="language-bash" data-color-scheme="dark"><code>nano /etc/ssh/sshd_config</code></pre>



<p>Continue reading this guide at DigitalOcean. This article has been used as an example of&nbsp;an&nbsp;Ecko&nbsp;WordPress theme. This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.</p>
<p>The post <a href="https://slate-wp.ecko.me/initial-server-setup-with-ubuntu-14-04/">Initial Server Configuration &#038; Setup on Debian</a> appeared first on <a href="https://slate-wp.ecko.me">EckoThemes</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://slate-wp.ecko.me/initial-server-setup-with-ubuntu-14-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Simple HTTP Server in NodeJS</title>
		<link>https://slate-wp.ecko.me/simple-http-server-in-nodejs/</link>
					<comments>https://slate-wp.ecko.me/simple-http-server-in-nodejs/#comments</comments>
		
		<dc:creator><![CDATA[Harvey Specter]]></dc:creator>
		<pubDate>Sat, 26 Sep 2020 19:15:58 +0000</pubDate>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Grunt]]></category>
		<category><![CDATA[Nginx]]></category>
		<category><![CDATA[Web]]></category>
		<guid isPermaLink="false">http://wpdev.ecko.me/?p=62</guid>

					<description><![CDATA[<p>Node.js is a platform built on Chrome’s JavaScript runtime for easily building fast, scalable network applications. Node.js uses an event-driven, non-blocking model that makes it lightweight and efficient, perfect for data-intensive real-time applications that run across distributed devices.</p>
<p>The post <a href="https://slate-wp.ecko.me/simple-http-server-in-nodejs/">Simple HTTP Server in NodeJS</a> appeared first on <a href="https://slate-wp.ecko.me">EckoThemes</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Node.js uses an event-driven, non-blocking model that makes it lightweight and efficient, perfect for data-intensive real-time applications that run across distributed devicesThis simple web server written in Node responds with “Hello World” for every request. To run the server, put the code into a file example.js and execute it with the node program from the command line.</p>



<pre class="wp-block-code eckosc_syntax eckosc_syntax_theme_dark wp-block-code__dark language-javascript" data-language="language-javascript" data-color-scheme="dark"><code>var http = require('http');
http.createServer(function (req, res) {
    res.writeHead(200, {'Content-Type': 'text/plain'});
    res.end('Hello Worldn');
}).listen(1337, '127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');</code></pre>
<p>The post <a href="https://slate-wp.ecko.me/simple-http-server-in-nodejs/">Simple HTTP Server in NodeJS</a> appeared first on <a href="https://slate-wp.ecko.me">EckoThemes</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://slate-wp.ecko.me/simple-http-server-in-nodejs/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Installing Nginx on Ubuntu 14.04 with Server Caching</title>
		<link>https://slate-wp.ecko.me/installing-nginx-on-ubuntu-14-04/</link>
					<comments>https://slate-wp.ecko.me/installing-nginx-on-ubuntu-14-04/#comments</comments>
		
		<dc:creator><![CDATA[Mike Ross]]></dc:creator>
		<pubDate>Thu, 02 Jul 2020 04:47:54 +0000</pubDate>
				<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Cache]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Nginx]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Software]]></category>
		<guid isPermaLink="false">http://kitewp.ecko.me/?p=319</guid>

					<description><![CDATA[<p>Nginx is one of the most popular web servers in the world and is responsible for hosting some of the largest and highest-traffic sites on the internet. It is more resource-friendly than Apache in most cases and can be used as a web server or a reverse proxy. Since this is our first interaction with the apt packaging system in this session, we should update our local package index before we begin so that we are using the most up-to-date information.</p>
<p>The post <a href="https://slate-wp.ecko.me/installing-nginx-on-ubuntu-14-04/">Installing Nginx on Ubuntu 14.04 with Server Caching</a> appeared first on <a href="https://slate-wp.ecko.me">EckoThemes</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Before you begin this guide, you should have a regular, non-root user with sudo privileges configured on your server. You can learn how to configure a regular user account by following steps 1-4 in our initial server setup guide for Ubuntu 14.04.</p>



<h3 class="wp-block-heading">Step One &#8211; Install Nginx</h3>



<p>We can install Nginx easily because the Ubuntu team provides an Nginx package in its default repositories.&nbsp;Since this is our first interaction with the apt packaging system in this session, we should update our local package index before we begin so that we are using the most up-to-date information. Afterwards, we will install nginx:</p>



<pre class="wp-block-code eckosc_syntax eckosc_syntax_theme_dark wp-block-code__dark language-bash" data-language="language-bash" data-color-scheme="dark"><code>sudo apt-get update
sudo apt-get install nginx</code></pre>



<p>You will probably be prompted for your user&#8217;s password. Enter it to confirm that you wish to complete the installation. The appropriate software will be downloaded to your server and then automatically installed.</p>



<h3 class="wp-block-heading">Step Two &#8211; Check your Web Server</h3>



<p>You can access the default Nginx landing page to confirm that the software is running properly by visiting your server&#8217;s domain name or public IP address in your web browser.</p>



<p>If you do not have a spare domain name, or have no need for one, you can use your server&#8217;s public IP address. If you do not know your server&#8217;s IP address, you can get it a few different ways from the command line.</p>



<p>Continue reading this guide at <a href="https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-ubuntu-14-04-lts" target="_blank" rel="noopener">Digital Ocean</a>. This article has been used as an example of an&nbsp;Ecko&nbsp;WordPress theme. This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.</p>
<p>The post <a href="https://slate-wp.ecko.me/installing-nginx-on-ubuntu-14-04/">Installing Nginx on Ubuntu 14.04 with Server Caching</a> appeared first on <a href="https://slate-wp.ecko.me">EckoThemes</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://slate-wp.ecko.me/installing-nginx-on-ubuntu-14-04/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Page Caching using Disk: Enhanced 

Served from: slate-wp.ecko.me @ 2026-06-03 14:07:31 by W3 Total Cache
-->