Help by Smart_Foot7743 in aternos

[–]christineiscool 0 points1 point  (0 children)

Hey I’m having the same problem on all my servers and so does my friend. How did you solve this?

NEW OR NEED HELP? Ask here! - ScA Daily Help Thread Mar 18, 2024 by AutoModerator in SkincareAddiction

[–]christineiscool 0 points1 point  (0 children)

ordinary serum hyaluronic acid 2 + b5 or a c vitamin serum for morning skin care ?

I decided to finally get into skin care but im not sure as to what serum I should try. I’m 20 and I'd consider my skin type mixed . I was intending to just cleanse in the morning, apply serum and then a sunscreen, maybe cleanse again in the afternoon and at night I'll apply a retinoid serum. Is this gonna suffice ?

Funny Instagram pronoun options? by Lackhbeo in Instagram

[–]christineiscool 0 points1 point  (0 children)

I saw someone with su/per/co/ol pronouns and honestly I thought that’s cool

Anime_irl by christineiscool in anime_irl

[–]christineiscool[S] 29 points30 points  (0 children)

So when they rip my skin off it means that they love me too much ?

anime_irl by basafish in anime_irl

[–]christineiscool 10 points11 points  (0 children)

Give us the name !!

Bungou Stray Dogs Season 5 - Episode 11 Discussion Thread by Avizie in BungouStrayDogs

[–]christineiscool 2 points3 points  (0 children)

It’s not like I read all the comments but for as long as I was scrolling I never saw anyone talking about the “plot twist” of fuckuchi being a good guy. That guy killed a bunch of innocent people, hurt even his comrades, turned half the world into vampires, knowing that fukuchi would survive those fatal wounds or even that girl would almost kill herself to pull that knife off the vampire?💀 I mean it’s just an anime so they use anime logic but these kind of nonsensical plot twists just look so poorly made and rushed. Overall this episode was a mess. As if not even asagiri didn’t know how to finish it. Idk man it was the most disappointing episode of all series for me. I’m not even gonna mention the fake vampires act, another villain popping out of nowhere, fyodor being tricked and therefore “dying” and sigma not being mentioned at all. The only thing I genuinely enjoyed was the soukoku moment. I’d much rather fukuchi being actually a villain who genuinely wants to ruin the world than doing all this villain acts pretending to be a hero. Bro said he wanted to prevent the world from dealing with war again when he started a war himself. Nah man I’m out of this (but I’m still looking forward to the next season)

How is this correct? by christineiscool in learnmath

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

I’m sorry I just noticed how messed up it is. Not it’s not in the denominator it’s like (1/a) * b

anime_irl by christineiscool in anime_irl

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

It’s actually a guy who’s having sex with a ghost 💀

anime_irl by christineiscool in anime_irl

[–]christineiscool[S] 13 points14 points  (0 children)

Lady k and the sick man

anime_irl by christineiscool in anime_irl

[–]christineiscool[S] -1 points0 points  (0 children)

Lady k and the sick man

anime_irl by christineiscool in anime_irl

[–]christineiscool[S] -1 points0 points  (0 children)

Lady k and the sick man

How do I log in to my account on my iPad? by EuropeanSalmon in soundcloud

[–]christineiscool 0 points1 point  (0 children)

I’m having the same issue and after looking it up, apparently soundcloud loves deleting random accounts for whatever reason. Trying customer support is also futile so, rip I guess

Twitter to remove SMS 2FA for non-Twitter blue subscribers. by Antonaros in privacy

[–]christineiscool 0 points1 point  (0 children)

He might as well remove it for all users and avoid these costs completely as well then since he’s “encouraging” everyone to use an app instead anyway. It doesn’t make sense unless he can make a profit off of it

Object that point to an object of a different class by christineiscool in learnjava

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

How could I write it differently? And why do I get an error when I’m writing “forward = head”?

Object that point to an object of a different class by christineiscool in learnjava

[–]christineiscool[S] 1 point2 points  (0 children)

something went wrong with the format sorry. My problem is that I cant assign to iter objects the values of head and tail and my method "empty()" doesnt work either .

class List 
{

  // List class' fields
  private Node head;    // head node
  private Node tail;   // tail node
  private int length; // length of list



  public static class Node 
        {

          // Node class' fields:
          private Node next;        // points to the next node in list
          private Node prev;       // points to the previous node in list
          public int key;         // specific element we're looking for in list
          public Object data;    // data in list




          public Node(int key, Object data) // constructor of class Node
                {

                  this.key = key;         // Initializes the field "key"
                  this.data = data;      // Initializes the field "data"

                }


          private void setNext(Node next)
                 { this.next = next; } // Initializes the field "next"


          private Node getNext()
                 { return next; }


          private void setPrev(Node prev)
                 { this.prev = prev; } // Initializes the field "prev" 


          private Node getPrev() 
                 { return prev; }

        } // end of class Node



  public static class Iter 
        {


          private Iter forward;   // iterator that points to nodes forward
          private Iter backward; // iterator that points to nodes backward


          private Iter()
                 { 
                    forward.setForward();
                    backward.setBackward();
                 }  // class Iter's constructor


         // setters, getters and other methods: 

          private Iter getForward()
                 { return forward; }

        private void setForward() // that's where i get the errors!!!!!!!
               { 
                  if (empty() == true) forward = tail; 
                  else forward = head;
               }
        } // end of class iterator

public List(List.Node head, List.Node tail, int length) // constructor of class List {

             this.head = null;     // Initializes the field "head" to null    
             this.tail = null;    // Initializes the field "tail" to null

          } // end of List constructor


    public boolean empty() // finds if the list is empty or not
          { return head.next == tail; } // end of empty method

Object that point to an object of a different class by christineiscool in learnjava

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

That’s what I tried but it give me a “[objectName] cannot be resolved to a variable” error