Skip to content

Instantly share code, notes, and snippets.

View s10wen's full-sized avatar
💭
🦄

Simon Owen s10wen

💭
🦄
View GitHub Profile
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
```
@s10wen
s10wen / gist:64bf18ccb3702747a04a
Created March 9, 2015 22:33
ConfConf Monokai Theme
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 */
@s10wen
s10wen / gist:73afbfa5971ba966307a
Last active August 24, 2016 08:25
UpFrontConf 2015 - Slides
Brad Frost:
TBC
Alicia Sedlock:
https://speakerdeck.com/aliciasedlock/jumping-into-front-end-testing
Richard Rutter:
http://webtypography.net/talks/upfront2015/
Soledad Penadés:
@s10wen
s10wen / gist:b2c839e725965ad11c1f
Last active August 29, 2015 14:23
Sublime Text > Preferences > Package Settings > Emmet > Settings - User
{
"snippets": {
"css": {
"snippets": {
"bdr": "border-radius:",
"bb": "border-bottom: ",
"cp": "cursor: pointer;",
"mza": "margin: 0 auto;",
"mxw": "max-width:",
"ofw": "overflow-wrap: breakword;",
Spaceport - http://spaceportx.com
Escalator - http://theescalator.com
Hello Hub - http://hellowork.co.uk
The Assembly - http://assemblymcr.com
MadLab - http://madlab.org.uk
Metro Desk - http://metrodesk.com
Work Space - http://work-space.co.uk
.test {
padding: 0;
margin: 0;
border: 10px solid red;
}
```
$ defaults write com.bohemiancoding.sketch3 exportCompactSVG -bool yes
$ defaults write com.bohemiancoding.sketch3 svgExportSkipAssignIdToLayerName -bool yes
```
@s10wen
s10wen / Monokai-Phoenix.tmTheme
Last active October 15, 2018 10:11
Monokai-Phoenix.tmTheme
Moved to:
https://github.com/s10wen/dotfiles/blob/master/init/Monokai-Phoenix.tmTheme
@s10wen
s10wen / sass-nesting.md
Last active September 22, 2016 15:51
Sass Nesting using &
  1. Nesting:
.anElement {

  &_aBlock {
    …
  }

  &_anotherBlock {
 …