<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="http://alloces.arg.rip/dokuwiki/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="http://alloces.arg.rip/dokuwiki/feed.php">
        <title>dokuwiki - dev</title>
        <description></description>
        <link>http://alloces.arg.rip/dokuwiki/</link>
        <image rdf:resource="http://alloces.arg.rip/dokuwiki/lib/exe/fetch.php?media=wiki:logo.png" />
       <dc:date>2026-04-22T04:51:50+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="http://alloces.arg.rip/dokuwiki/doku.php?id=dev:csharp&amp;rev=1776755103&amp;do=diff"/>
                <rdf:li rdf:resource="http://alloces.arg.rip/dokuwiki/doku.php?id=dev:deploy&amp;rev=1776755103&amp;do=diff"/>
                <rdf:li rdf:resource="http://alloces.arg.rip/dokuwiki/doku.php?id=dev:kafka&amp;rev=1776755103&amp;do=diff"/>
                <rdf:li rdf:resource="http://alloces.arg.rip/dokuwiki/doku.php?id=dev:postgres&amp;rev=1776755103&amp;do=diff"/>
                <rdf:li rdf:resource="http://alloces.arg.rip/dokuwiki/doku.php?id=dev:shit_code_and_the_retards_that_write_it&amp;rev=1753644704&amp;do=diff"/>
                <rdf:li rdf:resource="http://alloces.arg.rip/dokuwiki/doku.php?id=dev:srt&amp;rev=1776755103&amp;do=diff"/>
                <rdf:li rdf:resource="http://alloces.arg.rip/dokuwiki/doku.php?id=dev:windows&amp;rev=1776755103&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="http://alloces.arg.rip/dokuwiki/lib/exe/fetch.php?media=wiki:logo.png">
        <title>dokuwiki</title>
        <link>http://alloces.arg.rip/dokuwiki/</link>
        <url>http://alloces.arg.rip/dokuwiki/lib/exe/fetch.php?media=wiki:logo.png</url>
    </image>
    <item rdf:about="http://alloces.arg.rip/dokuwiki/doku.php?id=dev:csharp&amp;rev=1776755103&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-04-21T07:05:03+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>csharp</title>
        <link>http://alloces.arg.rip/dokuwiki/doku.php?id=dev:csharp&amp;rev=1776755103&amp;do=diff</link>
        <description>the best trick: subtypes of

	&quot;I need to just derive stuff from something, and all the derived types I&#039;ll register somewhere, or initialize, or something like that - but I don&#039;t want to also have to have an ever-growing list of tasks for each  &quot;


var subtypes = AppDomain.CurrentDomain.GetAssemblies()
    .SelectMany(domainAssembly =&gt; domainAssembly.GetTypes())
    .Where(type =&gt; type.IsSubclassOf(typeof(MyAbstractClass)) &amp;&amp; !type.IsAbstract)
    .ToList();

foreach (var subtype in subtypes)
{
 …</description>
    </item>
    <item rdf:about="http://alloces.arg.rip/dokuwiki/doku.php?id=dev:deploy&amp;rev=1776755103&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-04-21T07:05:03+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>deploy</title>
        <link>http://alloces.arg.rip/dokuwiki/doku.php?id=dev:deploy&amp;rev=1776755103&amp;do=diff</link>
        <description>you could involve jenkins if you want. Or use SCP.
$scp &lt;filename&gt; &lt;username&gt;@&lt;server&gt;:&lt;destinationpath&gt;
you can scp @ a windows host, but windows will not tolerate ~. idk how to encode slashes or spaces.

and of course if you have a directory, use -r, and maybe /* to get only the files in the directory. (lest you wind up with a lot of publish/publish type situations)</description>
    </item>
    <item rdf:about="http://alloces.arg.rip/dokuwiki/doku.php?id=dev:kafka&amp;rev=1776755103&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-04-21T07:05:03+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>kafka</title>
        <link>http://alloces.arg.rip/dokuwiki/doku.php?id=dev:kafka&amp;rev=1776755103&amp;do=diff</link>
        <description>bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic gray_messages.global.report --from-beginningbin/kafka-console-producer.sh --bootstrap-server localhost:9092 --topic gray_messages.global.sound_off
and then type your messages. Here&#039;s a few you might like (all will need the quotes fixed :/ but some might need further edits)</description>
    </item>
    <item rdf:about="http://alloces.arg.rip/dokuwiki/doku.php?id=dev:postgres&amp;rev=1776755103&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-04-21T07:05:03+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>postgres</title>
        <link>http://alloces.arg.rip/dokuwiki/doku.php?id=dev:postgres&amp;rev=1776755103&amp;do=diff</link>
        <description>create user, and then database for that user.
sudo -u postgres psql
postgres=# create database mydb;
postgres=# create user myuser with encrypted password &#039;mypass&#039;;
postgres=# grant all privileges on database mydb to myuser;

&lt;https://stackoverflow.com/a/75876944/1173856&gt;

to enable logins from external systems:</description>
    </item>
    <item rdf:about="http://alloces.arg.rip/dokuwiki/doku.php?id=dev:shit_code_and_the_retards_that_write_it&amp;rev=1753644704&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-07-27T19:31:44+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>shit_code_and_the_retards_that_write_it</title>
        <link>http://alloces.arg.rip/dokuwiki/doku.php?id=dev:shit_code_and_the_retards_that_write_it&amp;rev=1753644704&amp;do=diff</link>
        <description># Odysseus

That&#039;s a true story, by the way. Fucker had me set an alarm to get fired.

Welcome to my endless black void. I&#039;m not under a non-disparagement agreement. So let&#039;s disparage. We&#039;ll talk about moronic code and the stupidity that leads to it. with me are 2 straw men: Brian, who has a brain in his skull. and Odysseus.
Also, quick aside: you&#039;ll notice I didn&#039;t pay for voice acting on this one. I&#039;m at least as upset about it as you are. Occasionally, comments insist I should use my own voi…</description>
    </item>
    <item rdf:about="http://alloces.arg.rip/dokuwiki/doku.php?id=dev:srt&amp;rev=1776755103&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-04-21T07:05:03+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>srt</title>
        <link>http://alloces.arg.rip/dokuwiki/doku.php?id=dev:srt&amp;rev=1776755103&amp;do=diff</link>
        <description>1
00:00:00.930 --&gt; 00:00:04.050
hi im a subtitle with 1 line

2
00:00:04.050 --&gt; 00:00:10.000
i, however, have
2 lines

3
00:00:10.000 --&gt; 00:00:12.000
me, though?
THREE, count &#039;em, *3*
lines

6
00:00:12.000 --&gt; 00:00:15.000
kthxbye
that&#039;s really it. that first number, where I count 1, 2, 3, 6? that&#039;s the number of subtitle. As you can see if I fuck it up, it&#039;s fine.
the second line is the time it should be on screen for.
then the following text is your subtitle.
separate the next unit with a bl…</description>
    </item>
    <item rdf:about="http://alloces.arg.rip/dokuwiki/doku.php?id=dev:windows&amp;rev=1776755103&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-04-21T07:05:03+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>windows</title>
        <link>http://alloces.arg.rip/dokuwiki/doku.php?id=dev:windows&amp;rev=1776755103&amp;do=diff</link>
        <description>file links

	*  junction: i forget, for directories.
	*  symbolic link: like a shortcut file, except it doesn&#039;t work. never use symbolic link.
	*  hard link: link

if you delete the hard link, it doesn&#039;t take the source with it.

how2

	*  -Path is where the</description>
    </item>
</rdf:RDF>
