Saturday, March 30, 2002
Running Microsoft Word/Powerpoint/Excel on my Linux laptop
Wednesday, March 20, 2002
Sunday, March 17, 2002
Integrating blosxom with Evolution
Thursday, March 14, 2002
kio_fish: Use ssh to access files via konqueror
BTW, depending on your KDE installation, you may need to also install liblcms
Take a look.
Sunday, March 10, 2002
Destination Imagination
Thursday, March 7, 2002
blosxom-0+2i patch
Wednesday, March 6, 2002
Eye Candy/Icons
I stumbled on a bunch of cool icon/background sites. http://www.iconfactory.com/
Tuesday, March 5, 2002
Customizing blosxom with style(sheets)
The Blosxom doc mentions customizing the look and feel using style sheets and mentions blosxomEntry, blosxomDate, blosxomTime, blosxomTitle and blosxomBody. This is what my initial stab at an head.html looks like:
<head>
<STYLE TYPE-"type/css">
<!--
BODY {background: #FFFFFF}
.blosxomEntry {background: #ffffff; color: #000000}
.blosxomDate {font-family: Sans-serif,Verdana,Geneva,Arial; font-size: 15pt; color: #000000}
.blosxomTime {font-family: sans-serif, Times, braggadocio, fixed}
.blosxomTitle {font-family: Sans-serif, arial}
.blosxomBody {text-decoration: italicize; color: #666666} -->
</STYLE>
</head>
Write on the laptop, publish on website
#!/bin/bash
rsync --exclude '*~' -azv -e ssh ~/public_html/blog/*.txt nozell@www.nozell.com:~/HTML/marc/blog/
Monday, March 4, 2002
Write on the laptop, publish on website
one-liner to use rsync to securely update my blog notes. If you use
ssh-agent, you won't even need to type your ssh password more than
once a day.
#!/bin/bash
rsync --exclude '*~' -azv -e ssh ~/public_html/blog/*.txt nozell@www.nozell.com
:~/HTML/marc/blog/