Soft

TwitterFacebook
Get flash to fully experience Pearltrees

Fabulous Adventures In Coding

http://blogs.msdn.com/b/ericlippert/ Posted 1 month ago Before we continue our exploration of truthiness in C#, a brief digression. I mentioned last time the "knights and knaves" puzzles of logician Raymond Smullyan.
Please give us feedback about our books via our anonymous survey. We can't respond to you (because we don't collect any personal information), but we take your feedback very seriously. No joke.

Ebooks: List of our free books - Microsoft Press - Site Home - MSDN Blogs

http://blogs.msdn.com/b/microsoft_press/archive/2011/03/03/ebooks-list-of-our-free-books.aspx
Par Peter Bull Deepin Prayag (Traduction) Commentez ce tutoriel : Commentez · Windows Phone 7 offre la possibilité d'écrire des applications en utilisant la plateforme Silverlight. Voici l'exemple classique du Hello World porté sur Windows Phone avec C# et Visual Studio 2010 Express pour Windows Phone.

Windows Phone 7 - Tutoriel 1 : Hello World

http://deepin.developpez.com/tutoriels/windows-phone/silverlight/hello-world/
Lang

OpenCTags - 'Exuberant Ctags' Add-on for code editors

OpenCTags will help you when you write code in big projects and you need a quick reference to keywords (classes, variables, structures, #define) in your project. It may be used as an autocomplete feature or to navigate throw your sources to reach the definition of your keyword. It keeps navigation history so you can easily go back and forth throw your code Microsoft Winsows as operating system. http://openctags.sourceforge.net/

Time Management | Personal Productivity | Managing Time

Take Control of Your Work Life by Learning How to Manage Time Welcome to Time Management Solutions – a website about time management , personal productivity and personal organization ! I want to show you how to be more productive at work, and also generally in your life. By using the techniques I show you here, you will be able to get more done, even if you use less time at work! http://www.time-management-solutions.com/
http://www.ganttproject.biz/

GanttProject Home

GanttProject is a cross-platform desktop tool for project scheduling and management. It runs on Windows, Linux and MacOSX, it is free and its code is opensource. What can it do?

Development / Download Links :: dotproject - Open Source Software :: Open Source Project and Task Management Software

All logos and trademarks in this site are property of their respective owner. The comments are property of their posters, all the rest (c) 2003 by me http://www.dotproject.net/modules.php?op=modload&name=News&file=article&sid=126
http://itunes.apple.com/us/itunes-u/introduction-to-algorithms/id341597754 Description This course teaches techniques for the design and analysis of efficient algorithms, emphasizing methods useful in practice. Topics covered include: sorting; search trees, heaps, and hashing; divide-and-conquer; dynamic programming; amortized analysis; graph algorithms; shortest paths; network flow; computational geometry; number-theoretic algorithms; polynomial and matrix calculations; caching; and parallel computing. If you've tried reading "Introduction to Algorithms" and felt lost at any point, this is a fantastic series to really hammer home some of the concepts. What a fanastic resource, even for OCW!

Introduction to Algorithms - Download free content from MIT on iTunes

http://appinventoredu.mit.edu/resources This course teaches how to create apps for mobile devices as a vehicle for learning big ideas of computer science, engineering, and entrepreneurship and explore technology's impact on society. Applications include games, quizzes, electronic voting, location-aware apps, social networking, and apps...

Resources for Using App Inventor in Education | App Inventor Edu

Google App Inventor est une application dont le but est de permettre à des utilisateurs non initiés de créer leurs propres applications Android

App Inventor | Android-France

http://android-france.fr/tag/app-inventor/
DevKit

DotNet

Excel

CodeProject

When I started programming many of the elements we take for granted now, did not exist. There was no DirectX and not many compatible libs were available for the free compilers of the day. So I had to write my own code for most basic programs, keyboard handlers, mouse handlers, video memory accessors, rasterizers, texture mappers, blitters… the programs I wrote then were 100% my own code and I had to be able to handle anything and everything. Personally I’ve always been interested in what was going on under the hood so this suited me just fine. I always dug into the details and I almost always end up programming as close to the bone ON the hardware (or OS) as I possibly can both to eek out as much performance as possible AND to satisfy my own hunger for knowledge.

The demise of the low level Programmer. « #AltDevBlogADay

Sorting Algorithm Animations

Sorting is a vast topic; this site explores the topic of in-memory generic algorithms for arrays. External sorting, radix sorting, string sorting, and linked list sorting—all wonderful and interesting topics—are deliberately omitted to limit the scope of discussion.

Five Tips for Floating Point Programming - CodeProject®

Introduction There are several traps that even very experienced programmers fall into when they write code that depends on floating point arithmetic. This article explains five things to keep in mind when working with floating point numbers, i.e. float and double data types. Most floating point operations involve at least a tiny loss of precision and so even if two numbers are equal for all practical purposes, they may not be exactly equal down to the last bit, and so the equality test is likely to fail. For example, the following code snippet prints -1.778636e-015 .
Do you want to learn how to create a game? This series will teach you how to create a game, starting from the very beginning and ending with a fully playable game. All programmers should know something about basic data structures like stacks, queues and heaps. Graphs are a tremendously useful concept, and two-three trees solve a lot of problems inherent in more basic binary trees. [ Top ]

C, C++ Programming Tutorials - Cprogramming.com

Duff's device - Wikipedia, the free encyclopedia

In computer science , Duff's device is an optimized implementation of a serial copy that uses a technique widely applied in assembly language for loop unwinding . Its discovery is credited to Tom Duff in November 1983, who at the time was working for Lucasfilm . It is perhaps the most dramatic use of case label fall-through in the C programming language to date.