Recent content by 0cguboss

  1. 0cguboss

    Other Lightweight json library

    0cguboss submitted a new item: Lightweight json library - json Read more...
  2. 0cguboss

    Other Lightweight json library

    lightweight and efficient library for encoding Lua values into JSON strings and decoding JSON strings back into Lua data structures. It supports standard Lua types such as tables, numbers, strings, booleans, and nil Encoding Lua → JSON Converts Lua values to JSON format, handling tables (as...
  3. 0cguboss

    Other Lightweight clipboard library

    local clipboard = require("clipboard") -- assuming the module is saved as clipboard.lua -- Read text from the clipboard local text, err = clipboard.get() if text then print("Clipboard text:", text) else print("Error reading clipboard:", err) end -- Write text to the clipboard local ok...
  4. 0cguboss

    Other Lightweight clipboard library

    0cguboss submitted a new item: Lightweight clipboard library - clipboard Read more...
  5. 0cguboss

    Other Extended Vectors Module

    0cguboss submitted a new item: Extended Vectors Module - vectors Read more...
  6. 0cguboss

    Other Extended Vectors Module

    high-performance, versatile Lua library for advanced vector math operations, including component-wise arithmetic, normalization, projections, rotations, and more. --- Vector library supporting 2D, 3D, and 4D vectors with rich operations. -- Supports vector arithmetic, normalization, dot/cross...
  7. 0cguboss

    Other OOP Lightweight Network library

    This post has been approved by susyaw officials.
  8. 0cguboss

    Other OOP Lightweight Network library

    local Network = require("network") local net = Network.new("MyLuaAgent/1.0", 15000) -- user agent and timeout in ms -- Simple HTTP GET local body, err = net:http_get("https://httpbin.org/get") print(body or "Error: " .. err) -- Get headers local headers =...
  9. 0cguboss

    Other OOP Lightweight Network library

    0cguboss submitted a new item: OOP Lightweight Network library - Network Read more...
  10. 0cguboss

    Other OOP Lightweight File System

    local FileSystem = require("filesystem") local fs = FileSystem.new() -- Check existence print("Does 'test.txt' exist?", fs:exists("test.txt")) -- Create directory fs:create_dir("my_folder") -- Copy a file fs:copy_file("test.txt", "my_folder\\copy_test.txt") -- Move a file...
  11. 0cguboss

    Other OOP Lightweight File System

    0cguboss submitted a new item: OOP Lightweight File System - Filesystem Read more...
  12. 0cguboss

    This n1gga just really said nice uid

    This n1gga just really said nice uid
Back
Top