I am back. Thanks for all those who wished me while in my absence.
Popularity: 80%
I am back. Thanks for all those who wished me while in my absence.
Popularity: 80%
The older version of feedvalidator that I was using automatically imported timeoutsocket, whether it used it or not. This was borking SSL feeds (such as gmail) from working. I have it fixed locally, and the next update of FeedLounge should have the fixes.
And of course, FeedLounge will stop crying about the Atom 1.0 namespaces, which is a good thing, since our feedparser was already updated to support them.
Oh, and the obligatory error in Python for Google to find:
ssl() argument 1 must be _socket.socket, not _socketobject
Popularity: 72%
Fairy simple, and I even tested it for you
private String stripPredicatesFromXPath(String xpath) {
if (xpath == null) {
return xpath;
}
Pattern pattern = Pattern.compile("\\x5B[^\\x5B\\x5D]*\\x5D");
Matcher matcher = pattern.matcher(xpath);
String result = matcher.replaceAll("");
return result;
}
Popularity: 74%
curl -O http://www.monkey.org/~provos/libevent-1.1a.tar.gz
tar zxf libevent-1.1a.tar.gz
cd libevent-1.1a
./configure
make
make install
cd ..
mv libevent-1.1a.tar.gz ../installed/
curl -O http://www.danga.com/memcached/dist/memcached-1.1.12.tar.gz
tar zxf memcached-1.1.12.tar.gz
cd memcached-1.1.12
./configure
make
make install
mv memcached-1.1.12.tar.gz ../installed
Then add /usr/local/lib to LD_LIBRARY_PATH in your .bash_profile
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
export LD_LIBRARY_PATH
Then test:
memcached -m 512 -u nobody -vv
Popularity: 88%
psql -U username -d databasename
While in psql, just type:
\d+ tablename
Popularity: 100%
Free and Open Source software has allowed me personally to build some wonderful things in my life, and that is the main reason for my contributions back.
Off the top of my head, in developing FeedLounge, we have used:
I want to thank all of these projects, and also all of the ones that I have used and not mentioned. May 2006 bring even more great software to the development desktops and laptops of the world.
Popularity: 69%