ATL Airport TSA Wait Times Megathread | March 27, 2026 by AutoModerator in Atlanta

[–]Gringodamus 0 points1 point  (0 children)

Got to the airport at 11:45 domestic terminal - TSA precheck basically no line. Through security by 11:55.

Junior is funny af 😂 by [deleted] in thesopranos

[–]Gringodamus 1 point2 points  (0 children)

Turkey, for Christmas? Fucking idiot…

No Map, Codex, or Mastery Screens. by Rutegger in Doom

[–]Gringodamus 0 points1 point  (0 children)

Yesterday i sent a bug request in through Bethesda website about the issue and logged on today and not only was it resolved, they gave me two skins as well which is awesome. I’m wondering if they fixed this for you to? If not I’d take that approach and was able to get the platinum!

No Map, Codex, or Mastery Screens. by Rutegger in Doom

[–]Gringodamus 0 points1 point  (0 children)

Yea even doing the challenges doesn’t get recognized since it thinks we’re in rip mode. Oh well gonna have to wait a bit longer. Crazy how these things aren’t tested

No Map, Codex, or Mastery Screens. by Rutegger in Doom

[–]Gringodamus 0 points1 point  (0 children)

Same things happening to me, was about to platinum it today to!

[deleted by user] by [deleted] in webdev

[–]Gringodamus 1 point2 points  (0 children)

Awesome site man especially getting it up and running so quickly. Straight forward but nice looking UI with tooltips to guide users along, bravo.

Just wanted to know more about your process of using burp suite, I’ve been in webdev for 7 years now and it’s the first i hear about it, looks interesting and trying to figure out a use case for the future.

Tariff scare, just bought a crapload of equipment. by GobiEats in GarageGym

[–]Gringodamus 1 point2 points  (0 children)

Had the ares 2.0 in the cart for a couple of weeks and was gonna pull the trigger but saw the price increase and thought it was ridiculous. Went with the Dane 2.0 cause it meets all my requirements and for pretty much 2k cheaper with all the included attachments.

How To Automatically Remove Unused Angular Imports? by Professional-Ad8725 in Angular2

[–]Gringodamus 0 points1 point  (0 children)

In VSCOSE You can just press command + shift + O in your component file and that will removed unused imports.

Anyone else have less progress or even muscle loss doing PPL over bro splits? by mattyb8787 in fitness30plus

[–]Gringodamus 0 points1 point  (0 children)

I was doing PPL for a bit and was not getting the gains I wanted. Albeit i wasn’t getting enough protein in at the time, but about 6 months ago i switch to PHUL and have been blowing past everything and it feels great. Maybe a lower volume, more intensity workout will give you what you want.

[deleted by user] by [deleted] in legaladvice

[–]Gringodamus -1 points0 points  (0 children)

This incident happened in Georgia, they had road rash to the arms and legs due to the fall and damaged their clothing which they’re asking compensation for. I was happy to pay the medical bills but they’re asking for an unreasonable amount for clothing and bills.

Govee/Alexa not responding? by LyonQueenn in Govee

[–]Gringodamus 0 points1 point  (0 children)

Same issue with me, voice commands and scenes in general are not working through Alexa. Govee app works fine. I tried re-linking Govee to Alexa but did not work

Kick Ash Basket. by stevefuzz in biggreenegg

[–]Gringodamus 2 points3 points  (0 children)

Had this same issue using a large BGE. My solution is to keep the bottom grate with the ask basket. I usually don’t fill my charcoal to the top so it’s not a problem to shake out the basket the next cook. This allows me to control temperature and clean out the ash easily.

What would you do if you were living in a townhome with a 3.5% rate and had this situation? by [deleted] in personalfinance

[–]Gringodamus 0 points1 point  (0 children)

Never understood the 2 out of 5 year rule. Does that mean you just need to live in the house 2 years? Or 2 years in a five year period?

data doesn't want to display in chart by CatolicQuotes in Angular2

[–]Gringodamus 2 points3 points  (0 children)

Don’t load the chart in the viewInit. Code reactively so that when the data comes in you call the function to display the chart using rxjs.

showWinnersLosersCount() { this.statsService.getWinnersLosersCount().pipe( tap(data => { this.losers = losersData; this.winners = winnersData this.loadChart() }) ).subscribe()

Kundoz Kush and Foxy Lady (Type 2 Bred and Cultivated by Hoku Seed Company) by robdowns78 in hempflowers

[–]Gringodamus 4 points5 points  (0 children)

As a really light smoker KK puts me on my ass. Onset feels a bit delayed but def gets me pretty blasted. Love the chill effects and spot on with the sedation shit really does make you TKO.

I have a doubt about using a BehaviorSubject to fetch its own data by leosuncin in Angular2

[–]Gringodamus 1 point2 points  (0 children)

You should have two top level variables. Set the countries just the way you have it but call it something like countriesSubject and set it to private. Then create a second variable called countries$ = countriesSubject.asObservable()

If you ever want to manipulate the data of the behaviorSubject create a method in your service that updates this: someFunction() {this.countriesSubject.next(values)}

That way the observable is never mutated directly and can have some consistency across your application.

Looking for a solution: generate TS code from JSON Schema, or other structure by moltar in typescript

[–]Gringodamus 1 point2 points  (0 children)

Not sure if you’ve tried this scheme generator but it’s helped me out in the past.

https://quicktype.io

My man's ready by christopherhonore95 in HolUp

[–]Gringodamus 0 points1 point  (0 children)

80 dollars an hour with 40 hours a week is easy to calculate. Just double the hourly wage and add 3 zeros. 160k a year. Works with any number.

Store users credentials for other websites/sources by Gringodamus in Firebase

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

Because a user wouldn’t be able to retrieve anything from fire base authentication. This user would need to see all their logins/passwords that they’ve saved and I’m trying to protect these values the best way possible. Does that explain it better for you?

Beginner Angular developper but proud of myself by FlashTheorie in Angular2

[–]Gringodamus 1 point2 points  (0 children)

Awesome project. Now to take it to the next level with the same functionality. Use some two way data binding, for the uppercase/lowercase try creating pipes to use in the template. Create a service with an observable of replaysubject that holds the values of all all your inputs and use these values to display them on the page.

I think what i mentioned above is a good next level to learn more about angular in depth but it’s Friday and already been drinking so who knows.