Skip to content

Instantly share code, notes, and snippets.

View nexussays's full-sized avatar

nexus nexussays

  • CA, USA
View GitHub Profile
@nexussays
nexussays / History\-101b0de0\entries.json
Last active December 26, 2022 20:09
Visual Studio Code Settings Sync Gist
{"version":1,"resource":"file:///c%3A/Users/nexus/Projects/Nevados/bc-software/artifacts/dist/bc-services/nevados.controls.zc.service.api_http/zc.service.api_http.service","entries":[{"id":"s70x.service","timestamp":1654417320773}]}

Keybase proof

I hereby claim:

  • I am nexussays on github.
  • I am nexussays (https://keybase.io/nexussays) on keybase.
  • I have a public key whose fingerprint is 12BC D034 4905 0849 9234 7C14 54C5 C629 398A D9FC

To claim this, I am signing this object:

@nexussays
nexussays / babylon5_viewing_order.md
Last active December 29, 2020 06:21
Babylon 5 viewing order
@nexussays
nexussays / aristocratic_assassins.md
Last active October 3, 2016 04:42
Rules for Aristocratic Assassins

Game Overview

There has been much discord of late between the law-creating and law-enforcing magistrates and the secretive guild of assassins who oppose what is, in their view, an iron-fisted rule of the populace. The Lord/Lady of the realm has invited all the high society nobles to a masquerade ball. Unbeknownst to the attendees, the guild of assassins plans to use this opportunity to kill the magistrates who will be in attendance.


Players are divided into two teams, and these teams are kept a secret. That is to say, any given player only knows which team they themselves are on; they do not know who else is on their team, or who is on the opposing team.

Black team

@nexussays
nexussays / run.rb
Created February 28, 2013 06:53
Calling an external command (useful for build scripts)
def run(command, abort_on_failure = true)
command.strip!
puts "> #{command}" if !block_given?
IO.popen("#{command} 2>&1") do |proc|
while !proc.closed? && (line = proc.gets)
if block_given?
yield line
else
puts "> #{line}"