<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet href="/blog/befehl/templates/default/atom.css" type="text/css" ?>
<feed
   xmlns="http://www.w3.org/2005/Atom"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <link href="http://195.214.216.196/feeds/atom.xml" rel="self" title="Soni's Blog" type="application/x.atom+xml" />
    <link href="http://dthsoni.magix.net/blog/befehl/"                        rel="alternate"    title="Soni's Blog" type="text/html" />
    <link href="http://dthsoni.magix.net/blog/befehl/rss.php?version=2.0"     rel="alternate"    title="Soni's Blog" type="application/rss+xml" />
    <title type="html">Soni's Blog</title>
    <subtitle type="html"></subtitle>
    <icon>http://dthsoni.magix.net/blog/befehl/templates/default/img/magix_logo.gif</icon>
    <id>http://dthsoni.magix.net/blog/befehl/</id>
    <updated>2007-08-10T00:03:30Z</updated>
    <generator uri="http://www.s9y.org/" version="0.9.1">Serendipity 0.9.1 - http://www.s9y.org/</generator>
    <dc:language>de</dc:language>
    
<entry>
    <link href="http://dthsoni.magix.net/blog/befehl/archives/5-+++-PASCAL-+++-Zufallszahlen-2.html" rel="alternate" title="+++ PASCAL +++ Zufallszahlen 2" />
    <author>
        <name>dthsoni</name>
        <email>nospam@example.com</email>
    </author>

    <published>2007-08-09T23:50:34Z</published>
    <updated>2007-08-10T00:03:30Z</updated>
    <wfw:comment>http://dthsoni.magix.net/blog/befehl/wfwcomment.php?cid=5</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://dthsoni.magix.net/blog/befehl/rss.php?version=atom1.0&amp;type=comments&amp;cid=5</wfw:commentRss>
    <id>http://dthsoni.magix.net/blog/befehl/archives/5-guid.html</id>
    <title type="html">+++ PASCAL +++ Zufallszahlen 2</title>
    <content type="xhtml" xml:base="http://dthsoni.magix.net/blog/befehl/">
        <div xmlns="http://www.w3.org/1999/xhtml">
<span style="color: rgb(255, 255, 0); font-weight: bold;">PROGRAM</span> Zufallszahl2;<br /><span style="font-weight: bold; color: rgb(255, 255, 0);">USES</span> crt;<br /><span style="color: rgb(255, 255, 0); font-weight: bold;">CONST</span> max = 8;<br /><span style="font-weight: bold; color: rgb(255, 255, 0);">TYPE</span> TFeld = <span style="color: rgb(51, 102, 255); font-weight: bold;">array</span> [1..max] of <span style="color: rgb(255, 0, 255);">byte</span>;<br /><span style="font-weight: bold; color: rgb(255, 255, 0);">VAR</span> feld : TFeld;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; i, j, zahl : <span style="color: rgb(255, 0, 255);">byte</span>;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; gleich : <span style="color: rgb(255, 0, 255);">boolean</span>;<br /><br /><span style="color: rgb(255, 255, 0); font-weight: bold;">BEGIN</span><br />&#160; textattr := 30;<br />&#160; clrscr;<br />&#160; <br />&#160; <span style="color: rgb(255, 102, 0); font-weight: bold;">For</span> i := 1 <span style="font-weight: bold; color: rgb(255, 102, 0);">To</span> max <span style="color: rgb(255, 102, 0); font-weight: bold;">Do</span> feld[i] := 0;<br /><br />&#160; Randomize;<br /><br />&#160; <span style="font-weight: bold; color: rgb(255, 102, 0);">For </span><span style="font-weight: bold; color: rgb(255, 255, 0);">i</span> := 1 <span style="color: rgb(255, 102, 0); font-weight: bold;">To</span> max <span style="color: rgb(255, 102, 0); font-weight: bold;">Do</span><br />&#160;&#160;&#160; <span style="color: rgb(192, 192, 192); font-weight: bold;">begin</span><br />&#160;&#160;&#160;&#160;&#160; <span style="font-weight: bold; color: rgb(51, 153, 102);">Repeat</span><br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; gleich := false;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; zahl := random(max)+1;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span style="color: rgb(255, 102, 0); font-weight: bold;">For</span> j := 1 <span style="font-weight: bold; color: rgb(255, 102, 0);">To</span> <span style="color: rgb(255, 255, 0); font-weight: bold;">i</span> <span style="color: rgb(255, 102, 0); font-weight: bold;">Do</span><br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span style="font-weight: bold; color: rgb(153, 204, 0);">If</span> (zahl=feld[j]) <span style="font-weight: bold; color: rgb(153, 204, 0);">Then</span><br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span style="font-weight: bold; color: rgb(153, 153, 153);">begin</span><br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160; &#160;&#160;&#160; gleich := true;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160; &#160;&#160; break;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160; <span style="font-weight: bold; color: rgb(153, 153, 153);">end;</span><br />&#160;&#160;&#160;&#160;&#160; <span style="color: rgb(51, 153, 102); font-weight: bold;">Until</span> gleich = false;<br />&#160;&#160;&#160;&#160;&#160; feld[i] := zahl;<br />&#160;&#160;&#160;&#160;&#160; write(' ', feld[i]);<br />&#160;&#160;<span style="color: rgb(153, 153, 153); font-weight: bold;">&#160; end;</span><br /><br />&#160; ReadLn;<br /><span style="font-weight: bold; color: rgb(255, 255, 0);">END.</span>        </div>
    </content>
</entry>
<entry>
    <link href="http://dthsoni.magix.net/blog/befehl/archives/4-+++-Multiply-+++-Ironbreaker.html" rel="alternate" title="+++ Multiply +++ Ironbreaker" />
    <author>
        <name>dthsoni</name>
        <email>nospam@example.com</email>
    </author>

    <published>2007-08-07T18:06:29Z</published>
    <updated>2007-08-07T18:09:32Z</updated>
    <wfw:comment>http://dthsoni.magix.net/blog/befehl/wfwcomment.php?cid=4</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://dthsoni.magix.net/blog/befehl/rss.php?version=atom1.0&amp;type=comments&amp;cid=4</wfw:commentRss>
    <id>http://dthsoni.magix.net/blog/befehl/archives/4-guid.html</id>
    <title type="html">+++ Multiply +++ Ironbreaker</title>
    <content type="xhtml" xml:base="http://dthsoni.magix.net/blog/befehl/">
        <div xmlns="http://www.w3.org/1999/xhtml">
Mein anderer Blog bei <span style="color: rgb(255, 153, 0);">Multiply</span> (<a href="http://multiply.com" target="_blank"><span style="color: rgb(255, 255, 0);">http://www.multiply.com</span></a>)<br /><br /><span style="color: rgb(0, 255, 0); font-weight: bold;">+++++++++++++++++++++++++++</span><br /><span style="color: rgb(0, 255, 0); font-weight: bold;">+</span><span style="text-decoration: underline;">&#160; </span><a href="http://ironbreaker.multiply.com" target="_blank" style="text-decoration: underline;"><span style="color: rgb(255, 255, 0);">http://ironbreaker.multiply.com</span></a><span style="text-decoration: underline;">&#160; </span><span style="color: rgb(0, 255, 0); font-weight: bold;">+</span><br /><span style="font-weight: bold; color: rgb(0, 255, 0);">+++++++++++++++++++++++++++</span>        </div>
    </content>
</entry>
<entry>
    <link href="http://dthsoni.magix.net/blog/befehl/archives/3-+++-Pascal-+++-Zufallszahlen-1.html" rel="alternate" title="+++ Pascal +++ Zufallszahlen 1" />
    <author>
        <name>dthsoni</name>
        <email>nospam@example.com</email>
    </author>

    <published>2007-08-07T17:47:48Z</published>
    <updated>2007-08-10T00:04:55Z</updated>
    <wfw:comment>http://dthsoni.magix.net/blog/befehl/wfwcomment.php?cid=3</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://dthsoni.magix.net/blog/befehl/rss.php?version=atom1.0&amp;type=comments&amp;cid=3</wfw:commentRss>
    <id>http://dthsoni.magix.net/blog/befehl/archives/3-guid.html</id>
    <title type="html">+++ Pascal +++ Zufallszahlen 1</title>
    <content type="xhtml" xml:base="http://dthsoni.magix.net/blog/befehl/">
        <div xmlns="http://www.w3.org/1999/xhtml">
<span style="font-weight: bold; color: rgb(255, 0, 0);">PROBLEM: </span>Mit der Funktion Randomize und random() werden die Zufallszahlen erzeugt.<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Aber auch gleiche Zufallszahlen kommen vor.<br /><br /><span style="color: rgb(255, 0, 0); font-weight: bold;">BEISPIEL: </span><br />&#160;&#160;&#160; Die durch Randomize erzeugten Zufallszahlen:<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span style="color: rgb(255, 255, 0);">4&#160;</span> 5&#160; <span style="color: rgb(255, 255, 0);">2</span>&#160; <span style="color: rgb(255, 255, 0);">2</span>&#160; 1&#160; <span style="color: rgb(255, 255, 0);">4</span>&#160; 3&#160;&#160; <span style="color: rgb(0, 255, 0);">' 4 gleiche Zufallszahlen&#160; (4 und 2)</span><br /><br />&#160;&#160;&#160; Eigentlich sollte es so aussehen:<br />&#160;&#160;&#160; &#160; &#160; &#160; 4&#160; 5&#160; 6&#160; 1&#160; 3&#160; 2&#160; 7&#160;&#160;&#160; <span style="color: rgb(0, 255, 0);">' keine gleiche Zufallszahlen kommen vor</span><br />&#160; &#160; &#160; &#160; &#160; 5&#160; 7&#160; 2&#160; 3&#160; 4&#160; 6&#160; 1 &#160;&#160;<span style="color: rgb(0, 255, 0);"> ' keine gleiche Zufallszahlen kommen vor</span><br /><br /><span style="color: rgb(255, 0, 0); font-weight: bold;">L&Ouml;SUNG:</span><br /><br />-----------------------------------------------------------------------------------------<br /><span style="font-weight: bold; color: rgb(51, 102, 255);">PROGRAM</span> Zufallszahl;<br /><span style="color: rgb(51, 102, 255); font-weight: bold;">USES</span> crt;<br /><span style="color: rgb(51, 102, 255); font-weight: bold;">CONST</span> max = 8;<br /><span style="color: rgb(51, 102, 255); font-weight: bold;">TYPE</span><span style="color: rgb(51, 102, 255);"> </span>TFeld = array [1..max] of byte;<br /><span style="font-weight: bold; color: rgb(51, 102, 255);">VAR</span> feld : TFeld;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; i,j,merk,index : byte;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; gleich : boolean;<br /><br /><span style="color: rgb(51, 102, 255); font-weight: bold;">BEGIN</span><br />&#160; textattr := 30;&#160; <span style="color: rgb(0, 255, 0);">{gelbe Schriften, blauer Hintergrund}</span><br />&#160; clrscr;&#160; <span style="color: rgb(0, 255, 0);">{Bildschirm l&ouml;schen = ClearScreen}</span><br /><br />&#160; <span style="color: rgb(255, 102, 0); font-weight: bold;">Randomize</span>;&#160;<span style="color: rgb(0, 255, 0);"> {erzeugt Zufallszahlen}</span><br />&#160; <span style="color: rgb(255, 102, 0); font-weight: bold;">For </span>i := 1 <span style="font-weight: bold; color: rgb(255, 102, 0);">To</span> max <span style="font-weight: bold; color: rgb(255, 102, 0);">Do</span><br />&#160;&#160;<span style="color: rgb(192, 192, 192); font-weight: bold;">&#160; begin</span><br />&#160; &#160; &#160; feld[i] := random(max)+1;&#160; <span style="color: rgb(0, 255, 0);">{erzeugt Zufallszahlen von 1 bis max=8}</span><br />&#160;&#160; &#160;&#160; write (' ', feld[i]);<br /><span style="color: rgb(192, 192, 192); font-weight: bold;">&#160;&#160;&#160; end;</span><br /><br />&#160; merk := 0;<br />&#160; index := 0;<br /><br style="font-weight: bold;" /><span style="font-weight: bold;">&#160; </span><span style="color: rgb(255, 255, 153); font-weight: bold;">Repeat</span><br />&#160;&#160;&#160; gleich := false;<br />&#160;&#160;&#160; <span style="color: rgb(255, 102, 0); font-weight: bold;">For</span> i := 1 <span style="font-weight: bold; color: rgb(255, 102, 0);">To</span> max <span style="color: rgb(255, 102, 0); font-weight: bold;">Do&#160; </span><span style="color: rgb(255, 102, 0);"><span style="color: rgb(0, 255, 0);">{&auml;u&szlig;ere Schleife}</span></span><br />&#160;&#160; &#160; &#160; <span style="font-weight: bold; color: rgb(192, 192, 192);">begin</span><br />&#160;&#160;&#160; &#160;&#160; &#160; merk := feld[i];<br />&#160;&#160;&#160;&#160; &#160; &#160; feld[i] := 0;<br />&#160;&#160;&#160;&#160; &#160; &#160; <span style="font-weight: bold; color: rgb(255, 102, 0);">For</span> j := 1 <span style="color: rgb(255, 102, 0); font-weight: bold;">To</span> max <span style="font-weight: bold; color: rgb(255, 102, 0);">Do&#160;&#160; </span><span style="color: rgb(0, 255, 0);">{innere Schleife}</span><br />&#160;&#160;&#160;&#160; &#160;&#160; &#160;&#160; <span style="font-weight: bold; color: rgb(255, 102, 0);">If </span>(merk = feld[j]) <span style="font-weight: bold; color: rgb(255, 102, 0);">Then</span><br />&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160; &#160;&#160; <span style="color: rgb(192, 192, 192); font-weight: bold;">begin</span><br />&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160; &#160;&#160; &#160; gleich := true;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160; &#160; &#160; index := j;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160; &#160; &#160; feld[j] := random(max)+1;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160; &#160; <span style="color: rgb(192, 192, 192); font-weight: bold;">end;</span><br /><br />&#160;&#160;&#160;&#160; &#160;&#160;&#160; feld[i] := merk;<br />&#160;&#160;&#160;&#160; &#160; &#160; merk := 0;<br />&#160;&#160; &#160;&#160; <span style="color: rgb(192, 192, 192); font-weight: bold;">end;</span><br />&#160; <span style="color: rgb(255, 255, 0); font-weight: bold;">Until</span> gleich = false;<br /><br />&#160; WriteLn;<br /><br />&#160; <span style="font-weight: bold; color: rgb(255, 102, 0);">For</span> i := 1 <span style="color: rgb(255, 102, 0); font-weight: bold;">To</span> max <span style="font-weight: bold; color: rgb(255, 102, 0);">Do</span> write (' ', feld[i]);<br />&#160; ReadLn;<br /><span style="font-weight: bold; color: rgb(51, 102, 255);">END.</span><br />-----------------------------------------------------------------------------------------&#160;        </div>
    </content>
</entry>
<entry>
    <link href="http://dthsoni.magix.net/blog/befehl/archives/2-Camcorder-Sony-DCR-DVD203E-PAL.html" rel="alternate" title="Camcorder Sony DCR-DVD203E PAL" />
    <author>
        <name>dthsoni</name>
        <email>nospam@example.com</email>
    </author>

    <published>2007-08-05T16:02:11Z</published>
    <updated>2007-08-05T16:07:18Z</updated>
    <wfw:comment>http://dthsoni.magix.net/blog/befehl/wfwcomment.php?cid=2</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://dthsoni.magix.net/blog/befehl/rss.php?version=atom1.0&amp;type=comments&amp;cid=2</wfw:commentRss>
    <id>http://dthsoni.magix.net/blog/befehl/archives/2-guid.html</id>
    <title type="html">Camcorder Sony DCR-DVD203E PAL</title>
    <content type="xhtml" xml:base="http://dthsoni.magix.net/blog/befehl/">
        <div xmlns="http://www.w3.org/1999/xhtml">
<br /><span style="color: rgb(0, 0, 255); font-weight: bold;">---</span> <span style="color: rgb(255, 0, 0); font-weight: bold;">Wie k&ouml;nnen Videos und Photos vom Camcorder auf Compter und DVD &uuml;bertragen</span><br style="color: rgb(255, 0, 0); font-weight: bold;" /><span style="color: rgb(255, 0, 0); font-weight: bold;">&#160;&#160;&#160;&#160; werden</span>&#160; <span style="color: rgb(255, 0, 0); font-weight: bold;">?</span> <span style="color: rgb(0, 0, 255); font-weight: bold;">---</span><br />1. Software und Driver installieren (Picture Package)<br />&#160;&#160;&#160;&#160; (Neustarten)<br /><br />2. Camcorder und Computer per USB-Kabel anschlie&szlig;en<br />3. 'Picture Package DVD Viewer' starten<br />4. W&auml;hle 'DVD' und 'DVD handy Cam'<br />5. Videos und Photos auf Festplatte kopieren        </div>
    </content>
</entry>
<entry>
    <link href="http://dthsoni.magix.net/blog/befehl/archives/1-Windows-Befehle.html" rel="alternate" title="Windows-Befehle" />
    <author>
        <name>dthsoni</name>
        <email>nospam@example.com</email>
    </author>

    <published>2007-08-05T15:56:49Z</published>
    <updated>2007-08-10T00:06:35Z</updated>
    <wfw:comment>http://dthsoni.magix.net/blog/befehl/wfwcomment.php?cid=1</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://dthsoni.magix.net/blog/befehl/rss.php?version=atom1.0&amp;type=comments&amp;cid=1</wfw:commentRss>
    <id>http://dthsoni.magix.net/blog/befehl/archives/1-guid.html</id>
    <title type="html">Windows-Befehle</title>
    <content type="xhtml" xml:base="http://dthsoni.magix.net/blog/befehl/">
        <div xmlns="http://www.w3.org/1999/xhtml">
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span style="color: rgb(255, 0, 0);">c</span>md = Console (DOS)<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; compmgmt.msc = Verwaltung<br />&#160;&#160;&#160; &#160;&#160;&#160; control panel = Systemsteuerung<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; control userpasswords<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; control userpasswords2<br />&#160;&#160;&#160; &#160;&#160;&#160; <span style="color: rgb(255, 0, 0);">d</span>evmgmt.msc = Device- / Hardware-Management = START --&gt; Systemsteuerung&#160; (Control Panel) --&gt; Hardware (Device-Manager)<br />&#160;&#160;&#160; &#160;&#160;&#160; diskmgmt.msc = Diskmanagement<br />&#160;&#160;&#160; &#160;&#160;&#160; <span style="color: rgb(255, 0, 0);">f</span>smgmt.msc = Freigegebene Ordner<br />&#160;&#160;&#160; &#160;&#160;&#160; <span style="color: rgb(255, 0, 0);">g</span>pedit.msc = Gruppenrichtlinien / Group-Policies<br />&#160;&#160;&#160; &#160;&#160;&#160; <span style="color: rgb(255, 0, 0);">l</span>usrmgr.msc = Benutzer-Gruppen-Verwaltung<br />&#160;&#160;&#160; &#160;&#160;&#160; logoff = Abmelden<br />&#160;&#160;&#160; &#160;&#160;&#160; <span style="color: rgb(255, 0, 0);">m</span>sconfig <br />&#160;&#160;&#160; &#160;&#160;&#160; msconfig -6<br />&#160;&#160;&#160; &#160;&#160;&#160; mspaint = Paint<br />&#160;&#160;&#160; &#160;&#160;&#160; mstsc = Remote-Destop-Verbindung<br />&#160;&#160;&#160; &#160;&#160;&#160; <span style="color: rgb(255, 0, 0);">n</span>tmsmgr.msc = Wechselmedien-Dienst<br />&#160;&#160;&#160; &#160;&#160;&#160; <span style="color: rgb(255, 0, 0);">r</span>egedit = Registry-Editor<br />&#160;&#160;&#160; &#160;&#160;&#160; regsvr32<br />&#160;&#160;&#160; &#160;&#160;&#160; <span style="color: rgb(255, 0, 0);">s</span>hutdown = Herunterfahren<br />&#160;&#160;&#160; &#160;&#160;&#160; shutdown -r -t 00 = Neustarten (Restart) - sofort<br />&#160;&#160;&#160; &#160;&#160;&#160; services.msc = Services / Dienste<br />&#160;&#160;&#160; &#160;&#160;&#160; <span style="color: rgb(255, 0, 0);">t</span>askmgr = Task-Manager<br />&#160;&#160;&#160; &#160;&#160;&#160; <span style="color: rgb(255, 0, 0);">w</span>inver = Windows-Version<br />&#160;&#160;&#160; &#160;&#160;&#160; wmimgmt.msc = Windows-Verwaltungsinfrastrultur (WMI)<br />&#160;&#160;&#160; &#160;&#160;&#160; -------------------------------------------------------<br />&#160;&#160;&#160; &#160;&#160;&#160; desk.cpl<br />&#160;&#160;&#160; &#160;&#160;&#160; firewall.cpl<br />&#160;&#160;&#160; &#160;&#160;&#160; hdwwiz.cpl<br />&#160;&#160;&#160; &#160;&#160;&#160; inetcpl.cpl<br />&#160;&#160;&#160; &#160;&#160;&#160; mmsys.cpl = Lautsprecher<br />&#160;&#160;&#160; &#160;&#160;&#160; ncpa.cpl = Netzwerkverbindungen<br />&#160;&#160;&#160; &#160;&#160;&#160; powercfg.cpl<br />&#160;&#160;&#160; &#160;&#160;&#160; sysdm.cpl = Systemeigenschaften<br />&#160;&#160;&#160; &#160;&#160;&#160; timedate.cpl = Dateum-Uhrzeit-Programm<br />&#160;&#160;&#160; &#160;&#160;&#160;        </div>
    </content>
</entry>
</feed>