Edit

Macintosh

see what is accessing disk / force unmount disk

lsof | grep /Volumes/IMAJIN




diskutil unmountDisk force /Volumes/IMAJIN

Hosting

Subtitle: 
Webserv

Find which file a function is defined in

Subtitle: 
Installation URL: 
Notes: 
<?php

$reflFunc=new ReflectionFunction('name_of_function');

echo($reflFunc->getFileName().':'.$reflFunc->getStartLine());

?>

Custom Post Types

Adds custom post type called "Reviews"

<?php
function create_post_type(){
  register_post_type('review',
    array(
      'labels'=>array(
        'name'=>__('Reviews'),
        'singular_name'=>__('Review')
      ),
      'public'=>true,
      'has_archive'=>true,
      'capabilities'=>array(
          'edit_post'=>'edit_review',
          'edit_posts'=>'edit_reviews',
          'publish_posts'=>'publish_review',
          'read_post'=>'read_review',
      ),
    )
  );
}
add_action('init','create_post_type');
?>

Add a

In the Weeds

Subtitle: 
Restaurant Management Tool
Installation URL: 
http://stage.orgnsm.org/in-the-weeds

Post referencing setup

Subtitle: 
Assign multiple disciplines to a project
<?php


// Adds custom post type for Projects and Services

function create_post_type(){

  register_post_type('project',
    array(
      'labels' => array(
        'name' => __('Projects'),
        'singular_name' => __('Project')
      ),
      'taxonomies' => array('category'),
      'public' => true,
      'has_archive' => true,
      'capabilities' => array(
          'edit_post' => 'edit_project',
          'edit_posts' => 'edit_projects',
          'publish_posts' => 'publish_project',
          'read_post' => 'read_project',
      ),
    

Covidien Portal

Subtitle: 
A resource and tool for physicians
Installation URL: 
http://covidien.orgnsm.org

Foster Care Training

Subtitle: 
Education Service Promotion
Installation URL: 
http://fostercaretraining.org

AG &amp; Associates

Subtitle: 
Construction Portfolio &amp; Promotion
Installation URL: 
http://agassociatesinc.com

Pages