Skip to content

Instantly share code, notes, and snippets.

View davecahill's full-sized avatar
👋

Dave Cahill davecahill

👋
View GitHub Profile
import java.net.URI;
class HelloWorldApp {
public static void main(String[] args) {
try {
String blah = "blah";
URI one = new URI(blah);
URI three = new URI("test", blah, null);
URI four = new URI("test", blah, null, null);
System.out.println(one); // prints "blah"
Index: src/zc/zk/__init__.py
===================================================================
--- src/zc/zk/__init__.py (revision 130228)
+++ src/zc/zk/__init__.py (working copy)
@@ -518,6 +518,10 @@
return
if name is None:
name = path.rsplit('/', 1)[1]
+
+ if(meta["dataLength"] == 0):