This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://www.orchard.co.uk/ | |
- for the refreshments | |
https://www.carboncreative.net/ | |
- for the stickers (come and grab me if you’d like some) | |
https://www.ctidigital.com/?utm_source=s10wen&utm_medium=link&utm_campaign=mcr_fred | |
- for filming | |
http://www.havaslynx.com/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"snippets": { | |
"css": { | |
"snippets": { | |
"bdr": "border-radius:", | |
"bb": "border-bottom: ", | |
"cp": "cursor: pointer;", | |
"mza": "margin: 0 auto;", | |
"mxw": "max-width:", | |
"ofw": "overflow-wrap: breakword;", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Brad Frost: | |
TBC | |
Alicia Sedlock: | |
https://speakerdeck.com/aliciasedlock/jumping-into-front-end-testing | |
Richard Rutter: | |
http://webtypography.net/talks/upfront2015/ | |
Soledad Penadés: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HTML: | |
<link href='http://fonts.googleapis.com/css?family=Source+Code+Pro' rel='stylesheet' type='text/css'> | |
CSS: | |
/* @alpha : hsl( 78, 92%, 47%); light green */ | |
/* @bravo : hsl(340, 95%, 56%); dark red */ | |
/* @charlie: hsl(187, 71%, 68%); light blue */ | |
/* @delta : hsl(262, 100%, 73%); purple */ | |
/* @echo : hsl( 53, 66%, 71%); yellow */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Got https://github.com/s10wen/24pullrequests set up locally, then tried to go back to go back to my Octopress blog: https://github.com/s10wen/s10wen.github.io | |
Below are things I tried and what it output. | |
*** | |
``` | |
rake generate | |
``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Prettified CSS from http://images.apple.com/v/home/bd/styles/home.built.css | |
# on 9th September 2014 | |
# | |
/* ---- BUILT FILE. DO NOT MODIFY THIS DIRECTLY. ---- */ | |
html { | |
font-size: 100%; | |
-ms-text-size-adjust: 100%; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# ssh into server | |
ssh [email protected] | |
# cd to path | |
cd /where/you/want/ | |
# list everything in a vertical list | |
ls -al |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Adds WordPress zipped up: | |
wget http://wordpress.org/latest.tar.gz | |
# Unzip WordPress: | |
tar xfz latest.tar.gz | |
# Move the contents of WordPress back a folder: | |
mv wordpress/* ./ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# client.html | |
```html | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> | |
<script src="/socket.io/socket.io.js"></script> | |
<script> | |
io = io.connect() | |
room = prompt('type a room name') | |
// Emit ready event with room name. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
while :; | |
do | |
echo "$(date)" | |
dig sitename.com; | |
sleep 600; | |
done |