DoubleD Software โ€” Official TG Channel
25 subscribers
8 photos
1 video
46 files
5 links
https://clynet.ru/
https://nexelang.pro/terminal/

This is an official DoubleDProd Software channel where I (Don Demon) will post news about updates of my soft like Invisible Encryption, NexeLang aka NXE, and much more. Feel free to join! ๐Ÿ’ซ
Download Telegram
Channel name was changed to ยซLeaGen Software โ€” Official TG Channelยป
image_2025-07-16_02-40-29.png
1.7 MB
Useful Scripts

This code will automatically include all the libraries located in the same directory as the program. You can create a file named prenx.ide in the same directory and insert this code there so that it runs every time before the program starts.

! Requires String.dll library:
https://github.com/don-demon/NexeLang/blob/main/Extensions/Strings.dll

! Requires version 918 or later:
https://github.com/don-demon/NexeLang/blob/main/Software/V3/918/NexeLang%20Terminal.exe
Useful Scripts

Password generator

! Requires rnd.dll library
! Requires version 10.07.00 or later

include: "rnd";

str passwd;
repeat (8) {
    passwd += rnd::gen("a" ' "z" + "A" ' "Z" + "0" ' "9");
}
out: "Password: ", passwd;
๐Ÿคฏ1
Useful Scripts

This script cycles through a list of predefined strings and types the next one each time you press Ctrl + B. To change phrases just edit phrases variable

! Requires kb.dll library
! Recommended version 10.20.82 or later


include: "kb"; // or `override include` if already included

list phrases = ["first", "second", "third", "..."];
int idx = 0;

trigger nextLineT = [
kb::pushed(["ctrl", "b"], 0, true),
{
kb::print(phrases[idx]);
idx = idx + 1;
if (idx >= list::len(phrases)) { idx = 0; }
}
];
โค1
TOS.exe
37.5 MB
Mini Language made with NexeLang interface concept. (maybe my future os for an android). Available commands now (v0.5beta):
- ls - list files and directories
- cls / clear - clear console
- pwd - print current directiry
- delete - delete
- edit <path> - edit file with notepad
- cd - change directory

Files available: boot.act - auto actions after entering console, shutdown, etc from tos/on directory

note: to registry a new user use: reg <username>, <password>. For example reg LGS, qwerty
note: alt+f4 to exit or "q"
image_2026-01-21_01-45-26.png
1.1 MB
Just finished custom operations, now if you'll need a few more math / logic / null-safe operations, you'll be able to add 'em
Channel name was changed to ยซDoubleDProd Software โ€” Official TG Channelยป
Channel name was changed to ยซDoubleD Software โ€” Official TG Channelยป