- Disable Location Services
- Passcode Options -> Don't Add Passcode
- SetUp as New iPad
- Turn off iClound Drive
- Turn On Siri Later
- Don't Send
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
<?xml version="1.0" encoding="UTF-8"?> | |
<manifest> | |
<remote name="kbc" | |
fetch="https://github.com/kbc-developers" | |
revision="cm-13.0" /> | |
<project name="android_device_htc_m7wlj" path="device/htc/m7wlj" remote="kbc" /> | |
<project name="android_device_htc_m7-common" path="device/htc/m7-common" remote="kbc" /> | |
<project name="android_kernel_htc_msm8960" path="kernel/htc/msm8960" remote="kbc" /> | |
<project name="android_device_htc_msm8960-common" path="device/htc/msm8960-common" remote="kbc" /> |
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
/* http://meyerweb.com/eric/tools/css/reset/ | |
v2.0-modified | 20110126 | |
License: none (public domain) | |
*/ | |
html, body, div, span, applet, object, iframe, | |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
a, abbr, acronym, address, big, cite, code, | |
del, dfn, em, img, ins, kbd, q, s, samp, | |
small, strike, strong, sub, sup, tt, var, |
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
<ifModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase / | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteRule (.*) /index.html [QSA,L] | |
</ifModule> |
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 | |
## xlsxをunzipしてxmllint formatして再度zipしても読める事を確認 | |
# FLATTEN2の中身を直接書き換えて最後のzipコマンドを実行してもxlsxとして読める | |
ORIGINAL=time_sample.xlsx | |
FLATTEN1=flatten | |
FLATTEN2=reflatten | |
REZIP1=flatten.xlsx | |
REZIP1=reflatten.xlsx | |
rm -rf ${REZIP1} ${REZIP2} ${FLATTEN1} ${FLATTEN2} |