Programming13 JAVA기술동향 http://javathreads.de/2009/07/java-trendbarometer-sommer-2009/ 2010. 6. 25. Django-pagination in an ajax div http://bcurtu.com/?p=478 2010. 2. 17. python email scrape email_pattern = re.compile("[-a-zA-Z0-9._]+@[-a-zA-Z0-9_]+.[a-zA-Z0-9_.]+") self.emails = re.findall(email_pattern, htmlSource) 2010. 1. 19. PHP에서 Form값 전달받기 http://thankee.tistory.com/trackback/53 참고 고생했다. 2009. 12. 14. Command-line tab completion in standard Python shell To enable 'tab-completion' on the command line of the default Python shell, put this in ~/.pythonrc, and setup the PYTHONSTARTUP environment variable to point to it: export PYTHONSTARTUP=~/.pythonrc # ~/.pythonrc # enable syntax completion try: import readline except ImportError: print "Module readline not available." else: import rlcompleter readline.parse_and_bind("tab: complete") It needs the.. 2009. 8. 6. jQuery의 핵심...선택자(selector) tag - $('p') id - $('#some-id') class - $('.some-class') child - '>' space XPath selector $('a[@title]'), $('a[title]'), $('div[ol]') 2009. 3. 3. 이전 1 2 3 다음