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
title Set mute | |
participant JavaScript | |
participant WebKitPlayer | |
participant IrisPlayer | |
note right of WebKitPlayer: readyState >= HAVE_METADATA | |
JavaScript ->+ WebKitPlayer: muted(true) | |
WebKitPlayer ->+ IrisPlayer: sesnSetAudioMute(true) | |
IrisPlayer -->- WebKitPlayer: |
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
title Set volume | |
participant JavaScript | |
participant WebKitPlayer | |
participant IrisPlayer | |
note right of WebKitPlayer: readyState >= HAVE_METADATA | |
JavaScript ->+ WebKitPlayer: volume() | |
WebKitPlayer ->+ IrisPlayer: sesnSetAudioVol() |
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
title Pause | |
participant JavaScript | |
participant WebKitPlayer | |
participant IrisPlayer | |
note right of WebKitPlayer: | |
networkState: NETWORK_LOADING | |
readyState: HAVE_ENOUGH_DATA | |
end note |
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
title Seeking | |
participant JavaScript | |
participant WebKitPlayer | |
participant IrisPlayer | |
note right of WebKitPlayer: | |
networkState: NETWORK_LOADING | |
readyState: HAVE_ENOUGH_DATA | |
end note | |
JavaScript ->+ WebKitPlayer: play() | |
WebKitPlayer -> IrisPlayer: sesnStart() |
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
title Playback - No errors - HLS or other network based source | |
participant JavaScript | |
participant WebKitPlayer | |
participant IrisPlayer | |
note right of WebKitPlayer: | |
networkState: NETWORK_IDLE | |
readyState: HAVE_ENOUGH_DATA | |
end note |
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
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |
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
set history filename ~/.gdb_history | |
set history save |
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
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" Maintainer: | |
" Amir Salihefendic | |
" http://amix.dk - [email protected] | |
" | |
" Version: | |
" 5.0 - 29/05/12 15:43:36 | |
" | |
" Blog_post: | |
" http://amix.dk/blog/post/19691#The-ultimate-Vim-configuration-on-Github |
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
# Reference https://github.com/durdn/cfg/blob/master/.gitconfig | |
# Dave's dot file | |
[color] | |
ui = auto | |
[color "branch"] | |
current = red reverse | |
local = blue | |
remote = green | |
[color "diff"] | |
meta = yellow bold |
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
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
# for examples | |
# If not running interactively, don't do anything | |
[ -z "$PS1" ] && return | |
# don't put duplicate lines in the history. See bash(1) for more options | |
# ... or force ignoredups and ignorespace | |
HISTCONTROL=ignoredups:ignorespace |