Remove unnamed images:
docker rmi $(docker images | grep "<none>" | awk '{ print $3 }')
Remove stopped containers:
docker rm $(docker ps -a -q)
| <?xml version="1.0" encoding="UTF-8"?> | |
| <profiles version="10"> | |
| <profile name="Android" version="10"> | |
| <setting id="org.eclipse.jdt.core.formatter.align_type_members_on_columns" value="false"/> | |
| <setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression" value="16"/> | |
| <setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant" value="16"/> | |
| <setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call" value="16"/> | |
| <setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation" value="16"/> | |
| <setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression" value="16"/> | |
| <setting id="org.eclipse.jdt.core.formatter.alignment_for_assignment" value="0"/> |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.3//EN" "http://www.puppycrawl.com/dtds/configuration_1_3.dtd"> | |
| <!-- | |
| This configuration file was written by the eclipse-cs plugin configuration editor | |
| --> | |
| <!-- | |
| Checkstyle-Configuration: android_checkstyle | |
| Description: none | |
| --> | |
| <module name="Checker"> |
| <?xml version="1.0"?> | |
| <!DOCTYPE suppressions PUBLIC | |
| "-//Puppy Crawl//DTD Suppressions 1.1//EN" | |
| "http://www.puppycrawl.com/dtds/suppressions_1_1.dtd"> | |
| <suppressions> | |
| <!-- Turn off all checks for some libraries. --> | |
| <suppress checks="." files="com[\\/]google[\\/]..*.java" /> | |
| <!-- Turn off header checks for some libraries. --> | |
| <suppress checks="Header" files=".*[\\/]android[\\/]fastroid[\\/].*\.java"/> |
| <html> | |
| <head> | |
| <script type="text/javascript"> | |
| window.onload = function() { | |
| var ids = []; | |
| if (!window.opener) { | |
| setMsg('You cannot open this page directly.'); | |
| return; | |
| } | |
| // Get parent's value from child. |
| package com.blogspot.ksoichiro.linktest; | |
| import android.text.Layout; | |
| import android.text.Spannable; | |
| import android.text.SpannableString; | |
| import android.text.Spanned; | |
| import android.text.TextUtils; | |
| import android.text.method.LinkMovementMethod; | |
| import android.text.style.ClickableSpan; |
| body { | |
| font-family: Roboto-Light, HiraKakuPro-W3, Helvetica, arial, sans-serif; | |
| font-size: 12px; | |
| line-height: 1.6; | |
| padding-top: 10px; | |
| padding-bottom: 10px; | |
| background-color: white; | |
| padding: 10px; } | |
| body > *:first-child { |
| #!/usr/bin/env bash | |
| apt-get update | |
| apt-get install -y git build-essential libssl-dev | |
| apt-get install -y curl | |
| curl -sSL https://get.rvm.io | bash -s stable | |
| source /usr/local/rvm/scripts/rvm | |
| rvm requirements | |
| rvm install 2.0.0-p353 |
| export DOCKER_HOST=tcp://localhost:4243 | |
| boot2docker status | |
| if [ $? -ne 0 ]; then | |
| boot2docker up | |
| boot2docker ssh "sudo modprobe vboxsf && mkdir -p $HOME && sudo mount -t vboxsf home $HOME" | |
| else | |
| echo "boot2docker is already running. Execute this manuallly:" | |
| echo 'boot2docker ssh "sudo modprobe vboxsf && mkdir -p $HOME && sudo mount -t vboxsf home $HOME"' | |
| fi |
Remove unnamed images:
docker rmi $(docker images | grep "<none>" | awk '{ print $3 }')
Remove stopped containers:
docker rm $(docker ps -a -q)
| #!/bin/bash | |
| # keystoreパスワードの復元テスト | |
| # | |
| # 下記の | |
| # Download now on gdrive, because gcode has deactivated downloads :( | |
| # というリンクから AndroidKeystoreBrute_v1.05.jar をダウンロードし | |
| # カレントディレクトリに置いて実行してください。 | |
| # | |
| # android-keystore-password-recover |