-
20 New, Useful And Promising WordPress Plugins | 1stwebdesigner – Love In Design
Includes a simple event registration plugin too.
Posted from Diigo. The rest of my favorite links are here.
20 New, Useful And Promising WordPress Plugins | 1stwebdesigner – Love In Design
Includes a simple event registration plugin too.
Posted from Diigo. The rest of my favorite links are here.
Thank you, Kim for this great design (based on some updates to the Stranger Studios site coming soon). Let us know what you think.
WordPress Themes, HTML Templates – ThemeForest
ThemeForest is a marketplace for buying and selling website templates and CMS themes for all sorts of products, like WordPress, Drupal and Joomla.
ThemeForest is a marketplace for buying and selling
website templates and CMS themes for all sorts of
products, like WordPress, Drupal and Joomla.
Posted from Diigo. The rest of my favorite links are here.
Posted from Diigo. The rest of my favorite links are here.
Posted from Diigo. The rest of my favorite links are here.
Google Analytics API Now In Public Beta, Desktop Reporting Takes Stats Offline
Need to create a WordPress plugin to show Analytics stats on blog posts.
Posted from Diigo. The rest of my favorite links are here.
Daily Kos: Why yesterday’s protests were stupid
Now’s as good a time as any to take a break from mocking the teabaggers in favor of a more serious look at what they accomplished yesterday.
I’ve never made a secret for my distaste of most street protests, and of groups like Code Pink that think they are accomplishing anything with their street theater. But when I set out to write Taking on the System, my book on effective organizing in the 21st century, I had to dig deep to figure out why I didn’t like them, and how to differentiate the usual ineffective ANSWER-organized protests with those that actually had a positive effect (e.g. the Jena Six and pro-immigration protests of a few years ago).
I finally determined that for a protest to be effective it needed to:
be novel and/or unexpected
have a sympathetic, singular, and media-friendly message
provide great visuals
tap into a hot-button and timely issue.
Posted from Diigo. The rest of my favorite links are here.
Coder’s Talk: VBScript to Replace Underscores in Filename with Spaces for All Files in a Folder
Script to rename all files in a directory… to e.g. replace underscores with spaces… I altered to do the reverse.
‘ create the filesystem object
Set fso = WScript.CreateObject(“Scripting.FileSystemObject”)
‘ get current folder
Set fol = fso.GetFolder(“.”)
‘ go thru each files in the folder
For Each fil In fol.Files
‘ check if the file name contains underscore
If InStr(1, fil.Name, “_”) <> 0 Then
‘ replace underscore with space
sName = Replace(fil.Name, “_”, ” “)
‘ rename the file
fil.Name = sName
End If
Next
‘ echo the job is completed
WScript.Echo “Completed!”
Posted from Diigo. The rest of my favorite links are here.
Posted from Diigo. The rest of my favorite links are here.
Posted from Diigo. The rest of my favorite links are here.