wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1-1ubuntu2.1~18.04.20_amd64.deb
dpkg -i libssl1.1_1.1.1-1ubuntu2.1~18.04.20_amd64.deb
and continue installing mongo
wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1-1ubuntu2.1~18.04.20_amd64.deb
dpkg -i libssl1.1_1.1.1-1ubuntu2.1~18.04.20_amd64.deb
and continue installing mongo
| // DEV | |
| boolean read = false; | |
| while(!read) { | |
| System.out.print((char) 27 + "[?1000h"); // enable mouse trap | |
| try { | |
| byte[] in = System.in.readNBytes(6); | |
| StringBuilder sb = new StringBuilder(); | |
| if(in.length > 0) { | |
| if(in[4] == ' ') { | |
| System.out.println("down"); |
| SELECT paymentcount, CONCAT(ROUND(((cnt - lag(cnt) over (ORDER BY paymentcount)) / lag(cnt) over (ORDER BY paymentcount)) * 100), '%') | |
| as perc_change, cnt as cnt | |
| from (SELECT COUNT(paymentcount) as cnt,paymentcount FROM | |
| (select COUNT(*) as paymentcount From Payments JOIN Users on Users.id = Payments.client | |
| where Users.id != 1 GROUP BY Users.id) | |
| as a group by paymentcount) as b | |
| \documentclass{article} | |
| \usepackage{amsmath} | |
| \usepackage{amssymb} | |
| \usepackage{parskip} | |
| \author{Or something \\ \small By Luc} | |
| \title{Math by intuition} | |
| \begin{document} | |
| \begin{titlepage} |
| import json | |
| from pathlib import Path | |
| from random import SystemRandom | |
| import ujson | |
| from PIL import Image, ImageSequence | |
| from loguru import logger as log | |
| cwd = Path(__file__).parent |
| const fetch = require("node-fetch") | |
| var mysql = require('mysql'); | |
| var suggestedChanges = []; | |
| var pool = mysql.createPool({ | |
| connectionLimit : 3, | |
| user : 'root', | |
| database : 'panel', | |
| socketPath : '/var/run/mysqld/mysqld.sock' | |
| }); |
| from manim import * | |
| %%manim -qm -v WARNING PointMovingOnShapes | |
| class PointMovingOnShapes(Scene): | |
| def construct(self): | |
| circle = Circle(radius=2, color=BLUE) | |
| P = Arrow(ORIGIN, [2, 0, 0], buff=0) | |
| Q = Arrow(ORIGIN, [0, -2, 0], buff=0) | |
| S = Arrow(ORIGIN, [np.sqrt(2), -np.sqrt(2), 0], buff=0) | |
| self.add(circle) |
| #include <Servo.h> | |
| //todo trigger pin echo pin distout distin | |
| // linksachter motor2 | |
| // linksvoor M1 | |
| // rechtsvoor m4 | |
| // rechtsachter m3 | |
| bool manual = 0; |
| package sample; | |
| import javafx.application.Application; | |
| import javafx.event.Event; | |
| import javafx.event.EventHandler; | |
| import javafx.fxml.FXMLLoader; | |
| import javafx.scene.Parent; | |
| import javafx.scene.Scene; | |
| import javafx.scene.layout.Pane; | |
| import javafx.scene.paint.Color; |