How do you make a QL emulator?

Discussion and advice about emulating the QL on other machines.
User avatar
NormanDunbar
Forum Moderator
Posts: 2251
Joined: Tue Dec 14, 2010 9:04 am
Location: Leeds, West Yorkshire, UK
Contact:

Re: How do you make a QL emulator?

Post by NormanDunbar »

Hi Steve,
stevepoole wrote:We have decided that JavaScript is such a convenient language for cross-platform use, that we will not give up on it yet !
This is the joy of personal choice, your choices are different, probably, to everyone else's. I'm not asking you to give up on JavaScript, as I've said always, you pick the best language for the job, that you are confident with. (That's "you" in the general term, not you specifically! ;) )
stevepoole wrote:If we can work around the recent browser limitations, I shall report back.
I don't think the language developers will have shot themselves in their own feet !
It wouldn't be the first time that developers have done that. At least with C++ you can instantiate numerous "feet" objects, and shoot yourself in every one of them! :D :D :D

Cheers,
Norm.


Why do they put lightning conductors on churches?
Author of Arduino Software Internals
Author of Arduino Interrupts

No longer on Twitter, find me on https://mastodon.scot/@NormanDunbar.
User avatar
NormanDunbar
Forum Moderator
Posts: 2251
Joined: Tue Dec 14, 2010 9:04 am
Location: Leeds, West Yorkshire, UK
Contact:

Re: How do you make a QL emulator?

Post by NormanDunbar »

NormanDunbar wrote:At least with C++ you can instantiate numerous "feet" objects, and shoot yourself in every one of them! :D :D :D
Hmm, I thought I was being original with that little joke, it turns out I wasn't. :( I took the liberty of Googling "programming languages "shooting yourself in the foot" and got a number of hits, then best one being http://www.toodarkpark.org/computers/hu ... -foot.html.

Enjoy.

Cheers,
Norm.


Why do they put lightning conductors on churches?
Author of Arduino Software Internals
Author of Arduino Interrupts

No longer on Twitter, find me on https://mastodon.scot/@NormanDunbar.
User avatar
dilwyn
Mr QL
Posts: 2753
Joined: Wed Dec 01, 2010 10:39 pm

Re: How do you make a QL emulator?

Post by dilwyn »

NormanDunbar wrote:
NormanDunbar wrote:At least with C++ you can instantiate numerous "feet" objects, and shoot yourself in every one of them! :D :D :D
Hmm, I thought I was being original with that little joke, it turns out I wasn't. :( I took the liberty of Googling "programming languages "shooting yourself in the foot" and got a number of hits, then best one being http://www.toodarkpark.org/computers/hu ... -foot.html.

Enjoy.

Cheers,
Norm.
Enjoy? I nearly fell off my chair laughing.

And shot everything but my foot in the process :lol:


User avatar
NormanDunbar
Forum Moderator
Posts: 2251
Joined: Tue Dec 14, 2010 9:04 am
Location: Leeds, West Yorkshire, UK
Contact:

Re: How do you make a QL emulator?

Post by NormanDunbar »

Hi Dilwyn,

the "unix" one was the best one for me. It's subtle, very subtle, and I've done it myself!

Cheers,
Norm.


Why do they put lightning conductors on churches?
Author of Arduino Software Internals
Author of Arduino Interrupts

No longer on Twitter, find me on https://mastodon.scot/@NormanDunbar.
User avatar
dilwyn
Mr QL
Posts: 2753
Joined: Wed Dec 01, 2010 10:39 pm

Re: How do you make a QL emulator?

Post by dilwyn »

NormanDunbar wrote:Hi Dilwyn,

the "unix" one was the best one for me. It's subtle, very subtle, and I've done it myself!

Cheers,
Norm.
He he. A bit like tinkering with these IRC commands, modes etc - I feel like I'm managing to shoot between each toe at the moment, missing the foot initially, but gradually shooting the floor out from under me as the bullets create an outline of my foot. That's how I eventually lose my foot...


User avatar
janbredenbeek
Super Gold Card
Posts: 629
Joined: Wed Jan 21, 2015 4:54 pm
Location: Hilversum, The Netherlands

Re: How do you make a QL emulator?

Post by janbredenbeek »

NormanDunbar wrote:Hi Dilwyn,

the "unix" one was the best one for me. It's subtle, very subtle, and I've done it myself!
I once managed to delete all home directories on a unix system when I just wanted to delete hidden files in my home directory.

I entered 'rm .*'. As root :o

Fortunately it was only a training environment...

Jan


User avatar
NormanDunbar
Forum Moderator
Posts: 2251
Joined: Tue Dec 14, 2010 9:04 am
Location: Leeds, West Yorkshire, UK
Contact:

Re: How do you make a QL emulator?

Post by NormanDunbar »

Hi Jan,

in my case it was being told to "delete all those old versions of Oracle that we don't use."

I wrote a script to:

Code: Select all

cd <where ALL oracle homes live>
rm -Rf old_oracle_home_name/ *
After it had taken what I considered "too long" I CTRL-C'd it. Yup, there was a space between '/' and '*' OOPS! I'd deleted a couple of in use Oracle homes as well.

You live and learn.

Cheers,
Norm.


Why do they put lightning conductors on churches?
Author of Arduino Software Internals
Author of Arduino Interrupts

No longer on Twitter, find me on https://mastodon.scot/@NormanDunbar.
User avatar
dilwyn
Mr QL
Posts: 2753
Joined: Wed Dec 01, 2010 10:39 pm

Re: How do you make a QL emulator?

Post by dilwyn »

NormanDunbar wrote:Hi Jan,

in my case it was being told to "delete all those old versions of Oracle that we don't use."

I wrote a script to:

Code: Select all

cd <where ALL oracle homes live>
rm -Rf old_oracle_home_name/ *
After it had taken what I considered "too long" I CTRL-C'd it. Yup, there was a space between '/' and '*' OOPS! I'd deleted a couple of in use Oracle homes as well.

You live and learn.

Cheers,
Norm.
You mean... a bit like using WDDEL (Qubide extensions) instead of WDEL to delete files from my Qubide a few years ago. Didn't spot the typo with double-D. Took a while to restore the backups and I was slightly less than happy :cry:


User avatar
NormanDunbar
Forum Moderator
Posts: 2251
Joined: Tue Dec 14, 2010 9:04 am
Location: Leeds, West Yorkshire, UK
Contact:

Re: How do you make a QL emulator?

Post by NormanDunbar »

At least you had a backup to restore! Maybe even a WinBack backup! ;)

Cheers,
Norm.


Why do they put lightning conductors on churches?
Author of Arduino Software Internals
Author of Arduino Interrupts

No longer on Twitter, find me on https://mastodon.scot/@NormanDunbar.
User avatar
RalfR
Aurora
Posts: 871
Joined: Fri Jun 15, 2018 8:58 pm

Re: How do you make a QL emulator?

Post by RalfR »

NormanDunbar wrote:At least you had a backup to restore! Maybe even a WinBack backup! ;)
:D
Which reminds me of the days of Atari SMSQ/E and its native WIN (MEGAfile 30...). I made a backup with Jonathan Hudson's TAR backup program, spread over 19 disks.

At least I have got a WIN error on the SMSQ partition (not the first one...), so made a new FORMAT and started the backup program, unfortunately, disk 12 genarates an error and so the complete backup was lost, including a 30+ pages T91 doc from my wife. She was "not amused".....
Last edited by RalfR on Fri Feb 28, 2020 2:27 pm, edited 1 time in total.


4E75 7000
Post Reply