文章列表
Level 5:
http://www.pythonchallenge.com/pc/def/peak.html
这一关比较有意思,打开page source code,提示信息为<!-- peak hell sounds familiar ? -->,打开peakhell标签,发现banner.p为一系列无意义的字符集。peakhell谐音为pickle,可知需要从序列化入手。
#!/usr/bin/python
import urllib.request
import pickle
"""
Python Chall ...
Level 3:
http://www.pythonchallenge.com/pc/def/equality.html
根据hints,打开page source code,查找前后各仅有3个大写字母包围的小写字母。
#!/usr/bin/python
import urllib.request
import re
"""
Python Challenge, Level 3:
http://www.pythonchallenge.com/pc/def/equality.html
"" ...
Python Challenge,一个Programming Game的Site,没事玩玩。
Level-1:
http://www.pythonchallenge.com/pc/def/map.html
字符字典,先翻译hints。
#!/usr/bin/python
import string
"""
Python Challenge, Level 1:
http://www.pythonchallenge.com/pc/def/map.html
"""
...
上周在上海参加Oracle JavaOne大会,关注了Java8以及Java EE7的一些topic;其中有Oracle的@Arun Gupta,在相关的Session上介绍了Java EE 的一些Keynotes。今天无意发现Arun早期的一篇博文,洋洋洒洒,陈述Java EE V.S. Spring孰优孰劣; 更为可观的是跟在其后的评论,楼上楼下,层层叠叠,连绵不绝,禁不住感叹老外也这样喜欢互喷口水。。。
附上链接: https://blogs.oracle.com/arungupta/entry/why_java_ee_6_is
原文出自: http://www.javacodegeeks.com/2012/01/java-ee-6-vs-spring-framework.html
In the last few month we’ve went through this decision making process: which technology stack to choose for enterprise development on the Java platform? There are various alternatives. However, the ones we’ve discusse ...