Search found 169 matches

by Brana
Thu Jul 11, 2013 7:15 am
Forum: Emulators
Topic: BAT file to run Euphoric on any current operating system!
Replies: 2
Views: 8537

BAT file to run Euphoric on any current operating system!

BAT file to run Euphoric on any current platform or an operating system: This is my BAT file that enables me to run my Euphoric (under DosBox) with a single mouse (double) click, executed from my USB memory drive on almost any host operating system or a computer... (For Win98 is not required, as Eup...
by Brana
Tue Jul 09, 2013 12:00 pm
Forum: General Discussion
Topic: I would like to sell my Oric Atmos (genuine Oric NOVA)
Replies: 10
Views: 14285

Re: I would like to sell my Oric Atmos (genuine Oric NOVA)

Absolutely identical to regular Oric Atmos :) Edit: And just now - it's power supply unit (that was bugging me for some time) is operational and working again! :) Here is a short video that I have just uploaded on YouTube showing my Oric Nova in working condition :) http://www.youtube.com/watch?v=Cb...
by Brana
Sun Jul 07, 2013 2:57 am
Forum: General Discussion
Topic: Is what we do important?
Replies: 13
Views: 16652

Re: Is what we do important?

You couldn't believe for what I tend to use the Euphoric for... Besides the usage in my everyday life (like for tracking my expenses, keeping my phone-numbers safe, writing my diary, and so on) - a friend of mine (about two months ago) developed a new (much easier) mathematical method for calculatin...
by Brana
Sun Jul 07, 2013 2:45 am
Forum: General Discussion
Topic: why does defence force suck
Replies: 7
Views: 10991

Re: why does defence force suck

Well, being a (BASIC) programmer for Oric Atmos, I always found the support I needed on this forum. I don't understand why you do not like it?
by Brana
Sun Jul 07, 2013 2:29 am
Forum: General Discussion
Topic: I would like to sell my Oric Atmos (genuine Oric NOVA)
Replies: 10
Views: 14285

Re: I would like to sell my Oric Atmos (genuine Oric NOVA)

Here they are :) It's old Oric Nova (Slovenian Atmos) with standard (English) Oric Extended Basic. http://www.dodaj.rs/f/3R/8b/jFq2eCl/dsc09625.jpg I used to put stickers at the bottom of the keys on the keyboard (like the ASCII values for some keys) before I learned them "by hard"), they ...
by Brana
Sat Jul 06, 2013 3:21 am
Forum: Painting tricks
Topic: Any easy way to fill certain (closed) area of HIRES screen?
Replies: 15
Views: 41915

Any easy way to fill certain (closed) area of HIRES screen?

Any easy way to fill certain (closed) area of the HIRES screen? I'm wondering is there any simple (in BASIC?) solution, for this is the problem that's been bugging me for a couple of years now (!) If I do something simple as drawing a circle, square, or an ellipse in HIRES in Oric Atmos, then someti...
by Brana
Fri Jul 05, 2013 5:37 am
Forum: General Discussion
Topic: Kbeep sound for PC computers?
Replies: 3
Views: 6683

Re: Kbeep sound for PC computers?

THANK YOUUUUU!!!! :D :D :D
by Brana
Thu Jul 04, 2013 7:40 pm
Forum: General Discussion
Topic: Kbeep sound for PC computers?
Replies: 3
Views: 6683

Kbeep sound for PC computers?

Kbeep sound for PC computers? I wonder is there any (plain and simple) utility program that could just "play" the same (or similar) "kbeep" sound (that Oric Atmos used to play whenever any keyboard key was pressed, unless it was disabled by Ctrl+F) for current PC computers runnin...
by Brana
Wed May 01, 2013 2:19 am
Forum: BASIC programming
Topic: Any faster way of doing PRINT FRE(0) ?
Replies: 3
Views: 11873

Re: Any faster way of doing PRINT FRE(0) ?

The "Test.tap" is only the plain example; I currently have over 700 TAP (or "data") files that are loaded dynamically: this means when ever a certain type of information is required for processing, it will be found in some of those "data" (tap) files. But to speed up th...
by Brana
Sat Apr 27, 2013 12:50 am
Forum: BASIC programming
Topic: Any faster way of doing PRINT FRE(0) ?
Replies: 3
Views: 11873

Any faster way of doing PRINT FRE(0) ?

Any faster way of doing PRINT FRE(0) ? In Basic, if you do something like this 10 DIM WRD$(1000) 20 RECALL WRD$,"TEXT.TAP" 30 PRINT FREE(0) You will wait at least 20 or 30 seconds until you get the amount of remaining free bytes. Sometimes my programs need to know the amount of available (...
by Brana
Wed Sep 19, 2012 3:01 pm
Forum: General Discussion
Topic: I would like to sell my Oric Atmos (genuine Oric NOVA)
Replies: 10
Views: 14285

Re: I would like to sell my Oric Atmos (genuine Oric NOVA)

Sorry for the delay;
I will upload the pictures of it soon!
by Brana
Mon Sep 17, 2012 11:25 am
Forum: General Discussion
Topic: I would like to sell my Oric Atmos (genuine Oric NOVA)
Replies: 10
Views: 14285

I would like to sell my Oric Atmos (genuine Oric NOVA)

Hello, I hope I'm posting in the correct part of Your forum; I am thinking of selling my genuine "Oric NOVA" (Atmos) computer... The main reason for my idea of selling it is the fact that I haven't used it for ages... (What ever I need now regarding the Oric - I just use the emulator) The ...
by Brana
Wed Apr 18, 2012 3:56 am
Forum: BASIC programming
Topic: RND function always gives the same sequence of numbers...
Replies: 10
Views: 21495

Re: RND function always gives the same sequence of numbers..

Yes, and they are: PEEK (869) = date (example 31) PEEK (868) = month (example 10) PEEK (870) = Year (example 12 for 2012) PEEK (865) = Hour, and PEEK (866) = minute But, how would I integrate it in to the RND function? Would something like this: 4 S = INT (1+RND(PEEK(866))*1000) solve the problem?
by Brana
Mon Apr 16, 2012 11:46 pm
Forum: BASIC programming
Topic: RND function always gives the same sequence of numbers...
Replies: 10
Views: 21495

Re: RND function always gives the same sequence of numbers..

Remember my short program from the beginning of this post? 3 FOR A = 1 TO 10 4 S = INT (1+RND(1)*1000) 5 PRINT S 6 NEXT A If I add the following line at the beginning of the program: 2 INPUT "Please input some random word here";WRD$ so the program looks like this: 2 INPUT "Please inpu...
by Brana
Mon Apr 16, 2012 12:53 am
Forum: BASIC programming
Topic: RND function always gives the same sequence of numbers...
Replies: 10
Views: 21495

RND function always gives the same sequence of numbers...

If I launch the Euphoric Emulator and do the simple: PRINT INT(1+RND(1)*1000) I will always get the different number... Hovewer, If I make a simple BASIC program as this one: 3 FOR A = 1 TO 10 4 S = INT (1+RND(1)*1000) 5 PRINT S 6 NEXT A and save it as a TAP file, then If I doubleclick on that file ...