Sandbox: Difference between revisions
mNo edit summary |
|||
Line 76: | Line 76: | ||
</uml> | </uml> | ||
== Graphviz test == | |||
<graphviz renderer='neato' caption='Graph for example no. 2'> | |||
graph example2 { | |||
run -- intr; | |||
intr -- runbl; | |||
runbl -- run; | |||
run -- kernel; | |||
kernel -- zombie; | |||
kernel -- sleep; | |||
kernel -- runmem; | |||
sleep -- swap; | |||
swap -- runswap; | |||
runswap -- new; | |||
runswap -- runmem; | |||
new -- runmem; | |||
sleep -- runmem; | |||
} | |||
</graphviz> |
Revision as of 14:34, 11 October 2014
__NUMBEREDHEADINGS__
Videokoda med HandbrakeCLI:
HandBrakeCLI -i /Volumes/B-R -t 51 -o Movie.mkv -e x264 --x264-preset slow --x264-profile high -x level=4.1 -q 16 -a 4 -E copy -w 1280 --loose-anamorphic -f libmkv
Introducing: Sandbox
Indented text.
This is the place to experiment with the MediaWiki markup and markup, or non-markup.
Ett Gentoo emerge kommando:
A box with code or any other pre-formatted text
Lite PHP kod:
<?php
$v = "string"; // sample initialization
?>
html text
<?
echo $v; // end of php code
?>
UML test
<uml>
skinparam titleFontSize 12 skinparam titleFontStyle bold !include plantuml/classdiagrams.iuml title Ex 1 BbHs, 2 BbL1, 1 cell and 1 rls skinparam shadowing false skinparam packageStyle rect hide circle
class BbHs_1 #WBBL2_color class BbL1_1 #WBBL1_color { } note bottom of BbL1_1: BbL1CellMaster for cell y class BbL1_2 #WBBL1_color { } note bottom of BbL1_2: rls x in cell y class CCHs class HSPDSCH class HSSCCH class HSDPCCH
'BbHs_1 -down-> BbL1_1 : WidciHsScch, WidciHsPdsch (user x) BbHs_1 -down-> BbL1_1 : WidciHsPdsch (user x) BbL1_1 -up-> BbHs_1 : WidciHsPower (cell y) BbL1_2 -up-> BbHs_1 : WidciHsPower (cell y) BbHs_1 -down-> BbL1_2 : WidciSchedInfo (user x) 'BbL1_2 -up-> BbHs_1 : WidciHsDpcchSyncInfo, WidciHsDpcchSyncInfo, WidciHsDpcchCqi, WidciHsMcInfo (user x) BbL1_2 -up-> BbHs_1 : WidciHsDpcchSyncInfo (user x)
BbL1_1 <-down-> CCHs
BbL1_1 -down-> HSSCCH
BbL1_1 -down-> HSPDSCH
HSDPCCH -up-> BbL1_2
</uml>
Graphviz test
<graphviz renderer='neato' caption='Graph for example no. 2'> graph example2 {
run -- intr; intr -- runbl; runbl -- run; run -- kernel; kernel -- zombie; kernel -- sleep; kernel -- runmem; sleep -- swap; swap -- runswap; runswap -- new; runswap -- runmem; new -- runmem; sleep -- runmem;
} </graphviz>