提交
This commit is contained in:
parent
68459052a4
commit
ca0ae49a9a
20
.idea/workspace.xml
generated
20
.idea/workspace.xml
generated
@ -8,6 +8,14 @@
|
||||
<component name="ChangeListManager">
|
||||
<list default="true" id="fec10672-acda-4616-894b-a4b6f93aea6f" name="Default Changelist" comment="">
|
||||
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/笔记文件/2.笔记/linux本地端口开启测试.md" beforeDir="false" afterPath="$PROJECT_DIR$/笔记文件/2.笔记/linux本地端口开启测试.md" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/笔记文件/2.笔记/nginx端口转发.md" beforeDir="false" afterPath="$PROJECT_DIR$/笔记文件/2.笔记/nginx端口转发.md" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/笔记文件/2.笔记/其他.md" beforeDir="false" afterPath="$PROJECT_DIR$/笔记文件/2.笔记/其他.md" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/笔记文件/2.笔记/数据中台 临时记录.md" beforeDir="false" afterPath="$PROJECT_DIR$/笔记文件/2.笔记/数据中台 临时记录.md" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/笔记文件/2.笔记/灵感_其他_第二章.md" beforeDir="false" afterPath="$PROJECT_DIR$/笔记文件/2.笔记/灵感_其他_第二章.md" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/笔记文件/2.笔记/设置 TC 为系统默认的资源管理器.md" beforeDir="false" afterPath="$PROJECT_DIR$/笔记文件/2.笔记/设置 TC 为系统默认的资源管理器.md" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/笔记文件/日记/2025_05_20_星期二.md" beforeDir="false" afterPath="$PROJECT_DIR$/笔记文件/日记/2025_05_20_星期二.md" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/笔记文件/日记/2025_05_23_星期五.md" beforeDir="false" afterPath="$PROJECT_DIR$/笔记文件/日记/2025_05_23_星期五.md" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/笔记文件/日记/2025_05_26_星期一.md" beforeDir="false" afterPath="$PROJECT_DIR$/笔记文件/日记/2025_05_26_星期一.md" afterDir="false" />
|
||||
</list>
|
||||
<option name="SHOW_DIALOG" value="false" />
|
||||
@ -72,7 +80,8 @@
|
||||
<workItem from="1747727745629" duration="594000" />
|
||||
<workItem from="1747903384450" duration="1197000" />
|
||||
<workItem from="1748230143239" duration="1208000" />
|
||||
<workItem from="1748244938875" duration="594000" />
|
||||
<workItem from="1748244938875" duration="1213000" />
|
||||
<workItem from="1748303566401" duration="1810000" />
|
||||
</task>
|
||||
<task id="LOCAL-00001" summary="测试提交">
|
||||
<created>1742956649478</created>
|
||||
@ -340,7 +349,14 @@
|
||||
<option name="project" value="LOCAL" />
|
||||
<updated>1747995778967</updated>
|
||||
</task>
|
||||
<option name="localTasksCounter" value="39" />
|
||||
<task id="LOCAL-00039" summary="提交">
|
||||
<created>1748257736013</created>
|
||||
<option name="number" value="00039" />
|
||||
<option name="presentableId" value="LOCAL-00039" />
|
||||
<option name="project" value="LOCAL" />
|
||||
<updated>1748257736013</updated>
|
||||
</task>
|
||||
<option name="localTasksCounter" value="40" />
|
||||
<servers />
|
||||
</component>
|
||||
<component name="TypeScriptGeneratedFilesManager">
|
||||
|
@ -1,5 +1,10 @@
|
||||
#杂七杂八常识
|
||||
|
||||
有可能需要先安装一下,网络相关工具
|
||||
``` shell
|
||||
yum install net-tools
|
||||
```
|
||||
|
||||
本次测试环境,是`centos`的linux服务器环境,可以使用以下指令,判断,端口是否已经开启监听,相关~
|
||||
例如,要判断83号端口:
|
||||
``` shell
|
||||
|
@ -156,7 +156,7 @@ http {
|
||||
}
|
||||
|
||||
location /api/ {
|
||||
proxy_pass http://127.0.0.1:80/api/;
|
||||
proxy_pass http://127.0.0.1:8080/api/;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
@ -209,16 +209,6 @@ http {
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
}
|
||||
|
||||
# 新增认证服务路由
|
||||
location /api/ {
|
||||
# 这里假设认证服务实际处理路径是80端口的/api/
|
||||
proxy_pass http://127.0.0.1:8080/api/; # 根据实际服务端口调整
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
|
||||
}
|
||||
|
||||
# 其他请求处理规则(可选)
|
||||
location / {
|
||||
# 默认处理规则,例如返回404或转发到其他服务
|
||||
@ -260,6 +250,8 @@ http {
|
||||
# }
|
||||
|
||||
}
|
||||
|
||||
|
||||
```
|
||||
|
||||
需要注意的是,80是默认端口,这里是把俩服务,分别转发到,对应的端口,例如8080和83
|
||||
@ -281,3 +273,4 @@ systemctl reload nginx
|
||||
需要注意的是,原本80端口的服务,就需要改成8080了,不然会出现异常,因为nginx端口转发成功了
|
||||
|
||||
![[Pasted image 20250509103138.png]]
|
||||
|
||||
|
@ -122,3 +122,5 @@ ToDesk:
|
||||
高铁 广州南站 F出口 近
|
||||
|
||||
雅阁 6227081470582440
|
||||
|
||||
电子信息工程(本科) 专业代码:B080701
|
@ -98,11 +98,11 @@ slot端,发送接口:
|
||||
|
||||
```
|
||||
元素
|
||||
https://iddcevent.icongamesg.com/?appid=tnhhj7s56874
|
||||
https://iddcevent.icongamesg.com/report/?appid=tnhhj7s56874
|
||||
|
||||
蜂鸟
|
||||
https://iddcevent.hummingbirdgamesltd.com/?appid=v6lra90l16v4
|
||||
https://iddcevent.hummingbirdgamesltd.com/report/?appid=v6lra90l16v4
|
||||
|
||||
X项目
|
||||
https://iddcevent.doomsurvivor.com/?appid=75952c98ee9b
|
||||
https://iddcevent.doomsurvivor.com/report/?appid=75952c98ee9b
|
||||
```
|
@ -25,9 +25,29 @@ Adjust管理账号:
|
||||
slots 谷歌上架 新加坡打包机,是使用的TeamViewer
|
||||
|
||||
```
|
||||
Here are my TeamViewer ID number and connection password.
|
||||
Please use them to start a remote support session with me.
|
||||
|
||||
TeamViewer ID: 1 414 188 523
|
||||
Your password: cc2x8zch
|
||||
元素新加坡设备远程:10.65.65.221
|
||||
用户:admin
|
||||
密码:%9tuqvqE
|
||||
```
|
||||
|
||||
|
||||
slot新加坡谷歌账号
|
||||
|
||||
```
|
||||
元素新主体ICONGAMES谷歌开发者:
|
||||
账号:icongamespteltd@gmail.com
|
||||
密码:!k@#!=s{Fnx/QKQ
|
||||
新加坡号码:+65 91301609(小美保管)
|
||||
```
|
||||
|
||||
灵动平台:
|
||||
```
|
||||
网址:
|
||||
https://iddc.inspiregames.cn:8090/
|
||||
用户:
|
||||
qiuqiu
|
||||
密码:
|
||||
qiuQ596**+
|
||||
```
|
||||
|
||||
本机硬件码:46934547181
|
@ -20,3 +20,5 @@
|
||||
(第一个引号内的加重字体代表 TC 的安装路径,以个人电脑为准)
|
||||
|
||||
![[Pasted image 20220529045011.png]]
|
||||
|
||||
(备注:打开百度云盘,会导致TC注册表失效,也再重新设置一下就好)
|
@ -31,9 +31,8 @@
|
||||
- [x] 记得拿运动鞋快递
|
||||
- [x] 记得买咖啡
|
||||
- [x] 看看车是否要加油
|
||||
- [ ] 记得要 补充一下 上周的 双周报
|
||||
- [x] 记得明天 拿uno回来
|
||||
- [ ] 连上 追光远程桌面,看一下项目工程和语音、相机等sdk相关
|
||||
- [x] 连上 追光远程桌面,看一下项目工程和语音、相机等sdk相关
|
||||
- [x] 联调一下 数据中台服务端
|
||||
---
|
||||
[[服务器高并发性能指标]]
|
||||
|
@ -25,9 +25,9 @@
|
||||
- [x] 今晚记得给各电子设备充电
|
||||
- [x] 完成 性能监控系统 QPS指标压力测试
|
||||
- [x] 继续完善一下 设备分级和性能监控文档
|
||||
- [ ] 完善一下 系统分析法文档
|
||||
- [x] 完善一下 系统分析法文档
|
||||
- [ ] 完善一下 Jetbrain 各编辑器快捷键设置
|
||||
- [ ] 今晚记得拿快递
|
||||
- [x] 今晚记得拿快递
|
||||
- [ ] 搭建centos 7 mysql数据库
|
||||
---
|
||||
[[python 数据分析 入门]]
|
||||
|
@ -21,9 +21,10 @@
|
||||
|
||||
# 今日任务
|
||||
|
||||
- [ ] 下载体验一下 长安 石之舞
|
||||
- [x] 下载体验一下 长安 石之舞
|
||||
- [x] 检查一下 jackpot 的调查问卷,是修改了什么,导致数据缺失
|
||||
- [ ] 这周记得清理一下 相册
|
||||
- [ ] 也可以调整一下日志系统 认证机制
|
||||
---
|
||||
|
||||
# Journal
|
||||
|
37
笔记文件/日记/2025_05_27_星期二.md
Normal file
37
笔记文件/日记/2025_05_27_星期二.md
Normal file
@ -0,0 +1,37 @@
|
||||
|
||||
13:48
|
||||
|
||||
###### [[unity日常积累]]
|
||||
|
||||
###### [[节奏天国]]
|
||||
|
||||
###### [[帧同步王者荣耀]]
|
||||
|
||||
###### [[从零开发跨平台通用日志插件]]
|
||||
|
||||
###### [[通用异步网络通信库]]
|
||||
|
||||
###### [[高性能定时系统实现]]
|
||||
|
||||
###### [[学习资料]]
|
||||
|
||||
###### [[其他]]
|
||||
|
||||
#### [[看板]]
|
||||
|
||||
# 今日任务
|
||||
|
||||
- [ ] 记得补充一下 Q2 OKR进度https://inspire.sg.larksuite.com/docx/SL9vd4T9VozM3BxZHfnl8BhTgjd
|
||||
- [ ] 也拿switch盒子给盖伦
|
||||
- [x] 跟slots项目组确认一下 iphone设备类型
|
||||
- [ ] 完善virtualbox飞书文档
|
||||
- [ ] 完善centos7安装文档
|
||||
- [ ] 在追光项目组 搭建一个对应的 安卓工程 & 直接使用Java代码文件
|
||||
- [x] 把完善后的slot 灵动平台 客户端代码,同步到三消项目组
|
||||
- [ ] 要完善一下 苹果 移动设备 设备标识 和市场营销名称的映射关系
|
||||
- [ ] 和大叔还有小涵确认一下电子信息类
|
||||
- [ ] 完善一下 nginx的认证机制相关
|
||||
- [ ] 测试环境添加宏
|
||||
---
|
||||
![[Pasted image 20250527180257.png]]
|
||||
# Journal
|
BIN
笔记文件/附件/Pasted image 20250527180257.png
Normal file
BIN
笔记文件/附件/Pasted image 20250527180257.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
Loading…
x
Reference in New Issue
Block a user