Posts
 
Reputation
Joined
Last Seen
Ranked #208
Strength to Increase Rep
+10
Strength to Decrease Rep
-2
64% Quality Score
Upvotes Received
81
Posts with Upvotes
72
Upvoting Members
42
Downvotes Received
59
Posts with Downvotes
40
Downvoting Members
27
33 Commented Posts
~256.70K People Reached
About Me

C
C++
C++/CLI
C#
and a little bit o' Java & F#.

Interests
I loves me some motorcycles, and women.
PC Specs
Windows 7 AMD Athlon 64 x2 5600+ AMD HD6670 4 GB DDR2
Favorite Tags
c++ x 555
c x 23
dev x 17
java x 15
Member Avatar for yobbko
Member Avatar for abdelhakeem

Heh heh heh, I bet you kids never had an 8MB graphics card named "Rage". <shudder> the ATI Rage IIC

Member Avatar for Reverend Jim
1
1K
Member Avatar for zifina
Member Avatar for pseudorandom21

Anyone know of a way to obtain an MD5 checksum of a file (through HTTP) before downloading it through HTTP?

Member Avatar for Reinhard_1
0
6K
Member Avatar for The Dude

Well... Being overly generous to the pyschopath side, I got a 5. I do know a friend who would probably get like a 20-30 at least, however.

Member Avatar for maydhyam
1
5K
Member Avatar for veronicak5678

One algorithm candidate is: input = [icode][h][e][l][l][o][ ][w][o][r][l][d][/icode] for each char c in input if c is a space then shift the contents to the left, removing the space. Of course it would probably be more efficient to copy the array, assuming it is of a manageable size.

Member Avatar for bridgett.grace
0
2K
Member Avatar for Agouri

Most of the features you want are probably available via the operating system API, I'll assume you're using Windows so here's the API ref. [url]http://msdn.microsoft.com/en-us/library/ff818516(v=vs.85).aspx[/url] of course you don't have to roll your own, there is plenty of code available for random stuff. [url]http://www.codeproject.com/KB/cpp/AddColorConsole.aspx[/url] otherwise here's the console link: [url]http://msdn.microsoft.com/en-us/library/ms682087(v=VS.85).aspx[/url] …

Member Avatar for BeautyBeast
0
753
Member Avatar for jeffcogswell
Member Avatar for iAssistant

[QUOTE=iAssistant;1611570]How is your weather in your country? I am living in the Philippines and the weather here today is stormy and according to news, we are overloaded of typhoons in this month. One typhoon is over and there is 2 more waiting on the line. Oh boy![/QUOTE] I wish it …

Member Avatar for Stuugie
0
4K
Member Avatar for mrSatellite

[QUOTE=mrSatellite;1613981]can anyone show me the code of prime number program using while loop but without using bool..?[/QUOTE] Can you use google, or do it yourself?

Member Avatar for amaya ali
0
745
Member Avatar for mitrious

There are infinite ways to do it. Example of a C++ container template in the C++ STL: [url]http://www.cplusplus.com/reference/stl/list/[/url] Linked list information: [url]http://www.codeproject.com/KB/cpp/linked_list.aspx[/url] [url]http://www.functionx.com/cpp/articles/linkedlist.htm[/url] [url]http://richardbowles.tripod.com/cpp/linklist/linklist.htm[/url] First of all you may benefit from deciding how you want to implement your list before you do so.

Member Avatar for DinoG
0
429
Member Avatar for happygeek
Member Avatar for powerdink

Much agreed, the format of your post is most unhelpful to us. It's really your responsibility to make sure you meet those requirements, and if you're having trouble or you have a specific question we'll surely help.

Member Avatar for Brandon5122
0
6K
Member Avatar for pseudorandom21

Can I use a DLL embedded in an executable (as a resource) without writing it to the disk? (Windows)

Member Avatar for pseudorandom21
0
946
Member Avatar for pseudorandom21

I'm attempting to transfer some OpenCV images over the network, I've been trying to put them into a format I can easily encrypt and transfer, but I'm almost certain it's not going to work properly. Essentially the IplImage is a structure but it has a pointer that points to some …

Member Avatar for pseudorandom21
0
766
Member Avatar for pseudorandom21

Is there some trick to networking between LAN machines? I want a client/server system on the network but I haven't a slightest about the IP. I'd like to avoid dropped packets, so from my limited knowledge I'd go with TCP. Etc. How do I locate another machine via IP on …

Member Avatar for BobS0327
0
119
Member Avatar for Robert955

Article suggests memory fragmentation might be a bit of a problem. Personally I'm inclined to ignorantly suggest it might actually be a stack overflow, check the project options--you might be able to increase the size of the stack for your program (not guaranteed to fix anything).

Member Avatar for pseudorandom21
0
89
Member Avatar for Vladnaka
Member Avatar for Sariscos
Member Avatar for pseudorandom21

These days the use of mainframe computers and terminals is highly outdated, but I'd like to predict it will make a comeback sometime soon. Today our terminals, our smartphones and tablets and even laptops and TVs are much more powerful than they used to be--and much more mobile. Instead of …

Member Avatar for jwenting
0
255
Member Avatar for cwarn23

A gigantic complicated MS Access database and a C# GUI for manipulating data, and then generating crystal reports.

Member Avatar for pseudorandom21
0
393
Member Avatar for rmbrown09

The best way? Probably a database of some sort, either just a file or an actual database (SQL, Access, etc.) Main thing is, you need a way to store the word, and it's definition in a logically related manner. You could use markers to mark the begin/end of data in …

Member Avatar for jaskij
0
524
Member Avatar for pseudorandom21

Java: I have a bunch of stuff drawn to the blank space of a JApplet app. I need to add a JButton at a specific location. I don't know how. What's the easiest way to do this?

Member Avatar for DavidKroukamp
0
183
Member Avatar for Azmah

[QUOTE=firstPerson;1565746]No it deactivates it, but if you sign in within 2 weeks it reactivates it for you. If you pass the 2week period then they 'delete' it, but they might have you still on their database who knows. If you want to stop using it for a bit, then tell …

Member Avatar for Coloradojaguar
0
474
Member Avatar for pseudorandom21

My simple POP3 client (set up for Gmail) isn't downloading all of my messages... Any idea why? I have 350 messages in my inbox and the program only says 296 of them show up. Program.cs [code] using System; using System.Collections.Generic; using System.Text; using System.Net; using System.Net.Sockets; using System.Net.Security; using System.IO; …

Member Avatar for pseudorandom21
1
1K
Member Avatar for pseudorandom21

Here is a sort of description to my yet-unimplemented AI agent to play tic-tac-toe. It doesn't have to win, it just has to work, and my description of it has to be good. Tell me what you think: [code] /* "RATION_AL" The goal of my agent is to implement an …

0
142
Member Avatar for Hajira Khanum

[quote]void main()[/quote] Change "void main" to [icode] int main() [/icode]. Also, writing the program so that there is less coding would be beneficial, what happens when you try to run that thing?

Member Avatar for Hajira Khanum
0
170
Member Avatar for thecoolman5

Dev-C++ is no longer supported, last I checked. A better IDE will probably compile it.

Member Avatar for eddiecrosby
0
4K
Member Avatar for webecedarian

haha oh man but those crappy search engines in the 90's were the best!! oh ma gawd, who remembers [URL="http://en.wikipedia.org/wiki/MSN_Chat"]MSN chat[/URL] ??? To put things into my warped perspective, google's ability to track your searching and browsing is tantamount to a star of david on your shirt in germany during …

Member Avatar for Netcode
0
227
Member Avatar for pseudorandom21

So I can set a global low level keyboard hook from within a DLL pretty easily, but does it actually load that DLL into every process? How is it then, "Global" ? Any useful insight into the way this works? I use the command line program "tasklist" with the /M …

Member Avatar for dexblack
0
216