Softd

FacebookTwitter
Become a Programmer, Motherfucker http://programming-motherfucker.com/become.html If you don't know how to code, then you can learn even if you think you can't. Thousands of people have learned programming from these fine books: Learn Python The Hard Way
http://www.josuttis.com/libbook/idx.html The C++ Standard Library: Index Index This is the index of all code examples of the book The C++ Standard Library - A Tutorial and Reference by Nicolai M. Josuttis . [ contents ] [ examples-home ] [ book-home ] [ copyrights ]
Asymptotic analysis http://en.wikipedia.org/wiki/Asymptotic_analysis In mathematical analysis , asymptotic analysis is a method of describing limiting behavior. The methodology has applications across science. Examples are in computer science in the analysis of algorithms , considering the performance of algorithms when applied to very large input datasets. the behavior of physical systems when they are very large. in accident analysis when identifying the causation of crash through count modeling with large number of crash counts in a given time and space.
Norman Matloff University of California, Davis June 17, 2008 http://heather.cs.ucdavis.edu/~matloff/Python/PythonIntro.html A Quick, Painless Tutorial on the Python Language
Python Programming Language – Official Website
JavaScript 101, Beginner's Guide to Learning Block / Inline JavaScript JavaScript is a programming language that web browsers understand. You can use it to make your web pages interactive by: Responding to user actions and changes on the page Manipulating the web page’s contents and behaviour Communicating with the user directly You can do just about anything you want with a web page, using JavaScript. In this introductory tutorial and the series to follow, I’ll introduce the JavaScript language and how to write it, through a series of practical worked examples. Example 1: Hello World! http://www.webdesignfromscratch.com/javascript/js101/
CSS Basics
Illustration of an application which uses libvorbisfile to play an Ogg Vorbis file In computer science , a library is a collection of implementations of behavior, written in terms of a language, that has a well-defined interface by which the behavior is invoked. In addition, the behavior is provided for reuse by multiple independent programs. http://en.wikipedia.org/wiki/Library_(computing) Library (computing)
http://en.wikipedia.org/wiki/Branch_table Branch table In computer programming , a branch table (sometimes known as a jump table ) is a type of efficient method of transferring program control ( branching ) to another part of a program (or a different program that may have been dynamically loaded) using a table of branch instructions . It is a form of multiway branch . The branch table construction is commonly used when programming in assembly language but may also be generated by a compiler , especially when implementing an optimized switch statement (where known, small ranges are involved with few gaps).
Python is a general-purpose , high-level programming language whose design philosophy emphasizes code readability . Python's syntax allows programmers to express concepts in fewer lines of code than would be possible in languages such as C , [ 11 ] [ 12 ] and the language provides constructs intended to enable clear programs on both a small and large scale. [ 13 ] Python supports multiple programming paradigms , including object-oriented , imperative and functional programming styles. It features a fully dynamic type system and automatic memory management , similar to that of Scheme , Ruby , Perl and Tclm and has a large and comprehensive standard library . [ 14 ] Like other dynamic languages , Python is often used as a scripting language , but is also used in a wide range of non-scripting contexts. Python (programming language) http://en.wikipedia.org/wiki/Python_(programming_language)
http://en.wikipedia.org/wiki/Functional_programming Functional programming In computer science , functional programming is a programming paradigm that treats computation as the evaluation of mathematical functions and avoids state and mutable data. It emphasizes the application of functions, in contrast to the imperative programming style, which emphasizes changes in state. [ 1 ] Functional programming has its roots in lambda calculus , a formal system developed in the 1930s to investigate computability , the Entscheidungsproblem , function definition, function application, and recursion . Many functional programming languages can be viewed as elaborations on the lambda calculus. [ 1 ]
When CivilizationTM IV (Firaxis Games, published by Take2) was announced, one of the most exciting features was that much of the scripting code will be in python, and the game data in XML. This tutorial attempts to teach you the basics of python programming that you could use with civIV. Of course, this tutorial is not limited to those who want to play a slow-paced turn-based strategy game. Home http://www.sthurlow.com/python/
Visual Studio 2012 RC Home | Microsoft Visual Studio 2012
Brainfuck is the ungodly creation of Urban Müller, whose goal was apparently to create a Turing-complete language for which he could write the smallest compiler ever, for the Amiga OS 2.0. His compiler was 240 bytes in size. (Though he improved upon this later -- he informed me at one point that he had managed to bring it under 200 bytes.) I originally started playing around with Brainfuck because of my own interest in writing very small programs for x86 Linux. The Brainfuck Programming Language
HTML Tutorial >> Earn money through freelance projects! Html Tutorial Html Group
HyperText Markup Language ( HTML ) is the main markup language for creating web pages and other information that can be displayed in a web browser . HTML is written in the form of HTML elements consisting of tags enclosed in angle brackets (like <html> ), within the web page content. HTML tags most commonly come in pairs like <h1>and </h1> , although some tags, known as empty elements , are unpaired, for example <img> . HTML