- Sky
- Blueberry
- Slate
- Blackcurrant
- Watermelon
- Strawberry
- Orange
- Banana
- Apple
- Emerald
- Chocolate
- Charcoal
All Activity
- Today
-
dinogameapp joined the community
- Earlier
-
nonogamer9 started following OC-8: A Chip-8 Emulator For OpenComputers
-
I decided to code a custom chip-8 emulator for opencomputers! It's quite slow and a bit inaccurate but it works! To try this emulator just do: pastebin get XV0Vzc2x OC-8.lua or pastebin run XV0Vzc2x Source Code: OC-8 : A Chip-8 Emulator For OpenComputers (version 1.1) - Pastebin.com Screenshots!:
-
Log started following Base64 decoder [TIS-3D]
-
Lookup table generator #DEFINE RAM UP MOV 65 ACC LOOP: MOV ACC RAM SWP MOV ACC RAM ADD 1 SWP SUB 90 JEZ LOW SUB 32 JEZ DIGITS ADD 65 JEZ HALT ADD 58 JMP LOOP #BWTM LOW: MOV 97 ACC JMP LOOP DIGITS: MOV 48 ACC JMP LOOP HALT: MOV 43 RAM MOV 62 RAM MOV 47 RAM MOV 63 RAM JRO 0 Decoder #DEFINE TERM UP #DEFINE ROM LEFT #DEFINE BUFF RIGHT #DEFINE OUT DOWN LOOP: MOV TERM ACC #1 JEZ CLEAR MOV ACC ROM MOV ROM ACC SUB 61 JEZ CLEAR ADD 61 SHL 2 MOV ACC BUFF MOV TERM ROM MO
-
888666444 joined the community
-
CreatureAlex changed their profile photo
-
CreatureAlex joined the community
-
tom110atr started following IRC Webchat
-
tom110atr joined the community
-
TheSkullmen joined the community
-
dimasah901 joined the community
-
willnever_ joined the community
-
NickzinnBR joined the community
-
sam joined the community
-
tomavx joined the community
-
I've recently started with Opencomputers and the thing is, I don't know how to monitor my HBM's nuclear tech mod (NTM) reactors such as ZIRNOX, the thing is I've seen a page that tells you what code you need to write for different values Web link to GitHub : https://github.com/Voxelstice/ntm-oc-documentation/blob/main/1.7.10.md (Please help I'm going insane)
-
Bacon_Toast reacted to a question: Question about Getting Started
-
Hey Guys, sorry for the silence but it seems my notification emails once again got disabled somewhere along the years... Anyways. There's an update for Draconic Control! It doesn't actually change anything except show you a big fat warning in case you are using a CPU set to use Lua 5.3 or higher. Why? Draconic Evolution doesn't play well with some internal API changes and only really works using the Lua 5.2 core. If you crafted your CPU with OpenComputers Version 1.7.5 (this is a guess) or later, you will run into the "UNKNOWN" reactor status issue. You can change the CPUs
-
glozeysk started following kcinnaJlol
-
also in OpenOS you can use require("shell").parse(...): arguments, options
-
Kadircan9090 changed their profile photo
-
OOF10 started following Multiple screens in OpenOS
-
TheCoolCatto changed their profile photo
-
NAAIN started following What about RAID for Servers Rack
-
-
Ok, weirdly chatGPT answered this correctly, all you need to do is add variable on start of the program that looks like this: local args = {...} and for each argument you wanna look at you just type "args[i]" where i is the number of the argument
-
I am trying to pass an argument into program to make robot different things base on the argument Lets say I have some program and I type ~ main "Ender Pearl" ~ in which main is my program and I want to pass Ender Pearl as a string into the variables inside, how do I do it, because I cant find anything about it on the internet, and tutorials I watched are so simplified that they are not telling anything about this
-
as far as i know, file extentions just straight up don't matter. Even if you have none, you can still run the file as a lua file. Running "hello" will check for a file named "hello", and if it isn't there, it then checks for one called "hello.lua". I think you can change this in /lib/shell.lua (or /lib/core/full_shell.lua, can't remember exactly), it would be in the shell.execute function Also, sorry for replying 7 years late
-
.shrc just runs whatever commands when sh.lua is started (in most cases, at boot) (shell run command) File color, when you do ls, is defined in /bin/ls.lua (which is what is ran when you do ls)
-
Hello! I have spent some time creating a package manager and repository. Github: https://github.com/Tavyza/TherOS_community_repo # Installation: wget -f -q https://raw.githubusercontent.com/Tavyza/TherOS_community_repo/main/pkg-man/source/tocr.lua /tmp/tocr.lua /tmp/tocr -i pkg-man rm /tmp/tocr.lua To add a package to the repository: Fork it create a folder (this will be the package name) make a package.tc file (should contain the full raw github link to your program) dependencies.tc (same as package.tc but for libraries your package would need)
-
kirkarr reacted to a post in a topic: ShEdit - edit.lua, but with syntax highlighting
-
a framework to create GUIs easily outside MineOS?
TheCoolCatto replied to TheCoolCatto's question in Requests
you can see the date at which a forum post is posted, you know. this post is nearly a year old but thanks for the input. i was heavily distracted by ADHD + autism and just not knowing where to start, maybe i'll work on the GUI project eventually -
https://github.com/Tavyza/TherOS_community_repo/tree/main/windowmanager I added it to the TOCR
-
a framework to create GUIs easily outside MineOS?
.theros replied to TheCoolCatto's question in Requests
dunno how old this is but i have one i had to rebuild the installer for in the TherOS Community Repo https://github.com/Tavyza/TherOS_community_repo/tree/main/windowmanager oh it doesn't have any sort of images though so -
|==========================================| | -- THEROS VERSION 1.1 -- | |==========================================| - Now a proper release!!! This release brings to the main branch: -- ADDED -- - Scrolling in file manager - The option to open a terminal from the new file/directory menu - Window borders - Configuration - Some fancy new libraries - Maybe installing programs from floppy? Added but not tested - Uptime to main menu -- FIXED/CHANGED -- - A better therboot - Error handling - Apps in main menu are sorted -- REMOVED -- - old installer directory in github Planned
-
Development Update https://github.com/VEBOffices/VEB-OS/blob/main/development/09202024.txt A change to what VEB OS is has been deployed.
-
Program sneak peak: Improved loadfile() function, will be included with every VEB OS/Kernel Product local loadfile=function(proxy,mode,path,len) if proxy.type=="drive" then local ts=proxy.getCapacity() if path > 0 and path <= ts then if type(len)=="number" and len >=1 then local rd="" local count=path for i=count,len do local rv=proxy.readByte(count) local rv2=proxy.readByte(count+1) local rv3=proxy.readByte(count+2) if string.char(rv)=="\0"and string.char(rv2)=="\0"and string.char(rv3)=="\0"then
-
I still need to fix my repo's, I moved a bunch of stuff to my new organization and some stuff hasn't been shifted yet, I also kind of forgot By the way, here is the new repo https://github.com/VEBOffices/VEB-OS
-
|==========================================| | -- THEROS VERSION 1.1.13-B -- | |==========================================| -- ADDED -- -- FIXED/CHANGED -- - Change installation process -- REMOVED -- !!! BLEEDING EDGE RELEASE, EXPECT BUGS AND ALL SORTS OF ISSUES. !!! Planned: No new apps will be created until a window manager is set up. I will have to port existing programs. Please check the project linked with TherOS for context. ========================================================================================================================= -- PLEASE RE-INSTALL/UPDA
-
get an internet card if you mean actually use your ingame computer as a web browser, you can't. well, you can but it involves making something that can interpret html, javascript, and css, and i don't think that would be possible with how small opencomputers disk drives are
-
|==========================================| | -- THEROS VERSION 1.1.8-B -- | |==========================================| -- ADDED -- -- FIXED -- - [#12](https://github.com/Tavyza/TherOS/issues/12) Installer would quit if you didn't replace the config - [#13](https://github.com/Tavyza/TherOS/issues/13) Attempt to make error handling more helpful -- REMOVED -- !!! BLEEDING EDGE RELEASE, EXPECT BUGS AND ALL SORTS OF ISSUES. !!! Planned for next update: settings??? ==================================================================================================================
-
|==========================================| | -- THEROS VERSION 1.1.7-B -- | |==========================================| -- ADDED -- -- FIXED -- - Installer would quit if you didn't replace the config (actually not fixed, i have no idea what's going on with that) -- REMOVED -- !!! BLEEDING EDGE RELEASE, EXPECT BUGS AND ALL SORTS OF ISSUES. !!! Planned for next update: settings??? ========================================================================================================================= -- PLEASE RE-INSTALL/UPDATE INSTALLER TO INSTALL EVERYTHING IN NEW VERSION
-
might add this to the TOCR and refine it some
-
why not lol
-
i think your github respository is set to private
Announcements
-
Newsletter