Recent Comments
We've had 169 comments in the last week.
-
---- Thanks - you saved me some time.
---- You get my vote!.
---- I appreciate your effort.
- 2008-07-04 07:55:47, anonymous, Introducing the PyDev IDE for Eclipse -
Vielen Dank für die super engagiert gemachten und sehr professionell verfassten Screencasts! Es war ein sehr schöner Einstieg in Python für mich. Ich wünsche Euch viel Erfolg für Eure weiteren Projekte.
Matthias
- 2008-07-04 07:31:11, anonymous, OOP in der Praxis -
---- *Really* useful, thanks!.
---- Thanks - you saved me some time.
---- You get my vote!.
---- I appreciate your effort.
- 2008-07-04 06:43:15, anonymous, Debugging Python using the IPython Shell -
They changed the upload handling. in the newest trunk. http://www.djangoproject.com/documentation/upload_handling/
Anyone here, who knows what i have to change ???
- 2008-07-04 06:41:14, anonymous, Using Amazon's S3 service with Django -
---- Please make more on this subject!.
- 2008-07-04 05:49:30, swede, Variable Scope -
---- *Really* useful, thanks!.
- 2008-07-04 04:39:26, johnwil, Styles -
---- *Really* useful, thanks!.
- 2008-07-04 00:01:16, kenf, Variable Scope -
Great video, lots of good basic information to help me start learning Python. Easy to watch the videos and then open up an interactive prompt and try out the new features I just learned. I also like the web links for additional details.
- 2008-07-03 23:51:21, kenf, Variables are Objects -
---- *Really* useful, thanks!.
- 2008-07-03 23:21:47, Frank, Batteries-included - the csv module -
---- *Really* useful, thanks!.
---- Thanks - you saved me some time.
---- Please make more on this subject!.
---- I appreciate your effort.
- 2008-07-03 21:57:18, anonymous, Adding a Menubar to Our Sample Editor -
---- *Really* useful, thanks!.
---- You get my vote!.
---- Please make more on this subject!.
---- I appreciate your effort.
- 2008-07-03 18:41:10, quant, Using Amazon's S3 service with Django -
Nice job. The part where you explain the role of a New Window in IDLE was brief but also made sense of something that is not very clear on the face of it. Thank you.
- 2008-07-03 18:21:10, andrew-b, First 5 Minutes with Python -
---- You get my vote!.
---- Please make more on this subject!.
---- I appreciate your effort.
- 2008-07-03 18:17:28, andrew-b, First 5 Minutes with Python -
---- You get my vote!.
- 2008-07-03 16:51:18, quant, Basic Unittesting with Python -
---- You get my vote!.
---- Feedback - Volume is too low.
- 2008-07-03 16:29:13, quant, Handling Forms With webapp -
---- *Really* useful, thanks!.
---- Thanks - you saved me some time.
---- You get my vote!.
---- Please make more on this subject!.
---- I appreciate your effort.
- 2008-07-03 15:17:36, anonymous, GWT-Ext and saving Form data to a database -
Video published, thanks for contributing to ShowMeDo
- 2008-07-03 15:08:48, Ian Ozsvald, Variable Scope -
Video published, thanks for contributing to ShowMeDo
- 2008-07-03 15:08:45, Ian Ozsvald, Variables are Objects -
Video published, thanks for contributing to ShowMeDo
- 2008-07-03 15:08:42, Ian Ozsvald, Overview (Variables and Containers) -
---- Please make more on this subject!.
---- I appreciate your effort.
- 2008-07-03 14:50:37, anonymous, Installing Ruby -
---- *Really* useful, thanks!.
---- You get my vote!.
---- Please make more on this subject!.
- 2008-07-03 14:11:56, anonymous, Using Nosey for Python Testing -
---- *Really* useful, thanks!.
---- Thanks - you saved me some time.
---- You get my vote!.
---- Please make more on this subject!.
---- I appreciate your effort.
- 2008-07-03 12:43:59, mark, Shell Basics 3 -
Hi Hamish
Now my server is working. It is both what i type below AND use of notepad to configure the .yaml file.
1) First thing, use the " " at the end of the path
See this from
You have a few problems: you are putting a spurious backslash on the end of the path name. Sometimes this doesn't matter, but sometimes it stops dev_appserver.py working correctly (and gives you the AppConfigNotFound error). The other problem is that you are using a path with a space in it so you need to enclose the path in quotes (otherwise the program thinks you've given it too many arguments and you get the Invalid Arguments error). Also putting your application inside the google_appengine folder sounds like a very bad idea (are you certain that upgrading the appengine software isn't going to delete your code?)
This should work:
C:\Program Files\Google\google_appengine>dev_appserver.py "C:\Program Files\Google\google_appengine\helloworld"
This is simpler:
C:\Program Files\Google\google_appengine\helloworld>.. \dev_appserver.py .
And this is what you should probably do:
C:\Program Files\Google\google_appengine>mkdir C:\myapps C:\Program Files\Google\google_appengine>move helloworld C:\myapps C:\Program Files\Google\google_appengine>cd \myapps\helloworld C:\myapps\helloworld>set PATH=%PATH%;c:\Program Files\Google \google_appengine C:\myapps\helloworld>dev_appserver.py .
2) I copied the .yaml file from the new_project_templates installed in the google sdk into my directory and modified it. (which makes me think notedpad is somehow screwing this up)
MY FINAL OUTPUT:
C:\Program Files\Google\google_appengine>dev_appserver.py "C:\Program Files\Goog
le\google_appengine\ramaprojects\helloworld"
INFO 2008-07-03 17:15:35,671 appcfg.py] Server: appengine.google.com
INFO 2008-07-03 17:15:35,687 appcfg.py] Checking for updates to the SDK.
INFO 2008-07-03 17:15:35,780 appcfg.py] The SDK is up to date.
WARNING 2008-07-03 17:15:35,780 datastore_file_stub.py] Could not read datastor
e data from c:\docume~1\01-adm~1\locals~1\temp\dev_appserver.datastore
WARNING 2008-07-03 17:15:35,780 datastore_file_stub.py] Could not read datastor
e data from c:\docume~1\01-adm~1\locals~1\temp\dev_appserver.datastore.history
INFO 2008-07-03 17:15:36,046 dev_appserver_main.py] Running application new-
project-template on port 8080: http://localhost:8080
Hope that helps. Let me know if I can help you in any other way.
Regards
Quant
- 2008-07-03 12:22:09, quant, Installing the Python SDK and a 'Hello World' demonstration -
Hi Glen! I very much appreciate these tutorials. Keep up the good work!!
- 2008-07-03 11:55:43, anonymous, Blender's Datablocks -
---- You get my vote!.
- 2008-07-03 10:53:37, anonymous, Working with GWT-Ext forms -
---- *Really* useful, thanks!.
- 2008-07-03 10:45:19, Frank Davidson, An introduction to Python resources - Part 2/2 -
yes Ian, I'd like it if you included some beginner programming tutorials also. This is my first attempt at programming and I have decided to start with Python based on a friend's recommendation. First I went to the python website and started there, but I felt like I needed more. The hands-on tutorials like the ones you provide are perfect because I learn more by doing rather than just reading. I like working on real projects because I feel like it sinks in more.
I work in a print production department in an advertising agency and learned InDesign, Photoshop, and Illustrator through the, "Adobe in a Classroom" books which provide tutorials involving real projects.
Thanks for your effort in putting together this site; I think it's great and appreciate the fact that you are giving back to the community.
- 2008-07-03 10:44:43, Warren, Running Python 2.5 on Windows XP -
---- Thanks - you saved me some time.
- 2008-07-03 09:41:31, rstolpner, Using Python's CGIHTTPServer module to run CGI scripts -
hi David,
Can you help me about how can I add jdom.jar library into class path ? Because this is missing in the classpath on the jython.bat script. I am getting the following error
ImportError: no module named jdom
Plz help me to out from this. Fast rply will be most appreciable.
thanks,
Anil Soni
- 2008-07-03 09:40:56, anonymous, Jython - First Impression -
---- I appreciate your effort.
- 2008-07-03 09:30:14, rstolpner, Introduction to Python web-programming: CGI -
Very useful video. For those of us about to install VM and/or a Linux Live CD of some type, it is very reassuring to see what to expect before actually doing it on your own box.
- 2008-07-03 05:52:45, Hamish, Running Knoppix Linux on Windows inside VMWare -
---- You get my vote!.
- 2008-07-03 05:39:15, lessfuss, Inkscape Tutorial by Richard Querin - EP017 Glass Button Effect Redux -
---- Thanks - you saved me some time.
---- Feedback - Volume is too low.
- 2008-07-03 04:05:59, saccharin, Adding a Combo Box -
---- *Really* useful, thanks!.
---- Thanks - you saved me some time.
---- You get my vote!.
---- Please make more on this subject!.
---- I appreciate your effort.
- 2008-07-03 03:51:23, mark, Shell Basics 1 -
---- *Really* useful, thanks!.
---- You get my vote!.
---- I appreciate your effort.
- 2008-07-03 03:20:28, anonymous, Version Control with Subversion 6 -
Thanks a lot.. Its really Useful
~Gaurav
- 2008-07-03 03:19:55, anonymous, Version Control with Subversion 6 -
---- *Really* useful, thanks!.
- 2008-07-03 01:56:25, jawahar, Installing easy_install with ez_setup.py -
---- Thanks - you saved me some time.
---- You get my vote!.
---- Please make more on this subject!.
- 2008-07-02 23:23:32, Harish, The rename refactoring tool in Eclipse -
---- *Really* useful, thanks!.
---- You get my vote!.
---- I appreciate your effort.
- 2008-07-02 23:17:39, anonymous, An Introduction To Python Objects Using IPython (Part-3) -
---- You get my vote!.
- 2008-07-02 21:29:27, Alan Po, An Introduction to the Apple IPhone Sdk with "Hello World", -
Video published, thanks for contributing to ShowMeDo
- 2008-07-02 19:59:26, Ian Ozsvald, Using a wxPython Timer to Rotate the Molecule -
---- Feedback - Volume is too low.
- 2008-07-02 19:40:51, Jason Terlizzi, Python, sweet as candy. -
---- *Really* useful, thanks!.
---- You get my vote!.
---- I appreciate your effort.
- 2008-07-02 16:32:57, anonymous, Scribus PDF Forms -
---- Feedback - Visual quality could be improved.
---- I appreciate your effort.
- 2008-07-02 16:06:42, anonymous, TurboGears 2 Installation -
---- I appreciate your effort.
- 2008-07-02 15:41:37, Frank Davidson, Language overview -
---- I appreciate your effort.
- 2008-07-02 15:26:43, Frank Davidson, Python, sweet as candy. -
---- Please make more on this subject!.
---- I appreciate your effort.
- 2008-07-02 14:27:11, rstolpner, Functions and Classes -
---- Thanks - you saved me some time.
- 2008-07-02 14:14:54, rstolpner, Loops and Conditions -
---- I appreciate your effort.
- 2008-07-02 14:09:07, rstolpner, Indentation and Colons -
---- *Really* useful, thanks!.
- 2008-07-02 12:48:56, Jack, Installing Ruby -
Thank You! I'm a complete newbie. So I needed the very basic 4 stars
- 2008-07-02 12:46:33, Jack, What is Ruby? -
---- *Really* useful, thanks!.
---- Thanks - you saved me some time.
- 2008-07-02 12:24:00, anonymous, Shell Basics 2 -
---- *Really* useful, thanks!.
- 2008-07-02 12:18:58, anonymous, Version Control with Subversion 2 -
---- *Really* useful, thanks!.
- 2008-07-02 11:13:03, rstolpner, Handling Forms With webapp -
---- I appreciate your effort.
- 2008-07-02 11:04:20, rstolpner, Using Google's User Service -
---- Thanks - you saved me some time.
- 2008-07-02 10:59:33, rstolpner, Using the webapp Framework -
---- Thanks - you saved me some time.
- 2008-07-02 10:47:44, rstolpner, Installing the Python SDK and a 'Hello World' demonstration -
vedios are quite helpful for the straters to eclipse.
- 2008-07-02 09:14:01, anonymous, The rename refactoring tool in Eclipse -
---- I appreciate your effort.
- 2008-07-02 06:55:54, lynne, Creating Relationships -
---- You get my vote!.
---- I appreciate your effort.
- 2008-07-02 02:55:12, anonymous, Data Types & Shell Output -
---- You get my vote!.
- 2008-07-02 02:22:11, anonymous, All About Layouts -
---- *Really* useful, thanks!.
---- Thanks - you saved me some time.
---- You get my vote!.
---- I appreciate your effort.
- 2008-07-02 00:18:19, anonymous, Installation and Profiles -
---- *Really* useful, thanks!.
- 2008-07-01 21:14:38, shango, Debug Tip - Mising Import Statements -
i wonder if there could generate a download bar similar to the bittorrent interface in python.
- 2008-07-01 19:19:12, JZA, Python: Leo shows how the Buttonbox function of EasyGui (German / English subtitles) -
---- I appreciate your effort.
- 2008-07-01 17:51:48, anonymous, Working with GWT-Ext forms -
---- *Really* useful, thanks!.
- 2008-07-01 17:40:06, anonymous, GWT-Ext and Cypal Studio -
---- You get my vote!.
- 2008-07-01 16:38:35, Kyran Dale, Adding Color to the Atoms -
Video published, thanks for contributing to ShowMeDo
- 2008-07-01 14:54:50, Ian Ozsvald, Adding Color to the Atoms -
welcome to showmedo! A terrific screencast - i'll be moving the site to TG2 sometime in the near future, probably using a clean TG2 setup - can see this screencast being useful. The pacing was good, and the presentation smooth. More TG2 stuff please - while Django is trying to hog all the limelight.
- 2008-07-01 14:49:49, Kyran Dale, TurboGears 2 Installation -
Video published, thanks for contributing to ShowMeDo
- 2008-07-01 14:43:06, Ian Ozsvald, TurboGears 2 Installation -
---- *Really* useful, thanks!.
---- Thanks - you saved me some time.
---- I appreciate your effort.
- 2008-07-01 14:27:19, anonymous, Scribus PDF Forms -
---- *Really* useful, thanks!.
- 2008-07-01 14:09:47, anonymous, Drop Cap Style -
Nice screencast. I think it was very sensible to include virtualenv setup in the TG2 install screencast. The graphics and effects used are awesome. Congratulations!
- 2008-07-01 13:32:38, Sanjiv Singh, TurboGears 2 Installation -
---- *Really* useful, thanks!.
---- You get my vote!.
---- Please make more on this subject!.
---- I appreciate your effort.
- 2008-07-01 13:30:27, Sanjiv Singh, TurboGears 2 Installation -
Great information about camstudio, thanks very much. :) Simple, direct, to the point. It's a great jumpstart for us newbies.
- 2008-07-01 12:59:17, anonymous, Configuring CamStudio -
---- Thanks - you saved me some time.
---- You get my vote!.
---- I appreciate your effort.
- 2008-07-01 12:27:29, anonymous, Filtering Sensitive Logs -
Hi guys,
sorry about your troubles - as mentioned to Hamish off-comments, I installed GAE on a windows XP machine and it worked perfectly first time. At this point I can only conclude that this is a windows+GAE issue. The likely candidates are:
1. syntax error - files are incorrectly named - watch suffixes as windows has an annoying habit of hiding appended '.txt's
2, path error - either incorrectly referencing a file relative to the current directory or for some reason the XP environment variable 'Path' has not been set properly. From memory, not using windows on a daily basis, some of the later service packs prevent changes to the environment variables. If you type 'set' at the windows console prompt you should see that the 'Path' variables includes '[...];C:\Program Files\Google\google_appengine\'
if it doesn't this could be the source of the mixup. Just a thought. I'll see if I can turn up some stuff but without access to a 'broken' box it's hard to diagnose the problem.
kyran
- 2008-07-01 11:05:22, Kyran Dale, Installing the Python SDK and a 'Hello World' demonstration -
@quant: After uninstalling and reinstalling GAE, and making sure app.yaml is correctly configured etc. I am getting exactly the same error message as you, i.e. <dev_appserver.AppConfigNotFoundError>, including the exact same line reference numbers you list as well.
Check out this string of other WIndows users with the same problem here...
http://code.google.com/p/googleappengine/issues/detail?id=57
Have a look at the solution offered at the link in comment #4. Let us know if this works for you.
It has NOT worked for me.
You can also try checking out more of the google results from a search of <dev_appserver.AppConfigNotFoundError>
I am still trying stuff - let us know if you get lucky!
Hamish
- 2008-07-01 10:40:26, Hamish, Installing the Python SDK and a 'Hello World' demonstration -
---- You get my vote!.
- 2008-07-01 10:06:26, anonymous, An Introduction to Event-handling -
---- Thanks - you saved me some time.
---- You get my vote!.
---- I appreciate your effort.
- 2008-07-01 09:15:55, anonymous, Simple variables in Perl -
---- You get my vote!.
- 2008-07-01 06:04:44, manju, C tutorial - History - -
First thanks for the positive feedback.
Second, no I don't really notice that the text is very difficult to read, it is a bit small, I admit, but for me it is readable. Maybe my eyes are better than I thought they were.
If you really cannot read it and still want to see it, just download the original 800x600 version from http://www.mediafire.com/?4jkjowghy1q
- 2008-07-01 06:00:54, Florian Mayer, Basic Unittesting with Python -
---- Please make more on this subject!.
- 2008-07-01 05:18:53, anonymous, GWT-Ext and Cypal Studio -
Thank you.. it's absolutely amazing !
- 2008-07-01 04:46:15, anonymous, GWT-Ext and saving Form data to a database -
---- You get my vote!.
- 2008-07-01 03:38:39, shango, Using Google's User Service -
---- *Really* useful, thanks!.
---- Thanks - you saved me some time.
---- You get my vote!.
---- Please make more on this subject!.
---- I appreciate your effort.
- 2008-07-01 01:27:38, anonymous, Version Control with Subversion 6 -
---- *Really* useful, thanks!.
---- Thanks - you saved me some time.
- 2008-07-01 01:27:06, ErikE, Python, sweet as candy. -
---- *Really* useful, thanks!.
- 2008-06-30 21:28:42, mikal, Introduction to Ruby III -
---- *Really* useful, thanks!.
- 2008-06-30 20:07:08, mikal, Introduction to Ruby I -
Florian, I don't know if you noticed it but it is very difficult to read the text you write.
- 2008-06-30 18:50:21, gasto, Basic Unittesting with Python -
---- *Really* useful, thanks!.
- 2008-06-30 16:45:52, tvgarrett, Introduction to Scribus -
Hi Heimskr. Just replace the 'pathtofile = ...' line in my code with kenf's replacement, it should 'just work' for you.
Ian.
- 2008-06-30 15:37:53, Ian Ozsvald, Error Handling to give user-feedback -
Hi Gasto, yes, I see what you mean. By saying that 'pass' shows that the test has 'passed' I'm introducing some possible confusion.
'pass' is a Python statement which means 'do nothing', we use it when we haven't written more useful code yet. Since 'pass' is a no-op, it doesn't Fail or Error, so when nosetests is running is sees a perfectly good bit of code and chalks it up as a success.
Thanks for pointing out that possible confusion!
Ian.
- 2008-06-30 15:36:18, Ian Ozsvald, Unit Tests for Dependable Code -
---- You get my vote!.
- 2008-06-30 14:40:00, anonymous, Vector Math for 3D Programming -
thats nice too thanks
- 2008-06-30 14:07:23, anonymous, Calling functions on a server using XMLRPC -
hi florian
very clear and nice tutorial thanks for that!
- 2008-06-30 14:00:32, anonymous, Basic Unittesting with Python -
---- *Really* useful, thanks!.
---- Thanks - you saved me some time.
---- Feedback - Your speech is a bit too quick.
---- I appreciate your effort.
- 2008-06-30 11:45:43, Al-Chimist, Editing in JOSM -
Video published, thanks for contributing to ShowMeDo
- 2008-06-30 09:21:18, Ian Ozsvald, Calculating Bonds not in the .pdb File -
---- *Really* useful, thanks!.
---- You get my vote!.
- 2008-06-30 06:48:38, Ahmet Emre Aladag, Inkscape Tutorial by heathenx - EP055 RSS Icon -
---- *Really* useful, thanks!.
- 2008-06-30 05:09:41, husop, Introducing PyDev Extensions -
---- *Really* useful, thanks!.
- 2008-06-30 05:09:32, husop, Introducing PyDev Extensions -
---- *Really* useful, thanks!.
- 2008-06-30 04:41:06, husop, Introducing the PyDev IDE for Eclipse -
---- *Really* useful, thanks!.
- 2008-06-30 04:30:17, Rizwan, Overview - building your own Image Viewer -
---- I appreciate your effort.
- 2008-06-30 04:17:54, Rizwan, Learn Django: Create a Wiki in 20 minutes -
Video published, thanks for contributing to ShowMeDo
- 2008-06-30 03:03:16, Ian Ozsvald, Python set -
---- *Really* useful, thanks!.
---- Thanks - you saved me some time.
---- You get my vote!.
- 2008-06-30 01:19:23, anonymous, The 'IPython' Interactive Shell - Part 1 -
---- *Really* useful, thanks!.
---- Thanks - you saved me some time.
---- You get my vote!.
---- Please make more on this subject!.
---- I appreciate your effort.
---- Feedback - Volume is too low.
- 2008-06-29 20:58:06, anonymous, Support, resistance and the MACD -
Video published, thanks for contributing to ShowMeDo
- 2008-06-29 19:39:33, Ian Ozsvald, Vector Math for 3D Programming -
Video published, thanks for contributing to ShowMeDo
- 2008-06-29 19:39:32, Ian Ozsvald, Drawing the Bonds as Cylinders -
Hi Kyran
Thanks for the video. However I am trying to work this on windows and seem to be getting the same error as hamish. The error is as follows
C:\Program Files\Google\google_appengine>python dev_appserver.py /ramaprojects/h
elloworld
Traceback (most recent call last):
File "dev_appserver.py", line 50, in <module>
execfile(script_path, globals())
File "C:\Program Files\Google\google_appengine\google/appengine/tools/dev_apps
erver_main.py", line 351, in <module>
sys.exit(main(sys.argv))
File "C:\Program Files\Google\google_appengine\google/appengine/tools/dev_apps
erver_main.py", line 300, in main
config, matcher = dev_appserver.LoadAppConfig(root_path, {})
File "C:\Program Files\Google\google_appengine\google\appengine\tools\dev_apps
erver.py", line 2450, in LoadAppConfig
raise AppConfigNotFoundError
google.appengine.tools.dev_appserver.AppConfigNotFoundError
Could you please let me know what I am doing wrong?
Regards
Quant
- 2008-06-29 18:57:31, quant, Installing the Python SDK and a 'Hello World' demonstration -
Video published, thanks for contributing to ShowMeDo
- 2008-06-29 18:27:37, Ian Ozsvald, Hardware list, vmware client -
Video published, thanks for contributing to ShowMeDo
- 2008-06-29 18:27:36, Ian Ozsvald, Hardware list, vmware host. -
---- You get my vote!.
- 2008-06-29 18:27:02, quant, Installing the Python SDK and a 'Hello World' demonstration -
---- You get my vote!.
- 2008-06-29 17:54:22, quant, Introduction to the Series -
---- *Really* useful, thanks!.
- 2008-06-29 15:51:14, anonymous, The Tools -
---- *Really* useful, thanks!.
---- Thanks - you saved me some time.
---- You get my vote!.
---- Please make more on this subject!.
---- I appreciate your effort.
- 2008-06-29 14:45:31, anonymous, Change the form sort order -
---- Thanks - you saved me some time.
---- I appreciate your effort.
- 2008-06-29 11:38:07, anonymous, GWT-Ext and saving Form data to a database -
Ahhh, sorry my foult, it was my firewall at port 443 !!!
- 2008-06-29 10:43:28, anonymous, Using Amazon's S3 service with Django -
---- *Really* useful, thanks!.
---- You get my vote!.
---- I appreciate your effort.
- 2008-06-29 10:31:32, anonymous, Using CVS inside Eclipse -
---- *Really* useful, thanks!.
---- I appreciate your effort.
- 2008-06-29 10:19:27, anonymous, C tutorial - Building - -
---- You get my vote!.
- 2008-06-29 09:59:31, anonymous, OpenStreetMap introduction -
Video ends abruptly after approx. 2 mins - Please fix soon as am very interested.
Regards
Pete
- 2008-06-29 08:57:55, anonymous, Potlatch introduction -
Video published, thanks for contributing to ShowMeDo
- 2008-06-29 08:51:56, Ian Ozsvald, Basic Unittesting with Python -
---- Feedback - Your speech is a bit too quick.
- 2008-06-29 08:16:20, anonymous, The Tools -
Very nice guide :D
- 2008-06-29 08:12:28, anonymous, Potlatch introduction -
When i test this script, my django dev server hangs-up after a picture post. I use the newest django trunk.
- 2008-06-29 07:54:34, anonymous, Using Amazon's S3 service with Django -
---- Please make more on this subject!.
- 2008-06-29 07:06:24, anonymous, Python, sweet as candy. -
---- *Really* useful, thanks!.
---- Please make more on this subject!.
- 2008-06-29 06:46:05, anonymous, Variables -
---- *Really* useful, thanks!.
- 2008-06-29 05:45:33, anonymous, audacity export mp3 from ubuntu 7.10 -
I completely agree with what Kyran. I've personally never used XMLRPC much but I might in the future so this screencast will definitely come in handy.
Excellent pacing, clear and simple explanations. You should increase the font-size, though, as it makes everything easier to read.
Well done.
Lucas
- 2008-06-29 03:19:35, Lucas Holland, Calling functions on a server using XMLRPC -
---- *Really* useful, thanks!.
---- Please make more on this subject!.
- 2008-06-29 01:09:08, winyath, The rename refactoring tool in Eclipse -
---- Please make more on this subject!.
- 2008-06-29 01:08:44, winyath, Code-completion in Eclipse -
I have been trying to dig into my artistic well for years and finally gotten started. Your tutorial has helped me ea bunch in learning some fundamentals. For me your tutorial is important to me as a starting out computer graphics artist/designer and what you have shown is helping me out on a work related project which I am conducting to improve on my businesses public profile.
Thanks a million (if I make one I will be glad to share!).
- 2008-06-29 00:14:22, anonymous, Inkscape Tutorial by heathenx - EP037 DVD Software Box -
---- You get my vote!.
- 2008-06-28 20:45:28, anonymous, GPSBabel -
Hi
Thank you for your tutorial re running KNOPPIX live. As a newbee who wishes to try Linux at some point, my only concern was that you mentioned, “VMWare Player during installation would dissable DVD drives and USB ports”. That is quite worrying and appears to conflict with the goal i.e. to boot a Linux Live Disc from a DVD Drive, how will it boot if the DVD drive is dissabled? It maybe that as a newbee I have missunderstood something? Did you mean VMWare Player would dissable those hardware features in the BIOS settings? Or alter the driver assigning for the DVD Drives and USB ports in my system settings? I am sure you can see why I am so concerned. So could you please expand with “Show Me Do” tutoral and explane “when or how to enable and restore the dissable DVD Drive and USB ports”? Many thanks
Judy
- 2008-06-28 20:05:55, anonymous, Running Knoppix Linux on Windows inside VMWare -
---- You get my vote!.
---- Please make more on this subject!.
- 2008-06-28 17:37:36, anonymous, Part 2 Using The Clone Tool -
Hi,
I collect historical photos and have been looking for alternative software to restore them, so your contabution here was very helpful to me and I shall now start using Gimp. Thank you
Judy
- 2008-06-28 17:29:49, anonymous, Part 1 Using The Scissor Selection Tool -
---- You get my vote!.
- 2008-06-28 17:05:16, anonymous, ubunt recordmydesktop setup -
---- You get my vote!.
- 2008-06-28 16:53:55, anonymous, Printing Envelopes -
---- You get my vote!.
- 2008-06-28 16:42:56, anonymous, Creating a Letter Form a Template -
Really nice work Florian! I've used XMLRPC and it's a lovely little library - amazingly useful in the right context. In a short time, using intelligently selected examples, you give people all they need to get started. The pacing is good - the only comment viz production is that you might have exploited the space better and cranked up the font-size on VIM. Anyway, a very nice screencast.
- 2008-06-28 14:41:42, Kyran Dale, Calling functions on a server using XMLRPC -
Video published, thanks for contributing to ShowMeDo
- 2008-06-28 14:35:54, Ian Ozsvald, Calling functions on a server using XMLRPC -
---- You get my vote!.
---- Please make more on this subject!.
- 2008-06-28 14:34:02, anonymous, GPSBabel -
---- *Really* useful, thanks!.
---- You get my vote!.
- 2008-06-28 14:14:26, anonymous, The 'IPython' Interactive Shell - Part 2 -
---- I appreciate your effort.
- 2008-06-28 10:33:48, anonymous, Using vnc2swf.py on Linux -
---- *Really* useful, thanks!.
- 2008-06-28 10:31:00, anonymous, Secure File Transfer With WASTE -
---- *Really* useful, thanks!.
---- You get my vote!.
- 2008-06-28 09:54:21, anonymous, The 'IPython' Interactive Shell - Part 2 -
---- *Really* useful, thanks!.
---- You get my vote!.
---- Please make more on this subject!.
---- I appreciate your effort.
- 2008-06-28 05:53:25, Florian Mayer, PyInstaller: Installation und Anwendung -
---- *Really* useful, thanks!.
---- Thanks - you saved me some time.
---- You get my vote!.
---- Please make more on this subject!.
- 2008-06-28 05:07:04, anonymous, Potlatch introduction -
Hi Steve,
you'll need to enter the full URL directly. e.g. http://127.0.0.1:8000/cgi-bin/hello.py
Basically by default the server won't let you list the contents of the /cgi-bin/ directory, so you'll have to go direct to the relevant file.
cheers,
John
- 2008-06-28 04:38:19, John Montgomery, Using Python's CGIHTTPServer module to run CGI scripts -
Very insightful talk, would be nice to see this more active in the US. So far there are not enough linux phones compared to Asia. Away from that, would be awesome. I got a Nokia800 and is an awesome feeling since well most of my calls are Voip based.
- 2008-06-28 00:20:05, JZA, An Overview of the First OpenMoko Phone -
---- Thanks - you saved me some time.
- 2008-06-28 00:01:58, husop, Build a simple file-reader using PyDev -
---- *Really* useful, thanks!.
- 2008-06-27 23:47:19, husop, Starting a Python project with PyDev -
The volume was too low, and also I think that the video could go further in actually doing the replay. I might get encourage to do an alternative video with this.
- 2008-06-27 23:41:54, JZA, ubunt recordmydesktop setup -
Reading the DOCS just wasn't getting through to me. These tutorials were just what I needed to understand base. Thank you very very much!
- 2008-06-27 22:59:45, anonymous, Tab Order & Focus -
---- *Really* useful, thanks!.
- 2008-06-27 21:45:53, anonymous, Create a Form -
Problem in lesson 2 using Win XP. I start the webserver running CGIServer.py. I then input into the browser http://127.0.0.1:8000 and can see the folders in the browser. However, if I click on the cgi-bin folder, I get the following error response:
Error code 403.
Message: CGI script is not a plain file ('/cgi-bin/').
Error code explanation: 403 = Request forbidden -- authorization will not help.
This is the content of hello.py in the folder cgi-bin:
#!C:/Python25/python.exe
print "HTTP/1.0 200 OK"
print "Content-Type: text/html"
print
print "<b>"
print "Hello World!"
print "</b>"
What am I doing wrong???
Steve Rose
- 2008-06-27 20:41:41, nevets, Using Python's CGIHTTPServer module to run CGI scripts -
Very cool to see a GIMP beginners gasto. We need more of these building blocks to put other tutorials in context and help produce learning paths for newbies. You cover a fair amount in a short space of time - might be a little quick for some but it will reward multiple views. And basic GIMP is one of the most useful linux skills I can think of. Like where you're going with this. Congrats.
- 2008-06-27 18:03:41, Kyran Dale, GIMP - How to use the tools, part I - -
---- I appreciate your effort.
- 2008-06-27 17:06:10, Ben O, Handling Forms With webapp -
---- Please make more on this subject!.
---- I appreciate your effort.
- 2008-06-27 16:43:24, anonymous, A first Java program in Eclipse -
My first time watching a showMedo, and I liked it a lot! This one is definitely a great one for getting started!
Hopefully a community will start building around these tutorials, and then it would be great to see some more detailed explanations, like why the "public static void main(String[] args)" method is necessary - maybe not the best example, but the idea being to help users also understand how the language works, and not just what to type between which parentheses...
but I digress! Great video!
- 2008-06-27 16:42:44, anonymous, A first Java program in Eclipse -
---- *Really* useful, thanks!.
- 2008-06-27 15:53:19, anonymous, 'Hello World' with Perl -
---- *Really* useful, thanks!.
- 2008-06-27 15:44:23, anonymous, ubunt recordmydesktop setup -
Video published, thanks for contributing to ShowMeDo
- 2008-06-27 14:04:12, Ian Ozsvald, GIMP - How to use the tools, part I - -
Video published, thanks for contributing to ShowMeDo
- 2008-06-27 14:04:03, Ian Ozsvald, GIMP - How to use the tools, part II - -
Video published, thanks for contributing to ShowMeDo
- 2008-06-27 13:44:54, Ian Ozsvald, Gimp-Tutorial - Web 2.0 Scanlines machen -
no sound till end
- 2008-06-27 13:30:45, anonymous, openThinClient tutorials -
---- *Really* useful, thanks!.
---- Thanks - you saved me some time.
---- You get my vote!.
---- Please make more on this subject!.
---- I appreciate your effort.
- 2008-06-27 12:51:22, anonymous, Ubuntu: Making a .deb package out of a python program (English) -
---- Thanks - you saved me some time.
---- I appreciate your effort.
- 2008-06-27 11:02:08, anonymous, The 'IPython' Interactive Shell - Part 1
