Skip to content

Instantly share code, notes, and snippets.

View yukkie's full-sized avatar

Yukihiro Nagano yukkie

  • Japan
View GitHub Profile
@nnguyen168
nnguyen168 / address_book.json
Created May 7, 2020 17:04
JSON example to model an address book
{
"people": [
{
"name": "John Doe",
"id": 1,
"email": "john.doe@gmail.com",
"phoneType": "Mobile",
"phoneNumbers": [
{
"number": "1-541-754-3010",
@voluntas
voluntas / mqtt.rst
Last active March 1, 2023 06:47
MQTT とはなんだったのか

MQTT とはなんだったのか

更新

2017-05-09

作者

@voluntas

バージョン

3.14

URL

http://voluntas.github.io/

MQTT をググって調べた人向け

@uasi
uasi / git-svn.markdown
Last active March 5, 2024 07:06
git-svn の使い方メモ

git-svn の使い方メモ

git-svn の使い方をメモする。他によいプラクティスがあれば指摘していただけるとありがたい。

用語

SVN のブランチと git のブランチが混在しているため、ここではブランチという語を以下のように区別する。

  • ブランチ、 SVN ブランチ:$SVN_REPO/branches 以下にあるディレクトリ
  • ローカルブランチ:git のローカルブランチ
  • リモートブランチ:git のリモートブランチ