create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| /* eslint strict: [2, "global"] */ | |
| 'use strict'; | |
| /*** Main paths ***/ | |
| var projectRoot = './', | |
| root = './myProject.web/', // project root | |
| index = root + 'Views/Shared/Layouts/', | |
| src = root + 'Content/', // source code | |
| temp = root + 'temp/', // temporary folder | |
| dist = src + 'dist/', // generated code |
Edit: I few months ago I got a new laptop and did the same thing on Mavericks.
I just replaced the hard drive of my mbp and decided to do a clean install of Mountain Lion (10.8.5) since I was still using Snow Leopard (10.6.8).
I kinda regret for not using Boxen to automate the
| /*! webpack.config.js | Build JS, CSS,.. client assets and StyleGuide */ | |
| 'use strict'; | |
| var webpack = require('webpack'); | |
| var ExtractTextWP = require('extract-text-webpack-plugin'); | |
| var HtmlWP = require('html-webpack-plugin'); | |
| var path = require('path'); | |
| var moment = require('moment'); |
| var closure = require('google-closure-compiler-js') | |
| function closureCompilerPlugin(options = {}){ | |
| return { | |
| transformBundle(bundle){ | |
| const compilation = Object.assign({}, options, { | |
| jsCode: options.jsCode ? options.jsCode.concat({ src: bundle }) : [{ src: bundle }] | |
| }); | |
| const transformed = closure.compile(compilation); |
| # Ruby 1.9 using ruby-ni | |
| # | |
| # VERSION 0.0.1 | |
| # | |
| FROM base | |
| MAINTAINER Ivan Acosta-Rubio "[email protected]" | |
| ADD https://gist.github.com/ivanacostarubio/9309be8a79a94aafd02d/raw/8e84fac50a57a23f191eccf5e41bae4ecde80873/gistfile1.txt /etc/resolv.conf | |
| # Installing basic stuf: wget, git, ruby |
A curated list of AWS resources to prepare for the AWS Certifications
A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.
Index:
| // installed Clojure packages: | |
| // | |
| // * BracketHighlighter | |
| // * lispindent | |
| // * SublimeREPL | |
| // * sublime-paredit | |
| { | |
| "word_separators": "/\\()\"',;!@$%^&|+=[]{}`~?", | |
| "paredit_enabled": true, |
| {:user {:dependencies [[org.clojure/tools.namespace "0.2.3"] | |
| [spyscope "0.1.3"] | |
| [criterium "0.4.1"]] | |
| :injections [(require '(clojure.tools.namespace repl find)) | |
| ; try/catch to workaround an issue where `lein repl` outside a project dir | |
| ; will not load reader literal definitions correctly: | |
| (try (require 'spyscope.core) | |
| (catch RuntimeException e))] | |
| :plugins [[lein-pprint "1.1.1"] | |
| [lein-beanstalk "0.2.6"] |
| require "formula" | |
| class UniversalBrewedPython < Requirement | |
| satisfy { archs_for_command("python").universal? } | |
| def message; <<-EOS.undent | |
| A build of GDB using a brewed Python was requested, but Python is not | |
| a universal build. | |
| GDB requires Python to be built as a universal binary or it will fail |