This file contains 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 2021 - 2022 Timo Sarkar & Aaron Camenzind | |
# Redistribution des Codes ohne Genehmigung nicht gestattet | |
# Verwendung des Codes als eigene Lösung nicht gestattet | |
#> | |
<# | |
# Titel: M122 Backup Script | |
# Zweck: PowerShell GUI App um Backups zu erstellen | |
# Datum: 07.12.2021 - 12.12.2021 |
This file contains 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
# fetch rvm | |
gpg2 --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB | |
\curl -sSL https://get.rvm.io | bash -s stable | |
# add package source for libssl-dev1.0 | |
sudo nano /etc/apt/sources.list | |
add deb http://security.ubuntu.com/ubuntu bionic-security main | |
sudo apt update && apt-cache policy libssl1.0-dev | |
sudo apt-get install libssl1.0-dev |
This file contains 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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <ctype.h> | |
#define TOP 1 | |
#define MAX 10 | |
typedef struct { | |
char *source_file; |
This file contains 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
https://sdkman.io/jdks#open |
This file contains 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
_BYTE byte_10048400[96] = | |
{ | |
0, | |
0, | |
22, | |
-80, | |
21, | |
-93, | |
-125, | |
-104, |
This file contains 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
const PDFDocument = require('pdfkit'); | |
const fs = require('fs'); | |
// Create a document | |
const doc = new PDFDocument(); | |
// Pipe the document to a file | |
doc.pipe(fs.createWriteStream('output.pdf')); | |
// Add some content |
This file contains 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
#set document(title: "title", author: "author") | |
#set par(justify: true) | |
#let today = datetime.today() | |
#set page(margin: (left: 2in)) | |
#set quote(block: true) | |
#line(start: (0%, 5%), end: (8.5in, 5%), stroke: (thickness: 2pt)) | |
#align(horizon + left)[ | |
#text(size: 24pt, [StudySubject \ DocumentTitle]) |
This file contains 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
version: '3' | |
services: | |
mailhog: | |
image: mailhog/mailhog | |
container_name: mailhog | |
ports: | |
- "1025:1025" | |
- "8025:8025" |
This file contains 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 ubuntu:16.04 | |
RUN apt-get update && apt-get install -y \ | |
bzip2 \ | |
libyaml-0-2 \ | |
libssl1.0.0 \ | |
clang-3.6 \ | |
libedit-dev \ | |
zlib1g-dev \ | |
make |