Congradulations! If you have a problem with my spelling, just remember that's not my fault. I (as well as everyone else who learned to spell after 1976) blame it on Robert A. Kolpek for U.S. Patent 4,136,395.
Selevercin
Posts
-
And the Gold medal goes to... -
Mathy Question: decimal exponents with the cordic methodHi everyone! I'm trying to figure out how calculators calculate x^y where y is a non-integer. I've learned that they use the cordic method, but does anyone have any idea how this method works on exponents? I've seen examples with square roots and trig functions, but no exponential. A good link or simple explanation would be great if anyone knows of one. Thanks! If you have a problem with my spelling, just remember that's not my fault. I (as well as everyone else who learned to spell after 1976) blame it on Robert A. Kolpek for U.S. Patent 4,136,395.
-
Soap PreferencesChocolate invites ants and beer takes up way too much space. My father brews beer and I know from experience it's not the sort of project to undertake. Besides... you have to steralize everything with special chemicals between every batch, and my computer certanly isn't steril. It probably has an STD from using it so long without updating Norton! Neat idea though. If I were 21 I might be more inclined to make it work.;) If you have a problem with my spelling, just remember that's not my fault. I (as well as everyone else who learned to spell after 1976) blame it on Robert A. Kolpek for U.S. Patent 4,136,395.
-
Soap PreferencesWhile I really wanted to post this in the Soap Box, it's not a rant so I didn't feel qualified. I'm trying to make a parallel port soap manufacturing machine (not even kiding) and I was just wondering what was the most popular soap design. Hardness--On a scale of 1-10 how hard would you want the bar to be? 10 being very hard, 1 being very mushy. Color--Black, white, some other strange color? Angular or smooth?--Should the bar be very linear, with some angles meeting eachother, or should it be your standard smooth, oval shape? Scent--Clove? Ciniminn? Unscented? Some funky scent? Lather--Little lather or lots of lather? No bubbles or big bubbles? It will be awhile until I get all the parts in where I can then just load up SoapMaker V1.0 and start kicking out soap, so in the meantime I thought I'd see what's popular. If you have a problem with my spelling, just remember that's not my fault. I (as well as everyone else who learned to spell after 1976) blame it on Robert A. Kolpek for U.S. Patent 4,136,395.
-
Easy way to convert webpage to txt file?Not exactly what I mean. I wish to have a program go to a site, and then parse that. I want to only have to press a button to have it do all that... I wish to use fstream to parse the page's text, but I can't figure out how to access the text through the program. If you have a problem with my spelling, just remember that's not my fault. I (as well as everyone else who learned to spell after 1976) blame it on Robert A. Kolpek for U.S. Patent 4,136,395.
-
Easy way to convert webpage to txt file?I'm looking at doing some VERY simple webpage parsing. My plan is to turn either the source or the output of the webpage into a text file, and then parse that. However, I do not know how to either get a pages source or output into a text file. Any hints or better (as in simplier) methods would be well appreciated. If you have a problem with my spelling, just remember that's not my fault. I (as well as everyone else who learned to spell after 1976) blame it on Robert A. Kolpek for U.S. Patent 4,136,395.
-
Ahhck!Hahaha... downstairs computer. ;) If you have a problem with my spelling, just remember that's not my fault. I (as well as everyone else who learned to spell after 1976) blame it on Robert A. Kolpek for U.S. Patent 4,136,395.
-
Ahhck!Just started to enjoy my home network when I unplugged the internet and now can't get it back! Anyone here ever had this problem? The status shows that it is actually sending/recieving data, but still can't access the internet!:confused: If you have a problem with my spelling, just remember that's not my fault. I (as well as everyone else who learned to spell after 1976) blame it on Robert A. Kolpek for U.S. Patent 4,136,395.
-
alphabetize list box at run timeI have a list box that I add items to at run time. Once the items are all in (or even before that) I want to alphabetize the list. Any ideas on how to do this? If you have a problem with my spelling, just remember that's not my fault. I (as well as everyone else who learned to spell after 1976) blame it on Robert A. Kolpek for U.S. Patent 4,136,395.
-
AP exam todayThey announced this at the beginning of the year, however our class as a whole decided that it wasn't worth our time and kept with C++. It's kinda silly to have it in java when you can't even make an executable with java... If you have a problem with my spelling, just remember that's not my fault. I (as well as everyone else who learned to spell after 1976) blame it on Robert A. Kolpek for U.S. Patent 4,136,395.
-
AP exam todayhaha... you took it too? I thought it was more like 45% inheritance. Maybe that means I didn't do so good :~. I was actually suprised with the ease of the questions compared to what college board posted as sample questions. I was really glad I happened to randomly decide to learn about the ArrayList last night! (In fact, for all intents and purposes I learned all my java last night.) If you have a problem with my spelling, just remember that's not my fault. I (as well as everyone else who learned to spell after 1976) blame it on Robert A. Kolpek for U.S. Patent 4,136,395.
-
AP exam todayI have my AP computer science exam today (in fact, I leave in 10 minutes). Normally I'd call this a happy thing, except this year they switched from C++ to java (God knows why). Right now I'm wishing I knew a little more java! Major cramming happened last night... ;) Wish me luck! If you have a problem with my spelling, just remember that's not my fault. I (as well as everyone else who learned to spell after 1976) blame it on Robert A. Kolpek for U.S. Patent 4,136,395.
-
Simple divison has GONE MAD!int iDecryptID = m_iID; iDecryptID /= 2; return iDecryptID;
By returning m_iID I know that it is, in fact, the divison that is the problem. If you have a problem with my spelling, just remember that's not my fault. I (as well as everyone else who learned to spell after 1976) blame it on Robert A. Kolpek for U.S. Patent 4,136,395. -
testing for <esc> keyWell, if it's a console app (not sure for others... may or may not work) you can do something like the following: if (kbhit()) { if (getch() == 26) { // escape key was pressed! } } And I believe you have to include conio.h. Also, I'm not positive 26 is the escape key... but my gut says it is. And if you are costantly looping through that code, you will know when the escape key was pressed. Good luck. If you have a problem with my spelling, just remember that's not my fault. I (as well as everyone else who learned to spell after 1976) blame it on Robert A. Kolpek for U.S. Patent 4,136,395.
-
Simple divison has GONE MAD!I have a variable int that when I divide by 2, it all on it's own it divides by 4. By playing with it, I figured out that if I mulitply by about the square root of 2 / 2 the computer simply divides by two. I've even rebuilt the whole project. The int is normally around 3,000,000 and the only thing I can think is that maybe it's larger than it may legally be. So I tried casting it to double, but I got the same responce. Any and all help is greatly appreciated. If you have a problem with my spelling, just remember that's not my fault. I (as well as everyone else who learned to spell after 1976) blame it on Robert A. Kolpek for U.S. Patent 4,136,395.
-
txt filesI have two questions. First is, how can I read and write a text file? I've done this before with fstream, but that method doesn't seem to work at all with MFC. Second, is there a way I can easily intergrate these text files into the executable? If not, then they could just be kept in the same folder, but it would clean it up a lot if they were apart of it. If you have a problem with my spelling, just remember that's not my fault. I (as well as everyone else who learned to spell after 1976) blame it on Robert A. Kolpek for U.S. Patent 4,136,395.
-
pointers and array[][][]int *iArray; iArray = new int [7][20][50]; // set values here for (int x = 0; x < 20; x++) { for (int y = 0; y < 50; y++) { // however you want to print... // i.e. cout << iArray[5][x][y] << endl; } }
Hope that's helpful. If you have a problem with my spelling, just remember that's not my fault. I (as well as everyone else who learned to spell after 1976) blame it on Robert A. Kolpek for U.S. Patent 4,136,395. -
switching keyboard inputI've been using a standard (qwerty) keyboard and allowing XP to switch it to the Dvorak layout. For those that don't know, that is just the same keyboard with the keys rearranged (ex. I type r and get p). Sadly, XP wont carry this into some games, so I've decided to write a program that will re-interpret the keydown messages the games are getting. I was just wondering if someone could give me some hints on where to start looking for examples on this sort of thing. Would this require hooks (I've never made one)? Optimomally, the program would work like a program I downloaded today for getting sound from old dos games, where you just right click the exe and it does something with a DLL to the exe. Thanks! If you have a problem with my spelling, just remember that's not my fault. I (as well as everyone else who learned to spell after 1976) blame it on Robert A. Kolpek for U.S. Patent 4,136,395.
-
stupid stupid computerWhy must it insist on changing itself back to the previous IP everytime I reboot. I am serious, if I have to do just one more ipconfig/renew I am going to shoot something. If you have a problem with my spelling, just remember that's not my fault. I (as well as everyone else who learned to spell after 1976) blame it on Robert A. Kolpek for U.S. Patent 4,136,395.
-
Dialog problemThanks for the help! It seems that it is already defined in the resource.h file. It is defined as 132 and the _APS_NEXT_RESOURCE_VALUE is defined as 133. Should I simply delete the entire dialog and try again? If you have a problem with my spelling, just remember that's not my fault. I (as well as everyone else who learned to spell after 1976) blame it on Robert A. Kolpek for U.S. Patent 4,136,395.