- 2人1組になってプログラムを書く
- 書く人(ドライバー)と、横で考える人(ナビゲーター)は随時入れ替える
- コーディングするときは必ず何を書こうとしているのか喋りながら書く
- 15分の作業が終わる前にgit commitして、速やかに次のペアに席を譲る
- コーディング中のペア以外の人達は以下の様に何でも良いのでその場で口を出して良い。ただし、質問が優先されるべき。
- 技術的な質問(このメソッド何なの?みたいな)
Load up Terminal (Applications > Utilities > Terminal.app) and type the following. | |
sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.mDNSResponder.plist | |
To turn it back on, just do the opposite: | |
sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.mDNSResponder.plist |
#!/bin/sh | |
PATH=$PATH:~ | |
echo "Creating digests for $1" | |
<?php | |
// Copyright (c) HARUYAMA Seigo | |
// | |
// Permission is hereby granted, free of charge, to any person obtaining a copy | |
// of this software and associated documentation files (the "Software"), to deal | |
// in the Software without restriction, including without limitation the rights | |
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
// copies of the Software, and to permit persons to whom the Software is furnished | |
// to do so, subject to the following conditions: | |
// |
#include <M5StickC.h> | |
// https://github.com/T-vK/ESP32-BLE-Keyboard | |
#include <BleKeyboard.h> | |
BleKeyboard bleKeyboard; | |
bool connected = false; | |
struct KeyConfig { | |
String name; | |
String example; |