ETERNITY - 24th December at a cinema near you

2010-12-12 Thread Eternity
Dear Movie Lovers, ETERNITY is a proudly South African produced feature film about vampires in Johannesburg city. The film stars Andre Frauenstein, Christina Storm, Rikki Brest, Hlomla Dandala, Ian Roberts and David James from District 9. Music used from Prime Circle, Autumn Sun, and Empery.

Script for the creation of multiple user accounts

2010-12-12 Thread OpenBSD Geek
Hi, I want to be able to create with a batch file multiple user accounts like for example inca1,inca2 ... inca6 useradd -d /home/inca1 -s /bin/ksh -m -G incagroup -p passwordencrypted user1 useradd -d /home/inca1 -s /bin/ksh -m -G incagroup -p passwordencrypted user2 useradd -d /home/inca1 -s

Re: Script for the creation of multiple user accounts

2010-12-12 Thread Otto Moerbeek
This is not OpenBSD specific but check jot(1) and xargs(1). Something like jot -w user 6 | xargs -n 1 useradd ... Will do. -Otto On Sun, Dec 12, 2010 at 02:30:25PM +0400, OpenBSD Geek wrote: Hi, I want to be able to create with a batch file multiple user accounts

remove users from group

2010-12-12 Thread OpenBSD Geek
To remove users from example group users, i usually do it by editing the file /etc/group, and remove it manually. Is there a way from command line to remove some users from a specific group ? I want to do a script like that : list=1 2 3 4 5 6 for i in $list do usermod -G wheel, staff username$i

Re: OpenBSD 4.8's bsd.mp doesn't detect 4GB Memory

2010-12-12 Thread Martin Schröder
2010/12/12 Predrag Punosevac punoseva...@gmail.com: http://marc.info/?l=openbsd-miscm=127593716916639w=1 http://marc.info/?l=openbsd-miscm=127601395920661w=1 http://quigon.bsws.de/papers/2010/bsdcan-openbsdupdate/mgp2.html Best Martin

Re: OpenBSD 4.8's bsd.mp doesn't detect 4GB Memory

2010-12-12 Thread Denise H. G.
On 2010/12/12 at 19:51, Martin Schrvder mar...@oneiros.de wrote: 2010/12/12 Predrag Punosevac punoseva...@gmail.com: http://marc.info/?l=openbsd-miscm=127593716916639w=1 http://marc.info/?l=openbsd-miscm=127601395920661w=1 http://quigon.bsws.de/papers/2010/bsdcan-openbsdupdate/mgp2.html

Re: Donations

2010-12-12 Thread Jasper Valentijn
2010/12/10 Leonardo Rodrigues leonardov...@gmail.com: To paraphrase Benjamin Franklin (an american! diplomat!): Any society that would give up a little liberty to gain a little security will deserve neither and lose both. Imho this Thomas Jefferson quote is better suited for the subject. ;-)

Re: Donations

2010-12-12 Thread Johan Helsingius
Jasper, Imho this Thomas Jefferson quote is better suited for the subject. ;-) http://www.snopes.com/quotes/jefferson/banks.asp Julf

Re: remove users from group

2010-12-12 Thread Joachim Schipper
On Sun, Dec 12, 2010 at 03:44:18PM +0400, OpenBSD Geek wrote: To remove users from example group users, i usually do it by editing the file /etc/group, and remove it manually. Is there a way from command line to remove some users from a specific group ? I want to do a script like that :

Re: Donations

2010-12-12 Thread Jasper Valentijn
2010/12/12 Johan Helsingius j...@julf.com: Jasper, Imho this Thomas Jefferson quote is better suited for the subject. ;-) http://www.snopes.com/quotes/jefferson/banks.asp This is my source: http://wiki.monticello.org/mediawiki/index.php/Private_Banks_(Quotation) -- We spend the first

Re: Donations

2010-12-12 Thread Johan Helsingius
This is my source: http://wiki.monticello.org/mediawiki/index.php/Private_Banks_(Quotation) That states This quotation is at least partly spurious :) Julf

Pour Noël offrez une Vidéo à votre site Internet

2010-12-12 Thread stephan comelli
code promo V11210 Offre valable jusqu'au 25 Dicembre 2010 Bonjour Vous aussi, vous pouvez avoir une vidio personnalisie de qualiti ` votre image ! pour un tarif tout ` fait abordable ( dhs 490 HT ) ! rifirencement dans une centaine de plateformes vidios possible ( 300 HT ). Pas

Re: remove users from group

2010-12-12 Thread S Mathias
This works for me under Fedora 14: # groups USERNAME USERNAME : USERNAME GROUPNAME # usermod -G $(id -Gn USERNAME | sed s/GROUPNAME//g | sed s/ /,/g | sed s/,,/,/g | sed s/,$//g) USERNAME # groups USERNAME USERNAME : USERNAME --- On Sun, 12/12/10, Joachim Schipper joac...@joachimschipper.nl

Re: 4.8 breaks ral (hostap) for me

2010-12-12 Thread Snoop
Hi Stephen (and anyone else), I'm experiencing your same problem. I was looking for a solution on the web but I'd say unsuccessfully. I couldn't found any reply to his complaint (that is in fact the only one I've found around) and I was wondering if you received a solution or a tip in private.

Hard links details

2010-12-12 Thread Jean-Francois
Hi, May someone help me to understand how exactly hard links works ? To some extend U understood that a hard link is indistinguishable from the original yet it must be so that the datas are linked-back to all the hard links pointing on it, correct ? This means that it is safe to a) create

anyone in Arlington / Dallas area?

2010-12-12 Thread Diana Eichert
If you are in the Arlington / Dallas area I need some help getting a piece of hardware for a developer. It is forsale on Dallas CL. let me know if you can help out diana

openssl chat

2010-12-12 Thread S Mathias
i can use natively openssl for anonymous chat: # Chat: # server side: openssl req -x509 -nodes -days 365 -newkey rsa:8192 -keyout mycert.pem -out mycert.pem # server side - generate a self-signed cert. openssl s_server -accept 52310 -cert mycert.pem # client side - 127.0.0.1 is the IP of the

Re: openssl chat

2010-12-12 Thread Ted Unangst
On Sun, Dec 12, 2010 at 11:47 AM, S Mathias smathias1...@yahoo.com wrote: i can use natively openssl for anonymous chat: # Chat: # server side: openssl req -x509 -nodes -days 365 -newkey rsa:8192 -keyout mycert.pem -out mycert.pem # server side - generate a self-signed cert. openssl

Re: Hard links details

2010-12-12 Thread Ted Unangst
On Sun, Dec 12, 2010 at 12:31 PM, Jean-Francois jfsimon1...@gmail.com wrote: May someone help me to understand how exactly hard links works ? To some extend U understood that a hard link is indistinguishable from the original yet it must be so that the datas are linked-back to all the hard

[Was: OT - gmail alternatives] PGP web mail anyone?

2010-12-12 Thread Alexander Shulgin
On Thu, Dec 9, 2010 at 17:01, lh maig...@netvisao.pt wrote: Hi, what are the good available alternatives (security/privacy) for gmail you're using? I know it might sound funny, but what do you guys think about feasibility of massively automatic PGP web mail with all encryption/decryption done

Re: [Was: OT - gmail alternatives] PGP web mail anyone?

2010-12-12 Thread Ingo Schwarze
what do you guys think Personally, ... web mail ... i consider that a contradiction, and stupid one.

Re: [Was: OT - gmail alternatives] PGP web mail anyone?

2010-12-12 Thread Ted Unangst
On Sun, Dec 12, 2010 at 1:16 PM, Alexander Shulgin alex.shul...@gmail.com wrote: I know it might sound funny, but what do you guys think about feasibility of massively automatic PGP web mail with all encryption/decryption done through javascript in the client's browser? At some point you're

Re: [Was: OT - gmail alternatives] PGP web mail anyone?

2010-12-12 Thread Alexander Shulgin
On Sun, Dec 12, 2010 at 20:32, Ted Unangst ted.unan...@gmail.com wrote: On Sun, Dec 12, 2010 at 1:16 PM, Alexander Shulgin alex.shul...@gmail.com wrote: I know it might sound funny, but what do you guys think about feasibility of massively automatic PGP web mail with all encryption/decryption

Strange behavior from poll() when interrupted by signal

2010-12-12 Thread Yarin
Hello, As the documentation explains, when poll() is interrupted by a signal, it should return -1/EINTR. However, I'm getting a return indicating that all of the polling descriptors are ready, but when I check their flags out, none of them are ready. (Note that the same code behaves as expected

Re: Freeze with Western Digital Caviar Green HDD

2010-12-12 Thread David Vasek
On Fri, 10 Dec 2010, Nick Holland wrote: Me? I usually buy whatever is cheap and on sale. Some manufacturers have the advantage of providing good documentation for their drives, some others do not have any at all. Regards, David

Re: Strange behavior from poll() when interrupted by signal

2010-12-12 Thread Remco
Yarin wrote: Hello, As the documentation explains, when poll() is interrupted by a signal, it should return -1/EINTR. However, I'm getting a return indicating that all of the polling descriptors are ready, but when I check their flags out, none of them are ready. (Note that the same code

Re: BitCoin on OpenBSD

2010-12-12 Thread patsy
On Sat, Dec 11, 2010 at 02:28:53PM +0100, Cato Auestad wrote: Is anyone working on a port for it? It requires wxWidgets 2.9.0, the version in ports is 2.8.11 (it says not to even try with 2.8). Patsy

Re: BitCoin on OpenBSD

2010-12-12 Thread Cato Auestad
On Sunday 12 December 2010 21:02:33 patsy wrote: On Sat, Dec 11, 2010 at 02:28:53PM +0100, Cato Auestad wrote: Is anyone working on a port for it? It requires wxWidgets 2.9.0, the version in ports is 2.8.11 (it says not to even try with 2.8). I know. 2.8.11 is the latest stable release of

Thinkpad X41 Tablet mic/headphone jacks

2010-12-12 Thread Anders Langworthy
Hello list, The headphone and mic 3.5mm jacks on my Thinkpad X41 Tablet are quirky. I want to throw it all out there for reference to others, and in case the quirks are actually bugs. I'm using a cheap analog headset. (I can record play audio fine with the right mixerctl settings. There isn't

Quiere hacer publicidad por E-mail pero su servidor lo bloquea?

2010-12-12 Thread Agustina Walker
QUIERE HACER PUBLICIDAD POR E-MAIL PERO... - SU SERVIDOR LO BLOQUEA? - COMPRA BASES DE EMAILS QUE RESULTAN SER SOLO UN GASTO DE TIEMPO Y DINERO? - PIERDE TIEMPO ENVIANDO SU PUBLICIDAD A DIRECCIONES DE EMAIL QUE NI SIQUIERA EXISTEN, O CREE ENVIAR EMAILS Y LOS MISMOS NO LLEGAN YA QUE SON

Re: [Was: OT - gmail alternatives] PGP web mail anyone?

2010-12-12 Thread Marti Martinez
On Sun, Dec 12, 2010 at 11:32 AM, Ted Unangst ted.unan...@gmail.com wrote: On Sun, Dec 12, 2010 at 1:16 PM, Alexander Shulgin alex.shul...@gmail.com wrote: I know it might sound funny, but what do you guys think about feasibility of massively automatic PGP web mail with all

Re: [Was: OT - gmail alternatives] PGP web mail anyone?

2010-12-12 Thread Joel Wiramu Pauling
On 13 December 2010 16:13, Marti Martinez ma...@ece.arizona.edu wrote: On Sun, Dec 12, 2010 at 11:32 AM, Ted Unangst ted.unan...@gmail.com wrote: On Sun, Dec 12, 2010 at 1:16 PM, Alexander Shulgin alex.shul...@gmail.com wrote: I know it might sound funny, but what do you guys think about

Re: [Was: OT - gmail alternatives] PGP web mail anyone?

2010-12-12 Thread Travis King
On Mon, 13 Dec 2010 16:57:52 +1300 Joel Wiramu Pauling j...@aenertia.net wrote: On 13 December 2010 16:13, Marti Martinez ma...@ece.arizona.edu wrote: On Sun, Dec 12, 2010 at 11:32 AM, Ted Unangst ted.unan...@gmail.com wrote: At some point you're going to realize that the javascript that

Re: BitCoin on OpenBSD

2010-12-12 Thread Alexander Shulgin
On Sun, Dec 12, 2010 at 22:02, patsy open...@ethernull.org wrote: On Sat, Dec 11, 2010 at 02:28:53PM +0100, Cato Auestad wrote: Is anyone working on a port for it? It requires wxWidgets 2.9.0, the version in ports is 2.8.11 (it says not to even try with 2.8). I guess it should still be

Re: easy snapshot updates

2010-12-12 Thread Amit Kulkarni
Thank you thank you thank you! I am sure thousands of people out there would be grateful for this little gem. On Sun, Dec 12, 2010 at 3:49 AM, Ted Unangst ted.unan...@gmail.com wrote: My home internet connection, for various reasons, tends to alternate between the two quality levels of blows

Última Presentación: Taller de Finanzas para NO Financieros, México D.F.

2010-12-12 Thread LIc. Maria Robledo
[IMAGE] Promociones Especiales para grupos! Capacitacisn Impartida por: L.C.P. Gustavo Rangel L. Pms Capacitacisn Efectiva de Mixico presenta: Taller de Finanzas para NO Financieros. Experto Consultor L.C.P. Gustavo Rangel L. Empresa Registrada ante la STPS Reg. COLG640205CP30005 Mayores