Older blog entries for Nafai77 (starting at number 10)

Redirecting stderr and stdout to a file plus displaying them

It has taken me ages to figure this out. Googling has been fruitless. Finally, after some tinkering, I was able to figure out how to properly redirect stdout and stderr to a file plus display them from within a script. Here's the idiom:

  #!/bin/bash

OUTPUT_LOG=output.log
OUTPUT_PIPE=output.pipe

if [ ! -e $OUTPUT_PIPE ]; then
    mkfifo $OUTPUT_PIPE
fi

if [ -e $OUTPUT_LOG ]; then
    rm $OUTPUT_LOG
fi

exec 3>&1 4>&2
tee $OUTPUT_LOG < $OUTPUT_PIPE >&3 &
tpid=$!
exec > $OUTPUT_PIPE 2>&1

echo "This is on standard out"
echo "This is on standard err" >&2

exec 1>&3 3>&- 2>&4 4>&-
wait $tpid

rm $OUTPUT_PIPE

It works but it might not be entirely correct, particularly the exec &> /dev/null. Improvements or suggestions are welcome.

Update: Figured it out. I had to store stderr and then restore stdout and stderr and close the fd that I stored them in.

Update update: Looked back and realized I had a typo on my first exec line.

Syndicated 2006-07-14 08:23:00 from Travis B. Hartwell / Software Craftsman

Random Ideas

Frustrations

Okay, maybe this is ironic that I'm posting this on my Live Journal account, but I really hate how limited LJ is. I would love to be able to track site statistics and reads and so forth. I just got a Google Analytics account for my main domain. There is currently (and probably never will be) a way for me to put in the requisite javascript code into my template at LJ to have Google Analytics track things. Yet another reason to move off of it. After the wedding, I think I'll finally have time to get my blog set up on my own hosting account. I'm going to be using Pyblosxom as it seems to be most flexible and easiest to integrate with Twisted Web. I got Twisted Web 2 working with Pyblosxom via WSGI with a minimal amount of code and some help from #twisted.web. I'll post how I did that when I get that blog up.

Random Ideas

I figure this would be a good place to throw out my random ideas of things I want to hack on, things to figure out. Feel free to tell me my ideas are dumb. Feel even freer to tell me that they've already been implemented or that you want to write them. :)

In reference to my prior entry regarding my IRC and IM setup, here are some things I've been thinking about:

  • I want to write a programmable chat notifier, so I don't have to be constantly logged onto my session locally. I want an application that will connect to my proxy for me and, when certain conditions (regular expressions or something) are met, notifiy me via libnotify and the notification area of my Gnome panel. That way I can't let IM/IRC distract me.
  • Write a wrapper around XChat-Gnome to handle my setup more cleanly:
    • If my ssh tunnel is not started, start it, prompting me for the password
    • Turn off the notification plug-ins (sound, notification, and on screen display) to start. As bip is playing back my log to the session, I don't want to be notified.
    • Find out, via d-bus or a python plug-in or something, that the playback is done and then enable those plug-ins
    • If appropriate, on exit, kill the tunnel

I've started using Evolution as my primary mail client, so I have a few things I want to do with it:

  • Update my (not-yet-released) new mail notifier:

    • Make it more robust and clean code-wise.
    • Give more information, if possible. (Number of new messages, perhaps message information)
    • Leave an icon in the notification area until I click the pop-up notification or the system tray icon.
    • When clicking either, go to the new messages in Evolution
  • I get a lot of spam -- probably 1250 or so in the last week. I need to curb that.

    • We use spam bayes on my mail server. I need some way to retrain it, when it misses or mis-classifies something.
    • I also use spamassassin locally, which works for most of what I have.
    • First filter on spam bayes, and then spam assassin classifications.
    • I want to be able to set up something -- like search folders -- that will capture messages that are in the junk folder, but missed by one or the other.
    • I want to be able to automatically re-train spambayes and spamassassin appropriately on these.

So, for Evolution, I need to figure out the following:

  • In what order are the filters applied? Junk filters and then user-defined filters? Can I specfy the order of this? Can I specify the order of my user-defined filters?
  • Can I set up a filter that is only applied when I select it? For example, I need to write some shell scripts to handle re-training Spambayes on my remote server. I would like to be able to click on a message and then tell Evolution to pipe that message to a given program. Can I do this?

I think that's all of my random ideas for now. I probably won't get to any of this until after the wedding. Of well, priorities, you know.

Syndicated 2006-05-17 19:44:00 from Travis B. Hartwell / Software Craftsman

Ten Days and Counting

On Saturday, May 27th, my sweetheart Torie and I are getting married!

Ten days!

Torie and Travis engagement picture

Syndicated 2006-05-17 19:41:00 from Travis B. Hartwell / Software Craftsman

Iswitch-window handler update

I keep meaning to announce that my iswitch-window deskbar handler as described here, has now been included in the core Gnome Deskbar Applet distribution, as seen in the 2.15.1 announcement. Any further changes or improvements will go directly into deskbar cvs.

Enjoy! Thanks Raph and team for a great project and including my contribution!

Syndicated 2006-05-01 10:43:00 from Travis B. Hartwell / Software Craftsman

ncm: My lack of strength in C++ shows here. Why is using delete considered sloppy thinking? I would assume that the use of new is acceptable. For example, when you are allocating memory for a dynamically sized array (yes, I do know about the STL <vector> I thought it was prope, and in fact necessary, to pair new and delete calls as in C with malloc() and free. What am I missing? Standard C++ doesn't have garbage collection, so I'm a bit lost.

An update: in just 6 weeks or so, I will be done with school forever. My last final is on December 12th, and I will be finishing my bachelor's degree in Computer Science with a minor in Mathematics at Utah State University. Finally!

On the free software front, I've been doing a little hacking. I've worked more on my Gnome Alerts Panel Applet, now with clients for an e-mail watcher, web page monitor, cvs monitor, and a regular standalone messager. I need to finish the UI and then put it up for others to use.

I just recently started using Spam Bayes as Spam Assassin wasn't catching all of my spam. Spam Bayes is doing a great job of catching nearly all spam that SA does not, and only a few false positives and unsures. I need to tweak how I train it, but overall I am pleased. I was annoyed with having to start a Python process for every single message that comes through, so I wrote a spam bayes daemon that listens on named pipes and then a small C program that acts as the filter that procmail calls that interacts with the daemon via the pipes. I was pretty proud of myself. After doing that, I added the named pipe capability to the e-mail watcher program for my alerts applet. Anyway, I want to release this stuff to the Spam Bayes community, I just haven't taken the time to clean it up and put it out there.

Other than that, my free software stuff is slow. I'm waiting for all of the Gnome 2.4 packages to come through on Debian PPC Unstable, and am excited to try that out. As soon as the Linux 2.6.0 final kernel comes out, I will be trying it out as well. Hopefully it will make my boxes feel faster, as I have slow machines right now.

I went to PyCon a few weeks ago, it was a very enjoyable experience! I got to meet the rest of the Twisted team and a few other interesting people. It was very fun and synergistic to work with the Twisted gang. They are amazingly smart! While there, I gave a tutorial on using Twisted.Web: Slides are here

While there I started working on Gnome Panel Applets for CVSToys and then enventually for BuildBot with the help of warner. The hard part at first was just figuring out how to integrate the applet with the Twisted mainloop. Now I have to learn how to write Gnome programs. Being busy with school and other things hasn't allowed time to really write any code.

I am also really getting into Woven. fzZzy has started writing some docs and it is really exciting. It seems like this is the way that writing web apps was meant to be.

10 Nov 2002 (updated 10 Nov 2002 at 05:39 UTC) »

I haven't posted here in nearly two years though I read these diaries near daily. I guess I'm not doing enough development to feel like anyone would be interested in my life.

Stevey: Pardon my ignorance, but what is your main beef with the example code you posted in your entry today? Is it that they don't use strncpy and strncat? I'm assuming that it is a security problem given your current project.

*sighs* Work is frustrating yet again. It has turned into being more than just frustrated with the tools and operating system I am being forced to use, to being frustrated with my own abilities. I am starting to feel as if there is not anything I can do at this job and be sucessful at it. I am constantly having to rely on my co-workers and manager for help. I really don't know what to do. It's a matter of confidence and determination I suppose. I just wish I could make a change soon. On the Free Software front, I'm giving a presentation at my local LUG tomorrow night on the 2.4 version of the kernel. And, on February 3, I am giving a 2 hour workshop on Beginning Emacs. I am excited to actually be helping people get started using Free Software. It was because of an Emacs presentation that I started using it.

Well, I haven't done much toward contributing to Free Software a lot lately. I haven't even done a lot of programming in general on Linux lately either. At work, I have been stuck doing Windows development for the last three months and it has been a frustrating experience. But, as of late, I have started to get the desire to start contributing in a meaningful way to Free Software. Because of my frustrations, my confidence in my skills has waned. I'm hoping to at least start out by helping with documentation efforts, particularly with the Python project. I also have some ideas for things written in Elisp for my use in Emacs. I just hope to find the motivation to start exploring and become a true hacker.

1 older entry...

New Advogato Features

New HTML Parser: The long-awaited libxml2 based HTML parser code is live. It needs further work but already handles most markup better than the original parser.

Keep up with the latest Advogato features by reading the Advogato status blog.

If you're a C programmer with some spare time, take a look at the mod_virgule project page and help us with one of the tasks on the ToDo list!