Skip to content

Instantly share code, notes, and snippets.

View BugBuster1701's full-sized avatar
🏠
Working from home

Glen Langer BugBuster1701

🏠
Working from home
  • T-Systems
  • Berlin, Germany
View GitHub Profile
@BugBuster1701
BugBuster1701 / Sinnvolle_Backports_Contao4_nach_Contao3
Last active March 9, 2016 20:21
Sinnvolle Backports von Contao 4 nach Contao 3
Sammlung von PRs, Bugfixes etc. die sinnvoll wären in Contao 3 portiert zu werden.
* https://github.com/contao/core/issues/8255#issuecomment-193705782
* * aber erst wenn https://github.com/contao/core/issues/8262 umgesetzt wurde.
@BugBuster1701
BugBuster1701 / gist:97ff58da48c1c42bde9f
Last active February 9, 2016 16:10
xhrpof in Ubuntu 14.04
https://sonnguyen.ws/install-xhprof-in-ubuntu-14-04/
https://www.youtube.com/watch?v=J89GJ1luZJ8
@BugBuster1701
BugBuster1701 / mysql_reconnect.php
Created August 21, 2015 11:16
mysql_reconnect.php
//http://stackoverflow.com/a/11535487
class databaseClass {
var $conn;
var $db;
public function __construct() {
$this->connect();
}
public function connect() {
$this->conn = mysql_connect(DB_HOST, DB_USER, DB_PASS);
$this->db = mysql_select_db(DB_NAME, $this->conn);
@BugBuster1701
BugBuster1701 / gpg-error.bash
Created August 5, 2015 14:19
Ubuntu: GPG error... signatures were invalid: BADSIG
# W: A error occurred during the signature verification.
# The repository is not updated and the previous index files will be used.
# GPG error: http://de.archive.ubuntu.com precise-updates Release: The following signatures were invalid: BADSIG 40976EAF437D05B5 Ubuntu Archive Automatic Signing Key <[email protected]>
# Abhilfe:
cd /var/lib/apt
sudo mv lists lists.old
sudo mkdir -p lists/partial
sudo apt-get update
@BugBuster1701
BugBuster1701 / gist:50b5fb2ef0748dd307c7
Created July 7, 2015 13:26
Eigenes phar erstellen mit box-project
http://box-project.org/
@BugBuster1701
BugBuster1701 / projekt-mdb2mysql.md
Last active August 29, 2015 14:24
MDB Dateien über ADOdb lesen
@BugBuster1701
BugBuster1701 / gist:b5cb67bbf12afd705741
Created June 18, 2015 18:04
Hook colorizeLogEntries
https://github.com/contao/docs/issues/279
Übersicht: https://github.com/avalanche123/free-programming-books/blob/master/free-programming-books-de.md
http://t3n.de/news/versionskontrolle-git-github-598054/