[prev in list] [next in list] [prev in thread] [next in thread] 

List:       slashcode-general
Subject:    [Slashcode-general] Re: (More info) Can't connect to mysql user slash
From:       Harold Martin <cocoadev () earthlink ! net>
Date:       2003-11-03 22:04:40
[Download RAW message or body]

Password.pm
my $virtual1 = {
              'slash' => {
                           'database' => 'slash',
                           'password' => '.....',
                           'attributes' => {},
                           'port' => '',
                           'username' => 'slash',
                           'host' => 'gentoo',
                           'driver' => 'mysql',
                           'connect' =>
'DBI:mysql:database=slash;host=gentoo'
                         }
            };



> select User, Host,password from user WHERE User='slash';
+-------+--------+------------------+
> User  | Host   | password        |
+-------+--------+------------------+
> slash | gentoo | ................ |
+-------+--------+------------------+


Thanks,
Harold

On Mon, 2003-11-03 at 15:50, Patrick Galbraith wrote:
> Harold,
> 
> Yes, those are normal records. They're for connecting locally. I would 
> however make sure that the password value for those is set.
> 
> What do you have in Password.pm currently? It seems to me that the error 
> is that slash is still using 'localhost' as the host value.
> 
> Patrick
> 
> Harold Martin wrote:
> > John: running 'mysqladmin reload' didn't change anything. I think
> > flushing the privileges is all that should need to be done.
> > I can ping, nmap (to check if the mysql port is open), etc. gentoo.
> > I'm able to do login fine if I use root, so I don't think it's a host
> > issue.
> > On the permissions table I sent you, is it normal for there to be many
> > empty user fields?
> > 
> > Thanks,
> > Harold
> > 
> > 
> > On Mon, 2003-11-03 at 13:40, Patrick Galbraith wrote:
> > 
> > > Just use the IP address of 'gentoo'. I think that perhaps 'gentoo' isn't 
> > > in your hosts file, or DNS... what if you ping 'gentoo' ?
> > > 
> > > 
> > > 
> > > Harold Martin wrote:
> > > 
> > > > Yes, I flushed privileges.
> > > > No, I can't connect via "mysql -h gentoo -uslash -p slash", I get the
> > > > error:
> > > > ERROR 1045: Access denied for user: 'slash@localhost' (Using password:
> > > > YES)
> > > > 
> > > > Thanks,
> > > > Harold
> > > > 
> > > > On Mon, 2003-11-03 at 13:09, Patrick Galbraith wrote:
> > > > 
> > > > 
> > > > > 1. Did you do a flush privileges?
> > > > > 2. Try to connect: "mysql -h gentoo -uslash -p slash
> > > > > 
> > > > > Can you connect this way?
> > > > > 
> > > > > 
> > > > > 
> > > > > Harold Martin wrote:
> > > > > 
> > > > > 
> > > > > > I modified Host in the user table to gentoo (my hostname) and did the
> > > > > > same for both fields in Pawssword.pm. I get this error, tho:
> > > > > > # ./bin/install-slashsite -u slash
> > > > > > DBI connect('database=slash;host=gentoo','slash',...) failed: Access
> > > > > > denied for user: 'slash@localhost' (Using password: YES) at
> > > > > > /usr/lib/perl5/site_perl/5.8.0/DBIx/Password.pm line 47
> > > > > > Major Mojo Bad things
> > > > > > unable to connect to MySQL:  : Access denied for user: 'slash@localhost'
> > > > > > (Using password: YES)
> > > > > > DBI connect('database=slash;host=gentoo','slash',...) failed: Access
> > > > > > denied for user: 'slash@localhost' (Using password: YES) at
> > > > > > /usr/lib/perl5/site_perl/5.8.0/DBIx/Password.pm line 47
> > > > > > Major Mojo Bad things
> > > > > > unable to connect to MySQL:  : Access denied for user: 'slash@localhost'
> > > > > > (Using password: YES)
> > > > > > DBI connect('database=slash;host=gentoo','slash',...) failed: Access
> > > > > > denied for user: 'slash@localhost' (Using password: YES) at
> > > > > > /usr/lib/perl5/site_perl/5.8.0/DBIx/Password.pm line 31
> > > > > > Can't bless non-reference value at
> > > > > > /usr/lib/perl5/site_perl/5.8.0/DBIx/Password.pm line 36.
> > > > > > 
> > > > > > 
> > > > > > My user table looks a bit odd (to me, at least):
> > > > > > 
> > > > > > 
> > > > > > 
> > > > > > > select User, Host from user;
> > > > > > 
> > > > > > +-------+-----------+
> > > > > > > User  | Host      |
> > > > > > +-------+-----------+
> > > > > > > > gentoo    |
> > > > > > > root  | gentoo    |
> > > > > > > slash | gentoo    |
> > > > > > > > localhost |
> > > > > > > root  | localhost |
> > > > > > +-------+-----------+
> > > > > > 
> > > > > > 
> > > > > > Thanks for your help,
> > > > > > Harold
> > > > > > 
> > > > > > On Mon, 2003-11-03 at 12:31, Patrick Galbraith wrote:
> > > > > > 
> > > > > > 
> > > > > > 
> > > > > > > Harold, you do not want '%' as the host!!! This will allow any host to 
> > > > > > > connect to your db as slash!
> > > > > > > 
> > > > > > > Do this to fix this:
> > > > > > > 
> > > > > > > (when I say YOURHOSTNAME..., I mean whatever is the hostname of your 
> > > > > > > box, or better yet, the IP address)
> > > > > > > 
> > > > > > > UPDATE user SET Host = 'YOURHOSTNAMEORIPADDRESS' WHERE User = 'slash';
> > > > > > > 
> > > > > > > FLUSH PRIVILEGES;
> > > > > > > 
> > > > > > > Then, whatever value you set 'Host' to in the db, make that the same 
> > > > > > > value in Password.pm.
> > > > > > > 
> > > > > > > ALSO: Please read up on mysql security on mysql's website
> > > > > > > 
> > > > > > > http://www.mysql.com/documentation/index.html
> > > > > > > 
> > > > > > > (in the documentation) and make sure _none_ of your users have a host 
> > > > > > > of '%' !
> > > > > > > 
> > > > > > > good luck,
> > > > > > > 
> > > > > > > Patrick
> > > > > > > 
> > > > > > > Harold Martin wrote:
> > > > > > > 
> > > > > > > 
> > > > > > > 
> > > > > > > > Sorry to cause so much noise on the list.
> > > > > > > > I had accidently set the driver instead of the host to '%'.
> > > > > > > > However, when I fixed this, I get the error:
> > > > > > > > ./bin/install-slashsite -u slash
> > > > > > > > DBI connect('database=slash;host=%','slash',...) failed: Unknown \
> > > > > > > > MySQL Server Host '%' (1) at \
> > > > > > > > /usr/lib/perl5/site_perl/5.8.0/DBIx/Password.pm line 47
> > > > > > > > Major Mojo Bad things
> > > > > > > > unable to connect to MySQL:  : Unknown MySQL Server Host '%' (1)
> > > > > > > > DBI connect('database=slash;host=%','slash',...) failed: Unknown \
> > > > > > > > MySQL Server Host '%' (1) at \
> > > > > > > > /usr/lib/perl5/site_perl/5.8.0/DBIx/Password.pm line 47
> > > > > > > > Major Mojo Bad things
> > > > > > > > unable to connect to MySQL:  : Unknown MySQL Server Host '%' (1)
> > > > > > > > DBI connect('database=slash;host=%','slash',...) failed: Unknown \
> > > > > > > > MySQL Server Host '%' (1) at \
> > > > > > > > /usr/lib/perl5/site_perl/5.8.0/DBIx/Password.pm line 31
> > > > > > > > Can't bless non-reference value at
> > > > > > > > /usr/lib/perl5/site_perl/5.8.0/DBIx/Password.pm line 36.
> > > > > > > > I tried changing the host to 'localhost', but I get:
> > > > > > > > ./bin/install-slashsite -u slash
> > > > > > > > DBI connect('database=slash;host=localhost','slash',...) failed: \
> > > > > > > > Access denied for user: 'slash@localhost' (Using password: YES) at
> > > > > > > > /usr/lib/perl5/site_perl/5.8.0/DBIx/Password.pm line 47
> > > > > > > > Major Mojo Bad things
> > > > > > > > unable to connect to MySQL:  : Access denied for user: \
> > > > > > > > 'slash@localhost' (Using password: YES)
> > > > > > > > DBI connect('database=slash;host=localhost','slash',...) failed: \
> > > > > > > > Access denied for user: 'slash@localhost' (Using password: YES) at
> > > > > > > > /usr/lib/perl5/site_perl/5.8.0/DBIx/Password.pm line 47
> > > > > > > > Major Mojo Bad things
> > > > > > > > unable to connect to MySQL:  : Access denied for user: \
> > > > > > > > 'slash@localhost' (Using password: YES)
> > > > > > > > DBI connect('database=slash;host=localhost','slash',...) failed: \
> > > > > > > > Access denied for user: 'slash@localhost' (Using password: YES) at
> > > > > > > > /usr/lib/perl5/site_perl/5.8.0/DBIx/Password.pm line 31
> > > > > > > > Can't bless non-reference value at
> > > > > > > > /usr/lib/perl5/site_perl/5.8.0/DBIx/Password.pm line 36.
> > > > > > > > 
> > > > > > > > Thanks again for all your help,
> > > > > > > > Harold
> > > > > > > > 
> > > > > > > > On Mon, 2003-11-03 at 10:59, Patrick Galbraith wrote:
> > > > > > > > 
> > > > > > > > 
> > > > > > > > 
> > > > > > > > 
> > > > > > > > > Harold,
> > > > > > > > > 
> > > > > > > > > Please do this:
> > > > > > > > > 
> > > > > > > > > connect to your mysql's 'mysql' database
> > > > > > > > > 
> > > > > > > > > mysql -u root -p mysql
> > > > > > > > > 
> > > > > > > > > select Host from user where User = 'slash';
> > > > > > > > > 
> > > > > > > > > whichever hosts appear from that select, ensure that DBIx::Password \
> > > > > > > > > has  the correct values:
> > > > > > > > > 
> > > > > > > > > locate Password.pm
> > > > > > > > > 
> > > > > > > > > on my box:
> > > > > > > > > 
> > > > > > > > > [root@krsna root]# locate Password.pm
> > > > > > > > > /usr/lib/perl5/site_perl/5.6.1/DBIx/Password.pm
> > > > > > > > > 
> > > > > > > > > edit this...
> > > > > > > > > 
> > > > > > > > > my $virtual1 = {
> > > > > > > > > 'slash' => {
> > > > > > > > > 'driver' => 'mysql',
> > > > > > > > > 'username' => 'slash',
> > > > > > > > > 'attributes' => {},
> > > > > > > > > 'port' => '',
> > > > > > > > > 'database' => 'slash',
> > > > > > > > > 'password' => 'yourpass',
> > > > > > > > > 'host' => 'EDITTHISVALUEHAROLD',
> > > > > > > > > 'connect' => 
> > > > > > > > > 'DBI:mysql:database=slash;host=EDITTHISVALUEHAROLD'
> > > > > > > > > }
> > > > > > > > > };
> > > > > > > > > 
> > > > > > > > > make sure host is set to the value of the 'Host' column had for the \
> > > > > > > > >  slash user in the 'mysql' database. (Note: When you install 
> > > > > > > > > DBIx::Password, it should have already asked you what to choose for \
> > > > > > > > > the  host value).
> > > > > > > > > 
> > > > > > > > > Hope this helps,
> > > > > > > > > 
> > > > > > > > > regards,
> > > > > > > > > 
> > > > > > > > > Patrick
> > > > > > > > > 
> > > > > > > > > Harold Martin wrote:
> > > > > > > > > 
> > > > > > > > > 
> > > > > > > > > 
> > > > > > > > > 
> > > > > > > > > > Here's some info from the mysql db (sorry the formatting ges \
> > > > > > > > > > messed up): SELECT * FROM db;
> > > > > > > > > > +------+---------+------+-------------+-------------+------------- \
> > > > > > > > > > +-------------+-------------+-----------+------------+-----------------+------------+------------+-----------------------+------------------+
> > > > > > > > > >  | Host | Db      | User | Select_priv | Insert_priv | \
> > > > > > > > > > Update_priv | Delete_priv | Create_priv | Drop_priv | Grant_priv \
> > > > > > > > > > | References_priv | Index_priv | Alter_priv | \
> > > > > > > > > > Create_tmp_table_priv | Lock_tables_priv | \
> > > > > > > > > > +------+---------+------+-------------+-------------+------------- \
> > > > > > > > > > +-------------+-------------+-----------+------------+-----------------+------------+------------+-----------------------+------------------+
> > > > > > > > > >  | %    | test    |      | Y           | Y           | Y          \
> > > > > > > > > > | Y           | Y           | Y         | N          | Y          \
> > > > > > > > > > | Y          | Y          | Y                     | Y     |
> > > > > > > > > > > %    | test\_% |      | Y           | Y           | Y           \
> > > > > > > > > > > |
> > > > > > > > > > Y           | Y           | Y         | N          | Y            \
> > > > > > > > > > | Y          | Y          | Y                     | Y     |
> > > > > > > > > > +------+---------+------+-------------+-------------+------------- \
> > > > > > > > > > +-------------+-------------+-----------+------------+-----------------+------------+------------+-----------------------+------------------+
> > > > > > > > > >  SELECT * FROM tables_priv;
> > > > > > > > > > +------+-------+-------+------------+----------------+------------ \
> > > > > > > > > > ----+----------------------------------------------------------------+-------------+
> > > > > > > > > >  | Host | Db    | User  | Table_name | Grantor        | Timestamp \
> > > > > > > > > > | Table_priv                                                     \
> > > > > > > > > > | Column_priv |
> > > > > > > > > > +------+-------+-------+------------+----------------+------------ \
> > > > > > > > > > ----+----------------------------------------------------------------+-------------+
> > > > > > > > > >  | %    | slash | slash | localhost  | root@localhost | \
> > > > > > > > > > 20031102180006 | \
> > > > > > > > > > Select,Insert,Update,Delete,Create,Drop,References,Index,Alter |  \
> > > > > > > > > > | \
> > > > > > > > > > +------+-------+-------+------------+----------------+------------ \
> > > > > > > > > > ----+----------------------------------------------------------------+-------------+
> > > > > > > > > >  SELECT * FROM user WHERE User='slash';
> > > > > > > > > > +------+-------+------------------+-------------+-------------+--- \
> > > > > > > > > > ----------+-------------+-------------+-----------+-------------+- \
> > > > > > > > > > --------------+--------------+-----------+------------+----------- \
> > > > > > > > > > ------+------------+------------+--------------+------------+----- \
> > > > > > > > > > ------------------+------------------+--------------+------------- \
> > > > > > > > > > ----+------------------+----------+------------+-------------+--------------+---------------+-------------+-----------------+
> > > > > > > > > >  | Host | User  | Password         | Select_priv | Insert_priv |
> > > > > > > > > > Update_priv | Delete_priv | Create_priv | Drop_priv | Reload_priv \
> > > > > > > > > > | Shutdown_priv | Process_priv | File_priv | Grant_priv | \
> > > > > > > > > > References_priv | Index_priv | Alter_priv | Show_db_priv | \
> > > > > > > > > > Super_priv | Create_tmp_table_priv | Lock_tables_priv | \
> > > > > > > > > > Execute_priv | Repl_slave_priv | Repl_client_priv | ssl_type | \
> > > > > > > > > > ssl_cipher | x509_issuer | x509_subject | max_questions | \
> > > > > > > > > > max_updates | max_connections | \
> > > > > > > > > > +------+-------+------------------+-------------+-------------+--- \
> > > > > > > > > > ----------+-------------+-------------+-----------+-------------+- \
> > > > > > > > > > --------------+--------------+-----------+------------+----------- \
> > > > > > > > > > ------+------------+------------+--------------+------------+----- \
> > > > > > > > > > ------------------+------------------+--------------+------------- \
> > > > > > > > > > ----+------------------+----------+------------+-------------+--------------+---------------+-------------+-----------------+
> > > > > > > > > >  | %    | slash | nice try ;-) | N           | N           | N    \
> > > > > > > > > >  | N           | N           | N         | N           | N        \
> > > > > > > > > > | N            | N         | N          | N   | N          | N    \
> > > > > > > > > > | N            | N          | N                     | N           \
> > > > > > > > > > | N            | N               | N                |         
> > > > > > > > > > > > > > 0 |           0
> > > > > > > > > > > 0 |
> > > > > > > > > > +------+-------+------------------+-------------+-------------+--- \
> > > > > > > > > > ----------+-------------+-------------+-----------+-------------+- \
> > > > > > > > > > --------------+--------------+-----------+------------+----------- \
> > > > > > > > > > ------+------------+------------+--------------+------------+----- \
> > > > > > > > > > ------------------+------------------+--------------+------------- \
> > > > > > > > > > ----+------------------+----------+------------+-------------+--------------+---------------+-------------+-----------------+
> > > > > > > > > >  
> > > > > > > > > > TIA,
> > > > > > > > > > Harold
> > > > > > > > > > 
> > > > > > > > > > On Mon, 2003-11-03 at 05:51, Chris Johnson wrote:
> > > > > > > > > > 
> > > > > > > > > > 
> > > > > > > > > > 
> > > > > > > > > > 
> > > > > > > > > > 
> > > > > > > > > > > On Mon, 3 Nov 2003, Shane wrote:
> > > > > > > > > > > 
> > > > > > > > > > > 
> > > > > > > > > > > 
> > > > > > > > > > > 
> > > > > > > > > > > 
> > > > > > > > > > > 
> > > > > > > > > > > > Check what host is defined, in mysql, that that user can \
> > > > > > > > > > > > login as. 
> > > > > > > > > > > > Shane
> > > > > > > > > > > > 
> > > > > > > > > > > > 
> > > > > > > > > > > 
> > > > > > > > > > > I think I'd see a complaint from mysql about an illegal
> > > > > > > > > > > connection if there as a problem.  But I checked and the user \
> > > > > > > > > > > is in mysql.user and the mysql.db table allows access to the \
> > > > > > > > > > > database for it.
> > > > > > > > > > > 
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > Chris Johnson               |Internet: \
> > > > > > > > > > > johnson@nmr.mgh.harvard.edu Systems Administrator       |Web:   \
> > > > > > > > > > > http://www.nmr.mgh.harvard.edu/~johnson NMR Center              \
> > > > > > > > > > > |Voice:    617.726.0949 Mass. General Hospital      |FAX:      \
> > > > > > > > > > > 617.726.7422 149 (2301) 13th Street      |Survival, all by it \
> > > > > > > > > > > self, isn't worth it. Charlestown, MA., 02129 USA |             \
> > > > > > > > > > >                 Me
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > \
> > > > > > > > > > > 
> > > > > > > > > > 
> > > > > > > > > > 
> > > > > > > > > > 
> > > > > > > > > > 
> > > > > > > > > > -------------------------------------------------------
> > > > > > > > > > This SF.net email is sponsored by: SF.net Giveback Program.
> > > > > > > > > > Does SourceForge.net help you be more productive?  Does it
> > > > > > > > > > help you create better code?   SHARE THE LOVE, and help us help
> > > > > > > > > > YOU!  Click Here: http://sourceforge.net/donate/
> > > > > > > > > > _______________________________________________
> > > > > > > > > > Slashcode-general mailing list
> > > > > > > > > > Slashcode-general@lists.sourceforge.net
> > > > > > > > > > https://lists.sourceforge.net/lists/listinfo/slashcode-general
> > > > > > > > 
> > > > > > > > 
> > > > > > > > 
> > > > > > > > 
> > > > > > > > -------------------------------------------------------
> > > > > > > > This SF.net email is sponsored by: SF.net Giveback Program.
> > > > > > > > Does SourceForge.net help you be more productive?  Does it
> > > > > > > > help you create better code?   SHARE THE LOVE, and help us help
> > > > > > > > YOU!  Click Here: http://sourceforge.net/donate/
> > > > > > > > _______________________________________________
> > > > > > > > Slashcode-general mailing list
> > > > > > > > Slashcode-general@lists.sourceforge.net
> > > > > > > > https://lists.sourceforge.net/lists/listinfo/slashcode-general
> > > > > > 
> > > > > > 
> > > > 
> > > > 
> > > > -------------------------------------------------------
> > > > This SF.net email is sponsored by: SF.net Giveback Program.
> > > > Does SourceForge.net help you be more productive?  Does it
> > > > help you create better code?   SHARE THE LOVE, and help us help
> > > > YOU!  Click Here: http://sourceforge.net/donate/
> > > > _______________________________________________
> > > > Slashcode-general mailing list
> > > > Slashcode-general@lists.sourceforge.net
> > > > https://lists.sourceforge.net/lists/listinfo/slashcode-general
> > 
> > 



-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?   SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
_______________________________________________
Slashcode-general mailing list
Slashcode-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/slashcode-general


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic