首页
学习
活动
专区
工具
TVP
发布

一个会写诗的程序员的博客

专栏作者
1222
文章
2321452
阅读量
95
订阅数
Ubuntu 22.04 SSH the RSA key isn't working since upgrading from 20.04
Up until last week I was running Ubuntu 20.04 happily, and then over the weekend decided to back everything up and install 22.04. I've had a couple of teething issues which I've solver, however I'm having real issues with SSH. I have two first generation WD MyCloud drives which handle all my backups and files both on and away from home. I can still connect to the shares with no problems, however I need to SSH onto both drives in order to run maintenance, backup between cloud drives, etc.
一个会写诗的程序员
2022-12-02
1K0
Ubuntu 设置开机时 grub 启动的系统内核版本
dpkg --get-selections | grep linux-modules
一个会写诗的程序员
2022-11-30
1.8K0
ubuntu中root和普通用户切换方法
ubuntu登录后,默认是普通用户权限,那么普通用户权限和root权限如何切换呢,下面总结下它们之间如何切换。
一个会写诗的程序员
2022-09-30
5.5K0
Linux 以root用户登录后无法打开chrome谷歌浏览器
chrome谷歌浏览器默认设置不能以root权限打开,主要是为了软件安全考虑,防止root权限进行破坏操作
一个会写诗的程序员
2022-09-30
5.9K0
在Linux中查找文件系统类型的7种方法(ext2,ext3或ext4)
文件系统是在存储磁盘或分区上命名,存储,检索和更新文件的方式。文件在磁盘上的组织方式。
一个会写诗的程序员
2022-09-28
3K0
在 Ubuntu 上从源码编译安装 Python 3.8
04.切换到 Python 源码目录,并且执行configure脚本,他会执行一系列检测,并且确保所有依赖都在你的系统上准备好了:
一个会写诗的程序员
2022-09-28
1.8K0
程序员架构修炼之道:架构设计中的人文主义哲学
我们不是技术决定论或技术万能论者。 我们不能忘记,产品毕竟是给人建造的,无论是强调范式、结构与信息,还是注重交互、界面与智能,我们都会顾及用户的个人想法——也就是时刻关注“用户体验”。
一个会写诗的程序员
2022-09-23
2350
软件架构与模式:结构、组件、关系
Software architecture refers to the fundamental structures of a software system and the discipline of creating such structures and systems. Each structure comprises software elements, relations among them, and properties of both elements and relations.
一个会写诗的程序员
2022-06-22
5920
Master Plan for becoming a Software Architect : Roadmap of a Software Architect
软件架构师在软件开发团队中扮演着高级的角色,这一角色需要时间和经验的积累,需要跨职能的技能和知识。除了技术方面的挑战,还要求架构师具备良好的社交能力。在开始考虑成为软件架构师的计划之前,我们先来看看典型的软件架构师类型:
一个会写诗的程序员
2022-06-02
7130
Go Mock 接口测试 单元测试 极简教程
To get the latest released version use: Go version < 1.16
一个会写诗的程序员
2022-05-30
1.9K0
Makefiles for Go Developers
In this tutorial, we are going to be looking at how you, as a Go developer, can leverage the wonderful bit of technology that is Makefiles for fame and fortune when developing your own Go applications.
一个会写诗的程序员
2022-05-13
3410
软件架构设计标准 (IEEE 1471 2000) ——极简教程
IT这个行业中的词汇许多都来源于传统行业。传统行业发展了很多年,有一套成熟的理论,而软件设计这个行业才几十年,在实践中,为了提高生产效率和品质,工程化是一个必然化的趋势,于是传统行业工程化的理论和实践就有了在软件设计这个行业移植的可能性。
一个会写诗的程序员
2022-05-13
2.2K0
ClickHouse : arrayMap, arrayJoin or ARRAY JOIN memory usage
ClickHouse : arrayMap, arrayJoin or ARRAY JOIN memory usage Why arrayMap, arrayFilter, arrayJoin use
一个会写诗的程序员
2022-03-23
1.1K0
关于实用可满足性模理论(SMT)求解 Practical Satisfiability Modulo Theories (SMT) Solving
https://en.wikipedia.org/wiki/Satisfiability_modulo_theories
一个会写诗的程序员
2022-03-07
6360
【Linux 命令大全】Linux od命令
Linux od 命令: 用于输出文件内容。 od指令会读取所给予的文件的内容,并将其内容以八进制字码呈现出来。 语法: od [-abcdfhilovx] [-A <字码基数>] [-j <字符数目>] [-N <字符数目>] [-s <字符串字符数>] [-t <输出格式>] [-w <每列字符数>] [--help] [--version] [文件...] 参数说明: -a  此参数的效果和同时指定"-ta"参数相同。 -A <字码基数>  选择要以何种基数计算字码。 -b  此参数的效果和同
一个会写诗的程序员
2022-03-07
22K0
OGNL (Object-Graph Navigation Language) 表达式 极简教程
OGNL stands for Object-Graph Navigation Language; it is an expression language for getting and setting properties of Java objects, plus other extras such as list projection and selection and lambda expressions. You use the same expression for both getting and setting the value of a property.
一个会写诗的程序员
2022-01-07
1K0
常用 linux 命令集锦
文章涉及到vim\grep\cat\more\less\echo\sed\awk的入门用法。
一个会写诗的程序员
2022-01-07
4.4K0
图文详解 Spark 总体架构 [禅与计算机程序设计艺术]
本文对Spark总体架构进行描述,本文读者需要一定的Spark的基础知识,至少了解Spark的RDD和DAG。
一个会写诗的程序员
2021-12-20
1.1K0
JVM 架构 : 运行时数据区 & 内存结构
Class loader is a subsystem in JVM, which is primarily responasible for loading the java classes, there are 3 different class loaders :
一个会写诗的程序员
2021-12-16
3260
Java 虚拟机圖文詳解: JVM 體系結構 ( The JVM Architecture Explained
A Virtual Machine is a software implementation of a physical machine. Java was developed with the concept of WORA (Write Once Run Anywhere), which runs on a VM. The compiler compiles the Java file into a Java .class file, then that .class file is input into the JVM, which loads and executes the class file. Below is a diagram of the Architecture of the JVM.
一个会写诗的程序员
2021-12-16
7070
点击加载更多
社区活动
腾讯技术创作狂欢月
“码”上创作 21 天,分 10000 元奖品池!
Python精品学习库
代码在线跑,知识轻松学
博客搬家 | 分享价值百万资源包
自行/邀约他人一键搬运博客,速成社区影响力并领取好礼
技术创作特训营·精选知识专栏
往期视频·千货材料·成员作品 最新动态
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档