5,331 Posted Topics
Re: What is the machine/os you are running audible on? VLC runs on all of them (most likely) and can deal with mp3 files without problems, as can many other audio players. Do you HAVE to use audible? | |
Re: I run Linux almost exclusively and have not had this problem. What versions of Linux & Firefox are you running? | |
Re: FWIW, the Oracle embedded PL/SQL software is a derivative of Ada. It (Ada) was developed by the US Government - our tax dollars at work! The Gnu Ada compiler is probably the best bet - available on Source Forge, it has versions for most every operating system. Here is a … | |
Re: This would be simple in C++ as you can create a number class that you can derive new types from and store a pointer to the base class in a collection. In any case, you should have a two two dimensional array defined like this: `const char* array[][3] = { … | |
Re: Using a shared pointer to an a in class b means in b's copy constructor you don't need to create a new instance of a. You can simply assign the copied object's p member to the new object's. That's the whole point of shared pointers - that you can have … | |
Re: This auto-update to Win10 almost fubar'd my brother-in-law's computer. He called me for tech support, and we were able to restore his Win7 system, and save his data... Bad Microsoft! Bad Kitty! Stop pooping on the keyboard! | |
Re: What language are you calling this from? In any case, you should be able to use the cast(val,type) mysql function to do what you want. IE: `IN (cast(1001,varchar),cast(a/bb/001,varchar),...)` | |
Re: Also, you are calling the `detailsmodal()` script before it is defined up in `index.php`. | |
Re: Sorry, what? Doh! Clueless here. | |
Re: Either ssh (secure shell) or vnc (a desktop viewing tool). | |
Re: Usually you flag the post for moderation (upper right of the post) and ask for it the be removed as it was a mistaken post. | |
Re: Show what you have done so far to deal with this - ie, your PHP and HTML code. As with most programming projects, there are multiple approaches to solving every problem. What is best for you depends upon how you are dealing with stuff in general. | |
![]() | Re: The 950gtx is a very good GPU. How fast, and how many cores does your HP laptop CPU have? Also, are you trying to stream 1080p, or 720? 1080p is very bandwidth intensive, as well as a CPU hog. Also, your media application is important. Assuming you are running MS … |
Re: The power supply (PSU) is a good candidate. | |
Re: Have you checked if you have blocked cookies in your browser for your site? | |
Re: 1. See my reply to your other post. 2. ROM's (usually the BIOS) are custom chips. Some are PROM's (Programmable Read-Only Memory), which must PC/Laptop BIOS chips are so they can be updated when necessary. 3. To alter a PROM you need a programmer software tool to write and compile … | |
Re: A ROM (Read-Only Memory) is usually where your BIOS is kept. For PC's, a custom ROM would be an alternative BIOS. Why do you ask? | |
Re: When do you get that error? When you are trying to compile your code? | |
Re: What exactly are you trying to accomplish with the array and ofstream? | |
Re: For debugging purposes, output the hash stored in the database and that returned in userLogin(). If they are using a different salt value (based upon date/time by default perhaps), then the hashes may differ. Since I am unfamiliar with the SCryptUtil library I don't know for sure what it is … | |
Re: And if you need wide chars in your C++ string use std::wstring instead of std::string. All that wchar_t is is a wide (2 byte) character that can contain unicode characters. It is a common C type for systems that have to support international languages. | |
Re: The fans are controlled by thermal sensors. If the motherboard and other stuff (power supply, etc) are dusty, this can exascerbate the problem of high internal temperatures. Take the cover off, and vacuum out the system (unplugged preferably). For hard-to-get at nooks and crannies, you can also use some compressed … | |
Re: So, what is exactly your problem? You need to make the TempBuffer bigger than 4 chars - you have no room for a terminating null char ('\0') so you are creating a buffer overflow. | |
Re: Your honeypot needs to be a virtual machine that you can shut down and nuke as required. Also, you can block out-going messages (may not be helpful) and still see what the malware perps are trying to do. I'd tell you exactly how to do that, but since I have … | |
Re: Please properly format your code, indendented appropriately. I won't comment on code like this... ![]() | |
Re: What @rproffitt said. Also, do you know what a recursive function is? | |
Re: Assuming the target is also a wstring type, this should work. IE: `std::wstring newstr = first + L" " + second;` Note that you left off the second colon in your variable definitions. This may be your problem. What error are you getting? The following is a test program that … | |
Re: The only way is to spawn multiple threads and do the read in each. That will parallelize the I/O, though throughput will not likely improve over your current serialized approach. You can also put the read/code (try/catch blocks) in a separate function which you would call 3 (or N) times … | |
Re: You have a couple of problems. Both examples are REALLY bad and probably won't work. Technique #1 `char three[] = { '2', '5', '8', '\0');` You can use `three` as a char*. Technique #2 Your example won't work because "258" is a `const char*` and NOT a `char*`, so the … | |
Re: Glad you got the issue resolved, but posting what the issue really was and how you resolved it may help others. :-) | |
Re: In`shifter(int size)` you are never filling the array. Since it was never initialized, the random number stuff is not only doing nothing, but as far as I can tell it is unnecessary. The loop SHOULD be (to my mind at least) like the following: for (int i = 0; i … | |
Re: Have you tried running Linux in a virtual machine on the 2012 server and installing OpenVPN on that? I've done that and it works just fine, though you need to use a bridged instead of NAT'd virtual network interface for the VM. | |
Re: Here is Microsoft's page on setting up their sendmail service - free and easy to use: https://msdn.microsoft.com/en-us/library/aa577662.aspx FWIW, we use that at Panasonic for our Windows MES servers. | |
Re: This is the usual way to sort lists of stuff, and a number of the C++, C#, and Java (as well as other OO languages) use this method to determine where to insert an element in a map or other sorted list. | |
Re: Repairing a PC board, especially something as complex as a computer motherboard, that has been damaged by an electrical short circuit, is neither simple nor easy. In most cases, special equipment will be needed to determine the actual scope of the damage, and then there is the problem of replacing … | |
Re: PHP 5.5.4 and later have the ability to run php code directly, even as its own web server (not necessary here I think). Anyway, what RudyM said. On Linux you would use cron to do this. It doesn't have to be a script - it can be in its own … ![]() | |
Re: (Sarcasm ahead) 1. Boot up 2. Login 3. Press num-lock key This is just so difficult! | |
Re: It could also be a faulty hardware issue. Is this a desktop or a laptop? If desktop, have you tried an add-on audio card and disabling the integrated one? Also, try booting a Linux live DVD and playing some audio to see if it has the same problem. If so, … | |
Re: Your 'input' variable is an array of 512 possible values. Try this for your fscanf function: `fscanf(pToFile,"%d %d %d %d %d",&input[0], &i, &j, &k, &l);` Remember, the number of format items in the format string must be the same as the number of variables that you are passing to take … | |
Re: Your response from MySQL above indicates that the host/server you are trying to connect from is blocked. You need to contact the database administrator about this I think. | |
Re: You aren't providing enough information. You need to show what is in your adjacencyMatrix first of all, and then you need to provide additional code in your application. | |
Re: You need a trigger that will run and update the password count and such when a user logs in or out. | |
Re: Besides, what's to keep someone from installing LibreOffice on a USB stick? They can view/edit most any MS Office document with that, even if Office itself is locked down. It is better to create a guest account and make it so that the guest user cannot run Office applications. I'm … | |
Re: As stated, no two fingerprint scans will generate the same data/image. Intelligent fp scanning tech identifies notable features in a print and develops a hash of that. When the same finger is scanned again, those features are extracted and used to create a hash. The fact is, that only the … | |
Re: Sorry, but we don't do your homework for you. In any case, look up the use of the pow() function. | |
![]() | Re: I would suggest booting a live CD/DVD of Linux and see if the keyboard works with that. Also, check your BIOS settings. You may need to reset that and clear out the flash memory that it uses. Usually you either need to turn the system off, remove the battery, and … |
Re: You can also remove line 28 altogether and get rid of that qualification, which is the basic effect of what @ryantroop did is equivalent to what is there now if strProfile is NULL - and remember that on some database systems an empty string is NOT considered NULL. Just get … | |
Re: @rproffitt has it right. Set a timer after alarm is raised, or set a number of events to process before raising another alarm within some specified (and adaptable) time frame. | |
Re: It is likely that dirt in your keyboard is causing this. Get some compressed air and blow the dirt, dust, and detritis out of the keyboard (also holding it upside down and shaking sometimes will dislodge stuff stuck inside). Then try again. |
The End.