Host [name]
HostName [floating_ip]
User root
IdentityFile ~/.ssh/[ssh_key]
IdentitiesOnly yes
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
on run {input, parameters} | |
set delimitedList to paragraphs of (input as string) | |
tell application "Things3" | |
repeat with currentTodo in reverse of delimitedList | |
set newToDo to make new to do with properties {name:currentTodo} at beginning of list "Inbox" | |
end repeat | |
end tell | |
end run |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>font-name-aliases</key> | |
<dict> | |
<!-- N.B. 'system-font' is also available as an alias; it will be mapped to the actual system font at runtime. --> | |
<key>light</key> | |
<string>.SFNSText-Light</string> | |
<key>light-italic</key> |
This list has moved to the following page:
http://anonymoushash.vmbrasseur.com/resources/negotiation/
It's joining a number of other lists of resources (management, telecommuting, etc.):
http://anonymoushash.vmbrasseur.com/resources/
Keeping them all together like this makes it much more likely I'll maintain them (as a group they'll have a larger mindshare in my cluttered & busy brain) rather than fire & forget a list which is never updated again.
- Add the hooks file to
_add-ons/restrict_to/hooks.restrict_to.php
. - Add the
restrict_to
tags
field to your_config/bundles/member/fields.yaml
. - To restrict pages, add them to the
restrict_to
field. eg./blog
,/calendar
. They will only be allowed to edit pages that begin with this url.
If your member listing is visible, (it is by default), they can edit their own restricted pages.
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
airplane | |
airport | |
bank | |
beer | |
bicycle | |
boat | |
breakfast | |
bus | |
buy | |
cab |
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
# Update Ubuntu with the latest updates | |
sudo apt-get update | |
# Install Apache | |
sudo apt-get --yes install apache2 | |
# Enable mod_rewrite and mod_headers Apache modules | |
sudo a2enmod rewrite | |
sudo a2enmod headers |
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
# | |
# .htaccess | |
# Apache Configuration File | |
# | |
# This code has been assembed from various places. A LOT of it came from | |
# the HTML boilerplate. See their awesome stuff here: http://html5boilerplate.com/ | |
# | |
# Created by Jesse Bunch on 2011-04-15. | |
# Copyright 2011 Jesse Bunch (www.GetBunch.com). All rights reserved. | |
# |
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
#!/bin/sh | |
# Upgrade packages that are available to update | |
sudo apt-get update | |
sudo apt-get -y upgrade | |
# Miscelaneous tools and media players and game emulators | |
sudo apt-get install -y build-essential ubuntu-restricted-extras htop vcl smplayer k3b audacity audacious audacious-plugins visualboyadvance pcsxr | |
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
// See issue https://github.com/twbs/bootstrap/issues/8810 for more information. | |
// | |
// Thanks for the idea of the fix to: | |
// https://github.com/sixfootsixdesigns/Bootstrap-3-Grid-Columns-Clearing | |
@import "bootstrap/variables" | |
// Useful @media mixins (based on dimensions taken from bootstrap-sass) | |
=media-width-below($max) |
NewerOlder