background preloader

CodeSkulptor

CodeSkulptor

Mining of Massive Datasets The book has now been published by Cambridge University Press. The publisher is offering a 20% discount to anyone who buys the hardcopy Here. By agreement with the publisher, you can still download it free from this page. Cambridge Press does, however, retain copyright on the work, and we expect that you will obtain their permission and acknowledge our authorship if you republish parts or all of it. --- Jure Leskovec, Anand Rajaraman (@anand_raj), and Jeff Ullman Download Version 2.1 The following is the second edition of the book, which we expect to be published soon. There is a revised Chapter 2 that treats map-reduce programming in a manner closer to how it is used in practice, rather than how it was described in the original paper. Version 2.1 adds Section 10.5 on finding overlapping communities in social graphs. Download the Latest Book (511 pages, approximately 3MB) Download chapters of the book: Download Version 1.0 Download the Book as Published (340 pages, approximately 2MB)

50 Places You Can Learn to Code (for Free) Online If you’re curious about learning a programming language then you’re in luck: there’s no shortage of resources for learning how to code online. University-level courses, tutorials, cheat sheets, and coding communities all offer excellent ways to pick up a new language, and maybe even a new job, too. Read on, and you’ll discover 50 great places to learn how to code, for free, online. University Many big names in education including MIT and Stanford offer programming courses, absolutely free. General If you’re just dipping your toes into programming, or you want to find a variety of resources, these sites offer several different ways to learn how to code. Community Learn how to code on these sites with a heavy community influence ready to offer help to newbs. Language Specific Drill down to the language you really want on these sites, offering expansive learning in one or two specific languages.

Templating Templating, and in particular web templating is a way to represent data in different forms. These forms often (but not always) intended to be readable, even attractive, to a human audience. Frequently, templating solutions involve a document (the template) and data. Template usually looks much like the final output, with placeholders instead of actual data (or example data in simplified form), bears common style and visual elements. Templating Engines There are many, many different HTML/XML templating packages and modules for Python that provide different feature sets and syntaxes. The number of templating engines is so great because the mechanisms involved are pretty easy to write in Python, at least for a fairly basic template engine; this recipe from the Python Cookbook shows how easy it is. Engines using Value Substitution The simplest form of templating engine is that which merely substitutes values into a template in order to produce the final output. HTML Shorthand Processors

Unstructured data is worth the effort when you've got the right tools It’s dawning on companies that data analysis can yield insights and inform business decisions. As data-driven benefits grow, so do our demands about what more data can tell us and what other types we can mine. During her PhD studies, Alyona Medelyan (@zelandiya) developed Maui, an open source tool that performs as well as professional librarians in identifying main topics in documents. Medelyan now leads the research and development of API-based products at Pingar. Pingar senior software researcher Anna Divoli (@annadivoli) studied sentence extraction for semi-automatic annotation of biological databases. “Big data is important in many diverse areas, such as science, social media, and enterprise,” observes Divoli. How did you get started in big data? Anna Divoli: I began working with big data as it relates to science during my PhD. Alyona Medelyan: Like Anna, I mainly focus on unstructured data and how it can be managed using clever algorithms. What projects are you working on now?

Become a Programmer, Motherfucker 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 Learn Ruby The Hard Way Learn Code The Hard Way I'm also working on a whole series of programming education books at learncodethehardway.org. Learn C The Hard Way Learn SQL The Hard Way Graphics Programming Language Agnostic NerdDinner Walkthrough Assembly Language Bash Clojure Clojure Programming ColdFusion CFML In 100 Minutes Delphi / Pascal Django Djangobook.com Erlang Learn You Some Erlang For Great Good Flex Getting started with Adobe Flex (PDF) Forth Git Grails Getting Start with Grails Haskell Java JavaScript JavaScript (Node.js specific) Latex The Not So Short Introduction to LATEX (perfect for beginners) Linux Advanced Linux Programming Lisp Lua Programming In Lua (for v5 but still largely relevant)Lua Programming Gems (not entirely free, but has a lot of free chapters and accompanying code) Maven Mercurial Nemerle Nemerle NoSQL Oberon Objective-C

IntegratingPythonWithOtherLanguages [Hint: The idea is to create pages for the stuff, not just link it.] There a various tools which make it easier to bridge the gap between Python and C/C++: Pyrex - write your extension module on Python Cython -- Cython -- an improved version of Pyrex CXX - PyCXX - helper lib for writing Python extensions in C++ SCXX ctypes is a Python module allowing to create and manipulate C data types in Python. These can then be passed to C-functions loaded from dynamic link libraries. elmer - compile and run python code from C, as if it was written in C PicklingTools is a collection of libraries for exchanging Python Dictionaries between C++ and Python. weave - include C code lines in Python program ackward exposes parts of Python's standard library as idiomatic C++ C/C++ Binding Generators Tools to make C/C++ functions/methods accessible from Python by generating binding (Python extension or module) from header files. Articles Related See also to name a few.

13 Sites to Download Free eBooks eBooks have become very popular with devices such as the Kindle and the new iPad. You can get applications for your smart phone to read PDF files and eBooks from most popular book sites. There ia a large choice of eBooks and many are free. Amazon has a collection of free eBooks for their Kindle reader so be sure and check their site. Many eBooks are standard PDF files so all you need is a PDF reader on your computer or port them to your Kindle or iPad and many other devices. You can also check out a list of free eBook sites by visiting this XMarks link for free ebooks. Sites To Find Free eBooks Ebookee – Books you will find: Almost any book, magazine, even audio books you can imagine. Disclaimer: Free does not always mean the eBooks were written and intended for free distribution.

The Python Tutorial Python is an easy to learn, powerful programming language. It has efficient high-level data structures and a simple but effective approach to object-oriented programming. Python’s elegant syntax and dynamic typing, together with its interpreted nature, make it an ideal language for scripting and rapid application development in many areas on most platforms. The Python interpreter and the extensive standard library are freely available in source or binary form for all major platforms from the Python Web site, and may be freely distributed. The same site also contains distributions of and pointers to many free third party Python modules, programs and tools, and additional documentation. The Python interpreter is easily extended with new functions and data types implemented in C or C++ (or other languages callable from C). This tutorial introduces the reader informally to the basic concepts and features of the Python language and system.

100+ Ways to Learn Anything on the Internet Learn Anything... Thanks to this amazing collection of educational websites you can become a master in anything from home renovations to rocket science, maths to photography, art to computer programming. What are you going to master today? TED Talks TED is a global community, welcoming people from every discipline and culture who seek a deeper understanding of the world. TED believes passionately in the power of ideas to change attitudes, lives and, ultimately, the world. Chesscademy Chesscademy offers free online lessons for people around the world who want to learn how to play chess or improve their existing game. Microsoft DreamSpark Programs DreamSpark is a Microsoft Program that supports technical education by providing access to Microsoft software for learning, teaching and research purposes. How Stuff Works HowStuffWorks got its start in 1998 at a college professor's kitchen table. Fora.tv Fora TV records some of the worlds best conferences, speeches and events. MusicTheory.net Busuu

Hands-On Python A Tutorial Introduction for Beginners Hands-On Python A Tutorial Introduction for Beginners Contents Chapter 1 Beginning With Python 1.1. You have probably used computers to do all sorts of useful and interesting things. 1.1.1. First let us place Python programming in the context of the computer hardware. z = x+y is an instruction in many high-level languages that means something like: Access the value stored at a location labeled x Calculate the sum of this value and the value stored at a location labeled y Store the result in a location labeled z. No computer understands the high-level instruction directly; it is not in machine language. Obviously high-level languages were a great advance in clarity! If you follow a broad introduction to computing, you will learn more about the layers that connect low-level digital computer circuits to high-level languages. 1.1.2. There are many high-level languages. 1.1.3. If you are not sure whether your computer already has Python, continue to Section 1.2.2 , and give it a try. Windows Linux 1.2.

Related: