Sandbox: Difference between revisions

From Peters wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 43: Line 43:
?>
?>
</syntaxhighlight>
</syntaxhighlight>
== UML test ==
<uml>
skinparam titleFontSize 12
skinparam titleFontStyle bold
!include plantuml/classdiagrams.iuml
title Ex 2 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>

Revision as of 20:03, 9 November 2014

__NONUMBEREDHEADINGS__

Chapter 1

Chapter 1.1

Chapter 2

Chapter 2.1

Chapter 2.2

Chapter 3

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:

root # emerge --changed-use --ask --oneshot x11-libs/qt-gui x11-libs/cairo
user $ pwd
A box with
code or any other pre-formatted text


Varning: Detta är en varning!


Notering: Detta är en notering.


Lite PHP kod:

<?php
    $v = "string";    // sample initialization
?>
html text
<?
    echo $v;         // end of php code
?>