http://www.h-online.com/open/news/item/Linux-root-exploit-due-to-memory-access-Update-2-1419834.html
This is where I post snippets of information about Information Technology. It is mostly for my own reference but I hope that others will find it useful and comments are welcome.
Wednesday, January 25, 2012
Wednesday, January 18, 2012
DNSSEC clients for chrome and firefox!
6:19 AM (8 hours ago) | ||||
|
Ondřej,
That's awesome! Thanks for passing along the news and I've added a page about the extension to our Deploy360 site at:
Previously I had added a page on the Firefox extension:
Although after I had posted that page there was an ensuing discussion in multiple different channels about what the best user experience for DNSSEC really is. I tried to capture those discussion points in this blog post:
Again, as a Chrome user I have to say THANKS for creating the extension and I look forward to seeing how it evolves. (and hopefully Chrome will add the missing API at some point).
Regards,
Dan
Wednesday, January 11, 2012
How to list columns of a sqlite table
http://stackoverflow.com/questions/604939/how-can-i-get-the-list-of-a-columns-in-a-table-for-a-sqlite-database
sqlite> pragma table_info(people);
0|first_name|varchar|0||0
1|last_name|varchar|0||0
2|email_address|varchar|0||0
sqlite> pragma table_info(people);
0|first_name|varchar|0||0
1|last_name|varchar|0||0
2|email_address|varchar|0||0
Subscribe to:
Posts (Atom)