Skip to content

Instantly share code, notes, and snippets.

View rybak's full-sized avatar

Andrei Rybak rybak

View GitHub Profile
@bagder
bagder / FOSDEMgeddon.md
Last active February 3, 2023 10:35
FOSDEMgeddon, the game

FOSDEMgeddon

(The rules were originally created for FOSDEM 2019)

  • You get one point for each FOSDEM talk you mean to attend but cannot enter because there is a FULL sign on the door.

  • The FOSDEM talk must be a talk in the official program to qualify for points.

  • You are not allowed to hunt down such rooms with the purpose of finding FULL

@jakkn
jakkn / add-git-ppa.sh
Created December 18, 2016 12:43
Debian - add git ppa
#! /bin/sh
sudo add-apt-repository ppa:git-core/ppa
sudo apt-get update
sudo apt-get install git
@rponte
rponte / build.gradle
Last active February 20, 2024 06:44
Configuring Gradle compiler encoding
apply plugin: 'java'
apply plugin: 'eclipse'
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
eclipseJdt << {
ant.propertyfile(file: ".settings/org.eclipse.core.resources.prefs") {
ant.entry(key: "eclipse.preferences.version", value: "1")
ant.entry(key: "encoding/<project>", value: "utf-8")