kristofer / WifiMacBookFreeBSD.md
0 喜欢
0 派生
1 文件
最后活跃于
networking wireless.
kristofer / Spark/Docker Troubleshooting Guide
0 喜欢
0 派生
1 文件
最后活跃于
Spark-Docker-SQL - Troubleshooting Guide
🚨 Quick Emergency Fixes
🔥 "Everything is Broken" - Nuclear Option
# Stop everything and restart fresh
docker-compose down -v --remove-orphans
docker system prune -f
docker volume prune -f
kristofer / DTOs (java & python)
0 喜欢
0 派生
2 文件
最后活跃于
Data Transfer Objects (DTOs) Explained for Beginners (Java, then Python)
Data Transfer Objects (DTOs) via Java; Explained for Beginners
What Are DTOs?
A Data Transfer Object (DTO) is a simple container for data that travels between different parts of your application. Think of a DTO like an envelope specifically designed to carry exactly what's needed—no more, no less.
public class OrderDTO {
private Long id;
private String customerName;
kristofer / gist:d3baa93bb0434570863f9306365bece1
0 喜欢
0 派生
1 文件
最后活跃于
1 | sjldjaslkdjalkjddlasjlkjsa.kmd |
kristofer / Maven for Java Newbies
0 喜欢
0 派生
1 文件
最后活跃于
Maven and POM.xml for Newbie Java Programmers
What is Maven?
Maven is a powerful build automation and project management tool primarily used for Java projects. Think of it as your project's organizer and assistant that handles several critical tasks:
- Dependency Management: Automatically downloads and manages libraries your project needs
- Project Building: Compiles your code, runs tests, and packages your application
- Project Structure: Enforces a standard directory layout for consistent organization
更新
更早