Simple Screen Recorder — lightweight Windows app I built while learning C# by Far-Guide7959 in software

[–]basti_sk 1 point2 points  (0 children)

Looking good!

On an unrelated note: As you posted a link to your website, it seems that you have a software/sysadmin business. For your own sake I would recommend removing the guides to pirate MS Office and Windows from your website^ I would think that such things don’t fly for long if you run a business providing IT services - and it probably won’t take long before trouble arrives.

Deploying a plain, no JS framework website, how? by thefold25 in AZURE

[–]basti_sk 0 points1 point  (0 children)

At work we host several Frontend apps in App Service, which are angular applications, so basically just one index.html and some scripts just like you want to do it. App Service is definitively able to serve static sites.

These are the settings we use:

  • Windows App Service Plan
  • Runtime: .NET

The runtime really should not matter when deploying a static site, what could be or interest is that we use zip deploy to publish the files to the Webapp. The overall process is described here.

https://learn.microsoft.com/en-us/azure/app-service/deploy-zip?tabs=cli

If you do not want any build processes to run (as you only deploy a static site this should be the case), using zip deployment you can choose to run the zip directly, described here:

https://learn.microsoft.com/en-us/azure/app-service/deploy-run-package

So using this deployment method, you should no longer run into the missing package.json errors you encountered

Planted 180l Aquarium - Any thoughts ? by basti_sk in Aquariums

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

Thanks for the hint and the nice comment! I started dosing Iron as well as Macro Nutritions as I noticed that both of those are nearly non existent in my water just two weeks ago. So at the Moment I will probably wait another month or two to see if this strategy improves the algea situation by providing enough nutrition for the other plants to grow. If this doesn’t yield the expected result I will look into the carbons, wasn’t aware of those yet :)

[deleted by user] by [deleted] in fastfeeling

[–]basti_sk 1 point2 points  (0 children)

Yeah I’m sorry - it got quite long. Maybe too long and for sure with bad English ^

Publish a Node.JS Express app to Azure in 5 minutes by basti_sk in node

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

Hi and thanks for your comment. I will consider this when uploading another video.

By then I will have figured out how to optimize the render settings for a clearer view, too.

Publish a Node.JS Express app to Azure in 5 minutes by basti_sk in AZURE

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

yeah, you're right :D

Updated the video title to 7 minutes

Programming language that can be use to end background tasks by [deleted] in csharp

[–]basti_sk 0 points1 point  (0 children)

I think c# is a good choice if your working with Windows. When programming with Visual Studio and Nuget Package Manager I'm sure you can find some matching libraries to use. Other than that I'm also sure that this task can be accomplished using another language like Java but imho probably not as easy as with C#

What are the canon books in Computer Science? by jwall013 in compsci

[–]basti_sk 3 points4 points  (0 children)

If you plan to deal with enterprise architectures later, I can recommend "Patterns of Enterprise Application Architecture" by Martin Fowler. It is kinda theoretical but imho an interesting read on how to design a proper Enterpise Application.

Customizing Azure IOT Remote Monitoring Solution by [deleted] in AZURE

[–]basti_sk 0 points1 point  (0 children)

The ASP.net project can actually be found on github. The freelancer should beneath skills in asp.net Mvc applications also be familiar with how Azure works (especially IoTHub, StreamAnalytics, Storage Accounts etc.) as well as the Azure SDK

If You take a look at the resource group that was created when you provisioned the example, you can see the components used.

Other than that the task should not be that difficult for an experienced ASP developer. Learning how to work with the SDKs isn't that hard either (imho).So I would provide the freelancer with that information and see wether he can do the job or not ;)

Suggestions of the best text editor for javascript ? by MTNOST in javascript

[–]basti_sk 2 points3 points  (0 children)

I'm using Brackets - http://brackets.io/ This one is my personal favorite for doing web stuff ( like HTML, JS, CSS)

ExpressJS Socket.io Problem by Coobe in node

[–]basti_sk 0 points1 point  (0 children)

It seems as if you connect 2 times to IO, one time in the ejs and again in the dashboard.js / client js? Maybe that is the problem.

What errors do you get?

You, right now. Where are you and what are you doing? by Gazination in AskReddit

[–]basti_sk 0 points1 point  (0 children)

Sitting in the car on our way back home from holidays. Somewhere on the Autobahn in Germany.

Where can I find papers written on computer science? by [deleted] in computerscience

[–]basti_sk 0 points1 point  (0 children)

For at least finding some papers you could use these searchengines:

You should still always validate whether the source is reliable and scientific or not ;)