Great article on cracking and securing WordPress
This article discusses various exploits against WP. http://www-personal.umich.edu/~markmont/awp/ Update you plugins!
Social Networks for the life of the world
This article discusses various exploits against WP. http://www-personal.umich.edu/~markmont/awp/ Update you plugins!
Here’s an interesting data set. This table contains vaccination rates for kindergartners by town and school in Massachusetts. It shows immunization rates for DTaP (Diptheria, Tetanus, and Pertussis), Polio, MMR (Measles, Mumps, Rubella), and Hepatitis B. It also lists immunity to chickenpox. It’s published here as an Excel file. That makes it easier to numbercrunch, … Read more
These are notes on digital signage on the Google Chromecast. Google’s docs https://cast.google.com/publish/#/overview Console https://developers.google.com/cast/docs/custom_receiver Writeup SaaS vendors. https://www.signsimple.com/ (local launch) http://launch.signagely.com/ (not up yet) Chromecast code repos https://github.com/pjjanak/chromecast-hello-world "C" is for Chromecast: hacking digital signage Limitations The Chromecast device does a good job of displaying media at 1080p resolution. However, any web … Read more
Mr. Ognjen Duraskovic first got in touch with me with an offer to translate my MMWW WordPress plugin to Spanish and Serbian, which of course, I gratefully accepted. Gracias! хвала! It was an extra-cool offer because MMWW contains all kinds of readable text strings for the photographic details embedded in Exif metatdata. He dealt with all … Read more
I’ve spent enough time goofing around with location-finder software that it’s worth writing up how to do it. Of course, finding distances on the surface of the earth means using Great Circle distances, worked out with the Haversine formula, also called the Spherical Cosine Law formula. The problem is this: Given a table of … Read more
The people at Mozilla have produced a transcoding JPEG optimizer. https://github.com/mozilla/mozjpeg/releases This thing is sweet: it takes ordinary JPEG files and recompresses them much more efficiently without making the images deteriorate. It uses the long-standing and well-tested Independent JPEG Group reference implementation, and adds a bunch of optimizations. It’s not built for GUI users; it’s … Read more
Here are some tips for creating media with WordPress. Directions for Editing Media
Here’s a list of catalogs of scams and hoaxes, for your debunking pleasure. http://www.techsupportalert.com/content/really-true-or-it-hoax-eight-places-find-out.htm
When you’re extracting summaries of information from a database, sometimes rows are missing. For example, if you are keeping track of number of customers by day, you might use a query like this: View the code on Gist. You might get a result set like this: 2014-03-07 122 2014-03-08 355 2014-03-10 234 2014-03-11 119 Notice … Read more
This Vincenty formula is a more numerically stable version of the spherical cosine law formula (commonly and wrongly known as the Haversine formula) for computing great circle distances. The question of numerical stability comes up specifically when the distances between points are small. In those cases the cosine is very close to 1, so the … Read more