Tagged articles
1387 articles
Page 10 of 14
Programmer DD
Programmer DD
Aug 4, 2021 · Cloud Computing

Turn Your Phone into a Retro Game Console with Alibaba Cloud Serverless

This article walks through a personal tutorial on using Alibaba Cloud's Serverless platform to deploy a handheld NES game console, detailing the setup of Function Compute, one‑click deployment steps, code snippets, and how to load and play classic games on your phone.

Alibaba CloudGame ConsoleNES
0 likes · 5 min read
Turn Your Phone into a Retro Game Console with Alibaba Cloud Serverless
Top Architect
Top Architect
Aug 1, 2021 · Fundamentals

A Visual Guide to Core Git Commands and Their Usage

This article provides a visual, step‑by‑step guide to the most frequently used Git commands—add, commit, reset, checkout, diff, merge, rebase, cherry‑pick, and more—explaining their purpose, typical usage patterns, and underlying concepts such as the index, objects, and detached HEAD state.

GitTutorialVersion Control
0 likes · 11 min read
A Visual Guide to Core Git Commands and Their Usage
Python Crawling & Data Mining
Python Crawling & Data Mining
Jul 30, 2021 · Fundamentals

Master Python Functions: From Basics to Time & Random Utilities

This article introduces Python function fundamentals, shows how to define and call functions, demonstrates common time‑related functions from the time and datetime modules, and provides examples of calendar and random number utilities, all illustrated with clear code snippets and output screenshots.

Tutorialdatetimefunctions
0 likes · 6 min read
Master Python Functions: From Basics to Time & Random Utilities
The Dominant Programmer
The Dominant Programmer
Jul 27, 2021 · Frontend Development

Getting Started with Three.js: Building a Hello World Scene

This tutorial walks through setting up a basic Three.js project, explaining core concepts like scene, camera, and renderer, and provides step‑by‑step HTML and JavaScript code to display a simple axis helper and a wireframe sphere in the browser.

3D graphicsJavaScriptThree.js
0 likes · 7 min read
Getting Started with Three.js: Building a Hello World Scene
Python Programming Learning Circle
Python Programming Learning Circle
Jul 16, 2021 · Game Development

Python Turtle Tom & Jerry Game Tutorial

This tutorial demonstrates how to build a simple Tom & Jerry chase game using Python's turtle graphics, covering interface setup, keyboard controls for the mouse, random positioning of the cat and mouse, collision detection, time tracking, and displaying the final score on the screen.

Game DevelopmentTom and JerryTutorial
0 likes · 4 min read
Python Turtle Tom & Jerry Game Tutorial
Python Crawling & Data Mining
Python Crawling & Data Mining
Jul 8, 2021 · Fundamentals

Master 15 Essential Python String Methods with Real Code Examples

This article walks through fifteen core Python string methods—such as find, index, count, replace, split, capitalize, title, startswith, endswith, lower, upper, strip, rfind, rindex, partition, and join—explaining their syntax, showing runnable code snippets, and displaying the actual output images for each operation.

StringTutorialcode
0 likes · 9 min read
Master 15 Essential Python String Methods with Real Code Examples
Python Crawling & Data Mining
Python Crawling & Data Mining
Jun 29, 2021 · Fundamentals

Master Python Dictionary Comprehensions: Concise Tricks and Real‑World Examples

Learn how Python dictionary comprehensions let you create and transform dictionaries efficiently, with clear syntax explanations, multiple examples—including basic usage, conditional filters, if‑else logic, and nested comprehensions—plus visual output screenshots and practical code snippets to boost your coding productivity.

Code ExamplesConditional LogicPython
0 likes · 7 min read
Master Python Dictionary Comprehensions: Concise Tricks and Real‑World Examples
MaGe Linux Operations
MaGe Linux Operations
Jun 27, 2021 · Frontend Development

Build a Vue‑Flask Word Cloud App: Step‑by‑Step Tutorial

This tutorial walks you through creating a word‑cloud generator with a Vue front‑end and a Flask back‑end, covering environment setup, project scaffolding, component development, API integration, and deployment, all illustrated with code snippets and screenshots.

FlaskTutorialVue
0 likes · 10 min read
Build a Vue‑Flask Word Cloud App: Step‑by‑Step Tutorial
Code Ape Tech Column
Code Ape Tech Column
Jun 22, 2021 · Fundamentals

Master Git: Visual Guide to the Most Essential Commands

This article provides a comprehensive visual walkthrough of Git's most frequently used commands, explaining how files move between the working directory, index, and repository, and detailing each operation—from basic add/commit/reset to advanced concepts like detached HEAD, rebasing, and cherry‑picking.

GitTutorialVersion Control
0 likes · 11 min read
Master Git: Visual Guide to the Most Essential Commands
Liangxu Linux
Liangxu Linux
Jun 15, 2021 · Fundamentals

Quickly Create UML Diagrams in IntelliJ IDEA with PlantUML

This guide shows how to install and configure the PlantUML plugin and Graphviz on Windows, set up environment variables, and use simple text syntax to generate UML sequence and class diagrams directly within IntelliJ IDEA, plus an alternative Chrome extension.

DiagramGraphvizIntelliJ IDEA
0 likes · 4 min read
Quickly Create UML Diagrams in IntelliJ IDEA with PlantUML
Beike Product & Technology
Beike Product & Technology
Jun 11, 2021 · Game Development

Building a Multi‑Platform Mini‑Game with Cocos Creator: From Project Setup to Publishing

This tutorial walks you through creating a multi‑platform “Merge Big Watermelon” mini‑game using Cocos Creator, covering game rules, engine architecture, project structure, component‑based scripting, physics and collision handling, asset management, build configuration, and publishing to various platforms.

Cocos CreatorGame DevelopmentJavaScript
0 likes · 22 min read
Building a Multi‑Platform Mini‑Game with Cocos Creator: From Project Setup to Publishing
Alibaba Cloud Developer
Alibaba Cloud Developer
Jun 10, 2021 · Cloud Computing

Build and Deploy a Custom Graduation Album on Alibaba Cloud in Minutes

This step‑by‑step guide shows how to create, configure, and launch a personalized graduation album using Alibaba Cloud's Cloud Development platform, covering app creation, resource authorization, code deployment, domain binding, and customizable front‑end features with code examples.

Alibaba CloudGraduation AlbumTutorial
0 likes · 11 min read
Build and Deploy a Custom Graduation Album on Alibaba Cloud in Minutes
Python Programming Learning Circle
Python Programming Learning Circle
Jun 4, 2021 · Fundamentals

WTF Python: Unexpected Behaviors and Intriguing Edge‑Case Examples

This article presents a curated collection of surprising Python examples that reveal counter‑intuitive behaviors such as string interning, dictionary key collisions, loop variable scope, generator evaluation timing, the difference between 'is' and '==', and closure capture, providing detailed explanations and code demonstrations for each case.

LanguageTutorialedge cases
0 likes · 16 min read
WTF Python: Unexpected Behaviors and Intriguing Edge‑Case Examples
Taobao Frontend Technology
Taobao Frontend Technology
May 25, 2021 · Frontend Development

Build and Publish a VSCode Code Snippets Extension—Avoid Common Pitfalls

This guide walks you through creating a VSCode code‑snippets extension from environment setup, Azure DevOps publisher registration, project scaffolding with Yeoman, configuring package.json and snippet JSON, debugging inside the extension host, packaging with vsce, and finally publishing the extension to the marketplace, while highlighting common pitfalls to avoid.

ExtensionJavaScriptTutorial
0 likes · 8 min read
Build and Publish a VSCode Code Snippets Extension—Avoid Common Pitfalls
Python Crawling & Data Mining
Python Crawling & Data Mining
May 22, 2021 · Fundamentals

Master Python Lists: From Basics to Advanced Operations

This tutorial walks you through Python list syntax, common operations such as adding, modifying, searching, deleting, sorting, and nesting, complete with code examples and output screenshots, helping beginners and intermediate programmers deepen their understanding of list handling.

Data StructuresListOperations
0 likes · 8 min read
Master Python Lists: From Basics to Advanced Operations
Top Architect
Top Architect
May 19, 2021 · Backend Development

Full‑Stack Food Delivery System (Spring Boot + Vue) – Setup Guide and Code

This article provides a complete tutorial for building a food‑delivery system with a mobile app, backend management, and API, detailing the technology stack, module structure, database setup, code snippets, and step‑by‑step instructions to launch both the admin and mobile front‑ends.

MongoDBSpring BootTutorial
0 likes · 4 min read
Full‑Stack Food Delivery System (Spring Boot + Vue) – Setup Guide and Code
Python Crawling & Data Mining
Python Crawling & Data Mining
May 19, 2021 · Backend Development

urllib vs requests: Which Python Library Wins for Web Scraping?

This article compares Python's built‑in urllib library with the third‑party requests library, demonstrating their usage through code examples, highlighting differences in request construction, response handling, and practical considerations for web scraping, and concludes with recommendations for choosing the more convenient tool.

HTTPPythonTutorial
0 likes · 6 min read
urllib vs requests: Which Python Library Wins for Web Scraping?
Python Programming Learning Circle
Python Programming Learning Circle
May 17, 2021 · Game Development

Design and Implementation of a Snake Game Using Python and Pygame

This article presents a comprehensive overview of a Snake game project built with Python and Pygame, detailing game rules, overall design, required libraries, core functions such as food generation, movement, collision detection, mode handling, and includes the complete source code for both normal and wall‑through modes.

Game DevelopmentPygameSnake Game
0 likes · 19 min read
Design and Implementation of a Snake Game Using Python and Pygame
Top Architect
Top Architect
May 17, 2021 · Game Development

Creating a Hero in King of Glory: Java OOP Tutorial (Part 1)

This article walks through building a simple hero system for the game King of Glory using Java, covering package setup, class definitions for heroes, equipment, and monsters, and a demo program that creates a hero, simulates earning gold, and purchases items to enhance attributes.

EquipmentGame DevelopmentHero
0 likes · 11 min read
Creating a Hero in King of Glory: Java OOP Tutorial (Part 1)
Java Captain
Java Captain
May 16, 2021 · Game Development

Creating a Hero in a Java Game: Step-by-Step Tutorial (Part 1)

This article walks through building a simple Java-based game prototype by creating hero, equipment, and monster classes, demonstrating object-oriented concepts, and showing a main program that simulates hero creation, resource gathering, and equipment purchase.

Code ExampleEquipmentGame Development
0 likes · 9 min read
Creating a Hero in a Java Game: Step-by-Step Tutorial (Part 1)
360 Tech Engineering
360 Tech Engineering
May 14, 2021 · Backend Development

Introduction to GraphQL: Concepts, Usage, and a Python Flask Implementation

This article explains the limitations of traditional RESTful APIs, introduces GraphQL as a flexible query language, details its core concepts such as operation types, object and scalar types, and schema definition, and provides a complete Python Flask example with code analysis, execution steps, and a discussion of its advantages and drawbacks.

APIFlaskGraphQL
0 likes · 9 min read
Introduction to GraphQL: Concepts, Usage, and a Python Flask Implementation
Python Programming Learning Circle
Python Programming Learning Circle
May 13, 2021 · Fundamentals

Drawing a Corgi and a Heart with Python Turtle

This tutorial teaches how to use Python's Turtle library to draw a corgi, a single dog illustration, and a decorative heart by explaining canvas setup, pen commands, movement functions, text insertion, and providing complete code examples for each step.

Tutorialprogramming basics
0 likes · 7 min read
Drawing a Corgi and a Heart with Python Turtle
MaGe Linux Operations
MaGe Linux Operations
May 11, 2021 · Backend Development

Merge Two Excel Files with a Single Line of Python Code

This tutorial shows how to read two Excel worksheets with pandas, merge them on matching name columns using a single merge command, and save the combined data back to a new Excel file, all with just a few lines of Python code.

ExcelTutorialdata merging
0 likes · 4 min read
Merge Two Excel Files with a Single Line of Python Code
IT Xianyu
IT Xianyu
May 10, 2021 · Frontend Development

Electron Cross‑Platform Development Guide: Environment Setup, Project Structure, and Sample Applications

This article provides a comprehensive tutorial on building cross‑platform desktop applications with Electron, covering environment preparation, installation of Node, Vue‑CLI and Electron, project creation, directory layout, main and renderer processes, and detailed examples such as a NetEase Cloud Music client and a QQ Music player.

Desktop AppElectronNode.js
0 likes · 12 min read
Electron Cross‑Platform Development Guide: Environment Setup, Project Structure, and Sample Applications
MaGe Linux Operations
MaGe Linux Operations
May 7, 2021 · Fundamentals

7 Fun Python Projects to Automate Everyday Tasks (Full Code Included)

This article shares seven practical Python scripts—from web‑scraping Zhihu images and chatting bots to AI poem analysis, lottery generation, automatic apology letters, screen recording, and GIF creation—demonstrating how to avoid reinventing the wheel while learning useful automation techniques.

AICode ExamplesPython
0 likes · 9 min read
7 Fun Python Projects to Automate Everyday Tasks (Full Code Included)
MaGe Linux Operations
MaGe Linux Operations
May 6, 2021 · Backend Development

How to Build a QQ Bot with Mirai and Python: Step‑by‑Step Guide

This tutorial walks you through installing Java and Python, configuring the Mirai ecosystem, using mirai‑console‑loader, solving the login captcha with mirai‑login‑solver‑selenium, setting up mirai‑api‑http, and finally writing a Python bot with graia‑application‑mirai, complete with code examples and screenshots.

ChatbotQQ BotTutorial
0 likes · 10 min read
How to Build a QQ Bot with Mirai and Python: Step‑by‑Step Guide
Laravel Tech Community
Laravel Tech Community
Apr 27, 2021 · Fundamentals

Git vs SVN: Core Differences, Workflow Concepts, and Essential Commands

This article compares Git and SVN, explains their fundamental architectural differences, introduces the core workflow concepts of Git, and provides a comprehensive set of common commands for initialization, configuration, file handling, branching, committing, pushing, fetching, pulling, resetting, stashing, and querying, including Git‑SVN bridge usage.

Tutorialbranchingcommands
0 likes · 10 min read
Git vs SVN: Core Differences, Workflow Concepts, and Essential Commands
Wukong Talks Architecture
Wukong Talks Architecture
Apr 25, 2021 · Fundamentals

Comprehensive Guide to Using ProcessOn for Diagrams and Collaboration

This tutorial provides a detailed walkthrough of ProcessOn, covering flowchart creation, mind‑mapping, template usage, collaboration features, file organization, pricing plans, and additional highlights, enabling users to efficiently produce and share architectural diagrams and other visual assets.

CollaborationDiagrammingProcessOn
0 likes · 9 min read
Comprehensive Guide to Using ProcessOn for Diagrams and Collaboration
php Courses
php Courses
Apr 25, 2021 · Backend Development

Using PHP extract() to Convert Array Elements into Variables

This article explains the PHP extract() function, its syntax, parameters, return value, and provides two practical code examples showing how to turn associative array entries into individual variables with optional prefix handling.

BackendExtractPHP
0 likes · 4 min read
Using PHP extract() to Convert Array Elements into Variables
php Courses
php Courses
Apr 22, 2021 · Backend Development

How to Use PHP's array_keys() Function to Retrieve Array Keys

This article explains PHP's array_keys() function, detailing its syntax, parameters, return values, and demonstrating three practical examples that show how to retrieve array keys with optional search values and strict comparison.

BackendPHPTutorial
0 likes · 3 min read
How to Use PHP's array_keys() Function to Retrieve Array Keys
php Courses
php Courses
Apr 8, 2021 · Backend Development

Using ThinkPHP6 Collection Methods to Process Database Query Results

The article explains how ThinkPHP6 returns query results as a Collection object, introduces its useful methods such as toArray and isEmpty, and provides a PHP code example demonstrating how to check for empty results and convert the collection to an array.

BackendCollectionPHP
0 likes · 2 min read
Using ThinkPHP6 Collection Methods to Process Database Query Results
Liangxu Linux
Liangxu Linux
Apr 6, 2021 · Operations

Integrate Git into Nautilus: A Step‑by‑Step Linux Guide

This tutorial shows Linux users how to add Git functionality to the Nautilus file manager using RabbitVCS, covering installation, repository initialization, common Git actions, and pushing changes to GitHub directly from the GUI.

GitLinuxNautilus
0 likes · 6 min read
Integrate Git into Nautilus: A Step‑by‑Step Linux Guide
Python Programming Learning Circle
Python Programming Learning Circle
Apr 1, 2021 · Fundamentals

Building a Hangman Word‑Guessing Game in Python

This tutorial walks through the complete design and implementation of a Hangman word‑guessing game in Python, covering library imports, variable declarations, hidden‑word generation, the main game loop, input handling, guess validation, life‑count management, repeated‑guess detection, win/lose conditions, and output clearing within a Jupyter Notebook environment.

Game DevelopmentJupyter NotebookLists
0 likes · 12 min read
Building a Hangman Word‑Guessing Game in Python
php Courses
php Courses
Mar 30, 2021 · Backend Development

Using PHP array_diff_assoc() to Compare Arrays and Find Differences

This article explains the PHP function array_diff_assoc(), its syntax, parameters, and provides code examples demonstrating how to compare arrays by keys and values to obtain the difference, along with a practical use case for detecting changes in form data during web development.

BackendPHPTutorial
0 likes · 2 min read
Using PHP array_diff_assoc() to Compare Arrays and Find Differences
Python Programming Learning Circle
Python Programming Learning Circle
Mar 27, 2021 · Fundamentals

Understanding and Using For Loops in Python

This article explains the purpose, syntax, and practical usage of Python's for loop, covering iteration over lists, strings, ranges, conditional filtering, loop control statements, list comprehensions, and real‑world examples with complete code snippets.

LoopsTutorialfor loop
0 likes · 7 min read
Understanding and Using For Loops in Python
macrozheng
macrozheng
Mar 26, 2021 · Fundamentals

Master Git Commands Visually: A Hands‑On Guide with Animated Diagrams

This article introduces a visual Git learning tool and walks through essential Git operations—commits, branching, HEAD navigation, cherry‑pick, rebase, tags, and remote interactions—using animated diagrams and exact command examples to make the concepts clear and memorable.

GitTutorialVersion Control
0 likes · 8 min read
Master Git Commands Visually: A Hands‑On Guide with Animated Diagrams
php Courses
php Courses
Mar 24, 2021 · Backend Development

Comprehensive Guide to PHP Array Functions

This tutorial presents a thorough overview of PHP array functions, explaining key‑value operations, creation and splitting utilities, sorting techniques, and set operations such as differences and intersections, while providing clear code examples for each function.

BackendPHPTutorial
0 likes · 10 min read
Comprehensive Guide to PHP Array Functions
php Courses
php Courses
Mar 23, 2021 · Backend Development

Removing Empty Elements from a PHP Array Using foreach and array_filter

This article explains two PHP techniques for removing empty or falsy elements from an array: a straightforward foreach loop that unsets unwanted values and the more efficient array_filter() function with optional callbacks and flags, including code examples and the resulting output.

BackendPHPTutorial
0 likes · 3 min read
Removing Empty Elements from a PHP Array Using foreach and array_filter
Python Programming Learning Circle
Python Programming Learning Circle
Mar 20, 2021 · Backend Development

Using PrettyTable in Python to Display Structured CLI Tables

This article introduces the PrettyTable library for Python, explains how to install it, demonstrates various ways to create and populate tables—including row, column, CSV, database, and HTML sources—covers output formats, selective printing, sorting, and styling options, and provides complete code examples for each feature.

CLITableTutorial
0 likes · 12 min read
Using PrettyTable in Python to Display Structured CLI Tables
Laravel Tech Community
Laravel Tech Community
Mar 13, 2021 · Backend Development

How to Validate Gregorian Dates in PHP with checkdate()

This guide explains how PHP's checkdate() function validates Gregorian dates by checking month, day, and year values, details each parameter's accepted range, describes the boolean return, and provides example code demonstrating both a valid and an invalid date check.

BackendTutorialcheckdate
0 likes · 2 min read
How to Validate Gregorian Dates in PHP with checkdate()
php Courses
php Courses
Mar 12, 2021 · Backend Development

Understanding PHP Magic Methods: __construct, __destruct, __call, and More

This article explains the purpose, behavior, and typical usage of PHP's magic methods—including __construct, __destruct, __call, __callStatic, __get, __set, __isset, __unset, __sleep, __wakeup, __toString, __invoke, __set_state, __clone, __autoload, and __debugInfo—providing clear definitions, explanations, and code examples for each.

Object-OrientedPHP8Tutorial
0 likes · 7 min read
Understanding PHP Magic Methods: __construct, __destruct, __call, and More
Liangxu Linux
Liangxu Linux
Mar 3, 2021 · Operations

Master Linux Command Line: Essential Commands and Tips for Beginners

This comprehensive guide walks you through Linux command line fundamentals, covering directory navigation, file manipulation, text processing, compression, system monitoring, networking, user management, permissions, and disk operations with clear examples, code snippets, and practical tips for both newcomers and seasoned users.

LinuxSystem AdministrationTutorial
0 likes · 73 min read
Master Linux Command Line: Essential Commands and Tips for Beginners
php Courses
php Courses
Feb 24, 2021 · Backend Development

How to View Yaf Framework Source Code in PhpStorm

This tutorial explains how to download the Yaf framework documentation from GitHub, unzip it, configure PhpStorm's Include Path to point to the source files, and verify the setup by opening a project file and Ctrl‑clicking a Yaf class, enabling easy source code navigation.

IDEPhpStormTutorial
0 likes · 2 min read
How to View Yaf Framework Source Code in PhpStorm
Java Architecture Diary
Java Architecture Diary
Feb 22, 2021 · Backend Development

Build a GraphQL API with Netflix DGS and Spring Boot

Learn how to quickly set up a GraphQL API using Netflix's open‑source DGS framework in a Spring Boot project, covering Maven dependencies, schema definition, data fetcher implementation, UI debugging with GraphiQL, and example curl and Java test calls.

APIGraphQLNetflix DGS
0 likes · 5 min read
Build a GraphQL API with Netflix DGS and Spring Boot
php Courses
php Courses
Feb 19, 2021 · Backend Development

Generating QR Codes in PHP with Composer (endroid/qr-code) and phpqrcode

This article walks through two practical methods for generating QR codes in PHP—using Composer to install the endroid/qr-code library and directly integrating the phpqrcode library—detailing setup steps, code examples, and parameter explanations to help developers quickly implement URL‑based QR code generation.

QR codeTutorialendroid/qr-code
0 likes · 5 min read
Generating QR Codes in PHP with Composer (endroid/qr-code) and phpqrcode
Open Source Linux
Open Source Linux
Feb 19, 2021 · Fundamentals

Master Essential Linux Commands: From pwd to du with Real Examples

This tutorial introduces the most frequently used Linux commands—including pwd, cd, ls, touch, mkdir, cp, rm, mv, find, and du—explaining their purpose, options, and providing concrete shell examples to help beginners confidently navigate and manage files and directories.

LinuxTutorialfile management
0 likes · 9 min read
Master Essential Linux Commands: From pwd to du with Real Examples
Liangxu Linux
Liangxu Linux
Feb 17, 2021 · Operations

Master Linux Command Line: From Basics to Advanced System Operations

This comprehensive guide walks you through Linux command line fundamentals, directory and file manipulation, text processing, compression, system installation, permission management, regular expressions, and disk operations, providing practical examples and code snippets for each topic.

LinuxSystem AdministrationTutorial
0 likes · 71 min read
Master Linux Command Line: From Basics to Advanced System Operations
Python Crawling & Data Mining
Python Crawling & Data Mining
Feb 12, 2021 · Fundamentals

22 Fun Python Projects to Boost Your Coding Skills

This article presents 22 practical Python projects—from a dice simulator and rock‑paper‑scissors game to a weather app and a currency converter—each with a clear purpose, implementation hints, and ready‑to‑run code snippets, helping readers sharpen their programming abilities.

BeginnerProjectsPython
0 likes · 20 min read
22 Fun Python Projects to Boost Your Coding Skills
php Courses
php Courses
Feb 8, 2021 · Backend Development

Various Methods to Retrieve File Extension in PHP

This article demonstrates seven different PHP techniques for extracting a file's extension, including using substr with strrchr, substr with strrpos, explode with array indexing, end(), pathinfo, and PATHINFO_EXTENSION, providing code examples and brief explanations for each method.

Tutorialfile extensionstring-functions
0 likes · 3 min read
Various Methods to Retrieve File Extension in PHP
Liangxu Linux
Liangxu Linux
Jan 31, 2021 · Game Development

How to Tweak the “Big Watermelon” Cocos Game: Source Files and Score Hacks

This guide walks you through the core source files of the popular “Big Watermelon” Cocos game, explains its simple click‑collision‑score‑display flow, and shows concrete code snippets for altering the scoring logic or other gameplay tweaks, while hinting at algorithmic optimization.

CocosGame DevelopmentJavaScript
0 likes · 4 min read
How to Tweak the “Big Watermelon” Cocos Game: Source Files and Score Hacks
Python Crawling & Data Mining
Python Crawling & Data Mining
Jan 31, 2021 · Fundamentals

Master Matplotlib: From Simple Plots to Advanced Visualizations

This tutorial walks you through the essentials of Matplotlib, showing how to create basic figures, customize subplots, style lines and markers, adjust axes and legends, add annotations and patches, save figures in various formats, and tweak global settings for professional-quality visualizations.

MatplotlibTutorialplotting
0 likes · 20 min read
Master Matplotlib: From Simple Plots to Advanced Visualizations
Java Captain
Java Captain
Jan 29, 2021 · Backend Development

Flash-Waimai: A Complete Food Delivery System Based on Spring Boot and Vue.js

Flash‑Waimai is an open‑source, full‑stack food delivery application featuring a mobile client, admin portal, and API, built with Spring Boot for the backend, Vue.js for the frontend, MySQL and MongoDB for data storage, and includes detailed setup instructions, code snippets, and deployment guides.

Spring BootTutorialVue.js
0 likes · 4 min read
Flash-Waimai: A Complete Food Delivery System Based on Spring Boot and Vue.js
Programmer DD
Programmer DD
Jan 29, 2021 · Operations

Run Multiple WeChat Instances on macOS with Simple Commands and WeChatTweak

This guide explains why office workers need separate personal and work WeChat accounts on macOS, compares three ways to launch multiple WeChat clients—including app duplication, command‑line shortcuts, and the WeChatTweak‑macOS tool—and shows how to use each method effectively.

Tutorialcommand-linemacOS
0 likes · 3 min read
Run Multiple WeChat Instances on macOS with Simple Commands and WeChatTweak