- Lights: Elgato Key Lights (2, one as actual key light, one as fill light)
- Looking into these lights can cause fatigue after a while, which sucks if you're doing that all day.
- I managed to work around it by heavily dimming one light that is in my field of view and moving the other light out of my field of view.
- Microphone: Blue Snowball Ice
- Microphone pop filter
- Wall/ceiling mounts for camera and lights
- Camera: Sony a6000.
- This is one of multiple older Sony mirrorless cameras recommended for streaming.
- Whichever you buy, make sure the reviews mention that it can stay on
View vc.md
View about_mizchi_job.md
最新のステータス
転職しました。長らくのご愛顧誠にありがとうございました。
転職先をちょくちょく探しています。
興味ある方は twitter @mizchi へのリプライorDM、または mizchi2w@gmail.com まで。
View tab-design.html
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Document</title> | |
<style> | |
.tab { |
View webrtc_api.rst
WebRTC API コトハジメ
更新: | 2018-06-25 |
---|---|
作者: | @voluntas |
バージョン: | 0.0.0 |
URL: | https://voluntas.github.io/ |
View alotoffile.tar.gz.md
$ sudo apt install pigz
$ tar -I pigz -cf ${TARGET}.tar.gz ${SOURCE}
コア数の数だけスレッドが立つが、たいてい、ディスクが間に合ってないのでSSD、nvmeなどを使う
View ps.sh
# Set a simple prompt with an OS icon! | |
if [ `uname` = Darwin ]; then | |
SYSTEM_ICON="" | |
PS_COL=${PS_COL:="38;5;6"} | |
elif [ -n "`cat /proc/version | grep Microsoft`" ]; then | |
SYSTEM_ICON="" | |
PS_COL=${PS_COL:="38;5;70"} | |
elif [ `uname` = Linux ]; then | |
SYSTEM_ICON="" |
View 研修資料まとめ.md
エンジニア向け研修
- DMM.com(旧DMM.comラボ含む)
- DMM.comラボ16新卒エンジニア研修 - (2016/08/24)
- DMM.comの新卒技術研修がスタートしました! - (2019/04/25)
- Fringe81
- 新卒のセキュリティ研修用に使用したアプリケーションを公開します!【2020年度】 - (2020/04/16)
- GMOアドパートナーズ
- 新卒研修でDevOpsの歴史を語った件 - (2020/06/15)
- GMOインターネット
- 「Web 基礎」という講義をしました - (2019/05/17)
View clean-up-boot-partition-ubuntu.md
Safest way to clean up boot partition - Ubuntu 14.04LTS-x64, Ubuntu 16.04LTS-x64
Case I: if /boot is not 100% full and apt is working
1. Check the current kernel version
$ uname -r
View emojify.sh
#!/usr/bin/env bash | |
url=$1; | |
output=${2-output.png}; | |
size=${3-128}; | |
curl --silent -kL $url | convert - -resize ${size}x${size} $output; |
View reveal.js pdf print out.md
Chrome 上で reveal.js で作成したスライドを pdf 化する手順メモ
- URL に ?print-pdf を追加する
- CMD + P で印刷ダイアログを表示し、出力先を pdf に設定
- 出力
出力された pdf を確認し、リンクが表示されていないなど表示がおかしい場合は以下の事を試す(ここからが本題)
reveal.js/out.html の document.write している行をコメントアウトし、css/print/pdf.css を直接追加。
NewerOlder