Skip to content

Instantly share code, notes, and snippets.

View bilalobe's full-sized avatar
😇

BILAL ELKHATABI bilalobe

😇
  • 07:11 (UTC -12:00)
View GitHub Profile
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
<!-- 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>
@bilalobe
bilalobe / fibonacci.go
Created June 11, 2024 18:26
lake mead marina boat fire
package main
func fibonacci(n int) int {
a, b := 0, 1
for i := 0; i < n; i++ {
a, b = b, a+b
}
return a
}