Skip to content

Instantly share code, notes, and snippets.

View nyimbi's full-sized avatar

Nyimbi Odero nyimbi

  • Datacraft
  • Nairobi
View GitHub Profile
@nyimbi
nyimbi / geonames.dbml
Last active October 5, 2023 08:33
Geonames DBML + Loader
Table geoname {
id serial [pk, note: 'Unique identifier for each geoname']
name varchar(200) [note: 'Local name of the place or location']
asciiname varchar(200) [note: 'ASCII version of the name, suitable for URL or systems that dont support unicode']
alternatenames text [note: 'Alternative names or variations of the location name, possibly in different languages or scripts']
latitude float [note: 'Latitude coordinate of the location']
longitude float [note: 'Longitude coordinate of the location']
fclass char(1) [note: 'Feature class, represents general type/category of the location e.g. P for populated place, A for administrative division']
fcode varchar(10) [note: 'Feature code, more specific than feature class, indicating the exact type of feature']
@nyimbi
nyimbi / AWS components.txt
Created September 19, 2023 15:50 — forked from jaytaph/AWS components.txt
A list of AWS components and what they do.
Compute
EC2 Virtual Private Servers
Lightsail Amazon's hosting provider (vps, dns, storage)
Lambda Functions you can run, written in Python, NodeJS, Go etc. Can run many in parallel.
Batch Run software jobs on EC2 machines
Elastic Beanstalk Run software on managed virtual machines
Serverless Application Repository Repository of serverless applications that you can deploy (on lambda)
AWS Outposts Basically run Amazon services on your own hardware (datacenter)
EC2 Image Builder Create EC2 (ami?) images automatically
@nyimbi
nyimbi / normcore-llm.md
Created September 7, 2023 21:59 — forked from veekaybee/normcore-llm.md
Normcore LLM Reads
# must have conda installed
git clone https://github.com/joonspk-research/generative_agents.git
cd generative_agents
# open visual studio code, open gen agents folder
# within vscode, go to reverie/backend_server
# create new file utils.py
# copy/paste contents from github (below)
###
# Copy and paste your OpenAI API Key
@nyimbi
nyimbi / s3fs mac mount linode bucket as folder
Last active May 26, 2023 23:47 — forked from jcaddel/S3FS on Mac OS X
How to mount a linode object store on a mac
Install s3fs on Mac OS X
1 - Install Homebrew if you haven't already - http://brew.sh/"Acce
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
2 - Use Homebrew to install s3fs + dependencies
brew install --cask macfuse
brew install gromgit/fuse/s3fs-mac
3. Get the access key and secret key from linode for your buckets.
javascript:(function() {
var timeout = null;
var delay = 1000;
var script = document.createElement('script');
script.src = 'https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js';
document.head.appendChild(script);
script.addEventListener('load', function() {
var mathJaxConfig = {
@nyimbi
nyimbi / System Design.md
Created September 28, 2022 05:03 — forked from vasanthk/System Design.md
System Design Cheatsheet

System Design Cheatsheet

Picking the right architecture = Picking the right battles + Managing trade-offs

Basic Steps

  1. Clarify and agree on the scope of the system
  • User cases (description of sequences of events that, taken together, lead to a system doing something useful)
    • Who is going to use it?
    • How are they going to use it?
@nyimbi
nyimbi / exclude.sql
Created May 2, 2022 04:12 — forked from fphilipe/exclude.sql
PostgreSQL EXCLUDE constraint
CREATE EXTENSION btree_gist;
CREATE TABLE room_reservations (
room_id integer,
reserved_at timestamptz,
reserved_until timestamptz,
canceled boolean DEFAULT false,
EXCLUDE USING gist (
room_id WITH =, tstzrange(reserved_at, reserved_until) WITH &&
) WHERE (not canceled)
@nyimbi
nyimbi / anu_qrn.py
Last active April 28, 2022 03:47 — forked from cqtsma2/anu_qrn.py
ANU Quantum Random Numbers API examples
#!/usr/bin/python3
# Australian National University Quantum Random Numbers Generator API running on AWS
import json
import requests
QRN_URL = "https://api.quantumnumbers.anu.edu.au/"
QRN_KEY = "txxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx7" # replace with your secret API-KEY
@nyimbi
nyimbi / madlib-postgres-ubuntu.md
Created March 16, 2022 09:16 — forked from tqyq/madlib-postgres-ubuntu.md
Instructions for installing MADlib and Postgres on Ubuntu 16.04

madlib-postgres-ubuntu

Instructions for installing MADlib and Postgres on Ubuntu 16.04

# Install Postgres 9.6, pl/r and dependencies for MADlib
sudo apt-get install -y cmake postgresql-9.6 postgresql-server-dev-9.6 postgresql-plpython-9.6 postgresql-9.6-plr libkrb5-dev postgresql-client postgresql-contrib

# grab madlib rpm
cd /home/gpadmin/tmp