From 963e7ebbd59fce065db0e18ed6e7b9c988bb24d8 Mon Sep 17 00:00:00 2001 From: Chuck Dries Date: Thu, 16 Nov 2017 19:20:07 -0700 Subject: [PATCH] Less wordy techbuds --- index.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/index.html b/index.html index b5cc733..9d424d5 100644 --- a/index.html +++ b/index.html @@ -27,7 +27,8 @@

Chuck Dries

-

Programmer, Student, Friendly dude / Web & VR

+

Programmer, Student, Friendly dude + / Web & VR

About Me / Skills / @@ -202,11 +203,10 @@

TechBuds Chat

A realtime chat app in Vue

-

A penny stock trading community needed a custom chat platform, so they hired my Desert Hacks '17 team. - Our implementation relies on Mongo, Redis, Node, and Express in the backend, Vue, Vue-router, and - Materialize on the front end, Socket.io handles real time communication between the two, and every - ounce of javascript we write is transpiled by Babel. I'm in charge of the front end and responsible - for the visual and architectural design of most of the SPA.

+

Our back end relies on Mongo, Redis, Node, and Express; our front end uses Vue, Vue-router, and Materialize. + Socket.io handles real time communication between the two, and every ounce of javascript we write + is transpiled by Babel. I'm in charge of the front end and responsible for the visual and architectural + design of most of the SPA.

Unfortunately, this project is closed source, but it's not under NDA. I can't publish the code online, but I can show you if you ask.

@@ -253,7 +253,7 @@ document.addEventListener("scroll", function () { last_known_scroll = getScrollY(); if (!queueing) { - window.requestAnimationFrame(function () {//"queue up" animation + window.requestAnimationFrame(function () { //"queue up" animation queueing = false; sc(last_known_scroll); }); @@ -261,7 +261,7 @@ } }); - window.addEventListener("resize",function() { + window.addEventListener("resize", function () { last_known_scroll = getScrollY(); sc(last_known_scroll); });