-
Replied To a Post in register students
Please read the terms of use for this site. We won't do your homework for you - period. Make an honest effort to solve the problem your teachers have assigned … -
Replied To a Post in C#, OOP and .NET General Queries
These sound like school/class questions. All of them can be answered by reading the appropriate books and/or internet articles. We are not here to do your homework for you. :-( -
Replied To a Post in need help with this school project
"I need help with this school project" doesn't help a lot. No explanation. No showing of work done at this point. Sorry, but my mind reading ability just fizzled out... -
Replied To a Post in Mac problem
Actually, you can run OSX in a VirtualBox VM on Linux. Not sure about Windows. How well that would work I'm not sure as I haven't tried it, but VBox … -
Replied To a Post in write the program in c++ to define a class called toString
To be a little kinder than rproffitt (with whom I agree 100% in this sort of case), we DO NOT do your homework for you! Make an effort. Show your … -
Replied To a Post in Black screen with white box that says 'enter password'
And another reason why I don't use Windows on my computers - Linux only. -
Replied To a Post in suggest a tool to make javascript unreadable
@Ella_3 and crymari2 - I have found after 30+ years of software development and engineering that code obfuscation is only useful for code obfuscation contests. Don't waste your time. It … -
Replied To a Post in checking a command validity
I stopped using strtok() years ago (like 25+) because it modifies the original string, adding null characters for each token found. I find other methods work better, and in some … -
Replied To a Post in rsync not syncing some files
Also, make sure the directory and associated files are readable. If they aren't readable, then you can have this problem. I have had similar issues in the past. Make sure … -
Replied To a Post in Wifi Connectivity Issue
Just telling us that you have a connectivity problem without showing the errors you are getting and other related information is not useful. Want help? Provide more data. We are … -
Replied To a Post in Ram
So, what is your question? -
Replied To a Post in Need Help for all c++ developers
Two things. First, visit the cplusplus.com web site and study their tutorials. Second, purchase and study the Ellis and Stroustrup C++ reference manual. -
Gave Reputation to rproffitt in What Linux use for NTP frequency synchronization or phase synchronization
@fo2sh. The code is open source which means open to inspection. I neglected to note the algorithm is on the web too but frequency? Nope, it's just setting the clock … -
Replied To a Post in What Linux use for NTP frequency synchronization or phase synchronization
Why does this matter to you? How accurately you can sync your clock? Anything within one second is not discernable to humans. -
Replied To a Post in Handler Socket
Try `if (handler.Disconnected())` - not sure if that will work. You posted this in the 'C' and not the 'C#' thread. -
Replied To a Post in MS-N033 motherboard problem
Please be more specific by what you mean about "it doesn't turn on". No lights? No disc drive? No BIOS boot diagnostics? -
Replied To a Post in What does it mean to have a desktop operating system not found
@marcza - this assumes he is trying to boot Windows. He doesn't say. -
Replied To a Post in JRE for LibreOffice
I have libreoffice 5.1.6.2 on my Mint system. Works fine with the default Java runtime. No JRE required. -
Replied To a Post in c++
FWIW, I have been programming C++ professionally for 25 years. When I am writing code I keep cplusplus.com open in my browser. Over the years, the language has evolved and … -
Replied To a Post in php
Well, at its simplest level, it is mostly correct PHP code. -
Replied To a Post in Picture doesnt load in wordpress header.php
@diafol - WP could fix this if they wanted to make the effort. It isn't rocket science, just simple object-oriented programming. I did a lot of PHP at Nokia, including … -
Gave Reputation to diafol in Picture doesnt load in wordpress header.php
@rubberman So true. However the WP team has set up the platform for non-coders. It's a mess for experienced coders but supposedly easy for everybody else. I'm not totally convinced -
Replied To a Post in Automatic geolocation
Some sites allow you to give them permission to track your location. Is that what you are looking for? -
Replied To a Post in What is the career future in Android?
Also, at the root, Android is Linux. So, become a proficient Android programmer and you will learn both Java and Linux. You can also use other low-level languages with Android … -
Replied To a Post in no output is show
It should be RelayRace implements Runnable, not RelayRacer. Or in the immortal words of Captain Kidd - ARR! -
Replied To a Post in Picture doesnt load in wordpress header.php
This is why I hate WordPress. They totally misuse PHP, mixing their PHP and HTML code. I would fire the lot of their developers if I was a senior/principal/managing engineer … -
Replied To a Post in php
Maybe he just wants to illustrate proper PHP or HTML code? :-) -
Replied To a Post in c++
Great C++ web site with tutorials, reference documentation, etc. www.cplusplus.com -
Replied To a Post in ATM machine
What deceptikon said. We don't do your homework for you. Make an honest attempt to do the assignment, and post your code with errors here in order to get our … -
Replied To a Post in mounting android micro sd
Do you see /dev/sdf1 in /dev? If so, that is the partition that you need to mount, not /dev/sdf. IE: mount /dev/sdf1 /home/me/Desktop/mnt/ -
Replied To a Post in Xamarin
C# is not C, and your question cannot be answered without more information. -
Replied To a Post in SQLCE
Try a major SQL DBMS such as MySQL or Postgres. They are free, and are better than SQLCE. -
Replied To a Post in Compiling issue with the struct declaration
Re. Tinstaafl's suggestion. Just make sure you guard the header from being included multiple times, or you will will have the same problem. Do you know how that works? -
Replied To a Post in Difference between RTOS Android.
Android is NOT an RTOS. It is Linux with some RT extensions, but is is not hard real time. The QNX OS (used on some Blackberry phones) is a hard … -
Replied To a Post in mounting android micro sd
Try running fsck on the partition of the sd card. Unfortunately, most use FAT file systems, so you may need to use fsck.fat to fix it. -
Replied To a Post in Batch delete brackets and the spaces in side in Word
Word supports regular expression operations that will do this. RTFM. -
Replied To a Post in On starting my Samsung pc black screen is coming and shows Enter password.
If it is a laptop, you may have to remove the battery and short out a couple of contacts on the motherboard. Check with the Samsung web site's support pages … -
Replied To a Post in Not able to read the serialize file contents
Any particular reason why you are using the Boost serialization library? Also, what is the raw format that Boost puts the data into? XML? TCL? Proprietary? -
Replied To a Post in 5 best antivirus programs for Windows ships
Try ClamWin - open source and free. I use it on Windows, and the ClamAV version for my Linux systems. -
Replied To a Post in c++ receipt program
Homework I presume. We don't do your homework for you. Make an honest effort to do the work and when you run into coding problems, post the code and errors … -
Replied To a Post in How Come Variable Not Assigned And Php Knows Where To Look For Value ?
$value is a dynamic variable that only lives within the scope of the loop it is used in. You have declared it with the loop declaraction. -
Gave Reputation to Dani in Zend PHP Studio won't open
I downloaded the .dmg file for OS X, dragged and dropped the application into the Applications folder, and then attempted to open the application. It just kept resulting in that … -
Replied To a Post in Zend PHP Studio won't open
Dani, did you install Zend "out-of-the-box", or did you rebuild it for OSX? I've had to rebuild it in the past for specific versions of Linux. -
Replied To a Post in Build joydev.ko kernel module for lenovo k5 vibe
You just need a standard GNU C compiler to build a kernel module. You have to learn how to unpackage kernel source with dependencies so you get the headers and … -
Replied To a Post in How to make automatic browsing to images from database ?
So, what does the SQL Server documentation tell you? Do you know enough Transact-SQL to process this in a stored procedure? -
Replied To a Post in [object Object]Internal Server Error
Not enough information. Need server specs, operating system, and a lot of other stuff. With this "nugget" of information, you are on your own! -
Replied To a Post in Summer Time (in code)
Just get your timezone set properly and the proper clock time will take care of itself. When I go elsewhere, in another timezone, I just reset the clock timezone, and … -
Gave Reputation to pty in how i can do it
You can't have it because immediately after assigning it you're overwriting the value. I believe you can fix it by turning your computer upside down so the first line runs … -
Replied To a Post in problem with my alfa network
What the Reverend said - 5 meters is a REALLY long USB cable and unless it is designed to handle those distances (double-shielded tight twisted pair wires in the cable) … -
Replied To a Post in Transfer Win7 profile to new Win 10 on different machine
Backup data. Install new system. Re-install your applications (hope you have the license keys if needed), restore data, and have "fun". I'm sure Win10 will provide you with all the …
The End.