I hereby claim:
- I am greeno on github.
- I am greenoch (https://keybase.io/greenoch) on keybase.
- I have a public key ASAAAXN-4cLc-57Y-SPW7Vm0k2JMWdOPWJFCfe-RtChNxwo
To claim this, I am signing this object:
| Name | Age | Address | Text | |
|---|---|---|---|---|
| Paul | 23 | 1115 W Franklin | This is a an \n escaped new line | |
| Bessy the Cow | 5 | Big Farm Way | This is an \t escaped tab | |
| Zeke | 45 | W Main St | This is an \uXXXX escaped unicode char |
I hereby claim:
To claim this, I am signing this object:
| select tab.table_schema, | |
| tab.table_name, | |
| tinf.tbl_rows as rows | |
| from svv_tables tab | |
| join svv_table_info tinf | |
| on tab.table_schema = tinf.schema | |
| and tab.table_name = tinf.table | |
| where tab.table_type = 'BASE TABLE' | |
| and tab.table_schema in('src_canvas') | |
| and tinf.tbl_rows > 1 |
| select tab.table_schema, | |
| tab.table_name, | |
| tinf.tbl_rows as rows | |
| from svv_tables tab | |
| join svv_table_info tinf | |
| on tab.table_schema = tinf.schema | |
| and tab.table_name = tinf.table | |
| where tab.table_type = 'BASE TABLE' | |
| and tab.table_schema in('src_canvas') | |
| and tinf.tbl_rows > 1 |
| select tab.table_schema, | |
| tab.table_name, | |
| tinf.tbl_rows as rows | |
| from svv_tables tab | |
| join svv_table_info tinf | |
| on tab.table_schema = tinf.schema | |
| and tab.table_name = tinf.table | |
| where tab.table_type = 'BASE TABLE' | |
| and tab.table_schema in('src_canvas') | |
| and tinf.tbl_rows > 1 |
| select tab.table_schema, | |
| tab.table_name, | |
| tinf.tbl_rows as rows | |
| from svv_tables tab | |
| join svv_table_info tinf | |
| on tab.table_schema = tinf.schema | |
| and tab.table_name = tinf.table | |
| where tab.table_type = 'BASE TABLE' | |
| and tab.table_schema in('src_canvas') | |
| and tinf.tbl_rows > 1 |
| import xmlrpclib | |
| url = "https://your-confluence.awhere" | |
| s = xmlrpclib.ServerProxy(url + "/rpc/xmlrpc") | |
| print "Logging in..." | |
| token = s.confluence2.login("username","*****") | |
| if not token: | |
| print "No Token!!" |
| <!-- Normal Non-Mobile Page --> | |
| ... | |
| <script src="../js/cookie.js"></script> | |
| ... | |
| $(function(){ | |
| console.log($(window).width()); | |
| console.log(readCookie("forceStandardView")); | |
| // 1024 is a random choice. What should it be? Should iPad use mobile view? Only 480<? | |
| // Research width. Does device-width == window.width? Or at least close? | |
| if($(window).width() < 1024 && readCookie("forceStandardView")!="yes"){ |