suggestions

Make radio buttons "checkable": HTML

How do I make radio buttons operate more like a check box? I need the function of a radio button, but it needs to be able to be de-selected. ...

Is there something using which i can write the code in jsp, and run it as standalone program?

Is it possible to code as if you are coding for any web application [ use html, jsp, css, spring etc ], but on execution it should not require any container or any server. It should run as if we are running a swing application. Somebody told me that Adobe Flex is just what i am asking for. Is it so? ...

shout cast application in iphone

Hi all i want to make sample shout cast radio application for iphone. Can you give the idea where should i start. any documentation and sample code. thanks ...

Website Security: How to learn?

I'm curious (for purely academic purposes) how website securities can be thwarted. What, generally, is web security? Server and client side? How to tell if a site is vulnerable? How to prevent vulnerabilities? How to throw server errors? Is it possible to break/shut down a server? So, in summation I'm asking about general web-secu...

Suggestions for a hosted database

I would like to have a SQL database online, but don't want to deal with its care and feeding. There are some commercial offerings out there for hosted DBs, for example Amazon SimpleDB. Can anybody suggest others, and if they used any of these services what their impressions were? Anything that helps me make an informed decision would be ...

How to test my application on older version of IE?

I have installed IE8 on my system. I usually test my application on this browser, but the problem arises when i got to know that the client is using IE7. Now how can i test my application on IE7? One possible solution is to have dual booting on my system. So on version of Windows i can have IE7 and on another i can have IE8. But i real...

jQuery: validation with ajax

I'm using the jQuery validation plugin on a form loaded via ajax. For whatever reason, it isn't working. Is there something special I need to do b/c it's loaded after js is initialized? Any ideas? Edit: Using the code from the plugin site: $().ready(function() { // validate the comment form when it is submitted $("form").va...

Which free/open source CMS ( PHP/My Sql) would be good to make and manage daily news based website of one city?

Which free/open source CMS would be good to make and manage daily news based website of one city? Site will be made by my team then it will be handled by non-technical client to add, manage and remove content. ...

Recommended Complexity Theory Book(s)

I'd like to start off by saying that I have no formal training in computer science. I have several years of programming experience but I'm entirely self-taught. Additionally, I have a relatively good grasp of common algorithms and their performance (e.g., time vs. space) characteristics. Since I lack formal training, however, I feel lik...

how can I make a suggestion for a new feature in python

Suppose I think I have a great idea for some feature that should be in python's standard library. Not something of the magnitude of a new keyword etc, just a suggestion for another decorator that would help a lot, IMO. How can I suggest such a feature to the consideration of the "python committee :)"? ...

What should i learn after getting good knowledge of XHTML, CSS, Web Standards, Accessibility? Javascript or PHP?

What should i learn after getting good knowledge of XHTML, CSS, Web Standards, Accessibility,Usability, Information Architecture and Adobe Photoshop? Javascript/jquery or PHP First I want to learn and be focus to learn anyone of these two? Which language would be good to learn first? ...

Looking for a Sample of a "Related Questions" List like on StackOverflow

Many websites have a feature that suggests items based upon what you're currently typing. For example, here on Stack Overflow you are suggested similar questions as you type a question title. How can I do something similar to this? ...

Is this the right way of handling command line arguments?

ask_username = True ask_password = True ask_message = True ask_number = True def Usage(): print '\t-h, --help: View help' print '\t-u, --username: Username' print '\t-p, --password: Password' print '\t-n, --number: numbber to send the sms' print '\t-m, --message: Message to send' sys.exit(1) opts, args = getop...

Should I use fork or threads?

In my script, I have a function foo which basically uses pynotify to notify user about something repeatedly after a time interval say 15 minutes. def foo: while True: """Does something""" time.sleep(900) My main script has to interact with user & does all other things so I just cant call the foo() function. direct...

sample/good rails projects to learn from

I am just starting with Rails. I've read through the AWDR book and am currently working on a side project in rails. I want to get an idea of what a good rails project should look like in order to learn what the best practices are. Can you guys point me to some good rails projects on github that not only work well but are well written?...

CSS Caching and User-Customized CSS - Any Suggestions?

I'm just trying to figure out the best approach here... my consideration is that I'd like my users to be able to customize the colors of certain elements on the page. These are not pre-made css they can choose from, but rather styles that can be edited using javascript to change the style, so they cannot be "pre-made" into separate style...

What Project Management Software should I use?

I am looking for either an MS tool like project or an open source equivalent. Yes I could google it, but I am looking for some insight from some people who work with the end of the software I would as a programmer. The tool has to run using IIS as the webserver or it's own custom webserver that can run on Windows Server. It would be ni...

what are good blogs to read relating java, spring, hibernate, maven?

To continue to question further I'm more interested in blogs, websites who once in a while release a tutorial, tip or best-practice on the topics I mentioned. For ex : http://net.tutsplus.com/ is very good website to follow if you wanna learn about or upgrade your knowledge about CSS, HTML, Javascript, PHP .. Is there a website like thi...

Need some advice on a language to use for a 'presentation display board'

As part of the project i am working on I am looking to produce some software that works on a LCD display (think call center info boards) and displays various graphs (the bars grow etc in realtime, so incoming call stats etc etc) and flicks between various 'plug-ins'. The problem is deciding what language to use.. I am thinking about usin...

Best way to make suggestion box in an iPhone App

Hey Guys I'm thinking about making a suggestion box for my next iPhone app. What's the best way to go about this? I was thinking an ModalViewController, a text box that emails out? Are there any other(better ways) to do it? Any expertise would be appreciated. Update: I read that sending an email from an app is a private api? Will t...