Categories
Apps

Poster Updated for iOS 7

Federico has the news:

To my surprise, the app – which was pulled from the App Store after the acquisition – has been updated to version 3.0 this week, adding iOS 7 compatibility and fixes. There are no new notable additions, but the entire Poster UI has been updated for iOS 7 and there is a new line height option in the preview menu; Witkin got rid of textures and iOS 6-style buttons, adding subtle animations for navigation and other menus. It's still the same Poster, only with an iOS 7 interface and less crashes.

However, the bad news is that, because the app isn't available on the App Store anymore, only old customers can download the updated version. If you bought Poster in the past, open the App Store, find the Purchased section, and look for Poster; tap Open/Download, and the app should be reinstalled with the new version 3.0 that Witkin made for iOS 7.

Talk about a cool, unexpected, surprise.

Categories
Apps Culture Internet Technology

Oops

I mean, I now can post with multiple categories per post.

Categories
Uncategorized

Upgrade to my Editorial Posting Workflow

I can now post with multiple categories per post.

Categories
Apps

Post with Editorial

It took some configuration, but now it works.

Categories
Culture

Tumblr users flee to WordPress

I find it hard to believe that people are really *that* scared of Yahoo acquiring Tumblr.[^fn1]

[^fn1]: I love WordPress. I think it is the best blogging platform out there. I do not think it is particularly strong for how a lot of people use Tumblr (namely, rampant reblogging of content.)

Categories
Apps

Poster, my favorite WordPress app for iOS, updated to 2.0

Tons of improvements to a really great iOS app. Simply **the** best way to post your WordPress blog from iOS. It is currently [$2.99 in the App Store](http://click.linksynergy.com/fs-bin/stat?id=r*bqlTuiXSo&offerid=146261&type=3&subid=0&tmpid=1826&RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fposter-wordpress-blog-editor%252Fid549006481%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30)[^fn1]. Highly Recommended.

[^fn1]: Affiliate Link (as is the title link.)

Categories
Productivty

Dave Caolo with a Brilliant RSS to WordPress Workflow

Dave Caolo just posted a tremendous workflow that helps gets RSS items into WordPress by using [IFTTT](http://ifttt.com). It takes about 5 minutes to implement[^fn1] and should really help queue up articles that you want to post to your blog. I cannot say enough about how impressed I am with this.

[^fn1]: 5 minutes, assuming you already have an IFTTT account. Signing up for a new account might make things take a little longer.

Categories
Apps Internet Software

Poster – My Favorite iOS WordPress Editor – Goes Universal

[Poster](http://click.linksynergy.com/fs-bin/stat?id=r*bqlTuiXSo&offerid=146261&type=3&subid=0&tmpid=1826&RD_PARM1=http%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fposter-wordpress-blog-editor%252Fid549006481%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30)[^f5818] is my favorite way to update this site. It supports Markdown, [TextExpander Touch](http://click.linksynergy.com/fs-bin/stat?id=r*bqlTuiXSo&offerid=146261&type=3&subid=0&tmpid=1826&RD_PARM1=httpThursday662662itunes.apple.com662us662app662textexpander662id326180690662mt?8?o?4PMartnerId?30) text expansion and just feels good to use. I highly recommend it.

[^f5818]: Affiliate Link (as is the post link).

Categories
Programming

Learning to Scale WordPress

If you run a WordPress blog that gets anything more than “decent” traffic, you are going to want to add this site to your RSS reader.

(via [Jonathan Christoper](http://mondaybynoon.com/20120904/scaling-wordpress/))

Categories
Programming

Avoid Relative URLs in your Web Development

This was always a pet peeve of mine back in my web development days[^hc].

(via [Jonathan Christopher](http://mondaybynoon.com/20120904/why-relative-urls-should-be-forbidden-for-web-developers/))

[^hc]: Using absolute URLs is different from hardcoding the url or domain in the URL. Please do not hardcode domains.

Categories
Software

WordPress iOS Gets Major UI Update

It looks nicer and seems, during some initial use, to run faster.

Categories
Internet Programming

Scheduling Posts in WordPress

When I was more active on [my photography site](http://johnkivus.com), I would normally queue up batches of photos to be posted. For example, I might spend 3-4 hours getting together 6-7 posts that would be rolled out over the upcoming few weeks. I could then use WordPress’ built in scheduling features to decide when those posts would roll out. I have noticed recently, however, that the scheduling of posts on this site seems not to be working. Instead of my post actually publishing when the scheduled time arrived, I was simply getting a “Missed Schedule” marking next to the post. I solved this issue with a two tiered solution:

## Cron Job to Call the Website

Though I get decent traffic on the site, visitors normally come in bunches. I, therefore, cannot reliably estimate what times someone will hit the site and fire off the publish functionality. To help remove some of the uncertainty associated with this, I created a very basic cron job[^cron] that simply calls the website every 5 minutes:

*/5 * * * * /[path]/[script].sh

where [path] is some location for your script, and [script.sh] contains simply[^ex]

#!/bin/bash
curl https://johnkiv.us

Unfortunately, I would still run into some “Missed Schedule” errors, depending on when I would set my posts to publish.

## WP Plugin

In order to fix those posts that were sent to the purgatory of “Missed Schedule” status, I added the [WP Missed Schedule](http://wordpress.org/extend/plugins/wp-missed-schedule/) plugin to my installation. This plugin works as advertised. It “fixes” those posts that were in the “Missed Schedule” status and publishes them.

## Summary

Using the above two steps, I have once again been able to schedule posts for certain times. As you can probably tell from my explanation of the process, it does **not** guarantee that your post will go out at the exact time that you specified. Instead. it ends up setting a window within which the post might go out[^length]. For what I’m doing currently, that’s more than okay. If, however, you want to be more precise with when your posts go up, you might want to look for a different alternative[^thinking].

[^length]: Since the cron job runs every 5 minutes, and the “fix” of mixed posts plugin runs every 5 minutes, the longest you should have to wait for a post to publish after your publish time 10 minutes.

[^thinking]: One possible idea might be to set specific daily times you want to post. You could set various posts to publish at those times and then you could set you cron job to run at those times. For anything dealing with an embargo or some other time of confidentiality agreement, I would definitely recommend doing the post manually at the correct time.

[^ex]: It, of course, has to be marked executable, etc…

[^cron]: If you’re unfamiliar with cron, some decent resources are available at [unixgeeks.org](http://www.unixgeeks.org/security/newbie/unix/cron-1.html), [thegeekstuff.com](http://www.thegeekstuff.com/2011/07/cron-every-5-minutes/), and [help.unbuntu.com](https://help.ubuntu.com/community/CronHowto)