Displaying 3 results from an estimated 3 matches for "zathra".
Did you mean:
zahra
1999 Dec 30
3
TCP port forwarding troubles?
Has anyone heavily exercised the TCP connection forwarding features in
openssh?
I use this feature quite extensively for secure web surfing. I run
a ssh command like this:
ssh -c blowfish -L3128:127.0.0.1:3128 squidmachine
Then I set up Netscape on my local machine to use 127.0.0.1:3128 as a
proxy server. Needless to say, this exercises the TCP connection
forwarding feature quite heavily. This
2009 Jul 15
4
The Talking Moose
...ng and closing programs or inserting disks. (The moose's behavior was highly customizable.) He's not for everybody, but I miss the guy.
Lo and behold, the project was resurrected for the modern Windows era:
http://www.halls.md/moose/index.htm
(There's also a Mac version at http://www.zathras.de/angelweb/moose.htm.)
It's a tiny, simple desktop Windows applet that seems to confine itself entirely to a nice and neat single directory (that is, there's no messy installation), but, much to my dismay, I cannot seem to get it to run in Wine, nor can I diagnose the problem. Can anyone...
2008 Jan 05
0
Assembly on Mac OS needs to be relocatable
...slidable image
Mach-O shared libraries must be relocatable (-mdynamic-no-pic is a GCC
flag for Darwin that makes it generate code where only the external
references are relocatable, that's why the error message mentions that.)
I don't really know assembly, but based on <http://www.zathras.de/angelweb/blog-intel-assembler-on-mac-os-x.htm
>, I tried the following fix:
In c1_loop:
%ifdef FLAC__PUBLIC_NEEDS_UNDERSCORE
+%ifdef OBJ_FORMAT_macho
+ call .epilog
+.myAnchorPoint:
+ lea edi, [ebx + .myAnchorPoint + _FLAC__crc16_table]
+%else
mov edi, _FLAC__crc16_table
+%endif
%...