Re: Limiting CPU to a process or process group?

2008-01-14 Thread Ryan Flannery
On Jan 14, 2008 9:27 AM, Andreas Kahari [EMAIL PROTECTED] wrote: It is not quite the same because a process, even running at niceness level 20, will grab as much CPU as it can (unless it has to wait for data). What I mean is what I wrote in my first email: For example, I would want the build

Re: openbsd and the money -solutions

2006-03-23 Thread Ryan Flannery
correction: no one with a great deal of money seems to care. ;) I've been following the thread, and once I saw it on slashdot I got off my lazy ass and donated what little I could right now (more to come, but on a grad student salary, I can't donate what companies can). I really hate

Re: Recurring donations using paypal

2006-04-05 Thread Ryan Flannery
On Apr 5, 2006, at 3:41 PM, Marco Peereboom wrote: Just wanted to let everyone know that I added monthly recurring donations to the list of donation methods. Go sign up at: http://www.openbsd.org/donations.html http://www.openssh.org/donations.html If it doesn't show up wait a little longer

Re: ifficiency

2006-05-22 Thread Ryan Flannery
On 5/22/06, prad [EMAIL PROTECTED] wrote: this is not openbsd specific, but i wanted to ask people who really understand the inner workings of programming languages. suppose that you have 2 conditions A and B where B take a lot of effort to determine (eg looking for a string match in a huge

Re: Negative temp sensor readings?

2006-12-20 Thread Ryan Flannery
I have the exact same thing here. Just installed 4.0 GENERIC.MP on a new Dell PowerEdge 2900 (my dmesg looks almost identical to yours), and I have similar readings for the first two temperatures (picked up on sensors.{0,1}). -Ryan On 12/20/06, Will H. Backman [EMAIL PROTECTED] wrote: Has

Re: upgraded to current - need bnx firmware?

2006-12-26 Thread Ryan Flannery
On 12/26/06, George C [EMAIL PROTECTED] wrote: Hello misc, I just upgraded my 4.0 system to -current (GENERIC.MP), and when I reboot, the two bnx devices could not find firmware in /etc/firmware. It appears to be looking for /etc/firmware/bnx, but that file is not present. try the following:

Re: symux/rrdtool problem on 4.4-snap

2008-11-12 Thread Ryan Flannery
On Wed, Nov 12, 2008 at 6:54 AM, Stuart Henderson [EMAIL PROTECTED] wrote: In gmane.os.openbsd.misc, you wrote: On 2008-11-12, Ryan Flannery [EMAIL PROTECTED] wrote: I'm having some strange problems with the symon (mon+mux) and rrdtool packages after recently upgrading to a 4.4 snapshot (fresh

symux/rrdtool problem on 4.4-snap

2008-11-12 Thread Ryan Flannery
Hello misc@, I'm having some strange problems with the symon (mon+mux) and rrdtool packages after recently upgrading to a 4.4 snapshot (fresh install). Previously I was running 4.3 with symon symux installed, and would cron a script that created rrdtool graphs from some of the symux rrd files,

Re: Audio problems on Lenovo Thinkpad T61 with 4.5

2009-05-13 Thread Ryan Flannery
On Wed, May 13, 2009 at 7:04 AM, Samuel Baldwin shardz4...@gmail.com wrote: For some reason, I can play audio through the speakers, but not through my headphones. If my headphones are plugged in, no sound comes out the speakers (but I think this is handled at the hardware level), which is the

removing a pesky file

2009-05-14 Thread Ryan Flannery
I've been in similar situations countless times, but this one is throwing me a for a loop. I have a file that I'm trying to remove with non-printable characters in the name. Additionally, some of the characters appear to be backspace/delete/etc. All my normal tricks with rm(1) fail. Using vim

Re: removing a pesky file

2009-05-14 Thread Ryan Flannery
On Thu, May 14, 2009 at 9:10 PM, Philip Guenther guent...@gmail.com wrote: On Thu, May 14, 2009 at 5:47 PM, Ryan Flannery ryan.flann...@gmail.com wrote: ... I can get the inode of the file with ls(1), and used that to write the following program which I thought would help, but sadly it too

Re: removing a pesky file

2009-05-14 Thread Ryan Flannery
On Thu, May 14, 2009 at 9:28 PM, Matthew Clarke cla...@telus.net wrote: Thu, May 14, 2009 at 08:47:46PM -0400, Ryan Flannery may have written: I've been in similar situations countless times, but this one is throwing me a for a loop. I have a file that I'm trying to remove with non-printable

Re: removing a pesky file

2009-05-14 Thread Ryan Flannery
On Thu, May 14, 2009 at 9:48 PM, Ryan Flannery ryan.flann...@gmail.com wrote: On Thu, May 14, 2009 at 9:28 PM, Matthew Clarke cla...@telus.net wrote: Thu, May 14, 2009 at 08:47:46PM -0400, Ryan Flannery may have written: I've been in similar situations countless times, but this one

Re: removing a pesky file

2009-05-14 Thread Ryan Flannery
On Thu, May 14, 2009 at 10:53 PM, Jordi Beltran Creix jbcreix.m...@gmail.com wrote: rm `ls | grep E` would delete that file leaving others alone. Regards, Just for the list... I had tried that incantation, and others involving grep, and they all failed. Output (I just reproduced the file)

Re: removing a pesky file

2009-05-14 Thread Ryan Flannery
On Thu, May 14, 2009 at 11:42 PM, Tony Abernethy t...@servacorp.com wrote: Ryan Flannery wrote: On Thu, May 14, 2009 at 10:53 PM, Jordi Beltran Creix jbcreix.m...@gmail.com wrote: rm `ls | grep E` would delete that file leaving others alone. Regards, Just for the list... I had tried

Re: removing a pesky file

2009-05-14 Thread Ryan Flannery
On Fri, May 15, 2009 at 12:07 AM, Chris Kuethe chris.kue...@gmail.com wrote: cd /usr mkdir .save mv [A-Za-z]* .save rm * mv .save/* . Son of a #...@!^% Yes, that would have been *far* simpler/easier/quicker, and would have worked. *That's* the clue-stick I was looking for. Many

Voice-chat on OpenBSD with nothing more than aucat and ssh

2009-06-05 Thread Ryan Flannery
With the recent work done to the audio system on OpenBSD, a buddy of mine and I figured it should be easy to setup two-way voice-chat between two OpenBSD clients using nothing more than aucat(1) and ssh(1). As we found out, it is both very easy and very usable! We have telephone-quality chatting

Re: Voice-chat on OpenBSD with nothing more than aucat and ssh

2009-06-05 Thread Ryan Flannery
use of using aucat and ssh, you made me curious and i'm going to try it :-) Gilles On Fri, Jun 05, 2009 at 06:02:01PM -0400, Ryan Flannery wrote: With the recent work done to the audio system on OpenBSD, a buddy of mine and I figured it should be easy to setup two-way voice-chat between two

Re: Voice-chat on OpenBSD with nothing more than aucat and ssh

2009-06-06 Thread Ryan Flannery
On Sat, Jun 6, 2009 at 3:18 PM, Alexandre Ratchova...@caoua.org wrote: On Fri, Jun 05, 2009 at 06:02:01PM -0400, Ryan Flannery wrote: With the recent work done to the audio system on OpenBSD, a buddy of mine and I figured it should be easy to setup two-way voice-chat between two OpenBSD

Re: Voice-chat on OpenBSD with nothing more than aucat and ssh

2009-06-06 Thread Ryan Flannery
On Sat, Jun 6, 2009 at 4:43 PM, Jacob Meuserjake...@sdf.lonestar.org wrote: On Sat, Jun 06, 2009 at 03:34:08PM -0400, Ryan Flannery wrote: aucat -b 1 -l this '-b 1' bugs me. you're telling aucat to process each frame individually ... sort of. it really means as small as possible

Re: strange (?) ssh user

2009-08-20 Thread Ryan Flannery
On Fri, Aug 21, 2009 at 1:19 AM, Uwe Dippeludip...@uniten.edu.my wrote: Recently, I noticed an ssh user on one of my machines, who never logged on, is not visible with 'last', seems to have no terminal active, and is back immediately after a reboot. Hmm. root 13415 0.0 0.9 3280 2420

Re: OT: Python (was Re: vi in /bin)

2009-12-19 Thread Ryan Flannery
On Sat, Dec 19, 2009 at 2:51 PM, Nick Guenther kou...@gmail.com wrote: Python is about thinking about what you're doing. It's one of those languages that forces you to work on a higher level (not that there aren't lots of places where python is used as a scripting language--that code tends to

Re: OT: Python (was Re: vi in /bin)

2009-12-20 Thread Ryan Flannery
On Sat, Dec 19, 2009 at 7:00 PM, Marco Peereboom sl...@peereboom.us wrote: On Sat, Dec 19, 2009 at 03:18:55PM -0500, Ryan Flannery wrote: On Sat, Dec 19, 2009 at 2:51 PM, Nick Guenther kou...@gmail.com wrote: Python is about thinking about what you're doing. It's one of those languages

Re: OpenBSD culture?

2010-04-14 Thread Ryan Flannery
On Wed, Apr 14, 2010 at 8:43 PM, Zachary Uram net...@gmail.com wrote: You get lost. You seem to think the project exists as an end unto itself. And why can't it? Seriously, please explain this. Develop the most wonderful kernel and userspace in the world but if no one uses it what is the

Re: What does your environment look like?

2010-01-03 Thread Ryan Flannery
On Sun, Jan 3, 2010 at 7:20 PM, Marco Peereboom sl...@peereboom.us wrote: On Jan 3, 2010, at 8:23, Chris Bennett ch...@bennettconstruction.biz Josh Rickmar wrote: [snip] This may have changed in more recent version of scrotwm, but back when I last tried it, the statusbar also was not able to

Re: What does your environment look like?

2010-01-06 Thread Ryan Flannery
On Wed, Jan 6, 2010 at 12:31 PM, Marco Peereboom sl...@peereboom.us wrote: ryan needs to send me a patch to add to the code base... egads, i had completely forgotten about that... apologies

Re: What does your environment look like?

2010-01-06 Thread Ryan Flannery
On Wed, Jan 6, 2010 at 12:52 PM, Marco Peereboom sl...@peereboom.us wrote: :-) you academic types are always busy, eh? hah, only when the end-o-term is upon me, and suddenly students are so very interested in their low, low grades... it's more the getting-married-soon types are busy. :)

Re: Voice Chat over IP?

2010-02-15 Thread Ryan Flannery
On Mon, Feb 15, 2010 at 9:48 PM, Chris Bennett ch...@bennettconstruction.biz wrote: On Mon, Feb 15, 2010 at 07:51:42AM -0600, Chris Bennett wrote: [snip] Yes, that's the thread. Nice to know there is a page written up for it. The problem I see is how to make a connection in the first place.

Re: xterm + tmux 256 colors

2010-02-17 Thread Ryan Flannery
On Wed, Feb 17, 2010 at 5:58 PM, Ted Unangst ted.unan...@gmail.com wrote: On Wed, Feb 17, 2010 at 5:38 PM, frantisek holop min...@obiit.org wrote: i am trying to make tmux use 256 colors. i have found this: http://www.mail-archive.com/debian-bugs-d...@lists.debian.org/msg707066.html i have

Re: xterm + tmux 256 colors

2010-02-17 Thread Ryan Flannery
On Wed, Feb 17, 2010 at 6:17 PM, Ted Unangst ted.unan...@gmail.com wrote: Nice catch, I missed that. I know getting 256 color support working requires touching a few things. I don't know if that commit says it now works or simply it's one step closer So ya, I was really asking. :)

Question about suspend+resume X11-application buggy-ness

2010-08-01 Thread Ryan Flannery
Hello misc, I have a small X application I use on my laptop that behaves buggy after some suspend+resumes. Detailed description below, but first... HOLY HELL thank you to all the devs who made suspend+resume work! I had almost forgotten what it was like to suspend+walk-to-work+resume and be on

Re: Some apps kill/hang X when using scrotwm(1) as wm

2010-08-18 Thread Ryan Flannery
On Wed, Aug 18, 2010 at 8:18 PM, ropers rop...@gmail.com wrote: On 19 August 2010 01:07, Nick Holland n...@holland-consulting.net wrote: On 08/18/10 14:02, Owain Ainsworth wrote: ... As a note, scotwm really needs it own mailing list, scrotwm bugs are not really topical for misc. and a

Re: 4.8 arrival!

2010-10-28 Thread Ryan Flannery
On Thu, Oct 28, 2010 at 9:58 PM, bsdmas...@hushmail.com wrote: Hello, Would you please consider uploading an iso image of your OpenBSD 4.8 to some public tracker such as thepiratebay.org? If you are unfamiliar with the process of making an iso-image out of a CD, or if you need help with

Re: route flush and sh /etc/netstart not enough?

2011-01-25 Thread Ryan Flannery
On Tue, Jan 25, 2011 at 9:01 PM, Neal Hogan nealho...@gmail.com wrote: Hello misc@, I'm having an issue with my wifi AP after I reconnect to my ISP. That is, when my internet connection is broken, for whatever reason, and then reconnected, my wireless machines see that the AP is available,

Re: Play Nice - Real men don't attack straw men (Theo)

2007-12-15 Thread Ryan Flannery
On Dec 15, 2007 3:08 PM, L [EMAIL PROTECTED] wrote: Jack J. Woehr wrote: Well, no, you may. The problem is when two people sling poop on each other, sooner or later it ends, and then all you've got is two guys standing there looking sheepish, all covered with poop. How is this my

Re: Dynamic DNS Client for EasyDNS

2017-08-02 Thread Ryan Flannery
On Wed, Aug 2, 2017 at 8:31 PM, Predrag Punosevac wrote: > > One of my clients is insisting on using her current ISP with dynamic IP. > On the another hand we decided to use EasyDNS as our managed DNS > provider due to my past experiences with them. She bought DNS pro plan

Question on more concise httpd.conf setup for subdomain + https redirects

2017-12-21 Thread Ryan Flannery
Hi, I'm curious if there's a more concise/preferred way to accomplish the below. I'm hosting a number of sites that want to prefer https over http and strip any www subdomain from urls. E.g. www.foo.com/* -> https://foo.com/* https://www.foo.com/* -> https://foo.com/* I have this working (used