edit blog post, deleted new year message
This commit is contained in:
parent
c1035b5663
commit
b5dbc0771f
@ -14,6 +14,7 @@
|
|||||||
<div class="main-section-about">
|
<div class="main-section-about">
|
||||||
<div class="main-background">
|
<div class="main-background">
|
||||||
<h2 class="main-background-text">You want to know about me?</h2><br>
|
<h2 class="main-background-text">You want to know about me?</h2><br>
|
||||||
|
<h4 class="main-background-text">February 2019 - Accepted into Ferris State University</h4>
|
||||||
<h4 class="main-background-text">December 2018 - Recieved acknowedglement of being on the Dean's List (Northwestern Michigan College)</h4>
|
<h4 class="main-background-text">December 2018 - Recieved acknowedglement of being on the Dean's List (Northwestern Michigan College)</h4>
|
||||||
<h4 class="main-background-text">December 2018 - KernalPanik was started!</h4>
|
<h4 class="main-background-text">December 2018 - KernalPanik was started!</h4>
|
||||||
<h4 class="main-background-text">December 2018 - <a href="https://github.com/wymillerlinux/DeskHubSharp">DeskHubSharp</a> was released!</h4>
|
<h4 class="main-background-text">December 2018 - <a href="https://github.com/wymillerlinux/DeskHubSharp">DeskHubSharp</a> was released!</h4>
|
||||||
@ -23,6 +24,7 @@
|
|||||||
<h4 class="main-background-text">May 2017 - <a href="https://github.com/wymillerlinux/lftpd">lftpd</a> was released!</h4>
|
<h4 class="main-background-text">May 2017 - <a href="https://github.com/wymillerlinux/lftpd">lftpd</a> was released!</h4>
|
||||||
<h4 class="main-background-text">April 2017 - <a href="https://github.com/wymillerlinux/mtikrtr">mtikrtr</a> was released!</h4>
|
<h4 class="main-background-text">April 2017 - <a href="https://github.com/wymillerlinux/mtikrtr">mtikrtr</a> was released!</h4>
|
||||||
<h4 class="main-background-text">December 2016 - <a href="https://github.com/jtperreault/political_ties">Political Ties</a> was started!</h4>
|
<h4 class="main-background-text">December 2016 - <a href="https://github.com/jtperreault/political_ties">Political Ties</a> was started!</h4>
|
||||||
|
<h4 class="main-background-text">August 2016 - Accepted into Northwestern Michigan College</h4>
|
||||||
<h4 class="main-background-text">May 2016 - Graduated Kalkaska High School</h4>
|
<h4 class="main-background-text">May 2016 - Graduated Kalkaska High School</h4>
|
||||||
<h4 class="main-background-text">September 2015 - Started Information Technology internship at Kalkaska High School</h4><br>
|
<h4 class="main-background-text">September 2015 - Started Information Technology internship at Kalkaska High School</h4><br>
|
||||||
<p class="main-background-text">Want to see my <a href="assets/resume.pdf">resume</a>?</p>
|
<p class="main-background-text">Want to see my <a href="assets/resume.pdf">resume</a>?</p>
|
||||||
|
@ -6,11 +6,13 @@ published: true
|
|||||||
|
|
||||||
I had a presentation today. It was about containers. "Wyatt" you are probably thinking "that's too broad of a topic. What are you doing??" Fear not friend, we gave a presentation about Docker, a containerized solution and Docker is used everywhere, from myself to the who's who like Google, Amazon, and Red Hat, to name a few.
|
I had a presentation today. It was about containers. "Wyatt" you are probably thinking "that's too broad of a topic. What are you doing??" Fear not friend, we gave a presentation about Docker, a containerized solution and Docker is used everywhere, from myself to the who's who like Google, Amazon, and Red Hat, to name a few.
|
||||||
|
|
||||||
Think of containers this way, if you don't know hat they do already. Let's say you're about to ship barrels of oil and a bear skin by cargo boat. You probably think that you need somewhere safe to store those, right? You store them in a big metal shipping box and now, those barrels of oil and bear skin won't be damaged by the sea or the boat. Software container work the same way, only they don't transport oil or bear skins, they transport software. Containers are a solution to move software to one machine to the other without any breaking changes, so no matter where you run your container, whether it be on a server, a developement machine or AWS, the environment will still be the same and it will run the same.
|
Think of containers this way, if you don't know what containers in the software world do already. Let's say you're about to ship barrels of oil and a bear skin by cargo boat. You probably think that you need somewhere safe to store those, right? You store them in a big metal shipping box and now, those barrels of oil and bear skin won't be damaged by the sea or the boat. Software container work the same way, only they don't transport oil or bear skins, they transport software. Containers are a solution to move software to one machine to the other without any breaking changes, so no matter where you run your container, whether it be on a server, a developement machine or AWS, the environment will still be the same and it will run the same.
|
||||||
|
|
||||||
What makes containers so great? Well, I just explained that containers run everywhere so that eliminates the problem of "Well, it works on my machine." Containers also save resources, much more than virtual machines, which allocates system hardware to it using a hypervisor where as containers share system resources. Containers are very good at scaling as well, very well in fact when paired with Kuberntes or Docker Swarm which are orchestaration tools for Docker. Containers also enable microservices, which are layers of software that fit together. For example, take the Model-View-Presenter pattern. Have one container be the Model, have another be the View and the last container be the Presenter. Have them linked together and you have a program that one has the MVP pattern and two has microservices. How cool is that?
|
What makes containers so great? Well, I just explained that containers run everywhere so that eliminates the problem of "Well, it works on my machine." Containers also save resources, much more than virtual machines, which allocates system hardware to it using a hypervisor where as containers share system resources. Containers are very good at scaling as well, very well in fact when paired with Kuberntes or Docker Swarm which are orchestaration tools for Docker. Containers also enable microservices, which are layers of software that fit together. For example, take the Model-View-Presenter pattern. Have one container be the Model, have another be the View and the last container be the Presenter. Have them linked together and you have a program that one has the MVP pattern and two has microservices. How cool is that?
|
||||||
|
|
||||||
Docker has many different platforms, like GitLab, Wordpress and Rocket.Chat, which all run on Docker. Programming languages can also be run in Docker containers such as Ruby, Python, .NET, Java, Node, Rust, Golang and others so nobody is left out.
|
Docker has many different platforms, like GitLab, Wordpress and Rocket.Chat, which all run on Docker. Programming languages can also be run in Docker containers such as Ruby, Python, .NET, Java, Node, Rust, Golang and others so nobody is left out. Also, there are Docker images fro Windows so you Windows lovers out there can have your piece of the cake to with the Linux people.
|
||||||
|
|
||||||
|
A few Docker commands must known however.
|
||||||
|
|
||||||
-- Section for CIT 280 instructor --
|
-- Section for CIT 280 instructor --
|
||||||
|
|
||||||
|
@ -14,8 +14,7 @@
|
|||||||
<div class="main-section-about">
|
<div class="main-section-about">
|
||||||
<div class="main-background">
|
<div class="main-background">
|
||||||
<h2>Coming soon!</h2><br>
|
<h2>Coming soon!</h2><br>
|
||||||
<h2>My blog is coming in the near future.</h2>
|
<h2 class="main-background-text">If you have any questions, <a href="mailto:wjmiller2016@gmail.com">email</a> me!</h2>
|
||||||
<h2 class="main-background-text">If you have any questions regarding the blog, <a href="mailto:wjmiller2016@gmail.com">email</a> me!</h2>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
<a id=twitter href="https://twitter.com/wymillerlinux"><i class="fab fa-twitter"></i></a>
|
<a id=twitter href="https://twitter.com/wymillerlinux"><i class="fab fa-twitter"></i></a>
|
||||||
<a id=twitch href="https://twitch.tv/wymillerlinux"><i class="fab fa-twitch"></i></a>
|
<a id=twitch href="https://twitch.tv/wymillerlinux"><i class="fab fa-twitch"></i></a>
|
||||||
<a href="https://github.com/wymillerlinux"><i class="fab fa-github"></i></a>
|
<a href="https://github.com/wymillerlinux"><i class="fab fa-github"></i></a>
|
||||||
|
<a href="https://www.linkedin.com/in/wyatt-miller-b4208a2b"><i class="fab fa-linkedin"></i></a>
|
||||||
</p>
|
</p>
|
||||||
<p>© <?php echo date("Y"); ?> Miller Web Solutions, Wyatt J. Miller - Licensed by the <a href="https://opensource.org/licenses/MIT">MIT</a></p>
|
<p>© <?php echo date("Y"); ?> Miller Web Solutions, Wyatt J. Miller - Licensed by the <a href="https://opensource.org/licenses/MIT">MIT</a></p>
|
||||||
</div>
|
</div>
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
<div class="header">
|
<div class="header">
|
||||||
<div class="header-title">
|
<div class="header-title">
|
||||||
<h1>Wyatt J. Miller</h1>
|
<h1>Wyatt J. Miller</h1>
|
||||||
<p>version 1.2.1 "Velvet Thunder"</p>
|
<p>version 1.2.4 "Velvet Thunder"</p>
|
||||||
</div>
|
</div>
|
||||||
<nav class="nav nav-pills nav-justified">
|
<nav class="nav nav-pills nav-justified">
|
||||||
<a class="nav-item nav-link" href="/">Home</a>
|
<a class="nav-item nav-link" href="/">Home</a>
|
||||||
|
@ -16,7 +16,6 @@
|
|||||||
<div class="main-section">
|
<div class="main-section">
|
||||||
<div class="main-background">
|
<div class="main-background">
|
||||||
<h2 id="time"></h2>
|
<h2 id="time"></h2>
|
||||||
<h2 id="new-year">Happy New Year! 2019!</h3><br>
|
|
||||||
<p class="main-background-text">I write code. I do some other cool stuff too.</p><br>
|
<p class="main-background-text">I write code. I do some other cool stuff too.</p><br>
|
||||||
<p class="main-background-text">There's nothing much here except my <a href="https://github.com/wymillerlinux/DeskHubSharp" target="_blank">latest project</a> that I worked on. It's a GitHub client tool for viewing repositories once a user is searched.</p>
|
<p class="main-background-text">There's nothing much here except my <a href="https://github.com/wymillerlinux/DeskHubSharp" target="_blank">latest project</a> that I worked on. It's a GitHub client tool for viewing repositories once a user is searched.</p>
|
||||||
<!--p class="main-background-text"></p-->
|
<!--p class="main-background-text"></p-->
|
||||||
|
Loading…
Reference in New Issue
Block a user