Been programming a lot with students and our two student dev teams are now really starting to pick up speed.
HTML5+CSS3+JS == bliss.
Self Driving Like it’s 1993
25 minutes ago
These are simply the philosophical musings of one guy with an inherent love of learning how things work.
Install it and then navigate to the folder where the pictures you wish to resize are located. Type:
mkdir resized
This will create subfolder called resized in that directory. This is where your resized pictures will be located. Now type:
find . -name "*.jpg" | xargs -i convert -scale 50% {} ./resized/{}
That's like kissing a robot that then goes over and kisses your lover, rather than you doing the kissing yourself!
sudo add-apt-repository ppa:doctormo/wacom-plus
sudo apt-get update
sudo apt-get install xf86-input-wacom
sudo apt-get install wacom-dkms
sudo modprobe wacom
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# leet.py
# an experiment in python to produce a good leet encoder
# that does not use a one-to-one mapping
# mFragin May 2011
# version 1.5 maps first and then substitutes, so
# each example is internally letter consistant
import random, string
myDefinitions = [["4","@","/-\\","∂","λ","a","A"],
["6","I3","ß","|:","(3","/3","b","B"],
["¢","(","©","c","C"],
["∂","])","[)","T)","cl","d","D"],
["€","£","ë","e","E"],
["]=","ph","|=","f","F"],
["6","(_+","9","(γ","(_-","cj","g","G"],
["/-/","]-[",")-(","|~|","]~[","}{","h","H"],
["!","|",":","i","I"],
["_|","_/","]","j","J"],
["|<","k","K"], ["1","|","|_","l","L"], ["|v|","]V[","(T)","|\\/|","/\\/\\","m","M"], ["|\\|","]\\[","~","n","N"], ["0","[]","¤","Ω","o","O"], ["|o","|>","p","P"],
["(_,)","0_","O,","q","Q"],
["12","®","|2","r","R"],
["5","$","§","s","S"],
["+","-|-","†","t","T"],
["|_|","L|","µ","u","U"],
["\\/","√","v","V"],
["vv","\\V/","\\X/","UU","w","W"],
["%","><","}{","x","X"], ["Ψ","¥","y","Y"], ["2","z","Z"]] myKeys = string.ascii_lowercase # Make a dictionary of the keys and values myDict =dict(zip(myKeys, myDefinitions)) # Get a string from user and make it lower case stringToConvert = raw_input("\nEnter a string: ").lower() leetString = "" variations = int(raw_input("\nHow many variations? ")) for i in range(variations): leetString = "" chosenLetters = {} for letter in stringToConvert: if letter in chosenLetters: leetString += chosenLetters[letter] elif letter in string.ascii_lowercase: choice = random.choice(myDict[letter]) leetString += choice chosenLetters[letter] = choice else: leetString += letter print leetString