Skip to content

Instantly share code, notes, and snippets.

@porst17
porst17 / gist:7300948
Created November 4, 2013 10:47
Log of "gradlew jfxDeploy --debug" for https://github.com/porst17/javafx-gradle-bug
11:45:03.685 [DEBUG] [org.gradle.logging.internal.DefaultLoggingConfigurer] Finished configuring with level: DEBUG, configurers: [org.gradle.logging.internal.OutputEventRenderer@45974736, org.gradle.logging.internal.logback.LogbackLoggingConfigurer@4ec44deb, org.gradle.logging.internal.JavaUtilLoggingConfigurer@39d7a7b3]
11:45:04.344 [DEBUG] [org.gradle.logging.internal.DefaultLoggingConfigurer] Finished configuring with level: DEBUG, configurers: [org.gradle.logging.internal.OutputEventRenderer@45974736, org.gradle.logging.internal.logback.LogbackLoggingConfigurer@4ec44deb, org.gradle.logging.internal.JavaUtilLoggingConfigurer@39d7a7b3]
11:45:04.348 [INFO] [org.gradle.BuildLogger] Starting Build
11:45:04.348 [DEBUG] [org.gradle.BuildLogger] Gradle user home: /Users/test/.gradle
11:45:04.348 [DEBUG] [org.gradle.BuildLogger] Current dir: /Users/test/Desktop/IMAGINARY/javafx-gradle-bug
11:45:04.349 [DEBUG] [org.gradle.BuildLogger] Settings file: null
11:45:04.350 [DEBUG] [org.gradle.BuildLogger] Build file: nul
@porst17
porst17 / logfile2.txt
Created December 16, 2013 10:30
Log of "gradlew clean jfxDeploy --debug" for https://github.com/porst17/javafx-gradle-bug/tree/f1e75c785ecd6505509c7ea96c3b60efb5356a45 on Ubuntu Linux 12.04, Oracle JDK 1.7.0_45, gradle 1.8
11:29:31.536 [DEBUG] [org.gradle.logging.internal.DefaultLoggingConfigurer] Finished configuring with level: DEBUG, configurers: [org.gradle.logging.internal.OutputEventRenderer@6c7d22, org.gradle.logging.internal.logback.LogbackLoggingConfigurer@8b7aca, org.gradle.logging.internal.JavaUtilLoggingConfigurer@12a87f4]
11:29:32.433 [DEBUG] [org.gradle.logging.internal.DefaultLoggingConfigurer] Finished configuring with level: DEBUG, configurers: [org.gradle.logging.internal.OutputEventRenderer@6c7d22, org.gradle.logging.internal.logback.LogbackLoggingConfigurer@8b7aca, org.gradle.logging.internal.JavaUtilLoggingConfigurer@12a87f4]
11:29:32.437 [INFO] [org.gradle.BuildLogger] Starting Build
11:29:32.438 [DEBUG] [org.gradle.BuildLogger] Gradle user home: /home/user/.gradle
11:29:32.438 [DEBUG] [org.gradle.BuildLogger] Current dir: /media/sf_IMAGINARY/javafx-gradle-bug
11:29:32.439 [DEBUG] [org.gradle.BuildLogger] Settings file: null
11:29:32.439 [DEBUG] [org.gradle.BuildLogger] Build file: null
11:29:32.456 [DEBUG
@porst17
porst17 / websockify-test.html
Last active September 2, 2015 10:14
A basic example of connecting a website to a shell command using WebSockets and websockify
<!--
run on console:
websockify --wrap-mode=respawn 1234 -- bash -c 'cat | netcat -q -1 -k -l 1234'
replace 'cat' with the command of your choice
/-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="generator" content=
"HTML Tidy for Linux/x86 (vers 25 March 2009), see www.w3.org" />
@porst17
porst17 / LG-UF85.conf
Last active November 23, 2015 14:47
UMS debug files
#----------------------------------------------------------------------------
# Profile for LG WebOS TVs.
# See DefaultRenderer.conf for descriptions of all the available options.
#
RendererName = LG UG85 TV
RendererIcon = LG-UB820V.png
# ============================================================================
# This renderer has sent the following string/s:
@porst17
porst17 / hb_client.html
Last active August 30, 2016 10:53 — forked from malex984/heartbeat2.py
Heartbeat server / client and libraries
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<h2>Open your JavaScript console!</h2>
<div>
@porst17
porst17 / useful-docker-commands.md
Last active March 8, 2016 15:08
Some docker commands, I would like to remember

Use the current user and his group(s) inside the container:

docker run
  -ti
  --rm
  -u `id -u`
  -v /etc/group:/etc/group
  -v /etc/passwd:/etc/passwd
  alpine
 /bin/sh
@porst17
porst17 / op2erp.cpp
Last active July 29, 2016 07:56
Combine 4 orthographic renderings of a sphere into a equirectangular map of the sphere
/*
* Copyright 2016 Christian Stussak
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
@porst17
porst17 / automirror
Last active February 21, 2017 08:48
Automatically mirror main display to other connected displays
#!/bin/bash
if [ "$#" -lt 2 ]; then
if [ "$#" -eq 1 ]; then
DISPLAYS=`xrandr | grep " connected" | sed "s/ .*$//" | grep -v "$1"`
DISPLAYS="$1 $DISPLAYS"
else
DISPLAYS=`xrandr | grep " connected" | sed "s/ .*$//"`
fi
ARR_DISPLAYS=( $DISPLAYS )
@porst17
porst17 / latency-check.html
Created October 12, 2018 13:25
WebAudio tests
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>WebAudio Latency Checker</title>
<meta name="description" content="Connects user input directly with WebAudio output in order to check for the minimal achievable latency">
<meta name="author" content="Christian Stussak">
@porst17
porst17 / Webstorm-Airbnb-Javascript-codeStyle.xml
Last active April 7, 2021 13:04 — forked from mentos1386/Webstorm-Airbnb-Javascript-codeStyle.xml
Airbnb inspired Webstorm Javascript CodeStyle
<code_scheme name="Airbnb" version="173">
<option name="RIGHT_MARGIN" value="100" />
<HTMLCodeStyleSettings>
<option name="HTML_ENFORCE_QUOTES" value="true" />
</HTMLCodeStyleSettings>
<JSCodeStyleSettings version="0">
<option name="USE_DOUBLE_QUOTES" value="false" />
<option name="SPACES_WITHIN_OBJECT_LITERAL_BRACES" value="true" />
<option name="SPACES_WITHIN_IMPORTS" value="true" />
<option name="USE_CHAINED_CALLS_GROUP_INDENTS" value="true" />