These are links associated with recent searches I’ve done. They’re not difficult enough to warrant to their own posts but still super useful.
The Blog Authorship CorpusThe Blog Authorship Corpus consists of the collected posts of 19,320 bloggers gathered from blogger.com in August 2004. The corpus incorporates a total of 681,288 posts and over 140 million words - or approximately 35 posts and 7250 words per person.
Tags: Ajax, Blogs, Calendar, Corpus, Data, Datepicker, Drivers, Excel, Forms, Ipod, Itunes, Javascript, Linux, Nlp, Path, Pdf, Pfam, Python, Tools, Ubuntu, Wifi, Win32, Wireless
Posted by Greg Pinero (Primary Searcher) as Uncategorized at 3:30 AM MST
Comments Off
sudo /etc/init.d/mysql restart
Posted by Greg Pinero (Primary Searcher) as Ubuntu, SQL at 10:11 AM MST
Comments Off
Just use something like this in your CSS styes:
table {
empty-cells:show;
border-collapse:collapse;
}
empty-cells works in Firefox, and border-collapse unintuitively works in IE to not collapse the cells.
Posted by Greg Pinero (Primary Searcher) as Other at 1:56 PM MST
Comments Off
Have you ever wanted to sort or filter by the background color of cells in Excel? There are no functions built into Excel to do such a thing, but you can still do it with this simple user defined function:
Function Color(MyRef As Range) As Long
Color = MyRef.Interior.ColorIndex
End Function
I found installing it a bit convoluted (at least in Excel 2003). First you want to make sure you get it into your personal workbook so it will always be available to you. But when I went to the Visual Basic editor in Excel, it wouldn’t show me my personal workbook.
What I did was record a simple macro in Excel, being sure to select to store it in the “personal macro workbook” option. Do something simple like type in a cell, and hit stop recording. Then go into the Visual Basic editor again, and you can see your personal workbook (PERSONAL.XLS). Place the function above in the same module as the macro you just recorded. You can delete the macro you recorded now.
To use the function you have to call it in a funny way. Thus to get the color of cell A3 you would type in a cell:
=PERSONAL.XLS!Color(A3)
And now you can get numeric values for the background colors in your cells! Yay!
Posted by Greg Pinero (Primary Searcher) as Excel at 4:45 PM MST
1 Comment »
These are links associated with recent searches I’ve done. They’re not difficult enough to warrant to their own posts but still super useful.
Color Palette GeneratorEnter the URL of an image to get a color palette that matches the image. This is useful for coming up with a website color palette that matches a key image a client wants to work with.
Tags: Color, Expander, Flash, Free, Games, Graphicdesign, Log, Mysql, Pfam, Snippets, Task, Text, Tool, Typing, Ubuntu, Utility, Webdesign, Win32
Posted by Greg Pinero (Primary Searcher) as Uncategorized at 3:30 AM MST
Comments Off