add a admin user

创建 useradd -mG sudo sammy passwd sammy 测试 su sammy ls -al / 删除 userdel sammy 更改为admin

iohannes iohannes Published on 2025-03-14

barra的CNE5

Barra(如今已被 MSCI 收购了)提出了纯因子模型(pure factor model),它能够保证在截面上(即每日)构建因子投资组合时,每个因子的投资组合对目标因子有 1 个单位的

iohannes iohannes Published on 2025-03-14

blender创建多个动画的glb

首先给每个物体创建动画 在时间线窗口,拖动时间调到合适的位置 在layout窗口,选中物体,按I键,旋转相ॵ

iohannes iohannes Published on 2025-03-14

blender基本操作

操作 新建 快捷键:Shift + A,选中需要添加的物体,然后按移动操作方式放置物体 选中 鼠标左击物体,即可选中物

iohannes iohannes Published on 2025-03-14

blender为物体添加材质

为整个物体添加材质 添加3d 形状 顶上菜单:着色 中间工作区,下面区域,按钮:新增一个材质 中间工߯

iohannes iohannes Published on 2025-03-14
c++

c++ 低延迟系统

测量延迟 要控制和降低延迟,首先要能准确测量延迟. 首先用 NTP 同步机器的时间 同一机房两台机器用 ntp 同步后, 也会存在

iohannes iohannes Published on 2025-03-14
c++

c++ 同步和锁

volatile volatile 声明的变量的值的时候,系统总是重新从它所在的内存读取数据,即使它前面的指令刚刚从该处读取过数据。而且读取的数据&#

iohannes iohannes Published on 2025-03-14

c++开发环境搭建

dev tool apt update apt install build-essential gdb git curl cmake git clone https://github.com/Kitware/CMake.git cd CMake ./bootstrap make && make in

iohannes iohannes Published on 2025-03-14
c++

c++内存管理

内存分配 头文件 内存分配的头文件都在 <stdlib.h> malloc 函数定义:void* malloc( size_t size ); 函数说明:从堆中(heap)分配未初始&#

iohannes iohannes Published on 2025-03-14
c++

c++内存模型

内存模型 静态内存模型 主要是类(或结构)对象在内存中的布局。也就是类(或结构)成员在内存中是如何存放。

iohannes iohannes Published on 2025-03-14
Previous Next