<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
> <channel><title>Vivid Abstractions</title> <atom:link href="http://www.vivid-abstractions.net/feed/" rel="self" type="application/rss+xml" /><link>http://www.vivid-abstractions.net</link> <description>Where Programming Becomes An Abstraction</description> <lastBuildDate>Thu, 26 Apr 2012 19:41:32 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.2</generator> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>Beautymine Progress</title><link>http://www.vivid-abstractions.net/programming/minecraft-tools/beautymine-progress/</link> <comments>http://www.vivid-abstractions.net/programming/minecraft-tools/beautymine-progress/#comments</comments> <pubDate>Fri, 24 Feb 2012 01:06:06 +0000</pubDate> <dc:creator>Patrickssj6</dc:creator> <category><![CDATA[Minecraft]]></category> <category><![CDATA[Beautymine]]></category> <category><![CDATA[Progress]]></category> <guid
isPermaLink="false">http://www.vivid-abstractions.net/?p=728</guid> <description><![CDATA[My "secret" project I am working on More details at a later time. http://www.youtube.com/watch?v=36e6W4C0Q2A http://www.youtube.com/watch?v=Akq83nP2oBA http://www.youtube.com/watch?v=7anx9_3TYvg]]></description> <content:encoded><![CDATA[<p>My "secret" project I am working on <img
src='http://www.vivid-abstractions.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> More details at a later time.</p><p><a
href="http://www.youtube.com/watch?v=36e6W4C0Q2A&#038;fmt=18">http://www.youtube.com/watch?v=36e6W4C0Q2A</a></p><p><a
href="http://www.youtube.com/watch?v=Akq83nP2oBA&#038;fmt=18">http://www.youtube.com/watch?v=Akq83nP2oBA</a></p><p><a
href="http://www.youtube.com/watch?v=7anx9_3TYvg&#038;fmt=18">http://www.youtube.com/watch?v=7anx9_3TYvg</a></p> ]]></content:encoded> <wfw:commentRss>http://www.vivid-abstractions.net/programming/minecraft-tools/beautymine-progress/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Universal Halo Hacks</title><link>http://www.vivid-abstractions.net/programming/universal-halo-hacks/</link> <comments>http://www.vivid-abstractions.net/programming/universal-halo-hacks/#comments</comments> <pubDate>Tue, 14 Feb 2012 10:23:31 +0000</pubDate> <dc:creator>Patrickssj6</dc:creator> <category><![CDATA[Halo]]></category> <category><![CDATA[Programming]]></category> <category><![CDATA[Hacks]]></category> <category><![CDATA[Universal]]></category> <guid
isPermaLink="false">http://www.vivid-abstractions.net/?p=724</guid> <description><![CDATA[http://www.youtube.com/watch?v=gcsSl_zQt-o by vnlagrla1 &#160;]]></description> <content:encoded><![CDATA[<p><a
href="http://www.youtube.com/watch?v=gcsSl_zQt-o">http://www.youtube.com/watch?v=gcsSl_zQt-o</a></p><p>by vnlagrla1</p><p>&nbsp;</p> ]]></content:encoded> <wfw:commentRss>http://www.vivid-abstractions.net/programming/universal-halo-hacks/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>C# Convert Pixel Data to Image (JPEG)</title><link>http://www.vivid-abstractions.net/programming/715/</link> <comments>http://www.vivid-abstractions.net/programming/715/#comments</comments> <pubDate>Thu, 02 Feb 2012 21:35:30 +0000</pubDate> <dc:creator>Patrickssj6</dc:creator> <category><![CDATA[Programming]]></category> <category><![CDATA[C#]]></category> <category><![CDATA[Convert]]></category> <category><![CDATA[Data]]></category> <category><![CDATA[Image]]></category> <category><![CDATA[JPEG]]></category> <category><![CDATA[Pixel]]></category> <guid
isPermaLink="false">http://www.vivid-abstractions.net/?p=715</guid> <description><![CDATA[A quick and easy way of converting custom image data (e.g. RGB Array) to an actual image and saving it. Note that my way of converting it to a RGB struct first is unnecessary. class JPEGEncoding { public struct RGB { public byte Red; public byte Green; public byte Blue; public RGB(Color inputColor) { Red [...]]]></description> <content:encoded><![CDATA[<p>A quick and easy way of converting custom image data (e.g. RGB Array) to an actual image and saving it. Note that my way of converting it to a RGB struct first is unnecessary.</p><pre class="brush:[csharp]">
    class JPEGEncoding
    {
        public struct RGB
        {
            public byte Red;
            public byte Green;
            public byte Blue;
            public RGB(Color inputColor)
            {
                Red = inputColor.R;
                Green = inputColor.G;
                Blue = inputColor.B;
            }
            public RGB(byte red, byte green, byte blue)
            {
                Red = red;
                Green = green;
                Blue = blue;
            }
        }
        Bitmap RawImageSource;
        public JPEGEncoding(RGB[,] colorInputArray)
        {
            RawImageSource = new Bitmap(colorInputArray.GetLength(0), colorInputArray.GetLength(1));
            for (int j = 0; j < colorInputArray.GetLength(0); j++)
            {
                for (int i = 0; i < colorInputArray.GetLength(1); i++)
                {
                    RawImageSource.SetPixel(j, i, Color.FromArgb(colorInputArray[j, i].Red, colorInputArray[j, i].Green, colorInputArray[j, i].Blue));
                }
            }
        }
        public void SaveImage(string path)
        {
            RawImageSource.Save(path, System.Drawing.Imaging.ImageFormat.Jpeg);
        }
    }
 </pre>]]></content:encoded> <wfw:commentRss>http://www.vivid-abstractions.net/programming/715/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Postkarten Problem Programm</title><link>http://www.vivid-abstractions.net/programming/postkarten-problem-programm/</link> <comments>http://www.vivid-abstractions.net/programming/postkarten-problem-programm/#comments</comments> <pubDate>Sun, 22 Jan 2012 14:12:00 +0000</pubDate> <dc:creator>Patrickssj6</dc:creator> <category><![CDATA[Programming]]></category> <category><![CDATA[Postkarten]]></category> <category><![CDATA[Problem]]></category> <category><![CDATA[Programm]]></category> <guid
isPermaLink="false">http://www.vivid-abstractions.net/?p=711</guid> <description><![CDATA[Sieben Studenten gehen auf Urlaubsreise in den Semesterferien. Sie verabreden, dass jeder von ihnen eine Poatkarte an genau drei andere schickt. Ist es möglich, dass jeder Student Postkarten von genau denjenigen erhält, denen er selbst die Postkarten geschrieben hat? Dieses Programm berechnet und zeigt die mögliche Verteilung an. Dabei repräsentiert jeder Punkt oder jede Nummer [...]]]></description> <content:encoded><![CDATA[<blockquote><p>Sieben Studenten gehen auf Urlaubsreise in den Semesterferien. Sie verabreden,<br
/> dass jeder von ihnen eine Poatkarte an genau drei andere schickt.<br
/> Ist es möglich, dass jeder Student Postkarten von genau denjenigen erhält,<br
/> denen er selbst die Postkarten geschrieben hat?</p></blockquote><p>Dieses Programm berechnet und zeigt die mögliche Verteilung an. Dabei repräsentiert jeder Punkt oder jede Nummer einen Studenten. Wenn ein Student jemandem eine Postkarte schreibt und eine von ihm erhält, werden sie durch einen Strich verbunden. E.g. "2-3" - Student 2 schreibt eine Postkarte und bekomme eine von Student 3.</p> <a
href="http://www.vivid-abstractions.net/wp-content/gallery/uni/postkarten.png" title="" rel="lightbox[singlepic48]" > <img
class="ngg-singlepic" src="http://www.vivid-abstractions.net/wp-content/gallery/cache/48__396x312_postkarten.png" alt="postkarten" title="postkarten" /> </a> <font
size="3">Download: <a
href="http://www.vivid-abstractions.net/wp-content/plugins/download-monitor/download.php?id=38" title="Downloaded 75 times">PostkartenProblem (v. 1.0)</a></font> ]]></content:encoded> <wfw:commentRss>http://www.vivid-abstractions.net/programming/postkarten-problem-programm/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Keyboard In A Dish Washer / Tastatur In Der Spülmaschine</title><link>http://www.vivid-abstractions.net/how-to/keyboard-in-a-dish-washer-tastatur-in-der-spulmaschine/</link> <comments>http://www.vivid-abstractions.net/how-to/keyboard-in-a-dish-washer-tastatur-in-der-spulmaschine/#comments</comments> <pubDate>Sun, 18 Dec 2011 21:03:17 +0000</pubDate> <dc:creator>Patrickssj6</dc:creator> <category><![CDATA[How to...]]></category> <category><![CDATA[A]]></category> <category><![CDATA[der]]></category> <category><![CDATA[Dish]]></category> <category><![CDATA[in]]></category> <category><![CDATA[keyboard]]></category> <category><![CDATA[Spülmaschine]]></category> <category><![CDATA[tastatur]]></category> <category><![CDATA[Washer]]></category> <guid
isPermaLink="false">http://www.vivid-abstractions.net/?p=702</guid> <description><![CDATA[http://www.youtube.com/watch?v=uyGR94i-TGA]]></description> <content:encoded><![CDATA[<p><a
href="http://www.youtube.com/watch?v=uyGR94i-TGA&#038;fmt=18">http://www.youtube.com/watch?v=uyGR94i-TGA</a></p> ]]></content:encoded> <wfw:commentRss>http://www.vivid-abstractions.net/how-to/keyboard-in-a-dish-washer-tastatur-in-der-spulmaschine/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Suffixtree / Suffixbaum Program</title><link>http://www.vivid-abstractions.net/programming/suffixtree-suffixbaum-program/</link> <comments>http://www.vivid-abstractions.net/programming/suffixtree-suffixbaum-program/#comments</comments> <pubDate>Fri, 16 Dec 2011 17:56:06 +0000</pubDate> <dc:creator>Patrickssj6</dc:creator> <category><![CDATA[Programming]]></category> <category><![CDATA[Application]]></category> <category><![CDATA[baum]]></category> <category><![CDATA[program]]></category> <category><![CDATA[Programm]]></category> <category><![CDATA[simulator]]></category> <category><![CDATA[suffix]]></category> <category><![CDATA[suffixbaum]]></category> <category><![CDATA[suffixtree]]></category> <category><![CDATA[tree]]></category> <guid
isPermaLink="false">http://www.vivid-abstractions.net/?p=700</guid> <description><![CDATA[This application generates a suffixtree from a string and can search for a pattern. Dieses Programm erzeugt einen Suffixbaum und kann ein Pattern suchen.]]></description> <content:encoded><![CDATA[<p>This application generates a suffixtree from a string and can search for a pattern.</p><p>Dieses Programm erzeugt einen Suffixbaum und kann ein Pattern suchen.</p> <a
href="http://www.vivid-abstractions.net/wp-content/gallery/random-images/suffixbaum.png" title="" rel="lightbox[singlepic47]" > <img
class="ngg-singlepic" src="http://www.vivid-abstractions.net/wp-content/gallery/cache/47__297x395_suffixbaum.png" alt="suffixbaum" title="suffixbaum" /> </a> <font
size="3">Download: <a
href="http://www.vivid-abstractions.net/wp-content/plugins/download-monitor/download.php?id=37" title="Downloaded 93 times">Suffixbaum / Suffixtree (v. 1.0)</a></font> ]]></content:encoded> <wfw:commentRss>http://www.vivid-abstractions.net/programming/suffixtree-suffixbaum-program/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Knuth-Morris-Pratt Algorithm Program</title><link>http://www.vivid-abstractions.net/programming/knuth-morris-pratt-and-boyer-moore-algorithm-program/</link> <comments>http://www.vivid-abstractions.net/programming/knuth-morris-pratt-and-boyer-moore-algorithm-program/#comments</comments> <pubDate>Mon, 05 Dec 2011 22:20:43 +0000</pubDate> <dc:creator>Patrickssj6</dc:creator> <category><![CDATA[Programming]]></category> <category><![CDATA[algorithm]]></category> <category><![CDATA[algorithmus]]></category> <category><![CDATA[Applet]]></category> <category><![CDATA[boyer]]></category> <category><![CDATA[knuth]]></category> <category><![CDATA[moore]]></category> <category><![CDATA[morris]]></category> <category><![CDATA[pratt]]></category> <category><![CDATA[program]]></category> <category><![CDATA[Programm]]></category> <category><![CDATA[simulate]]></category> <category><![CDATA[simulieren]]></category> <guid
isPermaLink="false">http://www.vivid-abstractions.net/?p=693</guid> <description><![CDATA[Dieses Programm simuliert den Knuth-Morris-Pratt Algorithmus. This program simulates the Knuth-Morris-Pratt algorithm.]]></description> <content:encoded><![CDATA[<p>Dieses Programm simuliert den Knuth-Morris-Pratt Algorithmus.</p><p>This program simulates the Knuth-Morris-Pratt algorithm.</p> <a
href="http://www.vivid-abstractions.net/wp-content/gallery/random-images/kmp.jpg" title="" rel="lightbox[singlepic46]" > <img
class="ngg-singlepic" src="http://www.vivid-abstractions.net/wp-content/gallery/cache/46__320x240_kmp.jpg" alt="kmp" title="kmp" /> </a> <a
href="http://www.vivid-abstractions.net/wp-content/gallery/random-images/bm.jpg" title="" rel="lightbox[singlepic45]" > <img
class="ngg-singlepic" src="http://www.vivid-abstractions.net/wp-content/gallery/cache/45__320x240_bm.jpg" alt="bm" title="bm" /> </a> <font
size="3">Download: <a
href="http://www.vivid-abstractions.net/wp-content/plugins/download-monitor/download.php?id=36" title="Downloaded 111 times">KMP & BM Algorithmus (v. 1.0)</a></font> ]]></content:encoded> <wfw:commentRss>http://www.vivid-abstractions.net/programming/knuth-morris-pratt-and-boyer-moore-algorithm-program/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Monty Hall Paradoxon Simulator Programm</title><link>http://www.vivid-abstractions.net/programming/monty-hall-paradoxon-simulator-programm/</link> <comments>http://www.vivid-abstractions.net/programming/monty-hall-paradoxon-simulator-programm/#comments</comments> <pubDate>Fri, 25 Nov 2011 10:27:46 +0000</pubDate> <dc:creator>Patrickssj6</dc:creator> <category><![CDATA[Programming]]></category> <category><![CDATA[hall]]></category> <category><![CDATA[monty]]></category> <category><![CDATA[paradoxon]]></category> <category><![CDATA[Problem]]></category> <category><![CDATA[Programm]]></category> <category><![CDATA[simulator]]></category> <guid
isPermaLink="false">http://www.vivid-abstractions.net/?p=690</guid> <description><![CDATA[I saw this yesterday on Mythbusters and decided to write a program. Source can be requested If you want to discuss this topic head over to our Mythbusters Fansite Submyth &#160; Enjoy]]></description> <content:encoded><![CDATA[
<a
href="http://www.vivid-abstractions.net/wp-content/gallery/random-images/montyhall.png" title="" rel="lightbox[singlepic44]" > <img
class="ngg-singlepic" src="http://www.vivid-abstractions.net/wp-content/gallery/cache/44__523x210_montyhall.png" alt="montyhall" title="montyhall" /> </a><p>I saw this yesterday on Mythbusters and decided to write a program. Source can be requested <img
src='http://www.vivid-abstractions.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> If you want to discuss this topic head over to our <a
href="http://www.submyth.net/series-9/pick-a-door-monty-hall-paradoxon/">Mythbusters Fansite Submyth</a></p> <font
size="3">Download: <a
href="http://www.vivid-abstractions.net/wp-content/plugins/download-monitor/download.php?id=35" title="Downloaded 135 times">Monty Hall Paradoxon Simulator (v. 1.0)</a></font><p>&nbsp;</p><p>Enjoy <img
src='http://www.vivid-abstractions.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> ]]></content:encoded> <wfw:commentRss>http://www.vivid-abstractions.net/programming/monty-hall-paradoxon-simulator-programm/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>How to fix: &#8220;You are logged in from a region we do not allow someone to play from.&#8221;</title><link>http://www.vivid-abstractions.net/how-to/how-to-fix-you-are-logged-in-from-a-region-we-do-not-allow-someone-to-play-from/</link> <comments>http://www.vivid-abstractions.net/how-to/how-to-fix-you-are-logged-in-from-a-region-we-do-not-allow-someone-to-play-from/#comments</comments> <pubDate>Thu, 24 Nov 2011 18:58:14 +0000</pubDate> <dc:creator>Patrickssj6</dc:creator> <category><![CDATA[How to...]]></category> <category><![CDATA[Fix]]></category> <category><![CDATA[From]]></category> <category><![CDATA[How]]></category> <category><![CDATA[logged]]></category> <category><![CDATA[old]]></category> <category><![CDATA[Play]]></category> <category><![CDATA[region]]></category> <category><![CDATA[republic]]></category> <category><![CDATA[someone]]></category> <category><![CDATA[star]]></category> <category><![CDATA[to]]></category> <category><![CDATA[Wars]]></category> <guid
isPermaLink="false">http://www.vivid-abstractions.net/?p=681</guid> <description><![CDATA["You are logged in from a region we do not allow someone to play from." If you look at the log files you can see, after you start the Launcher it will download an update in the background. Patience is a virtue. 01111241954 ERROR  ManifestComplete:patcher/http://manifest.swtor.com/patch/patcher.patchmanifest 201111241954 INFO   Manifest: patcher, current=-1/upcoming=-1/required=23 201111241954 INFO   ManifestState=Download: patcher, current=-1/upcoming=-1/required=23 [...]]]></description> <content:encoded><![CDATA[<p><strong> "You are logged in from a region we do not allow someone to play from." </strong></p><p>If you look at the log files you can see, after you start the Launcher it will download an update in the background. Patience is a virtue.</p><blockquote><div>01111241954 ERROR  ManifestComplete:patcher/http://manifest.swtor.com/patch/patcher.patchmanifest<br
/> 201111241954 INFO   Manifest: patcher, current=-1/upcoming=-1/required=23<br
/> 201111241954 INFO   ManifestState=Download: patcher, current=-1/upcoming=-1/required=23<br
/> 201111241954 INFO   Download: http://127.0.0.1:54263/app/download.solidconfig<br
/> 201111241954 INFO   Download: http://cdn-patch.swtor.com/patch/patcher/patcher_-1to23.solidpkg</div></blockquote><p>So just be patient, the launcher will restart automatically to finish the update. This is all being done in background so you won't notice anything. You can check the log files for updates.</p><ol><li>Go into your C:\Program Files (x86)\Electronic Arts\BioWare\Star Wars - The Old Republic</li><li>Delete patcher.version</li><li>Delete launcher.settings</li><li>Open launcher.exe and wait until it restarts. Check the log files for more information!</li></ol><p>Enjoy <img
src='http://www.vivid-abstractions.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> ]]></content:encoded> <wfw:commentRss>http://www.vivid-abstractions.net/how-to/how-to-fix-you-are-logged-in-from-a-region-we-do-not-allow-someone-to-play-from/feed/</wfw:commentRss> <slash:comments>10</slash:comments> </item> <item><title>Z-Boxen Programm</title><link>http://www.vivid-abstractions.net/programming/z-boxen-programm/</link> <comments>http://www.vivid-abstractions.net/programming/z-boxen-programm/#comments</comments> <pubDate>Sat, 12 Nov 2011 22:58:47 +0000</pubDate> <dc:creator>Patrickssj6</dc:creator> <category><![CDATA[Programming]]></category> <category><![CDATA[Programm]]></category> <category><![CDATA[Z-Boxen]]></category> <guid
isPermaLink="false">http://www.vivid-abstractions.net/?p=675</guid> <description><![CDATA[Programm bitte nur zum überprüfen benutzen...das Programm macht Fehler wenn ich sie mache, weil es einfach so dumm ist wie ich. Sauce: http://pastebin.com/PrVGk2K8]]></description> <content:encoded><![CDATA[
<a
href="http://www.vivid-abstractions.net/wp-content/gallery/uni/zboxen.png" title="" rel="lightbox[singlepic43]" > <img
class="ngg-singlepic" src="http://www.vivid-abstractions.net/wp-content/gallery/cache/43__246x388_zboxen.png" alt="zboxen" title="zboxen" /> </a><p>Programm bitte nur zum überprüfen benutzen...das Programm macht Fehler wenn ich sie mache, weil es einfach so dumm ist wie ich. <img
title="Tongue" src="../uniforum/images/smilies/tongue.gif" alt="Tongue" border="0" /><br
/> Sauce: <a
href="http://pastebin.com/PrVGk2K8" target="_blank">http://pastebin.com/PrVGk2K8</a></p> <font
size="3">Download: <a
href="http://www.vivid-abstractions.net/wp-content/plugins/download-monitor/download.php?id=34" title="Downloaded 99 times">Z-Boxen (v. 1.0)</a></font> ]]></content:encoded> <wfw:commentRss>http://www.vivid-abstractions.net/programming/z-boxen-programm/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
