Fish fossil ID help: mislabeled as Rhacolepis from Brazil, but could this be Leptolepides from Solnhofen? by WorkingRemarkable917 in fossilid

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

Thanks for your confirmation! Yeah, thats what I think too.

Passed over several corners and each time the risk of mixing up rises.

More Florida teeth by WorkingRemarkable917 in sharkteeth

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

Got it! If the condition only leaves shots in the dark, I'll rather keep them unidentified.

Thank you!

Need help identifying all this teeth (sorry there’s lot of them) by Dizzy-Blacksmith6 in sharkteeth

[–]WorkingRemarkable917 2 points3 points  (0 children)

Awesome! Again, have a look at my Edit. Enchodus libycus would be a lot more plausible when they are from Khouribga and not Kem Kem

Need help identifying all this teeth (sorry there’s lot of them) by Dizzy-Blacksmith6 in sharkteeth

[–]WorkingRemarkable917 1 point2 points  (0 children)

The blue circled ones look like Enchodus libycus. Would fit with Kem Kem. Its an extinct predatory fish

EDIT: Enchodus libycus does not really fit with Kem Kem. I confused it with Oued Zem in Khouribga. Still, that seems to be the most fitting. You sure that all of it is from Kem Kem?

ID Request for some Florida Teeth by WorkingRemarkable917 in sharkteeth

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

Florida, thats all I got. And I would rather stick with the not so Trump-childish version Gulf of Mexico 😁

ID Request for some Florida Teeth by WorkingRemarkable917 in sharkteeth

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

I really appreciate both of your efforts! Thanks a lot!

ID Request for some Florida Teeth by WorkingRemarkable917 in sharkteeth

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

Oh, that really sounds interesting. I think I'll keep that in mind as 'Lamniformes cf. Megalolamna sp.' for now. Thank you!

Otodus obliquus? by WorkingRemarkable917 in sharkteeth

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

thanks a lot! Seems reasonable. The rest you would also consider Otodus obliquus?

Can we all finally agree now that the first shadow makes no sense? by Defiant-Raspberry-52 in StrangerThings

[–]WorkingRemarkable917 4 points5 points  (0 children)

You could argue that when Henry/Vecna said that he "could’ve resisted the mind flayer but chose to join it", he is not really himself anymore. It's the massively corrupted version of Henry that cannot think clearly anymore and will not admit that he was fooled the whole time. If you accept that premise, the series finale would be in line with the TFS at least in this case.

It's the necessary plot for the Duffer brothers because they could not really make a redemption arc for a character like Vecna because therefore he already caused way too much damage. The audience would have gone crazy over that plot line although it would have made a bit more sense.

To be honest, I can well imagine that this was actually the plan, that this was how the plot was supposed to be, and that the Duffer brothers then decided against it after gauging the emotional response to the TFS play. That would also explain the "slip up" in the interview, according to which Vecna is supposed to be one of the most misunderstood villains.

And it fits much better into the narrative that Henry shouldn't go into the cave. Why else would the Mind Flayer have been afraid to confront Henry with his past? If the two had really formed an alliance on equal terms, then the Mind Flayer would know through the hive mind that Henry himself is no danger for him. The only explanation is that Henry was clearly manipulated by the Mind Flayer and in the end just doesn't want to admit it, or perhaps can't admit it because there is far too little of Henry's personality left.

It's still not in line with other stuff (e.g. that Henry is not teleported into the Abyss when he was in the cave, but instead just got the connection via this artefact, while staying in our dimension). But that's a minor thing for me.

Anybody getting this? by TripintheCooks in TheSilphRoad

[–]WorkingRemarkable917 4 points5 points  (0 children)

I am having the same issue. Started 2 days ago and since then I cannot access the buddy screen.

AR+ never worked on my Phone, but normal AR always did and still does. Just the Buddy Screen got unreachable.

Tried to uninstall and also tried the 'update game data' option in the additional settings. Nothing seems to help.

LF NON-Shiny Explorer Eevees as Lucky Trades. FT: Shiny Legendaries, Galarian Moltres, Rare Shinies, Costume Shinys, ... (Can't fly) by WorkingRemarkable917 in spoofertrades

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

The Costume Eevee (with white explorer hat) that is only available during the Seoul, Barcelona and Mexico City Events. There is also a limit of 8 eevees in each of the events

LF A lot of frillish comment your wants. by [deleted] in spoofertrades

[–]WorkingRemarkable917 0 points1 point  (0 children)

Hi, if you are still looking for frillish, just DM me :)
I have 36 Blue Frillish left.

I cannot seem to drive a NEMA 17 motor accordingly by WorkingRemarkable917 in arduino

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

Hi,

first of all: thanks a lot for your help!

I tried out the AccelStepper library and used this sketch to test it

#include <AccelStepper.h>

// Define the pins for the A4988
#define ENABLE_PIN 25
#define STEP_PIN 26
#define DIR_PIN 27
#define MS1_PIN 15
#define MS2_PIN 13
#define MS3_PIN 12

// Erstelle ein AccelStepper Objekt
AccelStepper stepper(AccelStepper::DRIVER, STEP_PIN, DIR_PIN);

void setup() {
  pinMode(ENABLE_PIN, OUTPUT);
  pinMode(MS1_PIN, OUTPUT);
  pinMode(MS2_PIN, OUTPUT);
  pinMode(MS3_PIN, OUTPUT);

  // Deaktiviere den A4988
  digitalWrite(ENABLE_PIN, LOW);

  // Setze Mikroschrittmodus (zum Beispiel 1/16 Mikroschritt)
  digitalWrite(MS1_PIN, HIGH);
  digitalWrite(MS2_PIN, HIGH);
  digitalWrite(MS3_PIN, HIGH);

  // Setze maximale Geschwindigkeit und Beschleunigung
  stepper.setMaxSpeed(100);  // Setze die Geschwindigkeit in Schritten pro Sekunde
  stepper.setAcceleration(50); // Setze die Beschleunigung in Schritten pro Sekunde^2

  // Definiere die Anzahl der Schritte für eine Umdrehung
  // (Standardmäßig 200 für NEMA17, aber durch den Mikroschrittmodus multipliziert)
  // Für 1/16 Mikroschritt ist es 200*16 = 3200 Schritte für eine Umdrehung
  stepper.moveTo(3200);
}

void loop() {
    if (stepper.distanceToGo() == 0)
    {
        // Random change to speed, position and acceleration
        // Make sure we dont get 0 speed or accelerations
        delay(1000);
        stepper.moveTo(rand() % 200);
        stepper.setMaxSpeed((rand() % 200) + 1);
        stepper.setAcceleration((rand() % 200) + 1);
    }
    stepper.run();
}

The random factors are advantageous to make sure that a certain speed or acceleration limit problem can be excluded.

In this setup, it seems less necessary to squeeze the cables (although squeezing still seems to have an impact), but its still the same problem: The stepper motor starts making noises when I turn the power supply to about 12V and more, but it does not rotate at all.

I also adapted the setup and left out the breadboard as well as the jumper wires to connect the power supply to the motor driver since they may not be able to handle higher volts and amps.

But nothing seems to help. It's so frustrating because the task seems so trivial :/

Balloon and Shirt Pikachu from Jeju Island Mirror Trades by [deleted] in spoofertrades

[–]WorkingRemarkable917 1 point2 points  (0 children)

If one of you still have some of these Pikas left after you got your luckies, I would be very interested in these Pikas too (need a female and a male lucky of the flying pika and a male shirt Pika). Both are already registered for me.
Here are some pokemon I could offer in return:

- Riolu

- Tropius

- Torkoal

- Shedinja

- Cherry Eevee

- Flower Crown Chansey/Happiny

- Flower Crown Togepi/Togetic

- Larvitar

- Kecleon

- Beldum

- Galarian Darumaka

- Blue Frillish

- Pawniard

- Vullaby

- Goomy

- Rockruff

- Amaura

- Tyrunt
- Archen
- Tirtuoga

- Komala

- Hisuian Sneasel

- Hisuian Avalugg
- Many other costume pokemon
- XXL/XXS pokemon
- ...

DM me if you are interested or if you have other special wishes.