The Dominant Programmer
Author

The Dominant Programmer

Resources and tutorials for programmers' advanced learning journey. Advanced tracks in Java, Python, and C#. Blog: https://blog.csdn.net/badao_liumang_qizhi

174
Articles
0
Likes
296
Views
0
Comments
Recent Articles

Latest from The Dominant Programmer

100 recent articles max
The Dominant Programmer
The Dominant Programmer
Jun 15, 2022 · Frontend Development

How to Enable Markdown Online Editing in Vue Using mavon-editor

This guide walks through installing the mavon-editor package, globally registering it in a Vue project, creating a component with markdown binding, configuring props, customizing toolbars, handling image uploads, and using keyboard shortcuts to provide a full-featured online markdown editor.

EditorFrontendImage Upload
0 likes · 9 min read
How to Enable Markdown Online Editing in Vue Using mavon-editor
The Dominant Programmer
The Dominant Programmer
Apr 18, 2022 · Databases

How to Install PostgreSQL 14 on CentOS Using a Script

This guide walks through installing PostgreSQL 14 on a CentOS server via a shell script, covering repository setup, package installation, initialization, user and database creation, remote‑connection configuration, firewall adjustments, service verification, and connecting with Navicat.

PostgreSQLRemote accessShell script
0 likes · 4 min read
How to Install PostgreSQL 14 on CentOS Using a Script
The Dominant Programmer
The Dominant Programmer
Apr 18, 2022 · Backend Development

How to Build a Web Page in Node-RED Using JSON Data

This guide walks through designing a layout, configuring a Change node, creating a JSON payload, crafting an HTML template with Handlebars, deploying the flow, and accessing the generated page at http://127.0.0.1:1880/data, all within Node-RED.

FlowHTML templateHandlebars
0 likes · 6 min read
How to Build a Web Page in Node-RED Using JSON Data
The Dominant Programmer
The Dominant Programmer
Apr 18, 2022 · Mobile Development

Streaming an Android App to an RTSP Server with EasyPusher‑Android and EasyDarwin

This guide walks through setting up a Windows Nginx RTMP server, using FFmpeg for local video push, then employing the open‑source EasyPusher‑Android component together with EasyDarwin to capture Android camera or screen, stream it via RTSP with low latency, and verify playback with EasyPlayer‑RTSP.

Android streamingEasyDarwinEasyPusher-Android
0 likes · 4 min read
Streaming an Android App to an RTSP Server with EasyPusher‑Android and EasyDarwin
The Dominant Programmer
The Dominant Programmer
Feb 10, 2022 · Frontend Development

Quick Start with Fabric.js: Building a Canvas App in Vue

This guide introduces Fabric.js—a library that adds an object model, SVG parsing, and interactivity to HTML5 Canvas—and walks through setting up a Vue project, installing the library, creating a canvas element, and drawing a red rectangle with concise code examples.

CanvasFabric.jsGraphics
0 likes · 4 min read
Quick Start with Fabric.js: Building a Canvas App in Vue
The Dominant Programmer
The Dominant Programmer
Dec 28, 2021 · Backend Development

How to Install and Run Node-RED on CentOS 7 via npm

This guide walks through installing Node on CentOS 7, using npm to install Node-RED globally, launching the service, and opening the firewall so the editor is reachable at port 1880, including the required unsafe-perm flag for proper permission handling.

Node-REDNode.jscentos7
0 likes · 2 min read
How to Install and Run Node-RED on CentOS 7 via npm
The Dominant Programmer
The Dominant Programmer
Dec 15, 2021 · Frontend Development

Interactive Polygon Drawing and Area Calculation with Vue and OpenLayers

This tutorial shows how to import the required OpenLayers modules into a Vue project, configure a map, add a Polygon draw interaction, handle the drawend event to compute and format the polygon's area using OpenLayers' getArea function, and provides a complete working example with code.

Area calculationDraw interactionJavaScript
0 likes · 7 min read
Interactive Polygon Drawing and Area Calculation with Vue and OpenLayers