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
<style id="jsbin-css"> | |
body { | |
margin: 20px; | |
font-family: Arial, sans-serif; | |
font-size: 12px; | |
} | |
.selects { | |
padding: 30px 10px; | |
} | |
.selects select { |
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
'use strict'; | |
var TestSuite = { | |
module: function(name, testCases) { | |
this.result('<b><br/>Module: ' + name + ' testing</b>'); | |
testCases(TestSuite); | |
}, | |
test: function(name, testCase) { | |
this.result('Test: ' + name); | |
testCase(TestSuite.assert); |
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
SASS/ | |
├── base/ | |
│ ├── base.sass // includes all common, mixin, vars, defaults | |
│ ├── _common.sass // common stuff like .clearfix | |
│ ├── _grid_settings.sass | |
│ ├── _mixins.sass // all mixin | |
│ ├── _vars.sass // variables | |
│ ├── _fonts.sass // call all fonts source here | |
│ ├── dev.sass // anything for development... grid lines | |
├── vendors/ |
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
Whatever I try to install its give me error | |
$ brew install mysql | |
==> Downloading https://downloads.sf.net/project/machomebrew/Bottles/mysql-5.5.28.mountainlion.bottle.tar.gz | |
curl: (35) Unknown SSL protocol error in connection to downloads.sf.net:443 | |
Error: Download failed: https://downloads.sf.net/project/machomebrew/Bottles/mysql-5.5.28.mountainlion.bottle.tar.gz | |
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
- 10.upto(20) do |i| |
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
#!/usr/bin/ruby | |
# | |
# This script installs to /usr/local only. To install elsewhere you can just | |
# untar https://github.com/mxcl/homebrew/tarball/master anywhere you like. | |
# | |
# | |
# 30th March 2010: | |
# Added a check to make sure user is in the staff group. This was a problem | |
# for me, and I think it was due to me migrating my account over several | |
# versions of OS X. I cannot verify that for sure, and it was tested on |