I'm looking for a nice tutorial or framework for developing Python written web applications.
I've done lots in PHP, but very little in Python or Ruby and figured I'd start with the first one alphabetically.
I am trying to replace my previous ugly text button with an imagebutton. However, after changing the XML file with the following ImageButton code, my application won't even start. Why?
<ImageButton
android:layout_height="fill_parent"
android:id="@+id/refresh"
android:src="@drawable/refresh"
/>
Currently, I have osmething like this in all of my classes:
# Import logging to log information
import logging
# Set up the logger
LOG_FILENAME = 'log.txt'
logging.basicConfig(filename=LOG_FILENAME,level=logging.DEBUG)
This works well, and I get the output I want, but I would really like to have all this sort of information in one place, and be able to just do something like import myLogger and then start logging, and then hopefully be able to just go into that file and turn off logging when I need an extra performance boost.
Thanks in advance
Hi, guys,
I find stackoverflow is very friendly, professional and easy to use. Goole webiste is great too.
I knows little of web site development, since most of my time was working on C++.
There are many choices, so where is the start point, asp, jsp, python, php, etc?
Which technology I should use?
Which books are essential to website dev?
Hi I'd like to develop an application to monitor HTTP traffic to/from my PC. (what websites are being visited by the PC user). The problem is, that I couldn't get any articles how to start developing application like that. Any help ?
Hey guys
I'm getting this weird error in my Zend application with this piece of code:
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, 'www.xyz.com/ab.php');
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$data = curl_exec($curl);
curl_close($curl);
This is the error, I get:
Fatal error: Uncaught exception 'Zend_Session_Exception' with message 'session has already been started by session.auto-start or session_start()
When I remove that code everything works fine.
Any idea ??
Thanks
Hi All
I need to start using unit tests in my code . The problem is that i never written unit tests . Can you please recommend me some good sites and book how to write correctly unit tests and to use nunit application .
Thanks a lot for help.
I don't mean to start a holy war here, but I cannot fathom why would anybody use Visual Basic for a new project.
Can you explain me why is it used? What new applications (which a lay person may be familiar with) have been developed in it? Why is it chosen over other languages?
Thanks.
What are the best or most useful dev-related PowerShell modules that exist today? Not looking for sys admin management tools for Active Directory/Microsoft Exchange/etc., but more for development utilities.
Please list one module per answer, so they can be voted up accordingly.
I'll provide a few to start off.
Hi Friends,
I made an iphone story book application.
Suppose any user read story book and at half of the story book he/she close the apps.
when he/she want to read again this application at a time ask for continue or start again.
This is possible by using session but i don't know how to use session in iphone sdk.
So, please help me about this problem.
Thanks!
I would like to know which of the opensource PDF engine can convert a pdf into a image the fastest.
I don't care about the quality of the result (antialiasing ...)
For my project it need to be very very fast.
I would probably need to build my own but i dont wan't to start from scratch.
If we have a .NET executable that's using a .NET library, how does the CLR ensure you are using the correct version of the dll? CLRwise what is considered be the "correct dll version", to start with?
Does it only look at the version? Looks also at the build-time(?). Maybe it looks at an hash or something?
Thanks
Hi!
When I'm running my program, I get the following error:
... nested exception is
javax.naming.NameNotFoundException:
ejb not bound
The error occurs at the start up when Java wants to create a certain bean.
The Bean is a SimpleRemoteStatelessSessionProxyFactoryBean. Could it be that I ain't got the rights to access the naming provider URL although I can ping it?
When accessing the bean on my local JBoss there are no problems.
I have a team developing software in MS Visual Studio and now they want to start using MS Team Foundation Server, mainly for versioning and maybe patch and bug tracking.
They don't have any experience with MS Team Foundation Server, but they are very enthusiastic with MS products.
So whats the best free open source alternative solution? Git, SVN, CVS, Bugzilla, plugins, etc.
If I make a simple diff in git with e.g.:
git diff origin/master
where can I find good references on how to read the output of git. The man page on git-diff is rather long, and explains many cases which are maybe not necessary for a start.
I'd like to be able to have multiple "sets" of open files in netbeans but i didn't find a way or plugin to do it.
Say i have 5 file related to "bug xyz" but i want to start working on feature "abc". Instead of having 10 files open i'd like to be able to say "create new set of files" and work on those and switch back and forth.
Is there some way it netbeans to achieve this ?
I want to change a string which start 'a' and end 'n'.
For example: "action" I want to replace 'ctio' and all starting 'a' and finishing 'n' with ''.
How can do it?
i have been asked by a client to develop a javascript(mootools)/html/css/php based game as a widget which can be deployed anywhere.
I have not written a widget before, so would love to get some tips and experiences so that i know some of the pitfalls before i start!
Thanks :)
Dan
I'm trying to implement my own IRC client as a personal proejct and I realized I needed a way to read and write from the socket at the same time. I realized I could have a reading thread which reads from the socket in the background and puts data in a queue and I could have another thread which writes data from a queue to the socket. However I have no idea on how to start with multithreaded programing or how to do it with c++. Where do I go from here?
As above. Usually at work someone else does the database design, and when I do personal projects they're small enough to not really require more than five or six tables, but I'm about to start a personal project that I think will probably require around eleven or twelve tables and I'd like something to help me design it neatly and keep track of it.
Can you?
I downloaded C# express and Web Developer Express but neither have the templates that all of the walkthroughs start from.
Is there any way I can get the template or do I HAVE to get the professional version.
I have a live marketplace version of my application, and now want to start developing my next version, but want to be able to have the newer dev 'upgrade' (for testing) and existing live version (for demoing) both on the same device, but I dont want to create a whole separate project to do this.
Any ideas?
I'm would like to know how I can open a specific file using a specific program with a batch file. So far, my batch file can open the program, but I'm not sure how to open a file with that program.
@echo off
start wgnuplot.exe
I need to know how to start writing an application based on plug-in architecture. I mean how to write a base code an let others develop the application by adding the plug-ins they write.
I know that there is some problems in doing such in c++. most people use another language such as python to add plug-ins to their c++ application.
I'm looking to create something like what Apple has on their online store for displaying the summary of your computer and total as seen here. I'm guessing this is JavaScript, but it'd be even cooler if it could be done in CSS.
Basically I'd like something scrolls with the page like position:fixed, but I don't want it to start moving until the user has scroll past a certain position.
I'm using jQuery, so a jQuery plugin would be perfect as well.