所有公开日志
跳到导航
跳到搜索
所有泡泡学习笔记公开日志的联合展示。您可以通过选择日志类型、输入用户名(区分大小写)或相关页面(区分大小写)筛选日志条目。
- 2024年10月4日 (五) 17:31 BrainBs 讨论 贡献创建了页面文件:积分策略2.jpg
- 2024年10月4日 (五) 17:31 BrainBs 讨论 贡献上传文件:积分策略2.jpg
- 2024年10月4日 (五) 17:31 BrainBs 讨论 贡献创建了页面文件:积分策略1.jpg
- 2024年10月4日 (五) 17:31 BrainBs 讨论 贡献上传文件:积分策略1.jpg
- 2024年9月30日 (一) 19:06 BrainBs 讨论 贡献创建了页面C 遍历目录 (创建页面,内容为“<pre> #inlcude<io.h> struct _finddata_t FileList; long hFile=0; hFile = _findfirst(path, &FileList); if(-1 == hFile) { return ; } do { //FileList.name } while(0 == _findnext(hFile, &FileList)); _findclose(hFile); </pre>”)
- 2024年9月30日 (一) 19:05 BrainBs 讨论 贡献创建了页面WxWidgets wxTreeCtrl (创建页面,内容为“ ===AppendItem()=== Appends an item to the end of the branch identified by parent, return a new item id. The image and selImage parameters are an index within the normal image list specifying the image to use for unselected and selected items, respectively. If image > -1 and selImage is -1, the same image is used for both selected and unselected items. ===GetSelections()=== Fills the array of tree items passed in with the currently selected items. This…”)
- 2024年9月30日 (一) 19:04 BrainBs 讨论 贡献创建了页面WxWidgets 获取本机IP (创建页面,内容为“ #include<wx/socket.h> wxIPV4address addr; addr.Hostname(wxGetFullHostName()); wxString ipAddr = addr.IPAddress(); ===通过建立链接获取本机IP=== wxIPV4address remote; remote.Hostname("www.wxwidgets.org"); remote.Service(80); wxIPV4address local; wxSocketClient client; if(client.Connect(remote)) client.GetLocal(local); wxString ipAddr=local.IPAddress();”)
- 2024年9月30日 (一) 19:03 BrainBs 讨论 贡献创建了页面WxWidgets wxRichTextCtrl (创建页面,内容为“===Clear()=== Clears the buffer content, leaving a single empty paragraph. Cannot be undone. ===WriteText()=== Writes text at the current position.”)
- 2024年9月30日 (一) 19:02 BrainBs 讨论 贡献创建了页面WxWidgets wxSingleChoiceDialog (创建页面,内容为“This dialog shows a list of choices, plus OK and (optionally) Cancel. The user can select one of them. The selection can be obtained from the dialog as an index, a string or client data. if (dialog.ShowModal() == wxID_OK) { ... } ===ShowModal()=== Shows the dialog, returning either wxID_OK or wxID_CANCEL. ===GetStringSelection()=== Returns the selected string.”)
- 2024年9月30日 (一) 19:00 BrainBs 讨论 贡献创建了页面WxWidgets wxDirDialog (创建页面,内容为“This dialog shows a directory selector dialog, allowing the user to select one or multiple directories. if (dialog.ShowModal() == wxID_OK) { ... } ===GetPath()=== Returns the default or user-selected path.”)
- 2024年9月30日 (一) 19:00 BrainBs 讨论 贡献创建了页面WxWidgets wxMessageBox (创建页面,内容为“ wxMessageBox(msg, _("Welcome to..."));”)
- 2024年9月30日 (一) 18:59 BrainBs 讨论 贡献创建了页面WxWidgets 快速指南 (创建页面,内容为“==应用程序结构== 要启动一个wxWidgets应用程序,您需要从wxApp类派生一个类,并在OnInit()方法中重写它,通常会在该方法中创建应用程序的主顶级窗口。 这个窗口可以是一个wxFrame或一个wxDialog,并且可以包含一个或多个wxPanel、wxSplitterWindow或其他窗口和控件的实例。这些窗口可以使用C++代码创建,也可以从以XRC格式定义的资源中加载。 框架可以包含一…”)
- 2024年9月30日 (一) 18:57 BrainBs 讨论 贡献创建了页面HTML pre (创建页面,内容为“HTML <pre> 元素表示预定义格式文本。在该元素中的文本通常按照原文件中的编排,以等宽字体的形式展现出来,文本中的空白符(比如空格和换行符)都会显示出来。(紧跟在 <pre> 开始标签后的换行符也会被省略)”)
- 2024年9月29日 (日) 16:52 BrainBs 讨论 贡献创建了页面WxWidgets 添加状态栏 (创建页面,内容为“向框架添加状态栏甚至更容易。调用 wxFrame 方法 CreateStatusBar,该Frame将具有一个状态栏。作为 parameter ,将传递一个数字,用于在状态栏中创建单独的字段。使用 SetStatusText 可以更改字段的文本。 <pre> CreateStatusBar(3); SetStatusText(wxT("Ready"), 0); </pre> 这将创建一个具有 3 个字段的状态栏。第一个字段将包含文本 “Ready”。”)
- 2024年9月29日 (日) 16:51 BrainBs 讨论 贡献创建了页面WxWidgets wxFrame (创建页面,内容为“框架是一个窗口,其大小和位置(通常)可以由用户更改。 它通常具有粗边框和标题栏,并且可以选择包含菜单栏、工具栏和状态栏。框架可以包含任何不是框架或对话框的窗口。 具有状态栏和工具栏的框架(通过 CreateStatusBar() 和 CreateToolBar() 函数创建)管理这些窗口并调整 GetClientSize() 返回的值,以反映应用程序窗口可用的剩余大小。…”)
- 2024年9月29日 (日) 16:50 BrainBs 讨论 贡献创建了页面WxWidgets设置自适应 (创建页面,内容为“==Layout== <pre> FlexGridSizer->AddGrowableCol(...); FlexGridSizer->AddGrowableRow(...); </pre> ==组件== 设置wxEXPAND属性”)
- 2024年9月28日 (六) 17:52 BrainBs 讨论 贡献创建了页面UE5.4 阴影突然消失 (创建页面,内容为“修改光源->级联阴影贴图->动态阴影距离可移动光照”)
- 2024年9月25日 (三) 15:49 BrainBs 讨论 贡献创建了页面WxWidgets安装 (创建页面,内容为“==下载== codeblocks codeblocks-20.03mingw-setup.exe wxWidgets-MinGW-w64 8.1 wxWidgets-3.2.6-headers.7z wxMSW-3.2.6_gcc810_x64_ReleaseDLL.7z ==安装== ==解压== 解压目录包含include、lib、docs子目录 ==改名== /lib/gcc810_x64_dll=>/lib/gcc_lib ==创建wxWidgets项目== ==改链接库== 编译参数改为使用对应版本静态库 ==问题== ===error: converting to execution character set: Illegal byte sequence=== 修改文件格式…”)
- 2024年9月25日 (三) 14:37 BrainBs 讨论 贡献创建了页面用户培育的核心要素 (创建页面,内容为“a. 用户需求 b. 用户体验 c. 用户忠诚度”)
- 2024年9月24日 (二) 16:20 BrainBs 讨论 贡献创建了页面特殊极限 (创建页面,内容为“文件:特殊极限.jpg”)
- 2024年9月24日 (二) 16:20 BrainBs 讨论 贡献创建了页面文件:特殊极限.jpg
- 2024年9月24日 (二) 16:20 BrainBs 讨论 贡献上传文件:特殊极限.jpg
- 2024年9月24日 (二) 16:19 BrainBs 讨论 贡献创建了页面中值定理 (创建页面,内容为“文件:中值定理.jpg”)
- 2024年9月24日 (二) 16:18 BrainBs 讨论 贡献创建了页面文件:中值定理.jpg
- 2024年9月24日 (二) 16:18 BrainBs 讨论 贡献上传文件:中值定理.jpg
- 2024年9月24日 (二) 16:18 BrainBs 讨论 贡献创建了页面拐点 (创建页面,内容为“文件:拐点.jpg”)
- 2024年9月24日 (二) 16:17 BrainBs 讨论 贡献上传文件:拐点.jpg
- 2024年9月24日 (二) 16:17 BrainBs 讨论 贡献创建了页面文件:拐点.jpg
- 2024年9月24日 (二) 16:16 BrainBs 讨论 贡献创建了页面黎曼和 (创建页面,内容为“文件:黎曼和.jpg”)
- 2024年9月24日 (二) 16:15 BrainBs 讨论 贡献创建了页面文件:黎曼和.jpg
- 2024年9月24日 (二) 16:15 BrainBs 讨论 贡献上传文件:黎曼和.jpg
- 2024年9月24日 (二) 16:10 BrainBs 讨论 贡献创建了页面洛必达法则 (创建页面,内容为“文件:洛必达法则.jpg”)
- 2024年9月24日 (二) 16:10 BrainBs 讨论 贡献上传文件:洛必达法则.jpg
- 2024年9月24日 (二) 16:10 BrainBs 讨论 贡献创建了页面文件:洛必达法则.jpg
- 2024年9月7日 (六) 18:00 BrainBs 讨论 贡献创建了页面文件:Vs-install-workloads.png
- 2024年9月7日 (六) 18:00 BrainBs 讨论 贡献上传文件:Vs-install-workloads.png
- 2024年9月7日 (六) 17:53 BrainBs 讨论 贡献创建了页面UE5.4 编译低版本插件 (创建页面,内容为“1. 定位到<code>D:\Program Files\Epic Games\UE_5.4\Engine\Build\BatchFiles</code>目录 2. cmd界面执行<code>RunUAT.bat BuildPlugin -TargetPlatforms=Win64 -Plugin=“D:\Program Files\Epic Games\UE_5.4\Engine\Plugins\SPCRJointDynamics\SPCRJointDynamics.uplugin” -Package=“D:\ue\compile_content”</code>”)
- 2024年8月30日 (五) 18:12 BrainBs 讨论 贡献创建了页面Git创建远端仓库 (创建页面,内容为“===远端=== git init git config --add receive.denyCurrentBranch ignore git reset --hard ===本地=== git clone user@git.example.com:/srv/git/my_project.git”)
- 2024年8月30日 (五) 16:19 BrainBs 讨论 贡献创建了页面Git减少仓库空间 (创建页面,内容为“ git gc git gc --aggressive”)
- 2024年8月29日 (四) 17:23 BrainBs 讨论 贡献创建了页面UE5.4.4更新日志 (创建页面,内容为“The 5.4.4 Hotfix is now available with a few key fixes and a key update for Android developers. To publish new apps or updates to the Google Play Store after August 31, 2024, you must update to 5.4.4 which includes updates for Android 14 compatibility with TargetSDK 34. Alternatively, you can pull the necessary updates from GitHub 103. Apps built with previous versions of Unreal Engine will no longer submit successfully.”)
- 2024年8月29日 (四) 16:59 BrainBs 讨论 贡献创建了页面Tortoisegit修改密码配置 (创建页面,内容为“windows打开凭据管理器”)
- 2024年8月26日 (一) 16:37 BrainBs 讨论 贡献创建了页面UE 生成布料报错三角形退化 (创建页面,内容为“根据报错坐标找到对应顶点。删除重复顶点。”)
- 2024年8月16日 (五) 18:59 BrainBs 讨论 贡献创建了页面数字孪生 (创建页面,内容为“==技术背景与应用需求== * 数字孪生技术:将物理世界的对象或系统映射到数字世界,以实现对物理世界的实时监控、分析、预测和模拟。 * 数据可视化需求:海量数据的处理和可视化成为认识和理解物理世界的关键,数字孪生通过直观的方式帮助决策者理解数据。 ==数字孪生的必要性== * 实时监控与反馈:数字孪生提供实时数据流,帮助发现异常和…”)
- 2024年8月16日 (五) 18:51 BrainBs 讨论 贡献创建了页面视觉中心 (创建页面,内容为“最暗或最亮的部分。 最暗的部分一般为剪影。”)
- 2024年8月14日 (三) 18:19 BrainBs 讨论 贡献创建了页面如何获得前 1000 名用户 (创建页面,内容为“===前往你的目标用户所在的线下地点=== 关键问题:谁是你的早期目标用户,他们目前在哪里线下聚集? ===前往你的目标用户所在的线上地点=== 关键问题:谁是你的早期目标用户,他们目前在线上聚集在哪里? ===邀请你的朋友=== 关键问题:你的朋友是否符合目标用户群?如果是,你是否已经邀请他们了? ===创造恐失机会(FOMO)以推动口碑效应==…”)
- 2024年8月7日 (三) 16:51 BrainBs 讨论 贡献创建了页面文件:Usingblendprofile3.png
- 2024年8月7日 (三) 16:51 BrainBs 讨论 贡献上传文件:Usingblendprofile3.png
- 2024年8月7日 (三) 16:51 BrainBs 讨论 贡献创建了页面文件:Usingblendprofile2.png
- 2024年8月7日 (三) 16:51 BrainBs 讨论 贡献上传文件:Usingblendprofile2.png
- 2024年8月7日 (三) 16:49 BrainBs 讨论 贡献创建了页面文件:Usingblendprofile1.png