Add everything
BIN
2022/.DS_Store
vendored
@ -1,3 +0,0 @@
|
||||
# Reb00tLAN visit
|
||||
|
||||
Voor diegene die nieuw zijn en mij niet kennen. Ik ben een mattie van @SuicideFunky (ken hem al 22 jaar of wat). En we hebben samen met @Kaasschaaf eerst ByteLAN gehad (in een schuur/garage met 10-15man) naderhand 50 man ongeveer in de resi speelzaal. Daarna hebben we na jaren een doorstart gemaakt met een invite only LAN en daar is Reb00tlan uit voort gekomen. Toen zijn we bij de resi verhuisd naar zolder.
|
||||
@ -1,49 +0,0 @@
|
||||
Afbouwschema olanzapine 2022
|
||||
|
||||
Week 25
|
||||
|
||||
21 juni 2.5mg
|
||||
22 juni 1.25mg
|
||||
23 juni 2.5mg
|
||||
24 juni 2.5mg
|
||||
25 juni 1.25mg
|
||||
26 juni 2.5mg
|
||||
|
||||
Week 26
|
||||
|
||||
27 juni 1.25mg
|
||||
28 juni 2.5mg
|
||||
29 juni 1.25mg
|
||||
30 juni 2.5mg
|
||||
1 juli 1.25mg
|
||||
2 juli 2.5mg
|
||||
3 juli 1.25mg
|
||||
|
||||
Week 27
|
||||
|
||||
4 juli 2.5mg
|
||||
5 juli 1.25mg
|
||||
6 juli 2.5mg
|
||||
7 juli 1.25mg
|
||||
8 juli 2.5 mg
|
||||
9 juli 1.25 mg
|
||||
10 juli 2.5 mg
|
||||
|
||||
Week 28
|
||||
|
||||
11 juli 1.25mg
|
||||
12 juli 2.5mg
|
||||
13 juli 1.25mg
|
||||
14 juli 2.5mg
|
||||
15 juli 1.25mg
|
||||
16 juli 2.5mg
|
||||
17 juli 1.25mg
|
||||
|
||||
Week 29, 18 - 24 juli 1.25mg
|
||||
Week 30, 25 - 31 juli 1.25mg
|
||||
Week 31 1.25mg
|
||||
Week 32 1.25mg
|
||||
Week 33 1.25 mg
|
||||
|
||||
Week 34 1.25 mg/none (every other day)
|
||||
Week 35 1.25 mg/none (every other day)
|
||||
BIN
2022/Brochure - Heggenstraat 10 - Landgraaf.pdf
(Stored with Git LFS)
Normal file
@ -1,18 +0,0 @@
|
||||
# Piet Heinstate Gebouwbeheer
|
||||
|
||||
## Programmeren intercom
|
||||
|
||||
Bluetooth modus:
|
||||
- toets 99999
|
||||
- wachtwoord 5692
|
||||
- code android toestel 0000 (of 1234)
|
||||
|
||||
Zie map elbo-urmet-intercom voor APK en PDF
|
||||
|
||||
* <https://www.elbotechnology.nl/nieuws/handig-apps-voor-2voice-en-entreepanelen/>
|
||||
|
||||
## GFT container Piet Heinstaete
|
||||
|
||||
* Elke 4 weken is de reiniging van de container. Door [Cleanprofs (wasweken)](https://www.cleanprofs.nl/mijn-wasweken/) op postcode en huisnummer 5694CB nr 63.
|
||||
* Vanaf april elke N weken tot november (lente, zomer, herfst)
|
||||
* Vanaf november tot april elke 2 weken (winter)
|
||||
@ -1,252 +0,0 @@
|
||||
# FreeBSD notes
|
||||
|
||||
## VIM
|
||||
|
||||
**Disable mouse**
|
||||
|
||||
`echo "set mouse-=a" >> ~/.vimrc`
|
||||
|
||||
**Mac keyboard backspace fix**
|
||||
|
||||
`set backspace=indent,eol,start`
|
||||
|
||||
## OpenSSH faster connection dropping
|
||||
|
||||
Restricting users by not allowing explicit ssh access can improve your ssh server connections.
|
||||
In the default FreeBSD `/etc/ssh/sshd_config` configuration the `MaxAuthTries` is `3`. Which means all system users can try up to 3 times before the connection is gracefull dropped.
|
||||
|
||||
We will create an explicit `ssh` group to have fine control over who may login over ssh and who is directly disconnected. By enabling this, an attacker could guess user account names if there are authentication tries or not.
|
||||
|
||||
SSH for the root user is always a bad idea, but in some setups it is necessary. For the truely paranoid root user access can be further restricted based on IP address and ssh-key only.
|
||||
|
||||
The normal behaviour when ssh to a machine wil look like this even with `PermitRootLogin no` set:
|
||||
|
||||
```
|
||||
jerry@jerrys-MacBook-Pro ~ % ssh 192.168.2.100 -lroot
|
||||
Password for root@pineapple.xor-gate.org:
|
||||
Password for root@pineapple.xor-gate.org:
|
||||
Password for root@pineapple.xor-gate.org:
|
||||
root@192.168.2.100: Permission denied (publickey,keyboard-interactive).
|
||||
```
|
||||
|
||||
When the global `MaxAuthTries 0` and a match block is used then the connection is immediatelly dropped:
|
||||
|
||||
```
|
||||
jerry@jerrys-MacBook-Pro ~ % ssh 192.168.2.100 -lroot
|
||||
Received disconnect from 192.168.2.100 port 22:2: Too many authentication failures
|
||||
Disconnected from 192.168.2.100 port 22
|
||||
```
|
||||
|
||||
```
|
||||
MaxAuthTries 0
|
||||
|
||||
Match Group ssh
|
||||
MaxAuthTries 3
|
||||
```
|
||||
|
||||
## Protecting SSH with sshguard on pf
|
||||
|
||||
Install ssh guard
|
||||
|
||||
```
|
||||
# pkg install sshguard
|
||||
```
|
||||
|
||||
Modify (or create) `/etc/pf.conf` with the `sshguard` firewall table. First we block all traffic. Also double check you don't have a rule before the SSHGuard rule that allows access.
|
||||
|
||||
```
|
||||
ext_if = igb0
|
||||
|
||||
table <sshguard> persist
|
||||
|
||||
block all
|
||||
|
||||
block drop in log quick on $ext_if inet from <sshguard> to any
|
||||
|
||||
pass in
|
||||
```
|
||||
|
||||
Enable pf firewall in the `rc.conf`
|
||||
```
|
||||
pf_enable="YES"
|
||||
pf_rules="/etc/pf.conf"
|
||||
```
|
||||
|
||||
```
|
||||
# service pf reload
|
||||
Reloading pf rules.
|
||||
pfctl: /dev/pf: No such file or directory
|
||||
```
|
||||
|
||||
The pf kernel device node doesn't exist so it is not loaded
|
||||
|
||||
```
|
||||
# kldload pf
|
||||
```
|
||||
|
||||
Or start pf using the rc script:
|
||||
|
||||
```
|
||||
# /etc/rc.d/pf start
|
||||
```
|
||||
|
||||
To show the blocked IPs use pfctl show on the sshguard table:
|
||||
|
||||
```
|
||||
pfctl -t sshguard -T show
|
||||
```
|
||||
|
||||
This slows down brute-force attacks:
|
||||
|
||||
```
|
||||
Mar 25 07:44:29 pineapple sshd[87092]: Disconnecting invalid user pi 118.161.193.40 port 54511: Too many authentication failures [preauth]
|
||||
Mar 25 07:45:07 pineapple sshd[87166]: error: maximum authentication attempts exceeded for root from 118.161.193.40 port 54556 ssh2 [preauth]
|
||||
Mar 25 07:45:07 pineapple sshd[87166]: Disconnecting authenticating user root 118.161.193.40 port 54556: Too many authentication failures [preauth]
|
||||
Mar 25 07:45:29 pineapple sshd[87808]: Invalid user oracle from 118.161.193.40 port 54563
|
||||
Mar 25 07:45:29 pineapple sshd[87808]: error: maximum authentication attempts exceeded for invalid user oracle from 118.161.193.40 port 54563 ssh2 [preauth]
|
||||
Mar 25 07:45:29 pineapple sshd[87808]: Disconnecting invalid user oracle 118.161.193.40 port 54563: Too many authentication failures [preauth]
|
||||
Mar 25 07:45:44 pineapple sshd[88058]: Invalid user sFTPUser from 118.161.193.40 port 54598
|
||||
```
|
||||
|
||||
See also https://forums.freebsd.org/threads/howto-set-up-and-configure-security-sshguard-pf.39196/
|
||||
|
||||
## User management
|
||||
|
||||
### Set default shell
|
||||
|
||||
For existing users, use the chsh command (“change shell”):
|
||||
|
||||
```
|
||||
chsh -s SHELL USER
|
||||
chsh -s /usr/local/bin/bash root
|
||||
```
|
||||
For future users:
|
||||
|
||||
Edit `/etc/pw.conf` defaultshell keywords
|
||||
When use `adduser()`, choose necessary shell
|
||||
|
||||
### Add new group and add user to group
|
||||
|
||||
```
|
||||
root@pineapple:/home/jerry # pw group add ssh
|
||||
root@pineapple:/home/jerry # pw user mod jerry -G wheel,ssh,jerry
|
||||
root@pineapple:/home/jerry # groups jerry
|
||||
jerry wheel jerry ssh
|
||||
```
|
||||
|
||||
### Changing user information (interactive)
|
||||
|
||||
`chfn`
|
||||
or
|
||||
`chpass`
|
||||
|
||||
## Securing
|
||||
|
||||
* <https://fleximus.org/howto/secure-freebsd>
|
||||
|
||||
## Networking
|
||||
|
||||
* <https://www.cyberciti.biz/faq/freebsd-unix-force-dhcp-client-to-get-a-new-lease/>
|
||||
|
||||
## Hardware info
|
||||
|
||||
<https://www.cyberciti.biz/tips/freebsd-display-information-about-the-system.html>
|
||||
|
||||
* `dmidecode`
|
||||
* `sysctl -a hw.model`
|
||||
* `uname -mrs`
|
||||
* `pciconf -lv`
|
||||
* `usbconfig`
|
||||
* `camcontrol devlist`
|
||||
|
||||
Disk
|
||||
|
||||
<https://linuxhint.com/list-disks-freebsd/>
|
||||
|
||||
* `geom disk list`
|
||||
* `sysctl kern.disks`
|
||||
* `gpart show ada0`
|
||||
|
||||
# Jails on ZFS
|
||||
|
||||
We run Jails on ZFS subvolumes to easily create, destory and manage the jails
|
||||
|
||||
See also https://docs.freebsd.org/en/books/handbook/jails/
|
||||
|
||||
```
|
||||
zfs create zpool/jails
|
||||
zfs set mountpoint=/data/jails zpool/jails
|
||||
zfs create zpool/jails/<jailname>
|
||||
```
|
||||
|
||||
Create `/etc/jail.conf` (see `man jail.conf`)
|
||||
|
||||
```
|
||||
# Typical static defaults:
|
||||
# Use the rc scripts to start and stop jails. Mount jail's /dev.
|
||||
exec.start = "/bin/sh /etc/rc";
|
||||
exec.stop = "/bin/sh /etc/rc.shutdown jail";
|
||||
exec.clean;
|
||||
mount.devfs;
|
||||
|
||||
# Dynamic wildcard parameter:
|
||||
# Base the path off the jail name.
|
||||
path = "/data/jails/$name";
|
||||
|
||||
gitea {
|
||||
ip4.addr = 192.168.2.200;
|
||||
}
|
||||
```
|
||||
|
||||
Enable jail service `/etc/rc.conf`
|
||||
```
|
||||
jail_enable="YES"
|
||||
```
|
||||
|
||||
Use `bsdinstall` to download a FreeBSD installation. NOTE for installation FTP client (proxy) must be allowed in the firewall. Or a HTTP mirror must be selected...
|
||||
|
||||
```
|
||||
# bsdinstall jail /here/is/the/jail
|
||||
```
|
||||
|
||||
Start all jails or single
|
||||
```
|
||||
service jail start
|
||||
service jail start <jailname>
|
||||
```
|
||||
|
||||
Don't forget to install SSH for easy management to the jail (instead of chrooting into the folder)
|
||||
|
||||
```
|
||||
chroot /here/is/the/jail
|
||||
pkg install ssh
|
||||
```
|
||||
|
||||
Enable ssh in `/etc/rc.conf`
|
||||
```
|
||||
sshd_enable="YES"
|
||||
```
|
||||
|
||||
```
|
||||
vi /etc/ssh/sshd_config
|
||||
# change the PermitRootLogin line to "yes" and remove the comment sign at the start
|
||||
sysrc sshd_enable="YES"
|
||||
service sshd start
|
||||
passwd
|
||||
# enter root password for your jail's root user
|
||||
```
|
||||
|
||||
Restart jail
|
||||
|
||||
```
|
||||
service jail restart <jailname>
|
||||
```
|
||||
|
||||
# PF firewall enable FTP client using ftpproxy
|
||||
|
||||
Install ftp proxy
|
||||
|
||||
```
|
||||
pkg install ftpproxy
|
||||
```
|
||||
|
||||
@ -1,15 +0,0 @@
|
||||
# GrowAndGoBox
|
||||
|
||||
* Ledstrips
|
||||
* White, Blue and Red (1:1:1) approximate
|
||||
* Powersupply
|
||||
* Timer (e.g Philips Hue Smartplug)
|
||||
* Thermometer
|
||||
* Plant sprayer
|
||||
* Seedling tray
|
||||
* Transparant plastic box with lid
|
||||
* Potting mix
|
||||
* Vermiculite
|
||||
* Sifted sand
|
||||
* Cocopeat sifted
|
||||
* PC fan
|
||||
@ -1,9 +0,0 @@
|
||||
# Hop supply '22
|
||||
|
||||
* Cascade 6.6% (old) few handfulls -> Aromahop
|
||||
* East kent golding UK ~5.46% 125gr (nieuw) -> Aromahop
|
||||
* Opal 5.3% 125gr (nieuw) -> Aromahop
|
||||
* Citra 12.8% 80gr -> Aromahop
|
||||
* [Target](https://www.britishhops.org.uk/varieties/target/) 10.4% 250 gr pellets -> Dual hop
|
||||
* [El dorado](https://beermaverick.com/hop/el-dorado/) 11,7% 250 gr pellets -> Dual hop
|
||||
* [Amarillo](https://beermaverick.com/hop/amarillo/) 9% 250 gr pellets -> Aroma hop
|
||||
@ -1,19 +0,0 @@
|
||||
Praatgroep dec ’22
|
||||
|
||||
* Voorstel keer informele stadswandeling te doen in de lente/zomer met lunch/drankje
|
||||
|
||||
Takenpakketten
|
||||
|
||||
Laura
|
||||
- voorzitter bijeenkomst
|
||||
- Contactpunt nieuwe aanmeldingen
|
||||
|
||||
Jerry
|
||||
- contact Zelfhulpnetwerk
|
||||
- In oktober plannen ism Zelfhulpnetwerk voor volgend jaar
|
||||
- Voorbereiding thema
|
||||
- Aankondiging week van te voren op app dat er een bijeenkomst is
|
||||
- Aanspreekpunt groeps genoten/zorgen dat “het loopt”
|
||||
|
||||
|
||||
|
||||
|
Before Width: | Height: | Size: 152 KiB After Width: | Height: | Size: 131 B |
@ -1,461 +0,0 @@
|
||||
# Dorpstraat server
|
||||
|
||||
Oude NAS/Server mini-itx computer
|
||||
|
||||
- Mainboard: Gigabyte Technology Co., Ltd. D525TUD
|
||||
- CPU: Intel(R) Atom(TM) CPU D525 Dualcore 1.8 GHz
|
||||
- Mem: 2x 2GB DDR3 800 MHz
|
||||
- Voeding: 350watt
|
||||
- USB 2 meerdere aansluitingen
|
||||
- LAN Netwerk aansluiting Realtek RTL8111E chip (10/100/1000 Mbit)
|
||||
- 4 SATA aansluitigen (3GB/s SATA II)
|
||||
- 1x PCI slot met netwerk extra netwerkkaart
|
||||
|
||||
Zonder harddisk en besturingsysteem geleverd, maar kan met een 320GB oudere harddisk geleverd worden geinstalleerd met een Opensource besturingssysteem naar keuze. B.v FreeNAS, Fedora, Linux Mint.
|
||||
|
||||
```
|
||||
root@dorpstraat:/home/jerry# /usr/sbin/dmidecode
|
||||
# dmidecode 3.2
|
||||
Getting SMBIOS data from sysfs.
|
||||
SMBIOS 2.4 present.
|
||||
37 structures occupying 1160 bytes.
|
||||
Table at 0x000F0100.
|
||||
|
||||
Handle 0x0000, DMI type 0, 24 bytes
|
||||
BIOS Information
|
||||
Vendor: Award Software International, Inc.
|
||||
Version: F5
|
||||
Release Date: 06/20/2011
|
||||
Address: 0xE0000
|
||||
Runtime Size: 128 kB
|
||||
ROM Size: 512 kB
|
||||
Characteristics:
|
||||
PCI is supported
|
||||
PNP is supported
|
||||
APM is supported
|
||||
BIOS is upgradeable
|
||||
BIOS shadowing is allowed
|
||||
Boot from CD is supported
|
||||
Selectable boot is supported
|
||||
EDD is supported
|
||||
5.25"/360 kB floppy services are supported (int 13h)
|
||||
5.25"/1.2 MB floppy services are supported (int 13h)
|
||||
3.5"/720 kB floppy services are supported (int 13h)
|
||||
3.5"/2.88 MB floppy services are supported (int 13h)
|
||||
Print screen service is supported (int 5h)
|
||||
8042 keyboard services are supported (int 9h)
|
||||
Serial services are supported (int 14h)
|
||||
Printer services are supported (int 17h)
|
||||
CGA/mono video services are supported (int 10h)
|
||||
ACPI is supported
|
||||
USB legacy is supported
|
||||
LS-120 boot is supported
|
||||
ATAPI Zip drive boot is supported
|
||||
BIOS boot specification is supported
|
||||
Targeted content distribution is supported
|
||||
|
||||
Handle 0x0001, DMI type 1, 27 bytes
|
||||
System Information
|
||||
Manufacturer: Gigabyte Technology Co., Ltd.
|
||||
Product Name: D525TUD
|
||||
Version:
|
||||
Serial Number:
|
||||
UUID: 00000000-0000-0000-0000-50e549d8c3e1
|
||||
Wake-up Type: Power Switch
|
||||
SKU Number:
|
||||
Family:
|
||||
|
||||
Handle 0x0002, DMI type 2, 8 bytes
|
||||
Base Board Information
|
||||
Manufacturer: Gigabyte Technology Co., Ltd.
|
||||
Product Name: D525TUD
|
||||
Version: x.x
|
||||
Serial Number:
|
||||
|
||||
Handle 0x0003, DMI type 3, 17 bytes
|
||||
Chassis Information
|
||||
Manufacturer: Gigabyte Technology Co., Ltd.
|
||||
Type: Desktop
|
||||
Lock: Not Present
|
||||
Version:
|
||||
Serial Number:
|
||||
Asset Tag:
|
||||
Boot-up State: Unknown
|
||||
Power Supply State: Unknown
|
||||
Thermal State: Unknown
|
||||
Security Status: Unknown
|
||||
OEM Information: 0x00000000
|
||||
|
||||
Handle 0x0004, DMI type 4, 35 bytes
|
||||
Processor Information
|
||||
Socket Designation: Socket 775
|
||||
Type: Central Processor
|
||||
Family: Other
|
||||
Manufacturer: Intel
|
||||
ID: CA 06 01 00 FF FB EB BF
|
||||
Version: Intel(R) Atom(TM) CPU D525
|
||||
Voltage: 1.0 V
|
||||
External Clock: 200 MHz
|
||||
Max Speed: 4000 MHz
|
||||
Current Speed: 1800 MHz
|
||||
Status: Populated, Enabled
|
||||
Upgrade: Socket 478
|
||||
L1 Cache Handle: 0x000A
|
||||
L2 Cache Handle: 0x000B
|
||||
L3 Cache Handle: Not Provided
|
||||
Serial Number:
|
||||
Asset Tag:
|
||||
Part Number:
|
||||
|
||||
Handle 0x0005, DMI type 5, 24 bytes
|
||||
Memory Controller Information
|
||||
Error Detecting Method: 8-bit Parity
|
||||
Error Correcting Capabilities:
|
||||
None
|
||||
Supported Interleave: One-way Interleave
|
||||
Current Interleave: One-way Interleave
|
||||
Maximum Memory Module Size: 1024 MB
|
||||
Maximum Total Memory Size: 4096 MB
|
||||
Supported Speeds:
|
||||
Other
|
||||
Supported Memory Types:
|
||||
Other
|
||||
Memory Module Voltage: 5.0 V
|
||||
Associated Memory Slots: 4
|
||||
0x0006
|
||||
0x0007
|
||||
0x0008
|
||||
0x0009
|
||||
Enabled Error Correcting Capabilities:
|
||||
None
|
||||
|
||||
Handle 0x0006, DMI type 6, 12 bytes
|
||||
Memory Module Information
|
||||
Socket Designation: A0
|
||||
Bank Connections: 1
|
||||
Current Speed: Unknown
|
||||
Type: Other
|
||||
Installed Size: 2048 MB (Single-bank Connection)
|
||||
Enabled Size: 2048 MB (Single-bank Connection)
|
||||
Error Status: OK
|
||||
|
||||
Handle 0x0007, DMI type 6, 12 bytes
|
||||
Memory Module Information
|
||||
Socket Designation: A1
|
||||
Bank Connections: 2
|
||||
Current Speed: Unknown
|
||||
Type: Other
|
||||
Installed Size: 2048 MB (Single-bank Connection)
|
||||
Enabled Size: 2048 MB (Single-bank Connection)
|
||||
Error Status: OK
|
||||
|
||||
Handle 0x0008, DMI type 6, 12 bytes
|
||||
Memory Module Information
|
||||
Socket Designation: A2
|
||||
Bank Connections: 3
|
||||
Current Speed: Unknown
|
||||
Type: Unknown
|
||||
Installed Size: Not Installed
|
||||
Enabled Size: Not Installed
|
||||
Error Status: OK
|
||||
|
||||
Handle 0x0009, DMI type 6, 12 bytes
|
||||
Memory Module Information
|
||||
Socket Designation: A3
|
||||
Bank Connections: 4
|
||||
Current Speed: Unknown
|
||||
Type: Unknown
|
||||
Installed Size: Not Installed
|
||||
Enabled Size: Not Installed
|
||||
Error Status: OK
|
||||
|
||||
Handle 0x000A, DMI type 7, 19 bytes
|
||||
Cache Information
|
||||
Socket Designation: Internal Cache
|
||||
Configuration: Enabled, Not Socketed, Level 1
|
||||
Operational Mode: Write Back
|
||||
Location: Internal
|
||||
Installed Size: 56 kB
|
||||
Maximum Size: 56 kB
|
||||
Supported SRAM Types:
|
||||
Synchronous
|
||||
Installed SRAM Type: Synchronous
|
||||
Speed: Unknown
|
||||
Error Correction Type: Unknown
|
||||
System Type: Unknown
|
||||
Associativity: Unknown
|
||||
|
||||
Handle 0x000B, DMI type 7, 19 bytes
|
||||
Cache Information
|
||||
Socket Designation: External Cache
|
||||
Configuration: Enabled, Not Socketed, Level 2
|
||||
Operational Mode: Write Back
|
||||
Location: Internal
|
||||
Installed Size: 512 kB
|
||||
Maximum Size: 2048 kB
|
||||
Supported SRAM Types:
|
||||
Synchronous
|
||||
Installed SRAM Type: Synchronous
|
||||
Speed: Unknown
|
||||
Error Correction Type: Unknown
|
||||
System Type: Unknown
|
||||
Associativity: Unknown
|
||||
|
||||
Handle 0x000C, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: PRIMARY IDE
|
||||
Internal Connector Type: On Board IDE
|
||||
External Reference Designator:
|
||||
External Connector Type: None
|
||||
Port Type: Other
|
||||
|
||||
Handle 0x000D, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: SECONDARY IDE
|
||||
Internal Connector Type: On Board IDE
|
||||
External Reference Designator:
|
||||
External Connector Type: None
|
||||
Port Type: Other
|
||||
|
||||
Handle 0x000E, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: FDD
|
||||
Internal Connector Type: On Board Floppy
|
||||
External Reference Designator:
|
||||
External Connector Type: None
|
||||
Port Type: 8251 FIFO Compatible
|
||||
|
||||
Handle 0x000F, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: COM1
|
||||
Internal Connector Type: 9 Pin Dual Inline (pin 10 cut)
|
||||
External Reference Designator:
|
||||
External Connector Type: DB-9 male
|
||||
Port Type: Serial Port 16450 Compatible
|
||||
|
||||
Handle 0x0010, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: COM2
|
||||
Internal Connector Type: 9 Pin Dual Inline (pin 10 cut)
|
||||
External Reference Designator:
|
||||
External Connector Type: DB-9 male
|
||||
Port Type: Serial Port 16450 Compatible
|
||||
|
||||
Handle 0x0011, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: LPT1
|
||||
Internal Connector Type: DB-25 female
|
||||
External Reference Designator:
|
||||
External Connector Type: DB-25 female
|
||||
Port Type: Parallel Port ECP/EPP
|
||||
|
||||
Handle 0x0012, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: Keyboard
|
||||
Internal Connector Type: Other
|
||||
External Reference Designator:
|
||||
External Connector Type: PS/2
|
||||
Port Type: Keyboard Port
|
||||
|
||||
Handle 0x0013, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: PS/2 Mouse
|
||||
Internal Connector Type: PS/2
|
||||
External Reference Designator: No Detected
|
||||
External Connector Type: PS/2
|
||||
Port Type: Mouse Port
|
||||
|
||||
Handle 0x0014, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: USB
|
||||
Internal Connector Type: None
|
||||
External Reference Designator:
|
||||
External Connector Type: Access Bus (USB)
|
||||
Port Type: USB
|
||||
|
||||
Handle 0x0015, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: USB
|
||||
Internal Connector Type: None
|
||||
External Reference Designator:
|
||||
External Connector Type: Access Bus (USB)
|
||||
Port Type: USB
|
||||
|
||||
Handle 0x0016, DMI type 9, 13 bytes
|
||||
System Slot Information
|
||||
Designation: PCI
|
||||
Type: 32-bit PCI
|
||||
Current Usage: In Use
|
||||
Length: Long
|
||||
ID: 0
|
||||
Characteristics:
|
||||
5.0 V is provided
|
||||
3.3 V is provided
|
||||
PME signal is supported
|
||||
SMBus signal is supported
|
||||
|
||||
Handle 0x0017, DMI type 13, 22 bytes
|
||||
BIOS Language Information
|
||||
Language Description Format: Long
|
||||
Installable Languages: 3
|
||||
n|US|iso8859-1
|
||||
n|US|iso8859-1
|
||||
r|CA|iso8859-1
|
||||
Currently Installed Language: n|US|iso8859-1
|
||||
|
||||
Handle 0x0018, DMI type 16, 15 bytes
|
||||
Physical Memory Array
|
||||
Location: System Board Or Motherboard
|
||||
Use: System Memory
|
||||
Error Correction Type: None
|
||||
Maximum Capacity: 32 GB
|
||||
Error Information Handle: Not Provided
|
||||
Number Of Devices: 4
|
||||
|
||||
Handle 0x0019, DMI type 17, 27 bytes
|
||||
Memory Device
|
||||
Array Handle: 0x0018
|
||||
Error Information Handle: Not Provided
|
||||
Total Width: 256 bits
|
||||
Data Width: 226 bits
|
||||
Size: 2048 MB
|
||||
Form Factor: DIMM
|
||||
Set: None
|
||||
Locator: A0
|
||||
Bank Locator: Bank0/1
|
||||
Type: Unknown
|
||||
Type Detail: None
|
||||
Speed: 400 MT/s
|
||||
Manufacturer:
|
||||
Serial Number:
|
||||
Asset Tag:
|
||||
Part Number:
|
||||
|
||||
Handle 0x001A, DMI type 17, 27 bytes
|
||||
Memory Device
|
||||
Array Handle: 0x0018
|
||||
Error Information Handle: Not Provided
|
||||
Total Width: 256 bits
|
||||
Data Width: 226 bits
|
||||
Size: 2048 MB
|
||||
Form Factor: DIMM
|
||||
Set: None
|
||||
Locator: A1
|
||||
Bank Locator: Bank2/3
|
||||
Type: Unknown
|
||||
Type Detail: None
|
||||
Speed: 400 MT/s
|
||||
Manufacturer:
|
||||
Serial Number:
|
||||
Asset Tag:
|
||||
Part Number:
|
||||
|
||||
Handle 0x001B, DMI type 17, 27 bytes
|
||||
Memory Device
|
||||
Array Handle: 0x0018
|
||||
Error Information Handle: Not Provided
|
||||
Total Width: Unknown
|
||||
Data Width: Unknown
|
||||
Size: No Module Installed
|
||||
Form Factor: DIMM
|
||||
Set: None
|
||||
Locator: A2
|
||||
Bank Locator: Bank4/5
|
||||
Type: Unknown
|
||||
Type Detail: None
|
||||
Speed: Unknown
|
||||
Manufacturer:
|
||||
Serial Number:
|
||||
Asset Tag:
|
||||
Part Number:
|
||||
|
||||
Handle 0x001C, DMI type 17, 27 bytes
|
||||
Memory Device
|
||||
Array Handle: 0x0018
|
||||
Error Information Handle: Not Provided
|
||||
Total Width: Unknown
|
||||
Data Width: Unknown
|
||||
Size: No Module Installed
|
||||
Form Factor: DIMM
|
||||
Set: None
|
||||
Locator: A3
|
||||
Bank Locator: Bank6/7
|
||||
Type: Unknown
|
||||
Type Detail: None
|
||||
Speed: Unknown
|
||||
Manufacturer:
|
||||
Serial Number:
|
||||
Asset Tag:
|
||||
Part Number:
|
||||
|
||||
Handle 0x001D, DMI type 19, 15 bytes
|
||||
Memory Array Mapped Address
|
||||
Starting Address: 0x00000000000
|
||||
Ending Address: 0x000FFFFFFFF
|
||||
Range Size: 4 GB
|
||||
Physical Array Handle: 0x0018
|
||||
Partition Width: 1
|
||||
|
||||
Handle 0x001E, DMI type 20, 19 bytes
|
||||
Memory Device Mapped Address
|
||||
Starting Address: 0x00000000000
|
||||
Ending Address: 0x0007FFFFFFF
|
||||
Range Size: 2 GB
|
||||
Physical Device Handle: 0x0019
|
||||
Memory Array Mapped Address Handle: 0x001D
|
||||
Partition Row Position: 1
|
||||
|
||||
Handle 0x001F, DMI type 20, 19 bytes
|
||||
Memory Device Mapped Address
|
||||
Starting Address: 0x00080000000
|
||||
Ending Address: 0x000FFFFFFFF
|
||||
Range Size: 2 GB
|
||||
Physical Device Handle: 0x001A
|
||||
Memory Array Mapped Address Handle: 0x001D
|
||||
Partition Row Position: 1
|
||||
|
||||
Handle 0x0020, DMI type 20, 19 bytes
|
||||
Memory Device Mapped Address
|
||||
Starting Address: 0x00000000000
|
||||
Ending Address: 0x000000003FF
|
||||
Range Size: 1 kB
|
||||
Physical Device Handle: 0x001B
|
||||
Memory Array Mapped Address Handle: 0x001D
|
||||
Partition Row Position: 1
|
||||
|
||||
Handle 0x0021, DMI type 20, 19 bytes
|
||||
Memory Device Mapped Address
|
||||
Starting Address: 0x00000000000
|
||||
Ending Address: 0x000000003FF
|
||||
Range Size: 1 kB
|
||||
Physical Device Handle: 0x001C
|
||||
Memory Array Mapped Address Handle: 0x001D
|
||||
Partition Row Position: 1
|
||||
|
||||
Handle 0x0022, DMI type 32, 11 bytes
|
||||
System Boot Information
|
||||
Status: No errors detected
|
||||
|
||||
Handle 0x0023, DMI type 64, 13 bytes
|
||||
Unknown Type
|
||||
Header and Data:
|
||||
40 0D 23 00 FF FF FF FF FF FF FF FF FF
|
||||
Strings:
|
||||
|
||||
|
||||
Handle 0x0024, DMI type 127, 4 bytes
|
||||
End Of Table
|
||||
```
|
||||
|
||||
```
|
||||
Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
|
||||
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
|
||||
Bus 003 Device 002: ID 046d:c316 Logitech, Inc. HID-Compliant Keyboard
|
||||
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
|
||||
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
|
||||
Bus 001 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
|
||||
```
|
||||
|
||||
```
|
||||
Intel(R) Atom(TM) CPU D525 @ 1.80GHz
|
||||
```
|
||||
|
Before Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 144 KiB After Width: | Height: | Size: 131 B |
|
Before Width: | Height: | Size: 221 KiB |
|
Before Width: | Height: | Size: 242 KiB |
|
Before Width: | Height: | Size: 95 KiB |
@ -1,23 +0,0 @@
|
||||
{\rtf1\ansi\ansicpg1252\cocoartf2639
|
||||
\cocoatextscaling0\cocoaplatform0{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
|
||||
{\colortbl;\red255\green255\blue255;}
|
||||
{\*\expandedcolortbl;;}
|
||||
\paperw11900\paperh16840\margl1440\margr1440\vieww20400\viewh15380\viewkind0
|
||||
\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\pardirnatural\partightenfactor0
|
||||
|
||||
\f0\fs24 \cf0 5375 gr castle malting ch\'e2teau Pilsen 6 3-3.5 EBC\
|
||||
500gr dark crystal Thomas Fawcett & sons 320 ebc\
|
||||
500gr carared weijerman 50 ebc\
|
||||
425gr carahell weijerman 30 ebc\
|
||||
350gr rolled oats\
|
||||
\
|
||||
33 liter fermenter\
|
||||
\
|
||||
\
|
||||
\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\partightenfactor0
|
||||
\cf0 {{\NeXTGraphic Screenshot 2022-12-02 at 13.10.24.png \width10000 \height8140 \appleattachmentpadding0 \appleembedtype0 \appleaqc
|
||||
}<7D>}\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\partightenfactor0
|
||||
\cf0 {{\NeXTGraphic Screenshot 2022-12-02 at 13.10.15.png \width19580 \height10480 \appleattachmentpadding0 \appleembedtype0 \appleaqc
|
||||
}<7D>}\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\partightenfactor0
|
||||
\cf0 {{\NeXTGraphic Screenshot 2022-12-02 at 13.10.05.png \width19740 \height9800 \appleattachmentpadding0 \appleembedtype0 \appleaqc
|
||||
}<7D>}}
|
||||
|
Before Width: | Height: | Size: 253 KiB After Width: | Height: | Size: 131 B |
|
Before Width: | Height: | Size: 1.4 MiB After Width: | Height: | Size: 132 B |
|
Before Width: | Height: | Size: 75 KiB After Width: | Height: | Size: 130 B |
BIN
2022/euro-dollar-koers-20220908_04_45-manic-hypomanie.png
(Stored with Git LFS)
Normal file
|
Before Width: | Height: | Size: 160 KiB |
|
Before Width: | Height: | Size: 539 KiB After Width: | Height: | Size: 131 B |
|
Before Width: | Height: | Size: 181 KiB After Width: | Height: | Size: 131 B |
|
Before Width: | Height: | Size: 300 KiB After Width: | Height: | Size: 131 B |
|
Before Width: | Height: | Size: 58 KiB |
|
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 130 B |