Recent changes

Jump to navigation Jump to search

Track the most recent changes to the wiki on this page.

Recent changes options Show last 50 | 100 | 250 | 500 changes in last 1 | 3 | 7 | 14 | 30 days
Hide registered users | Hide anonymous users | Show my edits | Show bots | Hide minor edits
Show new changes starting from 22:44, 16 October 2024
   
List of abbreviations:
N
This edit created a new page (also see list of new pages)
m
This is a minor edit
b
This edit was performed by a bot
(±123)
The page size changed by this number of bytes

14 October 2024

N    02:37  Api/netlib.gettable()‎‎ 4 changes history +425 [Shorun‎ (4×)]
     
02:37 (cur | prev) +36 Shorun talk contribs Tag: Visual edit
     
02:36 (cur | prev) +167 Shorun talk contribs Tag: Visual edit
     
02:17 (cur | prev) −133 Shorun talk contribs Tag: Visual edit
N    
00:09 (cur | prev) +355 Shorun talk contribs (Created page with "netlib function used to receive a table expected to be sent with "sendtable" sendtable will first send a regular rednet message with the string "sendtable", when you catch this you know a table is comming next '''usage:''' local table = netlib.gettable(client) '''output:''' returns the table if successfull, returns false if failed") Tag: Visual edit
N    02:37  Api/netlib.getstring()‎‎ 5 changes history +541 [Shorun‎ (5×)]
     
02:37 (cur | prev) +36 Shorun talk contribs Tag: Visual edit
     
02:37 (cur | prev) +167 Shorun talk contribs Tag: Visual edit
     
02:16 (cur | prev) −142 Shorun talk contribs Tag: Visual edit
     
00:04 (cur | prev) +144 Shorun talk contribs Tag: Visual edit
N    
00:01 (cur | prev) +336 Shorun talk contribs (Created page with "netlib function used to receive a string expected to arrive with "sendstring" it will verify the string with the sender, it needs to know who will be sending the string. '''usage:''' local temp = netlib.receive(client) '''output:''' returns the string if the data was verified returns false if it failed to verify") Tag: Visual edit
N    02:17  Api/netlib.sendtable()‎‎ 2 changes history +242 [Shorun‎ (2×)]
     
02:17 (cur | prev) −156 Shorun talk contribs Tag: Visual edit
N    
00:06 (cur | prev) +398 Shorun talk contribs (Created page with "netlib function used to send a table to another system it will first send a regular rednet message with the string "sendtable", your listen program needs to catch this, after that, use "gettable" to receive it. '''usage:''' local temp = netlib.sendtable(client, table) '''output:''' sends the table provided to the client returns true if successfull, returns false if failed") Tag: Visual edit
     02:16  Api/netlib.sendstring() diffhist −277 Shorun talk contribs Tag: Visual edit
     00:37  Api/netlib‎‎ 5 changes history +1,248 [Shorun‎ (5×)]
     
00:37 (cur | prev) +126 Shorun talk contribs Tag: Visual edit
     
00:18 (cur | prev) +223 Shorun talk contribs Tag: Visual edit
     
00:13 (cur | prev) +442 Shorun talk contribs Tag: Visual edit
     
00:11 (cur | prev) +362 Shorun talk contribs Tag: Visual edit
     
00:01 (cur | prev) +95 Shorun talk contribs Tag: Visual edit
     00:29  Binaries‎‎ 2 changes history +389 [Shorun‎ (2×)]
     
00:29 (cur | prev) +93 Shorun talk contribs Tag: Visual edit
     
00:20 (cur | prev) +296 Shorun talk contribs Tag: Visual edit
N    00:27  Binaries/netlib.sh diffhist +238 Shorun talk contribs (Created page with "the netlib binary is a part of the netlib package and used to listen for incomming messages sent with the netlib api this is a diagnostics tool. '''usage:''' netlib '''output:''' prints any incomming messages on screen") Tag: Visual edit
N    00:26  Binaries/sendfile.sh diffhist +280 Shorun talk contribs (Created page with "the sendfile binary is a part of the netlib package and used to send files to a system waiting with getfile '''usage:''' sendfile clientid file '''output:''' sends "file" to "clientid" '''eg:''' "''sendfile 5 /test.txt''" - sends "/test.txt" to computer id 5") Tag: Visual edit
N    00:24  Binaries/getfile.sh‎‎ 2 changes history +366 [Shorun‎ (2×)]
     
00:24 (cur | prev) +4 Shorun talk contribs Tag: Visual edit
N    
00:24 (cur | prev) +362 Shorun talk contribs (Created page with "the getfile binary is a part of the netlib package and used to receive incomming files sent with sendfile '''usage:''' getfile clientid file '''output:''' waits for clientid to send a file and if successfull writes it to the location in file '''eg:''' "getfile 5 /test.txt" - waits for computer 5 to send a file and stores it in "/test.txt"") Tag: Visual edit
N    00:22  Binaries/ping.sh diffhist +288 Shorun talk contribs (Created page with "the ping binary is a part of the [https://wolfpak.vtchost.com/forum/viewtopic.php?f=17&t=164&p=172&sid=2985882c94cc3717be70c8c0bb51fc92#p172 netlib package] and used to test if a system is responding '''usage:''' ping systemid '''output:''' prints the results on screen") Tag: Visual edit

13 October 2024

N    23:58  Api/netlib‎‎ 4 changes history +500 [Shorun‎ (4×)]
     
23:58 (cur | prev) +164 Shorun talk contribs Tag: Visual edit
     
23:52 (cur | prev) +79 Shorun talk contribs Tag: Visual edit
     
23:51 (cur | prev) +60 Shorun talk contribs Tag: Visual edit
N    
23:43 (cur | prev) +197 Shorun talk contribs (Created page with "netlib Api, included in [https://wolfpak.vtchost.com/forum/viewtopic.php?f=17&t=164&sid=2985882c94cc3717be70c8c0bb51fc92 "netlib"] package, used to regulate network communication. placeholder") Tag: Visual edit
N    23:56  Api/netlib.sendstring()‎‎ 2 changes history +678 [Shorun‎ (2×)]
     
23:56 (cur | prev) +157 Shorun talk contribs Tag: Visual edit
N    
23:56 (cur | prev) +521 Shorun talk contribs (Created page with "netlib function used to send a string to another system this will first send a regular rednet message with the string "sendstring" so the receiving side knows to expect a string, this is required for a "listen" program that listens for incomming calls. after this the string you include is properly transmitted to the other party. '''usage:''' local temp = netlib.sendstring(client, string) '''output:''' transmits "string" to a netlib capable system,...") Tag: Visual edit
N    23:50  Api/netlib.getping() diffhist +214 Shorun talk contribs (Created page with "netlib function used to respond to a ping used to respond to a ping, if required in the protocol in use. '''usage:''' getping(client) '''output:''' replies to an incomming ping in a proper way") Tag: Visual edit
     23:47  Api diffhist +90 Shorun talk contribs Tag: Visual edit
N    23:46  Api/netlib.ping() diffhist +264 Shorun talk contribs (Created page with "netlib function used to test if a system is alive. ping sends a simple ping to another system to test if it is able to respond. '''usage:''' local returnvalue = netlib.ping(client) '''output:''' true if reply has been received, false if not.") Tag: Visual edit
     05:33  Protocols diffhist −16 Shorun talk contribs Tag: Visual edit

12 October 2024

     18:07  Api/minux diffhist 0 Shorun talk contribs Tag: Visual edit

10 October 2024

     03:39  Manuals/installation diffhist −625 Shorun talk contribs Tag: Visual edit
     01:30  Binaries/apt diffhist −38 Shorun talk contribs Tag: Visual edit
     01:29  Api/apt.update() diffhist +108 Shorun talk contribs Tag: Visual edit
     01:25  Api/minux‎‎ 2 changes history +76 [Shorun‎ (2×)]
     
01:25 (cur | prev) +27 Shorun talk contribs Tag: Visual edit
     
01:25 (cur | prev) +49 Shorun talk contribs Tag: Visual edit
N    01:24  Api/minux.insertline() diffhist +295 Shorun talk contribs (Created page with "this function is part of the minux. api and used to insert a line into a file it appends it to the back of the file '''usage:''' local temp = minux.insertline(filename, inputstring) '''output:''' true or false depending on success, adds inputstring to the back of filename") Tag: Visual edit