Skip to content

Instantly share code, notes, and snippets.

@dgreensp
dgreensp / abstract.svg
Last active June 14, 2021 23:28
Badges
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

~ How to Let Go of Fear and Return to Love

“In the absence of love, we began slowly but surely to fall apart.” ~ Marianne Williamson, A Return to Love

What is LOVE?

Whenever I ask myself this question, the answer that comes to mind is always the same:

“Love is who we are, it’s what we are all made of.”

<head>
<style>
html, body { padding: 0; margin: 0 }
</style>
</head>
<body>
<iframe width="640" height="360" frameborder="0" src="https://www.shadertoy.com/embed/3tBGzh?gui=true&t=10&paused=true&muted=false" allowfullscreen></iframe>
<script>
window.onresize = () => {
i = document.querySelector('iframe')
class Rocker < Formula
desc "Rocker breaks the limits of Dockerfile."
homepage "https://github.com/grammarly/rocker"
url "https://github.com/grammarly/rocker.git", :tag => "1.3.1"
head "https://github.com/grammarly/rocker.git"
version "1.3.1"
def install
ENV["GOPATH"] = "#{Dir.pwd}/build"
ENV["GO15VENDOREXPERIMENT"] = "1"
class Go < Formula
desc "Open source programming language to build simple/reliable/efficient software"
homepage "https://golang.org"
stable do
url "https://storage.googleapis.com/golang/go1.9.2.src.tar.gz"
mirror "https://fossies.org/linux/misc/go1.9.2.src.tar.gz"
sha256 "665f184bf8ac89986cfd5a4460736976f60b57df6b320ad71ad4cef53bb143dc"
go_version = version.to_s.split(".")[0..1].join(".")
@dgreensp
dgreensp / bootstrap-thoughts.md
Created March 19, 2019 18:06
Bootstrap Thoughts

I’m getting up to speed on Bootstrap 4. I’ve used Bootstrap here and there since it came out, a little over 7 years ago. It succeeds in having aesthetics that are not distractingly bad or opinionated. (When Bootstrap first came out, I remember saying I could tell when a site used it. “There’s Bootstrap again! Eye-roll.” But now, perhaps due to its ubiquity, improvements, using native fonts, and diffusion between Bootstrap and web design in general, it doesn’t stand out to me.)

For starters, I'm getting up to speed on the global styles one needs to buy into to use Bootstrap.

I consider myself a bit of a “purist” in that I’ve generally preferred to write my own HTML and CSS from scratch, including hacks and resets, rather than bringing in someone else’s collection of global rules, which then become part of the stack that I have to contend with. However, having done it many times, I’ve sort of had enough thinking about hacks and resets (e.g. different treatment of input and button tags between brows

import java.awt.Dimension;
import java.awt.Toolkit;
import java.awt.event.MouseEvent;
import java.awt.event.MouseMotionListener;
import javax.swing.JFrame;
public class blank implements Runnable, java.awt.event.MouseListener, MouseMotionListener
{
int SIZE;
JFrame frame;