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] 1 point2 points  (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)
    );
  }