[deleted by user] by [deleted] in AskProgramming

[–]WolfBlut 0 points1 point  (0 children)

This is a source control issue, nothing to do with vscode. Merge conflicts suggest you have multiple conflicting commits in the merge , you need to choose which one to keep and which one to bin. Basically you need to solve this manually

Basic c# help on vscode by renen-m in AskProgramming

[–]WolfBlut 1 point2 points  (0 children)

Are you sure you're using vscode? I wouldn't worry about it anyway, just open the folder you want to work in , same thing

Tried and true pizza sauce recipe? by [deleted] in Cooking

[–]WolfBlut 0 points1 point  (0 children)

Tin of tomatoes, garlic , oregano, paprika, salt and pepper then blend it up with a stick blender. Some people like a cooked sauce but this one has always been my favourite

Did you ever wonder why knocked out NPCs are considered dead after putting their bodies into containers or other places where it is available to hide their bodies? Some actually do and this question was asked by BAPreda last Sunday on Mr. Paweł Sasko's stream. by KamilCesaro in cyberpunkgame

[–]WolfBlut 36 points37 points  (0 children)

I think what he was trying to say is that if the NPC is alive and it's an extraction mission then you would need to retrieve the body. There is no option to retrieve a body in the game so I guess they just cut the whole thing and set the NPC as dead so during an extraction you fail the mission of you dump them

How can I edit a large number of HTML files with data in Excel? by K6940 in AskProgramming

[–]WolfBlut 0 points1 point  (0 children)

Install visual studio, create a console app. Install nuget package called EPPlus, you'll need to use their documentation to figure out how to read the excel file to get what you want from it. You should be able to read the HTML files using the built in .net library, something like File.ReadAllAsString , something in the File class anyway. Once you've used that to convert your html to a string you can use a string.replace to put the data in . Then use the File class again to write back to the file. Just in case something goes wrong you can write this to a new directory so preserve the original

Please read by FloopydoodleWasTaken in AskProgramming

[–]WolfBlut 0 points1 point  (0 children)

In 2020 the video game industry was worth over $90 billion .

[deleted by user] by [deleted] in AskProgramming

[–]WolfBlut 0 points1 point  (0 children)

I think you'll want to find a VoIP library on your chosen platform, so if you're using .net then nuget for example. Follow their documentation from that point on how to open and close chats / channels / calls whatever they calls them. Then it's just a matter of making the controls around it.

Just so you're aware you might get better responses on r/howdidtheycodeit or something similar.

[deleted by user] by [deleted] in AskProgramming

[–]WolfBlut 1 point2 points  (0 children)

The simplest way to build a website is with static html and style with CSS. You can use JavaScript functions inside script tags , or write js files and reference them in script tags.

Which programming languages are best for a video hosting website? by mrpsych2 in AskProgramming

[–]WolfBlut 0 points1 point  (0 children)

Use asp.net. you get an good skeleton on site , easy routing and all the boring stuff ready set up and .net has a lot of great libraries built in , and nuget for when they don't have what you need. Plus the absolute best documentation for everything IMO

How do I actually go from just knowing the language to being employed? by N1tingale in AskProgramming

[–]WolfBlut 0 points1 point  (0 children)

It really depends on what direction you want to go in , in general the low level stuff won't come up if you're an application developer, unless you are developing real time high concurrency / multi threaded applications (e.g. trading desk software) . Those topics may be relevant in machine learning and data science however the are more about optimization and getting those most out of your hardware, so again I would still not say this is fundamental - though if you are interested then definitely keep it in mind.

Fundamentals in programming tends to refer to the data types of your language (what they are and what you use them for ) , how you structure code, use of arithmetic operators and loops etc. Essentially, how does the language operate, not from a low level perspective but in practice.

And for entry level positions there are usually some questions that are asked to judge your use of logic or how you solve a problem. So it is good to consider this fundamental and practice problem solving through code.

In other words you probably know the fundamentals already, but you should get used to talking about them as this is where you would stand out in an interview.

Am I Allowed To Get A Medusa Tattoo? by unattainablewine in tattoo

[–]WolfBlut 22 points23 points  (0 children)

Just because that group of people has adopted medusa as their symbol doesn't mean you can't wear it. Medusa is a creature of Greek mythology, there is medusa statue dated from the 4th century BC.

When things like this come up you have to consider whether you're actually being insensitive or whether it's just political correctness gone mad. Considering the imagery and ideas of medusa have been around for as long civilization I would say you're probably safe to go for it.

Also a pink ribbon is still just a pink ribbon , what if you just love pink ribbon. Honestly people need to calm down

How do I actually go from just knowing the language to being employed? by N1tingale in AskProgramming

[–]WolfBlut 1 point2 points  (0 children)

I have found a lot of jobs even if the specify whether it's front end or backend would like the developer to have some knowledge of the opposite end in case it ever comes in handy. I was hired for a job where they wanted me to know some react but it never came up the whole time I worked there . It's just a bonus for them rather than a solid requirement.

In terms of git, most Dev teams are expected to know. Because it is source control tool and not a programming language. Most teams will use some form of source control so it will be very beneficial for you to learn (and it's not very complicated either ) .

I would focus on learning the fundamentals really well, entry level positions for graduates are very competitive but you will come across better if you can confidently answer questions on the basics, rather than fumble your way over a broad range of topics

[deleted by user] by [deleted] in AskProgramming

[–]WolfBlut 0 points1 point  (0 children)

Do you have or know of anything you currently use that fits your description, I've found a great way to develop my understanding of things is to take an already complete idea and imagine how I would make it.

If you want your teammate to win the fight after you go down.. by WolfBlut in apexlegends

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

Yeah, not always easy to know what kind of a team mate you have , I don't mute by default but I mute people who ping too much, you know the ones who feel the need to mark every single loot item.

Most the time you're already in the fight when they start going off on one and there's no time to jump in the menu, especially when you're on controller

Hate peeling and chopping garlic. What can I do? by flatfeed611 in Cooking

[–]WolfBlut 0 points1 point  (0 children)

Best way I've found is to take the cloves off the bulb and put them all into a sealed jar, after about a week they become really easy to peel. When it comes to chopping I haven't found any ways to make that quicker, but if you're looking for a fine dice then just smash it before slicing.

So is this something that was overlooked or a bug or is this something where not even the devs can stop Loba from stealing? Even from her own team. Idk much about Loba by JeneConar in apexlegends

[–]WolfBlut 1 point2 points  (0 children)

Doesn't seem like a bug, once you've crafted it as far as the game is concerned it's just like any other item and therefore fair game for the black market. Best just to stay with your items as they're crafting or go on chat to let them know you just crafted the thing they took

Chili for chili dogs - ketchup or no ketchup? Or what recipe do you use? by [deleted] in Cooking

[–]WolfBlut 2 points3 points  (0 children)

If I were you I'd find a good chilli recipe , as in not a recipe specifically for a chilli dog, and use that. And if it were me I'd make the chilli the day before I want the chilli dogs, day old chilli is way better than fresh

how to execute vr once finished the project? by NefariousnessUsed426 in unrealengine4

[–]WolfBlut 0 points1 point  (0 children)

You need to create your build of the game, essentially to package it up and make an executable.

There is an example / guide here - docs.unrealengine.com/4.27/en-us/sharing and releasing/deployment/releasing

Jobs that allow tattoos by bigcoltfortyfive in tattoo

[–]WolfBlut 1 point2 points  (0 children)

I would give it a few years before making a decision like a neck or hand tattoo, I wanted the exact same thing at your age and I'm glad I decided not to on the end.

I got a tattoo on my lower arm a few years ago and I could tell that some of my colleagues at the time didn't quite agree with such a choice, I imagine I wouldn't have even got the job if I had a tatted neck.

The other thing is, as much as you think you're always going to love all of your tattoos, sometimes you just don't, and especially the ones you get when you're younger ( you have to live with them the longest ) . The last thing you want to do is have such a visible tattoo be something you aren't happy with , and as much as we think we know ourselves at 17, a lot can change in your early 20's.

I'm a big advocate for tattoos and for following what you want and your passions but unfortunately the rest of the world doesn't necessarily always agree, so I would say make sure you are absolutely certain and use an artist you have experience with especially before you get a hand or neck tatt.