<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Freddy Bihozagara's Blog]]></title><description><![CDATA[Freddy Bihozagara is a React Developer based in Edmonton AB, building useful things.]]></description><link>https://freddybihozagara.netlify.app</link><generator>GatsbyJS</generator><lastBuildDate>Sun, 07 Feb 2021 22:24:27 GMT</lastBuildDate><item><title><![CDATA[WSB/reddit, GME, AMC, Robinhood, key takeaways]]></title><description><![CDATA[If you haven’t noticed, the Month of January was all about Gamestop (GME) and the high volatility in the financial markets. so what are the…]]></description><link>https://freddybihozagara.netlify.app/wsb-stock-markets/</link><guid isPermaLink="false">https://freddybihozagara.netlify.app/wsb-stock-markets/</guid><pubDate>Mon, 01 Feb 2021 22:12:03 GMT</pubDate><content:encoded>&lt;p&gt;If you haven’t noticed, the Month of January was all about Gamestop (GME) and the high volatility in the financial markets. so what are the key takeaways for investors..&lt;/p&gt;
&lt;p&gt;Number 1.
The zero commission trading platforms business model is built on selling its users data (order flows) to its clients the hedge funds.&lt;/p&gt;
&lt;p&gt;Number 2.
The high volatility in the financial markets is orchestrated. For Example, when WallStreetBets (WSB) drove up share prices of Gamestop (GME), AMC and others, there were winners and losers. However, due to the nature of the business model of trading platforms such as Robinhood, it became apparent very soon that hedge funds such as Citadel and others were not going to allow the free market to be free anymore, as they watched Melvin Capital go down, and had to be rescued with billions of dollars.&lt;/p&gt;
&lt;p&gt;They forced Robinhood to put limits on how many shares of Gamestop (GME) and AMC could be bought; at one point they totally removed the ability for its users to buy, and only allowed them to sell, which is pure manipulation. The only reason they would do that is to force the share price of Gamestop (GME) and AMC to go down, thereby allowing short sellers, i.e hedge funds that had heavily shorted Gamestop (GME) and AMC to close their positions and recoup some of their losses, while millions of small investors lost their capital, because they couldn’t buy any shares or a very limited amount (1 or 2), but were only allowed to sell those same shares in an unlimited amount, which is pure manipulation of the laws of the free market.&lt;/p&gt;
&lt;p&gt;Number 3.
The regulators or SEC allowed hedge funds to manipulate the market in this manner partly because of the fear that a cascade effect of hedge funds going under would be bad for the financial markets and the economy.&lt;/p&gt;
&lt;p&gt;Conclusion: In times like these, where hedge funds are allowed to force zero commission trading platforms such as Robinhood to limit the number of shares that can be bought by its users, based on order flow data that they receive from these very same platforms, because not doing so would hurt their bottom line, as we have just seen, WallStreetBets (WSB) just proved to us, to the entire world, that the financial markets are not immune to manipulation. It also proved that if the market, the financial markets were allowed to be free and fair, to function as they are supposed to function, even the little people can be winners.&lt;/p&gt;
&lt;p&gt;Now you could be asking, but how is the everyday Joe supposed to hedge against these hedge funds that are allowed to intervene and manipulate the market by stopping people from trading and the regulator does nothing about it. Especially, in times like these, where order flow data, can be used in High Frequency Trading, or HFT algorithms that make millions of transactions per second, based on upward and downward momentum in the market.&lt;/p&gt;
&lt;p&gt;One way for the everyday Joe, to hedge, is to diversify their portfolio by picking the right funds, instead of picking individual stocks. secondly, if picking individual stocks, to have long positions in those stocks whose companies have strong fundamentals.&lt;/p&gt;
&lt;p&gt;Currently as we speak, no one is immune to financial markets manipulation, even options trading is not immune. In fact it doesn’t matter what bets one makes, in the end, order flow data gives an advantage to whoever is on the other side. Just for illustration, suppose an investor buys a put option or call option on TSLA for a maturity date X. if in fact a hedge fund knows what the bets are in advance, they can pick and choose winners and losers in the market, as they have billions of dollars on hand to invest and can drive a stock price higher or lower if they choose so, if they happen to have an agreement with other hedge funds to do the same on date X.&lt;/p&gt;
&lt;p&gt;The good news in all of this, is that, in one month, the entire world just had a crash course in financial markets 101.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Disclaimer: All views expressed in this article are my own and do not constitute an investment advice.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Source: &lt;a href=&quot;https://freddybihozagara.netlify.app/&quot;&gt;https://freddybihozagara.netlify.app/&lt;/a&gt;&lt;/p&gt;</content:encoded></item><item><title><![CDATA[The range() Function]]></title><description><![CDATA[If you do need to iterate over a sequence of numbers, the built-in python function range() comes in handy. It generates arithmetic…]]></description><link>https://freddybihozagara.netlify.app/the_range_function/</link><guid isPermaLink="false">https://freddybihozagara.netlify.app/the_range_function/</guid><pubDate>Sun, 10 Jan 2021 22:12:03 GMT</pubDate><content:encoded>&lt;p&gt;If you do need to iterate over a sequence of numbers, the built-in python function range() comes in handy. It generates arithmetic progressions:&lt;/p&gt;
&lt;div class=&quot;gatsby-highlight&quot; data-language=&quot;text&quot;&gt;&lt;pre class=&quot;language-text&quot;&gt;&lt;code class=&quot;language-text&quot;&gt;&amp;gt;&amp;gt;&amp;gt; for i in range(5):
...     print(i)
...
0
1
2
3
4&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;div class=&quot;gatsby-highlight&quot; data-language=&quot;text&quot;&gt;&lt;pre class=&quot;language-text&quot;&gt;&lt;code class=&quot;language-text&quot;&gt;range(5, 10)
   5, 6, 7, 8, 9

range(0, 10, 3)
   0, 3, 6, 9

range(-10, -100, -30)
  -10, -40, -70&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;div class=&quot;gatsby-highlight&quot; data-language=&quot;text&quot;&gt;&lt;pre class=&quot;language-text&quot;&gt;&lt;code class=&quot;language-text&quot;&gt;&amp;gt;&amp;gt;&amp;gt; a = [&amp;#39;100&amp;#39;, &amp;#39;200&amp;#39;, &amp;#39;30000&amp;#39;, &amp;#39;500000&amp;#39;, &amp;#39;1000000&amp;#39;]
&amp;gt;&amp;gt;&amp;gt; for i in range(len(a)):
...     print(i, a[i])
...
0 100
1 200
2 30000
3 500000
4 1000000&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;div class=&quot;gatsby-highlight&quot; data-language=&quot;text&quot;&gt;&lt;pre class=&quot;language-text&quot;&gt;&lt;code class=&quot;language-text&quot;&gt;&amp;gt;&amp;gt;&amp;gt; sum(range(4))  # 0 + 1 + 2 + 3
6&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;div class=&quot;gatsby-highlight&quot; data-language=&quot;text&quot;&gt;&lt;pre class=&quot;language-text&quot;&gt;&lt;code class=&quot;language-text&quot;&gt;&amp;gt;&amp;gt;&amp;gt; list(range(4))
[0, 1, 2, 3]&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;Source: &lt;a href=&quot;https://www.python.org/&quot;&gt;https://www.python.org/&lt;/a&gt;&lt;/p&gt;</content:encoded></item><item><title><![CDATA[Artificial Intelligence (AI)]]></title><description><![CDATA[Artificial intelligence (AI), is intelligence demonstrated by machines, unlike the natural intelligence displayed by humans, which involves…]]></description><link>https://freddybihozagara.netlify.app/wiki_ai/</link><guid isPermaLink="false">https://freddybihozagara.netlify.app/wiki_ai/</guid><pubDate>Wed, 06 Jan 2021 22:12:03 GMT</pubDate><content:encoded>&lt;p&gt;Artificial intelligence (AI), is intelligence demonstrated by machines, unlike the natural intelligence displayed by humans, which involves consciousness and emotions. The distinction between the former and the latter categories is often revealed by the acronym chosen. ‘Strong’ AI is usually labelled as AGI (Artificial General Intelligence) while attempts to emulate ‘natural’ intelligence have been called ABI (Artificial Biological Intelligence).&lt;/p&gt;
&lt;p&gt;Leading AI textbooks define the field as the study of “intelligent agents”: any device that perceives its environment and takes actions that maximize its chance of successfully achieving its goals. Colloquially, the term “artificial intelligence” is often used to describe machines (or computers) that mimic “cognitive” functions that humans associate with the human mind, such as “learning” and “problem solving”.&lt;/p&gt;
&lt;p&gt;As machines become increasingly capable, tasks considered to require “intelligence” are often removed from the definition of AI, a phenomenon known as the AI effect.[5] A quip in Tesler’s Theorem says “AI is whatever hasn’t been done yet.” For instance, optical character recognition is frequently excluded from things considered to be AI, having become a routine technology.&lt;/p&gt;
&lt;p&gt;Modern machine capabilities generally classified as AI include successfully understanding human speech, competing at the highest level in strategic game systems (such as chess and Go), autonomously operating cars, intelligent routing in content delivery networks, and military simulations, etc.&lt;/p&gt;
&lt;p&gt;After AlphaGo successfully defeated a professional Go player in 2015, artificial intelligence once again attracted widespread global attention. For most of its history, AI research has been divided into sub-fields that often fail to communicate with each other.&lt;/p&gt;
&lt;p&gt;These sub-fields are based on technical considerations, such as particular goals (e.g. “robotics” or “machine learning”), the use of particular tools (“logic” or artificial neural networks), or deep philosophical differences. Sub-fields have also been based on social factors (particular institutions or the work of particular researchers).&lt;/p&gt;
&lt;p&gt;The traditional problems (or goals) of AI research include reasoning, knowledge representation, planning, learning, natural language processing, perception and the ability to move and manipulate objects. General intelligence is among the field’s long-term goals. Approaches include statistical methods, computational intelligence, and traditional symbolic AI.&lt;/p&gt;
&lt;p&gt;Many tools are used in AI, including versions of search and mathematical optimization, artificial neural networks, and methods based on statistics, probability and economics. The AI field draws upon computer science, information engineering, mathematics, psychology, linguistics, philosophy, and many other fields.&lt;/p&gt;
&lt;p&gt;Article Source: &lt;a href=&quot;https://en.wikipedia.org/wiki/Artificial_intelligence&quot;&gt;https://en.wikipedia.org/&lt;/a&gt;&lt;/p&gt;</content:encoded></item><item><title><![CDATA[Desktop launcher]]></title><description><![CDATA[Syntax Example:
step 1. Open an empty file step 2. write your specs as follows Version: App version,
Name: App name,
Comment: describes app…]]></description><link>https://freddybihozagara.netlify.app/app-launcher/</link><guid isPermaLink="false">https://freddybihozagara.netlify.app/app-launcher/</guid><pubDate>Sat, 12 Dec 2020 22:12:03 GMT</pubDate><content:encoded>&lt;p&gt;Syntax&lt;/p&gt;
&lt;p&gt;Example:
&lt;strong&gt;step 1.&lt;/strong&gt; Open an empty file&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;step 2.&lt;/strong&gt; write your specs as follows&lt;/p&gt;
&lt;div class=&quot;gatsby-highlight&quot; data-language=&quot;text&quot;&gt;&lt;pre class=&quot;language-text&quot;&gt;&lt;code class=&quot;language-text&quot;&gt;[Desktop Entry]
Version=1.0
Name=name
Comment=no comment
Exec=command
Icon=/path/to/icon
Terminal=true
Type=Application
Categories=Application&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;Version:&lt;/strong&gt; App version,
&lt;strong&gt;Name:&lt;/strong&gt; App name,
&lt;strong&gt;Comment:&lt;/strong&gt; describes app,
&lt;strong&gt;Exec:&lt;/strong&gt; command,
&lt;strong&gt;Icon:&lt;/strong&gt; path to icon,
&lt;strong&gt;Terminal:&lt;/strong&gt; true or false,
&lt;strong&gt;Type:&lt;/strong&gt; Application,
&lt;strong&gt;Categories:&lt;/strong&gt; description&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;step 3.&lt;/strong&gt; save the file with a &lt;strong&gt;.desktop&lt;/strong&gt; extension, on the desktop&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;step 4.&lt;/strong&gt; make the file executable&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;step 5.&lt;/strong&gt; once done, right click on the file and select “Allow launching”&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;step 6.&lt;/strong&gt; double click on the .desktop file, which should
start your script!&lt;/p&gt;
&lt;p&gt;Let me know, if you have any questions!&lt;/p&gt;</content:encoded></item><item><title><![CDATA[NextJs]]></title><description><![CDATA[To scaffold a NextJs app, Type: npx create-next-app or Manual setup, Type: Install next, react and react-dom in your project folder: Open…]]></description><link>https://freddybihozagara.netlify.app/nextjs/</link><guid isPermaLink="false">https://freddybihozagara.netlify.app/nextjs/</guid><pubDate>Sat, 12 Dec 2020 22:12:03 GMT</pubDate><content:encoded>&lt;p&gt;To scaffold a NextJs app, Type:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;npx create-next-app&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;or&lt;/p&gt;
&lt;p&gt;Manual setup, Type:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Install next, react and react-dom&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;in your project folder:&lt;/p&gt;
&lt;p&gt;Open &lt;strong&gt;package.json&lt;/strong&gt; and add the following scripts:&lt;/p&gt;
&lt;div class=&quot;gatsby-highlight&quot; data-language=&quot;text&quot;&gt;&lt;pre class=&quot;language-text&quot;&gt;&lt;code class=&quot;language-text&quot;&gt;&amp;quot;scripts&amp;quot;: {
  &amp;quot;dev&amp;quot;: &amp;quot;next dev&amp;quot;,
  &amp;quot;build&amp;quot;: &amp;quot;next build&amp;quot;,
  &amp;quot;start&amp;quot;: &amp;quot;next start&amp;quot;
}&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;Create a pages directory inside your project.&lt;/p&gt;
&lt;p&gt;Populate &lt;strong&gt;./pages/index.js&lt;/strong&gt; with the following contents:&lt;/p&gt;
&lt;div class=&quot;gatsby-highlight&quot; data-language=&quot;text&quot;&gt;&lt;pre class=&quot;language-text&quot;&gt;&lt;code class=&quot;language-text&quot;&gt;function HomePage() {
  return &amp;lt;div&amp;gt;Welcome to Next.js!&amp;lt;/div&amp;gt;
}

export default HomePage&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;To start developing your application type &lt;strong&gt;npm run dev&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Visit &lt;a href=&quot;http://localhost:3000&quot;&gt;http://localhost:3000&lt;/a&gt; to view your application.&lt;/p&gt;
&lt;p&gt;source: &lt;a href=&quot;https://nextjs.org/&quot;&gt;https://nextjs.org/&lt;/a&gt;&lt;/p&gt;</content:encoded></item><item><title><![CDATA[React Hooks vs class based components]]></title><description><![CDATA[React Hooks are a new addition in React 16.8. They allow the  use of state without writing a class. Example: Class based components require…]]></description><link>https://freddybihozagara.netlify.app/react-hooks/</link><guid isPermaLink="false">https://freddybihozagara.netlify.app/react-hooks/</guid><pubDate>Sat, 05 Dec 2020 22:12:03 GMT</pubDate><content:encoded>&lt;p&gt;React Hooks are a new addition in React 16.8. They allow the &lt;/p&gt;
&lt;p&gt;use of state without writing a class.&lt;/p&gt;
&lt;p&gt;Example:&lt;/p&gt;
&lt;div class=&quot;gatsby-highlight&quot; data-language=&quot;js:&quot;&gt;&lt;pre class=&quot;language-js:&quot;&gt;&lt;code class=&quot;language-js:&quot;&gt;// for example, when updating state, for a counter function, while calling onclick()

import React, { useState } from &amp;#39;react&amp;#39;;

function Counter() {

  const [counter, setCounter] = useState(0);

  return (
    &amp;lt;div&amp;gt;
      &amp;lt;p&amp;gt; {counter} times&amp;lt;/p&amp;gt;
      &amp;lt;button onClick={() =&amp;gt; setCounter(counter + 1)}&amp;gt;
        Press
      &amp;lt;/button&amp;gt;
    &amp;lt;/div&amp;gt;
  );
}&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;Class based components require the use of classes, hence&lt;/p&gt;
&lt;p&gt;they may take more time to write. &lt;/p&gt;
&lt;p&gt;However, it is always good to start with class components.&lt;/p&gt;
&lt;p&gt;As developers we must not forget that we are dealing with&lt;/p&gt;
&lt;p&gt;classes and objects.&lt;/p&gt;
&lt;p&gt;It is always good to err on the side of more OOP than the&lt;/p&gt;
&lt;p&gt;other way.&lt;/p&gt;
&lt;p&gt;With class based components, as soon as we make use of&lt;/p&gt;
&lt;p&gt;a constructor, we know that there is a class that inherits&lt;/p&gt;
&lt;p&gt;from a super class. &lt;/p&gt;
&lt;p&gt;For more on React Hooks: &lt;a href=&quot;https://react-hooks.org/&quot;&gt;https://react-hooks.org/&lt;/a&gt;&lt;/p&gt;</content:encoded></item><item><title><![CDATA[JSX and double brackets]]></title><description><![CDATA[In JavaScript, JSX double brackets {{ foo: bar }} are used  when passing object literals to an element. Example:  JSX is a syntax extension…]]></description><link>https://freddybihozagara.netlify.app/jsx/</link><guid isPermaLink="false">https://freddybihozagara.netlify.app/jsx/</guid><pubDate>Sat, 05 Dec 2020 22:12:03 GMT</pubDate><content:encoded>&lt;p&gt;In JavaScript, JSX double brackets {{ foo: bar }} are used &lt;/p&gt;
&lt;p&gt;when passing object literals to an element.&lt;/p&gt;
&lt;p&gt;Example: &lt;/p&gt;
&lt;div class=&quot;gatsby-highlight&quot; data-language=&quot;js:&quot;&gt;&lt;pre class=&quot;language-js:&quot;&gt;&lt;code class=&quot;language-js:&quot;&gt;// for example, when passing the color attribute to style inline, as an object literal

&amp;lt;div style={{ color: blue}}&amp;gt;&amp;lt;/div&amp;gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;JSX is a syntax extension to JavaScript.&lt;/p&gt;
&lt;p&gt;For more on JSX: &lt;a href=&quot;https://reactjs.org/&quot;&gt;https://reactjs.org/&lt;/a&gt;&lt;/p&gt;</content:encoded></item><item><title><![CDATA[Git-add]]></title><link>https://freddybihozagara.netlify.app/git-add/</link><guid isPermaLink="false">https://freddybihozagara.netlify.app/git-add/</guid><pubDate>Tue, 01 Dec 2020 22:12:03 GMT</pubDate><content:encoded>&lt;div class=&quot;gatsby-highlight&quot; data-language=&quot;text&quot;&gt;&lt;pre class=&quot;language-text&quot;&gt;&lt;code class=&quot;language-text&quot;&gt;git-add - Add file contents to the index

git add [--verbose | -v] [--dry-run | -n] [--force | -f] [--interactive | -i] [--patch | -p]
	  [--edit | -e] [--[no-]all | --[no-]ignore-removal | [--update | -u]]
	  [--intent-to-add | -N] [--refresh] [--ignore-errors] [--ignore-missing] [--renormalize]
	  [--chmod=(+|-)x] [--pathspec-from-file=&amp;lt;file&amp;gt;





source: https://git-scm.com/&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;</content:encoded></item><item><title><![CDATA[JavaScript!]]></title><link>https://freddybihozagara.netlify.app/new-beginnings/</link><guid isPermaLink="false">https://freddybihozagara.netlify.app/new-beginnings/</guid><pubDate>Sat, 28 Nov 2020 23:46:37 GMT</pubDate><content:encoded>&lt;div class=&quot;gatsby-highlight&quot; data-language=&quot;text&quot;&gt;&lt;pre class=&quot;language-text&quot;&gt;&lt;code class=&quot;language-text&quot;&gt;JavaScript, often abbreviated as JS, is a programming language

that conforms to the ECMAScript specification. JavaScript is high-level,

often just-in-time compiled, and multi-paradigm.

It has curly-bracket syntax, dynamic typing, prototype-based object-orientation,


and first-class functions.


As a multi-paradigm language, JavaScript supports event-driven, functional,


and imperative programming styles. It has application programming

interfaces (APIs) for working with text, dates, regular expressions,

standard data structures, and the Document Object Model (DOM). The language

itself does not include any input/output (I/O), such as networking, storage,

or graphics facilities, as the host environment (usually a web browser)

provides those APIs.



[https://en.wikipedia.org/](https://en.wikipedia.org/wiki/JavaScript)&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;</content:encoded></item><item><title><![CDATA[ReactJS]]></title><link>https://freddybihozagara.netlify.app/reactjs/</link><guid isPermaLink="false">https://freddybihozagara.netlify.app/reactjs/</guid><pubDate>Sat, 28 Nov 2020 22:40:32 GMT</pubDate><content:encoded>&lt;div class=&quot;gatsby-highlight&quot; data-language=&quot;text&quot;&gt;&lt;pre class=&quot;language-text&quot;&gt;&lt;code class=&quot;language-text&quot;&gt;React (also known as React.js or ReactJS) is an open-source,

front end, JavaScript library[3] for building user interfaces

or UI components.


It is maintained by Facebook and a community of individual

developers and companies.



React can be used as a base in the development of single-page

or mobile applications.



React usually requires the use of additional libraries for state

management and routing. Redux and React Router are respective

examples of such libraries.



https://en.wikipedia.org/wiki/React_(web_framework)&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;</content:encoded></item><item><title><![CDATA[Git-init]]></title><link>https://freddybihozagara.netlify.app/git-init/</link><guid isPermaLink="false">https://freddybihozagara.netlify.app/git-init/</guid><pubDate>Sat, 28 Nov 2020 22:12:03 GMT</pubDate><content:encoded>&lt;div class=&quot;gatsby-highlight&quot; data-language=&quot;text&quot;&gt;&lt;pre class=&quot;language-text&quot;&gt;&lt;code class=&quot;language-text&quot;&gt;git-init - Create an empty Git repository or reinitialize an existing one

git init [-q | --quiet] [--bare] [--template=&amp;lt;template_directory&amp;gt;]
	  [--separate-git-dir &amp;lt;git dir&amp;gt;] [--object-format=&amp;lt;format&amp;gt;]
	  [-b &amp;lt;branch-name&amp;gt; | --initial-branch=&amp;lt;branch-name&amp;gt;]
	  [--shared[=&amp;lt;permissions&amp;gt;]] [directory]


Git is a distributed version-control system for tracking changes in any set of files, originally designed for coordinating work among developers cooperating on source code.  https://en.wikipedia.org/wiki/Git



git-clone - Clone a repository into a new directory

git clone [--template=&amp;lt;template_directory&amp;gt;]
	  [-l] [-s] [--no-hardlinks] [-q] [-n] [--bare] [--mirror]
	  [-o &amp;lt;name&amp;gt;] [-b &amp;lt;name&amp;gt;] [-u &amp;lt;upload-pack&amp;gt;] [--reference &amp;lt;repository&amp;gt;]
	  [--dissociate] [--separate-git-dir &amp;lt;git dir&amp;gt;]
	  [--depth &amp;lt;depth&amp;gt;] [--[no-]single-branch] [--no-tags]
	  [--recurse-submodules[=&amp;lt;pathspec&amp;gt;]] [--[no-]shallow-submodules]
	  [--[no-]remote-submodules] [--jobs &amp;lt;n&amp;gt;] [--sparse]
	  [--filter=&amp;lt;filter&amp;gt;] [--] &amp;lt;repository&amp;gt;
	  [&amp;lt;directory&amp;gt;]



git-commit - Record changes to the repository

git commit [-a | --interactive | --patch] [-s] [-v] [-u&amp;lt;mode&amp;gt;] [--amend]
	   [--dry-run] [(-c | -C | --fixup | --squash) &amp;lt;commit&amp;gt;]
	   [-F &amp;lt;file&amp;gt; | -m &amp;lt;msg&amp;gt;] [--reset-author] [--allow-empty]
	   [--allow-empty-message] [--no-verify] [-e] [--author=&amp;lt;author&amp;gt;]
	   [--date=&amp;lt;date&amp;gt;] [--cleanup=&amp;lt;mode&amp;gt;] [--[no-]status]
	   [-i | -o] [--pathspec-from-file=&amp;lt;file&amp;gt; [--pathspec-file-nul]]
	   [-S[&amp;lt;keyid&amp;gt;]] [--] [&amp;lt;pathspec&amp;gt;…​]


git-push - Update remote refs along with associated objects

git push [--all | --mirror | --tags] [--follow-tags] [--atomic] [-n | --dry-run] [--receive-pack=&amp;lt;git-receive-pack&amp;gt;]
	   [--repo=&amp;lt;repository&amp;gt;] [-f | --force] [-d | --delete] [--prune] [-v | --verbose]
	   [-u | --set-upstream] [-o &amp;lt;string&amp;gt; | --push-option=&amp;lt;string&amp;gt;]
	   [--[no-]signed|--signed=(true|false|if-asked)]
	   [--force-with-lease[=&amp;lt;refname&amp;gt;[:&amp;lt;expect&amp;gt;]]]
	   [--no-verify] [&amp;lt;repository&amp;gt; [&amp;lt;refspec&amp;gt;…​]]



source: https://git-scm.com/&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;</content:encoded></item><item><title><![CDATA[Hello World]]></title><description><![CDATA[here in this line bold goes here Buy flour and salt Mix together with water Bake  here in this line bold goes here Paragraph: This is an…]]></description><link>https://freddybihozagara.netlify.app/hello-world/</link><guid isPermaLink="false">https://freddybihozagara.netlify.app/hello-world/</guid><pubDate>Sat, 28 Nov 2020 22:12:03 GMT</pubDate><content:encoded>&lt;div class=&quot;gatsby-highlight&quot; data-language=&quot;text&quot;&gt;&lt;pre class=&quot;language-text&quot;&gt;&lt;code class=&quot;language-text&quot;&gt;[View raw (TEST.md)](https://raw.github.com/adamschwartz/github-markdown-kitchen-sink/master/README.md)

This is a paragraph.

    This is a paragraph.

# Header 1

## Header 2

    Header 1
    ========

    Header 2
    --------

# Header 1

## Header 2

### Header 3

#### Header 4

##### Header 5

###### Header 6

    # Header 1
    ## Header 2
    ### Header 3
    #### Header 4
    ##### Header 5
    ###### Header 6

# Header 1

## Header 2

### Header 3

#### Header 4

##### Header 5

###### Header 6

    # Header 1 #
    ## Header 2 ##
    ### Header 3 ###
    #### Header 4 ####
    ##### Header 5 #####
    ###### Header 6 ######

&amp;gt; Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.

    &amp;gt; Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.

&amp;gt; ## This is a header.
&amp;gt;
&amp;gt; 1. This is the first list item.
&amp;gt; 2. This is the second list item.
&amp;gt;
&amp;gt; Here&amp;#39;s some example code:
&amp;gt;
&amp;gt;     Markdown.generate();

    &amp;gt; ## This is a header.
    &amp;gt; 1. This is the first list item.
    &amp;gt; 2. This is the second list item.
    &amp;gt;
    &amp;gt; Here&amp;#39;s some example code:
    &amp;gt;
    &amp;gt;     Markdown.generate();

- Red
- Green
- Blue

* Red
* Green
* Blue

- Red
- Green
- Blue

```markdown
- Red
- Green
- Blue

* Red
* Green
* Blue

- Red
- Green
- Blue&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code class=&quot;language-text&quot;&gt;code goes&lt;/code&gt; here in this line&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;bold&lt;/strong&gt; goes here&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;gatsby-highlight&quot; data-language=&quot;markdown&quot;&gt;&lt;pre class=&quot;language-markdown&quot;&gt;&lt;code class=&quot;language-markdown&quot;&gt;- &lt;span class=&quot;token code keyword&quot;&gt;`code goes`&lt;/span&gt; here in this line
&lt;span class=&quot;token list punctuation&quot;&gt;-&lt;/span&gt; &lt;span class=&quot;token bold&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;**&lt;/span&gt;&lt;span class=&quot;token content&quot;&gt;bold&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;**&lt;/span&gt;&lt;/span&gt; goes here&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;ol&gt;
&lt;li&gt;Buy flour and salt&lt;/li&gt;
&lt;li&gt;Mix together with water&lt;/li&gt;
&lt;li&gt;Bake&lt;/li&gt;
&lt;/ol&gt;
&lt;div class=&quot;gatsby-highlight&quot; data-language=&quot;markdown&quot;&gt;&lt;pre class=&quot;language-markdown&quot;&gt;&lt;code class=&quot;language-markdown&quot;&gt;&lt;span class=&quot;token list punctuation&quot;&gt;1.&lt;/span&gt; Buy flour and salt
&lt;span class=&quot;token list punctuation&quot;&gt;1.&lt;/span&gt; Mix together with water
&lt;span class=&quot;token list punctuation&quot;&gt;1.&lt;/span&gt; Bake&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;code class=&quot;language-text&quot;&gt;code goes&lt;/code&gt; here in this line&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;bold&lt;/strong&gt; goes here&lt;/li&gt;
&lt;/ol&gt;
&lt;div class=&quot;gatsby-highlight&quot; data-language=&quot;markdown&quot;&gt;&lt;pre class=&quot;language-markdown&quot;&gt;&lt;code class=&quot;language-markdown&quot;&gt;1. &lt;span class=&quot;token code keyword&quot;&gt;`code goes`&lt;/span&gt; here in this line
&lt;span class=&quot;token list punctuation&quot;&gt;1.&lt;/span&gt; &lt;span class=&quot;token bold&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;**&lt;/span&gt;&lt;span class=&quot;token content&quot;&gt;bold&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;**&lt;/span&gt;&lt;/span&gt; goes here&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;Paragraph:&lt;/p&gt;
&lt;div class=&quot;gatsby-highlight&quot; data-language=&quot;text&quot;&gt;&lt;pre class=&quot;language-text&quot;&gt;&lt;code class=&quot;language-text&quot;&gt;Code&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;!-- --&gt;
&lt;div class=&quot;gatsby-highlight&quot; data-language=&quot;text&quot;&gt;&lt;pre class=&quot;language-text&quot;&gt;&lt;code class=&quot;language-text&quot;&gt;Paragraph:

    Code&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;hr&gt;
&lt;hr&gt;
&lt;hr&gt;
&lt;hr&gt;
&lt;hr&gt;
&lt;div class=&quot;gatsby-highlight&quot; data-language=&quot;text&quot;&gt;&lt;pre class=&quot;language-text&quot;&gt;&lt;code class=&quot;language-text&quot;&gt;* * *

***

*****

- - -

---------------------------------------&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;This is &lt;a href=&quot;http://example.com&quot; title=&quot;Example&quot;&gt;an example&lt;/a&gt; link.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://example.com&quot;&gt;This link&lt;/a&gt; has no title attr.&lt;/p&gt;
&lt;p&gt;This is &lt;a href=&quot;http://example.com&quot; title=&quot;Optional Title&quot;&gt;an example&lt;/a&gt; reference-style link.&lt;/p&gt;
&lt;div class=&quot;gatsby-highlight&quot; data-language=&quot;text&quot;&gt;&lt;pre class=&quot;language-text&quot;&gt;&lt;code class=&quot;language-text&quot;&gt;This is [an example](http://example.com &amp;quot;Example&amp;quot;) link.

[This link](http://example.com) has no title attr.

This is [an example] [id] reference-style link.

[id]: http://example.com &amp;quot;Optional Title&amp;quot;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;&lt;em&gt;single asterisks&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;single underscores&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;double asterisks&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;double underscores&lt;/strong&gt;&lt;/p&gt;
&lt;div class=&quot;gatsby-highlight&quot; data-language=&quot;text&quot;&gt;&lt;pre class=&quot;language-text&quot;&gt;&lt;code class=&quot;language-text&quot;&gt;*single asterisks*

_single underscores_

**double asterisks**

__double underscores__&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;This paragraph has some &lt;code class=&quot;language-text&quot;&gt;code&lt;/code&gt; in it.&lt;/p&gt;
&lt;div class=&quot;gatsby-highlight&quot; data-language=&quot;text&quot;&gt;&lt;pre class=&quot;language-text&quot;&gt;&lt;code class=&quot;language-text&quot;&gt;This paragraph has some `code` in it.&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;&lt;img src=&quot;https://placehold.it/200x50&quot; alt=&quot;Alt Text&quot; title=&quot;Image Title&quot;&gt;&lt;/p&gt;
&lt;div class=&quot;gatsby-highlight&quot; data-language=&quot;text&quot;&gt;&lt;pre class=&quot;language-text&quot;&gt;&lt;code class=&quot;language-text&quot;&gt;![Alt Text](https://placehold.it/200x50 &amp;quot;Image Title&amp;quot;)&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;</content:encoded></item></channel></rss>