Moved over to https://github.com/dominicfallows/digital-project-development-contract-agency-or-company-to-freelancer
Your monthly notice to go through and disconnect unused applications across various services. | |
Twitter: https://twitter.com/settings/applications | |
Dropbox: https://www.dropbox.com/account/connected_apps | |
Facebook: https://www.facebook.com/settings?tab=applications | |
Google Apps: https://security.google.com/settings/security/permissions?pli=1 | |
Google Ads: http://www.google.com/ads/preferences | |
Google Account: https://security.google.com/settings/security/secureaccount | |
Foursquare: https://foursquare.com/settings/connections | |
Instagram: https://instagram.com/accounts/manage_access |
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |
Between us: [ProteusNet d.o.o., Rudarska cesta 11, 8281 Senovo, Slovenia, EU] and you: [partner]
We’ll always do our best to fulfil the scope of this cooperation, but it’s important to have things written down so that we both know what’s what, who should do what and when, and what will happen if something goes wrong. In this contract you won’t find any complicated legal terms or long passages of unreadable text. We’ve no desire to trick you into signing something that you might later regret. What we do want is what’s best for both parties, now and in the future.
So in short;
- Install the command line tools for your OS X =================================================
This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make.
- Install Git
#!/bin/sh | |
### | |
# SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer) | |
# For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos | |
### | |
# Alot of these configs have been taken from the various places | |
# on the web, most from here | |
# https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Responsive Design Testing</title> | |
<style> | |
body { margin: 20px; font-family: sans-serif; overflow-x: scroll; } | |
.wrapper { width: 6000px; } | |
.frame { float: left; } | |
h2 { margin: 0 0 5px 0; } |
# lib/active_admin/comments.rb | |
# Always redirect to the resource on show | |
before_filter :only => :show do | |
flash[:notice] = flash[:notice].dup if flash[:notice] | |
comment = ActiveAdmin::Comment.find(params[:id]) | |
resource_config = active_admin_config.namespace.resource_for(comment.resource.class) | |
# I don't know why this is not working... yet. | |
# redirect_to send(resource_config.route_instance_path, comment.resource) |
Sublime Text 2 ships with a CLI called subl (why not "sublime", go figure). This utility is hidden in the following folder (assuming you installed Sublime in /Applications
like normal folk. If this following line opens Sublime Text for you, then bingo, you're ready.
open /Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl
You can find more (official) details about subl here: http://www.sublimetext.com/docs/2/osx_command_line.html