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
    
  
  
    
  | @echo off | |
| setlocal enabledelayedexpansion | |
| REM ユーザー名を取得 | |
| set USERNAME=%USERNAME% | |
| REM Discordのプロセスをキル | |
| taskkill /F /IM Discord.exe /T | |
| REM 5秒待つ | 
これは時雨堂が 2023 年 9 月 14 日 (木) 14:00-18:00 で開催を予定しているオンラインイベント WebRTC 入門 v2023-09 の 講師用 の資料であり、 参加者用の資料ではありません。
時雨堂 WebRTC 入門 オンラインイベント v2023-09
ChatGPT がある今、学ぼうと思えば好きなだけ学べる時代がきています。
2020/5/31追記:
自分用のメモに書いていたつもりだったのですが、たくさんのスターを頂けてとても嬉しいです。
と同時に、書きかけで中途半端な状態のドキュメントをご覧いただくことになっており、大変心苦しく思っています。
このドキュメントを完成させるために、今後以下のような更新を予定しています。
- TODO部分を埋める
 - 書籍を基にした理論・原則パートと、実装例パートを分割
- 現在は4層のレイヤそれぞれごとに原則の確認→実装時の課題リスト→実装例という構成ですが、同じリポジトリへの言及箇所がバラバラになってしまう問題がありました。更新後は、実装時の課題リストを全て洗い出した後にまとめて実装を確認する構成とする予定です。
 
 
2021/1/22追記:
  
    
      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
    
  
  
    
  | raspberry pi livestream to YouTubeLive | |
| /boot/run.sh | |
| /boot/youtube.sh | |
| /etc/rc.local | |
| additional line to /etc/fstab | 
  
    
      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
    
  
  
    
  | // +build windows | |
| package screen | |
| import ( | |
| "fmt" | |
| "image" | |
| "reflect" | |
| "syscall" | |
| "unsafe" | 
  
    
      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
    
  
  
    
  | func openbrowser(url string) { | |
| var err error | |
| switch runtime.GOOS { | |
| case "linux": | |
| err = exec.Command("xdg-open", url).Start() | |
| case "windows": | |
| err = exec.Command("rundll32", "url.dll,FileProtocolHandler", url).Start() | |
| case "darwin": | |
| err = exec.Command("open", url).Start() | 
  
    
      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
    
  
  
    
  | package main | |
| import ( | |
| "fmt" | |
| "unsafe" | |
| ) | |
| /* | |
| void modifyN(void* p, int n) { | |
| *(int *)p = n; | 
  
    
      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
    
  
  
    
  | ' | |
| ' Ross XPression script to generate a Map of your location from Google static maps API | |
| ' | |
| ' Requires: | |
| ' Text1 object on scene as input for your location | |
| ' Quad1 object on scene to apply the texture | |
| ' | |
| ' System requirements: | |
| ' Ross XPression, connection to internet, MSXML2, ADODB and FSO available | |
| ' | 
NewerOlder