Skip to content

Instantly share code, notes, and snippets.

View mahdisml's full-sized avatar
🎮
Focusing

Mahdi Safarmohammadloo mahdisml

🎮
Focusing
View GitHub Profile
@mahdisml
mahdisml / Qwen3-MoE-Benchmarks.md
Created May 9, 2025 01:06 — forked from ubergarm/Qwen3-MoE-Benchmarks.md
Qwen3 235B and 30B MoE Quant Benchmarking Roundup

The Great Quant Wars of 2025

"All things leave behind them the Obscurity... and go forward to embrace the Brightness..." — Dao De Jing #42

tl;dr;

  • Q: Who provides the best GGUFs now?
  • A: They're all pretty good.

Skip down if you just want graphs and numbers comparing various Qwen3-30B-A3B GGUF quants.

{
"log": {
"access": "",
"error": "",
"loglevel": "none",
"dnsLog": false
},
"dns": {
"tag": "dns",
"hosts": {
@mahdisml
mahdisml / PrettyPrint.kt
Created August 26, 2023 15:24 — forked from mayankmkh/PrettyPrint.kt
Pretty Print Kotlin Data Class
fun Any.prettyPrint(): String {
var indentLevel = 0
val indentWidth = 4
fun padding() = "".padStart(indentLevel * indentWidth)
val toString = toString()
val stringBuilder = StringBuilder(toString.length)
@mahdisml
mahdisml / gist:b888dd6567209ce2203854c9b28895bf
Created July 28, 2023 22:19 — forked from phoenixperry/gist:6888925
Example of OnCollisionEnter in Unity in c# from Unity 3d Student
void OnCollisionEnter(Collision theCollision){
if(theCollision.gameObject.name == "Floor"){
Debug.Log("Hit the floor");
}else if(theCollision.gameObject.name == "Wall"){
Debug.Log("Hit the wall");
}