PeachPie- Run PHP on .Net Platforms

NEW CONCEPTUsing the PeachPie Framework.What is PeachPie Framework?PeachPie is a 2nd generation compiler and runtime of the PHP language under .NET Core.It is a lightweight and astonishingly quick framework and most helpful of all: it’s cross-platform.How PeachPie Works?PeachPie Framework is a comprehensive re-implementation of the PHP language in C#, transforming PHP into a standard compiled language.As an … Continue reading PeachPie- Run PHP on .Net Platforms

Naming Guidelines

CODING STANDARDSLearn to follow a standard naming design pattern for any programming language.Photo by Fernando Hernandez on UnsplashFollowing a standard naming convention while coding can be a significant contribution to the project.A single project is shared across many developers. Beyond consistency of form, names of framework elements must be easily understood and must convey the function of … Continue reading Naming Guidelines

Understanding the background of Scala.

SCALA CONCEPTSGenerate, Modify & Execute scala program and its test cases.Photo by Kevin Ku on UnsplashPrerequisitesMake sure you have Java SDK. If not, download from here.Install sbt tools for Windows from hereHello world Scala ProgramAssuming the user is aware of the command line & all prerequisites are installed successfully.Create a project using sbt toolRun the following command to … Continue reading Understanding the background of Scala.

New Command Prompt definately sets a standard

NEW TOOLMicrosoft is back with another release of a rugged tool windows terminal.Introduction to Windows Terminal?The Windows Terminal is a modern, quick, efficient, powerful, and productive terminal application for users of command-line tools and shells like Command Prompt, PowerShell, and WSL.Its main features include multiple tabs, panes, Unicode and UTF-8 character support, a GPU accelerated … Continue reading New Command Prompt definately sets a standard

Automatically Identify Bugs in Your Code With .NET 5

C# CONCEPTS.Net SDK now incorporates rich diagnostics and code recommendations in the .NET SDK by default.In the past, it’s unwilling to add new warnings to C#. Its because adding recent warnings is technically a source breaking change for users who have notifications set as errors.C# compiler uses Analysis Level to introduce warnings for these patterns in … Continue reading Automatically Identify Bugs in Your Code With .NET 5

Top tips for Technical Articles

TIPS & TRICKSI am not an expert writer yet, but I do have a passion for writing, sharing knowledge to help people. Because of that, I have discovered many tips & tricks which I craved to share.“Formatting blog helps to obtain Reader’s interest.”Choose TopicMost writers acknowledge that picking the appropriate topic is the biggest concern. I divide … Continue reading Top tips for Technical Articles

Null-Coalescing assignment C# 8.0

C# CONCEPTSC# 8.0 introduces the null-coalescing assignment operator ??=.You can use the ??= operator to assign the value of its right-hand operand to its left-hand operand only if the left-hand operand is null.PrerequisitesLet’s understand null coalescing ?? operatorThe operator returns the value of left-hand operand if it’s “not null” otherwise the value of the right-hand operand is evaluated.The null … Continue reading Null-Coalescing assignment C# 8.0