Jump to content




[An ending to something better]EnderOS v4.0


  • This topic is locked This topic is locked
191 replies to this topic

Poll: EnderOS (75 member(s) have cast votes)

What do you think of EnderOS?

You cannot see the results of the poll until you have voted. Please login and cast your vote to see the results of this poll.

Should I add monitor support?

You cannot see the results of the poll until you have voted. Please login and cast your vote to see the results of this poll.

Should I add touch screen capabilities along with the monitor support?

You cannot see the results of the poll until you have voted. Please login and cast your vote to see the results of this poll.
Vote

#1 SuicidalSTDz

    Permutator of Strings

  • Members
  • 1,308 posts
  • LocationPennsylvania

Posted 23 January 2013 - 10:31 AM

DISCONTINUED! Go check out EnderAPI!

Edited by SuicidalSTDz, 18 December 2014 - 05:53 AM.


#2 mibac138

  • Members
  • 132 posts
  • LocationPoland

Posted 23 January 2013 - 10:33 AM

Nice

#3 Skullblade

  • Members
  • 470 posts
  • LocationThe Big Apple, NY

Posted 23 January 2013 - 10:34 AM

hopefully this thread doesn't get as ugly...

#4 SuicidalSTDz

    Permutator of Strings

  • Members
  • 1,308 posts
  • LocationPennsylvania

Posted 23 January 2013 - 10:34 AM

 mibac138, on 23 January 2013 - 10:33 AM, said:

Nice
Thanks for the input, working on adding a lot of new functions and commands

 Skullblade, on 23 January 2013 - 10:34 AM, said:

hopefully this thread doesn't get as ugly...
My thoughts exactly.

EDIT: Thank you immensely Lyqyd

#5 Lyqyd

    Lua Liquidator

  • Moderators
  • 8,465 posts

Posted 23 January 2013 - 02:33 PM

I've cleaned this thread up. I locked the previous one. If further argument happens, the next steps I have to take are going to be significantly more severe, and I'd rather not have to do that.

#6 SuicidalSTDz

    Permutator of Strings

  • Members
  • 1,308 posts
  • LocationPennsylvania

Posted 23 January 2013 - 03:48 PM

Currently working on adding Monitor Support and possibly non-color computer support!

#7 Cranium

    Ninja Scripter

  • Moderators
  • 4,031 posts
  • LocationLincoln, Nebraska

Posted 24 January 2013 - 12:39 PM

 SuicidalSTDz, on 23 January 2013 - 03:48 PM, said:

Currently working on adding Monitor Support and possibly non-color computer support!
Adding non color is fairly simple.
if term.isColor() then
  --color computer
else
  --non color
end


#8 SuicidalSTDz

    Permutator of Strings

  • Members
  • 1,308 posts
  • LocationPennsylvania

Posted 24 January 2013 - 12:42 PM

 Cranium, on 24 January 2013 - 12:39 PM, said:

 SuicidalSTDz, on 23 January 2013 - 03:48 PM, said:

Currently working on adding Monitor Support and possibly non-color computer support!
Adding non color is fairly simple.
if term.isColor() then
  --color computer
else
  --non color
end

Yes I am very aware, hence why I started the poll to ask for some opinions.

My Non-Color checker
local x = term.isColor()
if not x then
--non color code
else
--color code
end


#9 xInDiGo

  • Members
  • 105 posts

Posted 24 January 2013 - 12:44 PM

what are some differences between this OS and KREOS?

#10 SuicidalSTDz

    Permutator of Strings

  • Members
  • 1,308 posts
  • LocationPennsylvania

Posted 24 January 2013 - 12:46 PM

 xInDiGo, on 24 January 2013 - 12:44 PM, said:

what are some differences between this OS and KREOS?
KREOS has more functionality currently. Right now I am implementing Firewolf into EnderOS.

#11 SuicidalSTDz

    Permutator of Strings

  • Members
  • 1,308 posts
  • LocationPennsylvania

Posted 25 January 2013 - 03:11 PM

Currently working on better Username/Password storage!

#12 Skullblade

  • Members
  • 470 posts
  • LocationThe Big Apple, NY

Posted 25 January 2013 - 05:05 PM

Try to encript the username and password; I would recommend sha256 because u can find a single function cc adapted version (if u want I can give u the link)

#13 theoriginalbit

    Semi-Professional ComputerCrafter

  • Moderators
  • 7,332 posts
  • LocationAustralia

Posted 25 January 2013 - 05:17 PM

 Skullblade, on 25 January 2013 - 05:05 PM, said:

Try to encript the username and password; I would recommend sha256
Hashing isn't the same as encrypting... when encrypting you can easily reverse the string with a decryption function... A hash cannot be reversed (easily, yes I know there are ways, but they are designed to be as one way as possible)

 Skullblade, on 25 January 2013 - 05:05 PM, said:

I would recommend sha256
In addition don't forget to add a salt to the details before hashing... it makes it just that little bit more secure... A hash can be any string of information, but just make sure you remember it for when testing hashed+salt input against the database...

#14 Skullblade

  • Members
  • 470 posts
  • LocationThe Big Apple, NY

Posted 26 January 2013 - 12:32 AM

I know the difference between encrypting and hashing srry for the confusion guy; wrote that right b4 inward going 2 bed....I was very tired..not thinking straight :P

Edit:listen to OriginalBIT not my rambling :D

#15 SuicidalSTDz

    Permutator of Strings

  • Members
  • 1,308 posts
  • LocationPennsylvania

Posted 26 January 2013 - 01:55 PM

 Skullblade, on 25 January 2013 - 05:05 PM, said:

Try to encript the username and password; I would recommend sha256 because u can find a single function cc adapted version (if u want I can give u the link)

 TheOriginalBIT, on 25 January 2013 - 05:17 PM, said:

 Skullblade, on 25 January 2013 - 05:05 PM, said:

Try to encript the username and password; I would recommend sha256
Hashing isn't the same as encrypting... when encrypting you can easily reverse the string with a decryption function... A hash cannot be reversed (easily, yes I know there are ways, but they are designed to be as one way as possible)

 Skullblade, on 25 January 2013 - 05:05 PM, said:

I would recommend sha256
In addition don't forget to add a salt to the details before hashing... it makes it just that little bit more secure... A hash can be any string of information, but just make sure you remember it for when testing hashed+salt input against the database...

 Skullblade, on 26 January 2013 - 12:32 AM, said:

I know the difference between encrypting and hashing srry for the confusion guy; wrote that right b4 inward going 2 bed....I was very tired..not thinking straight :P
Thanks for the tips! I am hoping to release EnderOS v1.6.2 within the next week or two.

#16 SuicidalSTDz

    Permutator of Strings

  • Members
  • 1,308 posts
  • LocationPennsylvania

Posted 27 January 2013 - 08:24 AM

Minor/New EnderOS update/bug fix!
EnderOS will now prompt you to rename files if there are security issues!

#17 SuicidalSTDz

    Permutator of Strings

  • Members
  • 1,308 posts
  • LocationPennsylvania

Posted 28 January 2013 - 04:26 PM

Currently working on ASCII encryption for the user's Password! I know it is not the best encryption by any means, but it is better than no encryption at all.

EDIT: You choose how I encrypt your information!

#18 SuicidalSTDz

    Permutator of Strings

  • Members
  • 1,308 posts
  • LocationPennsylvania

Posted 30 January 2013 - 12:46 PM

New EnderOS update checker! Run it from your computer to check if EnderOS had an update! It refreshes every 30 seconds to ensure up-to-date information!

#19 Skullblade

  • Members
  • 470 posts
  • LocationThe Big Apple, NY

Posted 30 January 2013 - 02:24 PM

Why check every 30 seconds...its not really necessary...

#20 SuicidalSTDz

    Permutator of Strings

  • Members
  • 1,308 posts
  • LocationPennsylvania

Posted 31 January 2013 - 09:59 AM

 Skullblade, on 30 January 2013 - 02:24 PM, said:

Why check every 30 seconds...its not really necessary...
It checks every thirty seconds to ensure reliability. If I were to push an update to the FTP I use and you had the update checker open, you wouldn't know EnderOS updated until you closed the application and started it back up. That is why the update checker refreshes every thirty seconds. If you think it would be better, I could just make a refresh button.





2 user(s) are reading this topic

0 members, 2 guests, 0 anonymous users