<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>General programming Forum RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest threads from the 'General programming' forum at Programmer's Heaven, excluding replies.</description>
    <language>en</language>
    <copyright>Copyright 2008 Programmers Heaven</copyright>
    <pubDate>Mon, 01 Dec 2008 18:59:09 -0700</pubDate>
    <lastBuildDate>Mon, 01 Dec 2008 18:59:09 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>associates degree versus master's degree</title>
      <link>http://www.programmersheaven.com/mb/general/382198/382198/associates-degree-versus-masters-degree/</link>
      <description>I have a four year degree in chemistry.&lt;br /&gt;
&lt;br /&gt;
Now I want to become a computer programmer.&lt;br /&gt;
&lt;br /&gt;
I'm willing to go back to school for a year or two.&lt;br /&gt;
&lt;br /&gt;
For an entry level programmer at this point in time, what's the approximate starting salary if I had an associate's degree in computer science? How about if I had a master's degree?&lt;br /&gt;
&lt;br /&gt;
In case it matters, I'm in the Northeast.&lt;br /&gt;
&lt;br /&gt;</description>
      <pubDate>Mon, 24 Nov 2008 16:59:33 -0700</pubDate>
      <category>General programming</category>
    </item>
    <item>
      <title>Advice needed: Open source vs microsoft.NET</title>
      <link>http://www.programmersheaven.com/mb/general/382051/382051/advice-needed-open-source-vs-microsoftnet/</link>
      <description>I studied a sound and multimedia degree at my uni and pretty much hated most of the stuff. Bad lecturers, too much stuff to cover and changing course directors meant that everyone had a pretty crappy 3 years. What I did enjoy though were the interactive and programming sections of the course such as ASP/XML programming and some VERY basic web stuff. &lt;br /&gt;
&lt;br /&gt;
So now I'm looking at taking another part time course to get on that track and I've found a couple which look quite promising but I just don't know enough about the area career wise to make a choice at the moment. &lt;br /&gt;
&lt;br /&gt;
The two courses are quite similar but one focuses on open source programming and the other on microsoft.NET so I was wondering if anyone could say yay or nay to either. Bear in mind, I have extremely basic experience in programming anything, just basic HTML and actionscript so going into either would be starting from the ground up. &lt;br /&gt;
&lt;br /&gt;
Here are the two course descriptions:&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.tic.ac.uk/content/pdfs/courses/0295_programmespec.pdf"&gt;http://www.tic.ac.uk/content/pdfs/courses/0295_programmespec.pdf&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.tic.ac.uk/content/pdfs/courses/0294_programmespec.pdf"&gt;http://www.tic.ac.uk/content/pdfs/courses/0294_programmespec.pdf&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Do they sound like they'd give a solid intro into getting into a career in this area? Any help or pointings in the right direction would be REALLY appreciated!!&lt;br /&gt;
&lt;br /&gt;
Cheers,&lt;br /&gt;
&lt;br /&gt;
Alex&lt;br /&gt;</description>
      <pubDate>Wed, 19 Nov 2008 18:37:22 -0700</pubDate>
      <category>General programming</category>
    </item>
    <item>
      <title>Want to get into Programming</title>
      <link>http://www.programmersheaven.com/mb/general/381803/381803/want-to-get-into-programming/</link>
      <description>I am a 22-year-old student at Northampton Community College in Bethlehem, PA, USA. Right now I am in a major I am not interested in (Liberal Arts) and I want to switch to a programming degree. The college has a computer science major, so I'm assuming that's what I should go for. I really want to get into game programming and design, but I know that to do that you need to be skilled in software development and programming. My main goal is to one day work for big-name companies like Microsoft and Sony and become the creator of the XBox 3600 or the Playstation 13. But that's jumping a bit far ahead. I won't be hanging out with Bill Gates or Phil Harrison anytime soon.&lt;br /&gt;
&lt;br /&gt;
I do have a few questions, though. First off, my computer is an Apple Powerbook G4 (I got in in '04, but I think it was produced in '01). Would I need to switch to a PC laptop? I know that they have more options when it comes to this stuff, plus I can buy games for it and enter the modding community (GTA IV comes out on Friday for Windows). Keep in mind that I'm just a college student with a part-time job, so I'm not exactly rolling in the dough. Should I sell my Powerbook to get a PC? Will viruses be a problem? As for the classes, I will talk with the advising department at my college as I have done in the past. All I know is, I'd much rather spend my life writing a new version of the Windows OS than writing short stories about Pilgrims and cleaning theaters for minimum wage.&lt;br /&gt;</description>
      <pubDate>Wed, 12 Nov 2008 10:38:24 -0700</pubDate>
      <category>General programming</category>
    </item>
    <item>
      <title>Random code generator</title>
      <link>http://www.programmersheaven.com/mb/general/381721/381721/random-code-generator/</link>
      <description>Hello!&lt;br /&gt;
&lt;br /&gt;
  I need to make a Gold code generator. Gold code is a random code used in CDMA technique. You can find an example generator scheme here:&lt;br /&gt;
&lt;a href="http://img357.imageshack.us/my.php?image=genhr2.jpg"&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Generator consists of 2 shift registers. Grey squares are shift register bits. After one cycle each bit is shifted right and In upper register MSB=bit1 + bit 4, in lower MSB = bit1 + bit2 +bit3 + bit4 etc. according to generator structure.&lt;br /&gt;
&lt;br /&gt;
So the code would be some like this:&lt;br /&gt;
&lt;br /&gt;
while (true)&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
   //shift all bits right&lt;br /&gt;
   bit_out1 = UpperRegisterBits[1];  //first output&lt;br /&gt;
   for (int i=1; i &amp;lt; 24; i++)&lt;br /&gt;
      {&lt;br /&gt;
         UpperRegisterBits[i] = UpperRegisterBits[i+1];&lt;br /&gt;
       }&lt;br /&gt;
   UpperRegisterBits[25] = (UpperRegisterBits[4] +UpperRegisterBits[2]) mod 2;&lt;br /&gt;
  bit_out2 = ( (UpperRegisterBits[19] + UpperRegisterBits[8]+ UpperRegisterBits[5]) + (LowerRegisterBits[18] + LowerRegisterBits[7]+ LowerRegisterBits[5])) mod 2;&lt;br /&gt;
   &lt;br /&gt;
  //....etc. &lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
UNFORTUNATELY, THE CODE I RECEIVED FOR DIFFERENT INITIAL CONDITIONS IS PERIODICAL, WHILE IT SHOULD BE RANDOM....  &lt;br /&gt;
Is anything wrong with my algorithm?&lt;br /&gt;</description>
      <pubDate>Mon, 10 Nov 2008 23:33:49 -0700</pubDate>
      <category>General programming</category>
    </item>
    <item>
      <title>Website Development &amp; Web Maintenance along with E-commerce Shopping C</title>
      <link>http://www.programmersheaven.com/mb/general/381515/381515/website-development--web-maintenance-along-with-e-commerce-shopping-c/</link>
      <description>Hi all Friends!!!&lt;br /&gt;
&lt;br /&gt;
This is Webmaster of &lt;strong&gt;Software Development Services&lt;/strong&gt; &amp;amp; Solution Provider Company India. &lt;br /&gt;
&lt;br /&gt;
I am new to this forum and hope to get good support from all the forum members.&lt;br /&gt;
&lt;br /&gt;
I am here to help the forum members &amp;amp; to get help from the forum members for whatever my queries are.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thanks &amp;amp; regards&lt;br /&gt;
YANTRAM SOFTWARE DEVELOPER Pvt. Ltd.&lt;br /&gt;
www.Software-Development-Service.com&lt;br /&gt;
&lt;br /&gt;</description>
      <pubDate>Mon, 03 Nov 2008 06:04:36 -0700</pubDate>
      <category>General programming</category>
    </item>
    <item>
      <title>Help in serial port programming</title>
      <link>http://www.programmersheaven.com/mb/general/381512/381512/help-in-serial-port-programming/</link>
      <description>Hi,&lt;br /&gt;
I have set up the Window Hyperterminal&lt;br /&gt;
to communicate with the serial port. I also &lt;br /&gt;
turn On the Echo On in ASCII set up. But when&lt;br /&gt;
 I type, the writing echo on the screen &lt;br /&gt;
very slowy. Did I miss something?&lt;br /&gt;
Please help.&lt;br /&gt;</description>
      <pubDate>Mon, 03 Nov 2008 04:59:06 -0700</pubDate>
      <category>General programming</category>
    </item>
    <item>
      <title>Why is the name Javascript confused with Java?</title>
      <link>http://www.programmersheaven.com/mb/general/381435/381435/why-is-the-name-javascript-confused-with-java/</link>
      <description>Hello, &lt;br /&gt;
&lt;br /&gt;
I have this problem, when people ask me "do I program in Java?", I think they mean Javascript, but when they talk about programming in JAVA which is compiled into bytecode - thats where I have to say to them that I dont program in that language. On the other hand, it becomes really confusing to other programmers (who are new to programming JAVA) when I say I write Javascript in in HTML - they think I am saying I am writing actual JAVA code, as into the the HTML script file. The reason is that in the colloquialism of person to person talk - a source code of a program such as C++, is refered to in simpler terms as just a "script" as a derivative of the word "conscript". And that is why Javascript and JAVA is confused for me. Has anyone had this problem with the similarities of the names ? &lt;br /&gt;
&lt;br /&gt;
Thanks &lt;br /&gt;
 &lt;br /&gt;
K.J.Williams</description>
      <pubDate>Thu, 30 Oct 2008 21:43:02 -0700</pubDate>
      <category>General programming</category>
    </item>
    <item>
      <title>Reasons why programers create viruses?</title>
      <link>http://www.programmersheaven.com/mb/general/378428/378428/reasons-why-programers-create-viruses/</link>
      <description>&lt;strong&gt;can any one here have a idea why some programmers create viruses?&lt;br /&gt;
if you have an idea ,please show me also your source,thanks &lt;/strong&gt;:D &lt;br /&gt;</description>
      <pubDate>Wed, 08 Oct 2008 22:45:43 -0700</pubDate>
      <category>General programming</category>
    </item>
    <item>
      <title>What is the difference between VB script and Java script?</title>
      <link>http://www.programmersheaven.com/mb/general/376835/376835/what-is-the-difference-between-vb-script-and-java-script/</link>
      <description>&lt;br /&gt;
Which one is the better tool for client side validation? I am using java script .Can any one suggests which one is the better?&lt;br /&gt;
 &lt;a href="http://www.newagesmb.com"&gt;NJ website development&lt;/a&gt;&lt;br /&gt;</description>
      <pubDate>Fri, 03 Oct 2008 02:05:55 -0700</pubDate>
      <category>General programming</category>
    </item>
    <item>
      <title>what are you searching for today?</title>
      <link>http://www.programmersheaven.com/mb/general/375945/375945/what-are-you-searching-for-today/</link>
      <description>Hello friends,&lt;br /&gt;
What are you searching for?&lt;br /&gt;
Shoes, jeans, clothes, handbags, purse, sunglasses or cap? &lt;br /&gt;
Which brand do you want?&lt;br /&gt;
Jordan, Air force one, Air Max,Adidas,Gucci,Dunk,James,Shox,Bapesta,Puma,Prad a,Evisu,Bape,&lt;br /&gt;
ED Hardy.Chanel, Coach, Choel, Dior, Fendi or others?&lt;br /&gt;
Welcome to www.nikeexpert.com&lt;br /&gt;
There are different kinds of products and different brands in this website. The merchandises are of good quality and at the lowest price. I really hope you can find something you need.&lt;br /&gt;
The lowest price is our characteristic, high quality is our foundation, good service is our duty. Totally, customer satisfaction is our mission. Our company insists that ‘Customer is god; Quality is first, price is reasonable’.&lt;br /&gt;
We sincerely hope that we can do business with you in the near future, and make progress together and create the prospect future!&lt;br /&gt;
More details please search www.nikeexpert.com&lt;br /&gt;
Or contact me nikeexpert88@msn.com&lt;br /&gt;
My skype id is ; maggie6388&lt;br /&gt;
we really hope to do something for you ~ ~ &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <pubDate>Wed, 24 Sep 2008 07:29:37 -0700</pubDate>
      <category>General programming</category>
    </item>
    <item>
      <title>The worth of old books</title>
      <link>http://www.programmersheaven.com/mb/general/375747/375747/the-worth-of-old-books/</link>
      <description>I got this C++ book published a little over 4 years ago, is it still good or should I get the most recent books?&lt;br /&gt;</description>
      <pubDate>Sun, 21 Sep 2008 19:26:46 -0700</pubDate>
      <category>General programming</category>
    </item>
    <item>
      <title>order k lists into one in O(nlogk) complexity</title>
      <link>http://www.programmersheaven.com/mb/general/375717/375717/order-k-lists-into-one-in-onlogk-complexity/</link>
      <description>cant find a solution to this problem:&lt;br /&gt;
design an algorithm which takes as input a collection o k ordered(from min to max) lists (their elements were taken from a collection of n ordered numbers)and combines them to one ordered list. the complexity of the algorithm must be O(nlogk) n is the total number of the elements&lt;br /&gt;</description>
      <pubDate>Sun, 21 Sep 2008 07:10:03 -0700</pubDate>
      <category>General programming</category>
    </item>
    <item>
      <title>Self Teaching</title>
      <link>http://www.programmersheaven.com/mb/general/375056/375056/self-teaching/</link>
      <description>I've decided that I will peruse a computer science degree, while I'm taking prerequisite classes I want to try to learn what I can on my own, but I'm having trouble getting started. I would appreciate any tips on self teaching.&lt;br /&gt;</description>
      <pubDate>Tue, 09 Sep 2008 19:26:05 -0700</pubDate>
      <category>General programming</category>
    </item>
    <item>
      <title>hey! can someone help me with that little apps!?</title>
      <link>http://www.programmersheaven.com/mb/general/374962/374962/hey-can-someone-help-me-with-that-little-apps/</link>
      <description>hey!&lt;br /&gt;
can someone help me, i need 2 exe files, one that turn off monitor and mute sounds and the other one undo that (turn on the monitor and unmute).&lt;br /&gt;
&lt;br /&gt;
i hope you can help me, thanks!&lt;br /&gt;</description>
      <pubDate>Sat, 06 Sep 2008 19:53:29 -0700</pubDate>
      <category>General programming</category>
    </item>
    <item>
      <title>Free IT Books, Free Java books, Free J2EE books, Free .NET books</title>
      <link>http://www.programmersheaven.com/mb/general/374939/374939/free-it-books-free-java-books-free-j2ee-books-free-net-books/</link>
      <description>Dear Friends,&lt;br /&gt;
&lt;br /&gt;
You are free to download ebooks of AJAX, ASP.NET, VB.NET, SQL Server, PHP, JAVA, software, oracle, Unix, Google Adsense, Linus, SAP, Pearl and much more.&lt;br /&gt;
&lt;br /&gt;
Download from &lt;br /&gt;
&lt;a href="http://freedownload12.blogspot.com/"&gt;http://freedownload12.blogspot.com/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Other Useful Links&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://aspnet2008.blogspot.com/"&gt;http://aspnet2008.blogspot.com/&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://ajaxsample.blogspot.com/"&gt;http://ajaxsample.blogspot.com/&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://bugtrace.blogspot.com/"&gt;http://bugtrace.blogspot.com/&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://mssqlinterview.blogspot.com/"&gt;http://mssqlinterview.blogspot.com/&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://javascriptinterview.blogspot.com/"&gt;http://javascriptinterview.blogspot.com/&lt;/a&gt;&lt;br /&gt;</description>
      <pubDate>Fri, 05 Sep 2008 23:15:54 -0700</pubDate>
      <category>General programming</category>
    </item>
    <item>
      <title>Hyperterminal Help</title>
      <link>http://www.programmersheaven.com/mb/general/374666/374666/hyperterminal-help/</link>
      <description>Hello,&lt;br /&gt;
 I am new to the computer field and have been assigned to help out with a transition in our hospital.  We have installed hyperterminal private addition 6.4 on some test terminals.  When we attempt to sign into the particular application it wants the login in lowercase.  I have tried everything and googled questions but I can not get the program to type lowercase?  Any ideas?&lt;br /&gt;
Thanks for helping a beginner!&lt;br /&gt;
&lt;br /&gt;
Donna&lt;br /&gt;</description>
      <pubDate>Sat, 30 Aug 2008 04:58:17 -0700</pubDate>
      <category>General programming</category>
    </item>
    <item>
      <title>FREE EBOOKS</title>
      <link>http://www.programmersheaven.com/mb/general/374630/374630/free-ebooks/</link>
      <description>hi,&lt;br /&gt;
&lt;br /&gt;
You can find really helpful books at the following link...&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://books-pdf.blogspot.com"&gt;http://books-pdf.blogspot.com&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://freebooksandmagazines.blogspot.com"&gt;http://freebooksandmagazines.blogspot.com&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.ebooksboard.com/"&gt;http://www.ebooksboard.com/&lt;/a&gt;&lt;br /&gt;</description>
      <pubDate>Fri, 29 Aug 2008 03:10:13 -0700</pubDate>
      <category>General programming</category>
    </item>
    <item>
      <title>Exam project</title>
      <link>http://www.programmersheaven.com/mb/general/374608/374608/exam-project/</link>
      <description>Hello,&lt;br /&gt;
&lt;br /&gt;
I would like to create the following windows front end application but am unsure of which software would be best to do the following:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
//////////////////////////////////////////////////
//////////////////////////////////////////&lt;br /&gt;
&lt;br /&gt;
Exam project:&lt;br /&gt;
&lt;br /&gt;
I have eight modules (exam questions). Each module is an .exe file which opens in full screen. The user then answers the interactive questions. At the moment, they are all separate exe files.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Firstly, I would like to be able to display these modules as thumbnails in a full screen application. (forgive my poor illustrations)&lt;br /&gt;
&lt;br /&gt;
----------------&lt;br /&gt;
()  ()  ()  ()&lt;br /&gt;
&lt;br /&gt;
()  ()  ()  ()&lt;br /&gt;
&lt;br /&gt;
----------------&lt;br /&gt;
&lt;br /&gt;
The user then selects which module to open and the module opens within the  front end GUI.  The user then does the selected interactive exam.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----------------&lt;br /&gt;
&lt;br /&gt;
Exam questions&lt;br /&gt;
inside GUI&lt;br /&gt;
&lt;br /&gt;
----------------&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If the user successfully completes the exam then they are returned back to the main GUI menu. The completed exam thumbnail will be marked with a tick and the user will be unable to select the completed exam.&lt;br /&gt;
&lt;br /&gt;
If the user fails, or quits, then they are returned back to the main GUI menu and the uncompleted exam thumbnail will show the number of attempts.&lt;br /&gt;
&lt;br /&gt;
This continues until all exam modules are completed. The user can save their progress only at the menu so they do not have to complete all the &lt;br /&gt;
modules at once. However, once a module is started, they can only complete or quit.&lt;br /&gt;
&lt;br /&gt;
//////////////////////////////////////////////////
//////////////////////////////////////////&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I have some programming experience but not much in Windows/desktop. In order for the thumbnails to show whether the exam is completed or not would the results be written to a data file, then read by the GUI menu?&lt;br /&gt;
&lt;br /&gt;
Also, is it possible to bundle all of this up into one .exe application. The modules cannot be accessed as individual files.&lt;br /&gt;
&lt;br /&gt;
Finally, with Vista, many types of exe files require administrators permission, would this be the case with each module as they are selected?&lt;br /&gt;
&lt;br /&gt;
I am looking at buying Visual basic 6 professional, would this be the best choice?&lt;br /&gt;
&lt;br /&gt;
I am willing to put the work in but would appreciate assistance in choosing the best software to get the results. &lt;br /&gt;
&lt;br /&gt;
thanks,&lt;br /&gt;
&lt;br /&gt;
Rob&lt;br /&gt;</description>
      <pubDate>Thu, 28 Aug 2008 08:06:17 -0700</pubDate>
      <category>General programming</category>
    </item>
    <item>
      <title>Re-creation Copyright Questions</title>
      <link>http://www.programmersheaven.com/mb/general/374508/374508/re-creation-copyright-questions/</link>
      <description>I would like to recreate/revamp a game called &lt;a href="http://www.theblackforge.net/"&gt;AlterEgo&lt;/a&gt; that was made by Dan Fabulich. I tried to contact him for his agreement. I don't plan on making an exact copy of the work, firstly because the environment I'm working in is different and the result is going to have a different interface, and secondly because I'm removing some features and adding a couple new ones. However, since I have failed to contact Mr. Fabulich, I was wondering what copyright rules apply. Will I have to rephrase all of his text, copy it directly and credit him, or not be able to proceed at all? To what extent do I have to alter the game to make it legal? Also, does the fact that I am using some of the suggestions from the wishlist of his users come in to play at all? Please give advice!&lt;br /&gt;
-JavaKirk</description>
      <pubDate>Mon, 25 Aug 2008 17:59:04 -0700</pubDate>
      <category>General programming</category>
    </item>
    <item>
      <title>Queue application In C</title>
      <link>http://www.programmersheaven.com/mb/general/374098/374098/queue-application-in-c/</link>
      <description>In general all fast food chains like McDonalds, Subway, and other drive-ins follow queue model to take the order and serve. When a user enters the desk, his order is pushed into the system. The stewards, cook/arrange the order based on the queue inside kitchen. Once the order is prepared, it will dequeued of kitchen queue.&lt;br /&gt;
&lt;br /&gt;
   1. Let us consider a queue of 10. More than 10 display queue is full message.&lt;br /&gt;
   2. Customer approach different desks/counters at same time. In each counter they are asked for the order. Entire order details are stored in a data structure and pushed/enqueued into the kitchen queue.&lt;br /&gt;
   3. Every order is at service desk. Amount of their order is mentioned at the end. For this we need list of items and their respective prices are stored in item list. At the end of the order the total amount is calculated. At payment, let us assume same order is reflected in the kitchen. This is one push operation.&lt;br /&gt;
   4. The values inside queue elements would be the order and the quantity.&lt;br /&gt;
   5. Once the order is prepared and delivered a pop/dequeue operation removes the front order and stores them in a file with a transaction number.&lt;br /&gt;
   6. Until the front order is complete. Order is not popped out/dequeued. When the queue of 10 is not served that means the queue is full. The desks have to wait&lt;br /&gt;
   7. Simulate desks scenarios using a random number mod 3/4 operation representing each desk. And these orders are placed in the queue based on the order generated by random number. &lt;br /&gt;</description>
      <pubDate>Tue, 12 Aug 2008 02:09:07 -0700</pubDate>
      <category>General programming</category>
    </item>
    <item>
      <title>Programming Project</title>
      <link>http://www.programmersheaven.com/mb/general/374022/374022/programming-project/</link>
      <description>&lt;br /&gt;
Hi All,&lt;br /&gt;
&lt;br /&gt;
Im about to enter the final year of my degree program. In this year i have to produce a project which will server as my disertation piece. The problem I have at the moment is I have no idea what to do the project on.&lt;br /&gt;
&lt;br /&gt;
The projects i have come up with all seem to easy. Does any one have any project suggestions which may help me think up an idea.&lt;br /&gt;
&lt;br /&gt;
Thanks&lt;br /&gt;
&lt;br /&gt;
Matt&lt;br /&gt;
-----------------&lt;br /&gt;
&lt;a href="http://www.matthewseymour.co.uk"&gt;http://www.matthewseymour.co.uk&lt;/a&gt;</description>
      <pubDate>Fri, 08 Aug 2008 03:25:22 -0700</pubDate>
      <category>General programming</category>
    </item>
    <item>
      <title>Remove Expired files Windows 2000</title>
      <link>http://www.programmersheaven.com/mb/general/373802/373802/remove-expired-files-windows-2000/</link>
      <description>What would be the best way to automate removal of expired files on a Win2000 server?&lt;br /&gt;</description>
      <pubDate>Wed, 30 Jul 2008 08:14:29 -0700</pubDate>
      <category>General programming</category>
    </item>
    <item>
      <title>Jpeg to Postscript help.... =(</title>
      <link>http://www.programmersheaven.com/mb/general/373731/373731/jpeg-to-postscript-help-/</link>
      <description>Hi Everyone,&lt;br /&gt;
&lt;br /&gt;
    I have a jpeg image file which i would like to convert it to Postscript text file (.PS) and i did it using "Inkscape" to open the jpeg file and save it as a Postscript (.PS) file. But when i tried to open the Postscript file using Wordpad, it prints out a bunch of gibberish stuffs which i can't read it.    &lt;br /&gt;
    Is there anyway i can convert the jpeg image file to readable Postscript text? &lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
Sadspade&lt;br /&gt;</description>
      <pubDate>Mon, 28 Jul 2008 20:18:46 -0700</pubDate>
      <category>General programming</category>
    </item>
    <item>
      <title>Need a few pointers for a college project</title>
      <link>http://www.programmersheaven.com/mb/general/373642/373642/need-a-few-pointers-for-a-college-project/</link>
      <description>Hi there,&lt;br /&gt;
&lt;br /&gt;
I'm currently doing my last year at college where I need to do two projects. The major project has to be developed either in VB, VB.NET or Java. The minor project can be done in HTML with the use of dynamic elements. &lt;br /&gt;
&lt;br /&gt;
I've also been working for a company that currently does leave management manually. The HR gives out forms to employees, who fill it up, get it approved by their superiors and then submit to the HR. The HR then fills them out manually into an excel sheet for further processing.&lt;br /&gt;
&lt;br /&gt;
I plan to computerize this process...&lt;br /&gt;
&lt;br /&gt;
The users will fill an online leave form, the data gets stored in a database and the superior gets an e-mail notification. The superior will then need to log in and approve/deny the leave. The HR can do tasks like create/edit/delete users, view records etc. Pls note that since all PCs are connected via LAN, i'll be using Intranet for connectivity since it'll be easier and more secure.&lt;br /&gt;
&lt;br /&gt;
I had originally planned to create the entire project web-based, but since my college needs one part to be done in VB/.NET/Java, I've decided that I will computerize the above said process using browser-based as well as a software-based interface. The employees will get the web-based interface while i'll create a software-driven (VB or VB.NET) for the HR. &lt;br /&gt;
&lt;br /&gt;
Now my questions are: which software do I use with respect to my scenario. The creation of this project needs to be as simple as possible (I know that's a lot to ask, but I've got a lot of theory to study too!) and while maintaining functionality. Since all people in my office use Windows, there's no problem for platform incompatibility.&lt;br /&gt;
&lt;br /&gt;
I've heard VB.NET is a bit more functional than VB. Also, for the browser-based interface, what will I need to use for database connectivity (haven't figured out which database to use, but people have recommended me not to use MS Access). &lt;br /&gt;
&lt;br /&gt;
Thanx a lot&lt;br /&gt;</description>
      <pubDate>Fri, 25 Jul 2008 12:02:41 -0700</pubDate>
      <category>General programming</category>
    </item>
    <item>
      <title>Is End Of Java Near ?</title>
      <link>http://www.programmersheaven.com/mb/general/373394/373394/is-end-of-java-near-/</link>
      <description>&lt;strong&gt;Poll: Is End OF Java Near ?&lt;/strong&gt;&lt;br&gt;&lt;table width="310"&gt;
&lt;tr bgcolor="#F3F3F3"&gt;&lt;td width="250"&gt;Yes&lt;/td&gt;&lt;td width="60"&gt;0 votes&lt;/td&gt;&lt;/tr&gt;
&lt;tr bgcolor="#FFFFFF"&gt;&lt;td width="250"&gt;No&lt;/td&gt;&lt;td width="60"&gt;1 votes&lt;/td&gt;&lt;/tr&gt;
&lt;tr bgcolor="#F3F3F3"&gt;&lt;td width="250"&gt;Not Sure&lt;/td&gt;&lt;td width="60"&gt;1 votes&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;&lt;br&gt;
I think that .net framework is going to future development Environment for Windows,Linux,Mac and others.&lt;br /&gt;
 Microsoft release .net framework for windows Enviorment.&lt;br /&gt;
for Mac and Linux Novell releases mono .net  framework &lt;a href="http://www.go-mono.com/mono-downloads/download.html"&gt;Check Here&lt;/a&gt;.Using this You Can Run .net Binaries that developed on Windows In Mac and Linux.&lt;br /&gt;
So portability is not a concern now.&lt;br /&gt;
what makes .net better than java.&lt;br /&gt;
1. performance&lt;br /&gt;
When We consider Performance critical System .net better than java.you can search for performance Difference between .net and java.&lt;br /&gt;
2.following makes .net better than java&lt;br /&gt;
inter language integration. e.g on a single .net project c# developer can work with VB,c++,Ruby,Even Java Developers.Because OF CLR &amp;amp; CIL.&lt;a href="http://www.dotnetlanguages.net/DNL/Resources.aspx"&gt;You Can Check .net Supported Languages&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;</description>
      <pubDate>Mon, 14 Jul 2008 22:17:22 -0700</pubDate>
      <category>General programming</category>
    </item>
  </channel>
</rss>