|
2
|
DonationCoder.com Software / FARR Plugins and Aliases / Re: New C# FARR Plugin: FARRGoogleSuggest
|
on: December 29, 2007, 03:28:24 PM
|
The lib is indeed using 2.0, and I presume Vitalyb's to be doing the same. Sadly, user side support for .NET is patchy at best, mainly due to Microsoft not pushing it upon people. Most people will have 1/1.1, some will have 2.0 and only devs will likely have 3.x. Looking at the refactored code it would appear that the library would need a total rewrite to bring it down to 1/1.1 standard, no fun at all: I would instead suggest that the .NET wrapper should use the Visual Studio deploy magic to install .NET 2 if it is not found. .NET 2.0 framework: http://www.microsoft.com/...5E04F5&displaylang=en(Be sure to check Windows Update for patches etc) PhilKC
|
|
|
|
|
7
|
Main Area and Open Discussion / Living Room / Re: CPU 100%
|
on: June 25, 2006, 10:12:30 AM
|
What is CPU and how does it relate to RAM??
The CPU is the "Central Processing Unit" of your computer, this is often made by Intel, or AMD, it's the brains of your PC, and everything you do relies upon it. RAM is "Random Access Memory", and is used as a 'quick access' store for your applications, by storing variables in RAM, retrieving them is faster... The two are in no real way realted... PhilKC
|
|
|
|
|
8
|
Main Area and Open Discussion / Living Room / Re: CPU 100%
|
on: June 24, 2006, 02:14:28 PM
|
|
I'm also going to have a stab at this >_>
Running services.msc and disabling the Zero Configuration service manually would also work...
It all depends if the belkin suppied exe does anything else which you might need...
If it does, go with the services.msc way, else, mouser's link would be best...
PhilKC
|
|
|
|
|
10
|
Main Area and Open Discussion / General Software Discussion / Re: download monitoring in network
|
on: June 23, 2006, 09:24:18 AM
|
I've just been doing normal surfing to 3 forumn sites, and the program says i've download 1.2 mb of data. Is that normal?? for 20 mins of forum surfing???
Depending on your client (and forum) settings... Yes... If you want to save some bandwidth, disable avatars, and sigintures, consider disabling images (Or only allows those from the originating site)... As for the rouge client, unless your routing devices has some functionality to show bandiwdth consumtion, I think you're out of luck.. (Short of installing an app to do so on every PC) PhilKC
|
|
|
|
|
13
|
Main Area and Open Discussion / Living Room / Re: Rock Paper Scissors 25 - an old game, a very cool twist
|
on: June 08, 2006, 04:55:34 PM
|
I need a job or something >_> http://bluescreenofdeath.co.uk/DC/RPS%2025.exeFormatted for C++ with the GeSHI Syntax Highlighter [ copy or print] #include <iostream> using namespace std; void fillArrays(); int getHand(bool); int findWinner(int, int); const int maxValue = 25; static char* names[maxValue]; static int values[maxValue]; int main() { cout << endl; srand (time(NULL)); fillArrays(); int player = getHand(false); int cpu = getHand(true); int win = findWinner(player, cpu); if (win == 0) cout << "YOU WIN!"; else if (win == 1) cout << "I WIN!"; else cout << "Draw :("; cout << endl; system("PAUSE"); return EXIT_SUCCESS; } int findWinner(int player, int cpu) { if (player == cpu) return 2; if (player > 12) { if ((player < cpu) && (player > (cpu - 12))) return 1; return 0; } if (cpu > (player + 12)) return 0; return 1; } int getHand(bool cpu) { int hand = 0; if (cpu) { hand = rand() % maxValue; cout << "I picked " << names[hand] << endl; } else { cout << "Pick your hand! (By number): "; cin >> hand; cout << endl << "Ok, you picked " << names[hand] << endl; } return hand; } void fillArrays() { names[0] = "Gun"; names[1] = "Dynomite"; names[2] = "Nuke"; names[3] = "Lightning"; names[4] = "Devil"; names[5] = "Dragon"; names[6] = "Alien"; names[7] = "Water"; names[8] = "Bowl"; names[9] = "Air"; names[10] = "Moon"; names[11] = "Paper"; names[12] = "Sponge"; names[13] = "Wolf"; names[14] = "Cockroach"; names[15] = "Tree"; names[16] = "Man"; names[17] = "Woman"; names[18] = "Monkey"; names[19] = "Snake"; names[20] = "Axe"; names[21] = "Scissors"; names[22] = "Fire"; names[23] = "Sun"; names[24] = "Rock"; int i; for (i=0;i<25;i++) { values[i] = i; cout << i << " - " << names[i] << endl; } cout << endl; }
PhilKC
|
|
|
|
|
19
|
DonationCoder.com Software / Post New Requests Here / Re: IDEA: Symantec anti-virus auto-updater
|
on: May 25, 2006, 03:19:46 PM
|
Hey, for 1.09, is there a way to make it so that you can enter the URL of the page to be checked for the update that way it isnt hard coded into the app. Perhaps this can be stored in a registry key, and loaded each time the program starts. That way, if symantec were to change their page, you wouldnt have to update the program.
Done. Also, the exception is thrown when you click an empty spot in the log window. Also, ntvdm.exe isnt being killed in task manager. I still show it running.
Fixed. One thing I did notice is that when you change the amount of time between updates, its not remembered when you restart the app and its also not updated on the timer. Is there a way to do this via a registry key? You could store whether or not silent updates are enabled, auto update is enabled, the update interval and the default log file to use all in registry. Would this be feasible? One final thing, when you press update to do a manual update, it doesnt reset the timer (at least in the titlebar of the app). Thanks again!
Changed. (Although the title bar wont update instantly) 1.09 ahoy! PhilKC
|
|
|
|
|