ComputerStuff()

WordPress Static Front Page and Custom Blog Page Templates

Correct Handling of Static Front Page and Custom Blog Posts Index Template Recently, there have been several Themes submitted – and approved – that include a template-blog.php (or page-blog.php) custom page template, or that include a static front page template (front-page.php) that doesn’t properly account for the user configuration to display the blog posts index…

Read More...

WordPress Plugin Boilerplate Generator | Ready to use WordPress Plugin Boilerplate

YES WordPress Plugin Boiler Plate… WordPress Plugin Boilerplate Generator, Stop wasting time searching and replacing text strings manually Source: WordPress Plugin Boilerplate Generator | Ready to use WordPress Plugin Boilerplate

Read More...

WordPress-Gear

Welcome WPGear.org is a compendium of useful developer tools for working with WordPress. How WordPress-Gear is meant to be community driven, please feel free to jump in and add/remove any useful information via GitHub. The easiest way to contribute is to have a GitHub account then click index.md, then click edit. This will automatically fork…

Read More...

BackWPUp – Download WordPress Backup Plugin

I loved BackWPUp WordPress plugin. I’ve been using it on WordPress Sites for years to backup my files and databases. Today I went to install it on a new WordPress site and it vanished… Here’s an archived copy of the latest version 3.3 released as GPLv3. Download BackWPUp Here Here’s a link to purchase BackWPUp…

Read More...

Rasmus Lerdorf – Inventor of PHP

Rasmus Lerdorf Rasmus Lerdorf (born 22 November 1968) is a Danish–Greenlandic programmer and the author of the first version of the PHP web programming language. I did not develop the PHP we know today. Dozens, if not hundreds of people, developed PHP. I was simply the first developer. sitepoint.com I actually hate programming, but I…

Read More...

computer generated impressionist landscape paintings

I need to do this… Creating 3d landscapes with three.js and then post processing with imagick.

Read More...

Cache is the new RAM

    Fun reading about making databases / the internet faster… With cool drawings and stuff. I love the GOTO 1 reference… Source: Cache is the new RAM

Read More...

WordPress MySQL Query Get Posts by Category ID

SELECT DISTINCT ID, post_title, post_name, guid, post_date, post_content FROM wp_posts AS p INNER JOIN wp_term_relationships AS tr ON ( p.ID = tr.object_id ) INNER JOIN wp_term_taxonomy AS tt ON ( tr.term_taxonomy_id = tt.term_taxonomy_id AND taxonomy = ‘category’ AND tt.term_id IN ( 16 ) ) ORDER BY id DESC

Read More...

List of Fun Internet Links…

  http://www.metmuseum.org – View super High Def photos and scans of over 400,000 pieces of art. http://www.myabandonware.com – Download or stream thousands of classic games from the 80’s and 90’s. http://www.youtube-mp3.org – Download any youtube video in mp3 format. http://www.myfonts.com – Good resource for figuring out what font was used in any document. http://camelcamelcamel.com –…

Read More...

View Javascript Events Fired on Element in Google Chrome

Hit F12 or open Dev Tools Click the Sources tab On right-hand side, scroll down to “Event Listener”, and expand tree Click on the events you want to listen for. Interact with the target element, if they fire you will get a break point in the debugger Similarly, you can right click on the target element…

Read More...

Mac OS X Switch Screenshot from .PNG to .JPG Change Screen Shot file to .jpg on Mac

Change the screenshot format to JPG Type or paste the following line into a Terminal window and hit the Return key to execute the command: defaults write com.apple.screencapture type jpg;killall SystemUIServer

Read More...

HTTrack Website Copier – Download Entire Site(s) – Open Source – Free

Downloads entire sites via command line / shell / terminal that thing you type commands into. It allows you to download a World Wide Web site from the Internet to a local directory, building recursively all directories, getting HTML, images, and other files from the server to your computer. HTTrack arranges the original site’s relative…

Read More...

The Go Programming Language

Go is an open source programming language that makes it easy to build simple, reliable, and efficient software. The Go Programming Language.

Read More...

WordPress MySQL Find and Replace Text String in all Posts / Pages using PHPMyAdmin

So you need to replace text in your wordpress Posts / Pages. Open up PHPMyAdmin and enter this SQL query. First: Export your wp_posts table so you have a backup if this messes stuff up. Always back up your DB before running MySQL commands. SQL: update wp_posts set post_content = replace(post_content, ‘removeText’, ‘replaceText’) where instr(post_content, ‘removeText’) >…

Read More...

In Pieces – 30 Endangered Species, 30 Pieces.

Pretty friggin’ amazing CSS work! HOW IT’S MADE BORN OUT OF TINKERING WITH A SIMPLE PROPERTY, THIS PROJECT IS UNABASHEDLY PART-DIGITAL EXPERIMENT. THE CORE TECHNOLOGY USED HERE IS JUST GOOD OLD CSS — NO CANVAS OR WEBGL WITCHCRAFT. Since hearing about CSS polygons, I’ve been a little surprised at the lack of furore around the…

Read More...

Creative games for creative designers

Pretty cool color, drawing, coding games! Creative games for creative designers.

Read More...

Meny – A three dimensional and space efficient menu concept

Meny A three dimensional and space efficient menu. Move your mouse towards the arrow — or swipe in from the arrow if you’re on a touch device — to open. Test it with any page by appending a URL, like so: Meny – A three dimensional and space efficient menu concept.

Read More...

How to add Custom Post Admin Icons to WordPress

As of wordpress 3.8 it’s really simple to add Custom Icons to WordPress Admin. Use Dashicons! Dashicons is the official icon font of the WordPress admin as of 3.8. In your custom post type initialization add the “menu_icon” option. $args = array( ‘menu_icon’ => ‘dashicons-video-alt3’, ); There’s a great selection of icons you can use.

Read More...

GenerateWP – User friendly tools for WordPress developers

The easiest and the fastest way to create custom and high quality code for your WordPress project using the latest WordPress coding standards and API’s. GenerateWP – User friendly tools for WordPress developers.

Read More...

Bootstrap 3 Adobe Illustrator Template – Easy to Use for Large Devices Desktops, Medium Devices Laptops and Small Devices Tablets

  I’ve made an Adobe Illustrator Template that should help you understand how the Columns Work in Bootstrap 3 across the different responsive sizes. I created this illustrator template to share with a designer that couldn’t quite grasp how the Bootstrap resizes a column based on the media query. What are the sizes for Bootstrap 3 Columns?…

Read More...