Skip to content

Instantly share code, notes, and snippets.

View dexterbrylle's full-sized avatar

Dexter Brylle dexterbrylle

View GitHub Profile
{
"title": "SRE Reliability Improvement Agent for Dynatrace Monaco",
"description": "This agent is designed to autonomously identify, propose, implement, and validate reliability improvements within our product ecosystem, with a strong focus on leveraging Dynatrace Monaco for proactive monitoring and configuration management. The primary goal is to enhance system stability, reduce MTTR (Mean Time To Recovery), and empower teams with self-service observability.",
"core_directive": {
"identity": "Autonomous SRE Reliability Engineer, specialized in Observability and Dynatrace Monaco.",
"mission": "To continuously enhance the reliability, availability, and performance of our production systems by proactively addressing potential issues, improving monitoring coverage, and ensuring robust alert and self-healing mechanisms, primarily through the intelligent utilization of Dynatrace Monaco.",
"critical_rule": "NEVER introduce changes that could degrade system stability or security. Always prioritize
const dynastyReign = [
{ 'San Dynasty': 'MXLI' },
{ 'Viloria Dynasty': 'MCCCIIII' },
{ 'Tan Dynasty': 'MCCCXCVIII' },
{ 'Bon Dynasty': 'MCDXLV' },
{ 'Maiko Dynasty': 'MDCLXIV' },
{ 'Paul Dynasty': 'MCMXLIX' },
{ 'Andre Dynasty': 'MMMXICX' },
];

Keybase proof

I hereby claim:

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

To claim this, I am signing this object:

-----BEGIN PUBLIC KEY-----
MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCMBtfx7lCNr+1OEVHbDws/w+Id
jqJQ1B6tELswI0FoJNQg0B4H0pd9rwhHtas+uV0zc+2ynZay4z/fj/9e2a27fZqD
NI9tPL9lkx6npVtoNB+F+ktKxhIpUDvQGP9orYYHQoUgrDJRT4kMS5J3TY44FryM
jmEaCiFViXOhvGpf9wIDAQAB
-----END PUBLIC KEY-----
-----BEGIN RSA PRIVATE KEY-----
MIICXAIBAAKBgQCMBtfx7lCNr+1OEVHbDws/w+IdjqJQ1B6tELswI0FoJNQg0B4H
0pd9rwhHtas+uV0zc+2ynZay4z/fj/9e2a27fZqDNI9tPL9lkx6npVtoNB+F+ktK
xhIpUDvQGP9orYYHQoUgrDJRT4kMS5J3TY44FryMjmEaCiFViXOhvGpf9wIDAQAB
AoGAcWeVer2MhcPGiCRky+oaLTFirpd3A8lXcsiLIYhcD5FML6r9t04qHMMmDJWo
M+uB/QrVpoQUqZp8f34qz1GybmSyTExYyNEeVSuUwik/Slt+yd8d3P9C1RFkfSgv
VHnlcLu6kswXyrvYC8W8eGeOTCuYsoMQSo1WrptPGaMqQKECQQC+2qQCsyuTtOMG
8dtFjdUul0XEZMJ39E1cKk/7WzKPh3OpFrwA0B0PoPhev7UsRzuJQSqvm8F9edr+
4onWai6xAkEAu9LE5A6nMspXSLan31NlN4YX1NIgANSvZBRJHSH2iDYAY+R2UbBa
3aPeyMnB8RcfYt1upxzA4abqJRkctfAzJwJAVANI6UtXpmic+2Shwmdh7WV3t7En
/**
* JS String Utils
* @author Dexter Brylle Matos <[email protected]>
*/
'use strict'
function toString (value) {
return value === null ? '' : value.toString()
}
@dexterbrylle
dexterbrylle / gist:1b9bf0f7e98854c4ab3f733a7aaa1cf6
Created July 4, 2018 11:47
Change the location of macOS screenshots
# Create a new folder or choose an existing folder
defaults write com.apple.screencapture location /Users/<username>/Desktop/Screenshots
killall SystemUIServer
# That's it!
AutoClose Tag
AutoRename Tag
Debugger for Chrome
*DotENV
*EditorConfig for VSCode
*GitLens
HTML CSS Support
HTML Snippets
Intellisense for CSS class names
*Javascript Standard Style
@dexterbrylle
dexterbrylle / chart.html
Last active September 20, 2017 07:17
Chart html sample
<!DOCTYPE HTML>
<html>
<head>
<script type="text/javascript">
window.onload = function () {
var chart = new CanvasJS.Chart("chartContainer",
{
title:{
text: "Skills Matrix"
@dexterbrylle
dexterbrylle / gitlab-ci.yml
Created September 3, 2017 17:37
Gitlab CI for node/express
# This file is a template, and might need editing before it works on your project.
# Official framework image. Look for the different tagged releases at:
# https://hub.docker.com/r/library/node/tags/
image: node:latest
# This folder is cached between builds
# http://docs.gitlab.com/ce/ci/yaml/README.html#cache
cache:
paths:
- node_modules/