I using the LOOX U with using Arch Linux + LXDE. It's fairly comfortable.
$ sudo localectl set-x11-keymap jp pc106
$ logout
FROM java:8 | |
MAINTAINER Masanori Ohgita | |
# NOTE: This Dockerfile was forked from following projects. | |
# https://github.com/denlabo/dockerfile-android-project - Modified by Ohgita on denLabo LLC | |
# https://github.com/gfx/docker-android-project - Authored by FUJI Goro (MIT License) | |
ENV DEBIAN_FRONTEND noninteractive | |
# Install dependencies |
# For Android JellyBean and newer device | |
adb shell content update --uri content://settings/system --bind value:s:0.0 --where 'name="window_animation_scale"' | |
adb shell content update --uri content://settings/system --bind value:s:0.0 --where 'name="transition_animation_scale"' | |
adb shell content update --uri content://settings/system --bind value:s:0.0 --where 'name="animator_duration_scale"' | |
# For Android ICS and older device | |
adb shell "echo \"update system set value=0.0 where name='window_animation_scale';\" | sqlite3 /data/data/com.android.providers.settings/databases/settings.db" | |
adb shell "echo \"update system set value=0.0 where name='transition_animation_scale';\" | sqlite3 /data/data/com.android.providers.settings/databases/settings.db" |
#!/bin/sh | |
echo -e "-- Removing exited containers --\n" | |
docker ps --all --quiet --filter="status=exited" | xargs --no-run-if-empty docker rm --volumes | |
echo -e "\n\n-- Removing untagged images --\n" | |
docker rmi --force $(docker images | awk '/^<none>/ { print $3 }') | |
echo -e "\n\n-- Removing volume directories --\n" | |
docker volume rm $(docker volume ls --quiet --filter="dangling=true") |
machine: | |
environment: | |
# Path | |
PATH: "$PATH:/home/$USER/perl5/bin" | |
# cpanm - Install destination of libraries | |
PERL_CPANM_OPT: "--local-lib=/home/$USER/perl5" | |
# perl - Include path | |
PERL5LIB: "/home/$USER/perl5/lib/perl5:$PERL5LIB" | |
dependencies: |
machine: | |
java: | |
version: oraclejdk8 | |
environment: | |
# Java options | |
JAVA_OPTS: "-Xms512m -Xmx2048m" | |
# ADB options | |
ADB_INSTALL_TIMEOUT: 5000 | |
dependencies: |
#!/bin/bash | |
# Setting Script for Let's Encrypt Certificate for Dokku apps | |
# Path of Let's Encrypt command | |
PATH_LE="/root/letsencrypt/" | |
# Base domain of dokku apps | |
DOKKU_BASE_DOMAIN="example.com" | |
# App names |
function test () { | |
postToSlack('Hello!'); | |
} | |
function postToSlack (text) { | |
var SLACK_WEBHOOK_URL = 'https://hooks.slack.com/services/XXXXX/YYYYY/ZZZZZ'; |
#!/usr/bin/env perl | |
print "MySQL Database and User Generator\n"; | |
print "Input database name: "; | |
my $db_name = <STDIN>; | |
chomp $db_name; | |
if (length($db_name) <= 0) { | |
exit 0; | |
} |