- Vissit - Demo
- EisaBainyo simple widget
- Calendrical
- Calendario - Article - Demo
- Fullcalendar on GitHub by Arshaw - on Click handler - Twitter Bootsrap LESS version of the button styles (have to search for
solution in .less) - Demo - [DesignModo jQuery Events Calendar](http://codecanyon.net/item/simple-events-calendar-js/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| {I have|I've} been {surfing|browsing} online more than {three|3|2|4} hours today, yet I never found any interesting article like yours. {It's|It | |
| is} pretty worth enough for me. {In my opinion|Personally|In my view}, if all {webmasters|site owners|website owners|web owners} and bloggers made good content as | |
| you did, the {internet|net|web} will be {much more|a lot more} | |
| useful than ever before.| | |
| I {couldn't|could not} {resist|refrain from} commenting. {Very well|Perfectly|Well|Exceptionally well} written!| | |
| {I will|I'll} {right away|immediately} {take hold of|grab|clutch|grasp|seize|snatch} | |
| your {rss|rss feed} as I {can not|can't} {in finding|find|to find} your {email|e-mail} subscription {link|hyperlink} or {newsletter|e-newsletter} service. Do {you have|you've} any? | |
| {Please|Kindly} {allow|permit|let} me {realize|recognize|understand|recognise|know} {so that|in order that} I {may just|may|could} subscribe. | |
| Thanks.| |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| ### COLOUR DEFINITIONS | |
| WHITE='\e[0;47;30m' | |
| GREEN='\e[1;36;40m' | |
| RED='\e[1;31;40m' | |
| THREAD='\e[1;35;40m' | |
| NONE='\e[0m' | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function var_dump() { | |
| for ( var i=0; i < arguments.length; i++ ) { | |
| console.log( arguments[i] ); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;( function( $, obj ) { | |
| var uno = function( e ) { | |
| e.preventDefault(); | |
| var $this = $( this ); | |
| $.ajax( { | |
| type: "POST", | |
| url: obj.ajaxurl | |
| + "?action=" + obj.action |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| defined( 'ABSPATH' ) OR exit; | |
| /** | |
| * Plugin Name: (WCM) RSS Importer | |
| */ | |
| add_action( 'plugins_loaded', array( 'WCMRSSImporterBootstrap', 'init' ) ); | |
| class WCMRSSImporterBootstrap | |
| { | |
| protected static $instance = null; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| defined( 'ABSPATH' ) OR exit; | |
| /** | |
| * Plugin Name: (WCM) PHPMailer Exceptions & SMTP | |
| * Description: WordPress by default returns <code>FALSE</code> instead of an <code>Exception</code>. This plugin fixes that. | |
| */ | |
| add_action( 'phpmailer_init', 'WCMphpmailerException' ); | |
| function WCMphpmailerException( $phpmailer ) | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| defined( 'ABSPATH' ) OR exit; | |
| /** | |
| * Plugin Name: (WCM) Faster Admin Post Lists | |
| * Description: Reduces the queried fields inside WP_Query for WP_Post_List_Table screens | |
| * Author: Franz Josef Kaiser <wecodemore@gmail.com> | |
| * AuthorURL: http://unserkaiser.com | |
| * License: MIT | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Tabs vs. Spaces | |
| */ | |
| // This is Tabs/Tabs | |
| $array = ( | |
| 'some_var' => 'some_val', | |
| 'key' => 'val', | |
| 'k' => 'v', | |
| 'some_variable_here' => 'some_value_here', |