Skip to content

Instantly share code, notes, and snippets.

@abperiasamy
abperiasamy / gcs-s3-interoperability.md
Last active November 2, 2021 05:12 — forked from harshavardhana/gcs-s3-limits.md
GCS S3 API Interoperability
@abperiasamy
abperiasamy / mc-rewind-snap.md
Last active June 22, 2020 02:43
MinIO Client - Time Machine

REWIND

Implement rewind as a global flag for all mc sub-commands.

  • List all objects at this prefix as of 4 days 2 hours 10 mins ago.

    mc ls PREFIX --rewind 4d2h10m

  • List all objects at this prefix exatly on at this time (RFC3339 format).

# Represents the current version of this config file
version = "1"
[controller]
# NVMe serial number
serialnumber = "MNM00000000000003"
# NVMe qualified name (SPDK proposed EBKF format for NQN specification under NVMe standard)
name = "nqn.2018-06.io.mnm:minio3"
[storage]

NAME:
minio server - Start object storage server.

; Go mode
(add-to-list 'load-path "~/.emacs.d/extensions/")
(require 'go-mode-autoloads)
(require 'auto-complete)
(require 'auto-complete-config)
(require 'go-autocomplete)
(require 'go-flycheck)
(add-hook 'after-init-hook #'global-flycheck-mode)
(global-auto-complete-mode t)
@abperiasamy
abperiasamy / maintainers.txt
Created December 8, 2015 18:57
Maintainer's Responsibilities
## Upstream Maintainer's Responsibilities
- Maintainer is also the top contributor of the project.
- Keep upsteam branch at production quality at all times.
- Work with the release maintainer to keep the release branch stay as close as possible.
- Accept only high quality pull-requests. Provide code reviews and guidance on incomming pull requests.
- Maintainer's Github keys must be password protected securely.
- Any public facing API or UI or architectural or significant changes requires approval from the architect.
## Sub-Maintainer's Responsibilities
- When maintainer is offline, sub-maintainer takes his/her responsibilities.
// The Game of Y - Board structure captured a graphlib compatible graph.
// Copyright 2014, Hyperbotics
// Authors: Anand Babu Periasamy <ab@unlocksmith.org>,
// INSERT YOUR NAME HERE;
// License: GNU AGPL v2 or later.
TheGameOfY_Graph = function() {
var graph = require('graphlib').Graph;