Export SVG to PNG/JPEG Image Using Node.js Express.js and SVGExport Module

Default Featured Image

What is svgexport? svgexport is a Node.js module and command-line tool for exporting SVG files to PNG and JPEG, it uses Puppeteer for rendering SVG files. Installation Usage Scale 1.5x proportionally: Scale proportionally to set output width to 32px: Scale proportionally and pad output to set output width:height to 32px:54px: Export -1:-1:24:24 (left:top:width:height) of input.svg to output.png: … Read more

PHP 7 Compile SCSS to CSS Code in Command Line Using scssphp Library

Default Featured Image

scssphp is a free and open source compiler for SCSS that is written using PHP programming language. Basically, SCSS is a CSS preprocessor language that gives us additional features like variables, functions, mixins, imports, control directives, nesting, and color manipulation. You can easily use scssphp in any existing or new PHP-based project. It is packed with a command line … Read more

Python Elasticsearch Autocomplete Input Example Source Code

Python Elasticsearch Autocomplete Input Example Source Code

In this tutorial, you’ll learn how to create an autocomplete functionality for search engines. Just like Google or Bing has implemented on their websites. The frontend is developed using Python Flask and HTML5 whereas the backend is powered by Elasticsearch. Folder Structure Backend api.py Frontend templates home.html app.py Backend/api.py Frontend/templates/home.html Frontend/app.py

21 Best DLL Decompilers 2023 (Ranked and Reviewed)

Best DLL Decompilers

In this article, I’ll give you an ultimate list of the best DLL decompilers. These tools will enable you to decompile DLL (Dynamic-link library) files to view the C#, VB.NET, or C++ source code. Decompiling a .dll file is helpful if you want to understand how it works without having access to the original source … Read more

Carbon Language Tutorial with Syntax and Code Examples

Carbon Language Tutorial with Syntax and Code Examples

Carbon is an open-source programming language developed by Google as a successor to C++. At the time of writing this tutorial, Carbon language is an experimental project. There is no working compiler or toolchain. You can see the demo interpreter for Carbon on compiler-explorer.com. Carbon Declarations Functions/Methods are declared using fn keyword. Variables are declared using var keyword. Variable names … Read more

64 Open Source Programming Languages on GitHub

Default Featured Image

In this blog post, I’m creating a list of all the open-source programming languages that are actively developed on GitHub. Go Go is an open source programming language that makes it easy to build simple, reliable, and efficient software. View Source Code Swift Swift is a high-performance system programming language. It has a clean and … Read more

Angular 13 Material Select Dropdown with Search Input Field

Angular 13 Material Select Dropdown with Search Input Field

In this tutorial, I will teach you how to make Angular Material Select/Dropdown with Search. We will use NgxMatSelectSearch Angular component. Basically, it provides an input field for searching/filtering MatSelect options of the Angular Material library. Try it yourself You can try the Angular 13 Material select/dropdown search input field widget online using the button … Read more