Skip to content

Instantly share code, notes, and snippets.

From 1decccf37fb51c896767f86626f8b1837f4ad9da Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Klemens=20Sch=C3=B6lhorn?= <klemens@schoelhorn.eu>
Date: Mon, 26 Aug 2019 01:31:06 +0200
Subject: [PATCH] Install bash, zsh, and fish completions
---
PKGBUILD | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/PKGBUILD b/PKGBUILD
@klemens
klemens / nonogram.pl
Created January 4, 2015 16:06
Prolog nonogram solver
% Nonogram solver by Klemens Schölhorn under GPLv2+
%
% Datastuctures and optimisation inspired by the example solution to number
% 98 of the 99 prolog problems by Werner Hett and Paul Singleton.
% (https://sites.google.com/site/prologsite/prolog-problems)
/**
* nonogram(+RowConstr:list, +ColConstr:list, -Rows:list) is nondet.
*
* Solves the nonogram specified by the given row and column contrains
@klemens
klemens / copyTest.cpp
Created October 6, 2013 15:11
Directly access private data members in copy constructor
/**
* Compiles without error using g++ 4.8.0
* g++ -Wall -Wextra -Werror -pedantic -o copyTest copyTest.cpp
*/
#include <iostream>
class Person {
public:
Person(std::string name) {
@klemens
klemens / Tutorial.md
Last active December 17, 2015 02:29
Compile CGViewer under Windows