All public logs
From OnixOS
Combined display of all available logs of OnixOS. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 05:48, 3 June 2026 Tedaryum talk contribs blocked MediaWiki default talk contribs with an expiration time of indefinite (account creation disabled)
- 10:57, 8 May 2026 Tedaryum talk contribs created page OnixOS:Building From Scratch (Created page with "= Building OnixOS = This document covers the complete build lifecycle of the OnixOS Build System — from environment setup and package repository builds to ISO creation, syncing, Docker-based builds, and live build monitoring. __TOC__ == Prerequisites == The build system runs on '''Arch Linux''' (or an Arch-based environment). The following packages are required for ISO builds and are installed automatically by <code>build.py</code>: {| class="wikitable" ! Package...")
- 00:48, 13 April 2026 Tedaryum talk contribs protected Talk:Planet [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 00:48, 13 April 2026 Tedaryum talk contribs created page Talk:Planet (Created page with "-")
- 00:45, 13 April 2026 Tedaryum talk contribs created page Planet (Created page with "OnixOS Planet is an aggregator page that collects blog posts and updates from the OnixOS community, providing a centralized stream of developer content. <nowiki>https://planet.onix-project.com/</nowiki>") Tag: Visual edit
- 17:06, 28 March 2026 Tedaryum talk contribs created page Forum (Created page with "The official community forum for the Onix Project, where users can engage in discussions, share feedback, and access support resources, can be found at <nowiki>https://forum.onix-project.com/</nowiki>.") Tag: Visual edit
- 22:28, 11 March 2025 Tedaryum talk contribs protected OnixOS:Installation [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 17:27, 11 March 2025 Tedaryum talk contribs protected Documentation [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 17:08, 11 March 2025 Tedaryum talk contribs created page OnixOS talk:Package Management (Created blank page)
- 10:14, 11 August 2024 Tedaryum talk contribs created page File:OlangForNewbies-EN.pdf
- 10:14, 11 August 2024 Tedaryum talk contribs uploaded File:OlangForNewbies-EN.pdf
- 10:14, 11 August 2024 Tedaryum talk contribs created page File:OlangForNewbies-TR.pdf
- 10:14, 11 August 2024 Tedaryum talk contribs uploaded File:OlangForNewbies-TR.pdf
- 10:04, 11 August 2024 Tedaryum talk contribs created page OnixOS:Repositories (Created blank page)
- 10:04, 11 August 2024 Tedaryum talk contribs created page OnixOS:Package Management (Created blank page)
- 10:03, 11 August 2024 Tedaryum talk contribs created page OnixOS:Installation (Created blank page)
- 10:03, 11 August 2024 Tedaryum talk contribs created page OnixOS:Getting Started (Created blank page)
- 09:59, 11 August 2024 Tedaryum talk contribs created page File:Colorize terminal example.png
- 09:59, 11 August 2024 Tedaryum talk contribs uploaded File:Colorize terminal example.png
- 09:57, 11 August 2024 Tedaryum talk contribs created page Talk:Helpers (Created blank page)
- 09:57, 11 August 2024 Tedaryum talk contribs created page Helpers (Created page with "= XML Parser = The xmlp() function is used to parse the XML. It is extremely simple to use. Returns the result as a hash. <code>def result = (xmlp("test.xml")) output(result)</code> Output: <code>...xml content...</code> = URL Fetch/Extract = The urlfetch(<type (GET, POST)>, , ) and urlextract (, ) functions execute URL operations for data retrieval and destructor functions. urlfetch.ola: <code>def olang = (urlfetch("GET","<nowiki>http://o-lang.tk</nowiki>")) def...") Tag: Visual edit
- 09:57, 11 August 2024 Tedaryum talk contribs created page Talk:Database (Created blank page)
- 09:57, 11 August 2024 Tedaryum talk contribs created page Database (Created page with "= Models and Connections = How to make models, connections and migrations. Connections; First we need to define database connection; <code>def db = (database("dbtype","dbstring"))</code> Database type and Database strings are connection types. For example you need sqlite3 connection; <code>def db = (database("sqlite3","sqlite_database_example.db"))</code> Now ready to connect models and databases; <code>def modeldef = (model(db, "modelname", {....table definitions})...") Tag: Visual edit
- 09:56, 11 August 2024 Tedaryum talk contribs created page Talk:Dialers (Created blank page)
- 09:56, 11 August 2024 Tedaryum talk contribs created page Dialers (Created page with "Dialer functions can automatically initiate a socket or provide sockete access and automatically communicate over a socket. dial_serve.ola (dial serve example): <code>sock socket "tcp4" "9050" "0.0.0.0"; def messages = { "ping”: "pong”, "call”: "Calling… NOPE! :)”, "help”: "Not helpfull!” } sock_listen(socket, messages)</code> The 9050 port is ready to connect. dial_client.ol (dial client example): <code>sock socket "tcp4" "9050...") Tag: Visual edit
