请务必以管理员身份打开命令提示符,并运行以下代码。
slmgr /ipk W269N-WFGWX-YVC9B-4J6C9-T83GX
slmgr /skms kms.luody.info
slmgr /ato
| *.txt |
| /* Google Material Design Colors | |
| Source: https://material.io/tools/color/ | |
| */ | |
| :root { | |
| --material-color-Black: #000000; | |
| --material-color-White: #FFFFFF; | |
| --material-color-Red-50: #FFEBEE; | |
| --material-color-Red-100: #FFCDD2; | |
| --material-color-Red-200: #EF9A9A; | |
| --material-color-Red-300: #E57373; |
| GIMP Palette | |
| Name: GZMTR Line Colors | |
| # by ytx21cn | |
| # The colors of lines under planning or construction are subject to change. Please refer to the newest official GZMTR system map. | |
| 0 0 0 Black | |
| 255 255 255 White | |
| 153 153 153 Gray (40%) | |
| 204 204 204 Gray (20%) | |
| 255 0 0 Red |
| @echo off | |
| title Microsoft Office 2019 versions are supported!&cls&echo | |
| ============================================================================&echo | |
| #Project: Activating Microsoft software products for FREE without software&echo | |
| ============================================================================&echo.&echo | |
| #Supported products:&echo - Microsoft Office Standard 2019&echo - Microsoft Office Professional Plus 2019&echo.&echo.&(if exist | |
| "%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16")&(if exist | |
| "%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16")&(for /f %%x in ('dir /b | |
| ..\root\Licenses16\ProPlus2019VL*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)&(for /f %%x in ('dir /b | |
| ..\root\Licenses16\ProPlus2019VL*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)&echo.&echo |
| #include <iostream> | |
| #include <cstring> | |
| int main() { | |
| setlocale(LC_ALL, "zh_CN.UTF-8"); | |
| const wchar_t test[] = L"abc我惊呆了123"; | |
| for (const auto& i: test) { | |
| std::wcout << i << std::endl; | |
| } |
| https://news.cctv.com/2021/08/09/ARTIu3JIKV66MVsSghjxZi4l210809.shtml?spm=C96370.PPDB2vhvSivD.E0O8qNryTckW.3 | |
| 央视网消息(新闻联播):我们正在经历的2021年,是中国共产党成立100周年,是“十四五”开局之年。今年以来,以习近平同志为核心的党中央领航掌舵,统筹中华民族伟大复兴战略全局和世界百年未有之大变局,引领中国踏上伟大复兴新的“赶考”路,不断满足人民对美好生活新期待,加快构建新发展格局,为构建人类命运共同体作出新贡献,推动党和国家事业迈上新台阶。从今天(8月9日)起,《新闻联播》推出系列报道《领航新时代 开启新征程——习近平总书记今年以来治国理政纪实》。今天播出第一集《百年奋斗砺初心 迈向伟大复兴新的赶考路》。 | |
| 2021年的中国,站在“两个一百年”的历史交汇点上,过去的百年奋斗风云激荡,书写了中华民族历史上最恢宏的史诗。第二个百年征程绝非坦途,需要中国共产党人赓续红色血脉,把握新的历史方位,交出新的时代答卷。今年以来,面对错综复杂的国际局势,以习近平同志为核心的党中央观大势、谋大局、抓大事,引领中国巨轮劈波斩浪、扬帆远航。 | |
| 7月1日上午,庆祝中国共产党成立100周年大会在北京天安门广场隆重举行,这是党的盛典、人民的节日。习近平总书记“七一”重要讲话,成为激励全党全国各族人民向第二个百年奋斗目标进军的政治宣言和行动纲领。 | |
| 习近平总书记说:“我们要用历史映照现实、远观未来,从中国共产党的百年奋斗中看清楚过去我们为什么能够成功、弄明白未来我们怎样才能继续成功,从而在新的征程上更加坚定、更加自觉地牢记初心使命,开创美好未来。” |
| #include <iostream> | |
| #include "A.h" | |
| void A::inc() { | |
| ++impl->i; | |
| } | |
| void A::dec() { | |
| --impl->i; |
| #include <iostream> | |
| #include <set> | |
| extern "C" { | |
| #include "unistd.h" | |
| #include <sys/timerfd.h> | |
| } | |
| int main() { | |
| std::set<int> timerFds; |
| // Note: to compile, you must link with -lrt. | |
| // cc mmap_demo_main.c -o main.out -lrt | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <sys/mman.h> | |
| #include <sys/stat.h> | |
| #include <fcntl.h> | |
| #include <unistd.h> | |
| #include <sys/wait.h> |