- Create 5GB FreeBSD image.
- Install FreeBSD on xhyve.
- Mount host directory.
# Card Game | |
# | |
# In this game, you have to find matching pairs of cards. | |
# This scene consists entirely of layers and demonstrates some | |
# interesting animation techniques. | |
from scene import * | |
from random import shuffle | |
from functools import partial | |
import sound |
# Hockey | |
# | |
# A air hockey game for two players. First to | |
# seven wins. | |
# Most of the game is drawn with the scene | |
# module. Goal and winner messages are animated | |
# with layers. | |
from scene import * | |
from sound import * |
/** @jsx React.DOM */ | |
var GameStatus = { | |
NOTSTARTED: 0, | |
FINISHED: 1, | |
INPROGRESS: 2 | |
} | |
var Suits = ['H', 'D', 'C', 'S']; | |
var Cards = []; |
(defn f-beta | |
"F-beta score, default uses F1" | |
([precision recall] (f-beta precision recall 1)) | |
([precision recall beta] | |
(let [beta-squared (* beta beta)] | |
(* (+ 1 beta-squared) | |
(try ;; catch divide by 0 errors | |
(/ (* precision recall) | |
(+ (* beta-squared precision) recall)) | |
(catch ArithmeticException e |
// Place your key bindings in this file to overwrite the defaults | |
// https://code.visualstudio.com/docs/customization/keybindings | |
[ | |
//---- 他の方のを流用 ---- | |
// http://tonbi.jp/Web/Diary/030/ | |
// ↑up | |
{ "key": "ctrl+e", "command": "cursorUp", | |
"when": "editorTextFocus" }, | |
{ "key": "shift+ctrl+e", "command": "cursorUpSelect", | |
"when": "editorTextFocus" }, |
###Step 1: Install XCode
Check if the full Xcode package is already installed:
$ xcode-select -p
If you see:
/Applications/Xcode.app/Contents/Developer
Note: probably 99% of this tutorial (excluding installation and folder structure) is DOSBox- and not Mac-specific. As long as your computer can run DOSBox you should be able to convert the steps to work on Windows.
DOS apps don't run natively on OS X, so we use DOSBox to emulate DOS for us.
Navigate to the official DOSBox download page
Wait a second, why would you want to give out the secrets?!? Because its not a secret anymore and besides, why shouldn't everyone and their neighbors be able to create a plethora of these useless yet exciting math bits? The information in this article took me a few weeks to compile and what works for me is not guaranteed to work for you. Please use this guide as a starting point to learn a bit about C programming and compiling software.
""" | |
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) |