This file contains hidden or 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
# Meteor packages used by this project, one per line. | |
# Check this file (and the other files in this directory) into your repository. | |
# | |
# 'meteor add' and 'meteor remove' will edit this file for you, | |
# but you can also edit it by hand. | |
meteor-platform | |
insecure | |
iron:router | |
meteoric:ionic |
This file contains hidden or 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
App.info({ | |
id: 'com.xmjwt.eatlocal', | |
name: 'Eat Local', | |
description: 'An app to discover all your local produce.', | |
author: 'JWT Jakarta', | |
email: '[email protected]', | |
website: 'http://www.jwt.com/jakarta', | |
version: '0.0.1' | |
}); |
This file contains hidden or 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
#!/bin/bash | |
IMAGES=~/Images | |
find "$IMAGES" -name '*.TIF' -exec sh -c 'convert "$0" -resize 1024x768 "${0%%.tif}_1024.jpg"' {} \; | |
# for debug | |
# find "$IMAGES" -name '*.TIF' -exec sh -c 'echo "${0%%.tif}_1024.jpg"' {} \; | |
exit; |
This file contains hidden or 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
xmjwt-rizky:microscope rizky$ meteor add mizzao:bootstrap-3 | |
/Users/rizky/.meteor/packages/meteor-tool/.1.0.34.xkoxz2++os.osx.x86_64+web.browser+web.cordova/meteor-tool-os.osx.x86_64/dev_bundle/lib/node_modules/fibers/future.js:206 | |
throw(ex); | |
^ | |
Error: DDP disconnected | |
at Object.Future.wait (/Users/rizky/.meteor/packages/meteor-tool/.1.0.34.xkoxz2++os.osx.x86_64+web.browser+web.cordova/meteor-tool-os.osx.x86_64/dev_bundle/lib/node_modules/fibers/future.js:326:15) | |
at _.extend.apply (/Users/rizky/.meteor/packages/meteor-tool/.1.0.34.xkoxz2++os.osx.x86_64+web.browser+web.cordova/meteor-tool-os.osx.x86_64/tools/service-connection.js:107:31) | |
at _.extend.call (/Users/rizky/.meteor/packages/meteor-tool/.1.0.34.xkoxz2++os.osx.x86_64+web.browser+web.cordova/meteor-tool-os.osx.x86_64/tools/service-connection.js:84:17) | |
at Object.exports.callPackageServer (/Users/rizky/.meteor/packages/meteor-tool/.1.0.34.xkoxz2++os.osx.x86_64+web.browser+web.cordova/meteor-tool-os.osx.x86_64/tools/packag |
This file contains hidden or 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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
# All Vagrant configuration is done here. The most common configuration | |
# options are documented and commented below. For a complete reference, | |
# please see the online documentation at vagrantup.com. |
This file contains hidden or 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
==> Downloading http://downloads.mongodb.org/src/mongodb-src-r2.6.4.tar.gz | |
Already downloaded: /Library/Caches/Homebrew/mongodb-2.6.4.tar.gz | |
==> Verifying mongodb-2.6.4.tar.gz checksum | |
tar xf /Library/Caches/Homebrew/mongodb-2.6.4.tar.gz | |
==> /usr/local/opt/scons/bin/scons install --prefix=/usr/local/Cellar/mongodb/2.6.4_1 -j4 --cc=/usr/bin/clang --cxx=/usr/bin/clang++ --osx-version-min=10.10 --full --64 | |
scons: Reading SConscript files ... | |
Mkdir(".scons/Darwin/nohost") | |
usage: scons [OPTION] [TARGET] ... | |
SCons Error: option --osx-version-min: invalid choice: '10.10' (choose from '10.6', '10.7', '10.8', '10.9') |
This file contains hidden or 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
Please note that these warnings are just used to help the Homebrew maintainers | |
with debugging if you file an issue. If everything you use Homebrew for is | |
working fine: please don't worry and just ignore them. Thanks! | |
Warning: Unbrewed dylibs were found in /usr/local/lib. | |
If you didn't put them there on purpose they could cause problems when | |
building Homebrew formulae, and may need to be deleted. | |
Unexpected dylibs: | |
/usr/local/lib/libmcrypt.4.4.8.dylib |
This file contains hidden or 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
HOMEBREW_VERSION: 0.9.5 | |
ORIGIN: https://github.com/Homebrew/homebrew.git | |
HEAD: 531dae0f7104028cbb89b04d6cfd1ebad4cf8266 | |
HOMEBREW_PREFIX: /usr/local | |
HOMEBREW_CELLAR: /usr/local/Cellar | |
CPU: quad-core 64-bit haswell | |
OS X: 10.10-x86_64 | |
Xcode: 5.1.1 | |
CLT: 6.0.0.0.1.1408056701 | |
Clang: 5.1 build 503 |
This file contains hidden or 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
<!-- YouTube & Vimeo --> | |
<style> | |
.embed-container { | |
position: relative; | |
padding-bottom: 56.25%; | |
padding-top: 30px; | |
height: 0; | |
overflow: hidden; | |
max-width: 100%; | |
height: auto; |
This file contains hidden or 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
@mixin css-triangle($triangle-size, $triangle-color, $triangle-direction) { | |
content: ""; | |
display: block; | |
width: 0; | |
height: 0; | |
border: inset $triangle-size; | |
@if ($triangle-direction == top) { | |
border-color: $triangle-color transparent transparent transparent; | |
border-top-style: solid; |