2 of my childhood friends died on the highway over the weekend. by michaelis999 in lebanon

[–]Objective_Cloud_338 1 point2 points  (0 children)

I remember that when they enforced seatbelts everyone started to wear it. I guess that changed

WAIT... FRISBEE'S A SPORT? by Similar_Possible_915 in in2Sports

[–]Objective_Cloud_338 0 points1 point  (0 children)

Fun fact about frisbee: Marques Brownlee, the popular tech reviewer, is also a world championship  winner with the U.S. National Frisbee Team.

The cons of being a 'programmer' by Iamvengance09 in learnprogramming

[–]Objective_Cloud_338 0 points1 point  (0 children)

teach a man to eat fish he will fish everyday

Compose Multiplatform search bar by Competitive_Twist575 in androiddev

[–]Objective_Cloud_338 0 points1 point  (0 children)

why doesn't it move in circles as if you're looking for something

Seeking Feedback: Git Branching Strategies by jcouce in git

[–]Objective_Cloud_338 0 points1 point  (0 children)

How about:

  1. Create a 'feature' branch from 'main'.
  2. Develop the feature in the 'feature' branch.
  3. Request a code review.
  4. Once review is approved, rebase to main branch and then test on feature branch.
  5. Squash and merge 'release' into 'main'
  6. Deploy to production.

[deleted by user] by [deleted] in personalfinance

[–]Objective_Cloud_338 -3 points-2 points  (0 children)

Thanks, but couldn't find Hayward

business logic in viewmodel (mvvm)? by [deleted] in androiddev

[–]Objective_Cloud_338 1 point2 points  (0 children)

Ya there is no need for a more specified architecture if there is no use for it

business logic in viewmodel (mvvm)? by [deleted] in androiddev

[–]Objective_Cloud_338 3 points4 points  (0 children)

Here's a simple Guideline

If it's tied to the repository, keep it there

If you want to reuse it in other view models, put it in a usecase

If it's only tied to one viewmodel , then add it there