2018/06/16 13:00 ~ @ Google Japanオフィス
今のコミュニティーの状況など。ngGirlsの紹介など。 600以上のAngularプロジェクトがGoogle社内で動いている。
// 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> |
package main | |
import ( | |
"bufio" | |
"fmt" | |
"os" | |
"reflect" | |
"strconv" | |
) |
❯ 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 |
シーケンス図とかフローチャートをしごとで描画することになった場合、 テキストから生成できたら楽なので、それ系のツールまとめ
更新: | 2024-05-20 |
---|---|
作者: | @voluntas |
バージョン: | 2024.1 |
URL: | https://voluntas.github.io/ |
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+)日/; |
--- | |
- 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 で確認する。 |