I hereby claim:
- I am fosterbrereton on github.
- I am fosterb (https://keybase.io/fosterb) on keybase.
- I have a public key whose fingerprint is 3D63 FF51 712A 9F44 3D43 D7BD D1AA 5CD5 92E3 14A7
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
/* | |
MIT License | |
Copyright 2019 Foster T. Brereton | |
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and | |
associated documentation files (the "Software"), to deal in the Software without restriction, | |
including without limitation the rights to use, copy, modify, merge, publish, distribute, | |
sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: |
#!/bin/sh | |
# | |
# chmodr.sh | |
# | |
# author: Francis Byrne | |
# date: 2011/02/12 | |
# | |
# Generic Script for recursively setting permissions for directories and files | |
# to defined or default permissions using chmod. | |
# |
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAM0AAAD NCAMAAAAsYgRbAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5c cllPAAAABJQTFRF3NSmzMewPxIG//ncJEJsldTou1jHgAAAARBJREFUeNrs2EEK gCAQBVDLuv+V20dENbMY831wKz4Y/VHb/5RGQ0NDQ0NDQ0NDQ0NDQ0NDQ 0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0PzMWtyaGhoaGhoaGhoaGhoaGhoxtb0QGho aGhoaGhoaGhoaGhoaMbRLEvv50VTQ9OTQ5OpyZ01GpM2g0bfmDQaL7S+ofFC6x v3ZpxJiywakzbvd9r3RWPS9I2+MWk0+kbf0Hih9Y17U0nTHibrDDQ0NDQ0NDQ0 NDQ0NDQ0NTXbRSL/AK72o6GhoaGhoRlL8951vwsNDQ0NDQ1NDc0WyHtDTEhD Q0NDQ0NTS5MdGhoaGhoaGhoaGhoaGhoaGhoaGhoaGposzSHAAErMwwQ2HwRQ AAAAAElFTkSuQmCC" alt="beastie.png">
#!/bin/bash | |
# Original lat/long is near Azusa, California, the location of the 2016 Jun 20 | |
# Fish fire. | |
LAT=34.177043 | |
LON=-117.921503 | |
LATMIN=`bc <<< $LAT-.2` | |
LATMAX=`bc <<< $LAT+.2` |
#include <iostream> | |
#include <typeinfo> | |
struct banana_t { | |
template <typename T> | |
explicit banana_t(const T& x) : | |
impl_m{new impl<T>(x)} | |
{ } | |
struct base_t { |
{ | |
init: function(elevators, floors) { | |
var closestToFloor = function (floor) { | |
var elevator = null; | |
var distance = 1000; | |
console.log("Call to floor " + floor + "..."); | |
elevators.forEach(function (cur_elevator) { | |
var cur_distance = Math.abs(cur_elevator.currentFloor() - floor); |
#include <iostream> | |
struct rect_t | |
{ | |
float top_m; | |
float left_m; | |
float bottom_m; | |
float right_m; | |
float height() const { return bottom_m - top_m; } |
{ | |
"always_show_minimap_viewport": true, | |
"auto_complete_commit_on_tab": true, | |
"auto_match_enabled": false, | |
"caret_style": "phase", | |
"color_scheme": "Packages/Colorsublime - Themes/cache/Colorsublime-Themes-master/themes/BBEdit.tmTheme", | |
"copy_with_empty_selection": false, | |
"create_window_at_startup": false, | |
"detect_indentation": false, | |
"draw_minimap_border": true, |
#!/bin/bash | |
# Boost is now using git submodules, where each Boost library has its own. These are coalesced | |
# into a top-level boost repository. Grabbing a snapshot of boost, then, involves cloning the | |
# top-level repo and using bjam to build the familiar top-level boost/ headers directory. | |
git clone --recursive [email protected]:boostorg/boost.git | |
cd boost |