Skip to content

Instantly share code, notes, and snippets.

View fedesilvaponte's full-sized avatar

Federico Silva Ponte fedesilvaponte

View GitHub Profile
@javierarques
javierarques / protractorAPICheatsheet.md
Last active March 3, 2025 17:08
Protractor API Cheatsheet
@mannieschumpert
mannieschumpert / gist:3815767
Last active October 11, 2015 06:18
WordPress Taxonomy Snippet for Sublime Text
<snippet>
<content><![CDATA[
// Create taxonomy
add_action( 'init', 'create_${1:FUNCTION}' );
function create_${1:FUNCTION}() {
\$labels = array(
'name' => _x( '${3:PLURAL}', 'taxonomy general name' ),
'singular_name' => _x( '${2:SINGULAR}', 'taxonomy singular name' ),
'search_items' => __( 'Search ${3:PLURAL}' ),