The collected works of mnorton

hi,

I didn't see Octave in the nekoware directory. Is the current build still unstable on Irix?

thanks
hi,
I installed inkscape on my Indigo 2. I see these errors.

Code: Select all

tardis mnorton-82% inkscape
3471:inkscape: rld: Error: unresolvable symbol in inkscape: PL_stack_base
3471:inkscape: rld: Error: unresolvable symbol in inkscape: PL_stack_sp
3471:inkscape: rld: Error: unresolvable symbol in inkscape: PL_markstack_ptr
3471:inkscape: rld: Error: unresolvable symbol in inkscape: PL_sv_yes
3471:inkscape: rld: Fatal Error: this executable has unresolvable symbols
tardis mnorton-83%


Do I need to install other packages or did I need more arguments to fire it up?

thanks.
Image x1 Image x2
I downloaded nekoware bluefish. Are there plugins for <nekoware> bluefish for Tcl and PHP?

thanks.
Image x1 Image x2
Great I fumble fingered my own thread.

Code: Select all

I downloaded nekoware bluefish. Are there plugins for <nekoware> bluefish for Tcl and PHP?

thanks.


Anyhow. Still looking to get Inkscape up and running on my Indigo.

later,,,
Image x1 Image x2
I have a weird dilemma, where my PowerMac G5 can remotely mount drives on my 2 imacs running 10.6.8.
But the imacs can't mount the G5 running 10.4.11. The two imacs can see the G5 from the finder and try to connect to the server. Only it fails every time.

Any ideas?

_________________
Image x1 Image x2
This is using afp:// the AFS.

Nothing can connect to the G5. It broadcasts on the network it is available.
Sharing->Personal File Sharing IS enabled.

thanks.

_________________
Image x1 Image x2
Those are nice little unix machines. I have two PowerMac G5 that are still in service.
Hulu works on them. But not Netflix.
Javascript works great and so does Adobe CS3 for web development.
Final Cut Pro old school works.

Makes a great garage machine. We all need Unix in our garages!

_________________
Image x1 Image x2
hi,

My OS X 10.5.8 is still chugging along just great. The only things I really can't do "from my perspective" are NetFlix (Intel M$ Silverlining) and Web GL (which I don't know why it isn't enabled in OS X 10.5.8 Safari).

So if I dive in to Ubuntu.
1. Can I watch Hulu? Number one criteria.
2. Will flash apps and games work (snesbox.com)? GNASH???
3. Will WebGL work in the browser provide? Number 2 Criteria
There is a demo link here to tell you if the browser supports WebGL
http://learningwebgl.com/lessons/lesson01/index.html
4. Will my 7800GT card work properly?

What's your experience with Ubuntu on the G5?

thank you

_________________
Image x1 Image x2
I have Hulu running under OS X 10.5.8.
Just curious if it worked with Ubuntu.

thanks

_________________
Image x1 Image x2
hi,

I setup NFS on my PowerMac G5 Dual 2.3GHz machine. It works great and I am able to mount my volume,
/Users/mnorton

on my windows 7 PC.

However, I can't access the subdirectories in /Users/mnorton.

Do I need to create links for each subdirectory in my /etc/exports file?

The goal is to NFS mount my volume /Users/mnorton and have complete access in my INTRANET to all my subdirectories.

Also, my chicken of the vnc can no longer connect to this machine while the nfs is running. Port conflict??

What say you?

Mike
Image x1 Image x2
Here is my /etc/exports

Power-Mac-G5-2:~ mnorton$ more /etc/exports
/Users/mnorton -mapall=mnorton -network 10.0.0.0 -mask 255.255.255.0

Also, something of interest. I couldn't NFS mount my itunes directory.

Code: Select all

/Users/mnorton -mapall=mnorton -network 10.0.0.0 -mask 255.255.255.0
/Users/mnorton/Music -mapall=mnorton -network 10.0.0.0 -mask 255.255.255.0


I wasn't granted access from the remote machine to enter the ~/Music directory.

Mike
Image x1 Image x2
I have a question regarding 6502 machine language. It's about the memory addressing.

Example:

0600: a9 01 8d 00 02 a9 05 8d 01 02 a9 08 8d 02 02

Address Hexdump Dissassembly
-------------------------------
$0600 a9 01 LDA #$01
$0602 8d 00 02 STA $0200
$0605 a9 05 LDA #$05
$0607 8d 01 02 STA $0201
$060a a9 08 LDA #$08
$060c 8d 02 02 STA $0202

My question is:


Is the address $0600 in little endian notation?
Is this page memory 06 -> 6 * 256 = 1536 decimal + offset 0 = 1536?
And $0602 is at 0x06 x 0x100 = page n + offset 2 = 1538 d

thanks

Mike
Image x1 Image x2