Install xfce4
sudo apt update
sudo apt install xfce4 xfce4-goodies
Install TigerVNC -
MongoDB Crash Course 2022 < TODO: Add Video Link
| /* | |
| * | |
| * Copyright 2016, Google Inc. | |
| * All rights reserved. | |
| * | |
| * Redistribution and use in source and binary forms, with or without | |
| * modification, are permitted provided that the following conditions are | |
| * met: | |
| * | |
| * * Redistributions of source code must retain the above copyright |
| #!/bin/sh | |
| aria2c --dir=./ --input-file=urls.txt --max-concurrent-downloads=1 --connect-timeout=60 --max-connection-per-server=16 --split=16 --min-split-size=1M --human-readable=true --download-result=full --file-allocation=none | |
| date | |
| # Now create this file in the same directory and paste all urls in it: urls.txt | |
| create or replace function epoch_to_jd(float) RETURNS int as $$ | |
| BEGIN | |
| return ($1 / (24*3600) + 2440588)::int; | |
| END; | |
| $$ LANGUAGE plpgsql; | |
| create or replace function timestamp_to_jd(timestamp with time zone) RETURNS int as $$ | |
| BEGIN | |
| return epoch_to_jd(extract (epoch from $1)); |
| void set_result(optional<error_code>* a, error_code b) | |
| { | |
| a->reset(b); | |
| } | |
| template <typename MutableBufferSequence> | |
| void read_with_timeout(tcp::socket& sock, | |
| const MutableBufferSequence& buffers) | |
| { | |
| optional<error_code> timer_result; | |
| deadline_timer timer(sock.io_service()); |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Clean-Markup Line Numbers™</title> | |
| <style> | |
| body { | |
| width: 800px; | |
| margin: 0 auto; | |
| } |