Skip to content

Instantly share code, notes, and snippets.

View storypixel's full-sized avatar

Sam Wilson storypixel

View GitHub Profile
@storypixel
storypixel / kepler_hosts.csv
Created May 7, 2026 17:33
Agent Architects member locations + meetup clusters
k host_city host_country host_lat host_lng n_members n_local mean_km max_km
5 Sydney Australia -33.86785 151.20732 17 5 854.3 2255.6
5 The Bronx United States 40.84985 -73.86641 211 15 1427.0 8241.1
5 London United Kingdom 51.50853 -0.12574 98 9 1289.7 9777.4
5 Los Angeles United States 34.05223 -118.24368 125 35 757.1 5375.3
5 Bangkok Thailand 13.75398 100.50144 25 5 2428.0 5087.4
10 Havana Cuba 23.13302 -82.38304 30 13 853.2 2652.6
10 Athens Greece 37.98376 23.72784 18 4 737.9 1216.5
10 Sydney Australia -33.86785 151.20732 17 5 854.3 2255.6
10 Los Angeles United States 34.05223 -118.24368 114 35 695.7 5375.3
@storypixel
storypixel / texas-primary-ballot-2026.md
Created February 25, 2026 16:11
Texas Democratic Primary Election - March 3, 2026 (Precinct P 104)

Texas Democratic Primary Election

Date: March 3, 2026
Precinct: P 104
Ballot Style: D 104 104A

Federal Offices

United States Senator

  • James Talarico
@storypixel
storypixel / cloudSettings
Last active October 27, 2020 20:28
vsc-settings
{"lastUpload":"2020-10-27T20:27:15.373Z","extensionVersion":"v3.4.3"}
@import url('https://fonts.googleapis.com/css?family=Ropa+Sans');
.template-iamnotsam-1 body {
background-color: #eee;
}
html {
font-size: 1em;
}
@storypixel
storypixel / spacemacs-cheatsheet.txt
Last active March 8, 2017 21:13 — forked from davoclavo/spacemacs-cheatsheet.md
Spacemacs cheatsheet
NOTE: "In Spacemacs, M-m _is_ SPC by default"
NOTE: "M-m and SPC can be used interchangeably".
NOTE: ??? are keys I don't know which I want to know
## Custom mappings: my own mappings which require configuration in .spacemacs
* Dumb Jump - 'gd'
## Day to day
* Get NeoTree prompt - 'SPC p t'
* 'C-o' - jump back
@storypixel
storypixel / graphic-design-questions.md
Created July 6, 2016 15:00
Graphic designer questions sample

How to Interview: Graphic Designers

Taken from a article by Dona Dezube

Every time a new type of communication emerges, the graphic designer job description expands.

Interview Questions to Ask: Experience

  • Have you done annual reports (or whatever products the designer will do for your organization)?
  • What size company were your prior clients?
@storypixel
storypixel / SassMeister-input.scss
Created October 15, 2015 13:24
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
$small: "tall";
$medium: "grande";
$large: "venti";
$prices: (
small: 8,
@storypixel
storypixel / SassMeister-input.scss
Created October 15, 2015 13:22
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
$small: "tall";
$medium: "grande";
$large: "venti";
$prices: (
small: 8,
@storypixel
storypixel / gist:aa063a86ce606b5bb887
Last active August 29, 2015 14:10
My basic JavaScript with jQuery starter file
;(function ($, root, undefined) {
$(function () {
'use strict';
// DOM ready
$(window).load(function(){
// Stuff that needs to happen after things are rendered
@storypixel
storypixel / gist:5a69974956cd34b9f096
Created November 19, 2014 19:54
Basic-est HTML5 starter
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Untitled</title>
</head>
<body>
<!-- Basic-est -->
</body>
</html>