Skip to content

Instantly share code, notes, and snippets.

View jeffmccune's full-sized avatar

Jeff McCune jeffmccune

View GitHub Profile
@dane-joh
dane-joh / the-actions-list.md
Last active September 5, 2023 15:28
The Actions List

This is a list of URLs and resources that we consistently share with customers of GitHub Actions.

If you have questions about Actions or need help with using Actions, connect with your GitHub account team or email dane-joh@github.com.

Actions Roadmap

See the GitHub Public Roadmap for GitHub Actions (filter by "actions" if not already filtered) to track our planned feature evolution. Some interesting roadmap items include:

  • GitHub-native observability experiences for runner usage and workflow performance management
  • New GitHub-hosted runner machine types and sizes (larger macOS machines, Apple M1 silicon macOS machines, GPU-enabled machines, etc.)
@jeffmccune
jeffmccune / class_constants.md
Created August 16, 2012 20:43
Ruby classes and threads

class_constants.rb

#! /usr/bin/env ruby

t1 = Thread.new do
  sleep(5)
  puts "defining Klass"
  class Klass; end
end
@glarizza
glarizza / gist:2245024
Created March 29, 2012 23:51
San Francisco Restaurants
NORMIES
house of nanking (brandon wants)
Pizzeria Delfina (pizza/pig ears)
Dino's (spaghetti/meatballs)
La ciccia
Perbacco
mamas (benedict)
kokarri estario
fish and farm (burger)
mission beach cafe
@jeffmccune
jeffmccune / puppet.vim
Created February 23, 2011 02:47
In your Vim RC
" ~/.vim/ftplugin/puppet.vim
"
" Requires Align VIM plugin:
" http://mysite.verizon.net/astronaut/vim/align.html
" With a visual block selected, align =>'s
vmap . :Align =><CR>
" Function to save cursor position, select the block, and align =>'s
function! AlignFats()