- grant access to platforms
- Github
- add to Sayari Org
- add to appropriate teams
- github project board walkthrough, Sayari's git-flow-lite processes
- Google Cloud Platform
- add to Sayari Datastore
- GKE walkthrough
- Sentry
- Github
- ElasticCloud
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const reduceChildren = ([first, ...rest], accumulator, project, reducer) => ( | |
rest.length === 0 ? | |
recurseTree(first, accumulator, project, reducer) : | |
reduceChildren( | |
rest, | |
recurseTree(first, accumulator, project, reducer), | |
project, | |
reducer | |
) | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# If you come from bash you might have to change your $PATH. | |
export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH=~/.oh-my-zsh | |
# Set name of the theme to load. Optionally, if you set this to "random" | |
# it'll load a random theme each time that oh-my-zsh is loaded. | |
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes | |
ZSH_THEME="robbyrussell" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Subscribable, PartialObserver, Unsubscribable, Observable } from 'rxjs' | |
const noop = () => {} | |
// how to make this generic for all observables? | |
export class SubscribableOrPromise<T> implements PromiseLike<T>, Subscribable<T> { | |
observableOrPromise: Observable<T> | Promise<T> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
------------------------------------------------------- | |
-- create small object and measure time to access a key | |
------------------------------------------------------- | |
CREATE TABLE small_object AS ( | |
SELECT jsonb_object_agg(n, 'abc') AS obj FROM generate_series(1,10) n | |
); | |
SELECT small_object.obj->'10' FROM small_object; | |
-- Time: 0.996 ms |
OlderNewer