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
[ro.secure]: [1] | |
[ro.allow.mock.location]: [0] | |
[ro.debuggable]: [0] | |
[persist.service.adb.enable]: [1] | |
[ro.factorytest]: [0] | |
[ro.serialno]: [990000590634905] | |
[ro.bootmode]: [normal] | |
[ro.baseband]: [M0002250] | |
[ro.carrier]: [COMMON] | |
[ro.bootloader]: [0] |
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
# これからWaitForConnectionすればいい感じ | |
from java.io import File | |
from java.net import URL | |
from java.net import URLClassLoader | |
import jarray | |
urlClassLoader=URLClassLoader(jarray.array([File("ddmlib.jar").toURL()], URL)) | |
AndroidDebugBridge=urlClassLoader.loadClass("com.android.ddmlib.AndroidDebugBridge") | |
bridge = AndroidDebugBridge.getBridge() |
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
# -*- coding:utf-8 -*- | |
# author :Kazushige TAKEUCHI(@myb1126) | |
import sys | |
import os | |
# おまじない1 | |
srcroot = os.path.dirname(__file__) | |
sys.path.append(srcroot) |
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
#-*- coding : utf-8 -*- | |
import sys | |
import time | |
def _fizzbuzz_decrim(x): |
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
''' | |
Created on 2013/08/24 | |
@author: miyabi | |
''' | |
import argparse | |
import sys | |
import os |
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
find * | grep .mbbps|xargs open |
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
debug.exception-trace = 1 | |
dev.cdrom.autoclose = 1 | |
dev.cdrom.autoeject = 0 | |
dev.cdrom.check_media = 0 | |
dev.cdrom.debug = 0 | |
dev.cdrom.info = CD-ROM information, Id: cdrom.c 3.20 2003/12/17 | |
dev.cdrom.info = | |
dev.cdrom.info = drive name: | |
dev.cdrom.info = drive speed: | |
dev.cdrom.info = drive # of slots: |
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
# python 2.7.3 | |
char_array = [ | |
['.','@','-','_','/',':','~','1'], | |
['a','b','c','A','B','C','2'], | |
['d','e','f','D','E','F','3'], | |
['g','h','i','G','H','I','4'], | |
['j','k','l','J','K','L','5'], | |
['m','n','o','M','N','O','6'], | |
['p','q','r','s','P','Q','R','S','7'], |
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
--- | |
- hosts: webservers | |
user: miyabi | |
sudo: True | |
tasks: | |
- name: backupdate | |
command: date +"%Y%m%d%H%M%S" | |
register: execdate | |
- name: list /var/log/ | |
command: find /var/log/ -type f |
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
#!/bin/bash -x | |
# ----- user variable definition ----- | |
inventory="inventories/development" | |
playbook="./playbook.yml" | |
exc_direct=1 | |
flg_step=1 |
OlderNewer