Understand your Mac and iPhone more deeply by tracing the evolution of Mac OS X from prelease to Swift. John Siracusa delivers the details.
You've got two main options:
""" | |
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) |
#!/usr/bin/env bash | |
# | |
# Bootstrap script for setting up a macOS machine | |
# | |
# | |
echo "Remember to install Xcode from the Store first" | |
echo "Starting bootstrapping" |
#!/bin/zsh | |
typeset -A closings | |
closings=( '{' '}' '[' ']' ) | |
# usage: find-matching strvar pos | |
# heart of the parser. matches one "element." matching depends on first | |
# character (at pos), can be " for string matching or any in closings | |
# associative parameter. |
docker container start task-notify-github
Docker container ... stopped unexpectedly.
access terminal
and update update config with command#!/bin/sh | |
### BEGIN INIT INFO | |
# Provides: pocketmine | |
# Required-Start: | |
# Required-Stop: | |
# Should-Start: | |
# Should-Stop: | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 |