Jump to content


rdmGAMER's Content

There have been 14 items by rdmGAMER (Search limited from 29-March 23)


By content type

See this member's

Sort by                Order  

#255629 OS '16 - The 2016 programmed OS. [Alpha 2.0]

Posted by rdmGAMER on 06 July 2016 - 12:57 PM in Operating Systems

View PostNothy, on 05 July 2016 - 10:45 PM, said:

This is nice, the only thing that bugs me is that you have to press enter to get the OS to actually boot. Could you add like a small timer that just looks for input, then boots the OS?
Yes, I'm already programming it. In the next update it's coming :)



#255468 OS '16 - The 2016 programmed OS. [Alpha 2.0]

Posted by rdmGAMER on 04 July 2016 - 01:17 PM in Operating Systems

A new update is released! Get it at the first post.



#255039 OS '16 - The 2016 programmed OS. [Alpha 2.0]

Posted by rdmGAMER on 28 June 2016 - 08:13 PM in Operating Systems

ok, now I understand it. In the next update it's coming. :)



#255033 OS '16 - The 2016 programmed OS. [Alpha 2.0]

Posted by rdmGAMER on 28 June 2016 - 08:00 PM in Operating Systems

 Lemmmy, on 28 June 2016 - 07:49 PM, said:

 erik0004, on 28 June 2016 - 07:47 PM, said:

 Lemmmy, on 28 June 2016 - 07:44 PM, said:

 erik0004, on 28 June 2016 - 07:40 PM, said:

Idk how to encrypt+decrypt password, so I think you won't be able to encrypt your passwords :unsure:

 Mumbai, on 28 June 2016 - 07:38 PM, said:

Check out SHA hashes. I hear Sha-3 is the best....


and how does that work? :huh:

don't bother trying to implement an sha3 variant in CC, just find an sha256 implementation somewhere on this forums or on the internet

what you would so when creating an account is save the hashed password in a file, like
sha256(password)

then when you log in, you check if sha256(input) is equal to what is saved in the file, like
if sha256(input) == passwordFile.readAll() then

obviously your code should be cleaner and not stupid but that's how you'd implement it

and how do I hash a password?



#255021 OS '16 - The 2016 programmed OS. [Alpha 2.0]

Posted by rdmGAMER on 28 June 2016 - 07:47 PM in Operating Systems

 Lemmmy, on 28 June 2016 - 07:44 PM, said:

 erik0004, on 28 June 2016 - 07:40 PM, said:

Idk how to encrypt+decrypt password, so I think you won't be able to encrypt your passwords :unsure:

 Mumbai, on 28 June 2016 - 07:38 PM, said:

Check out SHA hashes. I hear Sha-3 is the best....


and how does that work? :huh:



#255018 OS '16 - The 2016 programmed OS. [Alpha 2.0]

Posted by rdmGAMER on 28 June 2016 - 07:40 PM in Operating Systems

Idk how to encrypt+decrypt password, so I think you won't be able to encrypt your passwords :unsure:



#255006 OS '16 - The 2016 programmed OS. [Alpha 2.0]

Posted by rdmGAMER on 28 June 2016 - 07:05 PM in Operating Systems

ok, I removed it now.



#255003 OS '16 - The 2016 programmed OS. [Alpha 2.0]

Posted by rdmGAMER on 28 June 2016 - 06:56 PM in Operating Systems

 Mumbai, on 28 June 2016 - 06:52 PM, said:

OK last of my annoying comments

[1] -- Would it not be better to instead have a one time user setup? This would be better to prevent any malicious users from going to the file browser and messing with your stuff
[2] -- yep its windows style...yay....
[3] -- in /.opt/logon the username and password are unencrypted.
[4] -- also in /.opt/logon there seems to be a backdoor login called "guest" ?

[1] Comming in the next update :)
[2] :D
[3] EDIT: Idk how to encrypt+decrypt password, so I think you won't be able to encrypt your passwords
[4] This should be so, but I can remove it.



#254999 OS '16 - The 2016 programmed OS. [Alpha 2.0]

Posted by rdmGAMER on 28 June 2016 - 06:43 PM in Operating Systems

you have to wait until the installer is finished. when its finished it says (text from the code): "OS'16 is succesfully installed. Rebooting.."



#254997 OS '16 - The 2016 programmed OS. [Alpha 2.0]

Posted by rdmGAMER on 28 June 2016 - 06:30 PM in Operating Systems

After days of coding, it's finally here : OS '16!! :D (Version Alpha 2.0)

Features


Credits

Screenshots

Changelog

Download:
Version Alpha 2.0 :
Installer: pastebin get nk4WwCP7 install
pastebin run nk4WwCP7

Zip: Link

Version Alpha 1.02 :
Installer: pastebin get kf0TkVCR install
pastebin run kf0TkVCR

Zip: Link

Bugs



#254862 What am I making wrong?

Posted by rdmGAMER on 26 June 2016 - 02:53 PM in Ask a Pro

Okay... I already programmed 2 OS' and I never had that problem. I also had
local event , X, Y, button = os.pullEvent("mouse_click")
in exactly this order. I don't understand why it is now so

But thank you



#254859 What am I making wrong?

Posted by rdmGAMER on 26 June 2016 - 02:38 PM in Ask a Pro

Here it is :

Spoiler

(Its long so I put it in a spoiler)



#254855 What am I making wrong?

Posted by rdmGAMER on 26 June 2016 - 02:13 PM in Ask a Pro

EDIT : I tried it out and it isn't working :unsure:



#254853 What am I making wrong?

Posted by rdmGAMER on 26 June 2016 - 02:07 PM in Ask a Pro

I'm trying to make an OS, but the events that I code aren't working. Why? Please help.

Here is one part of the event codes :

while true do
local event, X, Y = os.pullEvent("mouse_click")
if X==4 and Y==6 then
login()
break
elseif X==4 and Y==8 then
register()
break
end
end