Skip to content

Instantly share code, notes, and snippets.

View TheWaWaR's full-sized avatar
🌀
Focusing

LingFeng TheWaWaR

🌀
Focusing
View GitHub Profile
@TheWaWaR
TheWaWaR / iOS-Getting-Started.md
Last active December 15, 2015 20:28
iOS官方起步教程阅读笔记

马上着手开发 iOS 应用程序

  • 创建: [2013-3-15, 10:00]

A. 介绍

你将学到

  1. Objective-C 基础知识
  2. 创建一个简单的App并进行测试
  3. 如何将应用发布到App Store

A. 设置

@TheWaWaR
TheWaWaR / arch_install.sh
Last active December 10, 2015 01:48 — forked from anonymous/arch_install
Arch install Script
passwd
systemctl enable sshd.service
systemctl start sshd.service
parted -s /dev/sda mklabel gpt
parted -s /dev/sda mkpart "primary" "fat16" "50MB" "60MB"
parted -s /dev/sda mkpart "primary" "ext4" "1%" "99%"
parted -s /dev/sda set 1 bios_grub on
mkfs.ext4 /dev/sda2