This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM java:8 | |
MAINTAINER Matthieu Brouillard [email protected] | |
LABEL version=3.8 | |
ENV GITBUCKET_HOME=/var/gitbucket | |
ENV GITBUCKET_APP=/opt/gitbucket/webapp | |
RUN mkdir -p $GITBUCKET_APP | |
RUN mkdir -p $GITBUCKET_HOME/plugins |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pre-requisite: | |
- git installed https://git-scm.com/download/win | |
- docker-machine installed | |
me@computer $ docker-machine rm default | |
me@computer $ docker-machine create -d virtualbox --virtualbox-memory="1024" --virtualbox-cpu-count="1" --virtualbox-disk-size="20480" --virtualbox-host-dns-resolver=true default | |
me@computer $ docker-machine stop default |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# A fatal error has been detected by the Java Runtime Environment: | |
# | |
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x5fe2c175, pid=5732, tid=0x00001ffc | |
# | |
# JRE version: Java(TM) SE Runtime Environment (8.0_102-b01) (build 1.8.0_102-ea-b01) | |
# Java VM: Java HotSpot(TM) Client VM (25.102-b01 mixed mode windows-x86 ) | |
# Problematic frame: | |
# C [jfxwebkit.dll+0x8ec175] | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javafx.application.Application; | |
import javafx.scene.Scene; | |
import javafx.scene.web.WebView; | |
import javafx.stage.Stage; | |
public class SimpleBrowser extends Application { | |
@Override | |
public void start(Stage stage) { | |
WebView wv = new WebView(); | |
wv.getEngine().load("http://localhost:8080/app.html"); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
REM ======================================================== | |
REM | |
REM This file is a helper to switch to different JDKs | |
REM It creates a directory symbolic link to %BASE_JDK_HOME%\current | |
REM the directory '%BASE_JDK_HOME%\current' should be part of your path | |
REM | |
REM ======================================================== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REM set window title based on open directory | |
SET WINDOW_TITLE=%~n1% | |
REM if current directory has a '.title' file, use it instead | |
IF EXIST %CD%/.title SET /P WINDOW_TITLE=<%CD%/.title | |
#REM finally set the window title | |
TITLE %WINDOW_TITLE% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_CLASSES_ROOT\Folder\shell\Open CMD here] | |
[HKEY_CLASSES_ROOT\Folder\shell\Open CMD here\command] | |
@="cmd.exe /k \"D:\\dev\\tools\\scripts\\bat\\cmdrc.cmd %L\"" |
OlderNewer