This file contains hidden or 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
sudo bash -c "$(wget -qO- https://raw.githubusercontent.com/Jigsaw-Code/outline-server/master/src/server_manager/install_scripts/install_server.sh)" |
This file contains hidden or 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 | |
# Installation Script for usb_ethserv | |
set -eo pipefail | |
CONF_URL="https://gist.github.com/sr229/6950ab77a7fb5a6b6fc0891a2a398229/raw/2578e785ab9617f6909799f757e0a9014db45f7a/usb_ethserv" | |
if [ -z $(command -v wget) ]; then | |
echo "Setup requires wget" | |
exit 0 | |
fi |
This file contains hidden or 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/sh | |
# Create and switch to a temporary directory writeable by current user. See: | |
# https://www.tldp.org/LDP/abs/html/subshells.html | |
cd "$(mktemp -d)" | |
# Use a BASH "here document" to create an updater shell script file. | |
# See: | |
# https://www.tldp.org/LDP/abs/html/here-docs.html | |
# > outputs stdout to a file, overwriting any pre-existing file | |
# << takes input, directly from the script itself, till the second '_EOF_SCRIPT' marker, as stdin |
This file contains hidden or 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/sh | |
# Copyright 2019 (c) Ayane Satomi | |
# Public Domain | |
# | |
# Delegate Script for VSCode | |
# This makes sure VScode only runs in a Toolbox container. | |
# This only works with a default container. | |
FEDORA_DEFAULT_CONTAINER="fedora-toolbox-$(whoami)-30" |
This file contains hidden or 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
/* Copyright 2019 (c) Ralph Wilson Aguilar | |
* For CS-111 | |
* Do not copy or redistribute without permission | |
*/ | |
#include <iostream> | |
using namespace std; | |
// This is based on the Philippine College Grading System. |
This file contains hidden or 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
/* | |
* Copyright 2019 (c) Ralph Wilson Aguilar | |
* For CS-111 | |
* Do not copy or redistribute without permission. | |
*/ | |
#include <iostream> | |
#include <cmath> | |
using namespace std; |
This file contains hidden or 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
/** | |
* Copyright 2019 (c) Ralph Wilson Aguilar | |
* For CS-111 | |
* Do not copy or redistribute without permission. | |
*/ | |
#include <iostream> | |
int main () | |
{ | |
int factorial = 1, i, input; |
This file contains hidden or 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
/** | |
* Copyright 2019 (c) Ralph Wilson Aguilar | |
* For CS-111 | |
* Do not copy or redistribute without permission. | |
*/ | |
#include <iostream> | |
#include <cmath> | |
using namespace std; |
This file contains hidden or 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
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: bot | |
spec: | |
selector: | |
matchLabels: | |
app: clara.discordapp | |
tier: frontend |
This file contains hidden or 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
/** | |
* Copyright 2019 (c) Kibo Hikari | |
* Licensed under MIT. | |
* | |
* Based on Google's Flywheel whitepaper | |
* If you want to read about it, see: https://ai.google/research/pubs/pub43447 | |
*/ | |
const http = require('http'); | |
const httpsProxy = require('http-proxy'); |