Skip to content

Instantly share code, notes, and snippets.

View JoshEllinger's full-sized avatar
:shipit:
Always be shipping

Josh Ellinger JoshEllinger

:shipit:
Always be shipping
  • Lucidworks
  • San Francisco, CA
  • 21:53 (UTC -07:00)
  • X @JoshEllinger
View GitHub Profile
@veekaybee
veekaybee / normcore-llm.md
Last active April 20, 2025 11:25
Normcore LLM Reads

Anti-hype LLM reading list

Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts of models in prod eagerly sought.

Foundational Concepts

Screenshot 2023-12-18 at 10 40 27 PM

Pre-Transformer Models

@redguardtoo
redguardtoo / .ctags.sample
Last active January 20, 2025 03:43
my ~/.ctags. Please note this is configuration for Exuberant Ctags. If you use Universal Ctags, you need run `ctags --options="$HOME/.ctags" -e -R` in shell at least once and fix all the warnings.
--c++-kinds=+p
--fields=+iaS
--extra=+q
--exclude=*/.hg/*
--exclude=.hg/*
--exclude=*/.cvs/*
--exclude=.cvs/*
--exclude=*/.svn/*
--exclude=.svn/*
--exclude=*/.git/*
@thoop
thoop / nginx.conf
Last active April 14, 2025 17:11
Official prerender.io nginx.conf for nginx
# Change YOUR_TOKEN to your prerender token
# Change example.com (server_name) to your website url
# Change /path/to/your/root to the correct value
server {
listen 80;
server_name example.com;
root /path/to/your/root;
index index.html;
@CMCDragonkai
CMCDragonkai / EqualiseHeights.Directive.js
Last active December 20, 2015 04:58
JS: AngularJS Equalise Height Directives. Relies on jQuery and jquery-resize. AMD Compatible.
define(['angular'], function(angular){
'use strict';
/**
* Equalise Heights
*
* @param string jQuery Selector of which to equalise
*/
angular.module('Directives')