Skip to content

Instantly share code, notes, and snippets.

View freefrancisco's full-sized avatar

Francisco Gutierrez freefrancisco

View GitHub Profile
@freefrancisco
freefrancisco / LLM.md
Created March 30, 2023 14:25 — forked from rain-1/LLM.md
LLM Introduction: Learn Language Models

Purpose

Bootstrap knowledge of LLMs ASAP. With a bias/focus to GPT.

Avoid being a link dump. Try to provide only valuable well tuned information.

Prelude

Neural network links before starting with transformers.

[Know about it][Understanding][Clear understanding]

NOVICE

CONCEPTS

  • xxx Immutable Data
  • xxx Second-Order Functions
  • xxx Constructing & Destructuring
  • xxx Function Composition
  • xxx First-Class Functions & Lambdas
@freefrancisco
freefrancisco / coffee-repl.js
Created March 3, 2018 08:22 — forked from asalant/coffee-repl.js
CoffeeScript REPL using Node's REPL
#!/usr/bin/env node
var vm = require('vm');
var repl = require('repl');
var CoffeeScript = require('coffee-script');
repl.start({
prompt: "coffee> ",
eval: function(code, context, file, cb) {
try {

Keybase proof

I hereby claim:

  • I am freefrancisco on github.
  • I am freefrancisco (https://keybase.io/freefrancisco) on keybase.
  • I have a public key ASCLYu19H8Br4KCiW-ioj-xjjegHEPwa1axvjtNnKoajego

To claim this, I am signing this object:

Homebrew Formula patching old ImageMagick release 6.7.7-10

Install

$ brew install https://gist.githubusercontent.com/freefrancisco/c7234fa7339f95c968d4/raw/471be6a0ab03029ddb7cbfb5cb155ad0ac8a4101/imagemagick.rb

Tested

@freefrancisco
freefrancisco / sample output
Created September 13, 2012 18:56 — forked from josevalim/sample output
Updated Elixir chat demo
defmodule Chat.Client do
# In all of the following functions 'server' stands for the server's pid
def join(server) do
send server, :join
end
def say(server, message) do
send server, { :say, message }
end
@freefrancisco
freefrancisco / Gemfile
Created September 13, 2012 18:51
Rails Lightweight Stack. Most of this is detailed on Crafting Rails Applications - http://pragprog.com/book/jvrails/crafting-rails-applications
source :rubygems
# We are not loading Active Record, nor Active Resources etc.
# We can do this in any app by simply replacing the rails gem
# by the parts we want to use.
gem "actionpack", "~> 3.2"
gem "railties", "~> 3.2"
gem "tzinfo"
# Let's use thin