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.
| #include <GLFW/glfw3.h> | |
| #include <stdlib.h> | |
| #include <stdio.h> | |
| static void error_callback(int error, const char* description) | |
| { | |
| fputs(description, stderr); | |
| } | |
| static void key_callback(GLFWwindow* window, int key, int scancode, int action, int mods) | |
| { | |
| if (key == GLFW_KEY_ESCAPE && action == GLFW_PRESS) |
| #! /bin/sh | |
| # http://tinsuke.wordpress.com/2011/11/01/how-to-compile-and-use-tesseract-3-01-on-ios-sdk-5/ | |
| # cd /usr/local/src | |
| # mkdir Tesseact | |
| # cd Tesseact | |
| # wget "http://www.leptonica.com/source/leptonica-1.68.tar.gz" | |
| # wget "http://tesseract-ocr.googlecode.com/files/tesseract-3.01.tar.gz" | |
| # | |
| # mkdir dependencies | |
| # tar xzf leptonica-1.68.tar.gz |
While it's possible to download packages and install them manually, it's such a hassle. Fortunately for us, OS X has an unofficial package manager called http://brew.sh Let's install it. Open you Terminal and paste the following code:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"Great. Homebrew will automatically install packages to /usr/local. Conveniently, that directory is already in your include and link paths.
Direct copy of pre-encoded file:
$ ffmpeg -i filename.mp4 -codec: copy -start_number 0 -hls_time 10 -hls_list_size 0 -f hls filename.m3u8
| sites | |
| |__ ms.dev | |
| | |__ content | |
| | |__ index.php | |
| | |__ wp => ../../wordpress/stable | |
| | |__ wp-config.php | |
| |__ one.dev | |
| | |__ content | |
| | |__ index.php | |
| | |__ wp => ../../wordpress/stable |
| #include <iostream> | |
| #include <memory> | |
| template<class T> | |
| class BinarySearchTree{ | |
| struct TreeNode; | |
| typedef std::unique_ptr<TreeNode> spTreeNode; | |
| struct TreeNode{ | |
| T data; | |
| spTreeNode left; |
| { | |
| "status": 0, | |
| "environment": "Sandbox", | |
| "receipt": { | |
| "receipt_type": "ProductionSandbox", | |
| "adam_id": 0, | |
| "app_item_id": 0, | |
| "bundle_id": "co.in.greensyntax.Restman", | |
| "application_version": "1", | |
| "download_id": 0, |
| <?php | |
| define("SHARED_SECRET", "sup3rs3cr3t!!"); | |
| if(!function_exists('hash_equals')) { | |
| function hash_equals($str1, $str2) { | |
| // Run constant-time comparison for PHP < 5.6 which doesn't support hmac_equals | |
| $str1_len = strlen($str1); | |
| $str2_len = strlen($str2); |