Skip to content

Instantly share code, notes, and snippets.

@mb-dev
mb-dev / Monkii.md
Last active February 16, 2021 15:23

(Some days i didn't get a chance to record the workout yet)

MB Habit: 1: Row, Pushup, Tuck
2: Scap Row, Scap Pushups
3: V-Out, Plank to Forearm Plank, Pike, Forearm Pike
4: Calf Raise, Lunge R/L, Squat
5: (Three-Way Row, Monkii Complex) X 2
6: Stretch - PNF, Contract 5, relax 10. Hamstring, Arm. (Repeat 3-6 times)
7: (20 Mountain Climbers, 10 Row) X 3

Keybase proof

I hereby claim:

  • I am mb-dev on github.
  • I am moshebergman (https://keybase.io/moshebergman) on keybase.
  • I have a public key whose fingerprint is BA8B EAD0 22D9 E891 363B 285A A745 B085 40C2 AA2E

To claim this, I am signing this object:

@mb-dev
mb-dev / gist:3feb7e2b98f1867fde52
Last active August 29, 2015 14:03
Jewish Film Festival

Anywhere else:

![Anywhere else][1] A graduate student in Berlin, Noa seems to be on the right track: She has almost completed her thesis and has just moved in with her German musician boyfriend, Jörg. But when her grant application is turned down, and her advisor deems her project—a dictionary of words that defy translation—unsuitable, all the pressures of living in a foreign country far away from her native Israel are too much for the already stressed-out Noa to handle... http://prod3.agileticketing.net/websales/pages/info.aspx?evtinfo=82364~a70858c6-cd47-4e92-968c-c94c12db6b1c

Site: http://prod3.agileticketing.net/websales/pages/info.aspx?evtinfo=82364~a70858c6-cd47-4e92-968c-c94c12db6b1c& Trailer: https://www.youtube.com/watch?v=bFsIksu6Rz4

  • Castro Theatre - Tue, Jul 29 1:45 PM
_.mixin
try: (object, property) ->
if object? then object[property] else null
isBlank: (str) ->
(!str || /^\s*$/.test(str))
@function pxtoem($pxval, $base: 14) {
@if (unitless($pxval)) {
$pxval: $pxval * 1px;
}
@if (unitless($base)) {
$base: $base * 1px;
}
@return $pxval / $base * 1em;
var app = require('http').createServer(handler)
, io = require('socket.io').listen(app)
, fs = require('fs')
var config = require('./settings.js')
app.listen(config.port);
function handler (req, res) {
fs.readFile(__dirname + '/index.html',
config.vm.box = "quantal64"
VAGRANT_JSON = MultiJson.load(Pathname(__FILE__).dirname.join('nodes', 'localhost.json').read)
config.vm.provision :chef_solo do |chef|
chef.cookbooks_path = ["site-cookbooks", "cookbooks"]
chef.roles_path = "roles"
chef.data_bags_path = "data_bags"
chef.provisioning_path = "/tmp/vagrant-chef"
chef.encrypted_data_bag_secret_key_path = "./data_bag_key"
@mb-dev
mb-dev / Cheffile
Created April 25, 2013 02:26
Cookbooks
cookbook 'apt', '1.7.0'
cookbook 'apache2', '>= 1.0.0'
cookbook 'rvm', :git => 'https://github.com/fnichol/chef-rvm'
cookbook 'git', git: 'https://github.com/fnichol/chef-git.git'
cookbook 'redisio'
cookbook 'mysql'
cookbook 'ruby_build', '0.7.2'
cookbook 'firewall'
cookbook 'ssh_known_hosts'
cookbook 'mongodb', git: 'git://github.com/higanworks-cookbooks/mongodb-10gen.git'
@mb-dev
mb-dev / command.sh
Last active December 16, 2015 15:39
Getting started
bundle
knife solo init .
librarian-chef init
librarian-chef install
vagrant box add quantal64 http://static.aldoborrero.com/vagrant/quantal64.box
vagrant init quantal64
vagrant up
@mb-dev
mb-dev / Gemfile
Created April 25, 2013 02:19
Chef Gemfile
gem 'chef', '10.16.2'
gem 'knife-solo'
gem 'knife-solo_data_bag'
gem 'librarian'
gem 'ffi', '~> 1.2.0'
gem 'vagrant', "~> 1.0.5"
gem 'multi_json'