- Sky
- Blueberry
- Slate
- Blackcurrant
- Watermelon
- Strawberry
- Orange
- Banana
- Apple
- Emerald
- Chocolate
- Charcoal
-
Content Count
23 -
Joined
-
Last visited
Everything posted by MajGenRelativity
-
OETF #14 - Open Hypertext Markup Language
MajGenRelativity replied to Zen1th's topic in OpenEngineering Task Force
Do you have a Discord (preferred) or IRC account we can use to talk more about this? I'm interested since you mentioned GERT- 3 replies
-
- ocranet
- opencomputers
-
(and 1 more)
Tagged with:
-
This isn't exactly a network protocol. There are networking protocols registered on this list, but it is mainly to prevent port collisions and alert others of possible network services. I'm not sure what use a dedicated broadcast port would use, as it would be rare to have all software on this list implemented at once.
-
Looks good!
-
Lol, you must have looked at the GitHub listing. I keep forgetting to remove the reserved ports for my chat program, as it is garbage, and should be rewritten to use GERT. I don't really want to reserve ports for programs that don't even exist as ideas yet, so I'm not sure what to think about your suggestion. If you have a specific program you want a port(s) reserved for, let me know! Edit: Thinking back on my chat program, it's actually pretty ancient (circa 2+ years ago). One of the first programs I ever created. But, I'm removing the reservation because I will revise it to
-
This is a centralized repository to allow users to communicate on what port numbers their programs use, and to reserve them in an effort to minimize overlap. This is a copy of: https://github.com/GlobalEmpire/OC-Programs/blob/master/Reserved OC network card ports.txt If you would like to reserve a number, please do any of the following: 1. Post in this thread 2. Message MajGenRelativity#4971 on Discord 3. Message MajGenRelativity on irc.esper.net Currently Reserved Ports: Port 14: Ethernet over OC: Reserved by SolraBizna Port 148: GUI service: Res
-
The formatting is terrible because I just copypasted it from GitHub do to the fact that the whitepaper won't be finished until the protocol is done. Once we make it to Release Candidate 1, I will be making a video with instructions on how to set up a basic network to play around with, and how to harness the power of GERT for great and amazing things. Please let me know if there is anything else I can do to improve the appeal.
-
Globally Engineered Routing Technology (GERT) is a networking protocol for OpenComputers that can network OC computers together, and connect different MC servers together via the Internet. It is also capable of linking real life computers to OC Computers. It uses an IPv4-like addressing scheme for computers, which helps generate easier to remember addresses, and it supports both socket and connectionless data transfer methods. More information can be found at https://github.com/GlobalEmpire/GERT/wiki/GERTi For more questions, please either post in this thread, or message MajGenRelati
-
Hello! Yuon Survival is a 1.7.10 Custom Modpack Survival server looking for players! Features: Custom Modpack: The modpack is custom designed around a good balance of tech and magic to open as many options as possible! Balanced Rules: Beyond some rules to prevent extremes, the server is open to many different play styles to foster a wide community. Online 24/7: Hosted on a professional server to ensure maximum uptime Whitelisted to ensure the safety of all players Clean Map: While the map has been around for a while, it is virtually untouched If you have questions or want to join, f
-
This is a basic wired networking protocol that allows you to set up a rudimentary chat application over a WIRED network. This is the foundation for a far FAR more robust protocol I am developing local term = require("term") local component = require("component") local event = require("event") local m = component.modem local str="0" -- determine what channel people want to listen on term.write("What channel do you want to chat on? \n") local channel=io.read() m.open(tonumber(channel)) -- begin event event.listen("modem_message", function(_,_,from,port,_,message) -- decipher, and print l
-
Networked computers accessing each others screens
MajGenRelativity replied to MajGenRelativity's question in Programming
I tried setting the primary screen, and it didn't work. I didn't try it in combo with the keyboard though -
I have two computers. Each one has a screen and keyboard on top of each, and the two cases, but not the screens, are connected by a network cable. When the computers start up, the text appears on one screen, then the default OS screen appears on the other screen. This ends up being really confusing! I tried writing an autorun script that told each computer to set its respective screen as the primary screen component, but it didn't work. If anybody could help me out, that would be great!