Category Archives: Uncategorized

Code quality

Answer yes or no to each.

  1. Could a new developer run the code on their machine within five minutes?
  2. Could you look at any section of code and understand its purpose?
  3. Could you locate the code for any feature within ten minutes?
  4. Could you explain all of the code in a way that a junior developer could understand?
  5. Could you re-factor the code without fear of breaking it?
  6. Could you test a component without testing its dependencies?
  7. If any library or technology becomes obsolete, could you replace it easily?
  8. Could you take modules and re-use them in other projects with no modification?
  9. Can you be certain that each line of code is actually being used?
  10. If the code became open-source, would you be happy to be associated with it?

The Joel Test

  1. Do you use source control?
  2. Can you make a build in one step?
  3. Do you make daily builds?
  4. Do you have a bug database?
  5. Do you fix bugs before writing new code?
  6. Do you have an up-to-date schedule?
  7. Do you have a spec?
  8. Do programmers have quiet working conditions?
  9. Do you use the best tools money can buy?
  10. Do you have testers?
  11. Do new candidates write code during their interview?
  12. Do you do hallway usability testing?

How to change contents of a dashboard help tab

source

//hook loading of new page and edit page screens
add_action('load-page-new.php','add_custom_help_page');
add_action('load-page.php','add_custom_help_page');

function add_custom_help_page() {
   //the contextual help filter
   add_filter('contextual_help','custom_page_help');
}

function custom_page_help($help) {
   //keep the existing help copy
   echo $help;
   //add some new copy
   echo "<h5>Custom Features</h5>";
   echo "<p>Content placed above the more divider will appear in column 1. Content placed below the divider will appear in column 2.</p>";
}

 

Python Headless Web Browser Scraping

sudo pip install selenium
sudo yum install gcc gcc-c++ make git openssl-devel freetype-devel fontconfig-devel 
wget https://phantomjs.googlecode.com/files/phantomjs-1.9.1-linux-x86_64.tar.bz2
tar -xjvf phantomjs-1.9.1-linux-x86_64.tar.bz2
sudo cp phantomjs-1.9.1-linux-x86_64/bin/phantomjs /usr/bin/
from selenium import webdriver

driver = webdriver.PhantomJS()
driver.set_window_size(1024, 768)
driver.get('http://www.amazon.com/')
driver.save_screenshot('screen.png')
print driver.page_source
driver.quit()