Jump to content




SelectOS v.1.4.4 Alpha [ Colours ] [ Programs ]



130 replies to this topic

Poll: SelectOS - Poll (63 member(s) have cast votes)

What do you want me to add?

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.

What do you think of SelectOS

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.

What programs do you want?

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 Guests cannot vote

#41 Skullblade

  • Members
  • 470 posts
  • LocationThe Big Apple, NY

Posted 14 February 2013 - 12:44 AM

View PostAnthonyD98™, on 13 February 2013 - 07:48 PM, said:

Anyone have any idea how to secure Passwords?
If u want a single function hashing method here is one http://www.computerc...44-and-sha-256/
It's sha256

#42 theoriginalbit

    Semi-Professional ComputerCrafter

  • Moderators
  • 7,332 posts
  • LocationAustralia

Posted 14 February 2013 - 01:03 AM

View PostSkullblade, on 14 February 2013 - 12:44 AM, said:

If u want a single function hashing method here is one http://www.computerc...44-and-sha-256/
It's sha256
Probably the best one to get.... ever!

#43 Skullblade

  • Members
  • 470 posts
  • LocationThe Big Apple, NY

Posted 14 February 2013 - 01:09 AM

View PostTheOriginalBIT, on 14 February 2013 - 01:03 AM, said:

View PostSkullblade, on 14 February 2013 - 12:44 AM, said:

If u want a single function hashing method here is one http://www.computerc...44-and-sha-256/
It's sha256
Probably the best one to get.... ever!
Yeah I love it...works very well; I think that gravity score made it...

#44 SuicidalSTDz

    Permutator of Strings

  • Members
  • 1,308 posts
  • LocationPennsylvania

Posted 14 February 2013 - 01:14 AM

View PostTheOriginalBIT, on 13 February 2013 - 05:52 PM, said:

View PostSuicidalSTDz, on 13 February 2013 - 03:54 PM, said:

-snip-
[Suggestion]You should make an installer for users to decide if they want color, non-color -snip
I don't think that decision should be completely left up to the user what if they select colour on a cc1.3 or a non advanced computer?
if not term.isColor() then
--Download the non-color version
else
--Download the color version
end

#45 GravityScore

  • Members
  • 796 posts
  • LocationLand of Meh

Posted 14 February 2013 - 01:26 AM

View PostSkullblade, on 14 February 2013 - 01:09 AM, said:

View PostTheOriginalBIT, on 14 February 2013 - 01:03 AM, said:

View PostSkullblade, on 14 February 2013 - 12:44 AM, said:

If u want a single function hashing method here is one http://www.computerc...44-and-sha-256/
It's sha256
Probably the best one to get.... ever!
Yeah I love it...works very well; I think that gravity score made it...

:D Glad you like it.

Could be improved though :P

#46 Skullblade

  • Members
  • 470 posts
  • LocationThe Big Apple, NY

Posted 14 February 2013 - 01:31 AM

View PostGravityScore, on 14 February 2013 - 01:26 AM, said:

View PostSkullblade, on 14 February 2013 - 01:09 AM, said:

Yeah I love it...works very well; I think that gravity score made it...

:D/> Glad you like it.

Could be improved though :P/>
Well it runs and doesn't error, it's fairly secure, and it's single function, that's all it needs to be WAY better then what I can make :P

#47 theoriginalbit

    Semi-Professional ComputerCrafter

  • Moderators
  • 7,332 posts
  • LocationAustralia

Posted 14 February 2013 - 01:35 AM

View PostGravityScore, on 14 February 2013 - 01:26 AM, said:

:D Glad you like it.

Could be improved though :P
Of course, its awesome.
How would you improve it? have it not error on files contents? thats pretty much the only thing i can think of. only reason it does with files contents is they are so damn long the computer doesn't yield.

View PostSuicidalSTDz, on 14 February 2013 - 01:14 AM, said:

if not term.isColor() then
--Download the non-color version
else
--Download the color version
end
If probably use

if not term.isColor and term.isColor() then

that way its compatible with cc1.3 as well

#48 SuicidalSTDz

    Permutator of Strings

  • Members
  • 1,308 posts
  • LocationPennsylvania

Posted 14 February 2013 - 09:09 AM

View PostTheOriginalBIT, on 14 February 2013 - 01:35 AM, said:

View PostGravityScore, on 14 February 2013 - 01:26 AM, said:

:D Glad you like it.

Could be improved though :P
Of course, its awesome.
How would you improve it? have it not error on files contents? thats pretty much the only thing i can think of. only reason it does with files contents is they are so damn long the computer doesn't yield.

View PostSuicidalSTDz, on 14 February 2013 - 01:14 AM, said:

if not term.isColor() then
--Download the non-color version
else
--Download the color version
end
If probably use

if not term.isColor and term.isColor() then

that way its compatible with cc1.3 as well
True :)

#49 Lyqyd

    Lua Liquidator

  • Moderators
  • 8,465 posts

Posted 14 February 2013 - 10:30 AM

View PostTheOriginalBIT, on 14 February 2013 - 01:35 AM, said:

if not term.isColor and term.isColor() then

that way its compatible with cc1.3 as well

You would want this instead, actually:

if term.isColor and term.isColor() then
  --up to date, adv. computer
elseif term.isColor and not term.isColor() then
  --up to date, regular computer (can still use black and white colors)
else
  --not up to date, cannot use any colors.
end


#50 SuicidalSTDz

    Permutator of Strings

  • Members
  • 1,308 posts
  • LocationPennsylvania

Posted 14 February 2013 - 10:39 AM

View PostLyqyd, on 14 February 2013 - 10:30 AM, said:

View PostTheOriginalBIT, on 14 February 2013 - 01:35 AM, said:

if not term.isColor and term.isColor() then

that way its compatible with cc1.3 as well

You would want this instead, actually:

if term.isColor and term.isColor() then
  --up to date, adv. computer
elseif term.isColor and not term.isColor() then
  --up to date, regular computer (can still use black and white colors)
else
  --not up to date, cannot use any colors.
end
Lol, nice. Go big or go home ;)

#51 AnthonyD98™

  • Members
  • 193 posts
  • LocationAuckland, New Zealand

Posted 14 February 2013 - 01:59 PM

Just got on and I have just discovered a ton of post :D

#52 AnthonyD98™

  • Members
  • 193 posts
  • LocationAuckland, New Zealand

Posted 14 February 2013 - 02:08 PM

Wow, I looked at the SHA-256, so I have to put all that code at the top of SelectOS?

#53 SuicidalSTDz

    Permutator of Strings

  • Members
  • 1,308 posts
  • LocationPennsylvania

Posted 14 February 2013 - 02:21 PM

View PostAnthonyD98™, on 14 February 2013 - 02:08 PM, said:

Wow, I looked at the SHA-256, so I have to put all that code at the top of SelectOS?
More likely so. Or you could run it as a program and hash their information there.

#54 AnthonyD98™

  • Members
  • 193 posts
  • LocationAuckland, New Zealand

Posted 14 February 2013 - 02:22 PM

Hmm, right now I'm not sure what to work on.

What do you guys think I should work on now?

#55 SuicidalSTDz

    Permutator of Strings

  • Members
  • 1,308 posts
  • LocationPennsylvania

Posted 14 February 2013 - 02:26 PM

View PostAnthonyD98™, on 14 February 2013 - 02:22 PM, said:

Hmm, right now I'm not sure what to work on.

What do you guys think I should work on now?
Hashing :) or look for games to put in your OS or... MAKE A GAME! :D

#56 theoriginalbit

    Semi-Professional ComputerCrafter

  • Moderators
  • 7,332 posts
  • LocationAustralia

Posted 14 February 2013 - 02:30 PM

View PostLyqyd, on 14 February 2013 - 10:30 AM, said:

regular computer (can still use black and white colors)
I always forget about that.

#57 AnthonyD98™

  • Members
  • 193 posts
  • LocationAuckland, New Zealand

Posted 14 February 2013 - 02:31 PM

View PostSuicidalSTDz, on 14 February 2013 - 02:26 PM, said:

View PostAnthonyD98™, on 14 February 2013 - 02:22 PM, said:

Hmm, right now I'm not sure what to work on.

What do you guys think I should work on now?
Hashing :) or look for games to put in your OS or... MAKE A GAME! :D

I would like to make a game but I have no idea how to make one :P

#58 SuicidalSTDz

    Permutator of Strings

  • Members
  • 1,308 posts
  • LocationPennsylvania

Posted 14 February 2013 - 02:34 PM

View PostAnthonyD98™, on 14 February 2013 - 02:31 PM, said:

View PostSuicidalSTDz, on 14 February 2013 - 02:26 PM, said:

View PostAnthonyD98™, on 14 February 2013 - 02:22 PM, said:

Hmm, right now I'm not sure what to work on.

What do you guys think I should work on now?
Hashing :) or look for games to put in your OS or... MAKE A GAME! :D

I would like to make a game but I have no idea how to make one :P
I tried my luck at a color game. You guess what color the Endermen are thinking of and if you are correct, you get 20 coins(Start out with 100) and go from there. The colors are randomly generated using color = math.random(1,16) Still needs some improvement though...

#59 AnthonyD98™

  • Members
  • 193 posts
  • LocationAuckland, New Zealand

Posted 14 February 2013 - 02:39 PM

At least you tried.

On another note I've improved the space() function :D

-- Code
local function space(times)
for rep = 1,times do
  print("")
 end
end

-- Usage:
space()
--Put the number of times you want it to miss a line
-- Example:
space(5)
-- Prints 5 blank lines


#60 SuicidalSTDz

    Permutator of Strings

  • Members
  • 1,308 posts
  • LocationPennsylvania

Posted 14 February 2013 - 02:45 PM

View PostAnthonyD98™, on 14 February 2013 - 02:39 PM, said:

At least you tried.

On another note I've improved the space() function :D

-- Code
local function space(times)
for rep = 1,times do
  print("")
end
end

-- Usage:
space()
--Put the number of times you want it to miss a line
-- Example:
space(5)
-- Prints 5 blank lines
Very nice. This is actually pretty useful, sure I could think of... HUNDREDS of things to use this for :D





2 user(s) are reading this topic

0 members, 2 guests, 0 anonymous users