-
Replied To a Post in Twitter: Extract a number of users by categories and the volume of follower
What have you done to find such information from Twitter? If you can get the basic information on how many followers every user of a specific category there are then … -
Replied To a Post in telnet starwars not working
There has to be a service running on the host that you are telneting to that is listening for connection requests on port 23. -
Replied To a Post in Which is the best application to connect Linux remotely
Either ssh (secure shell) or vnc (a desktop viewing tool). -
Replied To a Post in Thread synchronization
And yes, I see that you are using a mutex, but your mistake here is that you don't lock the mutex on entry to your odd/even functions, even though it … -
Replied To a Post in Thread synchronization
You cannot determine the order that threads will run in (scheduled), or how much time they will be allocated. To accomplish what you want, each thread will have to syncronize … -
Replied To a Post in Encrypt $_GET parameter PHP
If you are using SSL (such as via https instead of plain old http) then this should not be necessary as it will be encrypted before it leaves your system. … -
Replied To a Post in PHP 5 Rating System with Comment Box. AJAX request issue
FWIW, at least move to 5.5.4 or later for php! That way, you can run php as a web server for simpler testing purposes. You won't need an entire LAMP … -
Replied To a Post in PHP 5 Rating System with Comment Box. AJAX request issue
I meant to restructure your Index.php file. Make it pure php. Build up the HTML strings in a php variable, and then output that. Also in the Ajax.php file, build … -
Replied To a Post in User complaint Outlook always lag when opening mails
It also could be the Exchange server getting overloaded from time to time, network congestion, or if the email is hosted on the internet your ISP / internet pipe is … -
Replied To a Post in Sony SVE1511C5E BIOS Dump required
How old is this bugger? My wife had a Vaio years ago which was a bit of a pig. She switched to an Apple Macbook Pro and never looked back. -
Replied To a Post in Laptop recommendations?
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 … -
Replied To a Post in Cannot connect to internet via Powerline plug on Bootcamp Windows 7
Does your Mac Mini use a DHCP address, or a static one? Also, you probably want to make sure the TCP/IP v4 configuration for your Windows partition is using DHCP, … -
Replied To a Post in Apple Airport Express becoming increasingly unstable
I suspect that your hardware, specifically the extender for the front office which is giving the problems, is starting to fail. To verify that, then swap it with one of … -
Replied To a Post in PHP 5 Rating System with Comment Box. AJAX request issue
The php runs on the server and the html/javascript/etc run on the client, so instead of mixing your html and php, build up your html strings in php as string … -
Replied To a Post in Printing Document
Nice thing about open source code is that you can see how others do it. Take a look at the LibreOffice source. They have one-click printing capabilities. -
Replied To a Post in Airplane Simulator
So, besides the additional lines of code here from your other post, what is your question. Also, please don't double post like this. Just edit the old post and add … -
Replied To a Post in Airplane Simulator
So, what exactly is your question? -
Replied To a Post in Using a PCIe x4 slot
Try it in the x4 slot first. If it affects the video, try one of the others. Myself I have to ask why you want a PCI device and not … -
Replied To a Post in mp4 video wont play on server
Sounds like IE on the file server doesn't have the video driver it needs. Solution, use FF or Chrome. If you have to use IE on the server, see if … -
Replied To a Post in C++ program help
School work. So, how would you do this? If you don't understand the exercise, see your professor. Also, read the terms of service for these forums. We DO NOT do … -
Replied To a Post in How do I find the port my modem is listening?
You can use your phone as an internet gateway (tethering) or a wifi hot-spot (router and WAP). I've used my phone for both in the past (until AT&T said I'd … -
Replied To a Post in How to fix error 0x80070035 Windows 10?
Get rid of Windows 10? Sorry, sarcasm showing up here... Have you looked on the MS web site for what that error means, and how to fix it? -
Replied To a Post in gcc update problem
You can have multiple GCC compiler packages installed on your system (great for development if you have a dependency upon an earlier/later version). If you look in /bin for gcc* … -
Replied To a Post in WordPress; localhost copy from production.
So, what is the directory tree for the production site, and your local site? Also, have you made sure that none of the directories are links to elsewhere? -
Replied To a Post in how to decrypt in vb.net ?
Do you know what the encryption algorithm was? If not, and you don't have the key, then you are probably SOL. -
Replied To a Post in PAYROLL SYSTEM TIME IN TIME OUT
Please tell us what you are trying to accomplish. Is this for a "sleep" function? Or some sort of asyncronous timer? -
Replied To a Post in Windows 10
(Sarcasm ahead) 1. Boot up 2. Login 3. Press num-lock key This is just so difficult! -
Replied To a Post in Javascript Error
1. You aren't saying what/where the errors are. 2. You are asking us to analyze 400 lines of html/javascript code - get real! -
Replied To a Post in Back to Daniweb for learning Android Development
Most apps for android are written in Java, using the android Dalvik compiler (different byte code than javac produces), but the source is still mostly pure java. You should be … -
Replied To a Post in Don't know the name of this product. Help?
FWIW, I've been using the ethernet-over-powerline wall plug approach for almost 10 years. Absolutely (knock on wood) reliable. It provides 50-100mbps which is 2-4x faster than my internet connection. -
Replied To a Post in Don't know the name of this product. Help?
That may work, but I'd still go with the multiple WAP approach, one WAP for each major area of the house/apt. You are correct in that concrete walls with a … -
Replied To a Post in Networking Deployment Help - Apartment Setup
1. The building systems must be on their own subnet that is not accessible from the tenant subnet. 2. Each apartment should have its own subnet, but with gateway access … -
Replied To a Post in Don't know the name of this product. Help?
I got a wifi repeater a long time ago. Worked pretty good. Don't use it any more. What we do now is to have two access points and one router. … -
Replied To a Post in About compiler warnings. Why do folk ignore or turn them off?
@ddanbe - how do you convert newton-feet to furlongs-in-a-fortnight? :-) -
Replied To a Post in About compiler warnings. Why do folk ignore or turn them off?
In some cases, you want to escalate warnings to errors, or at least warnings over a certain level. Most compilers can do this. If you are building safety/mission-critical systems that … -
Replied To a Post in Help With Stored Procedure
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 … -
Replied To a Post in C to MIPS Translation
You can also set your compiler to use (for gcc) the -S option, which will generate assembly code as the output. Then, you can look at what that does. Other … -
Replied To a Post in Regex shortcode conversion
So, given a specific input, show the output. -
Replied To a Post in how to fetch images stored in different arrays in a single page in codeign
Show what your web page in the browser does show. -
Replied To a Post in chimical equations programming
FWIW, you will probably have to write the rules. -
Replied To a Post in chimical equations programming
Except at the most fundamental level, chemistry is not math. You can do this with a rules-based language or API that "understands" chemical interactions and can transform your input (left … -
Replied To a Post in Math Problem
No code? No real help. What language is the program written in? -
Replied To a Post in Linux - Bash Programming
When you edit a text file, such as a bash script, the changes go into the same physical file (determined by the file's inode). If you want to change it, … -
Replied To a Post in Linux - Bash Programming
You can edit a running bash script, but it will probably crash, or you will have to restart it in any case. In any case, post the original code, and … -
Replied To a Post in Online exams
Assuming your web server is running with PHP, there is a rand() function that you can use to generate a random number for each entry, and sort it by that. … -
Replied To a Post in Battery problem
And speaking of laptop batteries, my Dell D-630's battery is completely dead and has to run on wall power! It won't take a charge at all... :-( I will be … -
Replied To a Post in Battery problem
Lithium Ion batteries such are commonly used in laptops and other mobile devices have a 1-2 year life expectency. IE, if your system is over a year old, you probably … -
Replied To a Post in Wifi adapter picking different channels
Some channels are defaults (6 and 11 typically) so as more people connect over those channels, the performance drops. When both are in use you should be able to select … -
Replied To a Post in crop image & upload
No code there for cropping the image. What have you tried? Here is the manual page from php.net for imagecrop(): http://php.net/manual/en/function.imagecrop.php And yes, Google (or DuckDuckGo) is your friend! -
Replied To a Post in Reading Numbers from Image
This is possible, but not simple or trivial. Try some Internet searching for tools that can extract text from photo images. I'm sure they exist - some commercial, and some …
The End.