- Open Automator
- Create a new Service
- Set “Service receives selected” to
files or folders
inany application
- Add a
Run Shell Script
action - Set the script action to
/usr/local/bin/atom -n $@
- Set “Pass input” to
as arguments
- Save as
Open in Atom
@mixin for-phone-only { | |
@media (max-width: 599px) { @content; } | |
} | |
@mixin for-tablet-portrait-up { | |
@media (min-width: 600px) { @content; } | |
} | |
@mixin for-tablet-portait-only { | |
@media (min-width: 600px) and (max-width: 899px) { @content; } | |
} | |
@mixin for-tablet-landscape-up { |
-
create/log-into your http://github.com account
-
create/log-into your http://c9.io account, using your github account credentials
-
from your C9 dashboard, create a new workspace, name it "intro-to-git", leave all other options at default values, then "Create workspace"
-
in github, create a "New repository" that is also named "intro-to-git"
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
Please note we have a code of conduct, please follow it in all your interactions with the project.
- Ensure any install or build dependencies are removed before the end of the layer when doing a
-- Run this to replace URLs in the database when moving a WordPress blog from | |
-- one URL to another. | |
-- Replace "wp_" with the table prefix you have chosen. (If it's "wp_" you | |
-- should really change it for added security). | |
-- You may need to update other tables/columns as well - I normally use | |
-- phpMyAdmin's database search tool to search for the old URL. | |
-- Note: Don't replace the guid field if you're changing the URL of a live site, |
At the top of the file there should be a short introduction and/ or overview that explains what the project is. This description should match descriptions added for package managers (Gemspec, package.json, etc.)
Show what the library does as concisely as possible, developers should be able to figure out how your project solves their problem by looking at the code example. Make sure the API you are showing off is obvious, and that your code is short and concise.