5,331 Posted Topics

Member Avatar for AQWst

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?

Member Avatar for rubberman
0
733
Member Avatar for lewashby

I run Linux almost exclusively and have not had this problem. What versions of Linux & Firefox are you running?

Member Avatar for nudy.budy
0
439
Member Avatar for rose_2

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 …

Member Avatar for rubberman
0
252
Member Avatar for COKEDUDE

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] = { …

Member Avatar for rubberman
0
193
Member Avatar for can-mohan

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 …

Member Avatar for madhav sai
0
200
Member Avatar for Reverend Jim

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!

Member Avatar for Reverend Jim
1
1K
Member Avatar for ramsiva

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),...)`

Member Avatar for mblan180131
0
356
Member Avatar for sahilmohile15
Member Avatar for hericles
0
439
Member Avatar for tagore_1
Member Avatar for infovirtualser
Member Avatar for James_43

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.

Member Avatar for rubberman
0
290
Member Avatar for amith_ami

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.

Member Avatar for rubberman
0
102
Member Avatar for ingeborgdot@yah

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 …

Member Avatar for fallout4player
0
303
Member Avatar for scmgolf
Member Avatar for spud91
Member Avatar for spud91
0
1K
Member Avatar for pauline marie

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 …

Member Avatar for rubberman
0
235
Member Avatar for pauline marie

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?

Member Avatar for rubberman
0
65
Member Avatar for akshayg

When do you get that error? When you are trying to compile your code?

Member Avatar for tinstaafl
0
63
Member Avatar for Christian Felix

What exactly are you trying to accomplish with the array and ofstream?

Member Avatar for tinstaafl
0
174
Member Avatar for SagarSe7en

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 …

Member Avatar for SagarSe7en
0
384
Member Avatar for JosesMelo

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.

Member Avatar for rubberman
0
292
Member Avatar for fallout4player

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 …

Member Avatar for rubberman
1
1K
Member Avatar for alegatross

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.

Member Avatar for alegatross
0
714
Member Avatar for James_43

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 …

Member Avatar for James_43
0
322
Member Avatar for Faile

Please properly format your code, indendented appropriately. I won't comment on code like this...

Member Avatar for diafol
0
3K
Member Avatar for mariamalfarsi

What @rproffitt said. Also, do you know what a recursive function is?

Member Avatar for rubberman
0
144
Member Avatar for JosesMelo

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 …

Member Avatar for rubberman
0
4K
Member Avatar for Mar. Na.

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 …

Member Avatar for Mar. Na.
0
275
Member Avatar for soujanya.bhat.184

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 …

Member Avatar for rubberman
0
179
Member Avatar for lakshay
Re: C++

What @rproffitt said. Put your code inside a code block and then make sure it is properly formatted, indented, etc. Then we can comment more appropriately.

Member Avatar for rubberman
0
214
Member Avatar for MarkOrban

Glad you got the issue resolved, but posting what the issue really was and how you resolved it may help others. :-)

Member Avatar for sam07
1
299
Member Avatar for mike52john

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 …

Member Avatar for rubberman
0
186
Member Avatar for hemstal

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.

Member Avatar for kc0arf
0
656
Member Avatar for OsaMasw

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.

Member Avatar for kc0arf
0
276
Member Avatar for Roger_2

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.

Member Avatar for rubberman
0
189
Member Avatar for kapeolie

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 …

Member Avatar for rubberman
0
192
Member Avatar for Ajaypal_1

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 …

Member Avatar for diafol
0
10K
Member Avatar for charles.klein

(Sarcasm ahead) 1. Boot up 2. Login 3. Press num-lock key This is just so difficult!

Member Avatar for saxon747
0
190
Member Avatar for SkateX

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, …

Member Avatar for saxon747
0
329
Member Avatar for JohnGrey

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 …

Member Avatar for rubberman
0
141
Member Avatar for bayron209

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.

Member Avatar for bayron209
0
351
Member Avatar for toxicandy

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.

Member Avatar for rubberman
0
2K
Member Avatar for kamilacbe
Member Avatar for rubberman
0
344
Member Avatar for mbehnaam

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 …

Member Avatar for rubberman
0
835
Member Avatar for savedlema

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 …

Member Avatar for rubberman
1
2K
Member Avatar for Oyeh

Sorry, but we don't do your homework for you. In any case, look up the use of the pow() function.

Member Avatar for rubberman
-1
127
Member Avatar for The Biscuit

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 …

Member Avatar for rubberman
0
259
Member Avatar for DGULLIVER

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 …

Member Avatar for ryantroop
0
240
Member Avatar for fo2sh

@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.

Member Avatar for rproffitt
0
427
Member Avatar for Simple man

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.

Member Avatar for Teme64
0
257

The End.