Browse Source

Started working on steam graph blog post.

pull/4/head
jrtechs 6 years ago
parent
commit
3e19f3cf64
8 changed files with 30 additions and 3 deletions
  1. +1
    -1
      README.md
  2. BIN
      entries/projects/media/steam/ben2.png
  3. BIN
      entries/projects/media/steam/diagram.png
  4. BIN
      entries/projects/media/steam/jrtechs1.png
  5. BIN
      entries/projects/media/steam/jrtechs2.png
  6. +27
    -0
      entries/projects/steam-friends-graph.md
  7. BIN
      img/posts/steamGraphWebBanner.png
  8. +2
    -2
      posts/singlePost.js

+ 1
- 1
README.md View File

@ -4,7 +4,7 @@ do this again, I would use PHP. NodeJS is great, however, it was a pain to deal
with all the asynchronous calls when trying to create a web page in a linear fashion.
If you want to run this project, it requires Mysql, npm, and node to be installed. For
deployment I use a [Nginx](https://www.digitalocean.com/community/tutorials/how-to-set-up-a-node-js-application-for-production-on-ubuntu-16-04)
deployment I used a [Nginx](https://www.digitalocean.com/community/tutorials/how-to-set-up-a-node-js-application-for-production-on-ubuntu-16-04)
proxy.

BIN
entries/projects/media/steam/ben2.png View File

Before After
Width: 1909  |  Height: 941  |  Size: 489 KiB

BIN
entries/projects/media/steam/diagram.png View File

Before After
Width: 3238  |  Height: 1856  |  Size: 73 KiB

BIN
entries/projects/media/steam/jrtechs1.png View File

Before After
Width: 1251  |  Height: 944  |  Size: 608 KiB

BIN
entries/projects/media/steam/jrtechs2.png View File

Before After
Width: 1894  |  Height: 940  |  Size: 455 KiB

+ 27
- 0
entries/projects/steam-friends-graph.md View File

@ -0,0 +1,27 @@
<iframe width="100%" height="315" src="https://www.youtube.com/embed/DoDaHmyIPvQ" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
# Description of Project
## Links
- [Github](https://github.com/jrtechs/SteamFriendsGraph)
- [Live Site](http://steam.jrtechs.net/)
![Lucid chart diagram](media/steam/diagram.png)
# Technical Details
![Steam friends graph](media/steam/jrtechs1.png)
# Uses of Friends Graph Data Base
![Steam friends graph](media/steam/ben2.png)
# Hosting Project
![Steam friends graph](media/steam/jrtechs2.png)
# Future Plans for Project

BIN
img/posts/steamGraphWebBanner.png View File

Before After
Width: 1080  |  Height: 344  |  Size: 269 KiB

+ 2
- 2
posts/singlePost.js View File

@ -69,7 +69,7 @@ module.exports=
+ post.url + ".md";
var markDown = utils.getFileContents(pathName).toString();
markDown = markDown.split("![](media/").join("![](" + "../entries/"
markDown = markDown.split("(media/").join("(" + "../entries/"
+ category[0].url + "/media/");
var htmlPost = md.render(markDown).split("<p>");
@ -140,7 +140,7 @@ module.exports=
var pathName = "entries/" + category[0].url + "/"
+ post.url + ".md";
var markDown = utils.getFileContents(pathName).toString();
markDown = markDown.split("![](media/").join("![](" + "../entries/"
markDown = markDown.split("(media/").join("(" + "../entries/"
+ category[0].url + "/media/");
html += md.render(markDown);

Loading…
Cancel
Save