Last Updated
MapA Film by Michael Levine In Theaters April 20th from Menemsha Films Synopsis: As it has since 1925, the Streit’s matzo factory sits in a low-slung tenement b…
Why Webmentions in WordPress
Over the last few years, as the smartphone has become more popular, we’ve moved from being excited about notifications to being worried about notification overload. Companies are hoping to get more data on us so they can tailor their interactions with us. We install analytics on our websites to determine how many visitors we get and what they did on our sites. At its simplest level, a linkback is a way of having a site(the sender) notify another site(the receiver) when it links to it. It sounds like something we would want to know and would have many potential uses.
WordPress has two built in linkback protocols: Trackback and Pingback. To many users, they seem like the appendix of WordPress. People don’t care about them until they are exploited by bad actors. There is a newer protocol, the first linkback protocol to be accepted as a draft specification from the W3C, the main standards organization for the Internet, called Webmention.
Webmention improves upon the previous protocols. It uses an HTTP POST request to send two parameters…the source and target URL. By comparison, trackback, which also uses HTTP, only sends the source URL and does nothing in its WordPress form to verify the trackback is legitimate. Pingback, like webmention, sends both source and target, but it uses XML-RPC as opposed to a POST request. XML-RPC has had some controversy around it as well. There are also several practices that are recommended by the Webmention specification that would make an implementation more robust than the implementations of Trackback and Pingback.
WordPress has a longstanding reputation of commitment to backward compatibility and isn’t going to flick the switch and remove pingback and trackback code from WordPress Core so easily, with or without a replacement. It makes sense to make improvements to the older protocols concurrently with adopting webmentions, although it would also be a good idea to consider gradually deprecate the older protocols in favor of webmentions. Trackbacks have no source validation built into WordPress as it was not part of the original specification. The pingback code could use some love. However, with some refactoring, new webmention code could be used to update the older pingback/trackback code as well. This would create a better linkback system overall.
Even if webmention is a better delivery system for linkbacks than its predecessors, no one but a developer cares about protocols. People care about what it can do for you. All of the protocols converge in one place. Once you know a site has linked to you, what do you do with that information? That is where the exciting parts come in and where WordPress falls flat.
If one person would like to speak up in favor of the presentation of […]Useless Context. […], I’d love to hear it. The burden of presentation and use in a linkback relationship goes to the receiver and can be infinitely extensible. What WordPress lacks is a good base presentation for people to enhance and some innovative examples from the community of usage. If you can parse a page of HTML, you can come up with richer content and relationships by marking up the elements of a post with Microformats. WordPress already has some microformats embedded in most WordPress sites and supporting in many themes, and there are other efforts that can be made to better improve this side of things. But there are limitless possibilities, for example:
- Want to reply to a post on WP Tavern on your own site? Send a webmention(or more archaic protocol) to WP Tavern with the URL of your reply. WP Tavern could parse your site and generates an actual comment from it.
- Why only a reply? What about other types of relationships? Liking a post, for example?
- Even just simple administrator stats can be interesting and useful.
So, why not do all of this with an API? We have a new one coming into WordPress…and that’s a great thing I’m fully in favor of. But reading content from a website using an API creates a burden on both sides of the relationship. I have to write an API and you have to learn how to use it if you want to interface with my site. Why shouldn’t your website be your API?
If you are interested in trying webmention support, there is a basic plugin for WordPress. There is even a second plugin that uses Microformats2 plus linkbacks to generate richer comments. Both of these can be used to develop the more robust implementation that would be required for WordPress Core. For more information on how people have been using webmentions, visit IndieWebCamp.
Libraries often put me in a rhapsody, but never quite like this!
Comment Improvements in WordPress 4.4/4.5
Insert Comment with Meta
wp_insert_comment has a modification that allows comment meta to be added to a comment at the time it is created.
// If metadata is provided, store it.
if( isset($commentdata['comment_meta'] ) &&is_array($commentdata['comment_meta'] ) ) {
foreach($commentdata['comment_meta']as$meta_key=>$meta_value) {
add_comment_meta($comment->comment_ID,$meta_key,$meta_value, true );
}
}
do_action( 'comment_post', $comment_ID, $commentdata['comment_approved'], $commentdata );
Music video for “Shed a Little Light” produced in honor of Martin Luther King, Jr. Day.
Figuring Out Music Genres
The hardest thing about digital music for me is metadata. Being able to play music of a specific genre, group, etc. is useful, as well as my interest on the year of the song released. Genre is a particular issue because poorly selected genres make it more difficult to find the type of music you are in the mood for.
In researching this issue now, I came across the advice of Dan Gravell, who maintains a commercial product named Bliss that he wrote to solve his own digital music collection problems and sells. In his article, MP3 genres: one size does not fit all, he comments that a problem for owners of large MP3 collections is out of control genres. The solution he suggests mirrors what I was thinking. Come up with the genres you will allow in your collection and make sure all your music complies with this list. Here’s his starting list, compiled from the common elements of four different online music databases.
The Fundamental Music Genre List
- Blues
- Classical
- Country
- Electronic
- Folk
- Jazz
- New age
- Reggae
- Rock
If you try to apply a list like this to a collection, you end up with a lack of balance. I, for example, have no Electronic in my collection that I know of. This is when you need to split your genres. What some would call sub-genres get promoted to better divide your music. You can then merge categories. For example, in my collection, Blues and Jazz would have to merge as I don’t have a large collection of either.
In addition to loading genres into metadata, they are a part of my filesystem organization. I still organize music into a directory structure of Genre -> Artist -> Album. Now, the simplest thing to do would be to eliminate that and go to Artist -> Album, but estimates are I have several hundred albums and artists. And multi-artist compilations seem to confuse it more.
By organizing it, I am hoping to get into the areas of my collection I forget I have and listen to more diverse playlists. It’s going to be a while though. At least I’m not alone in my problem.
A few years ago, tech personality Leo Laporte referring to the Hydrox Cookie as an Oreo knockoff caused me to write off a letter regarding this.
It isn’t as if iOS hasn’t had its share of scandals recently, including their recent app usage of restricted functions…functions Apple thought they could restrict by scanning for them in the code. But, either way…
The MTP issue isn’t a Samsung one. It was thought a security issue to allow direct access to the filesystem of the device by USB cable. The old solution was partitioning, but it meant a hard limit on app installs. So, MTP allows a single filesystem, but the media coming out securely and easily(well, not in your case). The MTP experience on a computer is definitely a problem though.
WhatsApp no making it easy to work with their data is a symptom of the bigger data portability problem. I really think your problem isn’t Android and iOS and the bad transfer experience. The issue is that few companies makes it easy to take data out of their siloed systems. Most people will give up on the effort.
Music video for “Minyan Man,” originally performed by Shlock Rock Video by Uri Westrich Uri@driveinproductions.com Minyan Man is featured on Shlock Rock’s la…
“If I have seen further it is by standing on the shoulders of giants.“
Post Kinds Improvements
Picking the right icons to represent the kinds has always been a challenge, because they were part of an icon font. Icon fonts are ‘fake’ fonts that are actually composed of symbols. The latest version of Post Kinds under development switches to SVG. SVG is a text format that defines a complex shape. As it is text, it can be embedded directly in the page. You can compare the two below.


Version 2.3.0
- Enable the Jam post type. A Jam is used to share a particularly meaningful song you are listening to. distinguished from the existing Listen type, which is a more passive type designed to store songs you have listened to.
- Support for start and end date, which will be used to enhance activity kinds. This will prepare for support for events, travel, and exercise in a future version. I really want to build travel in soon, but I have a lot to put in before all the pieces come together.
- Improvements in parsing to bring in better and more consistent data from URLs provided.
- Help within the plugin. This will be the first version to add built-in help.
This version will not go out until the above, as well as improved presentation(which I’m currently building) are complete. I’ve been working on the presentation rewrite for over a week now, trying to make it a significant improvement over the previous incarnation.
Dick Van Dyke D23 – Fidelity Fiduciary Bank
The 1986 Kennedy Space Center Mystery
I was able to locate these images from that visit.
I also apparently saw an IMAX movie. The dream is alive was released in June of 1985 and prominently featured the Challenger. I do not remember much of that trip clearly.
Attempts to narrow down when I was there exactly have intrigued me, because January of 1986 also marked the Challenger disaster. I wonder how close I was to one of the sad chapters in American Space Exploration.
The Challenger was scheduled to depart the 22nd of January, but it ultimately didn’t happen till the 28th due to a combination of factors including a prediction of inclimate weather for January 26th. In the pictures, I am carrying an umbrella.
Martin Luther King Day was observed nationally for the first time on Monday January 20th, 1986. From recollections of the other parties, we left Florida after that and were back in New York when the disaster occurred.
That would put the trip sometime in the range between Monday, January 6 and Friday, January 17th. We know the previous mission, STS-61C, operated by the Columbia, had an aborted launch on the 6th, and was cancelled on the 7th due bad weather at the contingency landing sites in Senegal and Spain. There was a mechanical problem on the 9th, and on the 10th there was heavy rainfall at the launch area at KSC. It finally launched on the 12th and it later didn’t land at Kennedy Space Center on January 18th due to inclimate weather, ultimately landing at Edwards Airforce Base.
If there had been a launch attempt any day we were there, it would be something that would likely stick in our minds. There is a vague recollection of the shuttle being on the launch pad. But it was most likely the Columbia, not the Challenger as suggested. But who knows?
The final clue is a trip to Disney, taken as part of the same trip, which shows a sunny day. So, we need two days together, one inclimate, one nice…not hard in Florida weather. But lacking concrete historical weather data for 1986(anyone have access to that information?), or more clues, it seems unlikely I can narrow is down further.
The Columbia, which operated STS-61C, disintegrated on February 1, 2003 on reentry. The two shuttle disasters claimed the lives of 14 dedicated men and women.
The search is ongoing for additional visuals from this trip. The mystery remains.



