Skip to content

Instantly share code, notes, and snippets.

View lynsei's full-sized avatar
:octocat:
Huzzah!

Lynsei lynsei

:octocat:
Huzzah!
View GitHub Profile
@lynsei
lynsei / keylesstrust.author.pub
Last active January 16, 2022 16:58
// tag: #czms #cryptomint #User=lynsei
-----CRYPTOMINT-----
// ;
// ED.
// E#Wi
// i j. E###G.
// LE :;;;;;;;;;;;;;. EW, E#fD#W;
// L#E jWWWWWWWW###L E##j E#t t##L
// G#W. ,W#f E###D. E#t .E#K,
// D#K. ,##f E#jG#W; E#t j##f
// E#K. i##j E#t t##f E#t :E#K:
@lynsei
lynsei / api.operations.goes.into.the.cli.md
Last active March 15, 2022 06:52
#ascii #art #lynsei #lba #architecture #official #tinyruntime #certified #ztasec

sync operations

api management platform

API Management is built iinto what we call Graph Collections and they are controlled by the parent, the Graph Root. The root collection can contain many Graph Collections and is composed of Block Collections, and anchored to a Block Singletary where the Graph Storage is composed.

API Management is built iinto what we call the GraphRoot. It's the Operational Security Boundary for what you may consider to be many API Fragments composed of Routes, Programs, CLIs, Webhooks and API Fragments that make up a single data graph. We call these Graph Collections and they are controlled by the parent, the Graph Root.

lynslang.com/sync

@lynsei
lynsei / index.html
Last active January 3, 2022 23:32
QDisplay-Table Toggles | Repurposing for ML Potentially
<div id="q-app">
<div class="q-pa-md">
<q-table
title="Quick Look:"
:data="data"
:columns="columns"
row-key="name"
:visible-columns="visibleColumns"
>
@lynsei
lynsei / Dockerfile.v0.defaults
Last active March 7, 2022 07:09
#ztasec #nodocker #commands #buildx #crypto #DCT2 #PM2 #DIND #Cache
# syntax=docker/dockerfile:1.2-experimental
#FROM node:12-alpine
FROM docker:20.10-dind
# busybox "ip" is insufficient:
# [rootlesskit:child ] error: executing [[ip tuntap add name tap0 mode tap] [ip link set tap0 address 02:50:00:00:00:01]]: exit status 1
RUN apk add --no-cache iproute2
# "/run/user/UID" will be used by default as the value of XDG_RUNTIME_DIR
RUN mkdir /run/user && chmod 1777 /run/user
@lynsei
lynsei / .leptonrc
Created December 24, 2021 04:13 — forked from LeanSeverino1022/.leptonrc
[Set lepton theme to dark] This is a template for Lepton's configuration file. Please place it on your home directory #config
{
"theme": "dark",
"snippet": {
"expanded": true,
"newSnippetPrivate": false,
"sorting": "updated_at",
"sortingReverse": true
},
"editor" : {
"tabSize": 4
@lynsei
lynsei / dod-lists.md
Last active December 21, 2021 16:03
Azure Agile+ KanBan Best Practices for Works in Progress, this can be re-used in different scenarios.

Greenfield

  • Schema validated?
  • API Published?
  • Docs Published/ Peer reviewed?
  • Code peer reviewed?
  • Code completed?
  • Code reviewed?
  • Code checked-in?
  • Unit tests passed?
@lynsei
lynsei / cholesky_decomposition.cpp
Created December 21, 2021 03:27 — forked from Yegorsh/cholesky_decomposition.cpp
Cholesky decomposition/Разложение Холецкого на C++
#include <iostream>
#include <cmath>
using namespace std;
void FillMatrix(double **matrix, const int size){
for (int i=0; i<size; i++){
for (int j=0; j<size; j++){
cout << "a[" << i+1 << "][" << j+1 << "] = ";
cin >> matrix[i][j];
}
@lynsei
lynsei / #k8s is known for incredibly colloquial and succinct documentation.rst
Last active December 21, 2021 00:04
Yes dear lord, let me revel in this amazing K8s documentation. If I could only have just one more thing on earth, it would be simply this! more k8s documentation. I love how concise this one is though, like for real only 2906 pages? Awww man show your boss he would totally be impressed!

Kubernetes Architecture

As you may have noticed, I do a feel a bit snarky and frankly, well, misanthropic and completely irreverent when it comes to the state of container orchestration in 2021. You might havev also noticed that I've built more than just a few container clouds in my most recent 5 year foray into container-space. Anyhow, the reason I get all this angst is because I remember what things were like prior to Kubernetes and how simple everything was. Those were "The Good days".

In keeping with that sentiment, I love WASM and Rust and all things FaaS. It's my current mission in life to abstract away the magic that is kubernetes by wrapping my k8s clusters inside a docker
@lynsei
lynsei / CMakeLists.txt
Last active December 20, 2021 23:54 — forked from mikilian/CMakeLists.txt
Modern C++ development with alpine linux, cmake, clang inside a docker container
set(CMAKE_C_COMPILER clang)
set(CMAKE_CXX_COMPILER clang++)
# TODO: Implement GetText and LibINTL so I can figure out the blocker on LynsLang.
cmake_minimum_required(VERSION 3.18)
set(APP_NAME "example-app")
project("${APP_NAME}")
@lynsei
lynsei / Mac OS X: Open in Visual Studio Code
Created December 10, 2021 19:38 — forked from tonysneed/Mac OS X: Open in Visual Studio Code
Add a command to Finder services in Mac OSX to open a folder in VS Code
- Open Automator
- File -> New -> Service
- Change "Service Receives" to "files or folders" in "Finder"
- Add a "Run Shell Script" action
- Change "Pass input" to "as arguments"
- Paste the following in the shell script box: open -n -b "com.microsoft.VSCode" --args "$*"
- Save it as something like "Open in Visual Studio Code"