<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr - Zufolek</title>
<link>http://snipplr.com/users/Zufolek</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Wed, 19 Jun 2013 07:19:53 GMT</pubDate>
<item>
<title>(C) Remove trailing blanks from files</title>
<link>http://snipplr.com/view/25510/remove-trailing-blanks-from-files/</link>
<description><![CDATA[ <p>Simple prog for removing trailing blanks. Not for use with binary, compressed, or encoded files. Please make backups of your files.</p> ]]></description>
<pubDate>Sun, 27 Dec 2009 09:42:08 GMT</pubDate>
<guid>http://snipplr.com/view/25510/remove-trailing-blanks-from-files/</guid>
</item>
<item>
<title>(C) Simple Windoze Program</title>
<link>http://snipplr.com/view/25509/simple-windoze-program/</link>
<description><![CDATA[ <p>For MinGW or Cygwin, compile wth -mwindows option to get rid of console.

Try replacing the MB_OK with MB_OKCANCEL and see what happens.</p> ]]></description>
<pubDate>Sun, 27 Dec 2009 09:35:02 GMT</pubDate>
<guid>http://snipplr.com/view/25509/simple-windoze-program/</guid>
</item>
<item>
<title>(C) Monkey Typewriter</title>
<link>http://snipplr.com/view/24515/monkey-typewriter/</link>
<description><![CDATA[ <p>"The infinite monkey theorem states that a monkey hitting keys at random on a typewriter keyboard for an infinite amount of time will almost surely type a given text, such as the complete works of William Shakespeare."

http://en.wikipedia.org/wiki/Infinite_monkey_theorem</p> ]]></description>
<pubDate>Wed, 09 Dec 2009 07:58:47 GMT</pubDate>
<guid>http://snipplr.com/view/24515/monkey-typewriter/</guid>
</item>
<item>
<title>(C) Some handy math functions</title>
<link>http://snipplr.com/view/23665/some-handy-math-functions/</link>
<description><![CDATA[ <p>Functions for generating random numbers, flipping coins, rolling dice, etc.</p> ]]></description>
<pubDate>Tue, 24 Nov 2009 08:48:04 GMT</pubDate>
<guid>http://snipplr.com/view/23665/some-handy-math-functions/</guid>
</item>
<item>
<title>(C) Fancy String Input using Conio</title>
<link>http://snipplr.com/view/23651/fancy-string-input-using-conio/</link>
<description><![CDATA[ <p>Windows console string input allowing use of left and right arrow keys, backspace, and delete. For portability, falls back to stdio functions when you define NOCONIO.</p> ]]></description>
<pubDate>Tue, 24 Nov 2009 06:10:44 GMT</pubDate>
<guid>http://snipplr.com/view/23651/fancy-string-input-using-conio/</guid>
</item>
<item>
<title>(C) gotox gotoy for a conio implementation</title>
<link>http://snipplr.com/view/23646/gotox-gotoy-for-a-conio-implementation/</link>
<description><![CDATA[ <p>For "Borland-style CONIO implementation for MinGW/Dev-C++."
Source for that is at http://conio.cvs.sourceforge.net/viewvc/conio/conio2/
That project's home page is at http://conio.sourceforge.net</p> ]]></description>
<pubDate>Tue, 24 Nov 2009 04:41:55 GMT</pubDate>
<guid>http://snipplr.com/view/23646/gotox-gotoy-for-a-conio-implementation/</guid>
</item>
<item>
<title>(Assembler) 6502 Subroutine To Return a Power of 2</title>
<link>http://snipplr.com/view/22261/6502-subroutine-to-return-a-power-of-2/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 01 Nov 2009 01:20:18 GMT</pubDate>
<guid>http://snipplr.com/view/22261/6502-subroutine-to-return-a-power-of-2/</guid>
</item>
<item>
<title>(C) 6502 Instruction Set</title>
<link>http://snipplr.com/view/22258/6502-instruction-set/</link>
<description><![CDATA[ <p>May contain mistakes.

Suffix:
ac=accumulator
im=immediate
zp=zero page
zx=zero page,x
ab=absolute
ax=absolute,x
ay=absolute,y
ix=indirect,x
iy=indirect,y</p> ]]></description>
<pubDate>Sun, 01 Nov 2009 01:12:36 GMT</pubDate>
<guid>http://snipplr.com/view/22258/6502-instruction-set/</guid>
</item>
<item>
<title>(Other) Some Stuff for Batari Basic</title>
<link>http://snipplr.com/view/20542/some-stuff-for-batari-basic/</link>
<description><![CDATA[ <p>For batari Basic, which is  found at http://bataribasic.com

To use functions in bB, a=ExampleFunction(arg1,arg2)
To use functions in asm, make register a = arg1, y = arg2, and do jsr to function, and it returns value in register a.</p> ]]></description>
<pubDate>Thu, 01 Oct 2009 12:16:13 GMT</pubDate>
<guid>http://snipplr.com/view/20542/some-stuff-for-batari-basic/</guid>
</item>
<item>
<title>(HTML) My impersonation of Google</title>
<link>http://snipplr.com/view/19117/my-impersonation-of-google/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 01 Sep 2009 07:55:07 GMT</pubDate>
<guid>http://snipplr.com/view/19117/my-impersonation-of-google/</guid>
</item>
<item>
<title>(C) CGI guestbook</title>
<link>http://snipplr.com/view/19023/cgi-guestbook/</link>
<description><![CDATA[ <p>A simple guestbook.
Compile c file to exe, put in /cgi-bin/ with txt files.
Tested with TinyWeb server found here:
http://www.ritlabs.com/en/products/tinyweb/</p> ]]></description>
<pubDate>Sun, 30 Aug 2009 11:34:37 GMT</pubDate>
<guid>http://snipplr.com/view/19023/cgi-guestbook/</guid>
</item>
<item>
<title>(C) CGI program to show parameters</title>
<link>http://snipplr.com/view/19022/cgi-program-to-show-parameters/</link>
<description><![CDATA[ <p>Compile, put exe in cgi-bin folder, and post form data to it.</p> ]]></description>
<pubDate>Sun, 30 Aug 2009 10:12:37 GMT</pubDate>
<guid>http://snipplr.com/view/19022/cgi-program-to-show-parameters/</guid>
</item>
<item>
<title>(Other) Some handy GW-BASIC or QBASIC functions</title>
<link>http://snipplr.com/view/17799/some-handy-gwbasic-or-qbasic-functions/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 02 Aug 2009 05:53:37 GMT</pubDate>
<guid>http://snipplr.com/view/17799/some-handy-gwbasic-or-qbasic-functions/</guid>
</item>
<item>
<title>(JavaScript) Dynamically load javascript .js file</title>
<link>http://snipplr.com/view/17173/dynamically-load-javascript-js-file/</link>
<description><![CDATA[ <p>addjs("monkey"); will load "monkey.js" file in the same directory.</p> ]]></description>
<pubDate>Sun, 19 Jul 2009 16:54:37 GMT</pubDate>
<guid>http://snipplr.com/view/17173/dynamically-load-javascript-js-file/</guid>
</item>
<item>
<title>(C) console string input, confirm, pause</title>
<link>http://snipplr.com/view/16103/console-string-input-confirm-pause/</link>
<description><![CDATA[ <p>windows</p> ]]></description>
<pubDate>Fri, 19 Jun 2009 03:11:30 GMT</pubDate>
<guid>http://snipplr.com/view/16103/console-string-input-confirm-pause/</guid>
</item>
<item>
<title>(C) DOS stdin stdout inline ASM</title>
<link>http://snipplr.com/view/16070/dos-stdin-stdout-inline-asm/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 18 Jun 2009 09:24:23 GMT</pubDate>
<guid>http://snipplr.com/view/16070/dos-stdin-stdout-inline-asm/</guid>
</item>
<item>
<title>(Other) GW-BASIC Fireworks</title>
<link>http://snipplr.com/view/15706/gwbasic-fireworks/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 08 Jun 2009 16:00:57 GMT</pubDate>
<guid>http://snipplr.com/view/15706/gwbasic-fireworks/</guid>
</item>
<item>
<title>(Other) GW-BASIC Mandelbrot Set fractal explorer</title>
<link>http://snipplr.com/view/15632/gwbasic-mandelbrot-set-fractal-explorer/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 07 Jun 2009 13:16:08 GMT</pubDate>
<guid>http://snipplr.com/view/15632/gwbasic-mandelbrot-set-fractal-explorer/</guid>
</item>
<item>
<title>(Other) GW-BASIC random video - Old BASIC</title>
<link>http://snipplr.com/view/15619/gwbasic-random-video--old-basic/</link>
<description><![CDATA[ <p>Displays simple visual effect until you press a key.</p> ]]></description>
<pubDate>Sun, 07 Jun 2009 11:10:00 GMT</pubDate>
<guid>http://snipplr.com/view/15619/gwbasic-random-video--old-basic/</guid>
</item>
<item>
<title>(C) Make a Wav file</title>
<link>http://snipplr.com/view/15612/make-a-wav-file/</link>
<description><![CDATA[ <p>Makes a mono 8-bit (i.e. one byte per sample) wav file, "out.wav" containing a 500 Hertz sine wave signal. 22050 is the sample rate, and 64000 is the total size of audio data in bytes.</p> ]]></description>
<pubDate>Sun, 07 Jun 2009 09:14:59 GMT</pubDate>
<guid>http://snipplr.com/view/15612/make-a-wav-file/</guid>
</item>
</channel>
</rss>