Skip to content

Instantly share code, notes, and snippets.

View marcelkorpel's full-sized avatar

Marcel Korpel marcelkorpel

View GitHub Profile
@marcelkorpel
marcelkorpel / PKGBUILD
Last active August 29, 2015 14:01
pencil PKGBUILD and .install file
# Maintainer: Trương Xuân Tính <xuantinh@gmail.com>
pkgname=pencil
pkgver=2.0.5
pkgrel=2
pkgdesc="Sketching and GUI prototyping tool"
arch=('any')
license=('GPL2')
url="http://code.google.com/p/evoluspencil/"
install='pencil.install'
source=('http://evoluspencil.googlecode.com/files/pencil-2.0.5.tar.gz' 'pencil')
@marcelkorpel
marcelkorpel / PKGBUILD
Created May 17, 2014 18:45
ctemplate PKGBUILD and patch
pkgname=ctemplate
pkgver=2.3
pkgrel=2
pkgdesc="A library implementing a simple but powerful template language for C++"
arch=('i686' 'x86_64')
url="http://code.google.com/p/ctemplate/"
license=('BSD')
makedepends=('subversion' 'python2')
depends=('gcc-libs' 'perl')
source=(svn+http://$pkgname.googlecode.com/svn/tags/$pkgname-$pkgver/

Keybase proof

I hereby claim:

  • I am marcelkorpel on github.
  • I am marcelk (https://keybase.io/marcelk) on keybase.
  • I have a public key whose fingerprint is D600 0BEB DE0A D8C6 38C5 707D B1DA 85CF 2D51 A44C

To claim this, I am signing this object:

@marcelkorpel
marcelkorpel / PKGBUILD
Created October 21, 2014 18:18
evince-synctex
pkgname=evince-synctex
_pkgname=${pkgname/-/_}
pkgver=1
pkgrel=1
pkgdesc="Several scripts to ease the use of Evince with SyncTeX"
arch=('any')
url="http://forum.ubuntuusers.de/topic/evince-synctex-vim-emacs-scite-lyx-kile-editor/"
license=('GPL')
depends=('python2')
install=$pkgname.install
@marcelkorpel
marcelkorpel / nginx.conf
Created June 16, 2015 18:00
aurweb local configuration
#user html;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
@marcelkorpel
marcelkorpel / EULA.txt
Last active August 29, 2015 14:23
otf-bergamo
End-User License Agreement [Free Fonts]
This typeface software (“SOFTWARE”) is the property of FontSite Inc. Its use by you is covered under the terms of an End-User License Agreement (“EULA”). By exercising your rights to make and use copies of this SOFTWARE, you agree to be bound by the terms of this EULA. If you do not agree to the terms of this EULA, you may not use the SOFTWARE.
The SOFTWARE may be utilized for production purposes as needed for final output on any surface where the image will be rendered at a fixed size (e.g., document, t-shirt, computer screen).
EMBEDDING:
Adobe Portable Document Format (“PDF”) Embedding: Users may embed the licensed fonts into any read-only PDF you send to third parties. Unless the SOFTWARE is distributed as outlined below such documents may only be viewable and printable (but not editable) by the recipients.
HTML Web Page Embedding: Users may embed the licensed fonts into HTML web pages only for the purpose of typesetting the page using any of the following method
@marcelkorpel
marcelkorpel / DiffCommand.php
Created February 3, 2021 12:46
Migrations with multiple entity managers
<?php
namespace App\Command\Migrations;
use Doctrine\Migrations\Configuration\EntityManager\ExistingEntityManager;
use Doctrine\Migrations\Configuration\Migration\YamlFile;
use Doctrine\Migrations\DependencyFactory;
use Doctrine\Persistence\ManagerRegistry;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\ArrayInput;