Debian 7 droplet
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Hangman</title> | |
<meta name="author" content="Giulia Alfonsi"> | |
<meta name="description" content="Giulia Alfonsi's Hangman game"> | |
<style> | |
textarea { | |
border: 1px solid #999; |
Dear Employer,
My name is Giulia (it's pronunciated the same as Julia) and I am a front end developer from Italy currently living in Brighton, UK.
I am writing to You for one simple reason: I love my job and I am looking for a company that loves it too. I moved from Italy to the United Kingdom with one dream: to improve myself, my knowledge and my skills, to find a place where innovation is appreciated, to work for a company that cares about what it does and how it does it. Honestly, so far I feel like I haven't found this magical place. Sure, all the companies I have worked for wanted to be succesful and wanted to create and provide a great product, but none of them really cared about my field: front end. Front end for me is not just "writing HTML and changing colors with CSS" as someone not familiar with the field may think. Front end for me is delivering a better experience to the users, writing good code, caring about performances, thinking forward, caring about possible problems, bugs and changes.
This guide is for installing CyanogenMod 10.1 on Samsung Galaxy S II using Mac OS X (10.8.4 at the time of writing).
- CyanogenMod 10.1 I use the Nightly version.
- ClockworkMod Recovery This is the link to the latest version, but I used the 5.5.0.4 version.
- Google Apps I used the 20121212 version.
^#?(([a-fA-F0-9]{3}){1,2})$ |
Chrome Canary theme: Atlantic Canary
Chrome blue theme: Classic Blue Chrome Theme - NonAero
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<style> | |
.ellipsis { | |
max-height: 200px; | |
overflow: hidden; | |
position: relative; | |
} | |
.js-ellipsis > *:first-child { |
String.prototype.trimChar = function (find) { | |
var reg = new RegExp("^[" + find + "]+|[" + find + "]+$", "g"); | |
return this.replace(reg, ''); | |
} | |
String.prototype.ltrimChar = function (find) { | |
var reg = new RegExp("^[" + find + "]+", "g"); | |
return this.replace(reg, ''); | |
} |
Change the folder permission of Site, Dropbox, Dropbox/www to "Read & Write" for all the users
// Which HTML element is the target of the event | |
function mouseTarget(e) { | |
var targ; | |
if (!e) var e = window.event; | |
if (e.target) targ = e.target; | |
else if (e.srcElement) targ = e.srcElement; | |
if (targ.nodeType == 3) // defeat Safari bug | |
targ = targ.parentNode; | |
return targ; | |
} |