Notes from Advanced Python Workshop conducted on 24th - 26th May 2013 in Bangalore.
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
| # Option 1 - rebuild the cluster | |
| # This will delete alle existing data | |
| pg_dropcluster --stop 9.2 main | |
| pg_createcluster --start -e UTF-8 9.2 main | |
| # Option 2 - rebuild the template1 database | |
| # All the database created after this will have UTF-8 encoding |
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
| // | |
| // My dotjs extension for amazon.com | |
| // - Adds link to OL when an entry is available in OL | |
| // | |
| function find_isbn() { | |
| // URL is of the form .../dp/$isbn/ref=.. | |
| var parts = window.location.pathname.split("/"); | |
| var patterns = [ | |
| "^/[^/]*/dp/([0-9Xx]{10})(?:/.*)?$", |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 web | |
| web.config.debug = False | |
| urls = ( | |
| "/", "hello", | |
| ) | |
| app = web.application(urls, globals()) | |
| class hello: |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.