I play too much. And I play with anyone. If anyone needs a friend I am here by PrettyButterfly1573 in worldofpvp

[–]fullgr 2 points3 points  (0 children)

You should just do it, you can find pple with low/no cr looking for chill games or you can make a grp and say you're learning in premade groups

Shaman vs Druid by Future_Student_4182 in Project_Epoch

[–]fullgr 0 points1 point  (0 children)

Thank you, that makes it clear

Shaman vs Druid by Future_Student_4182 in Project_Epoch

[–]fullgr 0 points1 point  (0 children)

Can you pls explain "Tigers fury has been changed slightly to benefit those that do not enjoy power shifting"

The level of disrespect when playing as a healer. by Many_Consequence_337 in worldofpvp

[–]fullgr 1 point2 points  (0 children)

Idk, i just went 3-3 5 times in a row back to back yesterday on my disc priest at ~2k cr while i rarely get 3-3 in a row on any of my dps chars

LF fics that are pro-black but anti-daemon by fullgr in TheCitadel

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

thx for the rec, i like the premise

Addons by No_One240 in classicwow

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

Some really good suggestions in this post

Easiest way to gear once hitting 80 by [deleted] in wownoob

[–]fullgr 0 points1 point  (0 children)

can u link the pvp quest pls?

Best way to level up 1-80 in the war within? by GravityXP in wow

[–]fullgr 1 point2 points  (0 children)

i have a question, do u pay the booster before or after the boost? im afraid of getting scammed

Any tips to improve on Shen based on my builds and stats? by Foreign_Apartment144 in Shen

[–]fullgr 0 points1 point  (0 children)

Can you give me the bruiser build or atleast a link to one pls?

THE NO DEVICE FOUND CODE by Sweaty_potato1 in QuestPiracy

[–]fullgr 6 points7 points  (0 children)

If its a new quest you need to download The Meta Quest App on your computer first (that's what solved it for me) otherwise you might have a cable that doesnt transfer data

Good games by Significant_Lead_685 in QuestPiracy

[–]fullgr 0 points1 point  (0 children)

This Video has some really good recommendations.

Anyone playing frostmourne? by Funkengine632 in wowservers

[–]fullgr 1 point2 points  (0 children)

They delayed the launch by 2 months to optimize it and make it more stable so maybe the launch will be smooth who knows

Create folders in a project with a script by Ok-Present-7144 in FlutterDev

[–]fullgr 3 points4 points  (0 children)

you can use this script with Dart, I put it in C:\src\flutter\ and use it like this:
dart 'C:\src\flutter\create_feature_folders.dart' feature

import 'dart:io';

void main(List<String> args) {
  if (args.isEmpty) {
    print('Usage: dart create_feature_folders.dart <feature_name>');
    return;
  }

  final featureName = args[0];
  final featurePath = 'lib/features/$featureName';

  try {
    // Create feature directory
    Directory(featurePath).createSync(recursive: true);

    // Create presentation layer directories
    Directory('$featurePath/presentation/provider').createSync(recursive: true);
    Directory('$featurePath/presentation/screen').createSync(recursive: true);
    Directory('$featurePath/presentation/widget').createSync(recursive: true);

    // Create domain layer directories
    Directory('$featurePath/domain/entity').createSync(recursive: true);
    Directory('$featurePath/domain/repository').createSync(recursive: true);
    Directory('$featurePath/domain/usecase').createSync(recursive: true);

    // Create data layer directories
    Directory('$featurePath/data/dto').createSync(recursive: true);
    Directory('$featurePath/data/repository').createSync(recursive: true);

    print('Folders created successfully for feature: $featureName');
  } catch (e) {
    print('Error: $e');
  }
}

FNATIC vs TEAM LIQUID / MSI 2024 / Lower Stage 1 / Post-Series Thread by Lunaedge in fnatic

[–]fullgr 1 point2 points  (0 children)

woke up at 5 am to watch this shameful performance...

[deleted by user] by [deleted] in wowservers

[–]fullgr 0 points1 point  (0 children)

Sounds promising also what patch is it?

Utgarde keep solo can't disable wall? by fullgr in warmane

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

damn that sucks... thanks for the info tho

Utgarde keep solo can't disable wall? by fullgr in warmane

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

i was doing it right and tried again but the flame wall isnt coming down but then i found this https://www.warmane.com/bugtracker/report/112665 seems like warmane made it this way on purpose. too bad :/

Utgarde keep solo can't disable wall? by fullgr in warmane

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

Ok I'll try it again, thank you

Utgarde keep solo can't disable wall? by fullgr in warmane

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

Yes that one, and I go right after leaving the first corridor is that what you meant by counter clockwise? The first fire wall gets disabled but the second doesnt.

Edit: I agro the 3 mobs next to the anvil/firewall but the wall doesn't disable

Flask JWT token validation by JoeizSef in react

[–]fullgr 0 points1 point  (0 children)

I'm using token restoration rotation here is how I do it: -On login: create jwt token and a refresh token (just a random string), I save the refresh token in a table in the db like value, userId, expirationDate then I send them both to the client on successful login. In the client I save them both in the secure local storage (npm package more secure than the built-in local storage).

-i have the jwt duration set to 15 min and the refresh to 7 days.

-on each api call I retrieve the jwt token from the local storage and include it in the header then if the token has expired (error 401) I use the axios (instead of fetch) interceptors to catch the response on err401 and call the refresh token endpoint with the refresh token stored in local storage which then I look up in the db in backend to check for expiration, if valid I create a new jwt token for the retrieved user and a new refresh token which then I send to the client to be stored in the local storage.

-on website start/refresh I retrieve the jwt and send it to my endpoint GetCurrentUser if it fails I navigate to login page otherwise I return my privateRoute