Skip to content

Instantly share code, notes, and snippets.

<html class="console" _type="console"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta http-equiv="Content-Script-Type" content="text/javascript"><meta http-equiv="Content-Style-Type" content="text/css"><style>html {font-family:'Courier';font-size:9pt;background-color:white;color:black;word-wrap:break-word;margin:0;padding:3px 4px 10px 4px;}body {margin:0;padding:0}img {border:1px solid #aaa;vertical-align:top;}object {vertical-align:top;}hr {margin:0.5em 2em;}.line {margin:0 -4px; padding:0 4px 1px 4px; clear:both;}.line[alternate=even] {}.line[alternate=odd] {}.line[_type=action] .sender:before {content: '• ';white-space: nowrap;}.inlineimage {margin: 10px 0 15px 40px;max-width: 200px;max-height: 150px;-webkit-box-shadow: 2px 2px 2px #888;}.avatar {display: inline;max-width: 24px;max-height: 24px;margin-right: 3px;vertical-align: middle;}.url { word-break: break-all; }.address { text-decoration: underline; word-break: break-all; }.highlight { color: #f0f; font-weight: bold; }.t
@LukeLR
LukeLR / SoGO-Connector-errors.md
Last active September 9, 2015 16:45
Thunderbird 38 Errors with SoGO-Connector
1441814846308	addons.manager	WARN	Exception calling callback: ReferenceError: GroupDavSynchronizer is not defined (chrome://sogo-integrator/content/messenger/folders-update.js:241) JS Stack trace: checkFolders@folders-update.js:241:1 < checkExtensionsUpdate_callback@startup-overlay.js:42:17 < safeCall@AddonManager.jsm:173:5 < getAddonsByIDs_noMoreObjects@AddonManager.jsm:2170:9 < AOC_callNext@AddonManager.jsm:305:7 < getAddonsByIDs_getAddonByID@AddonManager.jsm:2165:11 < safeCall@AddonManager.jsm:173:5 < getAddonByID_noMoreObjects@AddonManager.jsm:2091:9 < AOC_callNext@AddonManager.jsm:305:7 < getAddonByID_safeCall@AddonManager.jsm:2086:13 < PL_getAddon@PluginProvider.jsm:126:7 < callProviderAsync@AddonManager.jsm:235:12 < getAddonByID_nextObject@AddonManager.jsm:2081:1 < AOC_callNext@AddonManager.jsm:311:7 < getAddonByID_safeCall@AddonManager.jsm:2086:13 < GMPProvider.getAddonByID@GMPProvider.jsm:533:7 < callProviderAsync@AddonManager.jsm:235:12 < getAddonByID_nextObject@AddonManager.jsm:2081:1 < AOC_cal
@LukeLR
LukeLR / about.md
Last active October 1, 2015 19:55
fxa-auth-server install failure on x86

#Firefox Auth Server installation failure I tried to install a Firefox Auth Server on my Linux x86 machine today by following Mozilla's official tutorial. Their instructions refer to the fxa-auth-server GitHub repository, where the read me is to be followed. Unfortunately, when executing npm install to build the server scripts, npm exits with an error. The terminal output and the debug log is found below, this has been asked in a server fault question.

@LukeLR
LukeLR / ssh.log
Created January 2, 2016 23:23
Synology SSH login as normal user verbose output
ssh -vvv lukas@192.168.2.100
OpenSSH_6.9p1, LibreSSL 2.1.8
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 21: Applying options for *
debug1: /etc/ssh/ssh_config line 56: Applying options for *
debug2: ssh_connect: needpriv 0
debug1: Connecting to 192.168.2.100 [192.168.2.100] port 22.
debug1: Connection established.
debug1: identity file /Users/lukas/.ssh/id_rsa type 1
debug1: key_load_public: No such file or directory
@LukeLR
LukeLR / lspci -vnn
Created March 14, 2016 21:48
Lenovo P50s Hardware Configuration
$ lspci -vnn
00:00.0 Host bridge [0600]: Intel Corporation Sky Lake Host Bridge/DRAM Registers [8086:1904] (rev 08)
Subsystem: Lenovo Device [17aa:2231]
Flags: bus master, fast devsel, latency 0
Capabilities: <access denied>
00:02.0 VGA compatible controller [0300]: Intel Corporation Sky Lake Integrated Graphics [8086:1916] (rev 07) (prog-if 00 [VGA controller])
Subsystem: Lenovo Device [17aa:2232]
Flags: bus master, fast devsel, latency 0, IRQ 123
Memory at f2000000 (64-bit, non-prefetchable) [size=16M]
@LukeLR
LukeLR / Data.java
Last active June 24, 2016 21:49
javafx TableView highscore problem
package meta;
import java.io.Serializable;
import gui.MainWindow;
import javafx.beans.property.ReadOnlyDoubleProperty;
import javafx.beans.value.ObservableDoubleValue;
public class Data implements Serializable {
public static final int EASY = 0;
@LukeLR
LukeLR / HighscoreEntry.java
Created July 7, 2016 23:27 — forked from anonymous/HighscoreEntry.java
JavaFX TableView sorting problem
package meta;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.ObjectStreamException;
import java.io.Serializable;
import java.time.Duration;
import java.time.Instant;
import java.time.LocalDateTime;
@LukeLR
LukeLR / gist:6b23377484516926e5a2d7cc4cc6ce69
Last active November 20, 2017 03:22
HHU Datenbanken WiSe 2017 Blatt 5 Aufgabe 1 Beispieldatensatz
group: HHUDatenbankenBlatt5Aufgabe1
ANGESTELLTER = {
PersonalNr:number, Vorname:string, Nachname:string, Beruf:string, Gehalt:number, arbeitetInAbteilung:number
11 , 'Helge' , 'Schneider' , 'Atmen' , 10000 , 3
12 , 'Ben' , 'Wagner' , 'Arzt' , 100 , 1
13 , 'Anna' , 'Mülle' , 'Tänzerin' , 200 , 1
14 , 'Nadja' , 'Durn' , 'IT' , 300 , 2
203 , 'Super' , 'Mitarbeiter' , 'Super sein', 999999 , 2
}
@LukeLR
LukeLR / gist:66b8a003d81d53dd331894bb56ebe1b9
Last active November 20, 2017 05:29
HHU Datenbanken WiSe 2017 Blatt 5 Aufgabe 2 Beispieldatensatz
group: HHUDatenbankenBlatt5Aufgabe2
UNTERKUNFT = {
id:number, Kategorie:string, Beschreibung:string, Preis:number
0 , 'Hotel' , 'Tolles Hotel' , 1
1 , 'Wohnung' , 'Tolle Wohnung' , 10
2 , 'Zelt' , 'Tolles Zelt' , 100
3 , 'Test' , 'Toller Test' , 1000
}
@LukeLR
LukeLR / HHUDatenbankenBlatt7Aufgabe1
Created December 4, 2017 06:31
HHU Datenbanken WiSe 2017 Blatt 7 Aufgabe 1 Beispieldatensatz
group: HHUDatenbankenBlatt7Aufgabe1
A = {
ka:number, a1:number, a2:string
1 , 1 , s
2 , 5 , l
3 , 3 , m
4 , 5 , m
5 , 7 , s
}