Skip to content

Instantly share code, notes, and snippets.

Has the cloud failed to deliver on the promised cost savings?

There is currently no shortage of articles talking about how more and more companies are moving back to on prem, citing that the cloud has failed to deliver the cost savings as promised. I've even had several conversations with close friends about their personal experiences with the cloud just not living up to their expectations. I believe that these arguments are failing to look at the whole picture, and compare all of the services provided.

Cloud providers offer a wide array of features and services that often go unnoticed but significantly contribute to their value. Their platform itself is arguably the biggest underappreciated service. A cloud platform is a tremendously useful tool, allowing you to leverage orchestration automation, inventory management, configuration management, and streamlined deployment pipelines. All of this from a centralized, API-driven environment. You also get to utilize their state of the art, highly efficient n

title: "Vietnamese Grilled Pork Chops"
categories:
- Pork
tags:
- Vietnamese
cuisines:
- Vietnamese
difficulties:
- Easy
meals:
#!/usr/bin/env bash
runs=$1
passorfail () {
local _thing=$1
sleep 2
if [[ $_thing == pass ]]; then
return 0
else

Keybase proof

I hereby claim:

  • I am jessebutryn on github.
  • I am jesse_b (https://keybase.io/jesse_b) on keybase.
  • I have a public key ASD8eQm6Fjti9hTaJ2kplCrnjBTM2za8MxOGnlDfBGwvcwo

To claim this, I am signing this object:

#!/usr/bin/env bash
#set -x
trap ctrl_c INT
ctrl_c () {
rm -r "$_tmpdir"
exit 2
}
@jessebutryn
jessebutryn / mkdirs.ps1
Created August 19, 2020 13:19
powershell script to make directories for each file in a directory and move those files into them.
# This script will make directories for all files in a specified directory and move them into it.
# You must provide the input directory as the first argument and can optionally specify an output
# directory as the second argument. If no output directory is specified the input directory will
# be used.
$inDir = $args[0]
$outDir = $args[1]
$isInDir = Test-Path -LiteralPath $inDir -PathType Container
@jessebutryn
jessebutryn / bup.ps1
Created August 18, 2020 17:33
file backup script
$sdirs = @(
"C:\Users\jesse_b"
#"C:\Users\jesse_b\tmp"
)
$ddir = "Y:\jesse"
#$ddir = "C:\Users\jesse_b\tmp\test"
function fsync ($source,$target) {
#include <stdio.h>
#include <math.h>
#include <stdlib.h>
int main(int argc, char *argv[]) {
int n, x, i, s, f, l;
if ( argc < 2 ) {
printf("oi! Provide an argument!\n");
return 1;
@jessebutryn
jessebutryn / morse.sh
Created December 26, 2019 21:03
bash script to convert text to morse code
#!/usr/bin/env bash
#
#set -x
#######################################
declare -A morse
morse[0]='- - - - -'
morse[1]='. - - - -'
morse[2]='. . - - -'
morse[3]='. . . - -'
morse[4]='. . . . -'
@jessebutryn
jessebutryn / Test.txt
Created October 26, 2019 21:09
This is only a test
#!/bin/sh
# comment
func () {
for ((i=1;i<10;i++)); do
:
done
}
printf '%s\n' Foo bar baz