-
Install Python 3.7 64-bit
- download python-3.7.2-amd64.exe
- install, check "Add Python 3.7 to PATH"
-
Install PyRFC
- download pyrfc-1.9.93-cp37-cp37m-win_amd64.whl
- run
pip install Downloads/pyrfc-1.9.93-cp37-cp37m-win_amd64.whl
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
# GnuPG: an implementation of OpenPGP standard (RFC 4880) | |
# ============================================================================== | |
# Configuration | |
# ------------------------------------------------------------------------------ | |
mkdir --parents ~/.gnupg | |
cat > ~/.gnupg/gpg.conf << EOF | |
no-greeting |
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 | |
# Xubuntu 18.04 Lab Install | |
# <https://gist.github.com/auriza/9c11147b86c0a146b1e4c72bd822481f> | |
{ # BASE INSTALL ====================================================== | |
# - Welcome : [Install Xubuntu] | |
# - Keyboard: [Continue] | |
# - Updates : uncheck any option, [Continue] |
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
global main | |
extern scanf, printf | |
section .data | |
fmt_in db "%d %d %d", 0 | |
fmt_out db "%d", 10, 0 | |
section .bss | |
p resd 1 | |
l resd 1 |
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
# DOWNLOAD VDI: ---------------------------------------------------------------- | |
wget -c 'http://172.18.16.251/~adminlab/UTBK.vdi.gz' | |
gunzip 'UTBK.vdi.gz' | |
md5sum 'UTBK.vdi' | |
chmod o+rw 'UTBK.vdi' | |
# CREATE USER: ----------------------------------------------------------------- | |
sudo adduser --add_extra_groups utbk | |
# CREATE VM: ------------------------------------------------------------------- |
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
from turtle import * | |
def segi(n, s): | |
for i in range(n): | |
forward(s) | |
left(360/n) | |
def star(s): | |
for i in range(12): | |
forward(s) |