Forum: Windows NT / 2000 / XP / 2003 Jul 8th, 2008 |
| Replies: 0 Views: 94 Google docs Hello to all,
I didn't find informations about what is overall limit to store documents in Google/gmail online documents. I have fond only how big files can be in orderd to be able to upload them,... |
Forum: Windows NT / 2000 / XP / 2003 Jun 12th, 2008 |
| Replies: 5 Views: 1,245 Re: Resizing hard drive partition under win XP Thank you all for your replies. I wll use third party software, of course. I know that one way to repartition drive is when fresh copy of Windows is installed. However I wan't sure if that is... |
Forum: Windows NT / 2000 / XP / 2003 Jun 10th, 2008 |
| Replies: 5 Views: 1,245 Resizing hard drive partition under win XP Hello,
is it possible to resize partitions under win XP using Disk management tools, or I need special software for that? I know there are couple of software tools such as Partition Magic. However,... |
Forum: Techies' Lounge Apr 4th, 2008 |
| Replies: 8 Views: 841 Free storage space on the Web Hello people,
I wonder if there are free web space that can be used. Basically I need storage (ftp) if possible to place materials and worksheets. For example I participate on sci groups and I do... |
Forum: Motherboards, CPUs and RAM Mar 16th, 2008 |
| Replies: 1 Views: 279 CPU's NO OPS Hello to eveyone,
I'm reading one article about CPU utillisation in programmable logic controllers, which are also computer based systems. In article is stated that CPU's time is spent on executing... |
Forum: Storage Mar 6th, 2008 |
| Replies: 4 Views: 260 Re: SCSI disks usage Thank you for your reply,
I have PIII board with SCSI disk. I want to buy backup disk. SCSI controller and all other hardware is there. I don't have here configuration to post, but I can do it... |
Forum: Storage Mar 6th, 2008 |
| Replies: 4 Views: 260 SCSI disks usage Hello people,
I wonder why many business machines such as servers and process computer (I work in one power plant) use SCSI disks? I noticed that practically all computers that do a lot of... |
Forum: Techies' Lounge Dec 30th, 2007 |
| Replies: 5 Views: 407 |
Forum: Techies' Lounge Dec 26th, 2007 |
| Replies: 5 Views: 407 |
Forum: Windows NT / 2000 / XP / 2003 Jun 13th, 2007 |
| Replies: 1 Views: 1,293 Using USB memory stick on Win NT 4.0 Hello, do you know where to find drivers in order to use USB flash disk on machines with Win NT 4.0.
I have found drivers for win 98 and once I installed them, I was able to use three different USB... |
Forum: C Jun 7th, 2007 |
| Replies: 4 Views: 2,386 |
Forum: C Jun 6th, 2007 |
| Replies: 4 Views: 2,386 Re: 2D array allocation problem Hmm, this is important part:
mat1 = malloc(cols * sizeof(int*));
for(i = 0; i < cols; i++)
{
mat1[i] = malloc(rows * sizeof(int));
}
First I allocate array of pointerts to int. Every array... |
Forum: C Jun 6th, 2007 |
| Replies: 4 Views: 2,386 2D array allocation problem Hello guys,
It's been a while since I last time posted in this forum.
I have strange problem regarding matrix allocation. I was asked to write code that includes 2D array dynamic allocation. I write... |
Forum: Techies' Lounge May 13th, 2007 |
| Replies: 0 Views: 422 Working and posting on Google groups Hello,
maybe this is not the right forum, but I hope you'll be able to help.
How many of you used google groups? I have recently signed in but I'm having problem posting new topics. Every time I... |
Forum: Windows NT / 2000 / XP / 2003 Feb 13th, 2007 |
| Replies: 2 Views: 681 Strange issue with internet connection Hello people,
I have one interesting problem and need your advices.
A few days ago, my friend called me and asked for help. He said he had problem with internet connection. It is old computer 400 Mhz... |
Forum: Techies' Lounge Dec 15th, 2006 |
| Replies: 1 Views: 1,541 DVD player and 8 cm DVD+RW Hello guys,
I want to buy DVD player for home use (not computer DVD device). I want DVD player to be able to play DVD+RW 8 cm double side disk. I assume most of today's DVD player support this... |
Forum: Windows NT / 2000 / XP / 2003 Oct 30th, 2006 |
| Replies: 0 Views: 812 |
Forum: C++ Oct 10th, 2006 |
| Replies: 10 Views: 5,175 Re: sorting a text file I disagree. Many people thinks bubble sort is easiest just because it is usually first sort algorithm teached in many books and classrooms. It's performance are bad for large lists and it's much... |
Forum: C++ Oct 10th, 2006 |
| Replies: 10 Views: 5,175 Re: sorting a text file If you need to write sort code, I would recommend insertion sort.
Read this:
http://www.eternallyconfuzzled.com/tuts/sorting.html |
Forum: C++ Oct 9th, 2006 |
| Replies: 3 Views: 3,927 Re: C++-String Manupulation Have a look at this:
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <sstream>
using namespace std; |
Forum: C Oct 6th, 2006 |
| Replies: 3 Views: 1,923 Re: Program on matrix calculations Indeed, it's not clear what you want. If you need to make program to perform some kind of matrix calculation, why not using two dimensional array defined something like this:
int matrix[10][10];
... |
Forum: C++ Sep 29th, 2006 |
| Replies: 15 Views: 16,690 |
Forum: C Sep 27th, 2006 |
| Replies: 1 Views: 532 |
Forum: C Sep 27th, 2006 |
| Replies: 1 Views: 1,046 |
Forum: C++ Sep 22nd, 2006 |
| Replies: 10 Views: 2,056 Re: Finding the union of two strings Yes, I know. That was my answer!
P.S. You should distinct union (http://mathworld.wolfram.com/Union.html) and intersection (http://mathworld.wolfram.com/Intersection.html)
And one more thing, I'm... |
Forum: C++ Sep 21st, 2006 |
| Replies: 4 Views: 803 |
Forum: C++ Sep 21st, 2006 |
| Replies: 10 Views: 2,056 |
Forum: C++ Sep 20th, 2006 |
| Replies: 4 Views: 803 |
Forum: C++ Sep 19th, 2006 |
| Replies: 6 Views: 846 Re: problem with headers and streams Well, according to this:
http://www.cppreference.com/cppio/index.html
cin, cout are defined in iostream.
And this will also help ypu understand what is going... |
Forum: C++ Sep 15th, 2006 |
| Replies: 6 Views: 1,193 |
Forum: C++ Sep 13th, 2006 |
| Replies: 4 Views: 1,050 |
Forum: C++ Sep 12th, 2006 |
| Replies: 6 Views: 1,165 |
Forum: C++ Sep 12th, 2006 |
| Replies: 4 Views: 1,050 |
Forum: Python Sep 6th, 2006 |
| Replies: 13 Views: 2,609 Re: Sorting lists by word length: How do I do it? You can, for fun, choose sort algorithm, use list of words (strings) and use len() for comparison...
http://www.daniweb.com/code/snippet452.html
Then, if you have problems making it work you can post... |
Forum: Python Sep 6th, 2006 |
| Replies: 3 Views: 4,161 |
Forum: Python Sep 4th, 2006 |
| Replies: 3 Views: 798 |
Forum: C Sep 3rd, 2006 |
| Replies: 5 Views: 968 Re: algorithms Well if you don't want to bother with math notation that will probably confuse you more than you actually are, here (http://eternallyconfuzzled.com/articles/bigo.html) is pretty good explanation... |
Forum: C Sep 2nd, 2006 |
| Replies: 5 Views: 968 Re: algorithms If you like more informations, this is another good link:
http://en.wikipedia.org/wiki/Big_O_notation |
Forum: Python Sep 1st, 2006 |
| Replies: 15 Views: 2,246 |
Forum: Storage Aug 25th, 2006 |
| Replies: 7 Views: 9,696 |