Skip to content

Instantly share code, notes, and snippets.

View anishkny's full-sized avatar

Anish Karandikar anishkny

  • San Francisco Bay Area
  • 15:17 (UTC -07:00)
  • X @anishkny
View GitHub Profile
@paul-hammant
paul-hammant / linkedin_alternative_on_github.md
Last active March 27, 2019 16:51
Linkedin alternative on Github?

Is anyone interested in an alternative to LinkedIn based on GitHub* (likely to mean a subset to just tech savvy users initially).

Decentralized data-centric GitHub repos

Your GitHub repo is a about you and your claims:

eg. "I worked at FoobarLLC as a Director of Engineering between CCYYMMDD1 and CCYYMMDD2 and did blah blah blah." 

files: claims/roles/foobarllc/CCYYMMDD1.md & claims/roles/all.json
@anishkny
anishkny / allow-copy-paste.js
Last active October 1, 2020 15:30
Allow copy paste in webpage
document.addEventListener('paste', function (e) { e.stopImmediatePropagation(); return true; }, true);