Following is a link to a SVN cheat sheet.? It is also posted to this blog entry as an attachment should the page no longer be available.→ Continue reading “Subversion Quick Reference Card”
Author: rchapin
Drive Relevant Traffic to Your Site By Participating in Other Forums
Our clients and prospects always ask us how they can drive more traffic to their website. There are a number of ways to do so, including pay-per-click advertising, SEO (Search Engine Optimization), and e-mail newsletters, to name a few.
Another great method that has had great success with all types of websites is participating in other website forums. Doing so helps to drive relevant and more qualified traffic to your site.
Forums have become a great source of → Continue reading “Drive Relevant Traffic to Your Site By Participating in Other Forums”
Mozilla RSS Feed Icons
Big Square Blinking Cursor in CRiSP
Now and again, I’ll enable some sort of feature in CRiSP and not be sure either what I pressed or what I enabled.
If you ever find yourself with the big, blinking, square, cursor that overwrites and does not insert text just press Alt-I. → Continue reading “Big Square Blinking Cursor in CRiSP”
Captivate to Flash Communication
If you have ever wanted to use a SWF generated in Captivate in another Flash application, here is a good article on how to get Captivate to talk to a hosting Flash app.→ Continue reading “Captivate to Flash Communication”
FaceBook Allows 3rd Party Advertisers to Use Your Photos Without Your Permission
or, how to modify your setting such that your content is better protected.
kdawson posted an article on Slashdot about the fact that FaceBook is allowing third party advertisers to use your photos in their ads. The article also includes a link to an article about how to modify your settings so that your photos don’t show up.
Here is how to make the change:
Go to: Settings -> Privacy -> News Feed and Wall -> Facebook Ads → Continue reading “FaceBook Allows 3rd Party Advertisers to Use Your Photos Without Your Permission”
Searching for and counting duplicate entries in MySQL
Let’s say you have a table and you want to know how many rows have the same e-mail adress.
SELECT count(*), email FROM email_list GROUP BY email HAVING count(*)>1 ORDER BY count(*) DESC;→ Continue reading “Searching for and counting duplicate entries in MySQL”
Quick HowTo Create a Subversion Repository
This assumes that you are creating the repo on your local drive.
First, create the directory in which you’ll store your repo.
Then, use svnadmin to create the repository in that directory:
svnadmin create /path/to/directory/
The typical convention is to set up an initial directory structure as follows:
/trunk
/branches
/tags
To do so, do the following:
mkdir svntemp
cd svntemp
mkdir trunk branches tags
svn import -m ‘Import of initial directory structure’ file:///path/to/repo
Now cd to whatever working directory → Continue reading “Quick HowTo Create a Subversion Repository”
Launch Your New or Updated Website Early and Update it Often
When designing and developing a new website it is tempting to try to do everything before launching it. My recommendation is to launch your new or updated site early and then make regular, incremental updates.
A good website is never finished; you are always making updates/changes/revisions to it. If you build your site on a flexible framework, one with an easy-to-use content management system, then it makes it that much easier to go back on a regular basis → Continue reading “Launch Your New or Updated Website Early and Update it Often”
Converting a .VCF file to .CSV
This online utility will let you convert a set of vcards file into either a .csv, or an LDIF file that youcan use to import into Thunderbird or other mail programs.
http://labs.brotherli.ch/vcfconvert/→ Continue reading “Converting a .VCF file to .CSV”