Hello people. I was just wondering where one could start learning assembly language from. could you please suggest some place that can get me kick started with it ?
Are there any good, free, frame works for a RTS game? Could be as simple as Dune 2 or complicated as War Craft III. I have heard about Spring, loved TA, but feel it may have a steep learning curve.
I'm using MapXtreme 2008 v7 for a learning project, and was wondering is there any way to make a bubble appear with data when you pass a mouse over a point?.
thanks
I am currently learning the zsh and now I wanted to use strftime but i get:
zsh: command not found: strftime
I think I'm doin' something wrong, since I see people using that function all the time in their dotfiles.
Hello all,
I on the doorstep of a new learning curve .
I want to make reusable components / classes from my completed iphone project and with the mention of the following questions , If anyone want to redirect me to some useful reusable components or classes it will be useful to me .
http://stackoverflow.com/questions/843167/is-there-a-gallery-of-reusable-iphone-components-on-the-web
http://stackoverflow.com/questions/640805/open-source-iphone-components-reusable-views-controllers-buttons-table-cells
http://stackoverflow.com/questions/200850/are-there-any-open-source-iphone-applications-around
Thanks .
Hello everyone,
Im looking for a simple bit of code that will let me add the following html into my zend form:
<div id="wmd-button-bar" class="wmd-panel"></div>
Thats it, it needs to be above my 'method' element in the form but thats it. For such a simple action I cant find any methods that don't involve me learning rocket science (i.e Zend Decorators).
I've recently joined a company who specialize in the mobile telecommunication domain. I'm encountering a lot of jargons, and I'm feeling a bit lost in most of the conversations. Although I'm quickly searching for the new terms on the web and learning stuff on the job, I would like to read an introductory book that will take me through the basics of the mobile world. Thanks for your recommendations!
I am trying to learning C# and I have problem with following code
using System;
class IfSelect
{
public static void Main()
{
string myInput;
int myInt;
Console.Write("Please enter a number: ");
myInput = Console.ReadLine();
myInt = Int32.Parse(myInput);
if (myInt = 10)
{
Console.WriteLine("Your number is 10.", myInt);
}
}
}
Hello,
I've been programming in JAVA and C all my years at Uni, but now I'm learning C# and building a small application, and I've found troubles with this:
if (taxonType.Equals(null) ¦¦ taxonID == -1)
I get a red underline for this conditional, and I don't really know why, because according to what I've seen that should be ok, but it is not. Is there something I'm missing?
thank you all in advance,
Victor
I have started learning about vector drawing in Android with the Shape class.
Since Shape is a Drawable, and Drawables are usually defined as XML, it sounds a lot like the vector drawing commands in SVG.
My question is this: Has anybody created an XSLT transformation, or other mechanism, for converting an SVG drawing description into Android Shapes?
I recently started learning JavaFX.
At the moment I can't build any JavaFX project with Java class in Eclipse.
For every input I get error "package does not exist"
Path to JRE is set in project's properties.
Same class compiles if it is Java-project (not JavaFx).
What should I check in project settings or Eclipse prefferences?
Hi All,
I would like to know information on BO VOYAGER and its text books and how to get software for practice.
We have developed OLAP cubes using SSAS 2008 and we are concern to look for VOYAGER. any opinions on the VOYAGER and how to start learning VOYAGER.
I would like to know the complete information.
thanks all
prav
hi all,
we have developed e-learning web site for one of our customer.
recently he asked he need SCORM feed.
i dornt know whether my system is compatible with scrom.
do any body know any opensource php tool or lib to generate scrom from existing data.
thanks
I've got a few books and helpful guides to Perl from my company's scripting guy, but I can't seem to find where the best IDE for Perl is.
Mind you, simple is better. I'm just learning for now.
When is it appropriate to use openGl-es on the iPhone versus other toolkits? I have been learning to use it and suddenly feel it might be overkill for what I have in mind. Is it a good choice for something like a blackjack game?
I'm an Objective-C newbie and am enjoying reading/learning Objective-C in order to do iPhone development but I'm struggling to understand some of the code, especially the code that comes with the UIKit framework.
For example, take this line:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSelection:(NSInteger)section {
...
I understand the parameters passed in but am struggling to understand the return parameter. Any help appreciated.
I'd like to be able to use ruby's OptionParser to parse sub-commands of the form
COMMAND [GLOBAL FLAGS] [SUB-COMMAND [SUB-COMMAND FLAGS]]
like:
git branch -a
gem list foo
I know I could switch to a different option parser library (like Trollop), but I'm interested in learning how to do this from within OptionParser, since I'd like to learn the library better.
Any tips?
I am learning Scala and would like to set up integrated unit testing in Eclipse.
As far as I can tell from googling, ScalaTest is the way to go, possibly in combination with JUnit.
What are your experiences with unit testing Scala in Eclipse? Should I use the JUnit runner or something else?
I am learning GoF Java Design Patterns and I want to see some real life examples of them. Can you guys point to some good usage of these Design Patterns.(preferably in Java's core libraries).
Thank you
I'm learning perl and everytime I search for perl stuff in the internet I get some random page with people saying that perl should die because code written in it looks like a lesson in steganography. Then they say that python is clean and stuff like that. Now, I know that those comparisons are always stupid and made by fellows that feel that languages are a extension of their boring personality so, let me ask instead: can you give me the implementation of a widely known algorithm to deal with a data structure like red-black trees in both languages so I can compare?
I'm learning Erlang. I've moved from Haskell so I don't want to and have to learn functional programming.
But Erlang is quite specific because of the microprocesses. So, can you give me some examples which will be simple to test and measure and use all the power of Erlang?
I'm learning about DDD and enjoying every minute of it. However, there are some practical issues that are confusing to me that I think seeing some good samples might clear up.
So being at peace with those issues, does anyone know of some good working code samples that do a good job of modeling basic DDD concepts?
Particularly interested in
An illustrative Domain Model
Repositories
Use of Domain/Application Services
Value Objects
Aggregate Roots
I know I'm probably asking for too much, but anything close will help.
I am use to VB.NET. The game source code I am learning from is written in C#. I find it annoying that I have to add using System.Diagnostics to the source code in order to type Debug.WriteLine.... I checked under project properties, but I cannot find the References tab that allows me to add namespaces to Imported Namespaces. Where do I find this in C#?
Also, why can't I do this in C#? Imports x = System.Math