Tag Archives: Dev

Python Events

Source code can be found at Github. Introduction Event is "something that happens". An Event in computer programming is a code construction. An object, known as Publisher, informs other objects, known as Subscribers or Listeners, that something special is about … Continue reading

Posted in Dev | Tagged , | Leave a comment

ngrok. Debug a service running on localhost making it accessible by a remote (internet) client

ngork allows a service running on a local development server to be accessible from the internet. It runs on Windows, Linux, MacOS and FreeBSD and it’s free. A possible scenario Here is a possible scenario: a developer is developing a … Continue reading

Posted in Dev | Tagged , , | Leave a comment

Setup a VSCode web project in order to use TypeScript, Less, UglifyCSS and UglifyJS

Notes on how to setup a VSCode web project in order to use TypeScript, Less, UglifyCSS and UglifyJS. NodeJS should be already installed in the development machine. Here is how to install the rest of the libraries using npm. -g … Continue reading

Posted in Dev, VSCode | Tagged , , | Leave a comment

Is Asp.Net Core unnecessarily complex?

Source Code can be found at github. In the last post I wrote about how to write a custom logging provider for Asp.Net Core. By examining the source code of the logging framework of Asp.Net Core, a conclusion comes out … Continue reading

Posted in C#, Dev | Tagged , , | Leave a comment

How to write a custom logging provider in Asp.Net Core

Source Code can be found at github There are no official instructions on how to write a custom logging provider in Asp.Net Core, in the available documentation yet. So if someone is in the need to write a custom logging … Continue reading

Posted in C#, Dev | Tagged , , | Leave a comment

Configure VSCode for Web Development

Web devepment requires a tool set in place, regardless of the technology used (ASP.Net Core, NodeJS, PHP). Install NodeJS, if you don’t already have it, which installs the npm package manager. Open a terminal and install compilers (actually transpilers) for … Continue reading

Posted in C#, Dev | Tagged , , , , , , | Leave a comment

Installing msys2 on Windows

msys2 “is an independent rewrite of MSYS, based on modern Cygwin (POSIX compatibility layer) and MinGW-w64 with the aim of better interoperability with native Windows software. It provides a bash shell, Autotools, revision control systems and the like for building … Continue reading

Posted in Dev | Tagged , | Leave a comment

Install MonoDevelop (Xamarin Studio) on CentOS 7

MonoDevelop (also known as Xamarin Studio) is an open-source integrated development environment for Linux, macOS,and Windows. Its primary focus is development of projects that use Mono and .NET frameworks. Installation instructions can be found at monodevelop.com. Open a terminal and … Continue reading

Posted in Dev, IT | Tagged , , , | Leave a comment

Install Visual Studio Code on CentOS 7

Visual Studio Code or VSCode is a source code editor developed by Microsoft for Windows, Linux and macOS. It includes support for debugging, embedded Git control, syntax highlighting, intelligent code completion, snippets, and code refactoring. Installation instructions can be found … Continue reading

Posted in Dev, IT | Tagged , , , | Leave a comment

Install .Net Core SDK on CentOS 7

.NET Core is a free and open-source managed computer software framework for the Windows, Linux, and macOS operating systems. .NET Core fully supports C# and F#. Installation instructions can be found at microsoft.com. Open a terminal and type the following … Continue reading

Posted in Dev, IT | Tagged , , , , | Leave a comment

Install Lazarus IDE on CentOS 7

Lazarus is a Delphi compatible cross-platform IDE for Rapid Application Development. Download Lazarus 2.0 from sourceforge.net. Your downloads folder should contain the following Open a terminal and type the following To run Lazarus from GNOME GUI, go to menu Applications … Continue reading

Posted in Dev, IT | Tagged , , , | Leave a comment