<?xml version="1.0" encoding="utf-8"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>DaniWeb IT Discussion Community - Legacy and Other Languages</title>
		<link>http://www.daniweb.com/forums</link>
		<description><![CDATA[Our Legacy Languages forum is the place for Q&A-style discussions related to programming languages that are either depreciated or not popular enough to warrant their own forum. Please only post here if you're positive that we don't already have a more appropriate forum.]]></description>
		<language>en-US</language>
		<lastBuildDate>Sun, 06 Jul 2008 07:00:23 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.daniweb.com/forums/myimages/misc/rss.jpg</url>
			<title>DaniWeb IT Discussion Community - Legacy and Other Languages</title>
			<link>http://www.daniweb.com/forums</link>
		</image>
		<item>
			<title>Data Migration - Access DB to Mysql DB</title>
			<link>http://www.daniweb.com/forums/thread132529.html</link>
			<pubDate>Thu, 03 Jul 2008 18:58:32 GMT</pubDate>
			<description><![CDATA[The migration seems easy enough, but what about a non-Access Interface. I need to move Access '97 databases to a system that will not have Access. I plan to migrate to Mysql.
Any suggestions on an Interface similar to one my clients are used to?]]></description>
			<content:encoded><![CDATA[<div>The migration seems easy enough, but what about a non-Access Interface. I need to move Access '97 databases to a system that will not have Access. I plan to migrate to Mysql.<br />
Any suggestions on an Interface similar to one my clients are used to?</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum42.html">Legacy and Other Languages</category>
			<dc:creator>dasbootmjr</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread132529.html</guid>
		</item>
		<item>
			<title>image processing using MATLAB</title>
			<link>http://www.daniweb.com/forums/thread131915.html</link>
			<pubDate>Mon, 30 Jun 2008 15:13:04 GMT</pubDate>
			<description>hi guys...

i am working on image processing using MATLAB. I have to devise the code so as to detect any tampering in a given image, The tampering may be of any form.

In case any of you has any links related to image tampering, or if you have worked in this area earlier, please just send me a...</description>
			<content:encoded><![CDATA[<div>hi guys...<br />
<br />
i am working on image processing using MATLAB. I have to devise the code so as to detect any tampering in a given image, The tampering may be of any form.<br />
<br />
In case any of you has any links related to image tampering, or if you have worked in this area earlier, please just send me a pm.... i would love to get in touch with you...<br />
<br />
thx a lot...</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum42.html">Legacy and Other Languages</category>
			<dc:creator>akshit</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread131915.html</guid>
		</item>
		<item>
			<title>Access forum</title>
			<link>http://www.daniweb.com/forums/thread131283.html</link>
			<pubDate>Thu, 26 Jun 2008 13:24:59 GMT</pubDate>
			<description><![CDATA[Hi. There's any Access forum here?

Regards,
Marco]]></description>
			<content:encoded><![CDATA[<div>Hi. There's any Access forum here?<br />
<br />
Regards,<br />
Marco</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum42.html">Legacy and Other Languages</category>
			<dc:creator>Mpsilva</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread131283.html</guid>
		</item>
		<item>
			<title>Fortran - Fibonacci search not as efficient as it should be</title>
			<link>http://www.daniweb.com/forums/thread130665.html</link>
			<pubDate>Mon, 23 Jun 2008 10:20:13 GMT</pubDate>
			<description>Hello,
I coded binary and Fibonacci search algorithms in Fortran and was trying to determine for what size of array Fibonacci search would become faster than the binary search. Unfortunately, what I get is the binary search being quicker on any given array.

Here is my implementation of the...</description>
			<content:encoded><![CDATA[<div>Hello,<br />
I coded binary and Fibonacci search algorithms in Fortran and was trying to determine for what size of array Fibonacci search would become faster than the binary search. Unfortunately, what I get is the binary search being quicker on any given array.<br />
<br />
Here is my implementation of the Fibonacci search.<br />
<br />
<div style="margin:10px 20px 20px 20px"> <code style="margin:0px" dir="ltr" style="text-align:left">integer function fsrch(array,size,item)<br />
&nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; real array(size), item<br />
&nbsp; &nbsp; &nbsp; integer size&nbsp;  <br />
&nbsp; &nbsp; &nbsp; integer fib(48), bsrch2, k, discrd, index<br />
&nbsp; &nbsp; &nbsp; intent (in) :: size, array, item<br />
<br />
&nbsp; &nbsp; &nbsp; discrd = 0<br />
<br />
c Precomputed Fibonacci numbers F0 up to F47. <br />
<br />
&nbsp; &nbsp; &nbsp; data fib(1)/ 0/, fib(2)/ 1/, fib(3)/ 1/, fib(4)/ 2/, fib(5)/ 3/<br />
&nbsp; &nbsp;  +fib(6)/ 5/, fib(7)/ 8/, fib(8)/ 13/, fib(9)/ 21/,fib(10)/ 34/<br />
&nbsp; &nbsp;  +fib(11)/ 55/, fib(12)/ 89/, fib(13)/ 144/, fib(14)/ 233/<br />
&nbsp; &nbsp;  +fib(15)/ 377/, fib(16)/ 610/, fib(17)/ 987/, fib(18)/ 1597/<br />
&nbsp; &nbsp;  +fib(19)/ 2584/, fib(20)/ 4181/, fib(21)/ 6765/<br />
&nbsp; &nbsp;  +fib(22)/ 10946/, fib(23)/ 17711/, fib(24)/ 28657/<br />
&nbsp; &nbsp;  +fib(25)/ 46368/, fib(26)/ 75025/, fib(27)/ 121393/<br />
&nbsp; &nbsp;  +fib(28)/ 196418/, fib(29)/ 317811/, fib(30)/ 514229/<br />
&nbsp; &nbsp;  +fib(31)/ 832040/, fib(32)/ 1346269/, fib(33)/ 2178309/<br />
&nbsp; &nbsp;  +fib(34)/ 3524578/, fib(35)/ 5702887/, fib(36)/ 9227465/<br />
&nbsp; &nbsp;  +fib(37)/ 14930352/, fib(38)/ 24157817/, fib(39)/ 39088169/<br />
&nbsp; &nbsp;  +fib(40)/ 63245986/, fib(41)/ 102334155/, fib(42)/ 165580141/<br />
&nbsp; &nbsp;  +fib(43)/ 267914296/, fib(44)/ 433494437/, fib(45)/ 701408733/<br />
&nbsp; &nbsp;  +fib(46)/ 1134903170/, fib(47)/ 1836311903/<br />
&nbsp; &nbsp;  +fib(48)/ 2147483647/<br />
<br />
c Find the smallest Fibonacci number that is greater or equal to array size.<br />
&nbsp; &nbsp; &nbsp; k=bsrch2(fib,48,size)<br />
<br />
c If k = 0, stop. There is no match; the item is not in the array<br />
&nbsp;  10 if (k .ne. 0) then<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; index = fib(k-1) + discrd<br />
c If element Fk-1 is beyond the end of the array, we pretend that the array <br />
c is padded with elements larger than the sought item.<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (index .gt. size) then<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  k = k-1<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  goto 10<br />
c Compare the item against element in Fk-1<br />
c If the item is less than entry Fk-1, discard the elements from positions <br />
c Fk-1 to n. Set k = k - 1 and return to 10.<br />
&nbsp; &nbsp; &nbsp; &nbsp;  else if (item .lt. array(index)) then <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  k = k-1<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  goto 10<br />
c If the item is greater than entry Fk-1, discard the elements from positions <br />
c 1 to Fk-1. Set k = k - 2, and return to 10.<br />
&nbsp; &nbsp; &nbsp; &nbsp;  else if (item .gt. array(index)) then<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  discrd = index<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  k = k-2&nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  goto 10<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end if<br />
c If the item matches, stop.<br />
&nbsp; &nbsp; &nbsp; end if<br />
c Return the result or the index of the nearest lower item if the item was not found.<br />
&nbsp; &nbsp; &nbsp; if (item .eq. array(index)) then<br />
&nbsp; &nbsp; &nbsp; &nbsp;  fsrch = index<br />
&nbsp; &nbsp; &nbsp; else<br />
&nbsp; &nbsp; &nbsp; &nbsp;  fsrch = discrd<br />
&nbsp; &nbsp; &nbsp; end if<br />
<br />
&nbsp; &nbsp; &nbsp; return<br />
&nbsp; &nbsp; &nbsp; end</code> </div>
<br />
Any tips on how to improve it would be great.<br />
<br />
Thank you.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum42.html">Legacy and Other Languages</category>
			<dc:creator>beatlea</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread130665.html</guid>
		</item>
		<item>
			<title>Need to send Cntrl +C to an Running Exe using a DOS batch File.</title>
			<link>http://www.daniweb.com/forums/thread130256.html</link>
			<pubDate>Fri, 20 Jun 2008 07:14:02 GMT</pubDate>
			<description>Hello,

I have a query regarding a DOS command. I know this link is not the right place to ask queres about DOS but didnt find any another link in this forum.

I need to send Cntrol +C to a running Exe (running on Windows) using a batch file.Can Any one guide me for this.

Regards.</description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
I have a query regarding a DOS command. I know this link is not the right place to ask queres about DOS but didnt find any another link in this forum.<br />
<br />
I need to send Cntrol +C to a running Exe (running on Windows) using a batch file.Can Any one guide me for this.<br />
<br />
Regards.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum42.html">Legacy and Other Languages</category>
			<dc:creator>programmer321</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread130256.html</guid>
		</item>
		<item>
			<title><![CDATA[Creating .EXE's in Smalltalk/Squeak]]></title>
			<link>http://www.daniweb.com/forums/thread129585.html</link>
			<pubDate>Mon, 16 Jun 2008 09:28:40 GMT</pubDate>
			<description><![CDATA[Hello Daniweb,

I've recently begun reading the e-book Squeak by Example. So far, I'm finding the Smalltalk language pretty interesting and much more stimulating than, say, Java. I'm on chapter 3 of the book.

By now, since I'm much more used to creating runnable programs or scripts with other...]]></description>
			<content:encoded><![CDATA[<div>Hello Daniweb,<br />
<br />
I've recently begun reading the e-book Squeak by Example. So far, I'm finding the Smalltalk language pretty interesting and much more stimulating than, say, Java. I'm on chapter 3 of the book.<br />
<br />
By now, since I'm much more used to creating runnable programs or scripts with other languages, I've begun to wonder if there's a way to create a Smalltalk program (e.g., a &quot;Hello world!&quot; console program or a Win32 GUI RSS feed reader). Is it possible to do this, or is all Smalltalk code written to be run in a Smalltalk environment? (I doubt that's the case since, apparently, Squeak itself is a Smalltalk program.)<br />
<br />
Thank you for your time and help!</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum42.html">Legacy and Other Languages</category>
			<dc:creator>crono5788</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread129585.html</guid>
		</item>
		<item>
			<title>Dr scheme read text file help</title>
			<link>http://www.daniweb.com/forums/thread128987.html</link>
			<pubDate>Thu, 12 Jun 2008 08:46:57 GMT</pubDate>
			<description><![CDATA[I am trying to make a program that will take a list of words from a .txt file and add the alphabet to the end of each word.

the code i have just makes it read and re-read the first line. since each list will be different i cant just do 

 <div class="codeblock"> <div class="spaced"> <div...]]></description>
			<content:encoded><![CDATA[<div>I am trying to make a program that will take a list of words from a .txt file and add the alphabet to the end of each word.<br />
<br />
the code i have just makes it read and re-read the first line. since each list will be different i cant just do <br />
<br />
<div style="margin:10px 20px 20px 20px"> <code style="margin:0px" dir="ltr" style="text-align:left">(read-line)<br />
(read-line)<br />
(read-line)<br />
<br />
<br />
etc....<br />
because each list will have different amounts of lines</code> </div>
<br />
<br />
the way i want to have it read is to get the first line, add a,b,c,d etc... to the end then goto the next line.<br />
<br />
<br />
This is my code i have to get from file<br />
<div style="margin:10px 20px 20px 20px"> <code style="margin:0px" dir="ltr" style="text-align:left"><br />
(define (adder path)<br />
&nbsp; &nbsp;  (alpha-get &quot;test.txt&quot;))<br />
&nbsp; <br />
(define (alpha)<br />
0)<br />
&nbsp;<br />
(define (alpha-get dir)<br />
&nbsp; &nbsp; (set! alpha <br />
&nbsp; &nbsp; &nbsp; (list (with-input-from-file dir<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  (lambda ()<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (list<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (read-line))))))<br />
&nbsp; &nbsp;  (begin<br />
&nbsp; &nbsp;  (display alpha)<br />
&nbsp; &nbsp; (alpha-get &quot;readsme.txt&quot;)))</code> </div>
<br />
im forgetting the add suffix for the moment as i know how to do that<br />
<br />
can someone help me please. the procedure to get the files id alpha-get.<br />
<br />
<br />
any help with higher order procedures that might do what i need would be great</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum42.html">Legacy and Other Languages</category>
			<dc:creator>captainhair</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread128987.html</guid>
		</item>
		<item>
			<title>a doubt in flex</title>
			<link>http://www.daniweb.com/forums/thread128526.html</link>
			<pubDate>Tue, 10 Jun 2008 02:54:36 GMT</pubDate>
			<description>hello. I am developing a project in flex. It is to create a line with 3 points and the user should be able to manipulate the line into various shapes with those points on it. I am having some problems devloping the handles on the line. I couldnt get any good links from the web on searching. Can...</description>
			<content:encoded><![CDATA[<div>hello. I am developing a project in flex. It is to create a line with 3 points and the user should be able to manipulate the line into various shapes with those points on it. I am having some problems devloping the handles on the line. I couldnt get any good links from the web on searching. Can anyone give any suggestions on how to do it or forward any good links regarding this?</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum42.html">Legacy and Other Languages</category>
			<dc:creator>cyberquizzer21</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread128526.html</guid>
		</item>
	</channel>
</rss>
