|
1. The lounge is for the CodeProject community to discuss things of interest to the community, and as a place for the whole community to participate. It is, first and foremost, a respectful meeting and discussion area for those wishing to discuss the life of a Software developer.
The #1 rule is: Be respectful of others, of the site, and of the community as a whole.
2. Technical discussions are welcome, but if you need specific programming question answered please use Quick Answers[^], or to discussion your programming problem in depth use the programming forums[^]. We encourage technical discussion, but this is a general discussion forum, not a programming Q&A forum. Posts will be moved or deleted if they fit better elsewhere.
3. No sys-admin, networking, "how do I setup XYZ" questions. For those use the SysAdmin[^] or Hardware and Devices[^] forums.
4. No politics (including enviro-politics[^]), no sex, no religion. This is a community for software development. There are plenty of other sites that are far more appropriate for these discussions.
5. Nothing Not Safe For Work, nothing you would not want your wife/husband, your girlfriend/boyfriend, your mother or your kid sister seeing on your screen.
6. Any personal attacks, any spam, any advertising, any trolling, or any abuse of the rules will result in your account being removed.
7. Not everyone's first language is English. Be understanding.
Please respect the community and respect each other. We are of many cultures so remember that. Don't assume others understand you are joking, don't belittle anyone for taking offense or being thin skinned.
We are a community for software developers. Leave the egos at the door.
cheers,
Chris Maunder
The Code Project | Co-founder
Microsoft C++ MVP
modified 16-Sep-19 9:31am.
|
|
|
|
|
...in a recent reply to a post.
The only problem I have with Darwinism is that it doesn't work fast enough so we are stuck with millions of idiots we can't get rid of!
Note: This post may seem to be political (and therefore verboten) but it isn't meant to be; just a sad reflection on the human race today.
- I would love to change the world, but they won’t give me the source code.
|
|
|
|
|
Darwinism does not work any more. It's predicated on the weak dying but in a civilised society, that does not happen
|
|
|
|
|
Christian Graus wrote: It's predicated on the weak dying but in a civilised modern society, that does not happen FTFY
civilised is way too nice for our society.
M.D.V.
If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about?
Help me to understand what I'm saying, and I'll explain it better to you
Rating helpful answers is nice, but saying thanks can be even nicer.
|
|
|
|
|
Well, sure, society has become increasingly sh*t. But the underlying principles that stop darwinism are still intact.
|
|
|
|
|
There are times when I feel the gene pool could use some chlorine ...
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
"Common sense is so rare these days, it should be classified as a super power" - Random T-shirt
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
Increasingly true. I have come to hate the world over the past 5 years or so
|
|
|
|
|
OriginalGriff wrote: There are times when I feel the gene pool could use some chlorine ... didn't you want to say clorhidric acid?
M.D.V.
If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about?
Help me to understand what I'm saying, and I'll explain it better to you
Rating helpful answers is nice, but saying thanks can be even nicer.
|
|
|
|
|
No, I can't even pronounce that, let alone buy it ...
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
"Common sense is so rare these days, it should be classified as a super power" - Random T-shirt
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
� Forogar � wrote: so we are stuck with millions of idiots
74+ million by chance?
|
|
|
|
|
|
� Forogar � wrote: millions of idiots One man's idiot is another man's genius. 
|
|
|
|
|
So let's just remove warning labels off all products and let nature run its course.
|
|
|
|
|
Hi all,
I am looking for recommendations on books or other resources that can walk me through taking an app I have built in Visual Studio 2019, using Azure DevOps for a code repo (which I do now), and deploying to Azure (I have an Azure account and two subscriptions).
Most of what I find is out of date, is geared around Visual Studio Code, or even worse, using the command line for Azure.
For me, this is not the 1980s, so I don't use command line ops unless there is no other way. VS Code, while great for Linux users, is little more than vi or Notepad++ compared to VS 2019. If that is your cup of tea, that is fine, and I am not being judgmental, just clarifying my preference for productivity in a Windows development environment.
If you know of any such books or other resources, particularly that go step-by-step through the overcomplicated machinations of deploying to Azure, I would appreciate your input. And no, I am not interested in AWS. I can create and deploy to the Azure DevOps repo now, and all the associated project management there. It is getting an app (web app, API app, SQL DB, etc.) deployed to Azure that I need to learn.
Thanks in advance
|
|
|
|
|
Don't know much about the books, but I know in DevOps this is referred to as "Pipelines". So, I would search for DevOps Pipelines: creating and managing, etc.
It's all part of continuous integration, using the repo and pipelines. instead of deploying to AWS (what we do), you would deploy to Azure instead, or wherever for that matter (could be on a server somewhere).
We use Git for our repo, and ALL code has to be approved via the Pull Request system, where it then gets merged to master branch, and kicks off a validation and dev build (pipelines).
you would set up pipeline(s) for DEV, QA, and PROD, etc. of your choosing, automatic deploy, or manual, up to you.
modified 3hrs 5mins ago.
|
|
|
|
|
Thanks. That is a good start.
|
|
|
|
|
you don't need to use pipelines to deploy to Azure, although I certainly do
|
|
|
|
|
you can use devops to do CI, or you can just deploy from VS by choosing 'publish' The easiest way is to use the built in Azure browser to find your function, download a publish profile and use that.
Depoyment is pretty easy, you don't need a book. I'm happy to answer questions
|
|
|
|
|
I appreciate the response, but no, it is not easy for me at this point. It is easy for you because you already know how. That is what books or other resources are for, is to convey that knowledge.
Hence, the only thing of use to me at this point is a book or other resource that explains it step by step.
|
|
|
|
|
Ok, I didn't mean to be condescending. It's not that complex, but all of Azure is poorly documented and labrythine at times. I don't know of any books. But I'm happy to try to explain it.
In the Cloud Explorer you can right click on a function and download a publishing profile. If you right click on your code and choose publish, you can choose 'publish from a profile', select your downloaded file, and it will publish.
|
|
|
|
|
That part I have done, but it is useless in its current condition. I am connected to Azure DevOps in Team Explorer, and sync'd my code with no problem. When I open Cloud Explorer, it remains blank.
|
|
|
|
|
devops lets you build a pipeline for CI, it's a step above what you want to do. Your code being in source control means you CAN use pipelines but you don't need to
If cloud explorer is blank, the resources don't exist. You need to log into the portal to create a function group for you to publish to
|
|
|
|
|
My gmail is christian.graus@gmail.com. You're welcome to message me in hangouts to chat through this if you want
|
|
|
|
|
Thanks. It is getting late here, and I need to work out a couple bugs in publishing first.
|
|
|
|
|
I'm in Australia so I'm not around in your morning but I'm happy to help out if I can.
|
|
|
|
|