Download ubuntu(server) from: https://ubuntu.com/download/server.
In linux you can make bootable usb using dd command:
sudo dd if=file_name_ubuntu_server.iso of=/dev/sdX bs=4M status=progress
| #!/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 |
Download ubuntu(server) from: https://ubuntu.com/download/server.
In linux you can make bootable usb using dd command:
sudo dd if=file_name_ubuntu_server.iso of=/dev/sdX bs=4M status=progress
| 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 |
| 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 |
| #!/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): |