$ tree
.
├── Hello.scala
├── build.sbt
└── project
└── plugins.sbt
[LLM Training and Fundamentals] | |
- GPT and GPT-2: https://cameronrwolfe.substack.com/p/language-models-gpt-and-gpt-2 | |
- GPT-3 and LLM Scaling: https://cameronrwolfe.substack.com/p/language-model-scaling-laws-and-gpt | |
- Modern LLMs: https://cameronrwolfe.substack.com/p/modern-llms-mt-nlg-chinchilla-gopher | |
- Specialized LLMs: https://cameronrwolfe.substack.com/p/specialized-llms-chatgpt-lamda-galactica | |
[Open Source LLMs] | |
- LLaMA: https://cameronrwolfe.substack.com/p/llama-llms-for-everyone | |
- Beyond LLaMA (Imitation Models): https://cameronrwolfe.substack.com/p/beyond-llama-the-power-of-open-llms | |
- False Promise of Imitation: https://cameronrwolfe.substack.com/p/imitation-models-and-the-open-source |
AWSTemplateFormatVersion: "2010-09-09" | |
Description: Subnet IP Monitor | |
Parameters: | |
Name: | |
Type: String | |
Default: "Subnet-IP-Monitor" | |
Tag: | |
Type: String | |
Description: Subnet Tag to filter |
KUBERNETES_VERSION=${KUBERNETES_VERSION:-v1.12.0} | |
MEMORY=${MEMORY:-10240} | |
CPUS=${CPUS:-4} | |
DISK_SIZE=${DISK_SIZE:-50g} | |
VM_DRIVER=${VM_DRIVER:-$(minikube config get vm-driver 2>/dev/null || echo "virtualbox")} | |
# configure knative profile | |
minikube profile knative | |
minikube config set kubernetes-version ${KUBERNETES_VERSION} | |
minikube config set memory ${MEMORY} |
The best way to safely and securely use local domains pointing to 127.0.0.1 is to edit your local settings (/etc/hosts) and add your own settings. Keep in mind if you want to use subdomains, you need to enter all variations.
Example:
# Adding bottom of your current file /etc/hosts
################# MY LOCAL DOMAINS
127.0.0.1 local.com admin.local.com
127.0.0.1 domain1.com
- Proposal: SE-XXXX
- Authors: Chris Lattner, Joe Groff
Modern Cocoa development involves a lot of asynchronous programming using closures and completion handlers, but these APIs are hard to use. This gets particularly problematic when many asynchronous operations are used, error handling is required, or control flow between asynchronous calls gets complicated. This proposal describes a language extension to make this a lot more natural and less error prone.
This paper introduces a first class Coroutine model to Swift. Functions can opt into to being async, allowing the programmer to compose complex logic involving asynchronous operations, leaving the compiler in charge of producing the necessary closures and state machines to implement that logic.
- create a single page javascript application
- be as low-level as possible to be able to control performance (=minimize layers)
- masterize your dev/build environnement so you can work/play nicely
- Open safari console in development menu with simulator or attached devices (enable debug in ipad/safari dev options)
- debug your app from xcode to get native debugger and performance metrics
#!/bin/sh | |
#Your app id which can be found in your config.xml file (widget id) | |
app=com.ionicframework.myNewApp | |
pathToAPK=platforms/android/build/outputs/apk/android-debug.apk | |
echo "Running Ionic Build" | |
ionic build |
#!/bin/bash | |
while : | |
do | |
clear | |
git --no-pager log --graph --pretty=oneline --abbrev-commit --decorate --all $* | |
sleep 1 | |
done |