Skip to content

Commit 8ab5fb8

Browse files
committed
update
1 parent e2112b7 commit 8ab5fb8

5 files changed

+2
-10
lines changed

_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ name : "Kyle D. Kavanagh"
1313
description : ""
1414
url : "https://kdkavanagh.github.io"
1515
baseurl : # the subpath of your site, e.g. "/blog"
16-
repository : # GitHub username/repo-name e.g. "mmistakes/minimal-mistakes"
16+
repository : "kdkavanagh/kdkavanagh.github.io"
1717
teaser : # path of fallback teaser image, e.g. "/assets/images/500x300.png"
1818
# breadcrumbs : false # true, false (default)
1919
words_per_minute : 200
@@ -78,7 +78,7 @@ analytics:
7878
# Site Author
7979
author:
8080
name : "Kyle D. Kavanagh"
81-
avatar : "/assets/images/bio-photo.jpg"
81+
avatar : #"/assets/images/bio-photo.jpg"
8282
bio : "Performance-focused software engineer and aspiring market microstructure expert"
8383
location : "Chicago, IL"
8484
email : "kdkavanagh@gmail.com"

_posts/2016-01-02-how-to-talk-about-performance-part-one.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
---
2-
layout: post
32
title: How To Talk About Performance - Part 1
43
excerpt: "The numbers and graphs used to report the performance of the fastest computer software and hardware."
54
modified: 2016-01-09
65
tags: [performance, metrics, latency, R]
7-
comments: true
86
---
97
In 90% of the software engineering world, performance is often something that is "fine until it isn't", where only the most concerned developers mull over latency metrics until there is a some kind of capacity issue or noticeable performance degradation to the end user. This post is intended to be a crash course on how to answer the call your infrastructure & ops team sounds the alarm because your application can't keep up with demand and you must confront a performance problem.
108

_posts/2016-02-07-how-to-talk-about-performance-part-two.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
---
2-
layout: post
32
title: How To Talk About Performance - Part 2
43
excerpt: "The right things to measure and report to paint an accurate performance picture"
54
modified: 2016-02-20
65
tags: [performance, response time, service time, latency]
7-
comments: true
86
---
97
In part 1 of this post, we talked about how to report on performance - The important numbers and how to visualize them. Now we must know what we should actually be measuring in our system.
108

_posts/2016-02-21-measuring-jitter.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
---
2-
layout: post
32
title: Measuring Jitter - Work In Progress
43
excerpt: "Using R to separate high latency caused by queuing from that caused randomly by the operating system, garbage collections, power savings, etc in massive datasets"
54
modified: 2016-02-21
65
tags: [performance, R, jitter, visualization]
7-
comments: true
86
---
97
# Generating the Dummy Data
108
First we generate a dummy set of messages. Common queuing theory states that messages typically arrive to a system at rates following a Poisson distribution, and as such, we use a Poisson process to model the interarrival times of our fake messages. We then perform a cumulative sum on these arrival rates to calculate the arrival time of each message in our data set.

_posts/2016-11-05-waterfall-plots-with-ggplot2.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
---
2-
layout: post
32
title: Waterfall Plots with ggplot2
43
excerpt: "Using R and ggplot2 to build 2D visualizations with 3D perspectives"
54
modified: 2016-11-05
65
tags: [R, visualization, ggplot2, plots]
7-
comments: true
86
image:
97
feature: waterfallWide.png
108

0 commit comments

Comments
 (0)