Showing posts with label linux. Show all posts
Showing posts with label linux. Show all posts

4/30/22

Visual Studio Code C++ Development

Visual Studio Code (VSCode) is a software development tool that is used to program in multiple programming languages. It is also a cross-platform integrated development environment tool (IDE) which runs on Linux, Windows and MacOS.  To use VSCode for a particular programming language, we need...

5/27/17

Upload files from Linux to SharePoint on-premise

When there is a need to automate the upload of files from Linux to SharePoint on-premise, we can use the  curl command tool. Let’s take a look at an example. curl --ntlm username:password --upload-file test.html https://sharepoint.com/files/test.html On this command, we use the...