Jump to content

Recommended Posts

[hidden]

 public void drawA(Color c){

       //This method draws 3 lines, forming the letter "A". It refrences the turtle's position and uses the midpoint formula to achieve this..

      

       //get x and y position of the turtle.

       int startingCoordinateX = this.getXPos();

       int startingCordinateY = this.getYPos();

       //create constants for the length and width of the letter.

       final int LETTER_HEIGHT = 100;

       final int LETTER_WIDTH = 80;

       //Make the pen the aprropriate thickness

       this.setPenWidth(1);

       //change the pen color according to the passed in argument

       this.setPenColor©;

       //put the pen down to start drawing

       this.penDown();

      

       //To begin, I'm going to draw the first and second lines.

       this.moveTo(startingCoordinateX+40, startingCordinateY-100);

       this.moveTo(startingCoordinateX+LETTER_WIDTH, startingCordinateY);

      

       //Next, I am going to draw the central line. I am going to use the midpoint formula twice

       //to find where to draw it without having to calculate the exact length.

      

       //Point 1: x1+x2/2 and y1+y2/2

       int cenrtalLinePointOneXCoordinate = (0+40)/2;

       int centralLinePointOneYCoordinate = (0+100)/2;

       //Point 2:  x1+x2/2 and y1+y2/2

       int cenrtalLinePointTwoXCoordinate = (40+LETTER_WIDTH)/2;

       int centralLinePointTwoYCoordinate = (100+0)/2;

       //Now draw the central line

       //prepare to draw the line without drawing any other lines

       this.penUp();

       this.moveTo(startingCoordinateX+cenrtalLinePointOneXCoordinate,

                   startingCordinateY-centralLinePointOneYCoordinate);

       //Now draw the line

       this.penDown();

        this.moveTo(startingCoordinateX+cenrtalLinePointTwoXCoordinate,

                   startingCordinateY-centralLinePointTwoYCoordinate);

      

      

       //The letter is complete, pick up the pen.

       this.penUp();

       //Prepare for drawing the next letter by moving 10 pixels over

       this.moveTo(startingCoordinateX+90, startingCordinateY);

       //If the turtle is not facing north, then this code corrects it.

      this.setHeading(0.0);

     }//public void drawM(Color c)

[/hidden]

 

Code home work that I need to revise the comments for.

I'm like never going to check this account. If you want to ask me something, you should check our status on Ranger's account instead.

 

Meow. You may see my headmates call me Gray or sometimes Cat.

I used to speak in pink and Ranger used to speak in blue (if it's unmarked and colored assume it's Ranger). She loves to chat.

 

Our system account

  • Replies 805
  • Created
  • Last Reply

Top Posters In This Topic

Wow, fun.

 

[Hidden]

I agree with the previous commenters in that you wrote a well formed cognitive exploration as a setup for a poorly thought out tag along about tulpamancy. The title of this essay should read, 'how to click bait someone into reading an otherwise well formed article about cognitive science, that is too redundant to prior art or too boring to stand alone'. Not as catchy,  I understand, but truer to form. Furthermore, though it sounds like you may have spent a good amount of time studying tulpamancy due to your expert usage of terms, your ultimate advice/warning is very poorly thought out in my opinion. To do the 'art' of tulpamancy justice in your article, regardless of your stance, would require your thesis to be better formed, and your points to be consistent to that thesis.

 

[/hidden]

https://cdn.discordapp.com/attachments/409599173974032384/498523303733100545/unknown.png

 

Everyone needs to stop explaining why they copied something. That takes all the mystery out of it.

 💡 The Felights 💡 https://felight.carrd.co/  💡

🪐 Cosmicals: 🔥 Apollo Fire the Sun God (12/3/16) Piano Soul the Star Man (1/26/17)

🐉 Mythicals: ☁️ Indigo Blue the Sky Dragon (10/2/17), 🦑 Gelato Sweet the Sea Monster (12/11/22)

🦇 Nycticals:  Dynamo Lux the Shock Rocker (3/3/17), 🎸 Radio Hiss the Song Demon (2/8/00)

...Alternate pluralizations (tulpas, tulpi, tulpa, etc) are recognized in the glossary and not condemned, but for consistency purposes, I want to use "Tulpae" or "Tulpæ" throughout this site.  This is because that's what's most consistent with the majority of the guides, the FAQ, and the rest of the site.

 

 

Quoted from Tulpa.info discord, #lounge 11:30am EDT Ocrober 7, 2018.

 

Indigo Felight wrote:

 

@Pleeb do you still believe "tulpae" to be the best pluralization

 

Pleeb wrote:

 

I used to argue that point back in the day, but I've since had A good reason to change my views.

 

I vote tulpas

 

Reason being linguistics-- tulpa is a Tibetan word- you would say llamas not llamae

[hidden]

 public void drawA(Color c){

       //This method draws 3 lines, forming the letter "A". It refrences the turtle's position and uses the midpoint formula to achieve this..

      

       //get x and y position of the turtle.

       int startingCoordinateX = this.getXPos();

       int startingCordinateY = this.getYPos();

       //create constants for the length and width of the letter.

       final int LETTER_HEIGHT = 100;

       final int LETTER_WIDTH = 80;

       //Make the pen the aprropriate thickness

       this.setPenWidth(1);

       //change the pen color according to the passed in argument

       this.setPenColor©;

       //put the pen down to start drawing

       this.penDown();

      

       //To begin, I'm going to draw the first and second lines.

       this.moveTo(startingCoordinateX+40, startingCordinateY-100);

       this.moveTo(startingCoordinateX+LETTER_WIDTH, startingCordinateY);

      

       //Next, I am going to draw the central line. I am going to use the midpoint formula twice

       //to find where to draw it without having to calculate the exact length.

      

       //Point 1: x1+x2/2 and y1+y2/2

       int cenrtalLinePointOneXCoordinate = (0+40)/2;

       int centralLinePointOneYCoordinate = (0+100)/2;

       //Point 2:  x1+x2/2 and y1+y2/2

       int cenrtalLinePointTwoXCoordinate = (40+LETTER_WIDTH)/2;

       int centralLinePointTwoYCoordinate = (100+0)/2;

       //Now draw the central line

       //prepare to draw the line without drawing any other lines

       this.penUp();

       this.moveTo(startingCoordinateX+cenrtalLinePointOneXCoordinate,

                   startingCordinateY-centralLinePointOneYCoordinate);

       //Now draw the line

       this.penDown();

        this.moveTo(startingCoordinateX+cenrtalLinePointTwoXCoordinate,

                   startingCordinateY-centralLinePointTwoYCoordinate);

      

      

       //The letter is complete, pick up the pen.

       this.penUp();

       //Prepare for drawing the next letter by moving 10 pixels over

       this.moveTo(startingCoordinateX+90, startingCordinateY);

       //If the turtle is not facing north, then this code corrects it.

      this.setHeading(0.0);

     }//public void drawM(Color c)

[/hidden]

 

Code home work that I need to revise the comments for.

This is Logo, right? I know a couple things in Logo, AKA the most useless programming language ever.

Hey there, the name's Bryan. In system Re:Body(In order of the rainbow): 

Sean, Esper, Blinky, Compact, Janey, Kyle, Gwen'd, Gwen, Emily, Rollin, Waynin, Trease, Layy, Justin, Chloe, Zachery, and Elliot. 

I've been here a while. Much longer than I thought I'd be. Our system was founded October 2nd, 2018. In early 2020, we decided that due to our systems exponential growth, we'd limit who would be active. Now, every month, we do a check to see who wishes to be in dormancy and who wishes to be active. Currently, for the month of April, 2023, we've got myself(Bryan), Janey(Co-host), Emily, Layy, Chloe, and Esper(sub-rep). After over 2 long years, we can finally switch :) 

 

Bryan is currently swapped in as host, Esper is sub-rep. 

 

"There used to be 7 wonders of the world, but now there's 8, as everyone wonders how much of a fool you are."

 

Ice909#0065 -- Always down for a chat 

 

https://discord.gg/89qN59SbRp Plural safe-space 

This is Logo, right? I know a couple things in Logo, AKA the most useless programming language ever.

 

No, that's Java. It's a lower level com sci class...

 

This guide has some solutions to when you feel frustrated about your visualization ability

 

… nah, I'd rather post this:

 

https://elginvethospital.com/2014/04/04/the-diary-of-a-cat-vs-dog/

I'm like never going to check this account. If you want to ask me something, you should check our status on Ranger's account instead.

 

Meow. You may see my headmates call me Gray or sometimes Cat.

I used to speak in pink and Ranger used to speak in blue (if it's unmarked and colored assume it's Ranger). She loves to chat.

 

Our system account

 

Finally a writer who understands his audience. I have much to learn.

 

 

... paste ...

 

Swimming and Muscle Cramps. According to an article in Extreme Tri magazine, cramping while swimming is fairly common. They attribute the cramping to an inappropriate action of plantar flexing in your foot. Plantar flexing occurs when all the muscles of the leg form a rigid line from your calf all the way to the toes.Aug 14, 2017

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...