learn

how did you get into objective C?

how did you get into objective C? I'm trying to learn but every book I pick up is crap, and I can't find any videos (I'm a visual learner too) ...

What is the most easy way to get in advanced Type Theory.

Of course, by 'advanced' I mean here just something beyond what every programmer does know. I'm currently more-or-less comfortable with the basics and want to understand the most important, most elegant and most practically applicable achievements of modern type theory. I just do not have much time, desire and mental powers to study all...

Need serious assembly help

I have been trying to learn assembly for a few years now. I get to do a "Hello, World" program but never further. I find it so hard. Is anyone able to point me to a place or maybe even themselves, teach me some? I have prior programming experice mainly in python. So i am not completely unfamiliar with programming. ...

Aspects to be considered for iPad development

How different is iPad development compared to iPhone development or Mac OS X development? Does anyone know the best way to learn it? ...

How long will it take a coder to learn ruby?

How long will it take for a developer to learn ruby. And develop a production website like stackoverflow ? Normally. If the developer have .NET experience but no ruby and MYSQL or PostgreSQL experience. ...

Learn UML but from C# perspective... (i'm beginner)

Hi, I need to learn UML but from a C# perspective. I'm beginner with C# language, so I don't have any experience in C/C++ and other languages. I'm a freshstart learner with C#. So I check google/books but they explain with VB/JAVA code and other IDEs. I need to find a book or extensive page about learn UML with C#. I know a little ...

What's the learning curve for Android?

What has people's experience been in learning Android? I'd be interested in how long it takes to get to the point where you're writing your first app, and how the experience compares to learning some other programming API. I know several professional programmers who have tried to learn Android and failed. Is it inherently more difficu...

css: the meaning of * mark

dear all..before using jquery i have used dreamweaver mx. so i'm not concern with css script, bcoz by using it we can make the web instantly without having to think about the code inside. this time i want to start learning about css. can you tell me what's the meaning of this: *{ margin:0 auto; padding:0; } ...

I want to learn C# and C++ and other such langurages...What is the best way?

Possible Duplicate: How to Learn Python I have recently started a new job and knowing a few more programming languages would be VERY helpful! any ideas where/how to learn C#, C++, perl, python, etc... as quick as possible? ...

Is ACM JTF using in real life?

Is this ACM JTF using in real life or just prepared for the students to make their study less complicated? ...

Kind share a site which gives upto date algorithms.

Kind share a site which gives upto date algorithms. ...

AS3, for loop create button inside movieclip and how to call it??

Here is my full code import fl.controls.*; var test:MovieClip = new MovieClip(); var btn:Button; for(var i:int = 1; i<=7; i++){ btn = new Button(); btn.name = "btn" + i; btn.x = i * 100; test.addChild(btn); btn.addEventListener(MouseEvent.CLICK, function(evt:MouseEvent) { nothing(i); }); } addChild(test); functio...

Objects and primitives in methods

Please advice why primitives being used as method's parameters do a copy of its value while objects are used as is? ...

Here's why programming is hard for me...

I'm attempting to teach myself Python as my first language. After reading through "Python for Dummies" I searched out a number of easy projects that I could attempt. However, my main problem is not knowing a large enough breadth of modules and functions to use. I feel like I just don't know enough. Sure, I understand the basics of buil...

php newbie class help.

class Theme { function __construct() { } function load( $folder, $file ) { $theme_path = ROOTPATH . '/theme/' . $folder . '/' . $file . '.php'; require_once($theme_path); return TRUE; } } on index.php <?php require class.theme.php $theme = new Theme; $theme->load('site','index'); ?> ...

New to C++, help me get started

Hey SO Im a Java programmer, with a little C knowledge who wants to get started with with C++ can someone recommend a good tutorial? also any help with: projects to learn with recommended reading what IDE ? I currently use NetBeans general C++ advice ...

How to learn C# and ASP.NET MVC at the same time?

My question is straight forward. I'm totally new to the Microsoft stack, I have experience in web programming using PHP and Django; and I'm very interested in learning ASP.NET MVC. Is there a way (tutorials, reference books.. what ever!) to learn the C# language AND ASP.NET MVC at the same time? I mean in the same introductory material (...

Way to learn modern perl for experienced programmer

Pretty simple, I don't want an introduction that introduces me to the concepts of loops, arrays, etc. I want a book that "gets into" perl right off the bat and is up to date enough for me to follow the conventions of modern perl use. Format doesn't matter, book, pdf, online tutorial, etc. I'd also prefer for it to be short. I can get aro...

Need to learn more about sessions in PHP

Can anyone provide me some learning resources that focus on session management in PHP? Preferably resources that aren't "dry". ...

Should I start learning ASP Classic or 'continue' learning ASP.NET?

Some background info: A year ago I had to learn PHP in school, I already knew ActionScript3 so it wasn't that difficult, and together with a friend of mine we were the first 2 of our school to learn ourselves OOP in PHP. It wasn't required but we thought it was important. Last year I started learning C# and ASP.NET, I really like C# btw...