background preloader

Reference

Facebook Twitter

Workflow

Ipsum. HTML Entity Character Lookup › Left Logic. Created by Left Logic Using HTML entities is the right way to ensure all the characters on your page are validated. However, often finding the right entity code requires scanning through 250 rows of characters. This lookup allows you to quickly find the entity based on how it looks, e.g. like an < or the letter c. Features Search for entity characters based on how they look (taken from the W3C list of entities) Switch between standard and compressed views Copy the HTML entity to the clipboard Add your own keyword terms and characters to entities Settings stored in a browser cookie Available as a Firefox plugin - thanks to Yining To reset the keywords, clear your cookies for this page and the default keyword dictionary.

How it works The lookup searches the html entities for matches to the searched character based on how your character looks. There's no clever logic behind this, only the most powerful computer known to man - man's own brain. Regular Expression Library. Name that Color - Chirag Mehta : chir.ag. ***serialz.to*** Serial Box for Macintosh download the Serialbox. SimplePrograms.

Please note that these examples are written in Python 2, and may need some adjustment to run under Python 3. 1 line: Output print 'Hello, world! ' 2 lines: Input, assignment name = raw_input('What is your name? \n') print 'Hi, %s.' % name 3 lines: For loop, built-in enumerate function, new style formatting friends = ['john', 'pat', 'gary', 'michael'] for i, name in enumerate(friends): print "iteration {iteration} is {name}".format(iteration=i, name=name) 4 lines: Fibonacci, tuple assignment parents, babies = (1, 1) while babies < 100: print 'This generation has {0} babies'.format(babies) parents, babies = (babies, parents + babies) 5 lines: Functions def greet(name): print 'Hello', name greet('Jack') greet('Jill') greet('Bob') 6 lines: Import, regular expressions import re for test_string in ['555-1212', 'ILL-EGAL']: if re.match(r'^\d{3}-\d{4}$', test_string): print test_string, 'is a valid US local phone number' else: print test_string, 'rejected' 7 lines: Dictionaries, generator expressions.

A Periodic Table of Visualization Methods. QuickRef.