<br />
<b>Warning</b>:  Illegal string offset 'abstract' in <b>/var/www/html/feed.php</b> on line <b>406</b><br />
<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://wiki.slashdev.ca/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="https://wiki.slashdev.ca/feed.php">
        <title>Slashdev Wiki</title>
        <description></description>
        <link>https://wiki.slashdev.ca/</link>
        <image rdf:resource="https://wiki.slashdev.ca/lib/tpl/dokuwiki/images/favicon.ico" />
       <dc:date>2026-04-16T08:39:52+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://wiki.slashdev.ca/git:daily_workflow?rev=1614189409&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.slashdev.ca/notes:postgres?rev=1439820319&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.slashdev.ca/notes:hackintosh?rev=1365224586&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.slashdev.ca/notes:udp?rev=1341427614&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.slashdev.ca/notes:mingw-opengl?rev=1303334500&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.slashdev.ca/?image=codeapalooza%3Atext.bmp&amp;ns=codeapalooza&amp;rev=1291995638&amp;tab_details=history&amp;mediado=diff&amp;do=media"/>
                <rdf:li rdf:resource="https://wiki.slashdev.ca/?image=codeapalooza%3Arandom.bmp&amp;ns=codeapalooza&amp;rev=1291995633&amp;tab_details=history&amp;mediado=diff&amp;do=media"/>
                <rdf:li rdf:resource="https://wiki.slashdev.ca/?image=codeapalooza%3Amaze.bmp&amp;ns=codeapalooza&amp;rev=1291995627&amp;tab_details=history&amp;mediado=diff&amp;do=media"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://wiki.slashdev.ca/lib/tpl/dokuwiki/images/favicon.ico">
        <title>Slashdev Wiki</title>
        <link>https://wiki.slashdev.ca/</link>
        <url>https://wiki.slashdev.ca/lib/tpl/dokuwiki/images/favicon.ico</url>
    </image>
    <item rdf:about="https://wiki.slashdev.ca/git:daily_workflow?rev=1614189409&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2021-02-24T17:56:49+00:00</dc:date>
        <dc:creator>jiggak (jiggak@undisclosed.example.com)</dc:creator>
        <title>git:daily_workflow - removed</title>
        <link>https://wiki.slashdev.ca/git:daily_workflow?rev=1614189409&amp;do=diff</link>
        <description></description>
    </item>
    <item rdf:about="https://wiki.slashdev.ca/notes:postgres?rev=1439820319&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2015-08-17T14:05:19+00:00</dc:date>
        <dc:creator>jiggak (jiggak@undisclosed.example.com)</dc:creator>
        <title>notes:postgres</title>
        <link>https://wiki.slashdev.ca/notes:postgres?rev=1439820319&amp;do=diff</link>
        <description>-- basic access by nix user
create role josh with login;
create database edc owner josh;



bcp &quot;[Event]&quot; out Event.data -S (localdb)\Projects -T -d EDC -c -t 0xfe -r 0xf7 -C RAW -k



#!/bin/bash

for f in *.data; do
	echo $f
	cat $f | \
		sed 's/\xf7/|\n|/g' | \
		# remove extra at end of file
		sed '$ s/.$//' | \
		# add missing at start of file
		sed '1 s/^/|/' | \
		sed 's/&quot;/&quot;&quot;/g' | \
		sed 's/^|\||$/&quot;/g' | \
		sed 's/\xfe/&quot;,&quot;/g' | \
		sed 's/,&quot;&quot;,/,,/g' | \
		sed 's/,&quot;&quot;,/,,/g' | \
		sed 's/…</description>
    </item>
    <item rdf:about="https://wiki.slashdev.ca/notes:hackintosh?rev=1365224586&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2013-04-06T05:03:06+00:00</dc:date>
        <dc:creator>jiggak (jiggak@undisclosed.example.com)</dc:creator>
        <title>notes:hackintosh</title>
        <link>https://wiki.slashdev.ca/notes:hackintosh?rev=1365224586&amp;do=diff</link>
        <description>MacBookPro9,2

Using Mac disk utility makes Win8 sad since it contains a hybrid GPT/MBR partition. Windows will flat out refuse to install with MBR present so use Linux gdisk command to create partition table from scratch. It will say disk has protected MBR but that doesn't seem to be a problem.</description>
    </item>
    <item rdf:about="https://wiki.slashdev.ca/notes:udp?rev=1341427614&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2012-07-04T18:46:54+00:00</dc:date>
        <dc:creator>jiggak (jiggak@undisclosed.example.com)</dc:creator>
        <title>notes:udp - [Broadcasting] </title>
        <link>https://wiki.slashdev.ca/notes:udp?rev=1341427614&amp;do=diff</link>
        <description>Listening


# gnu-netcat
nc -lu -p 9999

# all other netcat's
nc -lu 9999


Broadcasting


echo poo | socat - UDP-DATAGRAM:192.168.1.255:9999,broadcast


Unicast


echo poo | nc -u 192.168.1.18 9999</description>
    </item>
    <item rdf:about="https://wiki.slashdev.ca/notes:mingw-opengl?rev=1303334500&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2011-04-20T21:21:40+00:00</dc:date>
        <dc:creator>jiggak (jiggak@undisclosed.example.com)</dc:creator>
        <title>notes:mingw-opengl</title>
        <link>https://wiki.slashdev.ca/notes:mingw-opengl?rev=1303334500&amp;do=diff</link>
        <description>*  install freeglut and glew
	*  alternate mingw</description>
    </item>
    <item rdf:about="https://wiki.slashdev.ca/?image=codeapalooza%3Atext.bmp&amp;ns=codeapalooza&amp;rev=1291995638&amp;tab_details=history&amp;mediado=diff&amp;do=media">
        <dc:format>text/html</dc:format>
        <dc:date>2010-12-10T15:40:38+00:00</dc:date>
        <dc:creator>jason (jason@undisclosed.example.com)</dc:creator>
        <title>codeapalooza:text.bmp</title>
        <link>https://wiki.slashdev.ca/?image=codeapalooza%3Atext.bmp&amp;ns=codeapalooza&amp;rev=1291995638&amp;tab_details=history&amp;mediado=diff&amp;do=media</link>
        <description></description>
    </item>
    <item rdf:about="https://wiki.slashdev.ca/?image=codeapalooza%3Arandom.bmp&amp;ns=codeapalooza&amp;rev=1291995633&amp;tab_details=history&amp;mediado=diff&amp;do=media">
        <dc:format>text/html</dc:format>
        <dc:date>2010-12-10T15:40:33+00:00</dc:date>
        <dc:creator>jason (jason@undisclosed.example.com)</dc:creator>
        <title>codeapalooza:random.bmp</title>
        <link>https://wiki.slashdev.ca/?image=codeapalooza%3Arandom.bmp&amp;ns=codeapalooza&amp;rev=1291995633&amp;tab_details=history&amp;mediado=diff&amp;do=media</link>
        <description></description>
    </item>
    <item rdf:about="https://wiki.slashdev.ca/?image=codeapalooza%3Amaze.bmp&amp;ns=codeapalooza&amp;rev=1291995627&amp;tab_details=history&amp;mediado=diff&amp;do=media">
        <dc:format>text/html</dc:format>
        <dc:date>2010-12-10T15:40:27+00:00</dc:date>
        <dc:creator>jason (jason@undisclosed.example.com)</dc:creator>
        <title>codeapalooza:maze.bmp</title>
        <link>https://wiki.slashdev.ca/?image=codeapalooza%3Amaze.bmp&amp;ns=codeapalooza&amp;rev=1291995627&amp;tab_details=history&amp;mediado=diff&amp;do=media</link>
        <description></description>
    </item>
</rdf:RDF>
