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
;---------------------------------------------------------------------------------------------------------------------------------- | |
;Recovered from: https://www.4004.com/2009/Busicom-141PF-Calculator_asm_rel-1-0-1.txt | |
;Please read legal notice below for the software terms. | |
;---------------------------------------------------------------------------------------------------------------------------------- | |
;LEGAL NOTICE, DO NOT REMOVE | |
; | |
;Annotated Busicom 141-PF software based on binaries recovered by Tim McNerney and Fred Huettig in collaboration with the Computer | |
;History Museum (November 2005). Original disassembly, reverse-engineering, initial analysis and documentation by Barry Silverman, | |
;Brian Silverman, and Tim McNerney (November 2006). Detailed analysis, commenting, documentation by Lajos Kintli (July 2007). | |
; |
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 |