Skip to content

Instantly share code, notes, and snippets.

@bmatheny
bmatheny / install_ruby_rpi.sh
Last active September 18, 2022 19:33 — forked from KEINOS/install_ruby_rpi.sh
A Bash script to install Ruby 2.6.8 on the Raspberry Pi OS
#!/bin/bash
# --------------------------------------------------------------------------------------------
# Installs Ruby 2.6.8 using rbenv/ruby-build on the Raspberry Pi OS
#
# Run from the web:
# bash <(curl -sL https://gist.githubusercontent.com/bmatheny/f7cef71291d1ea3175b6d9d1bf312a3e/raw/install_ruby_rpi.sh)
# --------------------------------------------------------------------------------------------
# Welcome message
@bmatheny
bmatheny / compliments.json
Last active December 4, 2023 00:16 — forked from E3V3A/compliments.json
MagicMirror compliments file
{
"anytime" : [
"I'm lucky to be your mirror!",
"The Force is strong with you",
"If I could high five you... I would!",
"On a scale from 1 to 10, you're an 15!",
"Being awesome is hard, but you'll manage",
"I could just hang here all day!",
"Looking good!",
"May the Force be with you",
@bmatheny
bmatheny / gist:5060520
Last active December 14, 2015 08:49 — forked from jasoncodes/gist:1223731
# Run this script to install ruby 1.9.2-p290 under rbenv
VERSION=1.9.2-p290
brew update
brew install rbenv ruby-build rbenv-vars readline
if [ -n "${ZSH_VERSION:-}" ]; then
echo 'eval "$(rbenv init - --no-rehash)"' >> ~/.zshrc
else
echo 'eval "$(rbenv init - --no-rehash)"' >> ~/.bash_profile
fi
@bmatheny
bmatheny / vim.rb
Created September 23, 2012 16:10 — forked from vesln/vim.rb
Vim Formula with Ruby & Python support for OS X
require 'formula'
class Vim < Formula
homepage 'http://www.vim.org/'
version '7.3.666'
url 'https://vim.googlecode.com/hg/', :revision => '1e22adc6176e'
head 'https://vim.googlecode.com/hg/'
def ruby_bin
@bmatheny
bmatheny / mysqlpool.scala
Created March 30, 2012 02:07 — forked from tsuna/mysqlpool.scala
MySQL JDBC connection pool for Scala + Finagle
// Copyright (C) 2012 Benoit Sigoure
// Copyright (C) 2012 StumbleUpon, Inc.
// This library is free software: you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 2.1 of the License, or (at your
// option) any later version. This program is distributed in the hope that it
// will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
// General Public License for more details. You should have received a copy
// of the GNU Lesser General Public License along with this program. If not,