更新: | 2022-03-18 |
---|---|
作者: | @voluntas |
バージョン: | 2022.1 |
URL: | http://voluntas.github.io/ |
- CARTA HOLDINGS(旧VOYAGE GROUP)
- 技術広報が新卒研修<Open AIハッカソン>をスパイしてみた - (2023/04/11)
- @t_wadaに学ぶテスト駆動開発【CARTA 23新卒研修】 - (2023/04/19)
- 【新卒研修】監修者@t_wadaと読む!プログラマが知るべき97のこと読書会 - (2024/04/09)
- Classi
- 当たり前にリリースしていく ~ 新卒研修編 - (2021/05/20)
- リモートワークのための質問力向上研修を実施しました - (2021/12/07)
- CyberZ
- 良いコードとは何か - エンジニア新卒研修 スライド公開 - (2021/04/27)
日時: | 2020-04-21 |
---|---|
作: | 時雨堂 |
バージョン: | 2020.1 |
URL: | https://shiguredo.jp/ |
日々追記していきます。
Sora Labo と Momo の使い方は把握している前提の資料です
- Sora Labo を利用します
- macOS 10.15 であること
- ブラウザではまだ確認できません
『ハイパフォーマンス ブラウザネットワーキング』
本書では、ブラウザに関連するネットワーク技術について扱っている。
その範囲は広く、TCP/IP や TLS のような土台となるような知識も、HTTP/2.0 や WebRTC のような最新の知識も、両方扱っている。
そしてそれらを、パフォーマンスという文脈で説明していく。パフォーマンス向上のために、どのようなことをするのか、そしてそれはなぜなのかを、解説していく。そしてそれを理解するためには、様々なネットワークプロトコルについて、その特徴や制限を知らなければならない。だから、パフォーマンスに関する本質的な知識を学んでいくことが、ネットワークについて学ぶことにもなる。
1章 レイテンシ・帯域幅入門
ウェブサイトのスピードの重要性は、計測によって証明されている。速ければ速いほど、エンゲージメントやコンバージョンが高まる。だから、スピードは機能なのだと言える。
100ミリ秒以上の遅延がシステムで発生すると、人間はそれを知覚する。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
kill Unity Hub process continuously after UnityEditor is started. | |
they have no reason to keep living after starting UnityEditor. | |
To:Unity, please stop UnityHub process until user need to use that. and never use macOS's status bar. please add "quit Hub after UnityEditor startd" option. | |
or, please design more small UnityInstaller app and UnityProjectViewer app separately. | |
*/ | |
using System.Diagnostics; | |
using UnityEditor; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/zsh | |
# フォントとか色々設定 | |
font="/System/Library/Fonts/ヒラギノ角ゴシック W3.ttc" | |
output_path="/tmp" | |
pointsize=100 | |
image_size="1024x150" | |
background_color="black" | |
fill_color="white" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <esp_camera.h> | |
#include <FastLED.h> | |
#include <SPI.h> | |
#include <SD.h> | |
#include <M5Unified.h> | |
#define KEY_PIN 1 | |
#define LED_PIN 2 | |
#define POWER_GPIO_NUM 18 |