Author Topic: Hi there  (Read 5013 times)

0 Members and 1 Guest are viewing this topic.

_player1537

  • Guest
Hi there
« 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
« Last Edit: May 16, 2010, 06:58:12 pm by _player1537 »

Offline ztrumpet

  • The Rarely Active One
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 5712
  • Rating: +364/-4
  • If you see this, send me a PM. Just for fun.
    • View Profile
Re: Hi there
« Reply #1 on: May 16, 2010, 06:59:26 pm »
Hi, welcome here!  Instead of the normal peanuts, I'm going to give you a pet! 



Treat your rickroll-lobster nicely, and remember to feed it with peanuts. ;D
« Last Edit: May 16, 2010, 06:59:35 pm by ztrumpet »

Offline meishe91

  • Super Ninja
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2946
  • Rating: +115/-11
    • View Profile
    • DeviantArt
Re: Hi there
« Reply #2 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
Spoiler For Spoiler:



For the 51st time, that is not my card! (Magic Joke)

_player1537

  • Guest
Re: Hi there
« Reply #3 on: May 16, 2010, 07:09:25 pm »
oops, guess I didn't type it correctly :(  and thank you for the rick-lobster pet.

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: Hi there
« Reply #4 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
Now active at https://discord.gg/cuZcfcF (CodeWalrus server)

Offline TIfanx1999

  • ಠ_ಠ ( ͡° ͜ʖ ͡°)
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 6173
  • Rating: +191/-9
    • View Profile
Re: Hi there
« Reply #5 on: May 17, 2010, 04:52:55 am »
Hooray for Rickroll Lobsters! Oh, and welcome!

Offline mapar007

  • LV7 Elite (Next: 700)
  • *******
  • Posts: 550
  • Rating: +28/-5
  • The Great Mata Mata
    • View Profile
Re: Hi there
« Reply #6 on: May 19, 2010, 08:43:27 am »
Off-by-two error! :P

Welcome!

Offline Tribal

  • The Fallen
  • LV5 Advanced (Next: 300)
  • *
  • Posts: 218
  • Rating: +15/-1
    • View Profile
Re: Hi there
« Reply #7 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);
  }
}

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: Hi there
« Reply #8 on: May 19, 2010, 12:07:25 pm »
Haha nice one
Now active at https://discord.gg/cuZcfcF (CodeWalrus server)

_player1537

  • Guest
Re: Hi there
« Reply #9 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?

Offline Tribal

  • The Fallen
  • LV5 Advanced (Next: 300)
  • *
  • Posts: 218
  • Rating: +15/-1
    • View Profile
Re: Hi there
« Reply #10 on: May 19, 2010, 04:41:30 pm »
When I was learning C++ I used the documentation here here 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

Offline ztrumpet

  • The Rarely Active One
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 5712
  • Rating: +364/-4
  • If you see this, send me a PM. Just for fun.
    • View Profile
Re: Hi there
« Reply #11 on: May 19, 2010, 05:05:19 pm »
Did I just get rickrolled in C#?  That's awesome. :D

Offline Tribal

  • The Fallen
  • LV5 Advanced (Next: 300)
  • *
  • Posts: 218
  • Rating: +15/-1
    • View Profile
Re: Hi there
« Reply #12 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