Skip to content

Instantly share code, notes, and snippets.

View tanmaychimurkar's full-sized avatar
:electron:
Steady Progress

Tanmay Chimurkar tanmaychimurkar

:electron:
Steady Progress
View GitHub Profile
@tanmaychimurkar
tanmaychimurkar / normcore-llm.md
Created August 22, 2023 08:44 — forked from veekaybee/normcore-llm.md
Normcore LLM Reads
@rvanbruggen
rvanbruggen / import_ESCO_csv_en.cql
Created August 23, 2018 11:26
ESCO database in Neo4j
//Import ESCO using CSV files
create index ON :Occupation(ISCOGroup);
create index ON :Occupation(altLabels);
create index ON :Skill(altLabels);
create index ON :ISCOGroup(code);
create index ON :Skill(conceptUri);
create index ON :ISCOGroup(conceptUri);
create index ON :Occupation(conceptUri);
create index ON :Occupation(preferredLabel);
create index ON :Skill(preferredLabel);
@vratiu
vratiu / .bash_aliases
Last active September 15, 2025 23:49
Git shell coloring
# Customize BASH PS1 prompt to show current GIT repository and branch.
# by Mike Stewart - http://MediaDoneRight.com
# SETUP CONSTANTS
# Bunch-o-predefined colors. Makes reading code easier than escape sequences.
# I don't remember where I found this. o_O
# Reset
Color_Off="\[\033[0m\]" # Text Reset
@insin
insin / bash_prompt.sh
Created December 3, 2011 01:49 — forked from woods/git_svn_bash_prompt.sh
Set color bash prompt according to active virtualenv, git branch and return status of last command.
#!/bin/bash
#
# DESCRIPTION:
#
# Set the bash prompt according to:
# * the active virtualenv
# * the branch/status of the current git repository
# * the return value of the previous command
# * the fact you just came from Windows and are used to having newlines in
# your prompts.