2025年08月的文章
每日C++(25年):9月合集
9月1日:cmath:std::signbit9月2日:cmath:std::lgamma9月3日:cmath:std::modf9月4日:cmath:std::floor9月5日:cmath:std::frexp9月6日:cmath:std::fdim9月7日:cmath:std::isfinite9...
C++: cmath-数学头文件
函数名站内文章/帖子备注std::hypotcmath:std::hypot——————std::erfcmath:std::erf——————std::ilogbcmath:std::ilogb——————std::fmacmath:std::fma——————std::next...
Ubuntu: 设置系统时间(以北京时间为例)
在 Ubuntu 系统中,将时间设置为北京时间可以通过调整时区和启用时间同步来实现。以下是具体步骤:方法一:使用timedatectl命令设置时区:sudo timedatectl set-timezone Asia/Shanghai此命...
每日C++(25年):9月1日 – 9月7日
9月1日:cmath:std::signbit9月2日:cmath:std::lgamma9月3日:cmath:std::modf9月4日:cmath:std::floor9月5日:cmath:std::frexp9月6日:cmath:std::fdim9月7日:cmath:std::isfinite
每日C++(25年):8月25日 – 8月31日
8月25日:cmath:std::rint8月26日:cmath:std::isinf8月27日:cmath:std::ceil8月28日:cmath:std::ldexp8月29日:algorithm:std::find_end8月30日:cmath:std::copysign8月31日:cmath:...
宝塔面板(Linux):搭建docsify站点
阅读前提示:本教程需要您有一定的Linux基础,当然,您也可以选择跟随此教程一步一步尝试。有问题欢迎加入我们的用户群为您解决疑问。测试Linux:Ubuntu 22 安装宝塔 & 配置环境:安装宝塔...
子比主题美化:侧边栏站点信息小窗
修改:在网站后台 -> 外观 -> 小工具 -> 自定义HTML,在自己需要的地方添加小工具(建议侧边栏),在代码编辑框中添加以下代码:效果图:鼠标指针未在窗口上时:鼠标指针在窗口上时:
每日C++(25年):8月18日 – 8月24日
8月18日:cmath:std::clamp8月19日:cmath:std::asinh8月20日:cmath:std::pow8月21日:cmath:std::scalb8月22日:cmath:std::nan8月23日:cmath:std::div8月24日:cmath:std::exp
Win-Live2D-C++:一种解决模型窗口透明部分鼠标事件穿透到下层窗口的办法
引入:在Live2D官方的Demo中,我们将窗口设置为透明后,即使窗口透明,我们鼠标的事件仍然会被透明窗口处理,如何才能让鼠标的事件穿透到下层窗口呢?利用WindowsAPI,我们可以实现鼠标事件的穿...