LGL Team
Kanalga Telegram’da o‘tish
Welcome to the channel, here you can find useful open source projects. Feel free to share to other channels/groups with credits Warning ⚠️: All the things done or shared here are for educational purposes only . Join @vpsdeal for best server reals
Ko'proq ko'rsatish6 275
Obunachilar
+824 soatlar
+167 kunlar
+9130 kunlar
Ma'lumot yuklanmoqda...
O'xshash kanallar
Taglar buluti
Kirish va chiqish esdaliklari
---
---
---
---
---
---
Obunachilarni jalb qilish
Iyul '26
Iyul '26
+158
1 kanalda
Iyun '26
+208
1 kanalda
Get PRO
May '26
+186
0 kanalda
Get PRO
Aprel '26
+133
0 kanalda
Get PRO
Mart '26
+58
0 kanalda
Get PRO
Fevral '26
+90
0 kanalda
Get PRO
Yanvar '26
+100
0 kanalda
Get PRO
Dekabr '25
+80
1 kanalda
Get PRO
Noyabr '25
+64
0 kanalda
Get PRO
Oktabr '25
+89
1 kanalda
Get PRO
Sentabr '25
+50
1 kanalda
Get PRO
Avgust '25
+62
0 kanalda
Get PRO
Iyul '25
+63
0 kanalda
Get PRO
Iyun '25
+38
0 kanalda
Get PRO
May '25
+57
0 kanalda
Get PRO
Aprel '25
+46
0 kanalda
Get PRO
Mart '25
+74
0 kanalda
Get PRO
Fevral '25
+54
1 kanalda
Get PRO
Yanvar '25
+96
1 kanalda
Get PRO
Dekabr '24
+322
3 kanalda
Get PRO
Noyabr '24
+480
0 kanalda
Get PRO
Oktabr '24
+965
1 kanalda
Get PRO
Sentabr '24
+457
10 kanalda
Get PRO
Avgust '24
+237
0 kanalda
Get PRO
Iyul '24
+266
0 kanalda
Get PRO
Iyun '24
+689
0 kanalda
Get PRO
May '24
+455
0 kanalda
Get PRO
Aprel '24
+575
3 kanalda
Get PRO
Mart '24
+751
0 kanalda
Get PRO
Fevral '24
+201
0 kanalda
Get PRO
Yanvar '24
+240
0 kanalda
Get PRO
Dekabr '23
+323
5 kanalda
Get PRO
Noyabr '23
+210
0 kanalda
Get PRO
Oktabr '23
+201
3 kanalda
Get PRO
Sentabr '23
+171
0 kanalda
Get PRO
Avgust '23
+332
0 kanalda
Get PRO
Iyul '23
+322
0 kanalda
Get PRO
Iyun '23
+139
0 kanalda
Get PRO
May '23
+121
0 kanalda
Get PRO
Aprel '23
+86
0 kanalda
Get PRO
Mart '23
+120
0 kanalda
Get PRO
Fevral '23
+84
0 kanalda
Get PRO
Yanvar '23
+26
0 kanalda
Get PRO
Dekabr '22
+38
0 kanalda
Get PRO
Noyabr '22
+135
0 kanalda
Get PRO
Oktabr '22
+209
0 kanalda
Get PRO
Sentabr '22
+229
0 kanalda
Get PRO
Avgust '22
+192
0 kanalda
Get PRO
Iyul '22
+307
0 kanalda
Get PRO
Iyun '22
+121
0 kanalda
Get PRO
May '22
+159
0 kanalda
Get PRO
Aprel '22
+99
0 kanalda
Get PRO
Mart '22
+167
0 kanalda
Get PRO
Fevral '22
+267
0 kanalda
Get PRO
Yanvar '22
+201
0 kanalda
Get PRO
Dekabr '21
+274
0 kanalda
Get PRO
Noyabr '21
+895
0 kanalda
Get PRO
Oktabr '21
+92
0 kanalda
Get PRO
Sentabr '21
+37
0 kanalda
Get PRO
Avgust '21
+292
0 kanalda
| Sana | Obunachilarni jalb qilish | Esdaliklar | Kanallar | |
| 23 Iyul | +4 | |||
| 22 Iyul | +9 | |||
| 21 Iyul | +8 | |||
| 20 Iyul | +4 | |||
| 19 Iyul | +4 | |||
| 18 Iyul | +6 | |||
| 17 Iyul | +13 | |||
| 16 Iyul | +1 | |||
| 15 Iyul | +3 | |||
| 14 Iyul | +3 | |||
| 13 Iyul | +5 | |||
| 12 Iyul | +3 | |||
| 11 Iyul | +3 | |||
| 10 Iyul | +3 | |||
| 09 Iyul | +13 | |||
| 08 Iyul | +14 | |||
| 07 Iyul | +7 | |||
| 06 Iyul | +6 | |||
| 05 Iyul | +4 | |||
| 04 Iyul | +10 | |||
| 03 Iyul | +12 | |||
| 02 Iyul | +8 | |||
| 01 Iyul | +15 |
Kanal postlari
| 2 | Matn yo'q... | 386 |
| 3 | Test file | 1 102 |
| 4 | libimgui-test.so | 14 |
| 5 | Imgui Menu Without any hooks or memory read , Just a lib.so file | 1 139 |
| 6 | /** FNV-1a 64-bit hash. Tests: loops, long arithmetic, String method calls via JNI. */
@NativeImpl(library = "jniwrapper")
public long hashString(String text) {
long hash = -3750763034362895579L;
for (int i = 0; i < text.length(); i++) {
hash = hash ^ (long) text.charAt(i);
hash = hash * 1099511628211L;
}
return hash;
}
// ---------------------------------------------------------------------------
// Source: com.mk.jniwrapper.UserProcessor#hashString
// Mode: TRANSPILED from Java bytecode
// ---------------------------------------------------------------------------
JNIEXPORT jlong JNICALL __attribute__((weak))
Java_com_mk_jniwrapper_UserProcessor_hashString(JNIEnv* env, jobject thiz, jstring p0) {
jvalue _lo[5]; (void)_lo;
jvalue _st[4]; (void)_st;
jthrowable _exc = nullptr; (void)_exc;
static jclass _cls0 = (jclass) env->NewGlobalRef(env->FindClass("java/lang/String"));
static jmethodID _mid0 = env->GetMethodID(_cls0, "length", "()I");
static jmethodID _mid1 = env->GetMethodID(_cls0, "charAt", "(I)C");
if (env->PushLocalFrame(64) != 0) { return (jlong)0; }
_lo[0].l = thiz;
_lo[1].l = p0;
L0:;
_st[0].j = (jlong)-3750763034362895579LL;
_lo[2].j = _st[0].j;
L1:;
_st[0].i = 0;
_lo[4].i = _st[0].i;
L2:;
_st[0].i = _lo[4].i;
_st[1].l = _lo[1].l;
jvalue _args0[1];
_st[1].i = (jint)(env->CallIntMethodA(_st[1].l, _mid0, _args0));
if (env->ExceptionCheck()) {
env->PopLocalFrame(nullptr); return (jlong)0;
}
if (_st[0].i >= _st[1].i) goto L6;
L3:;
_st[0].j = _lo[2].j;
_st[1].l = _lo[1].l;
_st[2].i = _lo[4].i;
jvalue _args1[1];
_args1[0].i = _st[2].i;
_st[1].i = (jint)(env->CallCharMethodA(_st[1].l, _mid1, _args1));
if (env->ExceptionCheck()) {
env->PopLocalFrame(nullptr); return (jlong)0;
}
_st[1].j = (jlong)(_st[1].i);
_st[0].j = (_st[0].j ^ _st[1].j);
_lo[2].j = _st[0].j;
L4:;
_st[0].j = _lo[2].j;
_st[1].j = (jlong)1099511628211LL;
_st[0].j = (_st[0].j * _st[1].j);
_lo[2].j = _st[0].j;
L5:;
_lo[4].i += 1;
goto L2;
L6:;
_st[0].j = _lo[2].j;
env->PopLocalFrame(nullptr); return _st[0].j;
L7:;
} | 1 393 |
| 7 | I 've given this project to AI now with almost 200$ of Budget to spend, Lets see how can it do | 1 150 |
| 8 | Matn yo'q... | 31 |
| 9 | https://github.com/springmusk026/UnityRenderer.git
⚠️ Project Status: Early Stage
This project is in very early development. It is raw, minimally tested, and will have bugs. It has been tested on a limited number of devices and Unity versions.
If you encounter issues:
This is open source — fix it and submit a PR instead of complaining
Check the issues page first
Provide full logcat output when reporting crashes
Understand that IL2CPP internals vary between Unity versions — what works on one game may not work on another
No guarantees. No support promises. Contributions welcome. | 2 468 |
| 10 | New Project : UnityEngine Renderer based menu template.
With this you won't need to hassle with imgui and custom Renderer, just plug in and it works | 2 338 |
| 11 | https://neuroapi.me/signup?ref=D2KY2P7N
API,MCP for full web actions like scrape,search,map,crawl,+ manymore
(use my link for extra credit for both of us) | 3 295 |
| 12 | https://github.com/springmusk026/Open-Monitor-YT/tree/main
Open Monitor YT is a free, open-source alternative to paid YouTube monitoring tools. It scrapes competitor YouTube channels via Firecrawl, stores a full historical diff of every change, and runs an LLM analysis layer that turns raw data into actionable insights.
100% self-hosted. No cloud dependency. Your data stays on your machine. | 3 178 |
| 13 | Matn yo'q... | 3 077 |
| 14 | Android 17 is almost here? | 2 773 |
| 15 | https://chatgpt.com/codex/offers | 3 098 |
| 16 | 101'th reason not fo use windows | 2 712 |
| 17 | If you are using VPS from Oracle Free Tier, Backup your data urgently, they're changing policies and reducing limits so either you pay or they'll terminate your VM | 2 772 |
| 18 | hi anyone has a16 working virtual app project ? (open source) | 325 |
| 19 | OpenSource? | 3 506 |
| 20 | FFadv_68.54.0_0605_ID_newffadv3.apk | 3 262 |
