Search Results

Showing results 1 to 40 of 62
Search took 0.01 seconds.
Search: Posts Made By: minigweek
Forum: C# Sep 18th, 2009
Replies: 15
Views: 2,159
Posted By minigweek
Right! :D .... I will be using the dumbness of httpwebrequest and get back to you later on how I am faring . Again! Much thanks for breaking it down.
Forum: C# Sep 18th, 2009
Replies: 15
Views: 2,159
Posted By minigweek
Hi Sknake , thanks for your time. Yes I am able to login to the forum , as using wireshark ( as you showed me!! ) I am able to find out the hidden fields they are posting to their forms. I can now...
Forum: Search Engine Optimization Sep 16th, 2009
Replies: 4
Views: 3,645
Posted By minigweek
Agree with you 100% there Ron. Good Post, I liked.
Forum: C++ Sep 15th, 2009
Replies: 19
Views: 612
Posted By minigweek
Close. But still it will give wrong output. I will drop a hint.


for(int i=0;i<=5;i++)
{
//something goes in here...
}
cout>>i;

guess what is the output of i ?
Forum: C++ Sep 15th, 2009
Replies: 19
Views: 612
Posted By minigweek
for (ctr2=0;ctr2>=0;ctr2--)

Now what have you done here ? You are saying to the loop ...

Initialize ctrl2 to 0, decrement it by 1 every time, run the loop till its greater than or equal to 0...
Forum: C++ Sep 15th, 2009
Replies: 19
Views: 612
Posted By minigweek
for (ctr2=0;num>=0;ctr2--)
{
cout<<bin[ctr2];
}

fault in your for loop. its telling :
initialize ctrl2 to 0, decrement it every time by 1, run the loop till num>=0 .
So always...
Forum: C# Sep 15th, 2009
Replies: 15
Views: 2,159
Posted By minigweek
Update : Just installed wireshark, and was going thru its helppages to learn the filters. Its amazing tool ! oh wow!

Now I can see whts the url encoded text the login form submitted! So much...
Forum: C# Sep 15th, 2009
Replies: 15
Views: 2,159
Posted By minigweek
Thanks Scott for the code. I am reading it now, will be trying to understand what happened here, and then come back and ask if I have any doubts! :)
Forum: C++ Sep 15th, 2009
Replies: 16
Views: 784
Posted By minigweek
^^ you need a trip to
http://www.cplusplus.com/doc/tutorial/variables/
Forum: C++ Sep 11th, 2009
Replies: 16
Views: 784
Posted By minigweek
Thats wonderful!! See how pleasurable it is to find out a solution on your own!! :D

Ok , now for another self discovery. Check the difference between long int and long double.
Forum: C# Sep 10th, 2009
Replies: 15
Views: 2,159
Posted By minigweek
Yes I see they are hashing the password using md5 hashing. I have opened their vbulletin_md5.js file and am attempting to call their md5hash function in an html file and check if their md5hashed...
Forum: C# Sep 9th, 2009
Replies: 15
Views: 2,159
Posted By minigweek
Forum: C++ Sep 8th, 2009
Replies: 19
Views: 612
Posted By minigweek
Good thing you proposed a challenging project. You will learn much more this way and your knowledge base will increase considerably. Don't be bothered about "biting off more than you can chew" ... u...
Forum: C++ Sep 8th, 2009
Replies: 16
Views: 784
Posted By minigweek
Wrong. It will never be 9 * 2 , it will be 8 * 8 , as num -- takes it to 8 and then in the next while loop its num = 8 * 8 again.

its always num * num in the code , hence a squaring will take...
Forum: C++ Sep 8th, 2009
Replies: 16
Views: 784
Posted By minigweek
Ok lets do a dry run to see where you went wrong in the program.

Say num = 5

while num >= 1 ( 5 >=1 , hence true )
num = num * num , num becmes 25.
num = num -1 , num becomes 24

again...
Forum: C# Sep 8th, 2009
Replies: 15
Views: 2,159
Posted By minigweek
Hi sknake ( i almost typed snake!! )

thanks for dropping by. I have various ideas floating around which I want to do. Like there's a news /technology and gadget section in the forum, I would like...
Forum: C# Sep 8th, 2009
Replies: 15
Views: 2,159
Posted By minigweek
Hi,

I am working on building a C# Winforms application which will allow me to login to a forum or site and perform certain tasks. I am stuck at the very 1st step. I cannot login to the forum....
Forum: C# Sep 8th, 2009
Replies: 2
Views: 681
Posted By minigweek
Hi there,

I am also new to this kind of programming. Meaning trying to built a C# winforms application which will allow me to login to a site and fetch relevant data or post some queries/datas.
...
Forum: ASP.NET Feb 5th, 2009
Replies: 1
Views: 375
Posted By minigweek
Hi all!!

I am planning on developing a Image Hosting service for fun!!

I have prelimenary knowledge of ASP.NET and am sure to learn loads of new stuffs in this process!!

Could you guide me...
Forum: C++ Oct 13th, 2008
Replies: 2
Views: 926
Posted By minigweek
^^ correct he is , just try to convert the above algorithm into a c++ code and see. Post your code if it fails, and we will further look into it!
Forum: C++ Oct 13th, 2008
Replies: 11
Views: 986
Posted By minigweek
Hello,

first a tip.

TO check whether a number 'n' is prime or not, it is just enuff to check whether n is divisible by any integer from 2 to n/2 . no need to loop till n-1.
As you will...
Forum: C++ Oct 12th, 2008
Replies: 3
Views: 885
Posted By minigweek
Hello there,

I am currently trying to solve Towers of Hanoi for N pegs using C++.

I am implementing the towers in the form of a link list.

Suppose there be three towers ,...
Forum: C# Feb 4th, 2008
Replies: 8
Views: 1,739
Posted By minigweek
Waah! Two Bytes can't be added ! That's ODD!!! lol...

Does it mean that any mathematical operation between two bytes is impossible ? Why is it So :O :(
Forum: C# Feb 4th, 2008
Replies: 8
Views: 1,739
Posted By minigweek
I am absolutely new to C# , reading the Book , Beginning Visual C# 2005 ,byKarli Watsonet al. , Wrox Press . Using Visual Studio 2005 .

Okay , I was practicing some of the concepts from Functions...
Forum: C++ Jul 10th, 2007
Replies: 4
Views: 764
Posted By minigweek
Thanks Narue,
Thats a nice explanation I understood quite nicely.
But I will have to do some reading on my own, to get complete understanding of this.
Interesting explanation...

Bench, that was...
Forum: C++ Jul 9th, 2007
Replies: 4
Views: 764
Posted By minigweek
Ok, I am going through two articles at present ..
http://www.codeproject.com/cpp/PointerArticle.asp
http://www.geocities.com/varunhostel/TechnicalArticles/PointerArticle/PointerArticle_Part2.html
...
Forum: C++ Jul 9th, 2007
Replies: 4
Views: 764
Posted By minigweek
char *(*c[10])(int **p);

Ok, what does the above mean ? I compiled it fine. But I can't figure what it means :(

Also, how to make sense of any such questions ? I know pointers, and have a...
Forum: Posting Games May 25th, 2007
Replies: 1,429
Views: 113,833
Posted By minigweek
Yes.
Do you like leading a community ?
Forum: Geeks' Lounge May 24th, 2007
Replies: 146
Views: 30,091
Posted By minigweek
I have watched hellsing, must say it was short,
I also heard that a season 2 may be coming up.
Anyways, I njoyed watching Bloodlust - Vampire Hunter D.
Another thing, discussion related to hentai...
Forum: C++ May 24th, 2007
Replies: 3
Views: 1,218
Posted By minigweek
lol
My dilemma is solved. here is why the above was not working for an input greater than 32768 .. because rand() is a pseudorandom number generator between the seed [ set by srand() or the default...
Forum: C++ May 24th, 2007
Replies: 3
Views: 1,602
Posted By minigweek
Yes, that is indeed the case. For cin , white space is a terminator, and the rest of the name stays in the input stream. the next cin statement reads from the remaining input buffer.
cin.get , will...
Forum: C++ May 24th, 2007
Replies: 3
Views: 1,218
Posted By minigweek
I am using Code::Blocks editor, and the minigw compiler that comes along with it. ALso Just tested it with Visual CPP Express Edition 2005 , same problem.
Forum: C++ May 24th, 2007
Replies: 3
Views: 1,218
Posted By minigweek
Hi Everyone, Good day to you all.
I am solving a problem : to Generate a Random Network. I hv divided the problem into two parts. First generate a Graph, then from the graph from a network.
Here...
Forum: Posting Games May 21st, 2007
Replies: 1,429
Views: 113,833
Posted By minigweek
Yes :)
Have you played Command and Conquer Tiberium Wars ?
Forum: Posting Games May 21st, 2007
Replies: 1,429
Views: 113,833
Posted By minigweek
No.
U like playing Strategy Games ? ( AOE etc)
Forum: Geeks' Lounge May 20th, 2007
Replies: 178
Views: 11,584
Posted By minigweek
My all time favourite wouldd be the LOTR Series.
The scene where Aragorn gets down on his knees and tells Frodo, "You My Friend, Shall Bow to no Men" was wonderfull....

I love...
Forum: Posting Games May 20th, 2007
Replies: 1,429
Views: 113,833
Posted By minigweek
[:D]
Do you believe that if one has the will, the person can achieve any thing ?
Forum: Geeks' Lounge May 20th, 2007
Replies: 146
Views: 30,091
Posted By minigweek
I just started watching D Gray Man.. onto episode 7 now...
Its a cool one, liking it.. anybody here njoid it ?
Forum: Posting Games May 20th, 2007
Replies: 1,429
Views: 113,833
Posted By minigweek
No.
Is My Name cool ? :P
Forum: Posting Games May 19th, 2007
Replies: 1,429
Views: 113,833
Posted By minigweek
No.
Do you think you will touch 4000 posts before June ?
Showing results 1 to 40 of 62

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC