Event Bridge | Trigger URL | Description |
---|---|---|
AWS RND L7 | https://events.l7l2.com/builds/trigger/nightly | CI Builds Nightly Cron Triggering multiple CI pipeline builds |
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
type PropEventSource<Type> = { | |
on<Key extends string & keyof Type> | |
(eventName: `${Key}Changed`, callback: (newValue: Type[Key]) => void): void; | |
}; | |
declare function makeWatchedObject<Type>(obj: Type): Type & PropEventSource<Type>; | |
const person = makeWatchedObject({ | |
firstName: "lynsei", | |
lastName: "asynyn", |
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
#!/usr/bin/bash | |
OS=`uname -s` | |
REV=`uname -r` | |
MACH=`uname -m` | |
if [ "${OS}" = "SunOS" ] ; then | |
OS=Solaris | |
ARCH=`uname -p` | |
OSSTR="${OS} ${REV}(${ARCH} `uname -v`)" |
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
#!/bin/bash | |
# | |
# error handling and error report example | |
# | |
set -e | |
# logfile | |
LOGFILE=`mktemp` |
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
0.9.95.dbld.00103 |
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
// SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause) | |
/* | |
* Copyright (C) 2017-2022 Jason A. Donenfeld <[email protected]>. All Rights Reserved. | |
* Copyright Matt Mackall <[email protected]>, 2003, 2004, 2005 | |
* Copyright Theodore Ts'o, 1994, 1995, 1996, 1997, 1998, 1999. All rights reserved. | |
* | |
* This driver produces cryptographically secure pseudorandom data. It is divided | |
* into roughly six sections, each with a section header: | |
* | |
* - Initialization and readiness waiting. |
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
<div id="row"> | |
<h1 id="heading" contenteditable="true">GLOBAL.PKGDIST.COM</h1> | |
<h4 id="strapline" contenteditable="true">GLOBAL SOFTWARE DISTRIBUTION CDN </h4> | |
<span><a class="button" href="https://github.com/lynslang/" target="_blank">LynsLang CE | EE</a></span> | |
</div> |
#
# This simply allows the script to find the private key, chain certifiate, and root cert for any sub-domain that was triggered in automation using Lets Encrypt and a Jwilder proxy # # # companion container and their awesome API!
#
# 1. With LynsLang/Fish or Bash you can first `docker ps` with a filter for "name=nginx-proxy-lets" which will provide the container id easily,
# provided you supply the correct go-lang template parameters:
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
# my new registry code will be stored at github.com/distro-less and will provide polyglot support | |
FROM node:8.15.0 AS build-env | |
ADD . /app | |
WORKDIR /app | |
FROM gcr.io/distroless/nodejs | |
COPY --from=build-env /app /app | |
WORKDIR /app | |
CMD ["js_file.js"] |
Reference
# https://docs.timescale.com/install/latest/installation-docker/#more-docker-options
NewerOlder