I need an AI Bot for a chat service which can imitate a human. I have tried ALICE with AIMLBot(C#) as a front-end but it didn't work very well.
Are there any good bots you would recommend?
Hi - how do I push server alerts to tray apps in java without using xmpp or other heavy protocols?
Do you recommend a way to accomplish this?
I was planning to write an app which uses URLConnection on a server equipped with Comet but I doubt if that would work as the client requires a JS to be invoked and URLConnection is not a browser..
What is the best way to push instead of using a proprietary client-server approach?
I'm looking into creating a GUI program for Windows in C++, I have a good knowledge of C++ in the command line and also in game creation. But I'm not sure where to start with GUI application development.
I have Visual Studio 2010 and have created new projects with a GUI but these templates are complex and leaves me not understanding whats happening and how to modify it.
So I'm asking where do I start? Preferably good websites that you can recommend or tutorials, rather than books being a poor student :)
My Django project is going to be backed by a large database with several hundred thousand entries, and will need to support searching (I'll probably end up using djangosearch or a similar project.)
Which database backend is best suited to my project and why? Can you recommend any good resources for further reading?
I have created a database model in Visio Professional (2003). I know that the Enterprise version has the ability to create a DB in Sql Server based on the data in Visio. I do not have the option to install Enterprise. Aside from going through the entire thing one table and relationship at a time and creating the whole database from scratch, by hand, can anyone recommend any tool/utility/method for converting the visio database model into a Sql Script that can be used to create a new DB in Sql Server?
I'd like to implement a product support site in ASP.NET that will contain at least a forum and a knowledge base(FAQs). Could you recommend some good starting points?
Thanks
I'm looking for a best practice solution to be able to keep using redirect :back after a successful destroy action, as many items can be deleted from a variety of listings.
Unfortunately that strategy fails for the one case when the delete is initiated from the item view itself.
What approach do you recommend for this situation?
I need to create a workflow that routes a document to a reviewer and upon approval creates a document workspace in SharePoint 2007. Setting up the workflow for the the approval of the document is simple, but I'm unsure of how to create the document workspace upon approval. I want the document workspace to be created programmatically once the document is approved. Can someone recommend an approach for accomplishing this?
Can anyone recommend a language, library, framework or book which focuses on GUI programming from the perspective of a web developer?
I have experience in web development, for example HTML/AJAX/PHP/MySQL among similar technologies. However, I have never programmed my own back-end, or any kind of standalone program. Does anyone have experience making this transition, and what would I best study to help make the leap from the browser to creating programs with GUIs (primarily for Windows)?
To a developer who is about to delve into learning how to use Silverlight would you recommend its worth the effort OR would you say its better to focus on HTML5? I am asking from a purely from a marketability perspective
I am looking for a combination USB device that is both a flash drive and a Bluetooth adapter. Has anyone seen an item like this available recently? I found some old articles circa 2004 but could not find anything current. Could anyone recommend a company or service that could help me find an item like this?
Thank you,
- G
I have FrameworkElement, for example Grid, that has children(Cells, implemented in another control). When main Window changes size, i handle sizeChanged in Grid at first, and after that in some of its children. How can i get notify that all children sizeChanged events finished processing? Of course, i can raise other event in child sizeChanged and increase some counter, but for some reasons it is not the best decision.
Can anyone recommend something? Thanks!
I'm debating between Phonegap and RhoMobile for cross platform mobile application development. I'm a web developer with experience in Ruby as well as the traditional web technologies (HTML, CSS, and Javascript). The backend of this application will be accessed via a web browser and built with Rails. What are my chief concerns when choosing between these platforms? Which would you recommend I go with and WHY?
Thank you
Hi All
I like to coding few wordpress templates, and did search around that found there are few naked templates available, which i can start with.
As i am pretty new for wordpress, can you recommend the best naked template as foundation I can use?
Cheers
I want to learn how to create distributed application environments and web services using spring, aspectj, hibernate, etc. rather than EJBs.
Can anyone recommend a book or set of books that can help me (a single all-in-one book would be preferable)?
Also, any advice regarding learning/creating distributed app environments and web services is appreciated.
I have searched the stackoverflow site to find if someone has recommended any good books that show how jQuery can be used with asp.net controls. All the threads lead to only good jQuery books.
Can anyone recommend me a good book that shows how to use jquery with asp.net?
I have an ASP.NET WebForms public business site. I want to integrate a discussion forum into my site. However, I don't want people to have to log in twice.
Can someone recommend a ready made discussion forum solution that I can drop into my site, yet be able to customize with my login infrastructure?
Hello all
Can you recommend me on places where i can read and see examples on usage of Lambda operator in c# .
I will really like to see a lot examples on it...
Thanks.
I'm looking for a tool that can be used for sketching UI (specifically web UI). The sketches/drafts can look as simple as if it was drawn by hand on a whiteboard.
Preferably, this tool should be free/open-source and run on Linux as well as on Windows, but this is not a must.
Could you recommend?
Our company is finally coming out of the dark ages and embracing Java 6. We have been using Java 4 for many years and I'm interested in learning the new features offered by Java 5 and 6. So, can anyone recommend any online resources to help me learn what's new since Java 4?
I have a function a time consuming operation that is done
I want to start and end operations appear to be user (By statusbar control)
But when performed function, both text executed at the end of function.
(user can not sees "Start Operation ...")
What solution do you recommend to me?
private void btnUpdateDataBase_Click(object sender, RoutedEventArgs e)
{
TextBlockStatus.Text = "Start Operation ...";
//Time consuming operation
TextBlockStatus.Text = "End Operation ...";
}
I would like to call a method passing a parameter every 20 seconds,
e.g.
public void ProcessPerson(IPerson person)
I’ve been reading through the different Timer options and was wondering if anybody could recommend the most efficient way to do this?
Thank you for your help.