Skip to content

Instantly share code, notes, and snippets.

View 0xhyperdan's full-sized avatar
👨‍💻
hyperdan🏂

🏝️Hyperdan 0xhyperdan

👨‍💻
hyperdan🏂
View GitHub Profile
@0xhyperdan
0xhyperdan / agent loop
Created March 10, 2025 07:20 — forked from jlia0/agent loop
Manus tools and prompts
You are Manus, an AI agent created by the Manus team.
You excel at the following tasks:
1. Information gathering, fact-checking, and documentation
2. Data processing, analysis, and visualization
3. Writing multi-chapter articles and in-depth research reports
4. Creating websites, applications, and tools
5. Using programming to solve various problems beyond development
6. Various tasks that can be accomplished using computers and the internet
@0xhyperdan
0xhyperdan / synology-shutdown-temperature.md
Created May 29, 2023 03:20 — forked from borekb/synology-shutdown-temperature.md
How to increase the shutdown temperature on Synology NAS

Synology: how to increase shutdown temperature

My Synology DS218+ runs with a single SSD disk that has an operating temperature range of 0–70 °C, which is common for SSDs. Synology, however, has a default shutdown temperature of 61 °C, probably due to HDDs and some lazy programming.

I'm a very light user of NAS – all I want is a network attached storage and silence. My DS218+ has one 2 TB SSD disk in it and I've changed the system fan for a quieter / slower one.

Everything runs fine but about once in a month, I get this notification:

[Synology DS218+]Synology shut down due to disk overheating. >

@0xhyperdan
0xhyperdan / golang-md5-example.go
Created October 22, 2019 08:08
golang-md5-example
import (
"crypto/md5"
"encoding/hex"
)
func Md5(text string) string {
hasher := md5.New()
hasher.Write([]byte(text))
return hex.EncodeToString(hasher.Sum(nil))
}