Tag

startup

1 views collected around this technical thread.

Top Architect
Top Architect
May 24, 2025 · Backend Development

Why Spring Boot Starts Slowly: A Detailed Performance Analysis and Profiling Guide

This article investigates the reasons behind Spring Boot's slow startup by examining the macro initialization flow, pinpointing time‑consuming stages such as environment preparation and bean refresh, and providing profiling code examples to help developers understand and optimize the boot process.

JavaSpringBootbackend
0 likes · 15 min read
Why Spring Boot Starts Slowly: A Detailed Performance Analysis and Profiling Guide
Architecture Digest
Architecture Digest
May 7, 2025 · Backend Development

Analyzing Why Spring Boot Startup Is Slow: Detailed Breakdown and Profiling

This article investigates the reasons behind Spring Boot's slow startup by tracing the execution timeline, examining the prepareEnvironment and refreshContext phases, profiling bean creation, configuration loading, and external client initialization, and provides sample Java code for measuring and visualizing each step.

JavaSpringBootbackend
0 likes · 13 min read
Analyzing Why Spring Boot Startup Is Slow: Detailed Breakdown and Profiling
IT Services Circle
IT Services Circle
Mar 14, 2025 · Product Management

From a Wedding Seating Problem to a Successful SaaS: The PerfectTablePlan Story

The article recounts how Andy turned a challenging wedding seating arrangement into the PerfectTablePlan software, detailing its development with C++/Qt, use of genetic algorithms and quantum computing, rapid market adoption, extensive marketing tactics, and the eventual creation of a sustainable one‑person business.

C++Software Developmentgenetic algorithm
0 likes · 9 min read
From a Wedding Seating Problem to a Successful SaaS: The PerfectTablePlan Story
DevOps
DevOps
Feb 13, 2025 · Artificial Intelligence

60 Thoughts of DeepSeek Founder Liang Wenfeng on AGI, Large Models, and Innovation

The article presents DeepSeek founder Liang Wenfeng’s 60 reflections on artificial general intelligence, large‑model research, open‑source culture, talent strategy, and the broader AI ecosystem, while also highlighting his vision for democratizing AI and upcoming AI‑coding events in Beijing.

AGIArtificial IntelligenceDeepSeek
0 likes · 21 min read
60 Thoughts of DeepSeek Founder Liang Wenfeng on AGI, Large Models, and Innovation
Architecture Digest
Architecture Digest
Jan 20, 2025 · Backend Development

Optimizing SpringBoot Startup Time: Reducing Bean Scanning and Initialization Overhead

This article explains how a SpringBoot service that originally took 6‑7 minutes to start was trimmed to about 40 seconds by analysing the run‑listener phases, pinpointing costly bean‑scanning and post‑processor steps, and applying JavaConfig‑based selective component registration and cache auto‑configuration adjustments.

JavaSpringBootbean-scan
0 likes · 16 min read
Optimizing SpringBoot Startup Time: Reducing Bean Scanning and Initialization Overhead
Practical DevOps Architecture
Practical DevOps Architecture
Jan 8, 2025 · Operations

How to Add a Startup Script on Ubuntu Using the rc‑local Service

This guide explains how to create and enable an rc‑local startup script on Ubuntu by inspecting the rc‑local.service unit, creating /etc/rc.local, setting execution permissions, and enabling the service with systemctl so custom commands run automatically at boot.

linuxoperationsrc-local
0 likes · 3 min read
How to Add a Startup Script on Ubuntu Using the rc‑local Service
DataFunTalk
DataFunTalk
Dec 15, 2024 · Artificial Intelligence

China's Large‑Model Survival Battle: How Start‑ups Face Giant Competition and Market Realities

The article analyses the fierce competition in China's large‑model market, contrasting the heavy‑asset compute race and talent‑driven challenges faced by startups against big firms, while sharing personal experiences, algorithmic hurdles, and potential niches such as embodied AI, finance models, and real‑time recommendation systems.

Artificial IntelligenceEmbedded AIFinance
0 likes · 15 min read
China's Large‑Model Survival Battle: How Start‑ups Face Giant Competition and Market Realities
Java Captain
Java Captain
Nov 21, 2024 · Backend Development

Lessons from Choosing a Tech Stack for a Small Startup: uni-app, egg.js, and Team Management

This article recounts a founder’s experience joining a small startup in 2022, detailing the initial tech stack choices of uni‑app for mobile, egg.js with MySQL for the backend, and antd‑vue for the admin panel, as well as the subsequent challenges, team hiring, and management lessons learned.

Egg.jsTech Stackbackend
0 likes · 8 min read
Lessons from Choosing a Tech Stack for a Small Startup: uni-app, egg.js, and Team Management
IT Services Circle
IT Services Circle
Nov 13, 2024 · R&D Management

Why Startups Prefer Hiring Under 35: Cost, Adaptability, and Team Dynamics

The article examines why many startups avoid hiring employees over 35, highlighting cost considerations, faster learning and adaptability of younger staff, concerns about salary expectations, willingness to accept lower positions, perceived stability, team vitality, health constraints, and the difficulty of motivating older workers.

age discriminationcost analysisemployee retention
0 likes · 6 min read
Why Startups Prefer Hiring Under 35: Cost, Adaptability, and Team Dynamics
IT Services Circle
IT Services Circle
Sep 26, 2024 · Product Management

From Simple Tech to Multi‑Million Dollar Projects: The Pieter Levels Entrepreneurial Journey

The article chronicles how Pieter Levels, a digital‑nomad programmer, built a series of high‑earning online services using minimal, decades‑old technologies, illustrating the power of solving real problems, keeping implementations simple, and aggressively promoting products to achieve sustainable entrepreneurial success.

AI Servicesdigital nomadentrepreneurship
0 likes · 7 min read
From Simple Tech to Multi‑Million Dollar Projects: The Pieter Levels Entrepreneurial Journey
DevOps
DevOps
Sep 10, 2024 · Artificial Intelligence

2024 Analysis of China’s Large‑Model “Six Tigers”: Slowing Model Gains, Funding Rounds, and Market Strategies

The article reviews the rapid rise and recent slowdown of Chinese large‑model startups—often called the “six tigers”—examining their product differentiation, heavy marketing spend, funding achievements, internal personnel changes, and the broader challenges they face in both B‑side and C‑side AI markets in 2024.

AIChinaFunding
0 likes · 15 min read
2024 Analysis of China’s Large‑Model “Six Tigers”: Slowing Model Gains, Funding Rounds, and Market Strategies
Mike Chen's Internet Architecture
Mike Chen's Internet Architecture
Sep 8, 2024 · Backend Development

Understanding the Spring Boot Startup Process

This article explains the Spring Boot startup mechanism, covering the @SpringBootApplication entry annotation, its constituent annotations, the role of SpringApplication.run, and the step‑by‑step initialization flow that powers Java backend applications.

AutoConfigurationConfigurationJava
0 likes · 3 min read
Understanding the Spring Boot Startup Process
Code Mala Tang
Code Mala Tang
Sep 4, 2024 · R&D Management

Why Founder Mode Beats Traditional Management in Startups

The article explores the “founder mode” – a high‑intensity, mission‑driven leadership style distinct from traditional manager mode – illustrated by Paul Graham’s insights and Brian Chesky’s experiences, highlighting why conventional advice often fails for startup founders.

company cultureentrepreneurshipfounder
0 likes · 8 min read
Why Founder Mode Beats Traditional Management in Startups
Top Architect
Top Architect
Jun 25, 2024 · Backend Development

A Comprehensive Guide to Spring Boot Startup Sequence and Extension Points

This article explains the Spring Boot startup process, enumerates the key extension points and their execution order, demonstrates the sequence with practical code examples, and answers common questions about bean initialization, lifecycle callbacks, and the proper timing for opening RPC, MQ, and HTTP traffic.

BeanExtensionPointsJava
0 likes · 16 min read
A Comprehensive Guide to Spring Boot Startup Sequence and Extension Points
Top Architect
Top Architect
Jun 21, 2024 · Backend Development

Deep Dive into Spring Boot Startup Sequence and Extension Points

This article provides a comprehensive explanation of Spring Boot's startup process, detailing each lifecycle extension point, the order of execution, common pitfalls with RPC/MQ/HTTP traffic, and includes runnable code examples to help developers master Spring initialization.

DependencyInjectionJavaLifecycle
0 likes · 15 min read
Deep Dive into Spring Boot Startup Sequence and Extension Points
Java Architect Essentials
Java Architect Essentials
Jun 20, 2024 · Mobile Development

Lessons from a Startup: Choosing Mobile and Backend Technologies, Team Management, and Pitfalls

The article recounts a developer’s experience in a small startup, detailing the rationale behind selecting uni‑app for cross‑platform mobile development, egg.js and MySQL for the backend, the challenges of rapid product iteration, team hiring, management practices, and practical advice to avoid common pitfalls.

Egg.jsMobile DevelopmentTech Stack
0 likes · 9 min read
Lessons from a Startup: Choosing Mobile and Backend Technologies, Team Management, and Pitfalls
Architect's Guide
Architect's Guide
Jun 19, 2024 · Mobile Development

Lessons from a Startup: Tech Stack Choices, Team Management, and Pitfalls

The article shares a developer’s painful experience at a small startup, detailing the initial choice of uni‑app, egg.js, and antd‑vue, the subsequent technical and managerial turbulence, and practical advice on hiring, team management, and avoiding common pitfalls.

Egg.jsMobile Developmentmidway.js
0 likes · 8 min read
Lessons from a Startup: Tech Stack Choices, Team Management, and Pitfalls
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Jun 15, 2024 · Backend Development

Comprehensive Guide to Spring Boot Startup Sequence and Extension Points

This article provides an in‑depth explanation of the Spring Boot startup process, enumerates the key extension points, demonstrates their execution order with sample code and logs, and offers practical recommendations for correctly initializing RPC, MQ, and HTTP traffic.

DependencyInjectionJavaLifecycle
0 likes · 15 min read
Comprehensive Guide to Spring Boot Startup Sequence and Extension Points
IT Architects Alliance
IT Architects Alliance
Jun 14, 2024 · Backend Development

In‑Depth Explanation of Spring Boot Startup Sequence and Extension Points

This article thoroughly explains the Spring Boot startup sequence, detailing each lifecycle extension point, common pitfalls with early RPC, HTTP, and MQ traffic, and provides code examples and answers to eleven critical questions to help developers master Spring initialization and avoid runtime failures.

DependencyInjectionJavaLifecycle
0 likes · 13 min read
In‑Depth Explanation of Spring Boot Startup Sequence and Extension Points