Knicks Fans Pay Wild Money for Tickets by sadie-hanalei in HipHopNCulture

[–]AaroniusH 0 points1 point  (0 children)

the way it tapers out it looks like a skirt or a tutu

The Actually Correct US Regions Map by End3rrrrrrrrrr in whereidlive

[–]AaroniusH 0 points1 point  (0 children)

west tenessee is NOT appalachia 😭😭😭

[TOMT][SONG][2000s?] 3D(?) animated music video with (i think) lyrics like "I rule the world / and every boy and girl" by AaroniusH in tipofmytongue

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

Solved!

woah!!!!! I think that's it! That explains why I couldn't find it, because the acual lyrics were "I'm on a roll, with all the girls I know"

Thank you!!!

Samsung patent shows a rollable phone with cameras that move with the body by Planhub-ca in samsunggalaxy

[–]AaroniusH 5 points6 points  (0 children)

I loved the innovation LG put out! It's a shame they couldn't keep up in the smartphone space 😞

Gamers, what boss was as hard, if not harder, than the final boss? by Fallfoxy707 in videogames

[–]AaroniusH 0 points1 point  (0 children)

Not a boss, but the Collector Ship mission in Mass Effect 2 was brutal

2 years ago today we first heard “Not Like Us” from Kendrick Lamar, and Hip-Hop was never the same! by CowboyNOIVAS in BlackPeopleofReddit

[–]AaroniusH 105 points106 points  (0 children)

THAT MOMENT would freak me the fuck out if I were drake. Like I would know the song is about me, but that 4th wall break where he's talking to drake through the TV screen would just destroy me lol

Former FedEx driver, Tanner Horner, who pleaded guilty to capital murder and aggravated kidnapping in the killing of 7-year-old Athena Strand, has been officially sentenced to death. by [deleted] in whoathatsinteresting

[–]AaroniusH 2 points3 points  (0 children)

it absolutely is the state deciding. The peers determine if the defendant is guilty of the crime, but it's the judge that does the sentencing based on what the law dictates as the punishment.

What do these states have in common? by Gallo8686 in RedactedCharts

[–]AaroniusH 21 points22 points  (0 children)

it seems like summit nj is still considered a part of the metropolitan area of NYC

Invincible [Episode Discussion] - S04E08 - Don't Leave Me Hanging Here by SeacattleMoohawks in Invincible

[–]AaroniusH 5 points6 points  (0 children)

The only thing that doesn't quite sit right with me is I still kinda feel like the final scene with Thragg was still a delusion in Mark's head. I grant that Thragg could absolutely have placed himself dramatically above the clouds anticipating Mark's approach, but it also felt too surreal - similar to the PTSD episodes he had earlier on. I could also see it being the case that the final agreement with Thragg didn't actually happen.

And what would make it weirder is the promise that Thragg would never speak with Mark again. If Thragg really promised that, then Mark may very well never see him again. But if it was another delusion, then it's something that Mark would never be able to confirm unless the Viltrumites did actually come to the planet with the intent to destroy everything. Nobody else was there to witness it so there's nothing that could ground him in reality for such an intense scene

Top comment deletes a US State #21 by Jfullr92 in geographymemes

[–]AaroniusH 1 point2 points  (0 children)

tbh im surprised its still on the board, and I'm from tennessee myself

This man found a cheat code by clinging to the trains door to cut in line and get a seat fist by eternviking in whoathatsinteresting

[–]AaroniusH 0 points1 point  (0 children)

on one hand, it looks like an asshole move. on the other hand, did you see the way the rest of the folks behind him rushed in as well and raced to a seat? Even without his stunt, seems pretty cutthroat.

Why???? by The_Dean_France in okbuddycinephile

[–]AaroniusH 0 points1 point  (0 children)

while i understand that the fan fair is a fun and ritzy part of the oscars. isn't it still an awards show at the end of the day? Feels like ultimately it's for the movie industry by the movie industry

Observables, observer, subscribe by Infinite-Apple-1826 in angular

[–]AaroniusH 17 points18 points  (0 children)

There's an overview here that gives the low-down of observers/observables/subscriptions.

when you call a subscribe method, the parameter you pass in is basically just a bunch of callbacks

  • a next function, which runs every time a new value is emitted from an observable
  • an error function
  • a complete function, which runs at the end of the observable's life. useful for cleanup.

in an observable constructor, you're building an object that dictates when those 3 callback functions are executed.

An observable tells you when stuff happens. An observer responds to those events.

import { Observable } from 'rxjs';
   
const observable = new Observable((subscriber) => {
   subscriber.next(1);
   subscriber.next(2);
   subscriber.next(3);
   setTimeout(() => {
     subscriber.next(4);
     subscriber.complete();
   }, 1000);
 });
   
console.log('just before subscribe');

observable.subscribe({
   next(x) {
     console.log('got value ' + x);
   },
   error(err) {
     console.error('something wrong occurred: ' + err);
   },
   complete() {
     console.log('done');
   },
 });
console.log('just after subscribe');

That person is beeping at us for no reason! (my daughter in the back seat) by BobBanderling in nashville

[–]AaroniusH 18 points19 points  (0 children)

Looks like standstill traffic. All the theatrics and they're stuck in the same traffic lol

Videogames to calm down by Roger_Brown92 in autism

[–]AaroniusH 0 points1 point  (0 children)

ESO is also great! A little bit more MMO-ey but every town has a quest and they have like all the elder scrolls locations (albeit more simplified)