This report ranks ten open‑weight, self‑hostable multimodal models that are especially strong for (a) systems engineering tasks (design reviews, debugging, log/trace reasoning, incident triage, reading diagrams/docs/UI screenshots, tool-using agents) and (b) Rust programming (ownership/lifetimes, unsafe correctness, concurrency, performance engineering, refactors with tests). The ranking emphasizes **coding + agentic SWE
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
| pid_file "/tmp/odyssey.pid" | |
| daemonize yes | |
| unix_socket_dir "/tmp" | |
| unix_socket_mode "0644" | |
| log_format "%p %t %l [%i %s] (%c) %m\n" | |
| log_syslog yes | |
| log_syslog_ident "odyssey" | |
| log_syslog_facility "daemon" | |
| log_debug no | |
| log_config yes |
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
| No | Name | Code | |
|---|---|---|---|
| 1 | Allo Bank (Bank Harda) | 567 | |
| 2 | American Express Bank LTD | 30 | |
| 3 | Anglomas Internasional Bank | 531 | |
| 4 | Bank ABN AMRO | 52 | |
| 5 | Bank Agris (Bank Finconesia) | 945 | |
| 6 | Bank Akita | 525 | |
| 7 | Bank Aladin Syariah (Bank Maybank Indocorp) | 947 | |
| 8 | Bank AntarDaerah | 88 | |
| 9 | Bank ANZ Indonesia | 61 |
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
| # Created by https://www.toptal.com/developers/gitignore/api/visualstudio,visualstudiocode,vim,monodevelop,dotnetcore,aspnetcore,node,unity,rust,jetbrains+all,python,pycharm+all | |
| # Edit at https://www.toptal.com/developers/gitignore?templates=visualstudio,visualstudiocode,vim,monodevelop,dotnetcore,aspnetcore,node,unity,rust,jetbrains+all,python,pycharm+all | |
| ### ASPNETCore ### | |
| ## Ignore Visual Studio temporary files, build results, and | |
| ## files generated by popular Visual Studio add-ons. | |
| # User-specific files | |
| *.suo | |
| *.user |
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
| [workspace] | |
| members = [ | |
| "app0", | |
| "lib0", | |
| ] | |
| [profile.dev] | |
| opt-level = 0 | |
| debug = true | |
| rpath = false |
sudo apt update && sudo apt install autoconf automake libtool curl make g++ unzip -y
git clone --recursive git@github.com:protocolbuffers/protobuf.git
cd protobuf
git checkout v3.11.4 && git checkout -b release/v3.11.4
./autogen.sh
./configure
make
make check
sudo make install
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
| #!/usr/bin/env bash | |
| git clean -ffdx && git submodule foreach --recursive git clean -ffdx |
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
| [target.'cfg(any(unix, windows))'] | |
| rustflags = [ | |
| "-C", "lto=fat", | |
| "-C", "link-args=-s", | |
| "--emit=asm", | |
| ] | |
| [target.'cfg(target_os = macos)'] | |
| rustflags = [ | |
| "-C", "link-arg=-undefined", |
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
| #!/usr/bin/env python3.7 | |
| import signal | |
| import sys | |
| import json | |
| import logging | |
| import time | |
| import multiprocessing as mp | |
| import multiprocessing.connection as mp_conn |
NewerOlder