Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
124 user(s) are online (92 user(s) are browsing Forums)

Members: 0
Guests: 124

more...

Headlines

Forum Index


Board index » All Posts (yescop)




Re: list of software on sam440 and amigaOS 4.1
Just popping in
Just popping in


@Antique

Chinese ?
Well.
I have just read the list and I note that your program is there !!

You are famous in spain !!!

YesCop

Since a lot of months without an amiga to love, I was lost.
Now I feel happiness again with a Sam Flex 800 .
Go to top


Re: bits functions (set, unset, test)
Just popping in
Just popping in


@freddix

Impressive your work !!! Go on !!

A+,
Yescop

Since a lot of months without an amiga to love, I was lost.
Now I feel happiness again with a Sam Flex 800 .
Go to top


Re: bits functions (set, unset, test)
Just popping in
Just popping in


@freddix

Hi Amidark,

I am happy to see you that you are still working after the Alchimee.

As I told you there, I will be glad to help and I am going to do it.
Your functions work !!!

Best regards,
A+,
Yescop/Jes?s

Since a lot of months without an amiga to love, I was lost.
Now I feel happiness again with a Sam Flex 800 .
Go to top


Re: Printing USB on 0S4.1, Pagestream, AmiGS...
Just popping in
Just popping in


@Antique
HI,

thanks four message.
It is my turn to be...bad :(

Have you droped the evolution of ctorrent ?
...
Bad boy, now I have retrieved my OS4, ctorrent would be nice.
If you need encouragements or motivation (it is not always easy to have it, I know it), I am here :) :) :) :) :) :beer:

Since a lot of months without an amiga to love, I was lost.
Now I feel happiness again with a Sam Flex 800 .
Go to top


Re: Printing USB on 0S4.1, Pagestream, AmiGS...
Just popping in
Just popping in


Hi @Chris

Thanks for your answer. It worked.
I tried to rename the dosdriver device to usbprt. It could be mounted but was not useable after (USBPRT unknown...).
I decided to choose the PAR name and it worked very well.

I could have imagined this solution a few months ago, I lost the amiga spirit a bit since my A1 died.

Best regards,
Jes?s

Since a lot of months without an amiga to love, I was lost.
Now I feel happiness again with a Sam Flex 800 .
Go to top


Printing USB on 0S4.1, Pagestream, AmiGS...
Just popping in
Just popping in


Hi everybody,

I created a new topic because my question concerns two recent topics : USB printing on OS4 and Pagestream on OS 4.1.

Let's begin by my remarks to these topics' authors.

Yes you can use on a daily basis Pagestream 68k. Mine is 4.0.9 and runs very well. A native PGS would be fantastic though.

I have a Magicolor 2550 from Konica Minolta. It is a color laser printer and woaah it is better than my old epson stylus 600.
I used my laser printer on my died A1 with a parallel cable, postscript driver and par: device. No problem.

I have just connected it on my Sam FLex 800.
I must tell that I was very surprised. It has been recognised and worked very well in text mode and graphics mode.

BUT I have a question about USB printers and OS4 device.

I configured my printer as a postscript one and choose usbprinter.device.
But if it exists, whqt is the "assign name" of printing as PAR: for parallel device.
Without it, the only way for me to print from PGS is to redirect to a ps file.
To print from AMiGS, I choosed workench printer in place of postscript printer (better for me).

Voil?, I hope that my question is not too complicated.

Go to top


Re: Installing JXFS
Just popping in
Just popping in


@Deniil

I hope that someone or better the author of JFXS will answer you because I had the same errors with this filesystem and with sfs 02 too.
Even with the recovery tools, nothing has been done to correct these errors except reformat.
That is not a solution when you have no more place to backup all your data...

Hope we will find a solution.

YesCop

Go to top


Re: dnh3.3.2
Just popping in
Just popping in


@Antique

For spoofing, you have the -P option.
The most difficult will be to retrieve some valid peer-ids. I had some a long time ago when I used an older version of ctorrent.
By googling, I think we could find them.

And...
Do you find a way to implement writing and reading big files (>4 Gb) ?

Go to top


Re: Does anyone want to help develop Amiga games?
Just popping in
Just popping in


@Antique

No baby, you ar not useless, don't cry and think about ctorrent...

Cheers,

Go to top


Re: Celestia crash
Just popping in
Just popping in


@Hans

My config is
A1 G4 800 Mhz, Radeon 9200 SE 128 Mo Soundblaster live

Go to top


Re: C functions Left/Right for string usage
Just popping in
Just popping in


@freddix

A little test on the nright value (like nLeft in the first function) is necessary if you don't want to have crash.

As rigo wrote, you must use 2 equals.
For comparison, you can write a comparison function which compares each char one by one until it is false or it the end of the word.
I will give you one way to do that.
I code this very rapidly so don't compile that directly.
I don't like C code, I prefer C++ so verify the initializations and bool type and min function.


bool compare(firstword, secondword, sz)
char *firstword, *secondword;
int sz;

s1=strlen(firstword);
s2=strlen(secondword);
int i;
bool continue=true;

if ((s1<>s2) || (sz <0)) return false;
for (i=0;(i<min(s1,sz)) && continue;i++)
if (firstword[i]!=secondword[i]) continue=false;

return continue;



Hope that can help you.

Go to top


Re: Celestia crash
Just popping in
Just popping in


@BillE

Idem for me.

Go to top


Re: Wanted Ctorrent Betatester[V2.00 out]
Just popping in
Just popping in


@colinw

As Antique may be busy to write some code (:)), I will answer some questions.

About DSI error, it is already resolved in the last version.

About numbers of seeders and leechers, it is not an Antique's error. It is normal, that come from the way the P2P algorithm works.
When you connect, you are affected to a group of users, so the numbers can change.

For the version number, may be interesting. If you want to know the version, you can also launch ctorrent and read the title of the window.

I agree with you about up and doownload speeds, they seem not to be reliable even if you set the speeds using the tooltypes.

@Antique

Keep an eye on ctorrent because I'm waiting...

Take care

Go to top


Re: C / Random Value
Just popping in
Just popping in


@freddix

Hi,

reading the C manual, you can see that rand returns a pseudo number between 0 and RAND_MAX.

So to have a number between 0 and 640, you can do this :

A = rand();

A = A- 640 * int(A/640) ; // A = A modulo 640.

But I suggest you to use other algorithm like md5.
You will have a better random number generator.

Hope that this can help you.

Go to top


Re: 7z plugin
Just popping in
Just popping in


@Elwood

It is the same error.

Go to top


Re: 7z plugin
Just popping in
Just popping in


@Chris

I have 1 Gb of ram and 1 G of Swap.

Even if I save some memory using no startup or anything else, I can't unpack the 7z archive.

Go to top


Re: 7z plugin
Just popping in
Just popping in


@salass00

Yes I tried it.
It didn't work. I have the error "format not recognised" or something like that.

Go to top


7z plugin
Just popping in
Just popping in


Hi Chris,

I have a 300 Mo 7z file which contains a 1.6 G iso file.

Whatever I use your pugin or 7zdec, I have the same error : not enough memory.

I have a A1, 1Gb and use JFXS to decompress on.

Have you an hint to resolve this ?

Thanks


PS: this a copy of a previous message posted in news.

Go to top


Re: Wanted Ctorrent Betatester[v2.00 out]
Just popping in
Just popping in


@Antique

Thanks for this update. Your gui is better.

No more DSI error, good.
I have an error with some torrent file those with files > 2Gb.
Ctorrent tells that they are not accurate.
With snoopdos, I see that seems to be an error with the seek command.

Did you use 64 bits function ?

[EDIT]

New remark.
For one torrent, one file is created with bad size.
The filesize is only 60 Kb.


Edited by yescop on 2009/2/12 9:42:37
Go to top


Re: OWB 3.6
Just popping in
Just popping in


@Joerg

Thanks for this update.
OWB is VERY VERY fast compared to the previous version.

The best proof is that I post my first thanks using it.

What do you change to obtain that result ?

Go to top



TopTop
« 1 ... 3 4 5 (6) 7 8 9 »




Powered by XOOPS 2.0 © 2001-2023 The XOOPS Project