Someone on Reddit asked for a picture
Metric ruler placed on the edge of the scale, for reference. Would probably be best to do a clean drawing of it in a vector format, but this seems fine for dimensions.
$ gem list psych | |
*** LOCAL GEMS *** | |
psych (2.0.8) | |
$ ruby -r yaml -e 'puts Psych.methods.include?(:load_file)' | |
true | |
$ pry -r yaml |
\ProvidesFile{lstsmalltalk.sty} | |
[2016/02/12 0.3 listings Smalltalk definitions file] | |
% | |
\RequirePackage{listings} | |
\RequirePackage{relsize} | |
\RequirePackage{calc} | |
\newcommand\language@smalltalk{smalltalk} | |
% all this needed to incept the above macro as the name of the language |
#[derive(Debug)] | |
struct Foo { bar: *mut Bar } | |
#[derive(Debug)] | |
struct Bar { foo: *mut Foo } | |
#[cfg(test)] | |
mod tests { | |
use super::{Foo,Bar}; | |
use std::ptr; |
#!/bin/bash | |
# | |
# Easier project setup for Pharo + Iceberg + Git. | |
# | |
# This script (re)downloads and prepares a ready-to-hack Pharo image, getting all | |
# necessary info from a small config file committed among the project's files. | |
# | |
set -euo pipefail | |
IFS=$'\n\t' | |
# ↑ bash strict mode http://redsymbol.net/articles/unofficial-bash-strict-mode/ |
Someone on Reddit asked for a picture
Metric ruler placed on the edge of the scale, for reference. Would probably be best to do a clean drawing of it in a vector format, but this seems fine for dimensions.
#!/usr/bin/env bash | |
set -euo pipefail | |
IFS=$'\n\t' | |
function list-headers() { | |
local source="${1:--}" | |
cc -E -H "$source" 2>&1 1>/dev/null \ | |
| sed ' | |
# ignore recursive includes |
Homebrew build logs for subversion on macOS 12.0 | |
Build date: 2021-11-16 14:17:00 |