Check out the following resources to get an idea of what I mean when I say that:
Brew doctor isn't always correct and /usr/local is not a panacea
| module.exports = spacify; | |
| /** | |
| * Separate characters in a string with a space. | |
| * | |
| * @param {String} str | |
| * string to transform. | |
| * | |
| * @return {String} | |
| * Space separated string. |
| macro makeString { | |
| case { _ $tok } => { | |
| return [makeValue(#{$tok}[0].token.value, #{here})] | |
| } | |
| } | |
| macro qw { | |
| rule { ($delimited ...) } => { [$(makeString $delimited) (,) ...] } | |
| } |
| var selectn = require('selectn'); | |
| var talk = { | |
| info: { name: 'Go Ahead, Make a Mess' } | |
| }; | |
| var talk = selectn('info.name', talk); | |
| console.log(talk); |
| /** | |
| * CSS3 Border-Radius with Border - Circle Avatars | |
| */ | |
| /* General Styles */ | |
| body { | |
| background: url(http://subtlepatterns.com/patterns/white_texture.png); | |
| font: 100 14px sans-serif; | |
| color: #444555; text-shadow: 0 2px white; |
| require 'formula' | |
| class Snowcrash < Formula | |
| homepage 'http://apiblueprint.org' | |
| head 'https://github.com/apiaryio/snowcrash.git', :tag => 'v0.12.1' | |
| def install | |
| system "./configure" | |
| system "make", "snowcrash" | |
| bin.install Dir["bin/snowcrash"] |
| require 'formula' | |
| class JasmineNode < Formula | |
| homepage 'https://github.com/mhevery/jasmine-node' | |
| url 'https://github.com/mhevery/jasmine-node/archive/1.14.5.tar.gz' | |
| sha1 'd4f4776476a114ba6a1d0d368cdb4988d39e4cf0' | |
| depends_on "node" | |
| def install |
Check out the following resources to get an idea of what I mean when I say that:
Brew doctor isn't always correct and /usr/local is not a panacea
| .DS_Store | |
| node_modules | |
| build |
| require 'tire' | |
| # Tire.configure { logger STDERR, level: 'debug' } | |
| Tire.index('movie-titles') do | |
| delete | |
| create \ | |
| settings: { | |
| index: { | |
| analysis: { |
| require 'formula' | |
| class ZshNotify < Formula | |
| homepage 'https://github.com/marzocchi/zsh-notify' | |
| head 'https://github.com/marzocchi/zsh-notify.git' | |
| depends_on 'terminal-notifier' | |
| def install | |
| prefix.install Dir['*'] |