- Silken tofu (Sainos has it)
- Chilli bean sauce (toban djan) (this is the one I use)
- Aubergine
- Chestnut mushrooms
- Spring onions
- Corn flour
This file contains 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
orgs = await fetch("https://www.gov.uk/api/content/government/organisations").then(response => response.json()) | |
ministers = await fetch("https://www.gov.uk/api/content/government/ministers").then(results => results.json()) | |
console.log(`${ministers["links"]["ministers"][12]["links"]["role_appointments"][0]["title"]} - ${orgs["details"]["ordered_ministerial_departments"][5]["title"]}`) |
This file contains 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
XBOX 360, PS3 and PS2 videogame consoles for sale | |
XBOX 360 Elite 120GB console £50 | |
1 x controller | |
Wireless (A/B/G) adaptor | |
HDMI cable | |
Voice headset (never used) | |
Power adaptor | |
Manual |
This file contains 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
XBOX 360 Elite 120GB | |
1 x controller | |
Wireless (A/B/G) adaptor | |
HDMI cable | |
Voice headset (never used) | |
Power adaptor | |
Manual | |
Batman Arkham Asylum | |
Batman Arkham City (lenticular 3D slip cover) |
This file contains 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
# Install `dnsmasq` and configure for *.dev domains | |
$ brew install dnsmasq | |
$ vim /usr/local/etc/dnsmasq.conf | |
# Reload configuration and clear cache | |
$ sudo launchctl unload /Library/LaunchDaemons/homebrew.mxcl.dnsmasq.plist | |
$ sudo launchctl load /Library/LaunchDaemons/homebrew.mxcl.dnsmasq.plist | |
$ dscacheutil -flushcache |
This file contains 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
# For adding guard and guard notification | |
group :development do | |
gem 'guard' | |
gem 'guard-minitest' | |
gem 'terminal-notifier-guard' | |
gem 'guard-livereload', '~> 2.5', require: false | |
end |
- Lovely interface
- Editing settings is much easier
- As is installing packages
- Startup is slow
- Searching packages is slow
- No built in build option?
- But there's a ruby-test plugin already! https://atom.io/packages/ruby-test
- I like the sync-settings plugin
- atom-linter and linter-rubocop is much prettier and just worked with RVM
- putting in a long text string really slows it down though :(
This file contains 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
// ---- | |
// Sass (v3.3.14) | |
// Compass (v1.0.1) | |
// ---- | |
$color: blue; | |
$tablet: 768px; | |
@mixin border-radius($radii) { | |
border-radius: $radii; | |
} |
This file contains 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
// ---- | |
// Sass (v3.4.1) | |
// Compass (v1.0.1) | |
// ---- | |
// Create a %placeholder with repeated CSS and @extend them as required. | |
%btn { | |
border: 1px solid; | |
margin: 10px 0px; |
NewerOlder