title: Test post date: 2022-01-16 update_date: 2022-01-16 author: Dave Allie slug: test-post published: true description: Some description tags:
- my-tag
title: Test post date: 2022-01-16 update_date: 2022-01-16 author: Dave Allie slug: test-post published: true description: Some description tags:
strong.build-details-primary::first-letter { | |
color: #f00; | |
} | |
.build-details-time, .build-details-time + span, time.build-details-secondary { | |
float: right; | |
} | |
.build-img { | |
width: 60px; |
#!/usr/bin/perl -w | |
use Cwd qw(getcwd abs_path); | |
use strict; | |
use File::Basename; | |
use File::Path qw(mkpath rmtree); | |
use File::Spec; | |
use Text::ParseWords; | |
use IPC::Open2; | |
use IO::Handle; | |
use Digest::MD5 'md5_hex'; |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env ruby | |
require 'httparty' | |
require 'parallel' | |
require 'optparse' | |
require 'curses' | |
PART_CHAR = "\u2588" | |
def parse_options |
function evaluate(evalString) | |
m = match(r"(.*?)\((.*)\)(.*)", evalString) | |
if m != nothing | |
evalString = "$(m.captures[1])$(evaluate(m.captures[2]))$(m.captures[3])" | |
end | |
# Brackets are dealt with | |
# Add | |
m = match(r"(.*)\+(.*)", evalString) | |
if m != nothing |
import java.util.*; | |
public class CompGeom { | |
public static void main(String[] args) { | |
List<Point> points = new ArrayList<Point>(); | |
// points.add(new Point(5, 4)); | |
// points.add(new Point(4, 2)); | |
// points.add(new Point(3, 3)); | |
// points.add(new Point(6, 1)); | |
// points.add(new Point(7, 4)); |