export MY_NAME="MyName"
sudo scutil --set ComputerName "$MY_NAME" && \
sudo scutil --set HostName "$MY_NAME" && \
sudo scutil --set LocalHostName "$MY_NAME" && \
sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.smb.server NetBIOSName -string "$MY_NAME"
- Get Haskell Stack
- And [Haskell VS Code Extension)(https://marketplace.visualstudio.com/items?itemName=haskell.haskell)
curl -sSL https://get.haskellstack.org/ | sh
Here is a list of tools and gear I use to make YouTube videos for coding. I will try to keep it up-to-date as I evolve and get better at producing content. Leave a comment, if you have suggestions!
I use both Mac and Windows, but I am currently doing all the capture and production on Windows. For coding, I find the Linux shell much better than PowerShell or the Windows Command Prompt.
At the center of the Maana Q Knowledge Platform is the Computational Knowledge Graph, which consists of a cloud distributed set of GraphQL and RESTful microservices. Each service exposes a set of types and functions. The functions can be evaluated lazily (i.e., streaming) or strict/eager (i.e., batch) and can be marked as having pure (i.e., referential integrity) vs effectful (i.e., causes change or relies on changing externals) semantics.
The purpose of this system is to represent domain knowledge (i.e., concepts, properties, relations, individuals) and perform reasoning (i.e., operations performed on the domain to achieve various goals). This is similar in nature to the goals of the Semantic Web, which aims to unify:
- Linking data
- Organizing data into "ontologies"
- Querying data
- Logical inference (e.g., deduction, induction)
While the goals are similar, the underlying
const fs = require("fs-extra"); | |
const Path = require("path"); | |
// | |
// String utilities | |
// | |
// Ensure initial letter is capitalized | |
const capitalize = word => word[0].toUpperCase() + word.substr(1); |
Meta is a NodeJS-based shell command that provides a solution to working with many repos across machines/teams without the tradeoffs involved with submodules or monorepos.
npm i -g meta
mkdir my-meta-repo
cd my-meta-repo