小天管理 发表的所有内容
-
目前是买的 A 类场外基金,每天有限额 100/500/1000 这样 费率: 买入=0.12% 运作费率=0.6%-0.8%/年 听说场内基金可以做到 买入=0.005% 免 5 。昨天特地开了个户去看了下,发现场内运作费率普遍,1%/年 左右,这样算岂不是成本更高,只是从 T+3 变成了 T+0 ? 还有第三种,新加坡 OCBC+长桥,这种刚知道不了解是否安全,以及两次换汇+交易整体成本 或者还有没有其他更好的渠道?你的选择是什么?
-
背景:使用 NodeJS 实现一个代理服务器,把服务器 URL 设置为电脑的全局代理,这样浏览器访问链接,把流量劫持到代理服务器,如何实现代理 http 协议和 ws 协议?比如在浏览器访问 a.com ,可以被代理服务器转发的 b.com ;访问 ws://a.com 可以被转发到 ws://127.0.0.1:8000 目前实现: const http = require('http'); const httpProxy = require('http-proxy'); // 创建一个代理服务器 const proxy = httpProxy.createProxyServer({ ws: true, // 启用 WebSocket 支持 changeOrigin: true // 修改源 }); // 创建 HTTP 服务器 const server = http.createServer((req, res) => { console.log(`收到 HTTP 请求: ${req.method} ${req.url}`); // 处理 HTTP 请求 proxy.web(req, res, { target: 'http://localhost:8080' }, (err) => { if (err) { console.error(`HTTP 代理错误: ${err.message}`); } }); }); // 处理 WebSocket 连接 server.on('upgrade', (req, socket, head) => { console.log(`收到 WebSocket 升级请求: ${req.url}`); proxy.ws(req, socket, head, { target: 'ws://localhost:8080' }, (err) => { if (err) { console.error(`WebSocket 代理错误: ${err.message}`); } }); }); // 设置代理服务器监听的端口 const PORT = 8002; server.listen(PORT, () => { console.log(`代理服务器已启动,正在监听端口 ${PORT}`); }); // 错误处理 proxy.on('error', (err, req, res) => { console.error('代理服务器错误:', err); if (!res.headersSent) { res.writeHead(500, { 'Content-Type': 'text/plain' }); } res.end('代理服务器出错'); }); // 添加代理事件监听器 proxy.on('proxyReq', (proxyReq, req, res) => { console.log(`代理请求: ${req.method} ${req.url} -> ${proxyReq.path}`); }); proxy.on('proxyRes', (proxyRes, req, res) => { console.log(`代理响应: ${req.url} - 状态码: ${proxyRes.statusCode}`); }); 在浏览器使用 SwitchyOmega ,设置代理 http://1270.0.0.1:8002 访问 http 请求:get http://t.weather.sojson.com/api/weather/city/101030100 可以看到打印日志 收到 HTTP request 请求: GET http://t.weather.sojson.com/api/weather/city/101030100 但是访问 ws 请求:ws://t.weather.sojson.com 没有打印任何日志,也就是说 upgrade 事件并没有触发。 问 AI ,回答可能是 WebSocket 握手过程中的协议升级可能在代理服务器之前就已经完成了。代理服务器可能只是在转发已经建立的 WebSocket 连接,而没有参与到协议升级的过程中。 有没有大佬帮忙分析下? ps: 在设置自签名证书后,可以代理 https 协议和 wss 协议,但是就是 ws 协议没反应。
-
Win11 23H2 ,系统睡眠唤醒后,任务栏图标消失,实际是占位存在的,只是显示透明了,点击一下就会出现。这个 bug 持续很久了,不是必现,但出现概率挺高 网上搜,不是个例,微软社区答复都是牛头不对马嘴,没有找到有效解决方案。 求助 V 友
-
求推荐一些易用的方案,或者图形化生成模版,js 或 python 都行,看过 jspdf 和 reportlab ,感觉用代码手搓排版和元素样式及定位太痛苦了
-
最近被这个输入法问题折磨地很难受。 大概是从 9 月下旬开始,我用的搜狗输入法会时不时出现这种毛病,输入时首个字母没进入输入法,而是直接以英文形式上屏。 例如,我想输入 zhe “这”,结果会变成上图的样子。 这种情况只会在进入输入模式后第一次按键时偶发出现,从不会在输入的中途出现。在浏览器、QQ 、微信等多个应用中都出现过这种现象。 考虑过是搜狗输入法的问题,但更换 Rime 后也会出现这种问题,应该和操作系统( Windows 11 24H2 26100.2033 )有关,或者和我安装的软件有关。 网上搜索后实在没找到什么有价值的信息,如果哪位朋友有思路还请不吝赐教,谢谢~
-
请教各位,市面上有没有充电宝是可以 magsafe 给 iphone 充电,并且也可以无线 qi/qi2 给自己充电的? 我看到特斯拉新出了一个这样的,但是好像还没发售,一直想找一个这样的。
-
职位描述 1 、深入了解司乘两端全流程业务,了解并掌握后端整体的系统架构,参与出行中台的业务架构设计与优化工作。 2 、负责交易主流程核心系统维护,支持快车、专车、优步、优享、豪华车、拼车、出租车等核心业务的研发。 3 、负责对复杂业务进行抽象优化,搭建好业务平台,提供新业务/新功能快速孵化接入的能力。 任职要求 1 、计算机或相关专业本科及以上学历,3 年及以上工作经验; 2 、熟悉并掌握常见语言中的一种或多种(Golang 、PHP 、Java),从事过大型高并发架构设计者优先; 3 、熟悉常用 DB 、缓存应用和优化; 4 、对分布式服务架构有较深的认识,了解业界常用开源技术; 5 、有较强的业务抽象、逻辑分析能力,善于总结沉淀; 6 、善于发现问题,解决问题,并能落地解决方案; 7 、良好的沟通能力和团队协作能力。 有兴趣发送简历到邮箱 clarencegogogo@outlook.com 也可回帖咨询
-
一些网站如果打不开(显示“连接已重置”),此时打开 edge 设置中的“使用安全的 DNS 指定如何查找网站的网络地址”,随便选个“1.1.1.1”或“opendns”,再刷新网站就能打开了(当然国内的网站访问就很慢了),然后关闭这个设置,只要不关电脑,网站访问都没问题。请问这是什么原因?路由器用的是老毛子+v2ray 。 谢谢。
-
福利待遇优 五险一金+商业险 入职年假 14 天,深圳有额外 10 天childcare leave 欢迎投: xiluo.w@gmail.com Software Engineer Responsibilities Develop, debug, and modify components of software applications and tools Participate in code reviews and maintain high code quality standards Create and maintain technical design documentation Collaborate with the team on user story creation and refinement Write automated unit, integration, and acceptance tests to support continuous integration pipelines Provide support and troubleshooting for data/system issues as needed Resolve problems and roadblocks, driving issues to closure with the support of peers or managers Communicate and work effectively with global technology teams Requirements A minimum of 3 years of experience in Software Engineering Proficiency in backend development and system integration with technologies such as SpringBoot, Restful, and GraphQL Experience with programming languages like Java, JavaScript, or Python ExperieExperience in UI web development with NodeJS and ReactJS Familiarity with databases such as MySQL, Elasticsearch, Redis, etc Knowledge of Cloud technologies, with a preference for AWS Understanding of the software development life cycle, architecture, and design patterns Experience with Agile/Scrum software development practices Effective English verbal and written communication skills, with the ability to present technical information clearly An open-minded approach, strong sense of ownership, and responsibility Proactive collaboration with team members to co-develop and share solutions A Bachelor’s degree or higher in computer science or a related field, or equivalent work experience Software Engineer (JavaScript) Responsibilities Full fill the role of a developer Write high quality and testable code following clean code principles Implement functionality by following defined software development process without direct supervision Read and understand project and requirement documentation Create documentation describing his/her code Participate in Agile Scrum activities: daily standup, demo session, retrospective, planning, etc Requirements Bachelor's degree or above in Computer Science, Software Engineering or related majors Minimum 3 year of experience in software engineering and development of technology solutions using JavaScript/TypeScript (including server and client side using React and Node.js) Strong knowledge of RESTful API services and GraphQL Experience of relational database technologies e.g., SQL Server, Oracle Experienced in using, integrating, and optimizing front end build tools (Grunt / Gulp / Webpack) Well versed with using version control tools (e.g., GIT) Good understanding of software development lifecycle, experience in Agile Scrum process Good interpersonal skills, analytical mind, get things done attitude, and passion for engineering excellence Willingness and ability to adapt to changes in priorities and requirements Active learner who is passionate about technology and keeps up to date with changes in technology Good communication skills Elementary (CEFR B2) or higher level of spoken and written English Nice to have Knowledge in designing solutions using NoSQL data stores like: MongoDB, Cassandra, Elastic, Redis Experienced in developing Server-side programming (any language) Experienced in AWS Systems Engineer (DevOps) Responsibilities Develop and maintain CI/CD pipeline for the team, build and automate infrastructure by following software development process and team's technical decisions without direct supervision Use DevOps approach to collaborate with developers Build, manage and monitor multiple environments Participate and contribute to system engineering and DevOps activities, including project meetings, estimation and planning, knowledge sharing, etc Requirements Bachelor’s degree in computer science, Software Engineering, or a related field 5+ years of experience in DevOps or similar roles Strong knowledge of AWS cloud infrastructure and services Proficiency in Infrastructure as Code (IaaC) tools such as Terraform, CloudFormation, or Ansible Experience with containerization technologies (e.g., Docker, Kubernetes) Familiarity with CI/CD pipelines and automation tools Strong scripting skills (e.g., Python, Bash, PowerShell) Knowledge of version control systems (e.g., Git) Understanding of agile methodologies We offer By choosing EPAM, you're getting a job at one of the most loved workplaces according to Newsweek 2021 & 2022&2023 Employee ideas are the main driver of our business. We have a very supportive environment where your voice matters You will be challenged while working side-by-side with the best talent globally. We work with top-notch technologies, constantly seeking new industry trends and best practices We offer a transparent career path and an individual roadmap to engineer your future & accelerate your journey At EPAM, you can find vast opportunities for self-development: online courses and libraries, mentoring programs, partial grants of certification, and experience exchange with colleagues around the world. You will learn, contribute, and grow with us
-
当前房贷固定利率是:4.165%,希望转为 LPR 。 在农行 APP 看到如下界面: 疑问:转了之后到底是比 4.165%高了还是低了?
-
昨天深夜发了,但好像没人看到,再次发一下,见谅,原帖 电脑信息 显卡型号 amd RX 6600 OS Name: Microsoft Windows 10 专业版 OS Version: 10.0.19045 N/A Build 19045 CPU:i7 13700K 主板:微星 Z790 PRO 内存:海盗船 32*2 插在 1 3 通道 今天打 LOL 的时候发现在游戏内过一定时间会黑屏(黑一下,回到桌面或者回到游戏内)严重影响了游戏体验,做了如下操作: 在 AMD 官方的管理软件里面更新驱动,没效果 问 JD 客服,得知需要卸载驱动,重新安装驱动。在设备管理器-显示适配器内,把 AMD 显卡卸载,并且勾选删除此设备的驱动软件 重启,此时显示器的 HDMI 线还接在显卡上,能显示,感觉很奇怪,并且设备管理内能看到 AMD 显卡,后面把显示器 HDMI 线接到核显上,再次卸载 AMD 显卡和驱动,成功卸载,设备管理器内也没有了。 重启,发现没办法显示(连 boot 阶段微星的 LOGO 都没有),无论显示器 HDMI 线接到集显或者是显卡都没办法显示,与此同时路由器没有给电脑分配 IP 地址(接入网线),把显卡拔了,电脑正常启动 关机状态插入显卡,还是没有显示。拔出显卡,开机,有微星 LOGO 出现,插入显卡,在设备管理器里面看不到,显卡风扇正常转动(负载不高的情况下会停下来,但本次一直在转)。 插入显卡开机现象:电脑黑屏,没有微星 LOGO ,没有提示(我的内存插在 1 3 通道,每次开机会提示插在 2 4 通道性能最好) 主板故障灯没有亮的,猜测电脑并没有开机完成(连了网线,但路由器内没有分配 IP 地址) 求大佬帮忙猜想一下原因。
-
执行 ipconfig /displaydns 查看,发现域名存在两个 ip 地址,其中一个是服务器的外网 ip 直接编辑本地 hosts ,关联域名和 ip 地址就不会出现卡顿情况,这种是不是需要联系域名厂商,修改关联的 ip 呢
-
因为办公空间有限,只能换把椅子,最好可以避免二郎腿,能轻松放倒又安全不会来回滑动,价格预算不是关键,双十一应该是个好时机。去车里睡不太现实,孕妇不想开车,觉得操心。就选择打车上下班了。求见多识广的 V2 大佬给推荐一下。孕妇身高只有 155 ,目前 57kg ,所以还得适合小个子。懒人沙发和行军床实在是行政不能接受的。
-
最近刚从 s6 换了 24 款的 u2 ,买完以后才发现阉割了快充??? 查了下资料说,只是线不支持快充了,换个快充线手表本身是支持的? 大佬们给解答下呀?感谢❤️
-
公司拉了一条移动的千兆 VPN 专线,北京-福州专线,使用 wget 从福州服务器请求北京服务器上面的资源,速度只能到 8M/s,但是使用 axel 进行多线程下载,速度可以到 40-50M/s 网上搜索了下,好像是 TCP 丢包策略,会导致单线程下载降速,但是 ping 了下两端,并没有丢包啊 有谁能知道原因是什么嘛,如何优化能使 wget 下载也能跑 40M/s 左右吗?
-
患病史 今年过年在家呆着的时候,可能因为连续失眠和熬夜的缘故,有几天早上连续性的打喷嚏流鼻涕,我还以为感冒了。遂到医院检查,医生诊断为过敏性鼻炎的早期阶段,开了一些口服和喷雾的药。用药后症状虽有所缓解,但未完全消失。那段时间的天气还挺冷的,只要吸入冷空气,鼻炎也会瞬间发作。每天早上是最难受的时候,睁开眼很快就进入打喷嚏流鼻涕的无限循环,鼻子也逐渐被卫生纸摩擦的红彤彤的。 一个月之后,不光是鼻子有症状了。鼻炎发作的时候,嗓子也会不时的奇痒无比,紧接着控制不住地剧烈咳嗽。再就医,毫无意外的,过敏性咽炎也来了。 后续天气暖和了,只要不是连续熬夜,很少会鼻炎发作。除了有时候会突然之间喉咙痒以外,并无大碍。 这个国庆节,特种兵旅行了四五天,连着几个晚上都是半夜一两点才入睡,早上七点多就起来。总觉得眼睛难受,干痒疲劳有血丝。最后一天早上起来,发现左眼球红肿,眼皮也跟着肿起来了。三就医,诊断为过敏性结膜炎。 我总结了我的患病触发因素: 连续性熬夜、睡眠与休息不足 之前听说过敏是因为免疫系统紊乱或变得敏感导致,问了豆包给出以下回答: 26 岁之前未患过敏性疾病,之后患病可能与以下因素有关,这并不一定意味着免疫系统变强或变弱: 一、环境因素 接触过敏原的累积 • 在成长过程中,接触到的过敏原种类和数量可能逐渐增加。例如,随着居住环境的改变,可能新接触到了某种花粉、尘螨或者新的化学物质等过敏原。以前未接触到足够量的过敏原,不足以引发过敏反应,而随着时间推移,接触量达到了诱发过敏的阈值。 环境污染 • 现代社会中,空气、水和土壤的污染程度可能影响过敏的发生。例如,空气中的污染物(如工业废气、汽车尾气等)可能损害呼吸道黏膜,使其更容易受到过敏原的侵袭,从而增加了过敏性鼻炎、咽炎和结膜炎的发病风险。 二、生活方式变化 饮食结构改变 • 随着年龄增长,饮食结构可能发生较大变化。摄入更多加工食品、添加剂较多的食物,或者减少了某些具有抗过敏作用的食物摄入,可能影响免疫系统的平衡,增加过敏风险。 压力和睡眠 • 26 岁时可能面临更多的工作压力、生活压力等,长期的压力会影响神经 - 内分泌 - 免疫调节网络。同时,睡眠不足或者睡眠质量差也会干扰免疫系统的正常功能,使身体更容易出现过敏反应。 三、免疫系统的变化 免疫平衡失调 • 并非是免疫系统单纯的变强或变弱。可能是免疫系统的平衡发生了改变,例如,在成长过程中,免疫系统对某些过敏原的耐受性降低,原本能够被免疫系统忽略的物质现在被识别为危险物质,从而引发过敏反应。这种情况可能与身体内的免疫调节细胞(如调节性 T 细胞等)功能变化有关。
-
之前买过一个小米的电纸书第一代,但是呢,但是呢,安装应用不是很好体验,还不能听书。 在小黄鱼上买了 6 年的掌阅会员,很多书都可以免费读。所以准备买个掌阅的 neo2. 掌阅 neo2 是否 OK ? 看 B 站上,说那个汉王,文石也不错。