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
tell application "Microsoft Outlook" | |
set theMessage to first item of (get selected objects) | |
set theSubject to the subject of theMessage | |
set theBody to the plain text content of theMessage | |
set theID to the id of theMessage | |
end tell | |
tell application "Things3" | |
show quick entry panel with properties {name:theSubject, notes:theBody} | |
end tell |
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
# Hybrid Designer ? | |
The term digital design and web designer are becoming obsolete, the emerging role of the designer is to create connected experiences that transcend media. Shifts in teaching away from the terms digital and web will allow us to focus on pedagogy that focuses on creating compelling communication. Adam Procter's talk proposes that the Hybrid Designer has the potential to free us from assumptions related to media outputs and help us examine the real potential of digital platforms and their interface with other more traditional communication channels. |
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
server { | |
listen 80; | |
server_name researchnot.es .researchnot.es; | |
location / { | |
proxy_pass http://127.0.0.1:8000; | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
proxy_set_header X-Forwarded-Proto https; | |
proxy_set_header X-Forwarded-Port 443; |
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
package main | |
import ( | |
"html/template" | |
"net/http" | |
"path/filepath" | |
"strings" | |
"io/ioutil" | |
"github.com/russross/blackfriday" |
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
<ul class="container"> | |
<li> | |
<img src="http://meanwhile.soton.ac.uk/webproject/img/duck.png" /></li> | |
<li><img src="http://meanwhile.soton.ac.uk/webproject/img/duck.png" /></li> | |
<li><img src="http://meanwhile.soton.ac.uk/webproject/img/duck.png" /></li> | |
<li><img src="http://meanwhile.soton.ac.uk/webproject/img/duck.png" /></li> | |
<li><img src="http://meanwhile.soton.ac.uk/webproject/img/duck.png" /></li> | |
</ul> |
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
CmdUtils.CreateCommand({ | |
names:["url"], | |
arguments: [{role: "object", nountype: noun_arb_text, label:"Enter a url to navigate to it!"}], | |
execute:function(args){ | |
Utils.openUrlInBrowser(args.object.text); | |
} | |
}); |