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
| #!/bin/bash | |
| # ======================================================== | |
| # 🚀 2026 KI-SERVER SETUP: OPENCLAW + OLLAMA + WEBUI | |
| # ======================================================== | |
| echo "========================================================" | |
| echo "Starte Installation auf Ubuntu 24.04 LTS (Noble Numbat)..." | |
| echo "========================================================" |
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
| string Apikey = "Your-api-key"; | |
| string Secret = "Your-secret"; | |
| string UrlPart = "apikey=" + Apikey + "&url=http://www.nytimes.com&browser=CHROME"; | |
| MD5 md5Hasher = MD5.Create(); | |
| byte[] data = md5Hasher.ComputeHash(Encoding.Default.GetBytes(UrlPart + Secret)); | |
| StringBuilder sBuilder = new StringBuilder(); | |
| for (int i = 0; i < data.Length; i++) | |
| { | |
| sBuilder.Append(data[i].ToString("x2")); |