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
    
  
  
    
  | import time | |
| from multiprocessing import Process, Semaphore | |
| def task(s, i): | |
| s.acquire() | |
| print('Task', i) | |
| time.sleep(2) | |
| s.release() | 
  
    
      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 () { | |
| 'use strict'; | |
| angular | |
| .module('material.components.tabs') | |
| .directive('mdActiveNc', MdActiveNoClick); | |
| function MdActiveNoClick() { | |
| return { | |
| link: link, | 
  
    
      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
    
  
  
    
  | <?xml version="1.0"?> | |
| <data> | |
| <country name="Liechtenstein"> | |
| <RANK>1</RANK> | |
| <year>2008</year> | |
| <gdppc>141100</gdppc> | |
| <neighbor name="Austria" direction="E"/> | |
| <neighbor name="Switzerland" direction="W"/> | |
| </country> | |
| <country name="Singapore"> | 
  
    
      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
    
  
  
    
  | #!/usr/bin/env python | |
| """ | |
| Upload source tarball to AWS and trigger Heroku deploy. | |
| https://devcenter.heroku.com/articles/build-and-release-using-the-api | |
| Create your source tarball using something like: | |
| git archive -o source.tar.gz HEAD | |
| If you like to extend your tarball: | |
| git archive -o source.tar HEAD |