Skip to content

Instantly share code, notes, and snippets.

View samkim's full-sized avatar

Sam Kim samkim

View GitHub Profile
@samkim
samkim / Authzed API v1.postman_collection.json
Created March 17, 2022 05:50
Postman collection of Authzed v1 API
{
"info": {
"_postman_id": "9d908d06-1035-440d-a510-817884f03724",
"name": "Authzed API v1",
"description": "# SpiceDB\n\nSpiceDB is a [Zanzibar](https://authzed.com/blog/what-is-zanzibar/)-inspired open source database system for managing security-critical application permissions.\n\nDevelopers create a schema that models their permissions requirements and use a [client library](https://docs.authzed.com/reference/api#client-libraries) to apply the schema to the database, insert data into the database, and query the data to efficiently check permissions in their applications.\n\nFeatures that distinguish SpiceDB from other systems include:\n\n- Expressive [gRPC](https://buf.build/authzed/api) and [HTTP](https://petstore.swagger.io/?url=https://raw.githubusercontent.com/authzed/authzed-go/main/proto/apidocs.swagger.json) APIs for checking permissions, listing access, and powering devtools\n- An architecture faithful to [Google's Zanzibar paper](https://authzed.com/blog/what-is-zanzibar/), including resi
@samkim
samkim / keybase.md
Last active November 11, 2017 04:31

Keybase proof

I hereby claim:

  • I am samkim on github.
  • I am samkim (https://keybase.io/samkim) on keybase.
  • I have a public key ASBh_fC_r941R05_FjPxgmqC4jkw13ey7K0MtF7l1JNffwo

To claim this, I am signing this object:

@samkim
samkim / Rakefile
Created April 12, 2013 22:56
Meta rake file that collects tasks in other rake files
require "rubygems"
require "rake"
Rake::TaskManager.record_task_metadata = true
puts "Begin loading tasks"
# Import rake scripts from the following directories:
[
'build',
'deploy'
@samkim
samkim / starter.js
Created April 3, 2013 23:52
Javascript starter with zepto and jquery support
// From zeptojs
document.write('<script src=' +
('__proto__' in {} ? 'js/zepto' : 'js/jquery') +
'.js><\/script>')
(function($){
// DOM ready
$(document).ready(function() {
console.log('on ready');
});
@samkim
samkim / index.html
Created January 26, 2013 20:58
Basic starter HTML document
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<!-- page content -->