Skip to content

Instantly share code, notes, and snippets.

View jacobw56's full-sized avatar

Walter Jacob jacobw56

View GitHub Profile
@jacobw56
jacobw56 / vim_get_started.md
Created February 25, 2023 02:41
Getting started with vim

Getting started with vim

Why vim?

The old joke here would be to say, "because emacs is lame," but there are many concrete reasons to consider learning at least the basics of vim (and, honestly, it would be equally beneficial to learn an epsilon of emacs as well).

  • vim is the basis for many other tools. Most other developer tools have
@jacobw56
jacobw56 / gist:dd642e574257bfcc788bc0890b9aec29
Created April 24, 2018 13:12
Working config for secure WebSockets & hosting my other sites
# Used this config to get a React FE (https)
# to speak with a Clojure BE (port 8001) over wss
# redirect all http requests to https
# and also listen on IPv6 addresses
server {
listen 80;
listen [::]:80;
server_name domain.com www.domain.com _;
@jacobw56
jacobw56 / index.html
Last active October 13, 2017 19:09
Gaussian curve in d3
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Normal Plot</title>
<meta name="description" content="">
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<style type="text/css">