I just got this Chumby thing for Christmas. I was thinking of writing a StackOverflow widget for it. Does anyone know any caveats to programming this, or especially good things for chumby virgins to know? I have not yet begun to do my research. I guess it's just a Linux device which runs java widgets.
I often get asked the questions in an interview that "what is an outer join in SQL"?
While it can be answered, I wonder what might be some classic and good real life examples where a (LEFT) OUTER JOIN is used?
Unity 3D is an amazing tool for quickly creating good-looking, fun games. Unfortunately, its not intended to be used for actually designing your characters or complex levels.
Blender is the general low-budget answer for this, but is difficult to understand when compared to proprietary programs, say, 3DS Max. What else is out there?
I'm sorry for asking yet another "best [insert-technology] book".
I know a bit of MVC, I want to start a project in MVC 2 and a good book would be really helpful.
Usually, after a while, people come to a consensus what are the top 2-3 books for learning a given technology.
Have you read any ASP.NET MVC 2 book?
I'm creating a site where users can write articles and comment on the articles. I want to automatically check to see if a new article or comment is spam.
What are good libraries for doing this?
I looked at bayesian classifier libraries, but it seems that I would have to gather a large amount of samples and classify them all as spam or not spam myself...
I'm looking for something that can hopefully just tell me right out of the box.
Possible Duplicates:
Best ways to teach a beginner to program?
What is the easiest language to start with?
What is a good programming language for beginners?
I am 15 and had learned C++ before never got into it though?
But is this like learning a new language? like having to do it over and over and every day having new stuff to learn ?
As in the standart cycle:
- @goods.each do |good|
???
...to organize this (HAML):
.columns-wrapper
.column First good
.column Second good
.column Third good
.columns-wrapper
.column Fourth good
.column Fifth good
.column Sixth good
Hi there,
Does anyone know of a good open source toolkit that allows level designer and graphic designer or someone with basic programming experience to create multiplayer online Role Playing Game ? The game can be a simple 2D interface in a 2d virtual world.
I know Microsoft have a starter kit something like the following :
http://creators.xna.com/en-US/starterkit/roleplayinggame
that allows developer to create RPG game running on XBox platform but i am looking more on multiplayer role playing game on the web platform where player can play directly with their browser.
regards
Andrew
I need to transmit some data over the wire and I don't want that data being plain text.
The text I'm sending needs to be reversed so I can't md5/sha256/etc...
What's a good way to encode a salted string?
I'm an Android Developer and as part of my next app I will need to evaluate a large variety of user created mathematical expressions and equations. I am looking for a good java library that is lightweight and can evaluate mathematical expressions using user defined variables and constants, trig and exponential functions, etc.
I've looked around and Jep seems to be popular, but I would like to hear more suggestions, especially from people who have used these libraries before.
Is it a good idea to learn JavaScript before learning a JavaScript framework library such as jQuery, Prototype, etc.?
Sometimes I find myself struggling because I feel I don't know JavaScript as well as I should.
Many developers or teams seem to want to develope there features in isolation. I'm all for continuous integration and team work and I'm having hard time to figuring out if there are any good reasons from technical perspective in developing feature in isolation.
I spent a lot of time reading blogs and tutorials on the Net regarding how to do this and that with VS2010, but I thought it would be better to learn it in a more systematic way.
Do you know of a good website/book that will teach me how to use Visual Studio 2010/2008 Team System + Microsoft Project to perform various tasks from Project Management to code development and testing in the way the software was designed for?
Thank you.
This post is about 2 questions in one:
Good books for Boost C++ library
OO Design in C++. I come from Java background and tend to think in terms of Interfaces, Singletons etc. How do I translate it to C++ or how to start thinking differently for C++
-Ajay
I found this question, and it mentions the FlashDevelop wiki. However, I couldn't find anything there at all.
Where is a good place to start? I have done some work with MXML projects using the Flex SDK, but never any ActionScript programming.
What is a good PHP payment library that works with Paypal, Google Checkout and Authorize.net?
I did find this library but it is not maintained and doesn't offer Google Checkout. Is there other options such as a service that can handle those three or more gateways?
Is Django a good choice for a security critical application?
I am asking this because most of the online banking software is built using Java. Is there any real reason for this?
When I'm building a class library I usually create a file Enums.cs to hold all the enums used in the assembly. Here is an example:
namespace MyNamespace
{
public enum Colors
{
Red,
Green,
Blue
}
public enum Shapes
{
Circle,
Square,
Triangle
}
}
This makes all my enums easy to find, well organized and easy to access in code.
I'm wondering if there is any reason why this would not be such a good idea?
Where can I find a good XMPP (Jabber) tutorial with detailed information on the XML that's sent to/from a Jabber client and server. I've looked at the xmpp.org website, but what they show there is confusing and doesn't help me learn.
I want to write an XMPP client in C# that uses a TcpClient to connect to the server and send/receive XML data.
I'm using a customly created MySQL input sanitization library in one of my controllers, which makes a mess, using it in the model would be much easier, but I don't wan't to defy any best-practice principles out there either. So is it a good idea?
I'm just digging into the gcc manual and some things are still unclear to me:
When specifying a std, should I always use -pedantic in conjunction?
When using -g, it the standard level sufficient or should I specify level 3, i.e.
-g3?
Is it good practice to use -Werror to promote all warnings to errors and -pedantic-errors to promote all pedantic warnings to errors?
I need to combine 3d models from direct3d on top of a web cam feed. I hear vmr-9 is a good way to go, but I need tutorials. Anyone know of any?
visual studio 2008 c++
Hi,
Does anyone know of a good way to have a user enter an amount of time (hours and minutes) using visual studio controls? At the moment i have two numeric up downs, one for time and one for minutes that i then parse to create a timespan. The only other idea i have is a text box that a user can enter a "00:00" time in, and validate the input. Both of these ways seem a bit bad (in UI terms) though.
Any ideas?
Thanks