Skip to content

Instantly share code, notes, and snippets.

View ccamel's full-sized avatar
🧙‍♂️
Coding for the commons, crafting for the curious.

Chris ccamel

🧙‍♂️
Coding for the commons, crafting for the curious.
View GitHub Profile
@iamsurya-dev
iamsurya-dev / metrics-table.csv
Last active April 22, 2020 15:18
Metrics Tables in Medium
term description value/example
organization The name of the organization google/facebook etc.
service Name of the service myApp
resource Name of the resource being monitored by the service. It could also simply be a method name in the application kafka/method1/database
entity Name of the attribute being operated on. It's context is defined by the resource message/schema
metricType Type of metric for easy identification gauge/meter/timer etc.
operation Defines the type of metric to use create/update/delete/count/read
status Status of the operation success/failed/delay/abort
@ricjcosme
ricjcosme / dump-restore
Created September 13, 2017 17:33
DUMP / RESTORE PostgreSQL Kubernetes
DUMP
// pod-name name of the postgres pod
// postgres-user database user that is able to access the database
// database-name name of the database
kubectl exec [pod-name] -- bash -c "pg_dump -U [postgres-user] [database-name]" > database.sql
RESTORE
// pod-name name of the postgres pod
// postgres-user database user that is able to access the database
// database-name name of the database
@edsiper
edsiper / kubernetes_commands.md
Last active April 8, 2025 09:02
Kubernetes Useful Commands
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active August 20, 2025 20:17
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@dmnsgn
dmnsgn / WebGL-WebGPU-frameworks-libraries.md
Last active August 20, 2025 11:34
A collection of WebGL and WebGPU frameworks and libraries

A non-exhaustive list of WebGL and WebGPU frameworks and libraries. It is mostly for learning purposes as some of the libraries listed are wip/outdated/not maintained anymore.

Engines and libraries ⚙️

Name Stars Last Commit Description
three.js ![GitHub
@rms1000watt
rms1000watt / golang-gql-client.go
Created November 2, 2016 18:32
Golang GraphQL Client
package main
import (
"bytes"
"fmt"
"io/ioutil"
"net/http"
"strconv"
)
@singhshivam
singhshivam / Immutable JS Examples
Last active April 10, 2025 14:48
Immutable JS Examples
List()
var list = Immutable.List([1,2,3])
// [1, 2, 3]
List.isList()
Immutable.List.isList(list)
// true
List.of()
var list = Immutable.List.of(1,2,3);
@LeoAref
LeoAref / dispatcher.js
Last active October 5, 2022 11:04
Simple event dispatcher implementation using JavaScript
export class Dispatcher {
constructor () {
this.events = {};
}
addListener (event, callback) {
// Check if the callback is not a function
if (typeof callback !== 'function') {
console.error(`The listener callback must be a function, the given type is ${typeof callback}`);
return false;
@lukas-h
lukas-h / license-badges.md
Last active August 13, 2025 05:22
Markdown License Badges for your Project

Markdown License badges

Collection of License badges for your Project's README file.
This list includes the most common open source and open data licenses.
Easily copy and paste the code under the badges into your Markdown files.

Notes

  • The badges do not fully replace the license informations for your projects, they are only emblems for the README, that the user can see the License at first glance.

Translations: (No guarantee that the translations are up-to-date)

@parmentf
parmentf / GitCommitEmoji.md
Last active August 20, 2025 08:37
Git Commit message Emoji