engineering

How to Create a Window Server Virtual Machine and install and IIS Web server role on the VM

How to Create a Window Server Virtual Machine and install and IIS Web server role on the VM

In this article we will be creating a virtual machine and also we wuill install an IIS weber sever role on the virtual machine. Lets Begin Search for Virtual Machine and select Virtual machine Click on +create on your extreme left Select Azure Virtual Machine from the options. Under project details for resource group click on Create New and give it a name (make it a special name or name of a project) Under the Instance details give your virtual machine a name of your choice. Select a region of your choice Select the availability zones (this is dependent on…
Read More
SQL generation: Golang’s builder pattern vs Clojure’s persistent map

SQL generation: Golang’s builder pattern vs Clojure’s persistent map

I worked on a TODO code assignment for showing off my skills, and more importantly, showing my weak points. I coded in Golang and Masterminds/squirrel. Later, I ported only the SQL generation part to Clojure to compare and discuss why I prefer Clojure, which I have usually been asked about or even met with opposition for. I will discuss function by function and type by type. The first function is makeStatement. func (repo *TodoRepoPg) makeStatement(orders []entity.Order, filters []entity.Filter) (string, []any, error) { builder := repo.Builder.Select("id, title, description, created, image, status") if err := buildOrders(&builder, orders); err != nil { return…
Read More
Python Basics 2: Datatypes

Python Basics 2: Datatypes

Datatype:Every value in Python has a datatype. The datatype is mainly the category of the data. There are basically 5 categories of datatypes; however, these categories have further classifications as well. 1.Numeric Type:a) Integer (int): positive or negative whole numbers (without a fractional part). Example: 10,-3,10000 b) Floating point (float): Any real numbers with 'decimal' points or floating point representation.Example: -3.14, 10.23 c) Complex Number: Combionation of real and imaginary number. Example: 2+3i [we don't use this that much] 2.Boolean Type(bool): Data with one of the two built-in values True or False. Often used in the comparison operations of logical…
Read More
Estudos em Quality Assurance (QA) – SDLC

Estudos em Quality Assurance (QA) – SDLC

O SDLC (Software Development Life Cycle ou Ciclo de Vida de Desenvolvimento de Sistemas) é um framework utilizado para estruturar o desenvolvimento de sistemas de informação de maneira organizada e eficiente. Ele abrange todas as etapas, desde o planejamento inicial até o encerramento do projeto, garantindo que os objetivos do cliente sejam atendidos. É uma abordagem clássica que surgiu na década de 1960, desenvolvida para ajudar na criação de sistemas de grande escala. Ela segue uma sequência linear e estruturada de fases, facilitando a gestão e controle de projetos complexos. As fases são: Planejamento → Análise → Desenho → Desenvolvimento…
Read More
Resolving the “Length of LOB Data (78862) to be Replicated Exceeds Configured Maximum 65536” Error

Resolving the “Length of LOB Data (78862) to be Replicated Exceeds Configured Maximum 65536” Error

Understanding the Error The error indicates that the LOB data size (78862 bytes) exceeds the configured maximum limit (65536 bytes) set for replication in SQL Server. This typically happens during the replication process, leading to the failure of data transfer. Common Causes Default Configuration Limits: SQL Server has default settings for the maximum size of LOB data that can be replicated. Large Data Inserts: Inserting large multimedia files or extensive text data can exceed the default LOB size limit. Inadequate Configuration Settings: The database settings might not be optimized for handling large LOB data, resulting in replication issues. Solutions to Resolve…
Read More
PHP

PHP

06 Jun 2024 PHP 8.3.8 Released! The PHP development team announces the immediate availability of PHP 8.3.8. This is a security release. All PHP 8.3 users are encouraged to upgrade to this version. For source downloads of PHP 8.3.8 please visit our downloads page, Windows source and binaries can be found on windows.php.net/download/. The list of changes is recorded in the ChangeLog. Source link lol
Read More
Need help with GPO

Need help with GPO

I have developed a lab with one domain controller and a domain joined machine. Now I have implemented a group policy for folder redirection which redirects the desktop, downloads and documents folder to a SMB share on the DC. The GPO works on the desktop folder but not on the downloads and documents folder. I have done gpupdate /force command multiple times and even rebooted the machine quite a few times. The folder redirection stays in desktop but not on other folders. What should i do to troubleshoot it Source link lol
Read More
eBPF, sidecars, and the future of the service mesh

eBPF, sidecars, and the future of the service mesh

Kubernetes and service meshes may seem complex, but not for William Morgan, an engineer-turned-CEO who excels at simplifying the intricacies. In this enlightening podcast, he shares his journey from AI to the cloud-native world with Bart Farrell. Discover William's cost-saving strategies for service meshes, gain insights into the ongoing debate between sidecars, Ambient Mesh, and Cilium Cluster Mesh, his surprising connection to Twitter's early days and unique perspective on balancing tech expertise with the humility of being a piano student. You can watch (or listen) to this interview here. Bart: Imagine you've just set up a fresh Kubernetes cluster. What's…
Read More
How To Install and Use Composer on Ubuntu 20.04

How To Install and Use Composer on Ubuntu 20.04

Composer is a dependency manager for PHP, allowing you to manage your project's libraries and packages effortlessly. If you're developing PHP applications, Composer is an essential tool. This guide will show you how to install and use Composer on Ubuntu 20.04. Prerequisites Before you start, make sure you have the following: An Ubuntu 20.04 server. A user with sudo privileges. PHP installed on your server. If PHP is not installed, you can do so by running: sudo apt update sudo apt install php-cli unzip Step 1: Install Composer 1.1 Update Your Package Manager First, update the package manager cache: sudo…
Read More
No widgets found. Go to Widget page and add the widget in Offcanvas Sidebar Widget Area.