- ubuntu(server): https://ubuntu.com/download/server
- ubuntu(desktop): https://ubuntu.com/download/desktop
- debian(minimal): https://www.debian.org/CD/netinst/
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 | |
| # Extract any video from adobe connect | |
| # | |
| # requirements: wget, unzip, ffmpeg | |
| set -euo pipefail | |
| if [ $# -eq 0 ]; then | |
| echo "Usage: $0 video-url" | |
| exit 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
| clearvars; | |
| init_seq = [0, 1, 0, 1, 0, 0, 1, 0]; | |
| bit_sample = 8; % bit sample size | |
| % Expanding bit sequence with by bit_sample size | |
| bit_seq = zeros(1, bit_sample .* length(init_seq)); | |
| k = 1; | |
| for i=1:length(init_seq) | |
| for j=1:bit_sample |
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
| local function tprint(tbl, indent) | |
| if not indent then indent = 0 end | |
| for k, v in pairs(tbl) do | |
| local formatting = string.rep(" ", indent) .. k .. ": " | |
| if type(v) == "table" then | |
| print(formatting) | |
| tprint(v, indent+1) | |
| else | |
| print(formatting .. tostring(v)) | |
| end |
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
| #!/usr/bin/python3 | |
| #max heap implementation | |
| class Bin_heap: | |
| def __init__(self, input_heap = []): | |
| self.heap = input_heap | |
| if (input_heap): | |
| self.build_heap() | |
| def heapify(self, n, i): |
NewerOlder