incoming blog post
This commit is contained in:
parent
95caf3bdf6
commit
4b2c5ddfb4
17
src/blog/_posts/2019-04-28-pibake-endgame.markdown
Normal file
17
src/blog/_posts/2019-04-28-pibake-endgame.markdown
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
---
|
||||||
|
layout: post
|
||||||
|
title: "PiBake: Endgame"
|
||||||
|
published: true
|
||||||
|
---
|
||||||
|
|
||||||
|
In the spirit of Avengers: Endgame coming two days after this blog post, I thought I should homage to it's titular name. I haven't seen Endgame yet so if you see me and you have seen Endgame, please, do not spoil it for me.
|
||||||
|
|
||||||
|
Anywho, we are done, apparently. And so is this blog post.
|
||||||
|
|
||||||
|
Just kidding. We wrapped up little pieces of the project here and there and we also figured out how to insert the data sent from one of our units to the database which is the thing I'm going to talk about today.
|
||||||
|
|
||||||
|
Our initial thought was to have Thresa write a stored procedure to insert the data into the database once the data was passed from the server. This was unfortunately a slower fail than we would have liked. In the hunt for information for building this stored procedure, much of the information related to using the JSON data type which is a relatively new feature to MySQL. This route was avoided for fear this would create issues elsewhere in the project as it would affect multiple areas. With multiple attempts this was simply not working and the complexity was beyond our level of expertise. We did not know it at the time but even if this had been worked out, we would have run into more issues with the change of our primary key further into the project.
|
||||||
|
|
||||||
|
It was at this point that Wyatt and Jacob announced that they had solved the issue with the PHP script. In that script, they used a row checker to see if the row had any data against any data we had, namely the UUID in question. If not, we would run one query with a conditional mentioned above in one table. Then, the other query which just inserted data was ran in a different table, regardless of the conditional was met or not.
|
||||||
|
|
||||||
|
For me in particular, I was documenting code for "the software." It was pretty easy given that I've documented my own Python projects before. All documentation needs are string surrounded by three single quotes. So I don't get carpal tunnel, I wrote a Bash script to generate HTML pages using `pydoc` which is really nice.
|
@ -16,7 +16,8 @@
|
|||||||
<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>
|
<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> | Hosted by <a href="https://m.do.co/c/1c8f6f501242">DigitalOcean</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>Hosted by <a href="https://m.do.co/c/1c8f6f501242">DigitalOcean</a></p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
@ -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.6 "Velvet Thunder"</p>
|
<p>version 1.2.7 "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>
|
||||||
|
Loading…
Reference in New Issue
Block a user