I waited for years for a Homebrew formula for MOC. I finally found one today, but it didn't work for me. So I decided to try to compile it from source.
Here is a list of requirements, taken directly from the MOC README:
| class It | |
| def initialize; end | |
| def method_missing(m) | |
| verb = m.to_s.chomp('!').capitalize.sub('_', ', ') | |
| noun = self.class.name.downcase | |
| puts "#{verb} #{noun}" | |
| puts if verb.include?(',') | |
| self | |
| end |
| """ | |
| Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy) | |
| BSD License | |
| """ | |
| import numpy as np | |
| # data I/O | |
| data = open('input.txt', 'r').read() # should be simple plain text file | |
| chars = list(set(data)) | |
| data_size, vocab_size = len(data), len(chars) |
| """ | |
| The MIT License (MIT) | |
| Copyright (c) 2015 Alec Radford | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is |
| import json, datetime | |
| class RoundTripEncoder(json.JSONEncoder): | |
| DATE_FORMAT = "%Y-%m-%d" | |
| TIME_FORMAT = "%H:%M:%S" | |
| def default(self, obj): | |
| if isinstance(obj, datetime.datetime): | |
| return { | |
| "_type": "datetime", | |
| "value": obj.strftime("%s %s" % ( |
| import time | |
| import sys | |
| animation = "|/-\\" | |
| for i in range(100): | |
| time.sleep(0.1) | |
| sys.stdout.write("\r" + animation[i % len(animation)]) | |
| sys.stdout.flush() |
As configured in my dotfiles.
start new:
tmux
start new with session name: