Popular blog tags
RSS

Blog

C++20
C++20
C++ 11--项目学习笔记
The Microsoft concurrency namespace, provided via #include , is an alternative to C++11 threads. The concurrency namespace functions are at a higher level of abstraction than C++11 threads and are easier to use.
多核CPU并行编程: c++ SetThreadAffinityMask 控制windows CPU占用率
题目:写一个程序,让用户来决定Windows任务管理器(Task Manager)的CPU占用率。程序越精简越好,计算机语言不限。例如,可以实现下面三种情况:   1.    CPU的占用
Accessing MFC Objects from Multiple Threads with PostMessage
MFC objects are not thread-safe by themselves. Two separate threads cannot manipulate the same object unless you use the
多核CPU并行编程:.Visual Studio c++ 多核并行运算编程实现之三:手工多核运行代码(通过Windows多线程库CreateThread实现)
多核CPU并行编程:.Visual Studio c++ 多核并行运算编程实现:手工多核运行代码(通过Windows多线程库CreateThread实现)
Cloudflare:Using jQuery and Bootstrap from a Cloudflare CDN with fallback scripts in ASP.NET Core 3.x
In this post, I show how to use the Link Tag Helper and Script Tag Helper in Razor with the asp-fallback attribute to
Cloudflare:ASP.NET Core Blazor with SignalR breaks when used with Cloudflare's HTML minification
we faced an issue with using ASP.NET Core Blazor together with Cloudflare when going into production.
Cloudflare Troubleshooting mixed content errors
Error message For mixed content warnings, the web browser loads the resources but users don’t see the green lock
C++17:标准库启动线程的方法可分为三类:async、thread以及packaged_task
C++标准库启动线程的方法可分为三类:async、thread以及packaged_task。其中,async一般和futrue或者shared_future搭配,thread一般和promise搭配(也要结合future使用),packaged_task一般和future搭配
多条件查询分页以及排序方案汇总
一.前言 多条件查询分页以及排序  每个系统里都会有这个的代码 做好这块 可以大大提高开发效率  所以博主分享下自己的6个版本的 多条件查询分页以及排序 二.目前状况 不论是ado.net 还是EF 在做