Skip to content

Instantly share code, notes, and snippets.

View naushadzaman's full-sized avatar

Naushad UzZaman naushadzaman

View GitHub Profile
@naushadzaman
naushadzaman / knowledge-vault-readme.md
Last active December 29, 2025 18:50
Knowledge Vault: A personal knowledge management system combining Claude Code + Obsidian. Replaces Evernote, Notion, Asana, and Otter.ai with local Markdown files, custom SKILLs, and persistent context. Share this with Claude Code to build your own.

Knowledge Vault

A second brain that actually thinks.

What This Is

This is a personal knowledge management system that combines Obsidian (for notes) with Claude Code (for intelligence). Instead of just storing information, it actively processes, connects, and surfaces knowledge when you need it.

What it replaces:

  • Evernote — But AI organizes your notes for you
@naushadzaman
naushadzaman / flask_restart.py
Created November 8, 2016 14:06
Reload python flask server by function / API endpoint
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Reload python flask server by function / API endpoint
# References:
# https://docs.python.org/3/library/multiprocessing.html
# http://stackoverflow.com/questions/27723287/reload-python-flask-server-by-function
import os
@naushadzaman
naushadzaman / elasticsearch_backup.py
Created July 23, 2016 01:16
Backup Data and Mapping from one Elastic Search server to another
import json
from elasticsearch import Elasticsearch
from elasticsearch import helpers
from elasticsearch.client import IndicesClient
source = '192.131.117.237:9200/' # example
dest = '192.226.457.547:9200/' # another example
es_source = Elasticsearch([source])
es_dest = Elasticsearch([dest])