Omnimaga

General Discussion => Introduce Yourself! => Topic started by: _player1537 on May 16, 2010, 06:55:43 pm

Title: Hi there
Post by: _player1537 on May 16, 2010, 06:55:43 pm
Well, I never introduced myself, so I figured I do so now.  I have been part of the community for about 1-2 years now.  I know Ti-Basic, some ASM, Axe Parser, some C#, and some shell scripts.  I'm 14 and am turning a freshman this year.  I've been calc programming since 6th grade

Put this code into your calc and use asm(prgm[program name] to run it :)
Edit: Be sure to back anything up just in case.
Code: [Select]
:AsmPrgm
:BB6DEF404521A59DEF0A45EF7249EF4045C95368652047616D65
Title: Re: Hi there
Post by: ztrumpet on May 16, 2010, 06:59:26 pm
Hi, welcome here!  Instead of the normal peanuts, I'm going to give you a pet! 

(http://www.omnimaga.org/index.php?action=dlattach;topic=2250.0;attach=1309;image)

Treat your rickroll-lobster nicely, and remember to feed it with peanuts. ;D
Title: Re: Hi there
Post by: meishe91 on May 16, 2010, 07:05:34 pm
All I got was "EΦShe Game" So I'm guessing either I typed it in wrong or you miss typed. But I think I know what you're saying ;) Welcome :P
Title: Re: Hi there
Post by: _player1537 on May 16, 2010, 07:09:25 pm
oops, guess I didn't type it correctly :(  and thank you for the rick-lobster pet.
Title: Re: Hi there
Post by: DJ Omnimaga on May 16, 2010, 07:10:23 pm
I'm glad to see you around :)

Also, wow, I'm almost 10 years older than you x.x. This means when I started calc stuff, you were still 4 or 5
Title: Re: Hi there
Post by: TIfanx1999 on May 17, 2010, 04:52:55 am
Hooray for Rickroll Lobsters! Oh, and welcome!
Title: Re: Hi there
Post by: mapar007 on May 19, 2010, 08:43:27 am
Off-by-two error! :P

Welcome!
Title: Re: Hi there
Post by: Tribal on May 19, 2010, 10:51:25 am
(Official) Welcome!
You said you know some C#, have you done anything big with it, or just tinkering?

For Example:
Code: [Select]
public abstract class Person
{
  public bool StrangersToLove { get; set; }
  public bool KnowTheRules { get; set; }
}
//Rick Astley's possible thoughts
public enum Thought
{
  FullCommitment
}
//Rick class 
public sealed class Me : Person
{
  public Thought Thinking()
  {
    return Thought.FullCommitment;
  }
}
//The target of Rick's song, notice that GetThought can only be called by passing in an instance of Rick
//which satisfies that she can't get this from any other guy
public class You : Person
{
  private Thought whatHeIsThinking;
  public void GetThought(Me guy)
  {
    whatHeIsThinking = guy.Thinking();
  }
}
class Program
{
  //The first verse
  static void Main(string[] args)
  {
    var Rick = new Me() { KnowTheRules = true, StrangersToLove = false };
    var Girl = new You() { KnowTheRules = true, StrangersToLove = false };
   Girl.GetThought(Rick);
  }
}
Title: Re: Hi there
Post by: DJ Omnimaga on May 19, 2010, 12:07:25 pm
Haha nice one
Title: Re: Hi there
Post by: _player1537 on May 19, 2010, 04:16:30 pm
sadly, just tinkering.  I want to get back into it, but probably it will be C instead of C#.  Anyone know of any good tutorials?
Title: Re: Hi there
Post by: Tribal on May 19, 2010, 04:41:30 pm
When I was learning C++ I used the documentation here here (http://www.cplusplus.com/doc/tutorial/) quite a bit, but I really learned what I know from source code and just messing around with stuff until I figured stuff out.

Here is another resource that may be of help, I don't remember using it that much and I really havn't checked through the content so I'm not sure how good it is, but it has more C specific things it seems: http://www.cprogramming.com/tutorial.html (http://www.cprogramming.com/tutorial.html)
Title: Re: Hi there
Post by: ztrumpet on May 19, 2010, 05:05:19 pm
Did I just get rickrolled in C#?  That's awesome. :D
Title: Re: Hi there
Post by: Tribal on May 20, 2010, 10:42:12 am
Ya, I found that on the net while looking around for some stuff and decided it was a good fit for that post :P