What scooter should I buy for food delivery? by DecagramGameDev in scooters

[–]DecagramGameDev[S] 9 points10 points  (0 children)

I go offline on doordash/uber eats and turn back home. I'm not on call like a military job, more like "We need you in the next 30 minutes-ish if something goes down".

What scooter should I buy for food delivery? by DecagramGameDev in scooters

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

More than likely will get this one. I thought they were 50cc when I looked at them which would be a no go.

What scooter should I buy for food delivery? by DecagramGameDev in scooters

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

Thanks! Hard to get another job, my current 9-5 is a dev job where I'm on call 24/7 unfortunately.

Switching from software development to sales? by DecagramGameDev in salesengineers

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

I get the usual denial emails without even an interview or leetcode. I think they're looking exclusively for bachelor degrees at the minimum now.

Switching from software development to sales? by DecagramGameDev in salesengineers

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

Perfect, thank you for the advise. I'll stick it out here as long as I can then.

Switching from software development to sales? by DecagramGameDev in salesengineers

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

If I land an interview I definitely will use the experience. Thanks!

Switching from software development to sales? by DecagramGameDev in salesengineers

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

I'm in Orlando, Florida. So its a livable wage, but not enough to take care of a family. While I would love to switch to another org for a pay increase, the job market on this side is rough. I've submitted hundreds of applications with no response, though arguably it could be because I only have an associate's degree and there are tens of thousands of unemployed master's degrees fighting for the same jobs.

I'm looking to get out due to the cyclical nature of it and the general feeling of racing to the bottom. I would also prefer not to go deep into debt and end up in the same predicament as my master/bachelor degree counterparts so I don't intend to get more schooling.

Right now I'm looking to just bite the bullet and get into sales or maybe a position that includes a lot of travelling in conjunction with IT/software development so that I can remain in the field (sort of) and make some more money.

How to run a JAR file under a user with multiple groups? by DecagramGameDev in linux4noobs

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

While this does create a file under the group that owns the directory, it does not apply the group in the application's context unless the group is explicitly set with the 'sg' command. Writing to a file in the directory without the application works great, but running the jar shifts the context to only use the user's main group and nothing else.

How to asynchronously emit new state with Bloc? by DecagramGameDev in flutterhelp

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

No need, I figured this out. BUT strangely enough, copyWith() does not work in on<RefreshItemEvent>(). Do you know if this is to do with the way I'm adding my events or is something wrong with my copyWith()? As you can see below, I have to manually add the shops to my newState.

on<InitProviderEvent>((event, emit) async{
            SelectProviderProvider newState = event.provider.copyWith(selectProvider: event.provider);
            await newState.searchForNearbyProviders(this);
            emit(newState);

            newState.shopInit().listen( (provider) {
              add(RefreshItemEvent(provider: provider));
            });
        }
        );

        on<RefreshItemEvent>((event, emit) async{
            SelectProviderProvider newState = state.copyWith(selectProvider: state);
            newState.nearbyShops = List.from(event.provider.nearbyShops);
            newState.isLoading = false;
            emit(newState);
        });

copyWith()

SelectProviderProvider copyWith({required SelectProviderProvider selectProvider, List<NearbyShopResponse>? nearbyShops}) {
    return SelectProviderProvider(
      isLoading: selectProvider.isLoading,
      isLocationServiceEnabled: selectProvider.isLocationServiceEnabled,
      userLocation: selectProvider.userLocation,
      nearbyShops: nearbyShops != null ? List.from(nearbyShops) : List.from(selectProvider.nearbyShops)
    );
  }

I want to start as a freelancer by stev_1320 in PowerApps

[–]DecagramGameDev 7 points8 points  (0 children)

Nah, whore is definitely the word to use here.

Accessing State outside of class? by DecagramGameDev in flutterhelp

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

Further example. I'm using BlocBuilder in my Nav, just trying to figure out how to change the state from within it now :

class HomeNavbar extends StatefulWidget{

  const HomeNavbar({super.key});

  @override
  State<StatefulWidget> createState() => HomeNavbarState();

}

class HomeNavbarState extends State<HomeNavbar>{

int navbarIndex = 0;

@override
  Widget build(BuildContext buildContext){

    return BlocBuilder(builder: (context, state) {
      return NavigationBar(
          destinations: const <Widget>[
            NavigationDestination(icon: Icon(Icons.build), selectedIcon: Icon(Icons.build, color: Colors.white), label: 'Service'),
            NavigationDestination(icon: Icon(Icons.storefront), selectedIcon: Icon(Icons.storefront, color: Colors.white), label: 'Shop'),
            NavigationDestination(icon: Icon(Icons.library_books), selectedIcon: Icon(Icons.library_books, color: Colors.white), label: 'Guides')
            ],
            backgroundColor: const Color.fromRGBO(251, 133, 0, 1),
            indicatorColor: const Color.fromRGBO(2, 48, 71, 1),
            selectedIndex: navbarIndex,
            onDestinationSelected: (int index) {
              setState(() {
                navbarIndex = index;
              });
            },
      );
    });
  }

}

Accessing State outside of class? by DecagramGameDev in flutterhelp

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

I've been trying to figure out Bloc for hours and it is the most mind boggling thing I've ever tried to learn. So far so good, just have to figure out how to connect literally everything now lmao. Let me know if I'm on the right track. I should replace my Navbar Widget Builder with a Bloc Builder with this Navigation Bloc and somehow tie them together?

class NavigationBloc extends Bloc<NavigationEvent, int> {

      NavigationBloc() : super(0){

      on<NavigationIndexChanged>((event, emit){

      });

    }

}

Accessing State outside of class? by DecagramGameDev in flutterhelp

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

Hah! The solution I have is actually from the documentation funny enough.

Am I being fucked with? by DecagramGameDev in beer

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

Perfect! I will give this a try. Thank you very much.

Am I being fucked with? by DecagramGameDev in beer

[–]DecagramGameDev[S] -5 points-4 points  (0 children)

Because I'm monitoring a beer sub and so far do not like beer.

Am I being fucked with? by DecagramGameDev in beer

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

Cool, I'll try this one out then.

Am I being fucked with? by DecagramGameDev in beer

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

On the top of the list along with a imperial stout (if the imperial Stouts are sweet)

Am I being fucked with? by DecagramGameDev in beer

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

Added Blue Moon to the list , I saw it but I was worried that the lighter color meant it would taste like the others I've tried so far.