mirror of https://codeberg.org/Sonoj/osamc.de
125 lines
4.3 KiB
HTML
125 lines
4.3 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
|
|
<title>reveal.js</title>
|
|
|
|
<link rel="stylesheet" href="css/reveal.css">
|
|
<link rel="stylesheet" href="css/theme/black.css">
|
|
|
|
<!-- Theme used for syntax highlighting of code -->
|
|
<link rel="stylesheet" href="lib/css/zenburn.css">
|
|
|
|
<!-- Printing and PDF exports -->
|
|
<script>
|
|
var link = document.createElement( 'link' );
|
|
link.rel = 'stylesheet';
|
|
link.type = 'text/css';
|
|
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
|
|
document.getElementsByTagName( 'head' )[0].appendChild( link );
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div class="reveal">
|
|
<div class="slides">
|
|
<section><h1>Non Session Manager</h1></section>
|
|
<section>
|
|
<a href="https://wiki.archlinux.org/index.php/Arch_User_Repository">Paketmanager</a> oder <a href="https://github.com/original-male/non">selbst kompilieren</a>
|
|
</section>
|
|
<section>
|
|
<ul>
|
|
<li>Ein System um Programme und Zustände zu speichern und wieder abzurufen</li>
|
|
<li>Alle Programme werden durch einen Server (GUI) gestartet</li>
|
|
<li>Alle Dateien werden in einem Session-Verzeichnis gespeichert</li>
|
|
</ul>
|
|
</section>
|
|
<section>
|
|
<h2>Konzept</h2>
|
|
"Eternal Programs" und "Data"
|
|
</section>
|
|
<section>
|
|
<h2>Dokumentation</h2>
|
|
<ul>
|
|
<li><a href="http://non.tuxfamily.org/wiki/Non%20Session%20Manager">NSM Webseite</a></li>
|
|
<li><a href="http://libremusicproduction.com/tutorials/modular-set-ups-concepts-and-practices-using-non-session-manager">LMP Anleitung</a></li>
|
|
</ul>
|
|
</section>
|
|
<section>
|
|
<h2>Pro</h2>
|
|
<ul>
|
|
<li>Funktioniert</li>
|
|
<li>Strenge Regeln</li>
|
|
<li>Archivierbarkeit</li>
|
|
<li>Lightweight</li>
|
|
<li>Netzwerktransparent</li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section>
|
|
<h2>Hmm...</h2>
|
|
<ul>
|
|
<li>Hat nicht direkt mit JACK zu tun</li>
|
|
<li>JackPatch Client mitgeliefert</li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section>
|
|
<h2>Contra</h2>
|
|
<ul>
|
|
<li>Noch zu wenig Clients</li>
|
|
<li>Clients implementieren falsch und "NSM ist schuld"</li>
|
|
<li>NTK ("nur" Referenzimplementierung)</li>
|
|
<li>Noch nicht genug User Level Dokumentation<br>(Commandline Parameter "Problem")</li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section>
|
|
<h2>Beispielprogramme</h2>
|
|
<ul>
|
|
<li><a href="https://github.com/original-male/non">Non Suite</a></li>
|
|
<li><a href="http://ardour.org/">Ardour</a></li>
|
|
<li><a href="https://github.com/rncbc">QStuff</a></li>
|
|
<li><a href="http://zynaddsubfx.sourceforge.net/">ZynAddSubFX</a></li>
|
|
<li><a href="https://github.com/diovudau/Laborejo">Laborejo2</a></li>
|
|
<li><a href="http://non.tuxfamily.org/wiki/ApplicationsSupportingNsm">s. Liste bei NON</a></li>
|
|
<li><strike>Carla</strike></li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section>
|
|
<h2>Für Entwickler</h2>
|
|
<ul>
|
|
<li>Server und Header: <a href="https://github.com/original-male/non">NON</a></li>
|
|
<li><a href="http://non.tuxfamily.org/wiki/Non%20Session%20Manager">Regelwerk</a></li>
|
|
<li>OSC</li>
|
|
<ul>
|
|
<li><a href="http://liblo.sourceforge.net/">liblo</a></li>
|
|
<li><a href="https://github.com/diovudau/pynsm2">pynsm2</a></li>
|
|
</ul>
|
|
</ul>
|
|
</section>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<script src="lib/js/head.min.js"></script>
|
|
<script src="js/reveal.js"></script>
|
|
|
|
<script>
|
|
// More info about config & dependencies:
|
|
// - https://github.com/hakimel/reveal.js#configuration
|
|
// - https://github.com/hakimel/reveal.js#dependencies
|
|
Reveal.initialize({
|
|
dependencies: [
|
|
{ src: 'plugin/markdown/marked.js' },
|
|
{ src: 'plugin/markdown/markdown.js' },
|
|
{ src: 'plugin/notes/notes.js', async: true },
|
|
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }
|
|
]
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|