[nlug] Re: OT: Liquid Latex

2009-07-15 Thread SKyDog
There used to be a performance arts place on charlotte, near NES that 
had that kinda thing. I think they had a tattoo parlor too. I'd start there.

-T

Jack wrote:
 Where can I find liquid latex in Nashville?  I need a couple of
 gallons.  At a reasonable
 price of course. (in the range of $50/gal or less)

 No, not computer related, but I thought this is a pretty diverse set
 of folks that might
 know!

 TIA

   
  ... Jack
 

 

   


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
NLUG group.
To post to this group, send email to nlug-talk@googlegroups.com
To unsubscribe from this group, send email to 
nlug-talk+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/nlug-talk?hl=en
-~--~~~~--~~--~--~---



[nlug] Re: OT: Liquid Latex

2009-07-15 Thread Jack

I didn't even go down that gutter in my mind! :)

This is needed to make a mold for concrete. ...

 ... Jack



On Wed, Jul 15, 2009 at 12:23 AM, Ken Barberken.bar...@gmail.com wrote:

 On Jul 14, 2009, at 10:59 PM, Jack wrote:

 Where can I find liquid latex in Nashville?  I need a couple of
 gallons.

 I don't know, but how do I get invited to your party?

 No, not computer related, but I thought this is a pretty diverse set
 of folks

 diverse?  Uh, well, yeah but... I didn't realize that we were THAT
 diverse!


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
NLUG group.
To post to this group, send email to nlug-talk@googlegroups.com
To unsubscribe from this group, send email to 
nlug-talk+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/nlug-talk?hl=en
-~--~~~~--~~--~--~---



[nlug] Re: OT: Liquid Latex

2009-07-15 Thread John F. Eldredge
This group can put a wink-wink-nudge-nudge spin on anything.

-- 
John F. Eldredge -- j...@jfeldredge.com
Reserve your right to think, for even to think wrongly is better than not to 
think at all. -- Hypatia of Alexandria

-Original Message-
From: Jack j...@coats.org

Date: Wed, 15 Jul 2009 06:54:21 
To: nlug-talk@googlegroups.com
Subject: [nlug] Re: OT: Liquid Latex



I didn't even go down that gutter in my mind! :)

This is needed to make a mold for concrete. ...

 ... Jack



On Wed, Jul 15, 2009 at 12:23 AM, Ken Barberken.bar...@gmail.com wrote:

 On Jul 14, 2009, at 10:59 PM, Jack wrote:

 Where can I find liquid latex in Nashville?  I need a couple of
 gallons.

 I don't know, but how do I get invited to your party?

 No, not computer related, but I thought this is a pretty diverse set
 of folks

 diverse?  Uh, well, yeah but... I didn't realize that we were THAT
 diverse!




--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
NLUG group.
To post to this group, send email to nlug-talk@googlegroups.com
To unsubscribe from this group, send email to 
nlug-talk+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/nlug-talk?hl=en
-~--~~~~--~~--~--~---



[nlug] Reverse Forwarding SSH and other tricks

2009-07-15 Thread BenTheMeek

I missed out on the first part of the meeting last night (I got lost).
In any case for those interested I post a script I have been using for
a few years. (Not all of it is originally mine, and I have no idea
where I found part of it).
I have two linux boxes, one at (very secure)Work and one at Home. Home
has one port (ssh:22 or 443 if I wanted to go through a M$ web proxy )
forwarded from the router to allow Work to ssh in. The one at Work
runs the below in a crontab every few min, (I already set up ssh
keyless entry between them for my user). It logs in and creates a
reverse tunnel back into my Work network from Home. This allows me to
 ssh -p 2059 myu...@localhost at Home and get into Work through all
the firewalls etc. with out having to use a VPN client. That covers
the -R option shown below. The -D allows me to tunnel my browser
traffic or anything else to a SOCKS 5 proxy through to Home from
Work.  Using the addon foxy-proxy for firefox for instance, I can
tunnel all dns requests and web traffic to localhost:3002  and thus
get around restrictions for browsing at Work. (For instance most linux
websites are labeled hacking and are blocked for users with
surfcontrol). There is some more stuff I didn't include below, like by
using ntlmaps I have been able to tunnel my ssh through port 443
through a M$ proxy as well. I know to many this might be old hat but I
am quite pleased with how well this works and just thought I would
share. Also of note you would want to take precautions and make Home
very secure as well. For instance I use tcp.wrappers, /etc/
hosts.allow  and only allow ssh from my work IP address. As to
forwarding X traffic, I don't know if it was mentioned last night(my
lateness sorry) except at the pizza table, but freeNX or NXClient is
by far the fastest way to do such a thing, and it does use ssh as
well.

-BenTheMeek
http://www.google.com/profiles/benthemeek



Reverse_and_Socks.sh

#!/bin/sh

# $REMOTE_HOST is the name of the remote system
REMOTE_HOST=home.dyndns.org

#user
myuser=mylogin

# $REMOTE_PORT is the remote port number that will be used to tunnel
# back to this system
REMOTE_PORT=2059
DYNAMIC_PORT=3002

# $COMMAND is the command used to create the reverse ssh tunnel
COMMAND=ssh -N -D $DYNAMIC_PORT -R $REMOTE_PORT:localhost:22 $myuser@
$REMOTE_HOST

# Is the tunnel up? Perform two tests:

# 1. Check for relevant process ($COMMAND)
pgrep -f -x $COMMAND || $COMMAND

# 2. Test tunnel by looking at netstat output on $REMOTE_HOST
ssh $myu...@$remote_host netstat -an | egrep tcp.*:
$REMOTE_PORT.*LISTEN \
/dev/null 21
if [ $? -ne 0 ] ; then
   pkill -f -x $COMMAND
   $COMMAND
fi


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
NLUG group.
To post to this group, send email to nlug-talk@googlegroups.com
To unsubscribe from this group, send email to 
nlug-talk+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/nlug-talk?hl=en
-~--~~~~--~~--~--~---



[nlug] Re: Reverse Forwarding SSH and other tricks

2009-07-15 Thread Kent Perrier
Very nice!  I hope you don't get fired for it!

Such circumvention of security policies and infrastructure could land you in
some very hot water!

Kent

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
NLUG group.
To post to this group, send email to nlug-talk@googlegroups.com
To unsubscribe from this group, send email to 
nlug-talk+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/nlug-talk?hl=en
-~--~~~~--~~--~--~---



[nlug] Re: Reverse Forwarding SSH and other tricks

2009-07-15 Thread BenTheMeek

Ah but who said I still run it ;) My told my supervisor when I first
did it as I felt it would be unethical to not do so. We have since got
a VPN going because at the time the only way in was dial up (YUCK!)
and I no longer have a land line in my house...

On Jul 15, 9:24 am, Kent Perrier kent.perr...@gmail.com wrote:
 Very nice!  I hope you don't get fired for it!

 Such circumvention of security policies and infrastructure could land you in
 some very hot water!

 Kent
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
NLUG group.
To post to this group, send email to nlug-talk@googlegroups.com
To unsubscribe from this group, send email to 
nlug-talk+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/nlug-talk?hl=en
-~--~~~~--~~--~--~---



[nlug] Re: OT: Liquid Latex

2009-07-15 Thread Greg Jones


Sorry, didn't see this one until after I replied. Hmm, a couple of gallons and 
mold for concrete, you must be making something big ( minds just went into the 
gutter again :) ). Yes, Plaza Art has exactly what you need. When I read this 
my heart skipped a beat. Mold latex is usually brushed on in layers, but it can 
be poured. It takes the latex about 4 to 5 hours per coat to dry or if poured 
it seems to take forever to dry. I just did a latex mold ( it was a small slip 
mold and I didn't want to waste silicone ) and had to keep a log of datetime 
and direction of stroke. It took about a week to complete. The castings were 
great though! Something that would require two gallons of latex, man, that is 
going to take a while. It may be more cost effective to do a matrix mold and 
use silicone or do what I am doing and use a brushed silicone and plaster 
mother mold. These are just my thoughts with minimal knowledge of the project. 
I have several molds to make and
 the silicone seems to be a better approach if you find the right stuff for the 
material. Good luck! :)

Greg




- Original Message 
From: Jack j...@coats.org
To: nlug-talk@googlegroups.com
Sent: Wednesday, July 15, 2009 6:54:21 AM
Subject: [nlug] Re: OT: Liquid Latex


I didn't even go down that gutter in my mind! :)

This is needed to make a mold for concrete. ...

 ... Jack



On Wed, Jul 15, 2009 at 12:23 AM, Ken Barberken.bar...@gmail.com wrote:

 On Jul 14, 2009, at 10:59 PM, Jack wrote:

 Where can I find liquid latex in Nashville?  I need a couple of
 gallons.

 I don't know, but how do I get invited to your party?

 No, not computer related, but I thought this is a pretty diverse set
 of folks

 diverse?  Uh, well, yeah but... I didn't realize that we were THAT
 diverse!




  

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
NLUG group.
To post to this group, send email to nlug-talk@googlegroups.com
To unsubscribe from this group, send email to 
nlug-talk+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/nlug-talk?hl=en
-~--~~~~--~~--~--~---



[nlug] Re: OT: Liquid Latex

2009-07-15 Thread Chris McQuistion



Sent from my iPhone

On Jul 15, 2009, at 9:54 AM, Greg Jones ci...@yahoo.com wrote:



 My first question is what kind of liquid latex? Plaza Art carries a  
 variety of liquid latex for molding and casting and they do have it  
 in a gallon (I think it was $45ish a gallon). Those are from  
 Sculpture House and are vulcanized (which has some cure  
 inhibitions). Michael's carries a mold latex (from Casting Craft)  
 that is not vulcanized, but has some minor shrinkage and is only in  
 a quart IIRC. Depending on what you are doing you may need to order  
 it. This is the time of year to do it since temperatures are high. I  
 hope this helps.

 Greg




 - Original Message 
 From: Jack j...@coats.org
 To: NLUG nlug-talk@googlegroups.com
 Sent: Tuesday, July 14, 2009 10:59:42 PM
 Subject: [nlug] OT: Liquid Latex


 Where can I find liquid latex in Nashville?  I need a couple of
 gallons.  At a reasonable
 price of course. (in the range of $50/gal or less)

 No, not computer related, but I thought this is a pretty diverse set
 of folks that might
 know!

 TIA

  ... Jack





 

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
NLUG group.
To post to this group, send email to nlug-talk@googlegroups.com
To unsubscribe from this group, send email to 
nlug-talk+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/nlug-talk?hl=en
-~--~~~~--~~--~--~---



[nlug] Re: OT: Liquid Latex

2009-07-15 Thread Jack

It looks like Plaza Arts is the place to go in Nashville for moldable
liquid latex.
Thanks to all who responded!
 ... Jack



On Tue, Jul 14, 2009 at 10:59 PM, Jackj...@coats.org wrote:
 Where can I find liquid latex in Nashville?  I need a couple of
 gallons.  At a reasonable
 price of course. (in the range of $50/gal or less)

 No, not computer related, but I thought this is a pretty diverse set
 of folks that might
 know!

 TIA

 ... Jack


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
NLUG group.
To post to this group, send email to nlug-talk@googlegroups.com
To unsubscribe from this group, send email to 
nlug-talk+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/nlug-talk?hl=en
-~--~~~~--~~--~--~---