Skip to content

Instantly share code, notes, and snippets.

View func-hs's full-sized avatar

松舘 剛志 func-hs

  • Sapporo, Japan
View GitHub Profile
@voluntas
voluntas / webrtc.rst
Last active September 15, 2021 11:16
WebRTC 資料まとめ
@voluntas
voluntas / edge_webrtc.rst
Last active May 12, 2019 08:48
Edge と WebRTC について
@voluntas
voluntas / naze_erlang.rst
Last active October 31, 2023 03:33
なぜ Erlang/OTP を使い続けるのか
" plugin directory
let s:dein_dir = expand('~/.vim/bundle')
" dein.vim
let s:dein_repo_dir = s:dein_dir . '/repos/github.com/Shougo/dein.vim'
" download dein.vim if it's not installed
if &runtimepath !~# '/dein.vim'
if !isdirectory(s:dein_repo_dir)
execute '!git clone https://github.com/Shougo/dein.vim' s:dein_repo_dir
@voluntas
voluntas / webrtc_sfu_dev.rst
Last active June 27, 2024 00:30
WebRTC SFU コトハジメ

WebRTC SFU コトハジメ

日時:2023-12-03
作:voluntas
バージョン:2023.1
url:https://voluntas.github.io

この記事が良いと思ったらこの記事に Star をお願いします

@voluntas
voluntas / webrtc.rst
Last active June 27, 2024 02:25
WebRTC コトハジメ
@shyouhei
shyouhei / gist:0b7dab3e75bfbf96f895
Created March 31, 2015 15:26
新社会人の人が留意すべき事項

新社会人に必須である:

  • 勤務先との書面による「労働契約」。業務委託契約等NG。
  • 多寡を問わず毎月払われる給料。遅配等論外である。
  • 健康保険。
  • 労災保険。
  • 雇用保険。
  • 三六協定。
  • 年次有休。
  • 育児休業の制度があり取得者がいる会社に勤務する。
@pasberth
pasberth / Implicit.hs
Created May 26, 2013 10:59
暗黙の型変換
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE TypeSynonymInstances #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE FlexibleContexts #-}
module Control.Implicit where
import qualified Data.Text as T
import qualified Data.ByteString.Char8 as BS
import qualified Data.ByteString.Lazy.Char8 as BSL
@kagamilove0707
kagamilove0707 / Sort.hs
Created May 18, 2013 00:39
ちょまどさんに触発されてHaskellでいくつかのソートアルゴリズムを書いてみました。
module Sort (
bubbleSort,
mergeSort,
quickSort) where
import Data.List (splitAt)
bubbleSort, mergeSort, quickSort :: Ord a => [a] -> [a]
bubbleSort xs = foldr ((.) bubbleSort' . flip const) xs [0..length xs]
anonymous
anonymous / gist:5546134
Created May 9, 2013 07:49
(defun a-ikutu (lst)
(length (filter #'(lambda (x) (eq x 'a)) lst)))
;; filter関数
(defun filter (pred lst)
(cond ((null lst) nil)
((funcall pred (car lst))
(cons (car ls) (filter pred (cdr lst))))
(t (filter pred (cdr lst)))))