Skip to content

Instantly share code, notes, and snippets.

View fingolfin's full-sized avatar

Max Horn fingolfin

  • University of Kaiserslautern-Landau
  • Kaiserslautern, Germany
  • 09:41 (UTC +02:00)
View GitHub Profile
@fingolfin
fingolfin / gitconfig
Created October 22, 2011 19:14
my gitconfig
[user]
name = Max Horn
email = max@quendi.de
signingkey = REDACTEDHASH
[alias]
st = status
ci = commit
br = branch
co = checkout
df = diff
@fingolfin
fingolfin / hom-examples.gap
Created July 5, 2011 12:06
GAP fun with group homomorphisms
First three examples that create groups G, K and a homomorphism hom
between them.
In the fourth section there is some generic test code...
Example abelian direct product:
-------------------------------
# G = any abelian group; for this one with a "complicated"
# representation.
@fingolfin
fingolfin / scummvm-configure-remarks.md
Created May 4, 2011 11:55
Comments on the ScummVM configure

In the following, I go through the ScummVM configure script sequentially, and roughly describe what each part does. Three of these sections are highlighted (dubbed sections A, B and C). These three do somewhat similar things, namely set settings based on _host_os, _host resp. _backends. They are the primary reason for this analysis: Right now, they are used in a very inconsistent fashion, people currently mostly guess when they decide which of the three sections to use. I would like to analyze what each is really good for. Also, possibly move section C further up (right after section B if possible), so that its settings also can affect detection of libraries.

The line numbers refer to this revision.

Anyway, here we go:

line 1

general setup, default settings, functions, etc.