User contributions for Tedaryum
From OnixOS
11 March 2025
- 22:2822:28, 11 March 2025 diff hist 0 m OnixOS:Installation Protected "OnixOS:Installation" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) current
- 22:2822:28, 11 March 2025 diff hist +6 OnixOS:Installation No edit summary
- 17:2717:27, 11 March 2025 diff hist 0 m Documentation Protected "Documentation" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) current
- 17:2617:26, 11 March 2025 diff hist +609 OnixOS:Repositories No edit summary current
- 17:2417:24, 11 March 2025 diff hist +656 OnixOS:Getting Started No edit summary current
- 17:1917:19, 11 March 2025 diff hist +1,804 OnixOS:Installation No edit summary
- 17:0817:08, 11 March 2025 diff hist 0 N OnixOS talk:Package Management Created blank page current
- 17:0817:08, 11 March 2025 diff hist −1 OnixOS:Package Management No edit summary current
- 17:0617:06, 11 March 2025 diff hist −79 OnixOS:Package Management No edit summary
- 16:5216:52, 11 March 2025 diff hist +1,863 OnixOS:Package Management No edit summary
- 16:4316:43, 11 March 2025 diff hist +188 Main Page No edit summary current Tag: Visual edit
- 16:3916:39, 11 March 2025 diff hist +205 Download No edit summary current Tag: Visual edit
- 16:3816:38, 11 March 2025 diff hist 0 Download No edit summary Tag: Visual edit: Switched
- 16:3516:35, 11 March 2025 diff hist +1,646 Download No edit summary Tag: Visual edit: Switched
15 December 2024
- 14:2614:26, 15 December 2024 diff hist −28 MediaWiki:Common.js No edit summary current
- 14:2514:25, 15 December 2024 diff hist +768 MediaWiki:Common.js No edit summary
23 November 2024
- 11:1511:15, 23 November 2024 diff hist −5 Types No edit summary current Tag: Visual edit
11 August 2024
- 10:1610:16, 11 August 2024 diff hist +98 O Language No edit summary current Tag: Visual edit
- 10:1410:14, 11 August 2024 diff hist 0 N File:OlangForNewbies-EN.pdf No edit summary current
- 10:1410:14, 11 August 2024 diff hist 0 N File:OlangForNewbies-TR.pdf No edit summary current
- 10:0410:04, 11 August 2024 diff hist 0 N OnixOS:Repositories Created blank page
- 10:0410:04, 11 August 2024 diff hist 0 N OnixOS:Package Management Created blank page
- 10:0310:03, 11 August 2024 diff hist 0 N OnixOS:Installation Created blank page
- 10:0310:03, 11 August 2024 diff hist 0 N OnixOS:Getting Started Created blank page
- 10:0310:03, 11 August 2024 diff hist +331 Documentation No edit summary Tag: Visual edit
- 09:5909:59, 11 August 2024 diff hist +81 O Language No edit summary Tag: Visual edit
- 09:5909:59, 11 August 2024 diff hist +25 N File:Colorize terminal example.png No edit summary current
- 09:5809:58, 11 August 2024 diff hist +2,284 Getting Started No edit summary current Tag: Visual edit
- 09:5709:57, 11 August 2024 diff hist 0 N Talk:Helpers Created blank page current
- 09:5709:57, 11 August 2024 diff hist +2,777 N 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..." current Tag: Visual edit
- 09:5709:57, 11 August 2024 diff hist 0 N Talk:Database Created blank page current
- 09:5709:57, 11 August 2024 diff hist +4,763 N 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})..." current Tag: Visual edit
- 09:5609:56, 11 August 2024 diff hist 0 N Talk:Dialers Created blank page current
- 09:5609:56, 11 August 2024 diff hist +646 N 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..." current Tag: Visual edit
- 09:5609:56, 11 August 2024 diff hist 0 N Talk:Make Router Created blank page current
- 09:5609:56, 11 August 2024 diff hist +1,223 N Make Router Created page with "The router socket structure was created with the intention of creating an API over the HTTP/S protocol and exchanging data through the socket. In web based projects it is possible to write web server quickly and easily. In addition, the API can be created in micro-services. hello.olm (as hello module): <code>def hello = fn(name){ return ("Hello, "+name+"! Welcome to Olang") }</code> router.ol (as router): <code>load "hello.olm" def config = { <nowiki> </nowiki>..." current Tag: Visual edit
- 09:5509:55, 11 August 2024 diff hist 0 N Talk:Advanced Created blank page current
- 09:5509:55, 11 August 2024 diff hist +12 Advanced No edit summary current Tag: Visual edit
- 09:5509:55, 11 August 2024 diff hist +16 N Advanced Created page with "Advanced Section" Tag: Visual edit
- 09:5409:54, 11 August 2024 diff hist 0 N Talk:Definitions Created blank page current
- 09:5409:54, 11 August 2024 diff hist +1,037 N Definitions Created page with "How to make definitions and details = Definition = Simple casting definition; <code>def something = something;</code> = Hash = Simple casting hashes; <code>def pyramid = {"x":10, "y":10, "z":10} pyramid["x"] 10</code> = Array = Simple casting arrays; <code>def triangle = [10,20,30] triangle[1] 10</code> = Integer = Simple casting integer; <code>def zero = 0 0</code> = String = Simple casting string; <code>def name = "Oytun" "Oytun"</code> = Functions = S..." current Tag: Visual edit
- 09:5409:54, 11 August 2024 diff hist 0 N Talk:Functions Created blank page current
- 09:5409:54, 11 August 2024 diff hist +10,815 N Functions Created page with "= itostr = Convert integer to string. But strings and integers not connect with plus iteration (Ex: “Hello”+0 => imposible need to convert 0 or “Hello” to string or integer in IRL[In real life]). For example; <code>def i = 0; # => 0 def str = itostr(i) # => "0"</code> = len = Gives something to length. Sometimes usefull for length calculation. Easy to use. Example; <code>def arr = [1,2,3,4,5] def lenArr = len(arr) # => 5</code> = first = All objects gi..." current Tag: Visual edit
- 09:5309:53, 11 August 2024 diff hist 0 N Talk:Tokens Created blank page current
- 09:5309:53, 11 August 2024 diff hist +1,681 N Tokens Created page with "= fn = <code>Function: def object = fn(...){....}</code> = def = <code>def object = something</code> = true = <code>Boolean: true</code> = false = <code>Boolean: false</code> = if = <code>if(...boolean){ .... }</code> = else = <code>else{ .... }</code> = return = <code>def pi = fn(x){** return "3.14" **}</code> = input = <code>input(object)</code> = output = <code>output(object)</code> = loop = <code>loop(condition){...result} def result = (loop(condi..." current Tag: Visual edit
- 09:5209:52, 11 August 2024 diff hist −3 Files No edit summary current Tag: Visual edit
- 09:5209:52, 11 August 2024 diff hist +474 Files No edit summary Tag: Visual edit
- 09:5209:52, 11 August 2024 diff hist 0 N Talk:Types Created blank page current
- 09:5209:52, 11 August 2024 diff hist +1,426 N Types Created page with "= Process = Simple casting system processes; <code>proc procname "command" "work path" ["arg1","arg2"]</code> = Socket = Simple casting system sockets; <code>sock socketname "type" "port" "ip"</code> = Literals = The literal definition is used to describe the system invariants. The literal definition is used to describe the system invariants. These definitions maintain their validity throughout the system. Similar to definitions. There is no need to use a parameter..." Tag: Visual edit
- 09:5009:50, 11 August 2024 diff hist 0 N Talk:Module Loading Created blank page current