Monthly Archives: August 2023

Read PostgreSQL Database C#

The blog article shows you how to Read PostgreSQL Database using C#. I have a database named test and a table called person. There is 1 record in it. To read PostgreSQL database from C#. Firstly, you need to install … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Data Platform, programming | Tagged | Leave a comment

Python Web Scraping

This blog article shows you one of the ways to do Web Scraping, using Python. I have the below web page and I want to get all the titles. ‘ I need to install BeautifulSoup and loop through the web … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Data Platform, programming | Tagged | Leave a comment

A Developer’s Guide to Building Resilient Cloud Applications with Azure

Learn how to build and deploy apps on serverless and event-driven architecture with Azure developer tools. Create serverless apps to support your organisation’s digital transformation and modernisation goals. Get this eBook to learn how to: Build an end-to-end cloud-native app … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, CTO, Data Platform, programming | Tagged | Leave a comment

Generate Random Unique Decimal Number using C#

This blog article shows you how to generate Random Unique Decimal Number using C#. I have been searching on the web. All the links show randomly generated float or decimal numbers but not the unique random decimal numbers. I will … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, programming | Tagged | Leave a comment

‘Could not load file or assembly ‘office, Version=15.0.0.0, Culture=neutral

This blog article shows you how to write data to Excel. Refer to Write value to Excel spreadsheet using Microsoft.Office.Interop.Excel for .NET 5 and above you will get the following error: ‘Could not load file or assembly ‘office, Version=15.0.0.0, Culture=neutral … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Data Platform, programming | Tagged , | 1 Comment

From Complaint Desk to Command Centre

   For many IT leaders, the shift to remote and hybrid work has become a reactive cycle of manually deploying devices, reprioritising issues and addressing ongoing help desk complaints. In the new guide From Complaint Desk to Command Centre, you’ll learn … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, CTO, Data Platform, programming | Tagged | Leave a comment

SQL Server Insert Data using Python (the problem)

This blog article shows you the potential issue when inserting data into SQL Server from Python. Pay attention to the code below. def InsertData(sample,value):     conn = pyodbc.connect(‘Driver={SQL Server};’     ‘Server=.;’     ‘Database=poc;’     ‘Trusted_Connection=yes;’)     cursor = conn.cursor()     cursor.execute(‘INSERT INTO [dbo].[stat] ([Sample],[DataValue]) VALUES (‘ … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Data Platform, programming | Tagged | 1 Comment

Add API Controller with Actions using Entity Framework

This blog article shows you how to add Api Controller with Actions using Entity Framework. You have seen how to create .NET Core Web Api. Create the following table in SQL Server Database. My database is named B2CDatabase, Right the … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Data Platform, programming | Tagged | 1 Comment

Create ASP.NET Core Web API

This blog article shows you how to get started with ASP.NET Core Web Api. Start Visual Studio 2022. Select Create a new project. Select ASP.NET Core Web Api. Click Next. Type a Project name for the Web Api project, such … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, programming | Tagged | 1 Comment

Three ways to reduce the endpoint security risks of a remote workforce

Protecting sensitive information on endpoint devices has typically involved a lot of manual configuration. These tasks are more impractical with a workforce dispersed across many different locations. To help, many organisations are moving to cloud-based solutions that combine device protection, … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, CTO, Data Platform, management, Office 365 | Tagged | Leave a comment