Skip to content

Instantly share code, notes, and snippets.

View jaylandro's full-sized avatar
.

Jay jaylandro

.
View GitHub Profile
{
"basics": {
"name": "Jay Landro",
"label": "Lead Cloud Engineer",
"picture": "https://example.com/photo.jpg",
"email": "[email protected]",
"phone": "612-378-0152",
"website": "https://thomasedison.com",
"summary": "I excel in nurturing diverse teams, optimizing communication and driving innovation.\n\nAt the forefront of Marriott International's cloud innovation, my role as Lead Cloud Engineer centered around scaling teams and integrating advanced full stack technologies. We successfully leveraged TypeScript, NX, EKS, and Harness CI/CD, to build resilient systems. \n\nMy leadership at Verica further solidified a culture that champions individual empowerment and technological foresight. The development of the Apache Kafka module, grounded in chaos engineering, attests to my commitment to fail-safe system design. By fostering a collaborative environment and emphasizing software architecture and Go proficiency, my contributions have consistently propelled project success and su
{
"basics": {
"name": "Thomas Edison",
"label": "Inventor and Businessman",
"picture": "https://example.com/photo.jpg",
"email": "[email protected]",
"phone": "(123) 456-7890",
"website": "https://thomasedison.com",
"summary": "Prolific inventor and businessman known for developing many devices that greatly influenced life around the world, including the phonograph, the motion picture camera, and the electric light bulb.",
"location": {
{
"basics": {
"name": "Thomas Edison",
"label": "Inventor and Businessman",
"picture": "https://example.com/photo.jpg",
"email": "[email protected]",
"phone": "(123) 456-7890",
"website": "https://thomasedison.com",
"summary": "Prolific inventor and businessman known for developing many devices that greatly influenced life around the world, including the phonograph, the motion picture camera, and the electric light bulb.",
"location": {
{
"basics": {
"name": "Thomas Edison",
"label": "Inventor and Businessman",
"picture": "https://example.com/photo.jpg",
"email": "[email protected]",
"phone": "(123) 456-7890",
"website": "https://thomasedison.com",
"summary": "Prolific inventor and businessman known for developing many devices that greatly influenced life around the world, including the phonograph, the motion picture camera, and the electric light bulb.",
"location": {
@jaylandro
jaylandro / .bashzshrc
Created December 11, 2024 04:25
Terminal Tools for zsh/bash RC
wttr () {
curl wttr.in
}
moon () {
curl wttr.in/moon
}
geoip () {
curl ifconfig.co/json
graph
subgraph Cluster[Target Kubernetes Cluster<br><br>]
    Verification(Pod: Node Drain Verification )
    ctpl(Control Plane)
    n0(Node0<br>Pods: a,b,c,d,g,h)
    n1(Node1<br>Pods: e,f,g,h)
    n1final(Node1)
    n2(Node2<br>Pods: i,j,k,l,e,f)
graph LR
subgraph Verification[Kafka Verification: Client Latency<br><br><br><br>]
    subgraph Customer Kafka
        brokers(Topic: VERICA-CLIENT-LATENCY)
    end
    subgraph Client Latency Producer Pod        
        P{Producer} --> L1(TC Latency) -.-> | Configured Latency | brokers
    end
 subgraph Client Latency Consumer Pod 
@jaylandro
jaylandro / markdown-parser.js
Created May 24, 2022 11:15
Markdown parser JavaScript
function parseMarkdown(markdownText) {
const htmlText = markdownText
.replace(/^### (.*$)/gim, '<h3>$1</h3>')
.replace(/^## (.*$)/gim, '<h2>$1</h2>')
.replace(/^# (.*$)/gim, '<h1>$1</h1>')
.replace(/^\> (.*$)/gim, '<blockquote>$1</blockquote>')
.replace(/\*\*(.*)\*\*/gim, '<b>$1</b>')
.replace(/\*(.*)\*/gim, '<i>$1</i>')
.replace(/!\[(.*?)\]\((.*?)\)/gim, "<img alt='$1' src='$2' />")
.replace(/\[(.*?)\]\((.*?)\)/gim, "<a href='$2'>$1</a>")
@jaylandro
jaylandro / geolocation-weather-cloudflare.js
Created May 24, 2022 02:20
Geolocation based weather rendered on-demand at the edge with Cloudflare workers
addEventListener('fetch', event => {
event.respondWith(handleRequest(event.request));
});
async function handleRequest(request) {
// https://api.weather.gov/points/38.8894,-77.0352
const { latitude, longitude } = request.cf;
const headers = {
'content-type': 'application/json',
'User-Agent': ('landro.dev', '[email protected]')
@jaylandro
jaylandro / emoji-weather-map.js
Created April 9, 2022 23:12
Javascript object map of weather conditions and emoji
const emojiMap = {
'cloudy': '☁️',
'fog': '🌫',
'lightrain': '🌦',
'partlyCloudy': '🌤',
'rain': '🌧',
'snow': '🌨',
'sunny': '☀️',
'thunderstorms': '⛈',
'wind': '💨'