(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
#!/usr/bin/python | |
import requests, json, pprint, time, socket | |
CARBON_SERVER = '0.0.0.0' | |
CARBON_PORT = 2003 | |
def send_msg(message): | |
#print 'sending message: %s' % message | |
sock = socket.socket() |
public class PalindromeMaker { | |
public String make(String baseString) throws Exception{ | |
int[] hash= new int[26]; | |
for(int i=0;i<baseString.length();i++){ | |
char ch=baseString.charAt(i); | |
if(ch<'A' || ch>'Z') throw new Exception("Wrong Input"); | |
hash[ch-'A']++; | |
} | |
boolean check=false; | |
StringBuilder begin=new StringBuilder(); |
import sys | |
import colorsys | |
from colorz import colorz | |
WALLPAPER = '/home/james/.wallpaper' | |
COLORS = '/home/james/.colors' | |
XRESOURCES = '/home/james/.Xresources' | |
cols = '' | |
xres = """ |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
Roll your own iPython Notebook server with Amazon Web Services (EC2) using their Free Tier.
Source: http://christonard.com/12-free-data-mining-books/
Django is over 10 years old; but the web that it was built for - the world of "Web 2.0" - doesn't really exist any more. Yes, we still need to rapidly develop database-backed websites, AJAX-enabled, but the modern web is faced with new problems, and new challenges. Many of those challenges involve interacting with devices that aren't desktop machines, and platforms that aren't a traditional browser - places where Python isn't a first-class citizen.
Does this mean we have to abandon Django and Python for other frameworks and languages? Can we keep using Python and Django on the server side and interact with independent client side frameworks? Or can we push Python and Django into these new environments?
In this talk, Dr Russell Keith-Magee will explore the problems, and some potential solutions, to these problems.
Detailed abstract
sudo apt-get update
sudo apt-get install git
cd ~
git clone --recursive https://github.com/CartoDB/cartodb20.git