This file contains hidden or 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
beb@raspberrypi:~ $ sudo smartctl -a /dev/sda | |
smartctl 7.3 2022-02-28 r5338 [aarch64-linux-6.12.25+rpt-rpi-2712] (local build) | |
Copyright (C) 2002-22, Bruce Allen, Christian Franke, www.smartmontools.org | |
=== START OF INFORMATION SECTION === | |
Model Family: Seagate Constellation ES.3 | |
Device Model: ST4000NM0033-9ZM170 | |
Serial Number: S1Z1RX87 | |
LU WWN Device Id: 5 000c50 08cae6d2b | |
Firmware Version: EN07 |
This file contains hidden or 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
<!-- Generated by JetBrains ReSharper 2024.3.3 --><html> | |
<head> | |
<META http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<title>Errors/Warnings in Tinker</title> | |
<style> | |
dt { float: left; margin-right: 0.5em; } | |
dd { } | |
</style> | |
</head> | |
<body> |
This file contains hidden or 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
package main | |
func fibonacci(n int) int { | |
a, b := 0, 1 | |
for i := 0; i < n; i++ { | |
a, b = b, a+b | |
} | |
return a | |
} |