<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>Programmers Heaven Forums RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest threads from all of the Programmer's Heaven forums, excluding replies.</description>
    <language>en</language>
    <copyright>Copyright 2012 Programmers Heaven</copyright>
    <pubDate>Wed, 23 May 2012 06:20:47 -0700</pubDate>
    <lastBuildDate>Wed, 23 May 2012 06:20:47 -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>MATLAB - implied volatility function</title>
      <link>http://www.programmersheaven.com/mb/ctocplusplustomatlab/428559/428559/matlab---implied-volatility-function/</link>
      <description>I have found the following function for calculating implied volatility in MATLAB.&lt;br /&gt;
When it finds a solution, the solution tends to be correct, but the function does not take into account, that the slope can be zero. If this happens, you divide by zero and the function return inf or -inf, which isn't correct at all. I have tried to take this problem into account, but the result is that the function does not converge. Does anyone have an idea how to implement this in the function?&lt;br /&gt;
&lt;br /&gt;
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %&lt;br /&gt;
% -------------------------------------------------------------------&lt;br /&gt;
%  NEWT_IV.M&lt;br /&gt;
% -------------------------------------------------------------------&lt;br /&gt;
%  The function uses Newton's method to find the root of&lt;br /&gt;
%  the actual call price minus the Black-Scholes call price, solving&lt;br /&gt;
%  for volatility.&lt;br /&gt;
% -------------------------------------------------------------------&lt;br /&gt;
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %&lt;br /&gt;
&lt;br /&gt;
%  FUNCTION: newt_iv&lt;br /&gt;
%  Input(s):&lt;br /&gt;
%  - C: actual call price expressed in home currency&lt;br /&gt;
%  - S: price of the underlying expressed in home currency&lt;br /&gt;
%  - K: strike price of the underlying expressed in home currency&lt;br /&gt;
%  - r: risk-free rate expressed as a decimal (5%=0.05)&lt;br /&gt;
%  - T: Tenor expressed in years (6 months=0.5)&lt;br /&gt;
%  Output(s): the approximate implied volatility using Black-Scholes&lt;br /&gt;
%  and Newton's method. The approximated implied volatility and&lt;br /&gt;
%  number of iterations taken to acheive an accurate result are&lt;br /&gt;
%  displayed.&lt;br /&gt;
%&lt;br /&gt;
function ivol = newt_iv(C,S,K,r,T)&lt;br /&gt;
 &lt;br /&gt;
% Anonymous functions for Black-Scholes&lt;br /&gt;
d1 = @(S,K,r,vol,T) (log(S/K)+(r+vol^2/2)*T)/(vol*sqrt(T));&lt;br /&gt;
d2 = @(S,K,r,vol,T) d1(S,K,r,vol,T)-vol*sqrt(T);&lt;br /&gt;
bscp = @(S,K,r,vol,T) S*normcdf(d1(S,K,r,vol,T),0,1)-K*exp(-r*T)*normcdf(d2(S,K,r,vol,T),0,1);&lt;br /&gt;
vega = @(S,K,r,vol,T)S*normpdf(d1(S,K,r,vol,T),0,1)*sqrt(
T);&lt;br /&gt;
% Initial guess&lt;br /&gt;
ivol = 0.2;&lt;br /&gt;
 &lt;br /&gt;
% Error tolerance&lt;br /&gt;
err = 0.0001;&lt;br /&gt;
 &lt;br /&gt;
% Set a limit to the number of iterations&lt;br /&gt;
i = 1;          % number of iterations&lt;br /&gt;
ilimit = 2000000;    % limit&lt;br /&gt;
&lt;br /&gt;
cpdiff = err+1; % Cause the first iteration to occur (see next line)&lt;br /&gt;
while abs(cpdiff) &amp;gt; err&lt;br /&gt;
    % Terminate the algorithm if the iteration limit has been reached&lt;br /&gt;
    if (i &amp;gt; ilimit)&lt;br /&gt;
        str = sprintf('ERROR: Implied volatility could not be found after %d iterations.', ilimit);&lt;br /&gt;
        disp(str);&lt;br /&gt;
        ivol = inf;&lt;br /&gt;
        break;&lt;br /&gt;
    % Otherwise continue the iteration&lt;br /&gt;
    else&lt;br /&gt;
    i = i+1;&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
    % Calculate Black-Scholes call price for current implied&lt;br /&gt;
    % volatility guess.&lt;br /&gt;
    ccprice = bscp(S,K,r,ivol,T);&lt;br /&gt;
&lt;br /&gt;
    % Find the difference between calculated call price and&lt;br /&gt;
    % actual call price.&lt;br /&gt;
    cpdiff = ccprice - C;&lt;br /&gt;
&lt;br /&gt;
    % If the calculated call price minus the actual call price is not&lt;br /&gt;
    % small enough, adjust the guess using Newton's method&lt;br /&gt;
    if abs(cpdiff) &amp;gt; err&lt;br /&gt;
        slope = vega(S,K,r,ivol,T);&lt;br /&gt;
        y_int = cpdiff-slope*ivol;&lt;br /&gt;
        ivol = -y_int/slope;&lt;br /&gt;
    end&lt;br /&gt;
% If the calculated call price minus the actual call price is zero,&lt;br /&gt;
% a root as been found. Unless a root as been round, repeat&lt;br /&gt;
% the process using the new upper and lower bounds.&lt;br /&gt;
end&lt;br /&gt;
ivol;&lt;br /&gt;
end       &lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ctocplusplustomatlab/428559/428559/matlab---implied-volatility-function/</guid>
      <pubDate>Wed, 23 May 2012 06:19:36 -0700</pubDate>
      <category>Matlab</category>
    </item>
    <item>
      <title>windows 98</title>
      <link>http://www.programmersheaven.com/mb/MS-DOS/428558/428558/windows-98/</link>
      <description>How do I manage to get windows98 DOS work correctly on a todays computer?&lt;br /&gt;
When I start DOS an irregular pattern of colours appears on the screen.&lt;br /&gt;
I ve heard about something like a memory conflict between DOS and the graphic card.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/MS-DOS/428558/428558/windows-98/</guid>
      <pubDate>Wed, 23 May 2012 05:22:22 -0700</pubDate>
      <category>MS-DOS</category>
    </item>
    <item>
      <title>make a script that supports both English and Spanish in PHP?</title>
      <link>http://www.programmersheaven.com/mb/phpstuff/428557/428557/make-a-script-that-supports-both-english-and-spanish-in-php/</link>
      <description>Is there any way to make a script that supports both English and Spanish in PHP?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
PHP Web Development | Hired PHP Developer Visit phpdeveloperindia.net&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/phpstuff/428557/428557/make-a-script-that-supports-both-english-and-spanish-in-php/</guid>
      <pubDate>Wed, 23 May 2012 03:29:10 -0700</pubDate>
      <category>PHP</category>
    </item>
    <item>
      <title>Sample c# code for OCRopus</title>
      <link>http://www.programmersheaven.com/mb/csharp/428556/428556/sample-c-code-for-ocropus/</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
I was looking for a library that I could use to recognize handwritten characters from an image in c#. I came across OCRopus, but couldn't find any sample code to use it..Could anyone provide me with a sample code on how to start using OCRopus?&lt;br /&gt;
&lt;br /&gt;
Any help/suggestions would be appreciated. If someone could suggest another better opensource c# code for handwritten character recognition, that would be great too.&lt;br /&gt;
&lt;br /&gt;
Thanks.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/csharp/428556/428556/sample-c-code-for-ocropus/</guid>
      <pubDate>Wed, 23 May 2012 02:33:56 -0700</pubDate>
      <category>C#</category>
    </item>
    <item>
      <title>Macro with variables</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/428553/428553/macro-with-variables/</link>
      <description>I am attempting to extend my knowledge of C and am working through a chapter on Macros. I am trying to create a macro that will return TRUE of the input is divisible by ten otherwise FALSE&lt;br /&gt;
&lt;br /&gt;
Here is my code&lt;br /&gt;
&lt;pre class="sourcecode"&gt;#include &amp;lt;stdio.h&amp;gt;
#include &amp;lt;string.h&amp;gt;
#include &amp;lt;stdlib.h&amp;gt;

/* Macro funcions*/
#define modulus(x) {if(x%10 == 0){printf("true\n"); else printf("false\n");}}
                   
             
                   

/* Declare variables*/
float centi;
float fahr;
char line[100];

int main()
{   
    int count = 12;
    modulus(count);
    
    
    
    system("pause");                     /* the fix for the collapsing window*/
    return (0);
}
&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
Something is wrong before the else statement in the macro and I cannot figure it out.&lt;br /&gt;
&lt;br /&gt;
Thank you! &lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/428553/428553/macro-with-variables/</guid>
      <pubDate>Tue, 22 May 2012 22:33:22 -0700</pubDate>
      <category>C and C++</category>
    </item>
    <item>
      <title>[Help]Execute a program on remote server</title>
      <link>http://www.programmersheaven.com/mb/VBasic/428552/428552/helpexecute-a-program-on-remote-server/</link>
      <description>Hi&lt;br /&gt;
Im trying to comunicate with a FTP server,where i want to execute a program,but i don`t know how.&lt;br /&gt;
I tryed with psexec..something like this&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Dim command As String&lt;br /&gt;
command = Shell("CMD.exe")&lt;br /&gt;
Dim systemName As String&lt;br /&gt;
systemName = "IP" 'Here im using the IP'&lt;br /&gt;
Shell("psexec \\" &amp;amp; systemName &amp;amp; command)&lt;br /&gt;
&lt;br /&gt;
But cmd.exe is opening on my computer..is the first time when im using psexec and i don`t know how..and im not an advanced.&lt;br /&gt;
&lt;br /&gt;
Sorry for my bad english. &lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/VBasic/428552/428552/helpexecute-a-program-on-remote-server/</guid>
      <pubDate>Tue, 22 May 2012 14:49:12 -0700</pubDate>
      <category>Visual Basic</category>
    </item>
    <item>
      <title>[Help]Execute a program on remote server</title>
      <link>http://www.programmersheaven.com/mb/VBasic/428551/428551/helpexecute-a-program-on-remote-server/</link>
      <description>Hi&lt;br /&gt;
Im trying to comunicate with a FTP server,where i want to execute a program,but i don`t know how.&lt;br /&gt;
I tryed with psexec..something like this&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Dim command As String&lt;br /&gt;
command = Shell("CMD.exe")&lt;br /&gt;
Dim systemName As String&lt;br /&gt;
systemName = "IP" 'Here im using the IP'&lt;br /&gt;
Shell("psexec \\" &amp;amp; systemName &amp;amp; command)&lt;br /&gt;
&lt;br /&gt;
But cmd.exe is opening on my computer..is the first time when im using psexec and i don`t know how..and im not an advanced.&lt;br /&gt;
&lt;br /&gt;
Sorry for my bad english. &lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/VBasic/428551/428551/helpexecute-a-program-on-remote-server/</guid>
      <pubDate>Tue, 22 May 2012 14:46:23 -0700</pubDate>
      <category>Visual Basic</category>
    </item>
    <item>
      <title>Should I learn pythin in an online course?</title>
      <link>http://www.programmersheaven.com/mb/python/428550/428550/should-i-learn-pythin-in-an-online-course/</link>
      <description>Should I?  is it better this way? is the grade worth it generally?&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/python/428550/428550/should-i-learn-pythin-in-an-online-course/</guid>
      <pubDate>Tue, 22 May 2012 04:49:14 -0700</pubDate>
      <category>Python</category>
    </item>
    <item>
      <title>Should I learn pythin in an online course?</title>
      <link>http://www.programmersheaven.com/mb/python/428547/428547/should-i-learn-pythin-in-an-online-course/</link>
      <description>Should I?  is it better this way? is the grade worth it generally?&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/python/428547/428547/should-i-learn-pythin-in-an-online-course/</guid>
      <pubDate>Tue, 22 May 2012 03:44:56 -0700</pubDate>
      <category>Python</category>
    </item>
    <item>
      <title>Help to create programm which controls projector by Rs 232 port</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/428545/428545/help-to-create-programm-which-controls-projector-by-rs-232-port/</link>
      <description>Please help to create easy programm which send's basic comand's to projector. Have manual with comands.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/428545/428545/help-to-create-programm-which-controls-projector-by-rs-232-port/</guid>
      <pubDate>Tue, 22 May 2012 02:26:22 -0700</pubDate>
      <category>C and C++</category>
    </item>
    <item>
      <title>programm whicg controls NEC projector's VT60, VT70 model by Rs232 port</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/428543/428543/programm-whicg-controls-nec-projectors-vt60-vt70-model-by-rs232-port/</link>
      <description>Please help to create easy programm which send's basic comand's to projaector. Here is manual with command's &lt;a href="http://us.ua/861784/"&gt;http://us.ua/861784/&lt;/a&gt;&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/428543/428543/programm-whicg-controls-nec-projectors-vt60-vt70-model-by-rs232-port/</guid>
      <pubDate>Tue, 22 May 2012 02:15:31 -0700</pubDate>
      <category>C and C++</category>
    </item>
    <item>
      <title>programm whicg controls NEC projector's VT60, VT70 model by Rs232 port</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/428542/428542/programm-whicg-controls-nec-projectors-vt60-vt70-model-by-rs232-port/</link>
      <description>Please help to create easy programm which send's basic comand's to projaector. Here is manual with command's &lt;a href="http://us.ua/861784/"&gt;http://us.ua/861784/&lt;/a&gt;&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/428542/428542/programm-whicg-controls-nec-projectors-vt60-vt70-model-by-rs232-port/</guid>
      <pubDate>Tue, 22 May 2012 02:13:38 -0700</pubDate>
      <category>C and C++</category>
    </item>
    <item>
      <title>Topics to Explore</title>
      <link>http://www.programmersheaven.com/mb/general/428537/428537/topics-to-explore/</link>
      <description>I'm a programming student that's still learning the basics; However, I'm looking for some guidance on where to focus my attention.  As an entry level programmer in a company, what are some concepts that an individual should have a strong grasp on?  What are some other things that are an added bonus?  I'd also like to add that I'm pursuing a career in game development and currently using C++ with Direct X.   This is the perfect place to ask because there's individuals here that have been where I am or currently have their own companies and know what they like to look for in a potential employee.  Having that insight is invaluable to me.  I look forward to hearing your thoughts.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/general/428537/428537/topics-to-explore/</guid>
      <pubDate>Mon, 21 May 2012 22:26:41 -0700</pubDate>
      <category>General programming</category>
    </item>
    <item>
      <title>Topics to Explore</title>
      <link>http://www.programmersheaven.com/mb/general/428536/428536/topics-to-explore/</link>
      <description>I'm a programming student that's still learning the basics; However, I'm looking for some guidance on where to focus my attention.  As an entry level programmer in a company, what are some concepts that an individual should have a strong grasp on?  What are some other things that are an added bonus?  I'd also like to add that I'm pursuing a career in game development and currently using C++ with Direct X.   This is the perfect place to ask because there's individuals here that have been where I am or currently have their own companies and know what they like to look for in a potential employee.  Having that insight is invaluable to me.  I look forward to hearing your thoughts.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/general/428536/428536/topics-to-explore/</guid>
      <pubDate>Mon, 21 May 2012 22:24:52 -0700</pubDate>
      <category>General programming</category>
    </item>
    <item>
      <title>Renown calculator concept</title>
      <link>http://www.programmersheaven.com/mb/csharp/428531/428531/renown-calculator-concept/</link>
      <description>Ok I've been trying to get a renown calculator made for almost a year now but I can't program anything to save my life (i veagly remember some HTML but anyway).&lt;br /&gt;
i have the data that i need for the guild level's and multiplier numbers for each level. (levels 26-100, and the multipliers 2.197000 up to 3375.0)&lt;br /&gt;
on the calculator as you can see in the picture below i'm having:&lt;br /&gt;
1.the user select their guild level from a combobox and the guild level multiplier displays in a label.&lt;br /&gt;
2.the user enters their modified account size (m.a.s) (1-2000) in a textbox and the account size multiplier shows their m.a.s + 10 in a another label.&lt;br /&gt;
3.renown lost per/day show in again a label (which is the xact amount of lost)&lt;br /&gt;
&lt;br /&gt;
i'm also going to add a per/week (exact amount) lost plus a per/day &amp;amp; week (estimated lost) to the calculator so the leaders and guild members can see how much renown they will lose in a week.&lt;br /&gt;
&lt;br /&gt;
my problem is that i can't remember anything i learn back in high school (i'll be it what few programs i have don't have any lines of code that i need)&lt;br /&gt;
&lt;img src="https://0p7ixw.blu.livefilestore.com/y1p-NhGCnt_uGU11Cdoijs_bQvmawi01c5Yj6G-nyCH2oNNaWV6qjZPzzaoM2P8UulU5gc74F-JfYvzQK_R70H63zeEadsXcBTn/renowncalconcept.explentnation.bmp?psid=1" /&gt;&lt;br /&gt;
&lt;br /&gt;
also i haven't got any code started yet</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/csharp/428531/428531/renown-calculator-concept/</guid>
      <pubDate>Mon, 21 May 2012 10:44:33 -0700</pubDate>
      <category>C#</category>
    </item>
    <item>
      <title>Input file to array</title>
      <link>http://www.programmersheaven.com/mb/java/428530/428530/input-file-to-array/</link>
      <description>Hi everyone!&lt;br /&gt;
&lt;br /&gt;
I'm new to Java and I was wondering if anyone could help me with a program I'm working on. I have to read in a text file (I know how to do that part) and count the number of sentences in it, then save all the sentences to an array so I can pull out, say, sentence 70 on demand.&lt;br /&gt;
&lt;br /&gt;
Any help will be greatly appreciated, thanks!&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/java/428530/428530/input-file-to-array/</guid>
      <pubDate>Mon, 21 May 2012 10:37:24 -0700</pubDate>
      <category>Java</category>
    </item>
    <item>
      <title>matlab gui radio button</title>
      <link>http://www.programmersheaven.com/mb/ctocplusplustomatlab/428529/428529/matlab-gui-radio-button/</link>
      <description>Hi &lt;br /&gt;
&lt;br /&gt;
I have seri port data,which is like this;  data=[0 1 0 1 1 1 0 ]  (data could changed by input)&lt;br /&gt;
&lt;br /&gt;
My aim is :i will compare all of data(1) data(2) .......data (7) with 0 and 1.If that data 1 radiobutton will be 1.&lt;br /&gt;
&lt;br /&gt;
If data(1)==1  -----&amp;gt; radiobutton1=1  &lt;br /&gt;
else data(1)==0 ----&amp;gt;radiobutton1=0&lt;br /&gt;
....&lt;br /&gt;
....&lt;br /&gt;
....&lt;br /&gt;
If data(7)==1  -----&amp;gt; radiobutton7=1  &lt;br /&gt;
else data(7)==0 ----&amp;gt;radiobutton7=0&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
i want to do this situation please help me i am new on matlab GUI&lt;br /&gt;
&lt;br&gt;&lt;br&gt;&lt;strong&gt;Attachment:&lt;/strong&gt; &lt;a href="http://www.programmersheaven.com/mb/DownloadAttachment.aspx?AttachmentID=2386"&gt;gui serial port.rar&lt;/a&gt; (12561 bytes | downloaded 11 times)</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ctocplusplustomatlab/428529/428529/matlab-gui-radio-button/</guid>
      <pubDate>Mon, 21 May 2012 09:07:14 -0700</pubDate>
      <category>Matlab</category>
    </item>
    <item>
      <title>Binary Counter 4 LEDs 4 Switches (16F877)</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/428527/428527/binary-counter-4-leds-4-switches-16f877/</link>
      <description>I am currently programming a microcontroller and need to make a switching interface which has the following functions:&lt;br /&gt;
&lt;br /&gt;
Switch1 - LEDs will count in binary and add 1 each time&lt;br /&gt;
Switch2 - 1 will be subtracted from binary total&lt;br /&gt;
Switch3 - 2 will be added onto binary total&lt;br /&gt;
Switch4 - 2 will be subtracted from binary total &lt;br /&gt;
&lt;br /&gt;
If anyone could give me a few tips on how to write the functionality of adding and subtracting binary numbers as well as showing them onto LEDs would be much appreciated&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/428527/428527/binary-counter-4-leds-4-switches-16f877/</guid>
      <pubDate>Mon, 21 May 2012 04:27:54 -0700</pubDate>
      <category>C and C++</category>
    </item>
    <item>
      <title>Binary Counter 4 LEDs 4 Switches (16F877)</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/428526/428526/binary-counter-4-leds-4-switches-16f877/</link>
      <description>I am currently programming a microcontroller and need to make a switching interface which has the following functions:&lt;br /&gt;
&lt;br /&gt;
Switch1 - LEDs will count in binary and add 1 each time&lt;br /&gt;
Switch2 - 1 will be subtracted from binary total&lt;br /&gt;
Switch3 - 2 will be added onto binary total&lt;br /&gt;
Switch4 - 2 will be subtracted from binary total &lt;br /&gt;
&lt;br /&gt;
If anyone could give me a few tips on how to write the functionality of adding and subtracting binary numbers as well as showing them onto LEDs would be much appreciated&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/428526/428526/binary-counter-4-leds-4-switches-16f877/</guid>
      <pubDate>Mon, 21 May 2012 04:26:04 -0700</pubDate>
      <category>C and C++</category>
    </item>
    <item>
      <title>Triangular Numbers</title>
      <link>http://www.programmersheaven.com/mb/java_beginners/428525/428525/triangular-numbers/</link>
      <description>How to get the below triangle by programming ?&lt;br /&gt;
&lt;br /&gt;
1  1  1  1&lt;br /&gt;
  2  2  2&lt;br /&gt;
    4  4&lt;br /&gt;
      8&lt;br /&gt;
&lt;br /&gt;
Thanks in advance !</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/java_beginners/428525/428525/triangular-numbers/</guid>
      <pubDate>Mon, 21 May 2012 02:49:20 -0700</pubDate>
      <category>Java Beginners</category>
    </item>
    <item>
      <title>Finance homework help , financehomeworktutor.iwarp.com</title>
      <link>http://www.programmersheaven.com/mb/general/428524/428524/finance-homework-help--financehomeworktutoriwarpcom/</link>
      <description>Email me your accounting homework &amp;amp; accounting assignments &amp;amp; I will send you back the solutions. In addition to Accounting homework help &amp;amp; accounting assignments help, I also help in online accounting exams, online accounting tests &amp;amp; tutoring, accounting word problems, accounting case study &amp;amp; accounting essays. &lt;br /&gt;
&lt;br /&gt;
Send me your accounting &amp;amp; finance assignments and i will send you back the answers. I also help in projects, papers and essays. &lt;br /&gt;
&lt;br /&gt;
I also help in:- &lt;br /&gt;
(a) accounting homework help &lt;br /&gt;
(b) finance homework help &lt;br /&gt;
(c) managerial accounting assignment solutions &lt;br /&gt;
(d) net present value, future value &amp;amp; compounding &lt;br /&gt;
(e) bonds, stocks, options, derivatives homework &lt;br /&gt;
(f) financial management homework help &lt;br /&gt;
(g) statistics homework help &lt;br /&gt;
(h) homework ratio analysis &amp;amp; cash flow statement homework &lt;br /&gt;
(i) income statement &amp;amp; balance sheet &amp;amp; shares &amp;amp; debentures &lt;br /&gt;
(j) marginal costing, standard costing &amp;amp; variable costing &lt;br /&gt;
(k) marketing homework help &lt;br /&gt;
(l) economics homework help &lt;br /&gt;
(m) accounting-finance homework &lt;br /&gt;
(n) activity based costing , break even point &amp;amp; cvp analysis &lt;br /&gt;
(o) lifo, fifo, weighted average &amp;amp; journal entries homework &amp;amp; trial balance &lt;br /&gt;
&lt;br /&gt;
please visit once &lt;a href="http://financehomeworktutor.iwarp.com"&gt;http://financehomeworktutor.iwarp.com&lt;/a&gt;&lt;br /&gt;
or email me on financehomeworktutor@yahoo.co.in&lt;br /&gt;
&lt;br /&gt;
accounting homework help, finance homework help, statistics homework help, economics homework help, financial accounting homework, finance help, financial management, accounting assignment help, accounting assignment answers, balance sheet homework, income statement homework, journal entries homework, present value, break even point homework, variable costing, absportion costing, standard costing, activity based costing, marketing homework help, ratio analysis homework , cash flow statement homework, cash budget, sales budget, lifo fifo, weighted average, wacc, macrs, bonds valuation, capm, project evaluation, capital budgeting homework, variance, working capital management, finance essays, finance projects &amp;amp; word problems, financial management homework &lt;br /&gt;
&lt;br /&gt;
financial accounting homework help, finance ,homework, help, statistics, costing, accounting, marketing, economics, homework essays, probability homework, ANOVA, t-test, z-test, regression homework, correlation, multiple correlation, cost accounting, net present value, homework internal rate of return, journal entries, homework break even point, debt equity and preferred stock, bond valuation ytm, homework balance sheet, homework income statement, cash flow statement ffs, finance word problems, ratio analysis, homework inventory management, swaps, futures, contracts, options, exercise price, foreign exchange homework, accounting concepts standards gaap, portfolio management homework, corporate finance homework &lt;br /&gt;
&lt;br /&gt;
please visit once &lt;a href="http://financehomeworktutor.iwarp.com"&gt;http://financehomeworktutor.iwarp.com&lt;/a&gt;&lt;br /&gt;
or email me on financehomeworktutor@yahoo.co.in&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/general/428524/428524/finance-homework-help--financehomeworktutoriwarpcom/</guid>
      <pubDate>Mon, 21 May 2012 02:42:20 -0700</pubDate>
      <category>General programming</category>
    </item>
    <item>
      <title>Finance homework help , financehomeworktutor.iwarp.com</title>
      <link>http://www.programmersheaven.com/mb/general/428523/428523/finance-homework-help--financehomeworktutoriwarpcom/</link>
      <description>Email me your accounting homework &amp;amp; accounting assignments &amp;amp; I will send you back the solutions. In addition to Accounting homework help &amp;amp; accounting assignments help, I also help in online accounting exams, online accounting tests &amp;amp; tutoring, accounting word problems, accounting case study &amp;amp; accounting essays. &lt;br /&gt;
&lt;br /&gt;
Send me your accounting &amp;amp; finance assignments and i will send you back the answers. I also help in projects, papers and essays. &lt;br /&gt;
&lt;br /&gt;
I also help in:- &lt;br /&gt;
(a) accounting homework help &lt;br /&gt;
(b) finance homework help &lt;br /&gt;
(c) managerial accounting assignment solutions &lt;br /&gt;
(d) net present value, future value &amp;amp; compounding &lt;br /&gt;
(e) bonds, stocks, options, derivatives homework &lt;br /&gt;
(f) financial management homework help &lt;br /&gt;
(g) statistics homework help &lt;br /&gt;
(h) homework ratio analysis &amp;amp; cash flow statement homework &lt;br /&gt;
(i) income statement &amp;amp; balance sheet &amp;amp; shares &amp;amp; debentures &lt;br /&gt;
(j) marginal costing, standard costing &amp;amp; variable costing &lt;br /&gt;
(k) marketing homework help &lt;br /&gt;
(l) economics homework help &lt;br /&gt;
(m) accounting-finance homework &lt;br /&gt;
(n) activity based costing , break even point &amp;amp; cvp analysis &lt;br /&gt;
(o) lifo, fifo, weighted average &amp;amp; journal entries homework &amp;amp; trial balance &lt;br /&gt;
&lt;br /&gt;
please visit once &lt;a href="http://financehomeworktutor.iwarp.com"&gt;http://financehomeworktutor.iwarp.com&lt;/a&gt;&lt;br /&gt;
or email me on financehomeworktutor@yahoo.co.in&lt;br /&gt;
&lt;br /&gt;
accounting homework help, finance homework help, statistics homework help, economics homework help, financial accounting homework, finance help, financial management, accounting assignment help, accounting assignment answers, balance sheet homework, income statement homework, journal entries homework, present value, break even point homework, variable costing, absportion costing, standard costing, activity based costing, marketing homework help, ratio analysis homework , cash flow statement homework, cash budget, sales budget, lifo fifo, weighted average, wacc, macrs, bonds valuation, capm, project evaluation, capital budgeting homework, variance, working capital management, finance essays, finance projects &amp;amp; word problems, financial management homework &lt;br /&gt;
&lt;br /&gt;
financial accounting homework help, finance ,homework, help, statistics, costing, accounting, marketing, economics, homework essays, probability homework, ANOVA, t-test, z-test, regression homework, correlation, multiple correlation, cost accounting, net present value, homework internal rate of return, journal entries, homework break even point, debt equity and preferred stock, bond valuation ytm, homework balance sheet, homework income statement, cash flow statement ffs, finance word problems, ratio analysis, homework inventory management, swaps, futures, contracts, options, exercise price, foreign exchange homework, accounting concepts standards gaap, portfolio management homework, corporate finance homework &lt;br /&gt;
&lt;br /&gt;
please visit once &lt;a href="http://financehomeworktutor.iwarp.com"&gt;http://financehomeworktutor.iwarp.com&lt;/a&gt;&lt;br /&gt;
or email me on financehomeworktutor@yahoo.co.in&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/general/428523/428523/finance-homework-help--financehomeworktutoriwarpcom/</guid>
      <pubDate>Mon, 21 May 2012 02:40:29 -0700</pubDate>
      <category>General programming</category>
    </item>
    <item>
      <title>How to Crack Windows 7 Administrator Password</title>
      <link>http://www.programmersheaven.com/mb/windows/428522/428522/how-to-crack-windows-7-administrator-password/</link>
      <description>Recently I’ve been asked by my friends to &lt;strong&gt;&lt;a href="http://www.recoverlostpassword.com/article/crack-windows-7-password.html"&gt;crack Windows 7 password&lt;/a&gt;&lt;/strong&gt; after it is forgotten. I find many people are not very good at how to find Windows 7 admin password.&lt;br /&gt;
&lt;br /&gt;
Compare with other PC issues, to &lt;strong&gt;crack password on Windows 7&lt;/strong&gt; is more complicated.&lt;br /&gt;
Unlike other common PC issues, if one forgot his Windows 7 password, probably he would lose access to the machine. If so, to solve this problem, in many computes users’ opinion, would become much more complicated that when the computer is still accessible. Thankfully, after a long time searching for solutions, I finally find some useful ones. In the following I am ready to share solutions on How to find Windows 7 admin password to regain access to computer with you all.&lt;br /&gt;
&lt;br /&gt;
Solution 1: Windows Installation disc is helpful if Windows 7 password lost or forgotten.&lt;br /&gt;
&lt;br /&gt;
If you lost or forgot Windows 7 password, you can use your Windows 7 installation disc and access to recovery options to bypass it. This is a very efficient method and works well but you must have a viable system restore point to use that was created before you started having logon issues.&lt;br /&gt;
If you don't have a Windows installation disc, or can't find your Windows installation disc, you can also create a Windows 7 system repair disc to use to boot to the system recovery options that can help you recover the forgotten password.&lt;br /&gt;
(Note: If this solution is taken, you may probably lose data on your Windows 7 machine.)&lt;br /&gt;
&lt;br /&gt;
Solution 2: &lt;strong&gt;Crack Windows 7 admin password&lt;/strong&gt; with Windows Password Recovery Professional.&lt;br /&gt;
&lt;br /&gt;
If you are afraid of losing data or feeling kind of complicated to find your forgotten Windows 7 password with Windows Installation disc, then to make use of a credible third-party application will be your perfect choice. No need to worry about data loss and complexity during operation, you can solve your computer problem with Windows Password Recovery Professional easily and quickly. Here’s how to find Windows 7 password with Windows Password Recovery Professional.&lt;br /&gt;
&lt;br /&gt;
   1. Download and install.&lt;br /&gt;
      You can free download SmartKey &lt;strong&gt;Windows Password Recovery&lt;/strong&gt; Professional and install, run it on an accessible computer.&lt;br /&gt;
   2. Burn a Windows 7 password reset disk.&lt;br /&gt;
      You should first insert a blank CD/DVD or USB to the working computer and then choose the password recovery mode: Reset Windows local account password or Reset Windows domain administrator password. Next, select “CD/DVD” or “USB” option. In the end, click “Burn” button to start burning. When the burning finishes, you just take out the CD/DVD or USB.&lt;br /&gt;
   3. Hack forgotten Windows 7 password.&lt;br /&gt;
      Insert the burned CD/DVD or USB to the target/locked computer, and set it boot from CD/DVD or USB in BIOS. Next you can reset Windows 7 password easily according to the simple wizard on the interface.&lt;br /&gt;
&lt;br /&gt;
Are the ways on &lt;strong&gt;&lt;a href="http://www.recoverlostpassword.com/article/crack-windows-7-password.html"&gt;Windows 7 password crack&lt;/a&gt;&lt;/strong&gt; above useful for you? And if you have any other better solutions or suggestions, just let me know…let’s share and discuss over it together!&lt;br /&gt;
&lt;br /&gt;
Source:&lt;a href="http://www.recoverlostpassword.com/article/crack-windows-7-password.html"&gt;http://www.recoverlostpassword.com/article/crack-windows-7-password.html&lt;/a&gt;&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/windows/428522/428522/how-to-crack-windows-7-administrator-password/</guid>
      <pubDate>Mon, 21 May 2012 02:12:24 -0700</pubDate>
      <category>Windows programming</category>
    </item>
    <item>
      <title>How to Crack Windows 7 Administrator Password</title>
      <link>http://www.programmersheaven.com/mb/windows/428521/428521/how-to-crack-windows-7-administrator-password/</link>
      <description>Recently I’ve been asked by my friends to &lt;strong&gt;&lt;a href="http://www.recoverlostpassword.com/article/crack-windows-7-password.html"&gt;crack Windows 7 password&lt;/a&gt;&lt;/strong&gt; after it is forgotten. I find many people are not very good at how to find Windows 7 admin password.&lt;br /&gt;
&lt;br /&gt;
Compare with other PC issues, to &lt;strong&gt;crack password on Windows 7&lt;/strong&gt; is more complicated.&lt;br /&gt;
Unlike other common PC issues, if one forgot his Windows 7 password, probably he would lose access to the machine. If so, to solve this problem, in many computes users’ opinion, would become much more complicated that when the computer is still accessible. Thankfully, after a long time searching for solutions, I finally find some useful ones. In the following I am ready to share solutions on How to find Windows 7 admin password to regain access to computer with you all.&lt;br /&gt;
&lt;br /&gt;
Solution 1: Windows Installation disc is helpful if Windows 7 password lost or forgotten.&lt;br /&gt;
&lt;br /&gt;
If you lost or forgot Windows 7 password, you can use your Windows 7 installation disc and access to recovery options to bypass it. This is a very efficient method and works well but you must have a viable system restore point to use that was created before you started having logon issues.&lt;br /&gt;
If you don't have a Windows installation disc, or can't find your Windows installation disc, you can also create a Windows 7 system repair disc to use to boot to the system recovery options that can help you recover the forgotten password.&lt;br /&gt;
(Note: If this solution is taken, you may probably lose data on your Windows 7 machine.)&lt;br /&gt;
&lt;br /&gt;
Solution 2: &lt;strong&gt;Crack Windows 7 admin password&lt;/strong&gt; with Windows Password Recovery Professional.&lt;br /&gt;
&lt;br /&gt;
If you are afraid of losing data or feeling kind of complicated to find your forgotten Windows 7 password with Windows Installation disc, then to make use of a credible third-party application will be your perfect choice. No need to worry about data loss and complexity during operation, you can solve your computer problem with Windows Password Recovery Professional easily and quickly. Here’s how to find Windows 7 password with Windows Password Recovery Professional.&lt;br /&gt;
&lt;br /&gt;
   1. Download and install.&lt;br /&gt;
      You can free download SmartKey &lt;strong&gt;Windows Password Recovery&lt;/strong&gt; Professional and install, run it on an accessible computer.&lt;br /&gt;
   2. Burn a Windows 7 password reset disk.&lt;br /&gt;
      You should first insert a blank CD/DVD or USB to the working computer and then choose the password recovery mode: Reset Windows local account password or Reset Windows domain administrator password. Next, select “CD/DVD” or “USB” option. In the end, click “Burn” button to start burning. When the burning finishes, you just take out the CD/DVD or USB.&lt;br /&gt;
   3. Hack forgotten Windows 7 password.&lt;br /&gt;
      Insert the burned CD/DVD or USB to the target/locked computer, and set it boot from CD/DVD or USB in BIOS. Next you can reset Windows 7 password easily according to the simple wizard on the interface.&lt;br /&gt;
&lt;br /&gt;
Are the ways on &lt;strong&gt;&lt;a href="http://www.recoverlostpassword.com/article/crack-windows-7-password.html"&gt;Windows 7 password crack&lt;/a&gt;&lt;/strong&gt; above useful for you? And if you have any other better solutions or suggestions, just let me know…let’s share and discuss over it together!&lt;br /&gt;
&lt;br /&gt;
Source:&lt;a href="http://www.recoverlostpassword.com/article/crack-windows-7-password.html"&gt;http://www.recoverlostpassword.com/article/crack-windows-7-password.html&lt;/a&gt;&lt;br /&gt;
&lt;br&gt;&lt;br&gt;&lt;strong&gt;Attachment:&lt;/strong&gt; &lt;a href="http://www.programmersheaven.com/mb/DownloadAttachment.aspx?AttachmentID=2385"&gt;hack-windows-7-password.pdf&lt;/a&gt; (66610 bytes | downloaded 13 times)</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/windows/428521/428521/how-to-crack-windows-7-administrator-password/</guid>
      <pubDate>Mon, 21 May 2012 02:09:24 -0700</pubDate>
      <category>Windows programming</category>
    </item>
    <item>
      <title>Barcode scanning check</title>
      <link>http://www.programmersheaven.com/mb/VBNET/428518/428518/barcode-scanning-check/</link>
      <description>Wondered if I could print a upc-a in visual basic .net.&lt;br /&gt;
How do I convert the data into barcodes automatically when the digits are submitted?&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/VBNET/428518/428518/barcode-scanning-check/</guid>
      <pubDate>Mon, 21 May 2012 00:39:28 -0700</pubDate>
      <category>VB.NET</category>
    </item>
  </channel>
</rss>
