Advertisement
Nickname
martinskou
Registered since:
July 12, 2007
Short bio:
 
Home page:
 
Total posts:
20

Forum posts by Martin Skou:

2 pages [ 1 2 Next ]
Posted in All Buzz Forum, Aug 28, 2012, 1:42 PM
Lisp example scanning a path and subpath for php files inside media or image folders, changed within the last 24 hours.Shows off mail, command line, compiling and more.(ql:quickload "cl-fad")(ql:quickload "cl-smtp")(ql:quickload "split-sequence")(ql:quickload "command-line-arguments")(ql:quickload :log4cl);; helpers;(defmacro aif (test-form...
Posted in Python Buzz Forum, Aug 28, 2012, 1:42 PM
Lisp example scanning a path and subpath for php files inside media or image folders, changed within the last 24 hours.Shows off mail, command line, compiling and more.(ql:quickload "cl-fad")(ql:quickload "cl-smtp")(ql:quickload "split-sequence")(ql:quickload "command-line-arguments")(ql:quickload :log4cl);; helpers;(defmacro aif (test-form...
Posted in All Buzz Forum, Aug 10, 2012, 2:14 PM
; Error handling example.(define-condition some-error (error) ((what :initarg :what :initform "something" :reader what)) (:report (lambda (condition stream) (format stream "Agh! ~@(~A~) error." (what condition)))) (:documentation "Some-error condition."))(defun ignore-some-error1 () " Restart function " (print "some error 1") T)(defun...
Posted in Python Buzz Forum, Aug 10, 2012, 2:14 PM
; Error handling example.(define-condition some-error (error) ((what :initarg :what :initform "something" :reader what)) (:report (lambda (condition stream) (format stream "Agh! ~@(~A~) error." (what condition)))) (:documentation "Some-error condition."))(defun ignore-some-error1 () " Restart function " (print "some error 1") T)(defun...
Posted in All Buzz Forum, Jul 11, 2012, 8:31 PM
I'm a Python programmer. But you should never stop learning!I'm using OSX and heavily into webdevelopment, so i used Homebrew to install Lisp and the Hunchentoot webserver.The procedure is:Install HomebrewInstall SBCL using HomebrewInstall QuicklispWith quicklisp its easy to install the Hunchentoot lisp webserverStart a Hunchentoot...
Posted in Python Buzz Forum, Jul 11, 2012, 8:31 PM
I'm a Python programmer. But you should never stop learning!I'm using OSX and heavily into webdevelopment, so i used Homebrew to install Lisp and the Hunchentoot webserver.The procedure is:Install HomebrewInstall SBCL using HomebrewInstall QuicklispWith quicklisp its easy to install the Hunchentoot lisp webserverStart a Hunchentoot...
Posted in All Buzz Forum, Sep 21, 2009, 8:48 PM
import osimport sysimport timeimport win32fileimport win32eventimport win32conACTIONS = { 1 : "Created", 2 : "Deleted", 3 : "Updated", 4 : "Renamed from something", 5 : "Renamed to something"}FILE_LIST_DIRECTORY = 0x0001path_to_watch = u"d:\\test"path_to_watch = os.path.abspath (path_to_watch)print "Watching %s at %s" % (path_to_watch,...
Posted in Python Buzz Forum, Sep 21, 2009, 8:48 PM
import osimport sysimport timeimport win32fileimport win32eventimport win32conACTIONS = { 1 : "Created", 2 : "Deleted", 3 : "Updated", 4 : "Renamed from something", 5 : "Renamed to something"}FILE_LIST_DIRECTORY = 0x0001path_to_watch = u"d:\\test"path_to_watch = os.path.abspath (path_to_watch)print "Watching %s at %s" % (path_to_watch,...
Posted in All Buzz Forum, Jul 6, 2008, 8:05 PM
I have previously had doubts about the benefits of using Django as a framework for a CMS. I still have my doubts but after working with Django I might be about to change my mind.The last year or so I have completed 4 projects using Django. 3 out of 4 projects was completed in time with a result that satisfied the customer. All 4 projects of...
Posted in Python Buzz Forum, Jul 6, 2008, 8:05 PM
I have previously had doubts about the benefits of using Django as a framework for a CMS. I still have my doubts but after working with Django I might be about to change my mind.The last year or so I have completed 4 projects using Django. 3 out of 4 projects was completed in time with a result that satisfied the customer. All 4 projects of...
Posted in All Buzz Forum, Jul 13, 2007, 5:31 AM
Web 2.0 is old news, but still funny :-)
Posted in Python Buzz Forum, Jul 13, 2007, 5:31 AM
Web 2.0 is old news, but still funny :-)
Posted in All Buzz Forum, Jul 13, 2007, 3:31 AM
I have created a project on Google Code for a CMS and CMS framework developed in Python.http://code.google.com/p/primoris/The framework will support access (users, groups) , pages and page hierarchies , i18n and extension modules.
Posted in Python Buzz Forum, Jul 13, 2007, 3:30 AM
I have created a project on Google Code for a CMS and CMS framework developed in Python.http://code.google.com/p/primoris/The framework will support access (users, groups) , pages and page hierarchies , i18n and extension modules.
Posted in All Buzz Forum, Jul 13, 2007, 1:31 AM
Well, Django is nice for building web applications, but have some drawback if you need to develop a CMS.The URL dispatcher is not much help. In a CMS you cannot determine the content of a given URL without looking inside some sort of DB which hold the content. This means that the urlpatterns structure most likely will hold a regex to an admin...
2 pages [ 1 2 Next ]
Advertisement