Author Topic: CMDv3  (Read 4211 times)

0 Members and 1 Guest are viewing this topic.

Offline ClrDraw

  • LV7 Elite (Next: 700)
  • *******
  • Posts: 627
  • Rating: +61/-2
    • View Profile
    • GitHub
CMDv3
« on: April 04, 2014, 09:07:15 pm »
I'm rewriting CMDv2 (you can find it here). What new functions should I have?


I want to make this program more useful than the last.
« Last Edit: April 04, 2014, 11:27:11 pm by ClrDraw »
Visit my GitHub for all my TI programs as well as other projects.
Also check out my website.

Offline josh landers

  • LV4 Regular (Next: 200)
  • ****
  • Posts: 116
  • Rating: +1/-0
    • View Profile
Re: CMDv3
« Reply #1 on: April 08, 2014, 12:51:41 pm »
Users!

syntax:
Code: [Select]
LOGIN
L>>{name}
P!>>{password}

Code: [Select]
LOGOUT
Code: [Select]
NEW
$>>USER
$.U>>{name}
Code: [Select]
DEL
!>>USER
!.U>>{name}
Code: [Select]
LOCK
!>>PRGM
!.P>>{prgmname}

Code: [Select]
PASS
{user name}>>{new password}

Offline Aspiring

  • LV3 Member (Next: 100)
  • ***
  • Posts: 81
  • Rating: +5/-0
  • The only source of knowledge is experience-Einsten
    • View Profile
Re: CMDv3
« Reply #2 on: April 08, 2014, 01:11:22 pm »
What could the users do? What special privileges do you suggest.  Without something else users are kind of pointless.

Offline ClrDraw

  • LV7 Elite (Next: 700)
  • *******
  • Posts: 627
  • Rating: +61/-2
    • View Profile
    • GitHub
Re: CMDv3
« Reply #3 on: April 08, 2014, 01:22:30 pm »
That's true... I like the password idea (to protect programs) but I don't think it makes sense to have separate users on the calculator.
Visit my GitHub for all my TI programs as well as other projects.
Also check out my website.

Offline Streetwalrus

  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 3821
  • Rating: +80/-8
    • View Profile
Re: CMDv3
« Reply #4 on: April 08, 2014, 02:07:19 pm »
No point in having users because this is a self contained (mostly) program.

Offline ClrDraw

  • LV7 Elite (Next: 700)
  • *******
  • Posts: 627
  • Rating: +61/-2
    • View Profile
    • GitHub
Re: CMDv3
« Reply #5 on: April 08, 2014, 09:01:55 pm »
That's true, especially since most calculators only have one user.
I did include a password option (just today) which is similar-ish.
Visit my GitHub for all my TI programs as well as other projects.
Also check out my website.

Offline josh landers

  • LV4 Regular (Next: 200)
  • ****
  • Posts: 116
  • Rating: +1/-0
    • View Profile
Re: CMDv3
« Reply #6 on: April 08, 2014, 10:10:58 pm »
Example:
"Hey dude can I borrow your calc"
"Yah hold on"
"Dude you like have cmd3?"
"Yah, wanna import your user?"
"Chah"
Sends a user file over ... appvar
Logs in.
Now has all game scores from Limbo
On friends calc.

Offline ClrDraw

  • LV7 Elite (Next: 700)
  • *******
  • Posts: 627
  • Rating: +61/-2
    • View Profile
    • GitHub
Re: CMDv3
« Reply #7 on: April 08, 2014, 10:19:59 pm »
CMDv3 doesn't load scores from other people's games...
Visit my GitHub for all my TI programs as well as other projects.
Also check out my website.

Offline Streetwalrus

  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 3821
  • Rating: +80/-8
    • View Profile
Re: CMDv3
« Reply #8 on: April 09, 2014, 12:45:48 am »
And in the case you quote the other guy had his calc with him, hence no reason to borrow yours. :P

Offline josh landers

  • LV4 Regular (Next: 200)
  • ****
  • Posts: 116
  • Rating: +1/-0
    • View Profile
Re: CMDv3
« Reply #9 on: April 09, 2014, 08:34:18 am »
May be he lost a file... but had his user accout backed up. .. its ambitious and seems unlikely. But what the heck.

Offline Streetwalrus

  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 3821
  • Rating: +80/-8
    • View Profile
Re: CMDv3
« Reply #10 on: April 09, 2014, 08:40:38 am »
Bleh. It's not like calcs have unlimited storage. Plus I won't let anybody touch my calc. :P And what you said is already possible.

Offline ClrDraw

  • LV7 Elite (Next: 700)
  • *******
  • Posts: 627
  • Rating: +61/-2
    • View Profile
    • GitHub
Re: CMDv3
« Reply #11 on: April 09, 2014, 03:04:02 pm »
Quote
Plus I won't let anybody touch my calc. 

I'm lucky nobody at my school can use a calc... They couldn't mess with my programs if they tried. Yesterday somebody asked me how to turn on fractions  :P
Visit my GitHub for all my TI programs as well as other projects.
Also check out my website.

Offline Streetwalrus

  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 3821
  • Rating: +80/-8
    • View Profile
Re: CMDv3
« Reply #12 on: April 09, 2014, 05:35:19 pm »
Haha how cute of them.
* Streetwalrus runs :P

Offline Aspiring

  • LV3 Member (Next: 100)
  • ***
  • Posts: 81
  • Rating: +5/-0
  • The only source of knowledge is experience-Einsten
    • View Profile
Re: CMDv3
« Reply #13 on: April 10, 2014, 10:45:48 am »
I also like the idea of password protection... perhaps you could do some very, very simple "encryption" to make it more difficult for someone to steal your password.

Offline ClrDraw

  • LV7 Elite (Next: 700)
  • *******
  • Posts: 627
  • Rating: +61/-2
    • View Profile
    • GitHub
Re: CMDv3
« Reply #14 on: April 10, 2014, 12:01:16 pm »
Right now its hidden so hopefully few people will be able to delete it. But I like that idea, I'll encrypt it also. Maybe a simple cipher shift based on location... Professional encryption algorithms like Blowfish confuse me.
« Last Edit: April 10, 2014, 06:52:16 pm by ClrDraw »
Visit my GitHub for all my TI programs as well as other projects.
Also check out my website.