This file contains 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
Below is (1) the text of Chairman Genachowski's remarks on broadband adoption national programs, made today at the Langley Education Campus in Northeast Washington, D.C., and (2) a summary of supporting statements on the initiatives from Connect to Compete company and non-profit partners. | |
CHAIRMAN JULIUS GENACHOWSKI | |
REMARKS ON BROADBAND ADOPTION | |
WASHINGTON, D.C. | |
NOVEMBER 9, 2011 |
This file contains 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 | |
function do_extra_user_stuff( $post_id ) | |
{ | |
add_to_ldap_or_something( $post_id ); | |
} | |
add_action( 'user_register', 'do_extra_user_stuff' ); |
This file contains 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
Hello, | |
I am looking for someone who can handle my Personal and Business errands at his/her spare time. Someone who can offer me these services: Mail services, Receive my mails and drop them off at the Post ,Shop for Gifts Bill payment ( pay my bills on my behalf),Sit for deliveries( at your home) or pick items up at nearby Post Office at your convenience. | |
I would love to meet up with you to talk about this job but I am currently away on business. I am in Switzerland so there will be no interview. I will prepay you in advance to do my shopping. I will also have my mails and packages forwarded to your address. If you will be unable to stay at your house to get my mails, I can have it shipped to a post office near you and then you can pick it up at your convenience. When you get my mails/packages; you are required to mail them to where I want them mailed to. You don't have to put money out of your pocket, all you have to do is have packages shipped to your house and do my shopping. You are allowed to open the p |
This file contains 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
class Technosailor_Day { | |
public var $coffee; | |
public function __construct( $coffee = 5 ) | |
{ | |
$this->coffee = $coffee; | |
$this->is_productive(); | |
} | |
This file contains 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 | |
function foo_remove_bbp_for_subscribers() | |
{ | |
if( !current_user_can('subscriber') ) | |
return false; | |
if( !class_exists('BBP_Admin') ) | |
return false; |
This file contains 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 | |
/* | |
Plugin Name: Test | |
*/ | |
class My_Like_Button { | |
function __construct() | |
{ | |
$this->hooks(); | |
} |
This file contains 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 | |
include( './wp-load.php' ); | |
$dbs = $wpdb->get_col('SHOW DATABASES'); | |
foreach( $dbs as $db ) | |
{ | |
$tables = $wpdb->get_col( sprintf( "SHOW TABLES IN %s", $db ) ); | |
foreach( $tables as $table ) | |
{ |
This file contains 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 | |
class Fun_Stuff { | |
function __construct() | |
{ | |
$this->hooks(); | |
} | |
function hooks() | |
{ |
This file contains 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 | |
class AMM_Template_Tags { | |
public function __construct() {} | |
public function display_featured_video() | |
{ | |
$amm_options = get_option( 'amm_options' ); | |
$video_url = $amm_options['featured_video']; // http://www.youtube.com/watch?v=S-PcsfPPUsE | |
if( !$video_url ) |
This file contains 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 | |
public function show_profile() | |
{ | |
$profile = $this->profile_type; | |
$this->_amm_{$profile}_listing(); | |
} | |
OlderNewer