https Conosle URL: https://master.jvmcon-f38a.openshiftworkshop.com
Content: http://starter-guides-lab-workshop.apps.jvmcon-f38a.openshiftworkshop.com
#!/usr/bin/env python3 | |
"""Script to check binder deployment status | |
checks: | |
- binderhub chart has latest hub chart | |
- mybinder has latest binderhub chart | |
- mybinder has latest repo2docker image | |
- mybinder prod is up-to-date with staging | |
""" |
""" | |
Script to get watchers/stars/forks for all repos on a github organization | |
Set GITHUB_API_TOKEN environment variable if you are hitting the API rate limit | |
Requires pygithub and Python 3.6: | |
pip install pygithub | |
Usage: |
<section data-transition='concave'> | |
<section id="local-development-with-kubernetes"> | |
<a href="http://kubernetes.io/"><img src="https://cdn.rawgit.com/ryanj/1aed9676c69ab0073be0beb60ca77a9c/raw/74f82bdfb47f1addaca529e8ee63ed678356a62f/kubernetes-blueprint-logo.svg" alt="kubernetes" style='width:30%;'></a> | |
<h2>Kubernetes Basics</h2> | |
<p>with</p> | |
<h1><code>kubectl</code></h1> | |
<p> | |
<a href="https://www.socallinuxexpo.org/scale/16x/presentations/hands-intro-kubernetes-kubectl">Thursday, March 8th 13:30-16:30 in Room 211</a><br/> | |
at <a href="https://www.socallinuxexpo.org/scale/16x/presentations/hands-intro-kubernetes-kubectl">#SCaLE16x</a> in Pasadena, CA</p> | |
Last updated March 13, 2024
This Gist explains how to sign commits using gpg in a step-by-step fashion. Previously, krypt.co was heavily mentioned, but I've only recently learned they were acquired by Akamai and no longer update their previous free products. Those mentions have been removed.
Additionally, 1Password now supports signing Git commits with SSH keys and makes it pretty easy-plus you can easily configure Git Tower to use it for both signing and ssh.
For using a GUI-based GIT tool such as Tower or Github Desktop, follow the steps here for signing your commits with GPG.
""" | |
Python implementation of https://github.com/jupyterhub/jupyterhub/issues/1261 | |
""" | |
import json | |
import requests | |
username = 'minrk' | |
password = 'secret' | |
hub_url = 'http://127.0.0.1:8765' |
#!/usr/bin/env ruby | |
# usage: | |
# ruby all-releases ipython jupyter jupyterlab jupyterhub | |
# dependencies: | |
# gem install netrc octokit activesupport faraday-http-cache | |
require "rubygems" | |
require "octokit" |
[package] | |
name = "Django" | |
# version = ... # This is omitted, ``setup.py`` must be executed to read it. | |
summary = """ | |
A high-level Python Web framework that encourages rapid development and\ | |
clean, pragmatic design.\ | |
""" | |
url = "http://www.djangoproject.com/" | |
author = "Django Software Foundation" | |
author-email = "[email protected]" |
ser www-data; | |
worker_processes 4; | |
pid /run/nginx.pid; | |
events { | |
worker_connections 1024; | |
} | |
http { |