5,237 Posted Topics
Re: You have all the answers in your other thread. https://www.daniweb.com/digital-media/digital-marketing/search-engine-strategies/threads/542587/what-are-the-most-effective-seo-strategies-for-improving-organic-traffic | |
Re: How big is each record? If it's like say a customer record with maybe a dozen fields and taking up several hundred bytes of space, adding a single 32-bit timestamp isn't going to impact you. https://en.wikipedia.org/wiki/Entity%E2%80%93relationship_model Draw one of these for your [database schema](https://en.wikipedia.org/wiki/Database_schema) then consider which of the perimeter … | |
Re: > hladysz said > please fix the condition: Please explain why you think this is the wrong condition. | |
Re: If the drives are dropping out during normal operation, check the OS log files to see if any particular reason is reported. For all the drives, gather the [SMART](https://en.wikipedia.org/wiki/Self-Monitoring,_Analysis_and_Reporting_Technology) statistics. | |
Re: I would suggest you do `pip list` in your working and non-working environments. It seems that `wrap_socket` is deprecated (and insecure) https://github.com/eventlet/eventlet/issues/795 I would have thought your `mysql` would have depended on the right version to begin with. | |
Re: Which of the following things have you tried? 1. Cleared the cache and deleted all cookies in your browser 2. Tried with another browser 3. Tried with a browser running in "safe" mode - ie, without a bunch of plugins potentially messing with things they shouldn't 4. Tried with another … | |
Re: Passing familiarity with a search engine would be high on the list of skills. https://duckduckgo.com/?q=cyber+security+training&t=newext&atb=v296-1&ia=web | |
Re: If your batch size is say 1K, and your user decides to spam you with say 10K+ records, what does it matter to you? - flush your existing batch queue - loop through the large request 1K at a time and immediately commit to the database using some batch update … | |
Re: 1. Get something working in Python if that's your comfort zone. 2. Profile it to find out where the bottlenecks are (do not make guesses, find evidence) For example, if the program is spending a lot of time waiting for I/O (aka the disk), then writing chunks of code in … | |
Re: It doesn't require any 3rd party software. For example, I use Firefox profiles to separate my bank from my shops. https://support.mozilla.org/en-US/kb/profile-manager-create-remove-switch-firefox-profiles Coupled with quick-launch icons on the desktop, I find it to be a very easy to use solution. | |
Re: First, let's prepare two tar files using different compression schemes for demo purposes. $ cat foo_1.txt This is file 1 $ cat foo_2.txt This is file 2 This is file two This is file too # Three tar files, two compressed and one uncompressed for reference $ tar -j -c … | |
Re: 1. Run the program in the debugger. 2. Put a breakpoint on `con.Open();` 3. Run the backup part of the program. 4. Print the contents of the `cmd` string, after it's made all the runtime substitutions. Is that string what you were expecting? The spaces around your double-back-slash seem out … | |
Re: I thought this was going to turn into some kind of crypto nonsense on how to make money mining bitcoin or something. | |
Re: Well you can either: STFW with https://duckduckgo.com/?q=employee+retention+credit Wait for your sock-puppet to show up with their "recommendation". | |
Re: Or you just learn how to use the tools. If you want only reddit, then type this into your search: `c programming language site:reddit.com` If you want everything but reddit, then type this into your search: `c programming language -site:reddit.com` | |
Re: If you want to know what windows is up to when you do something, then try using https://learn.microsoft.com/en-us/sysinternals/downloads/procmon | |
Re: Yeah - I remembered that little detail after the fact when I saw +0. | |
Re: [url]http://it.acronymfinder.com/af-query.asp?string=exact&acronym=csp&s=r[/url] Maybe we can't figure out which meaning of CSP you're talking about. > Is simple hill-climbing a complete algorithm for solving CSPs? That looks like a google question to me, if you'd done any research on the topic. | |
Re: So is that when you use [ICODE]for(int i = 0; i < len; i++)[/ICODE] rather than [ICODE]for ( string::size_type i = 0; i < len ; i++ ) {[/ICODE] | |
Re: > mov==getch(); > if(mov='d')//supposed to be right arrow, don't know how to You got them both wrong = is for assignment (the first one) == is for comparison (the second one) | |
Re: Hell, with only 2 posts, you've already joined the top 25% of posters on the board. Only 8 more posts will get you into the top 2%! | |
| |
Re: But there is only "one" strategy, and that's to keep the other player with multiple of 3 to choose from. If the other player ends up looking at a total of 3, then you win. Eg. Total is 6 (for them) They pick 4, you pick 2 and win They … | |
Re: A loop which loops N times is considered to be O(N) even though as you know it would take N+1 comparisons to run the loop. | |
Re: In other words - you want to cheat. The good news (for everyone else) is that the required knowledge is probably 6 months to a year away, so the fact that you think you can get this "matrix style" in a short time period means you'll probably give up. | |
Re: [url]http://linux.die.net/man/3/clock[/url] clock() determines (to some approximation) the amount of CPU time used by a program. Waiting around for I/O typically does not count. If you want to measure the amount of elapsed time, as by your watch for example, then use the time() functions. | |
Re: A wild stab in the dark suggests that you need to double up the second \ in your pathname, so C:\\TC\[COLOR="Red"][B]\[/B][/COLOR]BGI But since you've only paraphrased the problem, who knows whether that typo exists in your actual code, or whether there is some other problem you haven't bothered to mention. … | |
Re: 6000 pages @ 1 page per day ~= 16.5 years. Planning anything else afterwards, say the world's longest beard perhaps? Now if you're doing some proper old-time research (and coming up with genuine new ideas, which is what a PhD ought to be), it might take weeks to come up … | |
Re: [URL="http://lmgtfy.com/?q=%22insert+name+of+thing+here+%22+source+code"]Sure is![/URL] Just edit to taste. | |
Re: codeblocks-8.02-setup.exe 28 Feb 2008 10.8 MB codeblocks-8.02mingw-setup.exe 28 Feb 2008 19.3 MB The first one is the IDE only The second (larger one) includes the compiler. You need the second one only once (unless you manually install compiler(s) of your choice). Then if you want to keep up to date … | |
Re: You also need to consider that 900 say is written as "CM" (ie 100 before 1000), not as 9 C's in a row. But according to your input, 'X' is not a valid operation? | |
Re: > Thank you for the idea but could you explain a little further Yes, and I bet your tutors will ask you exactly the same question as well. The only difference being is that your explanation will be even more vague than whatever is posted here. That's what you get … | |
Re: How about trying it for yourself rather than hijacking a thread which is over 2 YEARS old. You're not going to learn to cook from reading cookery books, and I can tell you that all great cooks didn't get where they are today without setting fire to something at least … | |
Re: Maybe this linux based tool? [url]http://home.eunet.no/pnordahl/ntpasswd/bootdisk.html[/url] > the administrator won't let me use illegal software. So hand the machine over to them, and let them earn their keep for a day or two while you get on with something else. | |
Re: People repost the same old urban legends, and no one knows why. [url]http://www.snopes.com/critters/wild/duckecho.asp[/url] Actually, they'll believe anything printed shoved in front of their noses and never bother to conduct even the slightest bit of independent research. | |
Re: > please teach me how to be a programmer Sure, how about beginning with learning how to read, lets say all of the wonderful resources posted in this thread. As opposed to merely bumping a dead thread with your content-free "me too" post. | |
| |
Re: Also asked here - [url]http://www.daniweb.com/forums/thread170944.html[/url] | |
Re: [url]http://msdn.microsoft.com/en-us/library/aa379166%28v=vs.85%29.aspx[/url] If you're calling it the first time to retrieve the length of the name, then you should pass NULL for the name, and make sure the length is initialised to zero. Otherwise, you're passing a pointer to a string in read-only memory, and it attempts to write 1 byte … | |
Re: > I get a lot of error related to iostream.h file not being found iostream.h is old C++. The new way is [code] #include <iostream> using namespace std; int main ( ) { cout << "hello world"; } [/code] Or [code] #include <iostream> int main ( ) { std::cout << … | |
Re: [url]http://www.cplusplus.com/reference/iostream/ifstream/[/url] Maybe it's something to do with your obsolete compiler, with its obsolete headers. Compilers which accept "#include <iostream.h>" and void main are really not good anymore. | |
Re: > sorry buddy just try this out... > #include<stdio.h> > #include<conio.h> > void main() Great, just what we want around here, another void main, conio.h riddled post without code tags. | |
I regret that I have to inform you that [Adak](http://www.daniweb.com/members/346000/Adak) passed away suddenly after an illness (thanks to the_cultie from the OC forum for the notice). For folding details, please see here. http://www.overclockers.com/forums/showthread.php?t=744019 | |
Re: [URL="http://www.daniweb.com/forums/thread209180.html"]I've got ya all beat - for now ;)[/URL] ![]() | |
Re: My guess is the host OS isn't DOS at all, but probably something like XP. The answer is to get one of the many free compilers which are actually compatible with your host OS. | |
Re: For ports (serial, parallel, usb etc), try [url]http://www.lvr.com/[/url] | |
Re: > I make this program but with while loop then i was told to make it using for loop, which i tried but failed. So turn [code] i = 0; while ( i < 500 ) { // do stuff i++; } [/code] To [code] for ( i = 0 … | |
Re: [URL="http://forums.devshed.com/c-programming-42/program-that-fills-in-information-on-the-internet-823498.html"]Ohh look, cross posting[/URL] You're already comfortable with manual spamming, I see no reason to help you automate the process. |
The End.