active questions tagged python+java - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T20:09:46Z http://stackoverflow.com/feeds/tag/python+java http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1802256/what-the-mechanism-use-to-integrate-python-with-other-languages-net-java 1 What the mechanism use to integrate python with other languages (.Net, Java ....) Linh 2009-11-26T08:20:05Z 2009-11-26T08:47:22Z <p>Hi everybody,</p> <p>Somebody talking the python's code can embed into C#'s code. What the mechanism to do that? please explain for me.</p> <p>Thanks a lot</p> http://stackoverflow.com/questions/1801459/algorithm-how-to-delete-duplicate-elements-in-a-list-efficiently 0 Algorithm - How to delete duplicate elements in a list efficiently? psihodelia 2009-11-26T03:59:32Z 2009-11-26T07:13:44Z <p>There is a <strong>list L</strong>. It contains elements of <strong>arbitrary type each</strong>. How to delete all duplicate elements in such list efficiently? <strong>ORDER must be preserved</strong></p> <p>Just an algorithm is required, so no import any external library is allowed.</p> http://stackoverflow.com/questions/508657/multidimensional-array-in-python 4 Multidimensional array in Python Christian Stade-Schuldt 2009-02-03T19:54:37Z 2009-11-26T06:26:51Z <p>Hi,</p> <p>I have a little Java problem I want to translate to Python. Therefor I need a multidimensional array. In Java it looks like:</p> <pre><code>double dArray[][][] = new double[x.length()+1][y.length()+1][x.length()+y.length()+3]; dArray[0][0][0] = 0; dArray[0][0][1] = POSITIVE_INFINITY; </code></pre> <p>Further values will be created bei loops and written into the array.</p> <p>How do I instantiate the array?</p> <p>PS: There is no matrix multiplication involved...</p> http://stackoverflow.com/questions/1299018/how-to-check-if-python-is-installed-in-windows-from-java 2 How to check if python is installed in windows from java? Goutham 2009-08-19T10:32:51Z 2009-11-26T05:58:14Z <p>How can I check from inside a java program if python is installed in windows? Python does not add its path to the system Path and no assumption is to be made about the probable path of installation(i.e it can be installed anywhere).</p> http://stackoverflow.com/questions/1788421/java-to-python-rsa 1 Java to Python RSA Crowe T. Robot 2009-11-24T07:23:18Z 2009-11-24T10:07:55Z <p>I'm trying to encrypt a string from Java to Python, using the library Bouncy Castle J2ME on the client side and Python M2Crypto on the other.</p> <p>Everything is pretty good, I can decrypt it properly, but the padding is the issue.</p> <p>The M2Crypto lib gives me (as far as I can tell) only these Padding schemes: no_padding = 3 pkcs1_padding = 1 sslv23_padding = 2 pkcs1_oaep_padding = 4</p> <p>While the bouncy castle J2ME only provides: NoPadding OAEPWithAndPadding PKCS5Padding SSL3Padding</p> <p>So, I can use NoPadding between both, but then the strings that get generated after decryption are filled with jumbled characters.</p> <p>I'd really like to get the padding sorted out, but I don't know how to convert between padding schemes / if that's even possible.</p> <p>Please help me figure this out, it's killing me!</p> http://stackoverflow.com/questions/1786206/is-there-a-java-equivalent-of-pythons-defaultdict 1 is there a Java equivalent of Python's defaultdict? gatoatigrado 2009-11-23T21:42:18Z 2009-11-23T22:03:06Z <p>In Python, the defaultdict class provides a convenient way to create a mapping from key -> [list of values], in the following example,</p> <pre><code>from collections import defaultdict d = defaultdict(list) d[1].append(2) d[1].append(3) # d is now {1: [2, 3]} </code></pre> <p>Is there an equivalent to this in Java?</p> http://stackoverflow.com/questions/1604220/interacting-with-svn-from-appengine 3 Interacting with SVN from appengine Martin 2009-10-21T23:28:20Z 2009-11-21T01:47:09Z <p>I've got a couple of projects where it would be useful to be able to interact with an SVN server from appengine.</p> <ul> <li>Pull specific files from the svn (fairly easy, since there is a web interface which I can grab the data off automatically, but how do I authenticate)</li> <li>Commit changes to the svn (this is the really hard/important part)</li> <li>Possibly run an SVN server (from an appengine app, I'm guessing this isn't possible)</li> </ul> <p>I would prefer a python solution, but I can survive with java if I must</p> http://stackoverflow.com/questions/918359/my-python-program-executes-faster-than-my-java-version-of-the-same-program-what 14 My python program executes faster than my java version of the same program. What gives? blaine 2009-05-27T22:48:42Z 2009-11-20T23:53:31Z <p><strong>Update: 2009-05-29</strong></p> <p>Thanks for all the suggestions and advice. <strong>I used your suggestions to make my production code execute 2.5 times faster on average than my best result a couple of days ago.</strong> In the end I was able to make the java code the fastest.</p> <p>Lessons:</p> <ul> <li><p>My example code below shows the insertion of primitive ints but the production code is actually storing strings (my bad). When I corrected that the python execution time went from 2.8 seconds to 9.6. So right off the bat, the java was actually faster when storing objects. </p></li> <li><p>But it doesn't stop there. I had been executing the java program as follows:</p> <p>java -Xmx1024m SpeedTest</p></li> </ul> <p>But if you set the initial heap size as follows you get a huge improvement:</p> <pre><code>java -Xms1024m -Xmx1024m SpeedTest </code></pre> <p>This simple change reduced the execution time by more than 50%. So the final result for my SpeedTest is python 9.6 seconds. Java 6.5 seconds. </p> <p><strong>Original Question:</strong></p> <p>I had the following python code:</p> <pre><code>import time import sys def main(args): iterations = 10000000 counts = set() startTime = time.time(); for i in range(0, iterations): counts.add(i) totalTime = time.time() - startTime print 'total time =',totalTime print len(counts) if __name__ == "__main__": main(sys.argv) </code></pre> <p>And it executed in about 3.3 seconds on my machine but I wanted to make it faster so I decided to program it in java. I assumed that because java is compiled and is generally considered to be faster than python I would see some big paybacks.</p> <p>Here is the java code:</p> <pre><code>import java.util.*; class SpeedTest { public static void main(String[] args) { long startTime; long totalTime; int iterations = 10000000; HashSet counts = new HashSet((2*iterations), 0.75f); startTime = System.currentTimeMillis(); for(int i=0; i&lt;iterations; i++) { counts.add(i); } totalTime = System.currentTimeMillis() - startTime; System.out.println("TOTAL TIME = "+( totalTime/1000f) ); System.out.println(counts.size()); } } </code></pre> <p>So this java code does basically the same thing as the python code. But it executed in 8.3 seconds instead of 3.3. </p> <p>I have extracted this simple example from a real-world example to simplify things. The critical element is that I have (set or hashSet) that ends up with a lot of members much like the example.</p> <p>Here are my questions:</p> <ol> <li><p>How come my python implementation is faster than my java implementation?</p></li> <li><p>Is there a better data structure to use than the hashSet (java) to hold a unique collection?</p></li> <li><p>What would make the python implementation faster?</p></li> <li><p>What would make the java implementation faster?</p></li> </ol> <p>UPDATE:</p> <p>Thanks to all who have contributed so far. Please allow me to add some details.</p> <p>I have not included my production code because it is quite complex. And would generate a lot of distraction. The case I present above is the most simplified possible. By that I mean that the java put call seems to be much slower than the python set`s add(). </p> <p>The java implementation of the production code is also about 2.5 - 3 times slower than the python version -- just like the above. </p> <p>I am not concerned about vm warmup or startup overhead. I just want to compare the code from my startTime to my totalTime. Please do not concern yourselves with other matters. </p> <p>I initialized the hashset with more than enough buckets so that it should never have to rehash. (I will always know ahead of time how many elements the collection will ultimately contain.) I suppose one could argue that I should have initialized it to iterations/0.75. But if you try it you will see that execution time is not significantly impacted.</p> <p>I set Xmx1024m for those that were curious (my machine has 4GB of ram). </p> <p>I am using java version: Java(TM) SE Runtime Environment (build 1.6.0_13-b03).</p> <p>In the production version of I am storing a string (2-15 chars) in the hashSet so I cannot use primitives, although that is an interesting case.</p> <p>I have run the code many, many times. I have very high confidence that the python code is between 2.5 and 3 times faster than the java code.</p> http://stackoverflow.com/questions/1765802/using-jython-from-eclipse-plugin 1 Using Jython From Eclipse Plugin AdamC 2009-11-19T19:13:32Z 2009-11-20T19:37:14Z <p>I am having a tough time getting jython to work properly when run from an Eclipse plugin. I have a simple object factory that loads a python module conforming to a Java Interface. All of this works fine in standalone mode. However, when I package this as an eclipse plugin, I get a different error based on a few variables:</p> <p>Given that my java package is com.foo.</p> <p>1) If I run without modifying any paths, I get: "No module named foo"</p> <p>2) If I then add my java jars to the sys.path using:</p> <pre><code>PythonInterpreter interp = new PythonInterpreter(null, new PySystemState()); PySystemState sys = Py.getSystemState(); sys.path.append(new PyString("myjar...")); </code></pre> <p>I get:</p> <p>a) My python module's constructor gets called (print in the constr shows up)<br> b) I get a PySingleton returned from the call to <strong>tojava</strong>. The name field is "Error".</p> <p>3) At this point, I try to make the classpath exactly the same in Eclipse as Standalone, so I add my jars to the classpath at runtime just before the python interpreter is called.</p> <p>I get my favorite error message: SystemError: Automatic proxy initialization should only occur on proxy classes</p> <p>This one is driving me crazy. I was impressed with how fast I got this going in standalone mode. Should running under Eclipse be that much different? I believe it should only be a matter of the classpath, but so far, that doesn't seem to be it.</p> http://stackoverflow.com/questions/1653419/cross-platform-programming-language-with-a-decent-gui-toolkit 0 Cross-Platform Programming Language with a decent gui toolkit? Indebi 2009-10-31T04:34:48Z 2009-11-19T01:57:03Z <p>For the program idea I have, it requires that the software be written in one binary that is executeable by all major desktop platforms, meaning it needs an interpreted language or a language within a JVM. Either is fine with me, but the programming language has to balance power &amp; simplicity (e.g. Python)</p> <p>I know of wxPython but I have read that it's support on Mac OS X is fairly limited</p> <p>Java sounds good &amp; it looks good but it seems almost too difficult to program in</p> <p>Any help?</p> http://stackoverflow.com/questions/1502820/favourite-open-source-google-app-engine-apps-java-or-python 3 Favourite Open Source Google App Engine apps (Java or Python) flybywire 2009-10-01T09:07:11Z 2009-11-17T11:53:57Z <p>To learn from good examples, what are the best open source Google App Engine applications out there?</p> <p>I don't care if it is Java or Python based.</p> <p>Please one app per answer. Feel free to add a link to the live app (if there is) and to the project page.</p> http://stackoverflow.com/questions/1746867/is-java-or-python-better-for-writing-a-web-page-source-checking-web-service-on-go 2 Is Java or Python better for writing a web-page-source-checking web service on Google App Engines? brilliant 2009-11-17T05:53:57Z 2009-11-17T08:55:11Z <p>Hello everybody!!!</p> <p>I hope you all have a nice day.</p> <p>I want to write a web service that would check some web page HTML code every 20 minutes and e-mail it to my mail box. <a href="http://stackoverflow.com/questions/1735028/is-it-possible-to-have-a-free-web-service-that-would-check-a-page-and-email-its-h">Here</a> I was given a suggestion to use <a href="http://code.google.com/appengine/" rel="nofollow">Google App Engine</a> for this task. Having briefly read through that site I learned that two languages could be used there: Java and Python. </p> <p>Which one do you think would fit best for my task and, therefore, I would have to start learning? (I don't know either language).</p> http://stackoverflow.com/questions/1742750/how-is-a-union-different-from-a-struct-do-other-languages-have-similar-construct 2 How is a union different from a struct? Do other languages have similar constructs? [closed] SjB 2009-11-16T15:07:05Z 2009-11-16T18:18:53Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/346536/difference-between-a-structure-and-a-union-in-c">Difference between a Structure and a Union in C</a> </p> </blockquote> <p>I see this code for a union in C:</p> <pre><code> union time { long simpleDate; double perciseDate; } mytime; </code></pre> <p>What is the difference between a union and a structure in C? Where would you use a union, what are its benefits? Is there a similar construct in Java, C++ and/or Python?</p> http://stackoverflow.com/questions/1733073/grokking-timsort 7 Grokking Timsort Yang 2009-11-14T02:52:18Z 2009-11-15T00:05:36Z <p>There's a (relatively) new sort on the block called Timsort. It's been used as Python's list.sort, and is now going to be <a href="http://download.java.net/jdk7/docs/api/java/util/Arrays.html#sort%28java.lang.Object%5B%5D" rel="nofollow">the new Array.sort in Java 7</a>).</p> <p>There's <a href="http://svn.python.org/projects/python/trunk/Objects/listsort.txt" rel="nofollow">some documentation</a> and a <a href="http://en.wikipedia.org/wiki/Timsort" rel="nofollow">tiny Wikipedia article</a> describing the high-level properties of the sort and some low-level performance evaluations, but I was curious if anybody can provide some pseudocode to illustrate what Timsort is doing, exactly, and what are the key things that make it zippy. (Esp. with regard to the cited paper, "Optimistic Sorting and Information Theoretic Complexity.")</p> <p>(See also <a href="http://stackoverflow.com/questions/154504/is-timsort-general-purpose-or-python-specific">related StackOverflow post</a>.)</p> http://stackoverflow.com/questions/441824/java-virtual-machine-vs-python-interpreter-parlance 10 Java "Virtual Machine" vs. Python "Interpreter" parlance? twils 2009-01-14T03:39:32Z 2009-11-14T04:55:15Z <p>It's seems rare to read of a Python "virtual machine" while in Java "virtual machine" is used all the time. Both interpret byte codes, why call one a virtual machine and the other an interpreter? </p> http://stackoverflow.com/questions/1710718/a-server-side-component-for-tracking-a-large-number-of-rss-atom-feeds 1 A server side component for tracking a large number of RSS & Atom feeds flybywire 2009-11-10T19:52:46Z 2009-11-13T18:25:06Z <p>I am looking for an open source component that can help me track a large number of <a href="http://en.wikipedia.org/wiki/RSS" rel="nofollow">RSS</a> feeds (>> 10K RSS sources).</p> <p>I don't care about the programming language, but it should be something with a simple API where I can add or remove RSS feeds and asynchronously receive notifications every time an RSS is updated.</p> <p>Preferably in Java or Python.</p> http://stackoverflow.com/questions/1728266/seeking-a-high-level-library-for-socket-programming-java-or-python 2 Seeking a High-Level Library for Socket Programming (Java or Python) CodeJustin.com 2009-11-13T09:55:41Z 2009-11-13T11:49:53Z <p>In short I'm creating a Flash based multiplayer game and I'm now starting to work on the server-side code. Well I'm the sole developer of the project so I'm seeking a high-level socket library that works well with games to speed up my development time.</p> <p>I was trying to use the Twisted Framework (for Python) but I'm having some personal issues with it so I'm looking for another solution.</p> <p>I'm open to either Java or a Python based library. The main thing is that the library is stable enough for multiplayer games and the library needs to be "high-level" (abstract) since I'm new to socket programming for games.</p> <p>I want to also note that I will be using the raw binary socket for my Flash game (Actionscript 3.0) since I assume it will be faster than the traditional Flash XML socket.</p> http://stackoverflow.com/questions/1721351/how-can-i-measure-the-execution-time-of-a-for-loop 0 How can I measure the execution time of a for loop? piemesons 2009-11-12T10:36:49Z 2009-11-12T15:04:22Z <p>I want to measure the execution time of <strong>for loops</strong> on various platforms like php, c, python, Java, javascript... How can i measure it?</p> <p>I know these platforms so i am talking about these:</p> <pre><code> for (i = 0; i &lt; 1000000; i++) { } </code></pre> <p>I don't want to measure anything within the loop.</p> <p>Little bit modification:</p> <p>@all Some of the friends of mine are saying compiler will optimize this code making this loop a useless loop. I agree with this. we can add a small statement like some incremental statement, but the fact is I just want to calculate the execution time of per iteration in a loop in various languages. By adding a incremental statement will add up the execution time and that will effect the results, cause on various platforms, execution time for incrementing a value also differ and that will make a result useless. In short, in better way I should ask:</p> <p><strong>I WANT TO CALCULATE THE EXECUTION TIME OF PER ITERATION IN A LOOP on Various PLATFORMS..HOW CAN DO THIS???</strong></p> <p>edit---</p> <p>I came to know about <a href="http://docs.python.org/library/profile.html" rel="nofollow">Python Profilers</a> Profiler modules ...which evaluate cpu time... absolute time.. Any suggestions???Meanwhile i am working on this...</p> http://stackoverflow.com/questions/1720778/python-list-of-strings-to-java 0 Python - List of Strings to Java Panther24 2009-11-12T08:37:58Z 2009-11-12T09:30:06Z <p>Hi,</p> <p>I'm getting a list of strings from python code and need to read it in Java. When trying to read it, i get the hashCode</p> <blockquote> <p><code>[Ljava.lang.Object;@7cf1bb78</code></p> </blockquote> <p>I want to read the values in a list. In python my return is something like</p> <pre><code>return SUCCESS(OK, params={'data':nameList()}) </code></pre> <p>How would I read this in Java and print the contents not the hashCode. Currently I'm doing like</p> <pre><code>Object getNames = new Object(); getName = getNameList(); // This is thru Apache XML RPC Client System.out.println(getName); </code></pre> <p>Any help or suggestions?</p> http://stackoverflow.com/questions/1714624/is-there-any-library-to-deserialize-with-python-which-is-serialized-with-java 2 is there any library to deserialize with python which is serialized with java. Prabu 2009-11-11T11:33:19Z 2009-11-11T16:04:17Z <p>is there any library to deserialize with python which is serialized with java.</p> http://stackoverflow.com/questions/307616/xml-instance-generation-from-xml-schema-xsd 1 XML instance generation from XML schema (xsd) ErickJ 2008-11-21T02:11:17Z 2009-11-11T09:45:46Z <p>I was wondering if there's a way I can automate the generation of XML files from XSD schemas given that I have the data and the labels. I'd like to do this in python/java. It seems very possible, yet I can't find any library that allows me to do this. I'm looking for a fairly quick solution.. Any ideas?</p> <blockquote> <p>See also: <a href="http://stackoverflow.com/questions/17106/how-to-generate-sample-xml-documents-from-their-dtd-or-xsd/730208#730208">how-to-generate-sample-xml-documents-from-their-dtd-or-xsd</a></p> </blockquote> http://stackoverflow.com/questions/1685810/how-do-i-copy-local-google-app-engine-python-datastore-to-local-google-app-engine 0 How do I copy local Google App Engine Python datastore to local Google App Engine Java datastore? Bryce Thomas 2009-11-06T06:31:55Z 2009-11-11T00:34:13Z <p>I have around 4000 entities that I need to insert into a Java App Engine datastore. As I understand it, only the Python version of App Engine currently has tools to upload data from a CSV file to a datastore. So, what I have done thus far is follow the instructions at <a href="http://code.google.com/appengine/docs/python/tools/uploadingdata.html" rel="nofollow">http://code.google.com/appengine/docs/python/tools/uploadingdata.html</a> and have successfully written my 4000 or so entities into my local datastore using Python. I am only using Python for the sake of taking the entities from a .csv and writing them to the datastore. I have verified that the entities are there by using the /_ah/admin address on my local host python version of app engine to see the data viewer. </p> <p>What I want to do now is to use those entities locally in my initial Java version. Now, this is normally not a problem when the entities are uploaded using Python to the deployed version of App Engine, because different versions of the same project share the same datastore, regardless of runtime. So, If I had been writing all the .csv rows to the deployed Python version of my app, my deployed Java version would be able to see all the entities uploaded through my Python version. BUT, how do you achieve the same thing locally?</p> <p>As I understand it, the Java version of App Engine creates a local datastore in a .bin file in the WEB-INF directory. Does the Python version of App Engine create a similar .bin file somewhere that I could just copy over into my Java version? I haven't even been able to track down where exactly the Python version is storing its data locally yet. Any help is much appreciated.</p> http://stackoverflow.com/questions/1683965/org-apache-commons-lang-stringescapeutils-in-python 0 org.apache.commons.lang.StringEscapeUtils in python Túlio Caraciolo 2009-11-05T22:05:55Z 2009-11-10T04:10:44Z <p>Hello, </p> <p>is there any python module or code that implements the org.apache.commons.lang.StringEscapeUtils.escapeHtml ?</p> <p>exactly the same as in <a href="http://commons.apache.org/lang/api/org/apache/commons/lang/StringEscapeUtils.html#escapeHtml%28java.lang.String%29" rel="nofollow">http://commons.apache.org/lang/api/org/apache/commons/lang/StringEscapeUtils.html#escapeHtml(java.lang.String)</a></p> <p>i googled around but could only find the cgi.escape function that doesn't do the same thing.</p> <p>thanks in advance, sorry for the english :D</p> http://stackoverflow.com/questions/1701199/is-there-an-analogue-to-java-illegalstateexception-in-python 1 Is there an analogue to Java IllegalStateException in Python? Tuure Laurinolli 2009-11-09T14:12:55Z 2009-11-09T14:32:15Z <p>IllegalStateException is often used in Java when a method is invoked on an object in inappropriate state. What would you use instead in Python?</p> http://stackoverflow.com/questions/1691201/what-is-a-scripting-engine 4 What is a scripting engine? zxcvbnm 2009-11-06T23:22:45Z 2009-11-07T09:45:51Z <p>I've seen <a href="http://stackoverflow.com/questions/101055/when-is-a-language-considered-a-scripting-language">here</a> that what sets a programming language apart from a scripting language is the scripting engine. But I don't understand how it works, so I don't know the difference.</p> <p>For example, I see code in Java calling methods in imported libraries, but it doesn't seem "different enough" from Python or Ruby code - both are scripting languages, right? I guess this also has to do with the procedural and object oriented paradigms, but in the end, I can't see why they are classified they way they are.</p> <p><strong>EDIT</strong>: About a scripting engine being an interpreter... Isn't Java an interpreted language? I know there's the compiled bytecode, but still, it doesn't make sense to me.</p> http://stackoverflow.com/questions/1686192/how-fast-is-python 1 How fast is Python? Bob Dylan 2009-11-06T08:27:42Z 2009-11-06T11:30:50Z <p>I'm a Java programmer and if theres one thing I dislike about it, it would be speed. Java seems really slow, but a lot of the Python <s>scripts</s>programs I have written so far seem really fast. </p> <p>So I was just wondering if Python is faster then Java, or C# and how that compares to C/C++ (which I figure it'll be slower than)?</p> http://stackoverflow.com/questions/1250086/manipulate-mp3-programmatically-muting-certain-parts 1 Manipulate MP3 programmatically: Muting certain parts? Gregor Hochmuth 2009-08-08T22:57:12Z 2009-11-06T06:26:16Z <p>I'm trying to write a batch process that can take an MP3 file and mute certain parts of it, ideally in Python or Java.</p> <p>Take this example: Given a 2 minute MP3, I want to mute the time between 1:20 and 1:30. When saved back to a file, the rest of the MP3 will play normally -- only that portion will be silent.</p> <p>Any advice for setting this up in a way that's easy to automate/run on the command line would be fantastic!</p> http://stackoverflow.com/questions/1673729/algorithm-for-list-identification-and-parsing 2 algorithm for list identification and parsing zuki 2009-11-04T13:26:42Z 2009-11-05T21:12:42Z <p>I have data which in theory is a list, but historically has been input by the user as a free form text field. Now I need to separate each item of the list so that each element can be analysed.</p> <p>Simplified examples of my data as input by users:</p> <pre><code>one, two, three, four, five one. two. three, four. five. "I start with one, then do two, maybe three and four then five" one two three four five. one, two. three four five one two three four - five "not even a list, no list-elements here! but list item separators may appear. grrr" </code></pre> <p>So, that's more or less what the data looks like. In reality a list item could be several words long. I need to process these lists (of which there are thousands) such that I end up arrays like this:</p> <pre><code>array[0] = "one" array[1] = "two" array[n] = n </code></pre> <p>I accept that sometimes my algorithm will completely fail to parse the list, I don't need a 100% success rate, 75% would be good. False positives are going to be very expensive for me so I would rather reject a list completely than generate a list that does not contain real data - assume some users type in meaningless gibberish.</p> <p>I have some ideas around trying to identify which separator(s) is being used and how regularly data is separated in relation to the size of the content.</p> <p>I prefer Java or Python, however any solution would be welcome :-)</p> http://stackoverflow.com/questions/1675715/using-google-appengine-as-a-cache-for-personal-websites-wordpress-blogs-wikis 4 Using Google AppEngine as a "cache" for personal websites (wordpress blogs, wikis) Dougnukem 2009-11-04T18:22:58Z 2009-11-04T19:13:20Z <p>I read an article of an indie game developer who is using Google AppEngine to cache his main site and blog, to protect provide high-availability during traffic spikes (Digg, Slashdot effect).</p> <p><a href="http://blog.wolfire.com/2009/03/google-app-engine-for-indie-developers/" rel="nofollow">Wolfire Blog - Google App Engine for Indie Developers</a></p> <p>There's not a lot of detail on the exactly what they developed in Python on Google AppEngine that they used to cache the site. The only details I could find were about the AppEngine python app reading the backend wordpress articles through an RSS feed:</p> <blockquote> <p>Wordpress runs on a dedicated server, and we import it into www.wolfire.com via RSS, which is the App Engine part. Dumping Wordpress entirely is on my list though of things to do someday. ;)</p> </blockquote> <p>Does anyone know of any open source Python or Java web frameworks that you can use to customize caching a site that you could build and deploy on Google AppEngine to act as a "scalable" provider for your web content?</p> <p>I'm using an "Ok" shared hosting service called bluehost to host my wordpress blog, I'd like to be able to instead put my blog on a separate domain (blog.ddaniels.net) and host google app-engine on www.ddaniels.net that would point to blog.ddaniels.net.</p> <p>This could be extended for almost any type of website, you would still need links to dynamic content to point to the original host (for things like comments and editing wiki pages etc, basically any HTTP PUT type operations).</p> <p>I'd assume you'd basically need a Java or Python framework that you could:</p> <ol> <li><p>Configure your back end host e.g. blog.yourname.com</p></li> <li><p>Configure Google App Engine framework as www.yourname.com (details for <a href="http://stackoverflow.com/questions/817809/how-to-use-google-app-engine-with-my-own-domain-not-subdomain">Google App Engine mapping to your domain</a>, the key is you have to use subdomains and "www" is a subdomain)</p></li> <li><p>On first access of page (or after expiration time) HTTP GET the page from backing host and cache it on Google AppEngine</p></li> </ol> http://stackoverflow.com/questions/1664124/byte-array-to-string 1 Byte Array to String Hamza Yerlikaya 2009-11-02T22:24:45Z 2009-11-02T23:11:21Z <p>I'm playing with bencoding and i would like to keep bencoded strings as java strings but they contain binary data blindly converting them to string will corrupt the data. What i am trying to accomplish is have a conversion function that will keep the ascii bytes as ascii end encode non ascii chars in a reversible way.</p> <p>I have found some examples of what i am trying to accomplish in python but i don't know enough ptyhon to dig through them. <a href="http://buffis.com/2007/07/28/bittorrent-bencode-decoder-in-python-using-30-lines-of-code/" rel="nofollow">this</a> decoder does exactly what i would like to do ascii parts of the torrent stay as ascii but sha1 hashes are printed as "\xd8r\xe7". With my very limited python knowledge he doesn't seem to be doing anything special to the string is this handled by the python interpreter? Can i accomplish the same in Java?</p> <p>I have played with some encodings such as Base64 or using Integer.toHexString but i get non readable ascii strings in the end?</p> <p>I have also found a <a href="http://www.neilvandyke.org/bencode-scheme/" rel="nofollow">scheme</a> example that prints everything but the sha1 hashes.</p>