Online resources:
- BrainPop
- Curiosity Stream
- Tynker
- Outschool
- Udemy
- iReady
- Beast Academy (Math)
- Khan Academy
- Creative Bug
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: jenkins | |
namespace: jenkins | |
spec: | |
selector: | |
matchLabels: | |
app: jenkins | |
template: |
FROM openjdk:18-jdk-oraclelinux8 as build | |
#minimum jre image for webserver | |
RUN jlink --add-modules jdk.httpserver --output java_http | |
RUN curl \ | |
https://download.oracle.com/otn_software/java/jdk/17.0.1+12/2a2082e5a09d4267845be086888add4f/jdk-17.0.1_doc-all.zip \ | |
--output docs.zip && \ | |
jar xvf docs.zip |
Online resources:
Selfhosting is the process of locally hosting and managing applications instead of renting from SaaS providers.
This is a list of Free Software network services and web applications which can be hosted locally. Non-Free software is listed on the Non-Free page.
See Contributing.
<div ng-app="smartWiki" ngcloak> | |
<div ng-controller="WikiCtrl"> | |
<div class="container"> | |
<br> | |
<br> | |
<br><br> | |
<br> | |
<br> | |
<h1 class="header strong center blue-text">Sm<i class="material-icons medium">search</i>rt Wiki</h1> |
#!/bin/bash | |
# OpenVPN road warrior installer for Debian, Ubuntu and CentOS | |
# This script will work on Debian, Ubuntu, CentOS and probably other distros | |
# of the same families, although no support is offered for them. It isn't | |
# bulletproof but it will probably work if you simply want to setup a VPN on | |
# your Debian/Ubuntu/CentOS box. It has been designed to be as unobtrusive and | |
# universal as possible. | |
#just put this in your Dockerfile prior to doing any apt-get operations and your build will use the proxy | |
FROM ubuntu:14.04 | |
RUN apt-get install -y --no-install-recommends dnsutils | |
ADD squid-deb-proxy-discover-setup.sh /root/ | |
RUN /root/squid-deb-proxy-discover-setup.sh |