<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Michael</title>
    <description>The latest articles on DEV Community by Michael (@emgodev).</description>
    <link>https://dev.to/emgodev</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F121245%2F60e385e8-c223-41fd-9dab-d26fa47b0ac6.png</url>
      <title>DEV Community: Michael</title>
      <link>https://dev.to/emgodev</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/emgodev"/>
    <language>en</language>
    <item>
      <title>My EMACS Custom Indent Function Uses 'tab-width'</title>
      <dc:creator>Michael</dc:creator>
      <pubDate>Mon, 11 Feb 2019 15:10:25 +0000</pubDate>
      <link>https://dev.to/emgodev/my-emacs-custom-indent-function-uses-tab-width-34p8</link>
      <guid>https://dev.to/emgodev/my-emacs-custom-indent-function-uses-tab-width-34p8</guid>
      <description>&lt;p&gt;&lt;em&gt;I think image came from here: &lt;a href="https://github.com/jcsalomon/smarttabs"&gt;https://github.com/jcsalomon/smarttabs&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;I have been investing a guilty amount of time customizing my EMACS init config lately. It began with trying to understand more iterative processes in Elisp, so I read up on loops; most of which are simple examples, but I am a bit proud of what I was able to work on just now.&lt;/p&gt;

&lt;p&gt;So I am trying to get the Aggressive Indent package to use 2 spaces for indentation - A.I. uses the local mode indent width - which is not that difficult, but as I dedicate a section of my init to setting these widths I thought I should at least update the custom indent function I had. It was a custom interactive function I mapped to my space key that &lt;em&gt;insert&lt;/em&gt;(s) two spaces for quick indentation. I used this to quickly indent my code (enter+space or beginning-of-line+space). A horrible process! Anyway now it uses a while loop and the global tab-width variable to &lt;em&gt;insert&lt;/em&gt; spaces.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight common_lisp"&gt;&lt;code&gt;&lt;span class="c1"&gt;; Previously&lt;/span&gt;
&lt;span class="c1"&gt;;(defun space-times-2 ()&lt;/span&gt;
&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;defun&lt;/span&gt; &lt;span class="nv"&gt;insert-space-indent&lt;/span&gt; &lt;span class="p"&gt;()&lt;/span&gt;
  &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;interactive&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
  &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="k"&gt;setq&lt;/span&gt; &lt;span class="nv"&gt;scoped-indent-width&lt;/span&gt; &lt;span class="nv"&gt;tab-width&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
  &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;while&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;&amp;gt;&lt;/span&gt; &lt;span class="nv"&gt;scoped-indent-width&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
    &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;insert&lt;/span&gt; &lt;span class="s"&gt;" "&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
    &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="k"&gt;setq&lt;/span&gt; &lt;span class="nv"&gt;scoped-indent-width&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;-&lt;/span&gt; &lt;span class="nv"&gt;scoped-indent-width&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt;
  &lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;I thought this was exciting, learning Elisp here and there, it's a very different syntax to the web languages. If this is interesting or helpful I'll share more of Elisp/EMACS stuff I've been learning.&lt;/p&gt;

&lt;p&gt;#candevtobemytwitter&lt;/p&gt;

</description>
      <category>elisp</category>
      <category>showdev</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Deleting Git Repo. Blocked by SymLinks</title>
      <dc:creator>Michael</dc:creator>
      <pubDate>Sun, 27 Jan 2019 06:23:45 +0000</pubDate>
      <link>https://dev.to/emgodev/deleting-git-repo-blocked-by-symlinks-222d</link>
      <guid>https://dev.to/emgodev/deleting-git-repo-blocked-by-symlinks-222d</guid>
      <description>&lt;p&gt;I am having some problems with symbolic link recursion. I have a git repo that refuses to leave my computer. I may never write immutable data again out of spite of this circumstance.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--mAES6azp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/dz5lo2vp0xu0cq24w06d.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--mAES6azp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/dz5lo2vp0xu0cq24w06d.gif" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;There does not seem to be many answers on this topic, or they're pertaining to people explicitly creating these symbolic links; what evil person would do this?&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--dMEaIQy7--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/m138gflj9dzinnh63m5a.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--dMEaIQy7--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/m138gflj9dzinnh63m5a.gif" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Any idea how to &lt;strong&gt;nuke&lt;/strong&gt; a directory from virtual existence?&lt;/p&gt;

</description>
      <category>help</category>
      <category>linux</category>
    </item>
    <item>
      <title>Use AJAX for Instant Results</title>
      <dc:creator>Michael</dc:creator>
      <pubDate>Fri, 25 Jan 2019 04:30:04 +0000</pubDate>
      <link>https://dev.to/emgodev/use-ajax-for-instant-results-4b2e</link>
      <guid>https://dev.to/emgodev/use-ajax-for-instant-results-4b2e</guid>
      <description>&lt;p&gt;...when cleaning.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fthepracticaldev.s3.amazonaws.com%2Fi%2F1uo7sbxuwdo7kufadjgi.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fthepracticaldev.s3.amazonaws.com%2Fi%2F1uo7sbxuwdo7kufadjgi.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>funny</category>
    </item>
    <item>
      <title>A List of Terminology in Tech</title>
      <dc:creator>Michael</dc:creator>
      <pubDate>Sun, 20 Jan 2019 08:46:35 +0000</pubDate>
      <link>https://dev.to/emgodev/a-list-of-terminology-in-tech-3gn</link>
      <guid>https://dev.to/emgodev/a-list-of-terminology-in-tech-3gn</guid>
      <description>&lt;h1&gt;
  
  
  Preface
&lt;/h1&gt;

&lt;p&gt;This is a copy-paste job from my own markdown files so it might be a little rough. I will continue to revise and update this as a living document. Feel like something should be re-worded? Want to add a new term or improve an existing one? Leave a comment!&lt;/p&gt;

&lt;h2&gt;
  
  
  Index
&lt;/h2&gt;

&lt;p&gt;Backend, B.E.M., Camel Case, Composite Numbers, C.R.U.D., Declaration, Declaration Block, Delimiter, Delimiter-Separated Words, D.S.L., X.M.L., Expression, Factory, Frontend, F.O.P., G.S.L., Hungarian Notation, Imperative Programming, Letter-Case-Separated Words&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Sorry if this bothers you, but a list would waste too much space. Abbreviations are favored within the index except for duplicates.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1&gt;
  
  
  Terminology
&lt;/h1&gt;

&lt;p&gt;A collection of common terms in web/software development, programming, etc. The idea is to capture and define concepts necessary to understand how and why things work the way they do.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;span id="backend"&gt;Backend (also backend / back-end / back end / BackEnd)&lt;/span&gt;&lt;/strong&gt;: when speaking of websites and the internet, refers to the server (hardware) which contains project files. Server 'serves' files to the frontend internet browser, compiles code, performs tasks.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;span id="bem"&gt;B.E.M.&lt;/span&gt; (also BEM / Block, Element, Modifier)&lt;/strong&gt;: a naming convention for CSS in order to maintain large design systems by treating HTML components as objects.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;span id="camel-case"&gt;Camel Case (also camelCase / CamelCase)&lt;/span&gt;&lt;/strong&gt;: &lt;em&gt;in Programming&lt;/em&gt;, a naming convention for identifiers largely characterized by the consistent medial capitalization of words. &lt;em&gt;when camelCase&lt;/em&gt;, often demands that the first word of an identifier be lowercase and all subsequent words capitalized. &lt;em&gt;when CamelCase&lt;/em&gt;, often demands that each word is capitalized. indicates boundaries between words. &lt;em&gt;See Letter-Case-Separated Words&lt;/em&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;code&gt;lowerCamelCase&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;CamelCase&lt;/code&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;&lt;span id="closure"&gt;Closure&lt;/span&gt;&lt;/strong&gt;: &lt;em&gt;in Programming&lt;/em&gt;,&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://en.wikipedia.org/wiki/Closure_(computer_programming)"&gt;Wikipedia: Closure&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In computer programming, the scope of a name binding – an association of a name to an entity, such as a variable – is the region of a computer program where the binding is valid: where the name can be used to refer to the entity. Such a region is referred to as a scope block. In other parts of the program the name may refer to a different entity (it may have a different binding), or to nothing at all (it may be unbound). &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;&lt;span id="composite-numbers"&gt;Composite Numbers&lt;/span&gt;&lt;/strong&gt;: A Composite Number is a whole number that can be divided evenly by numbers other than 1 or itself.&lt;br&gt;
Example: 9 can be divided evenly by 3 (as well as 1 and 9), so 9 is a composite number. But 7 cannot be divided evenly (except by 1 and 7), so is NOT a composite number (it is a prime number).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;span id="create-read-update-delete"&gt;C.R.U.D. (also CRUD)&lt;/span&gt;&lt;/strong&gt;: An acronym for create, read, update, and delete. These are the four basic functions of &lt;a href="https://en.wikipedia.org/wiki/Persistence_(computer_science)"&gt;persistent storage&lt;/a&gt; / relational database systems.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;span id="declaration"&gt;Declaration&lt;/span&gt;&lt;/strong&gt;: &lt;em&gt;in CSS&lt;/em&gt;, the key/value pair of identifier and value within the scope of a CSS Rule.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;&lt;span class="nt"&gt;div&lt;/span&gt;&lt;span class="o"&gt;,&lt;/span&gt; &lt;span class="c"&gt;/* element selector */&lt;/span&gt;
&lt;span class="nf"&gt;#idIdentifier&lt;/span&gt;&lt;span class="o"&gt;,&lt;/span&gt;
&lt;span class="nc"&gt;.classIdentifier&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;span class="c"&gt;/*property: value;*/&lt;/span&gt;
  &lt;span class="nl"&gt;display&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nb"&gt;block&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="c"&gt;/* keyword value */&lt;/span&gt;
  &lt;span class="nl"&gt;font-size&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;12pt&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="c"&gt;/* integer + unit value */&lt;/span&gt;
  &lt;span class="nl"&gt;color&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;#222&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="c"&gt;/* hex color code */&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;&lt;span id="declaration-block"&gt;Declaration Block&lt;/span&gt;&lt;/strong&gt;: &lt;em&gt;in CSS&lt;/em&gt;, The collection of declarations contained within the CSS Rule brackets (e.g. &lt;code&gt;div { width: 50px; height: 50px; }&lt;/code&gt;).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;span id="delimiter"&gt;Delimiter&lt;/span&gt;&lt;/strong&gt;: A sequence of one or more characters used to specify the boundary between separate / independent regions in plain text or other data streams.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;span id="delimiter-separated-words"&gt;Delimiter-Separated Words&lt;/span&gt;&lt;/strong&gt;: A naming convention for which words are delimited by a nonalphanumeric character, commonly '-' or '_'. This convention has no standard name, though it may be referred to as lisp-case or COBOL-CASE (compare Pascal case), kebab-case, or other variants (snake_case). Of these, kebab-case, dating at least to 2012, has achieved some currency since.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;span id="domain-specific-language"&gt;Domain-Specific Language (also D.S.L. / DSL)&lt;/span&gt;&lt;/strong&gt;: A domain-specific language (DSL) is a computer language specialized to a particular application domain.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;span id="extensible-markup-language"&gt;Extensible Markup Language (also X.M.L. / XML)&lt;/span&gt;&lt;/strong&gt;: In computing, Extensible Markup Language (XML) is a markup language that defines a set of rules for encoding documents in a format that is both human-readable and machine-readable.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://en.wikipedia.org/wiki/XML"&gt;Wikipedia&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The design goals of XML emphasize simplicity, generality, and usability across the Internet.[5] It is a textual data format with strong support via Unicode for different human languages. Although the design of XML focuses on documents, the language is widely used for the representation of arbitrary data structures[6] such as those used in web services.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://en.wikipedia.org/wiki/C_(programming_language)"&gt;Wikipedia&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;is a general-purpose, imperative computer programming language, supporting structured programming, lexical variable scope and recursion, while a static type system prevents many unintended operations. By design, C provides constructs that map efficiently to typical machine instructions, and therefore it has found lasting use in applications that had formerly been coded in assembly language, including operating systems, as well as various application software for computers ranging from supercomputers to embedded systems.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;&lt;span id="expression"&gt;Expression&lt;/span&gt;&lt;/strong&gt;:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="http://php.net/manual/en/language.expressions.php"&gt;Expressions in PHP&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In PHP, almost anything you write is an expression. The simplest yet most accurate way to define an expression is "anything that has a value". The most basic forms of expressions are constants and variables.&lt;/p&gt;


&lt;pre class="highlight plaintext"&gt;&lt;code&gt;$a = 5; // The '$a' identifier is an expression of the '5' integer
&lt;/code&gt;&lt;/pre&gt;


&lt;p&gt;Functions can behave as more complex expressions.&lt;/p&gt;


&lt;pre class="highlight plaintext"&gt;&lt;code&gt;$a = function foo(){ return 5; }
&lt;/code&gt;&lt;/pre&gt;

&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;&lt;span id="factory"&gt;Factory&lt;/span&gt;&lt;/strong&gt;: a function or method for the purpose of returning other objects. An abstraction of a constructor of a class or an abstraction of a prototype of an object.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;span id="frontend"&gt;Frontend (also frontend / front-end / front end / FrontEnd)&lt;/span&gt;&lt;/strong&gt;: &lt;em&gt;about websites &amp;amp; internet&lt;/em&gt;, refers to the internet browser program which users use to access content on the internet. &lt;em&gt;See User Agent&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;span id="functional-oriented-programming"&gt;Functional Oriented Programming (also Functional Programming / F.o.P.)&lt;/span&gt;&lt;/strong&gt;: A coding philosophy primarily defined by functions being independent and not reaching to constructs outside their own scope. Functions should be reduced to individual tasks and individual executions if possible. Functions should be designed to do one thing very well, and if necessary, recursively.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;span id="general-purpose-language"&gt;General-Purpose Language (alse G.S.L. / GSL)&lt;/span&gt;&lt;/strong&gt;: a computer language that is broadly applicable across application domains, and lacks specialized features for a particular domain.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://en.wikipedia.org/wiki/General-purpose_language"&gt;Wikipedia&lt;/a&gt;&lt;br&gt;
A general-purpose language[citation needed] is a computer language that is broadly applicable across application domains, and lacks specialized features for a particular domain. This is in contrast to a domain-specific language (DSL), which is specialized to a particular application domain. The line is not always sharp, as a language may have specialized features for a particular domain but be applicable more broadly, or conversely may in principle be capable of broad application but in practice used primarily for a specific domain.&lt;/p&gt;

&lt;p&gt;General-purpose languages are further subdivided by the kind of language, and include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;General-purpose markup languages, such as XML&lt;/li&gt;
&lt;li&gt;General-purpose modeling language such as the Unified Modeling Language (&amp;gt;UML)&lt;/li&gt;
&lt;li&gt;General-purpose programming languages, such as C, Java or Python&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;&lt;span id="hungarian-notation"&gt;Hungarian Notation&lt;/span&gt;&lt;/strong&gt;: In computer programming, an identifier naming convention in which the name of a variable or function indicates its intention or kind, and in some dialects its type.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://en.wikipedia.org/wiki/Hungarian_notation"&gt;Wikipedia&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In Hungarian notation, a variable name starts with a group of lower-case letters which are mnemonics for the type or purpose of that variable, followed by whatever name the programmer has chosen; this last part is sometimes distinguished as the given name. The first character of the given name can be capitalized to separate it from the type indicators (see also CamelCase). Otherwise the case of this character denotes scope.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;&lt;span id="imperative-programming"&gt;Imperative Programming&lt;/span&gt;&lt;/strong&gt;: In computer science, imperative programming is a programming paradigm that uses statements that change a program's state. In much the same way that the imperative mood in natural languages expresses commands, an imperative program consists of commands for the computer to perform. Imperative programming focuses on describing how a program operates.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;span id="letter-case-separated-words"&gt;Letter-Case-Separated Words&lt;/span&gt;&lt;/strong&gt;: A naming convention for which medial capitalization indicates word boundaries. &lt;em&gt;See Pascal Case&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;span id="naming-convention"&gt;Naming Convention&lt;/span&gt;&lt;/strong&gt;: An agreed upon manner in which things be named, and the way in which that name is written. &lt;em&gt;See Letter-Case-Separated Words&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;span id="pascal-case"&gt;Pascal Case&lt;/span&gt;&lt;/strong&gt;: A naming convention for which medial capitalization indicates boundaries between words in an identifier by the alternating capitalization of the first letter of each word. Following characters in a word are also all lowercased. e.g. "two words" = "TwoWords". Commonly used in Pascal, Java, C#, and Visual Basic. Treament of acronyms in identifiers (e.g. the "XML" and "HTTP" in XMLHttpRequest) varies. Some dictate that they be lowercased (e.g. XmlHttpRequest) to ease typing and readability, whereas others leave them uppercased.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Polyfill&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;(RemySharp)[&lt;a href="https://remysharp.com/2010/10/08/what-is-a-polyfill"&gt;https://remysharp.com/2010/10/08/what-is-a-polyfill&lt;/a&gt;]&lt;br&gt;
A polyfill, or polyfiller, is a piece of code (or plugin) that provides the technology that you, the developer, expect the browser to provide natively. Flattening the API landscape if you wil&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Prime Numbers&lt;/strong&gt;: A Prime Number can be divided evenly only by 1, or itself. It must be a whole number greater than 1.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;5 can only be divided evenly by 1 or 5, so it is a prime number. But 6 can be divided evenly by 1, 2, 3 and 6 so it is NOT a prime number (it is a composite number).&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Properties&lt;/strong&gt;: &lt;em&gt;in CSS&lt;/em&gt;: Human-readable identifiers that indicate which stylistic features (e.g. font, width, background color) to assign a value for.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Recursion&lt;/strong&gt;:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;(Wikipedia)[&lt;a href="https://en.wikipedia.org/wiki/Recursion_(computer_science)"&gt;https://en.wikipedia.org/wiki/Recursion_(computer_science)&lt;/a&gt;]&lt;br&gt;
Recursion in computer science is a method where the solution to a problem depends on solutions to smaller instances of the same problem (as opposed to iteration).[1] The approach can be applied to many types of problems, and recursion is one of the central ideas of computer science.[2]&lt;/p&gt;

&lt;p&gt;"The power of recursion evidently lies in the possibility of defining an infinite set of objects by a finite statement. In the same manner, an infinite number of computations can be described by a finite recursive program, even if this program contains no explicit repetitions."[3]&lt;/p&gt;

&lt;p&gt;Most computer programming languages support recursion by allowing a function to call itself within the program text. Some functional programming languages do not define any looping constructs but rely solely on recursion to repeatedly call code. Computability theory proves that these recursive-only languages are Turing complete; they are as computationally powerful as Turing complete imperative languages, meaning they can solve the same kinds of problems as imperative languages even without iterative control structures such as “while” and “for”.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Relational Database Management System (also RDMS)&lt;/strong&gt;:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://en.wikipedia.org/wiki/Relational_database_management_system"&gt;Wikipedia&lt;/a&gt;&lt;br&gt;
A relational database management system (RDBMS) is a database management system (DBMS) that is based on the relational model invented by Edgar F. Codd, of IBM's San Jose Research Laboratory. Most databases in widespread use are based on the relational database model.&lt;/p&gt;

&lt;p&gt;RDBMSs have been a common choice for the storage of information in new databases used for financial records, manufacturing and logistical information, personnel data, and other applications since the 1980s. Relational databases have often replaced legacy hierarchical databases and network databases because they are easier to understand and use.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Selectors&lt;/strong&gt;: &lt;em&gt;in CSS&lt;/em&gt;: the part of a CSS rule indicating which elements the declarations apply to. May be a class (&lt;code&gt;.class-name&lt;/code&gt;), id (&lt;code&gt;#id-name&lt;/code&gt;), or element (&lt;code&gt;h1&lt;/code&gt;). Selectors occur before &lt;code&gt;{}&lt;/code&gt; written as &lt;code&gt;.class-name {}&lt;/code&gt;. Multiple selectors may share a single declaration block by being delimited with a comma, written as &lt;code&gt;.class-name, #id-name, h1 {}&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Structured Programming&lt;/strong&gt;: Structured programming is a programming paradigm aimed at improving the clarity, quality, and development time of a computer program by making extensive&lt;br&gt;
 use of subroutines, block structures, for and while loops—in contrast to using simple tests and jumps such as the go to statement, which could lead to "spaghetti code" that is difficult to follow and maintain.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Variable&lt;/strong&gt;: An identifier which an expression is assigned to.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Identifier&lt;/strong&gt;: The name of a variable. Where a string is a data type of text denoted by quotations, the identifier is text treated as a variable to which data is assigned.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;M.E.A.N. (also MEAN or MEAN Stack)&lt;/strong&gt;: A collection of complimentary technologies which support a development stack to deliver software services.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;M: MongoDB&lt;/li&gt;
&lt;li&gt;E: ExpressJS&lt;/li&gt;
&lt;li&gt;A: AngularJS&lt;/li&gt;
&lt;li&gt;N: NodeJS&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;L.A.M.P. (also LAMP or LAMP Stack)&lt;/strong&gt;: A collection of complimentary technologies which support a development stack to deliver software services.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;L: Linux&lt;/li&gt;
&lt;li&gt;A: Apache&lt;/li&gt;
&lt;li&gt;M: MySQL&lt;/li&gt;
&lt;li&gt;P: PHP&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;W.A.M.P. (also WAMP or WAMP Stack)&lt;/strong&gt;: A collection of complimentary technologies which support a development stack to deliver software services.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;W: Windows&lt;/li&gt;
&lt;li&gt;A: Apache&lt;/li&gt;
&lt;li&gt;M: MySQL&lt;/li&gt;
&lt;li&gt;P: PHP&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Scalar Value&lt;/strong&gt;: A single unit of data Eg: A number, a chunk of text.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="http://php.net/manual/en/language.expressions.php"&gt;Scalar Values in PHP&lt;/a&gt;&lt;br&gt;
PHP supports four scalar value types: integer values, floating point (float) values, string values and boolean values (scalar values are values that you can't 'break' into smaller pieces, unlike arrays, for instance). PHP also supports two composite (non-scalar) types: arrays and objects. Each of these value types can be assigned into variables or returned from functions.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Scripted Query Language (SQL)&lt;/strong&gt;: A scripted query language (SQL) is a domain-specific language used in programming and designed for managing data held in a relational database management system (RDBMS), or for stream processing in a relational data stream management system (RDSMS). Introduces the concept of accessing many records with one single command; and eliminates the need to specify how to reach a record, e.g. with or without an index.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Latent Typing&lt;/strong&gt;:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://en.wikipedia.org/wiki/Latent_typing"&gt;Wikipedia&lt;/a&gt;&lt;br&gt;
In computer programming, latent typing refers to a type system where types are associated with values and not variables.[1] An example latently typed language is Scheme. This typically requires run-time type checking and so is commonly used synonymously with dynamic typing.[2]&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Statement&lt;/strong&gt;: a statement is a syntactic unit (referring to the keywords, identifiers, or operators within the syntax of the language used to construct the statement) of an imperative programming language that expresses some action to be carried out.[1] A program written in such a language is formed by a sequence of one or more statements. A statement may have internal components (e.g., expressions).&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://en.wikipedia.org/wiki/Statement_(computer_science)#Syntax"&gt;Wikipedia: Syntax&lt;/a&gt;&lt;br&gt;
The appearance of statements shapes the look of programs. Programming languages are characterized by the type of statements they use (e.g. the curly brace language family). Many statements are introduced by identifiers like if, while or repeat. Often statement keywords are reserved such that they cannot be used as names of variables or functions. Imperative languages typically use special syntax for each statement, which looks quite different from function calls. Common methods to describe the syntax of statements are Backus–Naur form and syntax diagrams.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://en.wikipedia.org/wiki/Statement_(computer_science)#Expressions"&gt;Wikipedia: Expressions&lt;/a&gt;&lt;br&gt;
In most languages, statements contrast with expressions in that statements do not return results and are executed solely for their side effects, while expressions always return a result and often do not have side effects at all.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Strongly/Weakly-Typed Programming Language&lt;/strong&gt;:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://en.wikipedia.org/wiki/Strong_and_weak_typing"&gt;Wikipedia&lt;/a&gt;&lt;br&gt;
In computer programming, programming languages are often colloquially classified as to whether the language's type system makes it strongly typed or weakly typed (loosely typed). These terms do not have a precise definition, but in general, a strongly typed language has stricter typing rules and is more likely to generate an error or refuse to compile if the argument passed to a function does not closely match the expected type. On the other hand, a weakly typed language has looser typing rules and may produce unpredictable results or may perform implicit type conversion.[1] A different but related concept is latent typing.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Compiler&lt;/strong&gt;: A compiler is computer software that transforms computer code written in one programming language (the source language) into another programming language (the target language).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;UI (User Interface)&lt;/strong&gt;:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;UX (User Experience)&lt;/strong&gt;:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Singleton&lt;/strong&gt;: software design pattern that restricts the instantiation of a class to one object.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Unit Test&lt;/strong&gt;: Tests written to match results from code against expected results. When running the test script, if requested result does not match expected results, errors are thrown.&lt;/p&gt;

&lt;p&gt;An example of a delimiter is the comma character, which acts as a field delimiter in a sequence of comma-separated values. Another example of a delimiter is the time gap used to separate letters and words in the transmission of Morse code.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Pagination&lt;/strong&gt;: the sequence of numbers assigned to pages in a book or periodical.&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>learning</category>
      <category>beginners</category>
    </item>
    <item>
      <title>LESS Really is More</title>
      <dc:creator>Michael</dc:creator>
      <pubDate>Sun, 20 Jan 2019 08:12:42 +0000</pubDate>
      <link>https://dev.to/emgodev/less-really-is-more-1250</link>
      <guid>https://dev.to/emgodev/less-really-is-more-1250</guid>
      <description>&lt;p&gt;The other day I got around to using LESS which, admittedly, I had no idea was not some component of SASS/SCSS. I am now loving it. If you've used SASS maybe you know why? Or maybe I have no idea how to use SASS?&lt;/p&gt;

&lt;h1&gt;
  
  
  A few things about SASS
&lt;/h1&gt;

&lt;p&gt;For example SASS uses keywords heavily, and odd symbols, that do not mesh well with the front-end syntax.&lt;/p&gt;

&lt;p&gt;A variable is prefixed with a '$', other than that it is similar to LESS and JS.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight scss"&gt;&lt;code&gt;&lt;span class="nv"&gt;$text-color&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mh"&gt;#06f&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If you want to share the declarations of another ruleset (class, element, id) you use the 'extend' keyword or a mixin which is like a function; Mixins use the 'include' keyword.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight scss"&gt;&lt;code&gt;&lt;span class="k"&gt;@mixin&lt;/span&gt; &lt;span class="nf"&gt;easyFlexContainer&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt; &lt;span class="nv"&gt;$type&lt;/span&gt;&lt;span class="o"&gt;,&lt;/span&gt; &lt;span class="nv"&gt;$flow&lt;/span&gt;&lt;span class="o"&gt;,&lt;/span&gt; &lt;span class="nv"&gt;$justify&lt;/span&gt;&lt;span class="o"&gt;,&lt;/span&gt; &lt;span class="nv"&gt;$items&lt;/span&gt;&lt;span class="o"&gt;,&lt;/span&gt; &lt;span class="nv"&gt;$content&lt;/span&gt; &lt;span class="p"&gt;){&lt;/span&gt;
  &lt;span class="nl"&gt;display&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nv"&gt;$type&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;flex-flow&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nv"&gt;$flow&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;justify-content&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nv"&gt;$justify&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;align-items&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nv"&gt;$items&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;align-content&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nv"&gt;$content&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;

&lt;span class="nc"&gt;.ulIsAnnoyingNavElement&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nl"&gt;padding&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;0em&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;margin&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;0em&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;

&lt;span class="nc"&gt;.main-nav&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nt"&gt;ul&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="nt"&gt;extend&lt;/span&gt; &lt;span class="nc"&gt;.ulIsAnnoyingNavElement&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

    &lt;span class="nt"&gt;include&lt;/span&gt; &lt;span class="nt"&gt;easyFlexContainer&lt;/span&gt;&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="nt"&gt;flex&lt;/span&gt;&lt;span class="o"&gt;,&lt;/span&gt; &lt;span class="nt"&gt;row&lt;/span&gt; &lt;span class="nt"&gt;wrap&lt;/span&gt;&lt;span class="o"&gt;,&lt;/span&gt; &lt;span class="nt"&gt;flex-start&lt;/span&gt;&lt;span class="o"&gt;,&lt;/span&gt; &lt;span class="nt"&gt;center&lt;/span&gt;&lt;span class="o"&gt;,&lt;/span&gt; &lt;span class="nt"&gt;flex-start&lt;/span&gt;&lt;span class="o"&gt;)&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Don't get me wrong, this is all fine and you can get used to it, but a simple comparison will hopefully explain why I think LESS is so much better.&lt;/p&gt;

&lt;h1&gt;
  
  
  How is LESS awesome (in my opinion)?
&lt;/h1&gt;

&lt;p&gt;Only looking at a few different components of SASS should give you a general idea of what to expect. Here is how LESS differs. LESS boils a lot of prefixes down to two things, LESS prefixes use '@', and less constructs are functions.&lt;/p&gt;

&lt;p&gt;What I mean by less 'constructs' are 'functions' is that you can think of things in LESS as literally usable functions, no need for magic keywords, just use it!&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;&lt;span class="k"&gt;@text-color&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="no"&gt;pink&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="nc"&gt;.makeItPretty&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nl"&gt;padding&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;0em&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;margin&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;0em&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;

&lt;span class="nc"&gt;.easyFlexContainer&lt;/span&gt;&lt;span class="o"&gt;(&lt;/span&gt; &lt;span class="k"&gt;@type&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="err"&gt;@&lt;/span&gt;&lt;span class="n"&gt;flow&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="err"&gt;@&lt;/span&gt;&lt;span class="nb"&gt;justify&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="err"&gt;@&lt;/span&gt;&lt;span class="n"&gt;items&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="err"&gt;@&lt;/span&gt;&lt;span class="n"&gt;content&lt;/span&gt; &lt;span class="p"&gt;){&lt;/span&gt;
  &lt;span class="nl"&gt;display&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="err"&gt;@&lt;/span&gt;&lt;span class="n"&gt;type&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;flex-flow&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="err"&gt;@&lt;/span&gt;&lt;span class="n"&gt;flow&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;justify-content&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="err"&gt;@&lt;/span&gt;&lt;span class="nb"&gt;justify&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;align-items&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="err"&gt;@&lt;/span&gt;&lt;span class="n"&gt;items&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;align-content&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="err"&gt;@&lt;/span&gt;&lt;span class="n"&gt;content&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;

&lt;span class="c"&gt;/* Client Ruleset */&lt;/span&gt;
&lt;span class="nc"&gt;.main-nav&lt;/span&gt;
  &lt;span class="nt"&gt;ul&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="err"&gt;.makeItPretty();&lt;/span&gt;
    &lt;span class="err"&gt;.easyFlexContainer(flex,&lt;/span&gt; &lt;span class="err"&gt;row&lt;/span&gt; &lt;span class="err"&gt;wrap,&lt;/span&gt; &lt;span class="err"&gt;flex-start,&lt;/span&gt; &lt;span class="err"&gt;center,&lt;/span&gt; &lt;span class="err"&gt;flex-start);&lt;/span&gt;
  &lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="err"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Yup that's all I wanted to share. LESS is pretty amazing, treating classes as functions and mixins, or when not using '()', just classes!&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>css</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Middle of the Night</title>
      <dc:creator>Michael</dc:creator>
      <pubDate>Sat, 12 Jan 2019 10:42:47 +0000</pubDate>
      <link>https://dev.to/emgodev/middle-of-the-night-4el1</link>
      <guid>https://dev.to/emgodev/middle-of-the-night-4el1</guid>
      <description>&lt;p&gt;So I woke up in the middle of sleeping because, well I just got tired of sleeping (yes tired of being tired) and I really wanted to do something. I decided to hop on my computer, hopeing this bug that has been bothering me does not continue (it does...). The computer resumes from sleep/suspension/hibernation with a black screen and mouse cursor. Restarting the computer appears to be the only solution, which is fine I suppose as I have made it a habit to save everything due to this problem. After giving up looking for a fix I'm really just tired of technical bugs like these and I'm half-convinced it's Ubuntus' fault. Knowing I should expand my horizon to other distros I begin researching them.&lt;/p&gt;

&lt;p&gt;Shortly after beginning my search my option are mainly Arch, Mint, or something obscure like Debian. I'm thinking if I'm starting fresh I want to challenge myself more moving closing to those dseveloper roots, plush a lightweight system is a plus; As if I wasn't already dealing with enough technical issues. I went to '/media' to my drives to find out where I can backup my stuff to, but I wanted to know how much space I had left? I've been making it a habit to avoid using any graphical display, but I can't ever remember that command (it's &lt;code&gt;df&lt;/code&gt;).&lt;/p&gt;

&lt;p&gt;After finding out how much space I have I think about how nice it would be if I had finished that list of common commands. I have already spent a good many hours a month or two ago writing some sweet aliases. I even started saving my own config files in a separate folder that I've been switching between computers. This has come in handy with my key-binding with EMACS as well. I've just been copying the &lt;em&gt;master&lt;/em&gt; config into whatever directory it belongs to update them.&lt;/p&gt;

&lt;p&gt;Anyway long story short, I didn't feel a file was the solution, I mean I've half-heartedly started such files while I've been learning and they never go anywhere. A half-finished excel spreadsheet that is more complicated than it needs to be, a half-finished plain text document that has no proper markup/formatting. I wanted my own manual page, or at least a command; I know how to write bash scripts, but something that I can use in the very terminal I am using. That would be handy!&lt;/p&gt;

&lt;p&gt;I found a great and short tutorial on &lt;a href="//linuxcommand.org"&gt;linuxcommand.org&lt;/a&gt; that explained how commands are bash scripts and they are read by the computer within certain directories saved in a &lt;code&gt;$PATH&lt;/code&gt; super-global like identifier. It contains a single string of directories it searches in, delimited by a colon. Standard practice seems to indicate users put personal scripts under &lt;code&gt;/home/user/bin&lt;/code&gt;, so I did that and well, I got my first command working!&lt;/p&gt;

&lt;p&gt;Now I'm hooked, the other articles discuss using functions instead of aliases which of course can both be utilized in the bash script command. Then it uses the example of generating an HTML page - I have been using EMACS Dired and abbreviations more but still generating an entire HTML boilerplate directory from a terminal function! SIGN ME UP! - for an application and using a &lt;em&gt;here script/document&lt;/em&gt; which has something to do with I/O redirection and it's used with the &lt;code&gt;cat&lt;/code&gt; command instead of &lt;code&gt;echo&lt;/code&gt; which looks like we can pipe it to some make file command; And the next article looks like it's going to talk about variables which is sweet!&lt;/p&gt;

&lt;p&gt;And just now I thought, this is all kinda crazy, I should write about it. Finishing this at 5:20 a.m., this is what I do half-way through my sleep in the middle of the night on a Saturday. Thanks for reading!&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>learning</category>
      <category>linux</category>
      <category>terminal</category>
    </item>
  </channel>
</rss>
