This file contains 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
From 0c20aa9d7a575fb8c5633f6bb9f16f167772aa79 Mon Sep 17 00:00:00 2001 | |
From: Silas Baronda <[email protected]> | |
Date: Sun, 9 Jan 2022 16:09:01 +0000 | |
Subject: [PATCH] Getting Go building | |
--- | |
go/dev/Dockerfile | 2 +- | |
utils/builder.rb | 11 ++++++----- | |
2 files changed, 7 insertions(+), 6 deletions(-) |
This file contains 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
/* | |
Unobtrusive JavaScript | |
https://github.com/rails/rails/blob/main/actionview/app/assets/javascripts | |
Released under the MIT license | |
*/; | |
(function() { | |
var context = this; | |
(function() { |
This file contains 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
# Experiences | |
https://blog.guybarrette.com/passed-the-certified-kubernetes-application-developer-ckad-exam | |
# Prep | |
https://github.com/twajr/ckad-prep-notes | |
https://mingchaoliao.github.io/2020/04/26/ckad-exam-guide.html#what-is-kubernetes | |
# Exercises | |
https://github.com/dgkanatsios/CKAD-exercises |
This file contains 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
D=hello | |
[[ -z "${D}" ]] && echo '$D is blank or is set' || echo '$D set' "$D" | |
$D set hello | |
unset D | |
[[ -z "${D}" ]] && echo '$D is blank or is set' || echo '$D set:' "$D" | |
$D is blank or is set | |
D= | |
[[ -z "${D}" ]] && echo '$D is blank or is set' || echo '$D set:' "$D" | |
$D is blank or is set |
This file contains 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
class Yarn < Formula | |
desc "JavaScript package manager" | |
homepage "https://yarnpkg.com/" | |
# Should only be updated if the new version is listed as a stable release on the homepage | |
url "https://yarnpkg.com/downloads/1.19.0/yarn-v1.19.0.tar.gz" | |
sha256 "6bbdaab9c31eedbe7b53cbcde2be06b8c926f139bd0f7c00fccad406016e8934" | |
bottle :unneeded | |
depends_on "node" |
This file contains 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
apiVersion: v1 | |
name: blah | |
version: 1 |
This file contains 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
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
name: fluent-bit-config | |
namespace: logging | |
labels: | |
k8s-app: fluent-bit | |
data: | |
# Configuration files: server, input, filters and output | |
# ====================================================== |
This file contains 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
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
name: fluent-bit-config | |
namespace: logging | |
labels: | |
k8s-app: fluent-bit | |
data: | |
# Configuration files: server, input, filters and output | |
# ====================================================== |
This file contains 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
class CrystalLang < Formula | |
desc "Fast and statically typed, compiled language with Ruby-like syntax" | |
homepage "https://crystal-lang.org/" | |
revision 1 | |
stable do | |
url "https://github.com/crystal-lang/crystal/archive/0.24.1.tar.gz" | |
sha256 "4999a4d2a9ffc7bfbea8351b97057c3a135c2091cbd518e5c22ea7f5392b67d8" | |
resource "shards" do |
This file contains 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
(this, function() { | |
return /******/ (function(modules) { // webpackBootstrap | |
/******/ // install a JSONP callback for chunk loading | |
/******/ var parentJsonpFunction = window["webpackJsonp"]; | |
/******/ window["webpackJsonp"] = function webpackJsonpCallback(chunkIds, moreModules) { | |
/******/ // add "moreModules" to the modules object, | |
/******/ // then flag all "chunkIds" as loaded and fire callback | |
/******/ var moduleId, chunkId, i = 0, callbacks = []; | |
/******/ for(;i < chunkIds.length; i++) { | |
/******/ chunkId = chunkIds[i]; |
NewerOlder