互动
最近评论
标签
寻找感兴趣的领域

本博客使用halo- 1panel一键部署,服务器使用的华为ECS弹性云,域名提供商为阿里云,七牛云提供的CDN服务。

简介

早在3年前,我就通过nextjs + Algoolia + tailwindcss + jenkins + gitlab 搭建自动构建部署的博客系统。但功能比较简陋,优点是all in markdown,而markdown的组件也可以通过代码自定义,便于开发者专注博客内容。缺点嘛,部署方式有点古老,一些额外的功能需要自建后台或接serverless实现。

最开始做博客分享技术比较纯粹,就是热爱编程。但工作磨砺了几年后加之通用智能井喷式的增长,让我不经反思,像我这样的“算力资源”还能被利用多久。

关于

自学计算机知识,全日制非科班专科,后续升了非全本科学历。作为不知名程序员,自知与科班、985/211 程序员差距过大,所以学习的时候经常会忘乎所以。但近两年因为作息不定,健康出了一点问题,在此希望大家都好好爱惜自己的身体!

个人爱好

很久以前玩穿越火线、LOL、QQ飞车.....后来上了带专,也不再迷恋网游。日常会玩一些诸如金铲铲、lolm,还有最近新上的dnf手游。瑞克与莫迪死忠粉(之前一直追我的英雄学院,奈何堀越耕平不争气)、随机追漫威的剧集以及经常会逛“睿智”吧(寻求内心的平静🤣)。业余币圈韭菜。二次元肥宅。

技术栈

开发:前端全家桶(前端工程、微前端等)、后端半价桶(Springboot、部分中间件使用、微服务)

其他:Lunix(Ubuntu、CentOS)、shell、docker、nodejs、jenkins、nginx、android、python、rust等

日常开发还是以React + ts为主(最近两年学了不少类型体操,那可真是相当折磨人,甚至有种感觉,这ts怎么越写越难?它在一点一点的瓜分日常开发占比)。会一点爬虫技术以及安卓开发。

自我评价

我有个习惯就是经常阅读、收藏、归纳、整理一些技术网站。也正是因为这个习惯,让我对于技术选型特别敏感。对于新事物,我总能在这个时候脱颖而出,为业务排除万难。做开发几年,我一直都是属于闷头做事的类型。不过我喜欢做有挑战的事情。在团队内个人比较佛系,具备一定的亲和力,为人好相处,并且对很多事情都看得开还抗压。以下为概览:

    .___                        .___             
  __| _/____   ____ _____     __| _/____ ________
 / __ |/ __ \_/ ___\\__  \   / __ |/ __ \\___   /
/ /_/ \  ___/\  \___ / __ \_/ /_/ \  ___/ /    / 
\____ |\___  >\___  >____  /\____ |\___  >_____ \
     \/    \/     \/     \/      \/    \/      \/


// output
{
	"skills": ["吹逼", "推锅", "CV", "前端全家桶", "后端半价桶", "抗压金钟罩"],
	"yearsOfExperience": "5 years",
	"hobbies":["二次元", "写屎山💻", "探索新事物", "炒币"],
	"name": "decadez"
}

import java.util.ArrayList;
import java.util.List;
import org.json.JSONObject;
import org.json.JSONException;

class Programmer {
    private String name;
    private int yearsOfExperience;
    private static List<String> skills = new ArrayList<>(List.of("吹逼", "推锅", "CV"));

    public static List<String> getSkills() {
        return new ArrayList<>(skills);
    }

    public static void setSkills(List<String> skills) {
        Programmer.skills = skills;
    }

    public Programmer(String name, int yearsOfExperience) {
        this.name = name;
        this.yearsOfExperience = yearsOfExperience;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public int getYearsOfExperience() {
        return yearsOfExperience;
    }

    public void setYearsOfExperience(int yearsOfExperience) {
        this.yearsOfExperience = yearsOfExperience;
    }
    

    @Override
    public String toString() {
        return "Programmer{" +
                "name='" + name + '\'' +
                ", yearsOfExperience=" + yearsOfExperience +
                '}';
    }
}

class Decadez extends Programmer {
    private List<String> hobbies;
    private List<String> personalSkills;

    public Decadez(String name, int yearsOfExperience, List<String> hobbies, List<String> additionalSkills) {
        super(name, yearsOfExperience);
        this.hobbies= hobbies;
        this.personalSkills = new ArrayList<>(Programmer.getSkills());
        if (additionalSkills != null) {
            this.personalSkills.addAll(additionalSkills);
        }
    }

    public List<String> getHobbies() {
        return hobbies;
    }
    
    private List<String> getPersonalSkills() {
        return new ArrayList<>(personalSkills);
    }

    public void baptizedBy996(List<String> newSkills) {
        if (newSkills != null) {
            this.personalSkills.addAll(newSkills);
        }
        if (this.personalSkills.isEmpty()) {
            this.personalSkills.addAll(Programmer.getSkills());
        }
    }

    @Override
    public String toString() {
        JSONObject json = new JSONObject();
        try {
            json.put("name", this.getName());
            json.put("yearsOfExperience", this.getYearsOfExperience() + " years");
            json.put("hobbies", this.getHobbies());
            json.put("skills", this.getPersonalSkills());
        } catch (JSONException e) {
            e.printStackTrace();
        }
        return json.toString();
    }
}

public class Aplication {
    public static void main(String[] args) {
        Decadez decadez = new Decadez("decadez", 5, List.of("二次元", "写屎山💻", "探索新事物", "炒币"), null);
        decadez.baptizedBy996(List.of("前端全家桶", "后端半价桶", "抗压金钟罩"));
        System.out.println(decadez.toString());
    }
}


评论
你无需删除空行,直接评论以获取最佳展示效果
引用到评论