User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 426,094 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 1,779 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Showing results 1 to 40 of 147
Search took 0.02 seconds.
Posts Made By: Micko
Forum: Windows NT / 2000 / XP / 2003 Jul 8th, 2008
Replies: 0
Views: 94
Posted By Micko
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
Posted By Micko
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
Posted By Micko
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
Posted By Micko
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
Posted By Micko
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
Posted By Micko
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
Posted By Micko
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
Posted By Micko
Re: Explanation of the most recent Troyan-Google issue

I only have entry for localhost, so my computer is clean, I suppose.
Thank you for your help.
Forum: Techies' Lounge Dec 26th, 2007
Replies: 5
Views: 407
Posted By Micko
Explanation of the most recent Troyan-Google issue

Gereetings everybody,
I'm reading this article:
http://www.daniweb.com/blogs/entry1911.html
I must admit I cannot understand how this is possible? Is this problem affects only users computers or...
Forum: Windows NT / 2000 / XP / 2003 Jun 13th, 2007
Replies: 1
Views: 1,293
Posted By Micko
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
Posted By Micko
Re: 2D array allocation problem

Yes, I see now, what a stupid mistake.

Thanks Narue
Forum: C Jun 6th, 2007
Replies: 4
Views: 2,386
Posted By Micko
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
Posted By Micko
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
Posted By Micko
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
Posted By Micko
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
Posted By Micko
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
Posted By Micko
Problem installing Intell chipset drivers on P4 board

Hello guys,
I have formated hard drive at my neighbour's computer. It's relatively new computer with Pentium 4 processor and intel motherboard. Installing windows Xp passed all right, but there was a...
Forum: C++ Oct 10th, 2006
Replies: 10
Views: 5,175
Posted By Micko
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
Posted By Micko
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
Posted By Micko
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
Posted By Micko
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
Posted By Micko
Re: Serial port communication using C++

Please, can you post you results and conclusion?
Did you manage to see voltage pattern for 'a'?
Forum: C Sep 27th, 2006
Replies: 1
Views: 532
Posted By Micko
Re: do U know??

Of course you can.
www.google.com is your friend...
Forum: C Sep 27th, 2006
Replies: 1
Views: 1,046
Posted By Micko
Re: help me in knowing about sorting techniques

This (http://www.eternallyconfuzzled.com/tuts/sorting.html) is definitive guide to major sorting algorithms:
Forum: C++ Sep 22nd, 2006
Replies: 10
Views: 2,056
Posted By Micko
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
Posted By Micko
Re: what is the difference between (ptarray[]) AND &(ptarray[i]) in below example

I assume your compiler is rather old.
Look at this code (modified loop)

for(int i=0;i<5;i++)
out<<&(ptarray[i])<<"\t"<<ptarray[i]<<endl; // (10)


And this is my output:

0x22ff30 0x22ff58
Forum: C++ Sep 21st, 2006
Replies: 10
Views: 2,056
Posted By Micko
Re: Finding the union of two strings

You should also look at this (http://cboard.cprogramming.com/showthread.php?p=592354#post592354) ;)
Forum: C++ Sep 20th, 2006
Replies: 4
Views: 803
Posted By Micko
Re: what is the difference between (ptarray[]) AND &(ptarray[i]) in below example

You defined an array of pointers to int named ptarray. Array's elements are pointers. So ptarray[i] represent array element which is actually address of some variable elswhere. For example, if...
Forum: C++ Sep 19th, 2006
Replies: 6
Views: 846
Posted By Micko
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
Posted By Micko
Re: Help with derived class and arithmetic in C++

Okay,
first when you write header file, you want to make protection from including this file more than once (inclusion guard). This is usually done like this:

#ifndef FILE_NAME_H
#define...
Forum: C++ Sep 13th, 2006
Replies: 4
Views: 1,050
Posted By Micko
Re: need help in overloading function w/ in the class.

Exactly!
I'm not facing any problems!
Forum: C++ Sep 12th, 2006
Replies: 6
Views: 1,165
Posted By Micko
Re: having touble can anyone help

This is really a school example of how post shouldn't look like!
Forum: C++ Sep 12th, 2006
Replies: 4
Views: 1,050
Posted By Micko
Re: need help in overloading function w/ in the class.

// Operator overloaded using a member functionComplex
Complex Complex::operator+( Complex &other )
{
return Complex( re + other.re, im + other.im );
}


I hope this helps...
Forum: Python Sep 6th, 2006
Replies: 13
Views: 2,609
Posted By Micko
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
Posted By Micko
Re: How to implement multi-dimensional arrays in Python??

You can define matrix using list:

matrix = [[1,2,3],[4,5,6],[7,8,9]]

print matrix[0][1]



As for multiplication program and Pascal's triangle, you'll need to show some effort. Matrix is not needed...
Forum: Python Sep 4th, 2006
Replies: 3
Views: 798
Posted By Micko
Re: Trying to save the info in the student library.

Try to modify your save to file function.
Here's what I would do:

def save_students(filename,students):
out_file = open(filename, "w")
for x in students.keys():
...
Forum: C Sep 3rd, 2006
Replies: 5
Views: 968
Posted By Micko
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
Posted By Micko
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
Posted By Micko
Re: Non-programmer tutorial, stuck at list exercise

Well, you have defined function get_questions() not to take any arguments, but in lines:

while current < len(get_questions(index)):

and

print current,". ",get_questions(current)

you're passing...
Forum: Storage Aug 25th, 2006
Replies: 7
Views: 9,696
Posted By Micko
Re: determine hard drive serial number

Hehhe, not if that is sealed with special connection that will broke and warranty void...
Showing results 1 to 40 of 147

 
All times are GMT -4. The time now is 3:36 am.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC