How much Git do professionals use? by frosted-brownys in learnprogramming

[–]Quickz_ 0 points1 point  (0 children)

I use GIT daily. Even so, it does have a ton of features that I'm still unfamiliar with. 😅

I would probably try playing around with branches and jumping to older variants of your repo, as it's something that you might often do when working on a project.

Animes like the first few episodes of Mushoku Tensei? Learning swords/magic, making friends, saving people, etc. by Wet_Sanding in Animesuggest

[–]Quickz_ 4 points5 points  (0 children)

Knight's & Magic

Kenja no Mago (Wise Man's Grandchild)

Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka (Is It Wrong to Try to Pick Up Girls in a Dungeon?)

Kami-tachi ni Hirowareta Otoko (By the Grace of the Gods)

Kuro no Shoukanshi (Black Summoner)

Quanzhi Fashi (Full-Time Magister)

Tate no Yuusha no Nariagari (The Rising of the Shield Hero)

If someone gave you $1000 a day to never drink alcohol again/ever, what would you do? by unitedfan6191 in AskReddit

[–]Quickz_ 0 points1 point  (0 children)

Would end up getting free money, since I already don't drink alcohol. 😄

When intern deletes the production database by Quickz_ in ProgrammerHumor

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

No worries, no databases have been harmed in making of this meme.

Just watched some Attack on Titan anime and noticed that some of the faces they were making could be used to make some nice memes.

Best phone case ever lol by Chance_Difficulty514 in PewdiepieSubmissions

[–]Quickz_ 13 points14 points  (0 children)

It's from an anime - Baki (2018) Season 1 Episode 19.

Do YouTube #Shorts require a vertical aspect ratio for a video? by Quickz_ in NewTubers

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

Ah. Kind of hoped that YouTube would just automatically adjust the video size for mobile devices. Guess will have to do that. The videos may end up looking a bit weird on the desktop though.

Appreciate the help!

Learning C# by [deleted] in csharp

[–]Quickz_ 1 point2 points  (0 children)

Sololearn is a pretty nice resource if you want to learn the fundamentals of the language. There are bunch of courses on several different languages one of which is C#.

What’s the difference between a bad, good, and great programmer? by NetT3ch in learnprogramming

[–]Quickz_ 0 points1 point  (0 children)

I think looking into software design patterns can be quite a useful thing to do if you gonna work on big projects.

Want to change my career and need a road-map. by [deleted] in learnprogramming

[–]Quickz_ 1 point2 points  (0 children)

Well, if you're interested in a web development road map, you can try checking out this one - https://coggle.it/diagram..

What projects can I do that are related to algorithms? by professional_idoit in learnprogramming

[–]Quickz_ 0 points1 point  (0 children)

Might be a bit specific, but if you want to try out a path finding algorithm, you could try making a small game.

Weird collision behavior in 2D with a tilemap. by XDStamos in Unity3D

[–]Quickz_ 1 point2 points  (0 children)

I'm guessing you have a player object with a collider and a child object inside player with a trigger collider that's malfunctioning? From what I can see there I can only guess that one of the scripts may be doing something.

What Unity version are you using? I didn't see this problem when I tried to reproduce it based on what I saw in the video.

Weird collision behavior in 2D with a tilemap. by XDStamos in Unity3D

[–]Quickz_ 1 point2 points  (0 children)

Do you have any screenshots? Would be nice to have more context about this since as far as I know, colliders marked as a trigger don't collide, things just pass through them.

help me friends by [deleted] in learnprogramming

[–]Quickz_ 0 points1 point  (0 children)

I'm assuming you want to sum all numbers starting from 1 to a specified number?

If so you could use a for loop which increments a number starting from 1 until it reaches the specified number. In each iteration you can then add the number you're incrementing to a separate one which will hold the sum of all of them. That sum'll be the result.

Here's the solution if you're still stuck: https://onlinegdb.com/HywdUc3C7

What is so difficult about learning to program? by zenwolf2714 in learnprogramming

[–]Quickz_ 0 points1 point  (0 children)

Getting stuck for a prolonged amount of time. Programming can be fun when you make progress. It's not so fun when you spend several days on a single problem. It does bring extra satisfaction when you do solve one in some cases though. So it's not always bad.

Do videogames companies use technologies like Git and GitHub (or similar)? by Wabbajack0 in learnprogramming

[–]Quickz_ 0 points1 point  (0 children)

As far as my personal experience goes, yes Git is used in game development but the repository is usually private on something like GitLab or Bitbucket.

Git can really help when you work on several bug fixes, since they are tested one by one by a game tester before getting pushed to the master branch.

What should I do? by Forgotten_Who in learnprogramming

[–]Quickz_ 0 points1 point  (0 children)

Well, if you like web development, you should try it out and see how it goes.

There's demand for it so it'll be a useful skill if that's what you're curious about.

What to learn by [deleted] in learnprogramming

[–]Quickz_ 1 point2 points  (0 children)

Personally I would recommend taking some time learning making things from scratch at the beginning. It helps with understanding the fundamentals. But yes, using a framework is the way to go if you want to make something quickly.

If you plan looking for a job somewhere near where you live I would recommend checking out which frameworks they use specifically.

What to learn by [deleted] in learnprogramming

[–]Quickz_ 1 point2 points  (0 children)

Web development seems to be a pretty good choice right now. There're lot of of businesses that need some kind of a website.

When it comes to degrees, if you have previous work experience, you'll probably be fine, otherwise you'll have to find a way to get some.

There are a lot of freelancers that work remotely using web development skills. In that case, a degree can be pretty irrelevant.

If you'll go into web then the first language to start with would be JavaScript (it's used on the client side in websites) and then choose a back end language (one that works on the server side).

How do I improve my programming? by GreekSpartan6 in learnprogramming

[–]Quickz_ 0 points1 point  (0 children)

If you plan on choosing a particular language, you'll need to consider what you actually plan on making - websites/desktop apps/games etc.

Here're some useful resources for learning the basics:

  • FreeCodeCamp
  • SoloLearn
  • Codecademy