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
| # Split SQL file using sqlparse with delimiter handling. | |
| # | |
| # The SQL string is pre-processed before handing it off to sqlparse.split: | |
| # DELIMITER statements are removed, semicolons within non-standard | |
| # delimiter blocks are replaced by the Unicode Object Replacement | |
| # Character, and custom delimiters replaced with semicolons. After | |
| # processing the string with sqlparse.split, the Object Replacement Characters | |
| # are replaced with semicolons again. | |
| import re |
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
| javascript:(function(){var descTitle='h2. Description\n'; var desc = document.getElementById('description'); desc.value=descTitle+desc.value+"\n\nh2. Outcomes\n\nh2. To do \n_(mark items with: (x) incomplete - (?) addressed by dev, requires review - (/) complete)_\n(x) investigate and ballpark\n(x) breakdown dev items under implementation \n(x) notify PM\n(x) client approval\n(x) implementation\n - (x) {color:red}Dev to add development steps here{color}\n - (x) ...\n - (x) Dev to update testing notes\n\n(x) Dev to update confluence if necessary \n(x) test\n(x) client approval\n(x) LIVE \n\n h2. Testing Notes\n\nh2. Deployment notes";desc.focus();desc.setSelectionRange(descTitle.length,descTitle.length)})(); |
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/python | |
| """ | |
| Example to create a Mininet topology and connect it to the internet via NAT | |
| through eth0 on the host. | |
| Glen Gibb, February 2011 | |
| (slight modifications by BL, 5/13) | |
| """ |