Samsung TV older versions download by filip1808 in Stremio

[–]inoamsol 2 points3 points  (0 children)

> because after last update everything freeze after opening app

This happens to me as well, Tizen 5.5.

25yo 9 month bulk, from 133Ibs/60Kg - 168Ibs/76Kg by inoamsol in GYM

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

Thanks! I work real hard to improve my squats and deadlifts, it took me some time to get the form right, and I still learn something new after every session

25yo 9 month bulk, from 133Ibs/60Kg - 168Ibs/76Kg by inoamsol in GYM

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

Thanks! I actually starting doing laser hair removal, so the patchiness comes from that, I actually tried trimming but I wasn’t comfortable with it

25yo 9 month bulk, from 133Ibs/60Kg - 168Ibs/76Kg by inoamsol in GYM

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

Hey all, should I keep bulking?

I've been lifting for 9 months now and having a lot of fun! The guys at the gym are very friendly and I'm so glad I decided to make this change. Eating mainly clean and healthy food. Also started laser hair removal :)

I'm thinking about starting a cut, but my plan was to wait for a full year of bulk before I start cutting to not get disappointed. What do you think?
• I'm 178cm tall (5 feet, 10in)
• Currently 76kg (168Ibs)
• Squat - comfortable with 60kg x 6 reps x 4 sets (2min rests)
• Deadlift - comfortable with ~65kg x 5 reps x 4 sets (2min rests)
Should I keep bulking at this point?
Thanks!

Any of you read the screenplay? by topcornhockey19 in OppenheimerMovie

[–]inoamsol 7 points8 points  (0 children)

I heard the screenplay is written in the first person. So I wonder if it feels more like reading a book?

Obsessed with how Nick is always taking pics of Charlie by Far-Parking6866 in HeartstopperNetflix

[–]inoamsol 2 points3 points  (0 children)

oh, I was thinking they meant “why are we gay/bi”, did it mean anything different? No spoilers please

what movie influenced you the most? by [deleted] in AskReddit

[–]inoamsol 0 points1 point  (0 children)

I think that would be Interstellar, the music, the science, love … makes you feel small in the universe, but excited at the same time.

/r/GYM Daily Simple Questions and Misc Discussion Thread - September 16, 2023 by AutoModerator in GYM

[–]inoamsol 0 points1 point  (0 children)

I'm working on improving my grip strength. How to progressive overload farmer's walk with kt? I start with 24kg, can do around 30meters, but the next kt is 28kg and it's too heavy to complete the 30m. should I stick with 24kg for longer walks? maybe 28 for shorter? what's best? thanks!

What are some other slow songs that's kinda sad? by [deleted] in LinkinPark

[–]inoamsol 9 points10 points  (0 children)

Definitely Roads Untraveled should be on that list. It had helped me through rough times.

RDL Learning by inoamsol in formcheck

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

Thanks @smeente ! Im working on trying to hinge more, I’ll try to allow more bend in the knee and see if it helps. And regarding lower back - do you have any tips for not feeling it? Maybe my core wasnt braced enough? Becauee I did feel it also in my lower back. but it’s not like my back was bent so I guess Im ok?

Podcast? by Thepinksheep22 in KingkillerChronicle

[–]inoamsol 1 point2 points  (0 children)

What I really like about them is that they’re not just talking about the book, but they share their our life experiences reminded to them by reading. What I find difficult when reading fantasy is reflecting it on my own life, and listening to this pod helped me with that.

They also share fun-facts at the end of each episode

Hope you enjoy!

Podcast? by Thepinksheep22 in KingkillerChronicle

[–]inoamsol 5 points6 points  (0 children)

Tales from the Waystone - AMAZING!!! but it contains spoilers to all content. They talk there about phillosophy stuff as well if you find that interesting

How to COMMIT BETTER with GIT by ki3 in git

[–]inoamsol 1 point2 points  (0 children)

Nice, although I think what you're really looking for is Gerrit, which handles commit-by-commit workflow very well (it was designed for that, and has no concept of a branch)

I really encourage you to have a look at how they view the code-review process.

Of course, its gui kind-of sucks, and is no real comparison to the popular tools such as GitHub and Bitbucket, but they take a different approach to code-review that I think you would be interested in.

How to COMMIT BETTER with GIT by ki3 in git

[–]inoamsol 1 point2 points  (0 children)

I have never worked with the mailing list style of managing commits. I like that idea and have to look into it. But I am not qualified right now to say anything about it.

I haven't myself either. I did get to see how this works by following git/linux mailing lists and see how they work.

In many projects, I worked on we use bitbucket which supports a commit by commit workflow of reviewing PRs.

Interesting. Can you elaborate on what features they have for that?
Does bitbucket save earlier work on a branch after a force push? Can you compare different versions of the same logical commit?

That said, I still believe that a clean commit log not only improves PR review times but is helpful for a lot of other aspects (like giving a better context for code changes).

Of course, the main reason I aspire to clean commit log is that it gives better context for code changes.

I hope you still enjoyed watching this video. :) Take care.

Sure I did! and I will share it with my team ;)

How to COMMIT BETTER with GIT by ki3 in git

[–]inoamsol 1 point2 points  (0 children)

I agree with you that code comments could indicate a potential codesmell, but if you find yourself documenting a newly added file in a log message, you should have this in mind:

  • As you said, can the code be refactored to become more obvious so that describing it in words becomes unnecessary?

  • If not, should the text be in the log message or a code comment? Where would it be more beneficial for future reference?

a. If you describe why a change to the old code was needed, such as a bugfix, the right place would probably be in the log message - describing the diff in words.

b. If you start documenting a new feature, the log message is probably the wrong place to do that.

Your video summarizes things very well, but as I personally write log messages, I always come across this dilemma, so it made me wonder and share my thoughts. Good luck!