Skip to content

Instantly share code, notes, and snippets.

View geeksville's full-sized avatar
💭
make my crummy software slightly less crummy.

geeksville geeksville

💭
make my crummy software slightly less crummy.
  • Geeksville Industries
  • San Mateo, CA
View GitHub Profile
@Venemo
Venemo / mesa-howto.md
Last active April 28, 2025 08:20
How to build and use mesa from source

Building and using mesa for development and testing

This explains how to build mesa from source, and how to use the custom built mesa to run some apps and games, without needing to replace the mesa libraries that your operating system runs on.

Let's assume that you are using an x86_64 system.

Building mesa

Overview

@ymasory
ymasory / bay-scala-jobs
Last active February 18, 2020 20:48
Companies hiring Scala developers in the Bay Area.
Companies hiring Scala developers in the Bay Area.
Created in response to a thread on scala-base.
My favorites:
- CloudPhysics
- Wordnik
Unbiased list:
- 10Gen
- Audax Health
@njoubert
njoubert / gist:4062168
Last active October 12, 2015 17:28 — forked from lucasfais/gist:1207002
Sublime Text 2 & 3 - Useful Shortcuts

Sublime Text 2 – Shortcuts

Here’s how I use sublime as efficiently as possible.

Modify your user keymap by adding these:

{ “keys”: [“super+h”], “command”: “find_under_expand” },
@viktorklang
viktorklang / swingactors.scala
Created April 19, 2012 17:25
Swing Actors using Akka
// ©2012 Viktor Klang
package akka.klang
import akka.dispatch.{ DispatcherPrerequisites, ExecutorServiceFactory, ExecutorServiceConfigurator }
import com.typesafe.config.Config
import java.util.concurrent.{ ExecutorService, AbstractExecutorService, ThreadFactory, TimeUnit }
import java.util.Collections
import javax.swing.SwingUtilities