Skip to content

Instantly share code, notes, and snippets.

@hiroq
hiroq / sierra_iso.sh
Created October 1, 2016 10:06
Make Sierra iso image from macOS Sierra.app
hdiutil attach "/Applications/Install macOS Sierra.app/Contents/SharedSupport/InstallESD.dmg" -noverify -nobrowse -mountpoint /Volumes/esd
hdiutil create -o Sierra -size 7316m -layout SPUD -fs HFS+J
hdiutil attach Sierra.dmg -noverify -nobrowse -mountpoint /Volumes/iso
asr restore -source /Volumes/esd/BaseSystem.dmg -target /Volumes/iso -noprompt -noverify -erase
rm /Volumes/OS\ X\ Base\ System/System/Installation/Packages
cp -rp /Volumes/esd/Packages /Volumes/OS\ X\ Base\ System/System/Installation
cp -rp /Volumes/esd/BaseSystem.chunklist /Volumes/OS\ X\ Base\ System/
cp -rp /Volumes/esd/BaseSystem.dmg /Volumes/OS\ X\ Base\ System/
hdiutil detach /Volumes/esd
hdiutil detach /Volumes/OS\ X\ Base\ System
@hiroq
hiroq / AndroidManifest.xml
Last active August 29, 2015 14:19
Android StudioでAndroidAnnotations3.2を使う方法 ref: http://qiita.com/hiroq/items/2df437733e3fdfe0e507
<activity
android:name="com.teamhiroq.sample.aasample.MainActivity_"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
@hiroq
hiroq / file0.txt
Created August 18, 2014 03:43
CoreOSのタイムゾーンを変更 ref: http://qiita.com/hiroq/items/904dfe80a128ad9b52a1
core@ip-10-0-1-145 ~ $ date
Mon Aug 18 11:33:44 UTC 2014
@hiroq
hiroq / AndroidManifest.xml
Last active August 29, 2015 14:01
Android StudioでAndroidAnnotations3.0.1を使う方法(テンプレート) ref: http://qiita.com/hiroq/items/43106b3b03708612bf90
<activity
android:name="com.teamhiroq.sample.aasample.MainActivity_"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>