Skip to content

Instantly share code, notes, and snippets.

View rch850's full-sized avatar
:shipit:
Delivery every week

rch850 rch850

:shipit:
Delivery every week
View GitHub Profile
@cat-in-136
cat-in-136 / COCOA_Counter.ino
Last active September 20, 2023 01:14
COCOA Counter for M5Stack 〜新型コロナウイルス接触確認アプリが周囲に何個あるか数えてみるを M5Stack に移植してみた〜
// based on https://qiita.com/coppercele/items/fef9eacee05b752ed982#m5stickc%E3%83%90%E3%83%BC%E3%82%B8%E3%83%A7%E3%83%B3
#define ENABLE_M5STACK_UPDATER
#include <Arduino.h>
#include <M5Stack.h>
#ifdef ENABLE_M5STACK_UPDATER
#include <M5StackUpdater.h>
#endif
#include <BLEDevice.h>
@Pittan
Pittan / ng-japan-2018.md
Last active June 18, 2018 02:25
ng-japan 2018の雑なメモ

ng-japan 2018

2018/06/16 13:00 ~ @ Google Japanオフィス

13:00 Keynote

Momentum

今のコミュニティーの状況など。ngGirlsの紹介など。 600以上のAngularプロジェクトがGoogle社内で動いている。

6.0.0

@halllllll
halllllll / utility.go
Last active March 4, 2021 00:21
go utilities for competitive programming
package main
import (
"bufio"
"fmt"
"os"
"reflect"
"strconv"
)
@forabi
forabi / Webpack 2.0.7-beta vs Rollup
Last active January 28, 2020 08:54
Webpack 2 vs Rollup
❯ rollup --version
rollup version 0.25.3
❯ time rollup -c ./rollup.js
rollup -c ./rollup.js 4.65s user 0.22s system 118% cpu 4.131 total
❯ time webpack
Hash: ebb00bbccd954c114d3c
Version: webpack 2.0.7-beta
Time: 3623ms
@hashrock
hashrock / diag.md
Last active February 26, 2024 05:51
作図系ツール・ライブラリまとめ

シーケンス図とかフローチャートをしごとで描画することになった場合、 テキストから生成できたら楽なので、それ系のツールまとめ

GraphViz

http://www.graphviz.org/

  • C製
  • Doxygen, Moinmoinなどと連携可能
  • ブロック図、クラス図、ネットワーク図など
@voluntas
voluntas / webrtc.rst
Last active April 30, 2024 14:20
WebRTC コトハジメ
@ayakix
ayakix / IsMisDo100Yen
Last active August 29, 2015 14:16
ミスドが100円セール中かどうかをチェックするAPI
function doGet(e) {
var json = {"isSale": false};
var response;
try {
response = UrlFetchApp.fetch("http://www.misterdonut.jp/sale/index.html");
} catch(err) {
return createOutput(json);
}
var regexp = /(\d+)年(\d+)月(\d+)日.*(\d+)月(\d+)日/;
@libero18
libero18 / setup.yml
Created January 17, 2015 05:02
ansible-playbook setup.yml
---
- hosts: 127.0.0.1
connection: local
tasks:
- name: Make sure using latest Homebrew
shell: "brew update"
- name: Update already-installed formula
shell: "brew upgrade"
% git clone https://github.com/keiko713/rails-todo.git
% cd rails-todo
% bundle install --without production
% foreman run bundle exec rake db:migrate
% foreman start
localhost:5000 で確認する。