Mac のターミナルで htpasswd の中身を生成する

ターミナルで htpasswd の中身を生成できると知ったので調べてみるなっしー。まずはヘルプを表示。

$ htpasswd -h
Usage:
	htpasswd [-cmdpsD] passwordfile username
	htpasswd -b[cmdpsD] passwordfile username password

	htpasswd -n[mdps] username
	htpasswd -nb[mdps] username password
 -c  Create a new file.
 -n  Don't update file; display results on stdout.
 -m  Force MD5 encryption of the password (default).
 -d  Force CRYPT encryption of the password.
 -p  Do not encrypt the password (plaintext).
 -s  Force SHA encryption of the password.
 -b  Use the password from the command line rather than prompting for it.
 -D  Delete the specified user.
On other systems than Windows, NetWare and TPF the '-p' flag will probably not work.
The SHA algorithm does not use a salt and is less secure than the MD5 algorithm.

続きを読む Mac のターミナルで htpasswd の中身を生成する

りすぞう は man を おぼえた !

マニュアルは本家で確認しなさい、という教えのもと、UNIX コマンドのマニュアルはどこにあるのかさまよっていたら梨もどきがなんか言ってるなっしー。

ふんふん。

続きを読む りすぞう は man を おぼえた !

Fork me on GitHub リボンをつける

ページの右上とかに表示する「Fork me on GitHub」と書かれたリボンは GitHub で用意してくれています。

With the rollout of GitHub Pages, why not show the world that you collaborate on GitHub? I’ve prepared these ribbons that you can overlay on your site by copying and pasting the appropriate snippet into your site’s HTML. Make sure to change the URL in the link to contain your username instead of “you”.

GitHub Ribbons

赤・緑・黒・黄・灰・白が用意されていて、他の色にしたい場合は media/ribbons at master · github/media から PSD ファイルをダウンロードすることができます。

続きを読む Fork me on GitHub リボンをつける

GitHub でプルリクエストをマージする

初リポジトリに初プルリクエストもらって初マージしたので記念パピコなっしー!GitHub 初心者のこいわさんと私でぷるぷるしたなっしーよ!なぜかふなっしーのものまねで 2 時間くらいやりとりしてたなっしー。ちょっと意味がわからないなっしー。

そもそも私が初リポジトリ作るはめになったのもこいわさんのせいなっしー!おかげさまでいろいろ覚えられたので本当に感謝してるなっしー!ありがとなっしー!!

続きを読む GitHub でプルリクエストをマージする

GitHub に新しいリポジトリを作成する

Create a New Repository から作成。

You can create a new repository on your personal account or any organization where you have sufficient permissions.

Creating a new repository · GitHub Help

Owner
リポジトリを作成するアカウントを選択。
Repository name
リポジトリの名前。
Description
リポジトリの説明。空欄のままでもよい。
Public / Private
Private は課金必須。
Initialize this repository with a README
README.md を自動生成するかどうか。チェックを入れると自動生成される。
Add .gitignore
.gitignore を自動生成するかどうか。リストから選択できます。
Add a license
リポジトリのライセンスを設定できる。

続きを読む GitHub に新しいリポジトリを作成する