Bootstrap knowledge of LLMs ASAP. With a bias/focus to GPT.
Avoid being a link dump. Try to provide only valuable well tuned information.
Neural network links before starting with transformers.
#!/usr/bin/env node | |
// How to | |
// wget http://gist.github.com/... | |
// chmod +x ya.js | |
// ./ya.js download_url path/to/directory | |
const https = require('https'); | |
const { URL } = require('url'); | |
const { spawn } = require('child_process'); |
This is a simple repl integration for the helix editor. It relies on on tmux to show the repl in a separate pane and on jupyter (jupyter-console and whatever jupyter kernels you might like) to run the actual repl.
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta name="viewport" content="width=device-width" /> | |
<meta charset="utf-8" /> | |
<meta name="pluto-insertion-spot-meta"> |
# Makefile to compile and run Java sources manually | |
# because JDK 20 Valhalla support is not yet available in IntelliJ IDEA | |
JAVA_VERSION = 20 | |
JAVAC = /home/user/downloads/jdk-20-vahalla-20-75/bin/javac | |
JAVA = /home/user/downloads/jdk-20-vahalla-20-75/bin/java | |
JAVA_COMPILE_OPTIONS = --enable-preview --release $(JAVA_VERSION) | |
JAVA_OPTIONS = --enable-preview | |
JAVA_MAIN_CLASS = org.example.Database |
const SECRET_KEY = ENTER YOUR SECRET KEY HERE; | |
const MAX_TOKENS = 200; | |
// For more cool AI snippets and demos, follow me on Twitter: https://twitter.com/_abi_ | |
/** | |
* Completes your prompt with GPT-3 | |
* | |
* @param {string} prompt Prompt | |
* @param {number} temperature (Optional) Temperature. 1 is super creative while 0 is very exact and precise. Defaults to 0.4. |
import { writeFile, readdir, readFile } from 'node:fs/promises'; | |
import path from 'path'; | |
/* | |
Steps to get/export your notes from Huawei Notes: | |
1. Login into a Huawei Account in the phone. | |
2. Activate in your phone, the Notes Syncing, which is inside of Huawei Account > Cloud | |
3. Log in into https://cloud.huawei.com | |
4. Go to https://cloud.huawei.com/home#/account/gdpr, and click on Download Notes | |
5. This will give you a zip file with a password. Extract the zip file into a folder. |
# License: MIT | |
# Copyright (c) 2022 Daniel Garcia-Briseno | |
# | |
# 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 | |
# furnished to do so, subject to the following conditions: | |
# |
All of these diagrams are dynamically rendered during html display by Github, the images generated from text inside the Github-Flavored Markdown. None are static images. Mermaid support was released for Github on 2022-02-14
Pros & Cons:
Notes:
B-->C[fa:fa-ban forbidden]
, hyperlink and tooltips) are supported by Github.# Everforest (higher contrast variant) | |
# Author: CptPotato | |
# Original Author: | |
# URL: https://github.com/sainnhe/everforest | |
# Filename: autoload/everforest.vim | |
# Author: sainnhe | |
# Email: [email protected] | |
# License: MIT License |