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 / gist:10cca36e3b5ac58d08f1d93827bfb439
Created November 27, 2023 15:17 — forked from shayne/gist:3086902
Add Mac OS X user to "wheel" group (no more sudo passwd)
sudo dscl . -append /groups/wheel GroupMembership <username>
# now `sudo visudo` and remove comment from: %wheel ALL=(ALL) NOPASSWD: ALL
@nyimbi
nyimbi / altitude_mapper.py
Created November 24, 2023 08:43
Get Altitude from Coordinates
# https://github.com/ilri/AltitudeMapper/blob/main/main.py
import googlemaps
import os
import mysql.connector
from mysql.connector import Error
import pandas as pd
import gzip
from datetime import datetime
@nyimbi
nyimbi / olangchain.py
Created November 19, 2023 14:50
Ollama + Langchain
from langchain.callbacks.manager import CallbackManager
from langchain.callbacks.streaming_stdout import StreamingStdOutCallbackHandler
from langchain.llms import Ollama
llm = Ollama(
model="mistral", callback_manager=CallbackManager([StreamingStdOutCallbackHandler()])
)
print(llm("Tell me about the history of AI"))
@nyimbi
nyimbi / Add_user_to_group.sh
Created October 30, 2023 05:33
MacOS add user to group
sudo dseditgroup -o edit -a <username> -t user admin
sudo dseditgroup -o edit -a <username> -t user wheel
@nyimbi
nyimbi / Document_Conversion.md
Created October 30, 2023 04:49 — forked from datacustodian/Document_Conversion.md
Document Conversion

Document Conversion

This document outlines some ideas for document conversion on Linux and Mac OS X platforms using command line tools. Distribute documents as plain text using UTF-8 encoding whenever possible. Everyone should embrace the mantra "plain text is beautiful".

Document Metadata

Use file command to obtain basic metadata for most file formats. For image files make sure you have ImageMagick installed, then use identify command to extract image metadata.

Encoding Conversion

@nyimbi
nyimbi / Doxyfile
Created October 30, 2023 04:01
Doxyfile
# Doxyfile 1.9.1
# This file describes the settings to be used by the documentation system
# doxygen (www.doxygen.org) for a project.
#
# All text after a double hash (##) is considered a comment and is placed in
# front of the TAG it is preceding.
#
# All text after a single hash (#) is considered a comment and will be ignored.
# The format is:
@nyimbi
nyimbi / usa_sic_codes.sql
Created October 9, 2023 04:21 — forked from robcowie/usa_sic_codes.sql
US SIC Codes, sql table definition and data
CREATE TABLE `sic_code` (
`code` varchar(32) NOT NULL DEFAULT '',
`label` varchar(256) DEFAULT NULL,
`parent_code` varchar(32) DEFAULT NULL,
`level` int(11) DEFAULT NULL
) DEFAULT CHARSET=utf8;
INSERT INTO `sic_code` (`code`,`label`,`parent_code`,`level`)
VALUES
('D','MANUFACTURING',NULL,0),
Remove file from git repository (history)
SOLUTION: This is the shortest way to get rid of the files:
1. check .git/packed-refs - my problem was that I had there a refs/remotes/origin/master line for a remote repository, delete it, otherwise git won't remove those files
2. (optional) git verify-pack -v .git/objects/pack/#{pack-name}.idx | sort -k 3 -n | tail -5 - to check for the largest files
3. (optional) git rev-list --objects --all | grep #{SHA_FROM_#_3} - to check what files those are
@nyimbi
nyimbi / How to run.
Last active September 29, 2023 21:03
CDM Processor to DBML
# clone the https://github.com/microsoft/CDM.git
python3 test.py ./CDM/schemaDocuments/core/applicationCommon/User.1.3.cdm.json ./CDM/schemaDocuments/core/ ./CDM/schemaDocuments/core/applicationCommon/
@nyimbi
nyimbi / enum_business_centres
Created September 29, 2023 13:23
Business Centre Code
https://github.com/rosetta-models/blank-base-model/blob/master/src/main/rosetta/enum.rosetta
enum BusinessCenterEnum: <"DEFINITION COPIED FROM THE ISDA CDM. The enumerated values to specify the business centers.">
AEAD <"Abu Dhabi, United Arab Emirates">
AEDU <"Dubai, United Arab Emirates">
AMYE <"Yerevan, Armenia">
AOLU <"Luanda, Angola">
ARBA <"Buenos Aires, Argentina">
ATVI <"Vienna, Austria">
AUAD <"Adelaide, Australia">