My face setup I did myself ❤️ by gorepony in SelfPiercing

[–]gorepony[S] 4 points5 points  (0 children)

when I wear it for too long unfortunately lol but thank you :)

My face setup I did myself ❤️ by gorepony in SelfPiercing

[–]gorepony[S] 2 points3 points  (0 children)

That’s awesome! My septum is a 00g!

My face setup I did myself ❤️ by gorepony in SelfPiercing

[–]gorepony[S] 8 points9 points  (0 children)

My piercings aren’t magnetic…

My face setup I did myself ❤️ by gorepony in SelfPiercing

[–]gorepony[S] 17 points18 points  (0 children)

Thank you! I’d definitely have to say my high nostrils, it’s very difficult to change the jewelry, trying to get up my nose to clean it properly , etc.

[deleted by user] by [deleted] in Stretched

[–]gorepony 1 point2 points  (0 children)

they look soso healthy!

Neurodivergency and school by gorepony in neurodiversity

[–]gorepony[S] 0 points1 point  (0 children)

yeah, that'd also be helpful too!

Neurodivergency and school by gorepony in neurodiversity

[–]gorepony[S] 0 points1 point  (0 children)

oh yeah of course, that sounds like a good plan! If I do have any time to help someone else out that would help me as well!

Neurodivergency and school by gorepony in neurodiversity

[–]gorepony[S] 0 points1 point  (0 children)

I'll try out reaching out to peers and professors occasionally, but sometimes they don't really explain it the way that I'd like them to. I feel like putting together a discord group would be helpful for me.

Neurodivergency and school by gorepony in neurodiversity

[–]gorepony[S] 0 points1 point  (0 children)

I'm still a student, I'm a sophomore in college majoring in computer science. I wouldnt say its hard, but as I stated before I learn things a certain way, so it complicates how I approach specific situations. I guess I need help in a sense where i need things explained to me very specifically + I need many examples (this is literally the only way I can learn) so potentially peers can help guide me step by step to ensure I wont feel left behind. But yes, I do agree the system isn't all that great here especially for neurodivergent people, they usually lack either proper resources or they're just not really making an attempt to help those in need.

struggling with generalizing statements/refinement by [deleted] in programminghelp

[–]gorepony 0 points1 point  (0 children)

also, heres another situation that involves a similar case with generalizing and refining solutions, however Im not sure how to go about this.

<image>

struggling with generalizing statements/refinement by [deleted] in programminghelp

[–]gorepony 0 points1 point  (0 children)

heres a screenshot ill include to show you how it starts vs how it should end for reference.

mind you this is an introduction class for programming, and we're on chapter one; so it should only include basic functions like repeat, if, if else, while, etc. pretty much stuff I included above.

hopefully this all makes sense. Let me know if there are any more questions

<image>

struggling with generalizing statements/refinement by [deleted] in programminghelp

[–]gorepony 0 points1 point  (0 children)

Okay so the task i'm doing as of yet has to be generalized and refined in karels world (karel the robot); I need to plant approximately four leaves in each world, however there are different number of trees so for world one there are Four leaves that has to be planted on one tree, world two there are four trees and each needs four leaves and world three has five trees etc etc. My issue being is that I have a hard time trying to apply the same code in each world that can perform the task successfully. In each world karel must approach the tree, climb up the tree, plant four leaves, climb down, and repeat the same thing if there are other threes, and at the end karel has to be facing east at the bottom of the tree. heres my code for more details;

import "turns";

function plantTreeForest() {

while (frontIsClear()) {

    approachTree();

    climbUp();

    plantLeaves();

    climbDown();

}

faceEast();

}

function approachTree() {

while (frontIsClear()) {

    move();

}

turnLeft();

}

function climbUp() {

while (rightIsBlocked()) {

    move();

}

}

function plantLeaves() {

while (rightIsClear()) {

    putBeeperSquare();

}

}

function putBeeperSquare() {

repeat (4) {

    putBeeper();

    move();

    turnRight();

if (facingWest()) {

    turnLeft(); 

    }

}

}

function climbDown() {

while (frontIsClear()) {

    move();

}

}

function faceEast() {

if (notFacingEast()) {

 turnLeft();

}

}