跳转到内容

小天管理

管理员
  • 注册日期

  • 最后上线

小天管理 发表的所有内容

  1. 本人打工牛马一枚,在小公司苟着。 大环境不好,希望搞起内容创作补贴家用, 特点是想法比较多,喜欢尝试新事物,喜欢读书、喜欢一个人打王者,不喜欢束缚。 写过一点掘金文字,做过小红书,在写公众号,但方向定不下来,只有公众号还在间歇性继续。 一个人只能凭兴趣搞一搞,要想走的远,还是得是一群人,所以决定建个抱团取暖群,寻找有缘人。 群里也尽量不做过多束缚,初期畅所欲言,大家可以聊生活、聊游戏、聊成就、聊股票,但是发广告的一经发现直接飞机,发砍一刀的同理。 https://imgur.com/a/qu2V2kg
  2. 看中了 mate60 pro 或者小米的竖折叠 妈妈 50 多了 不知道哪个更适合中老年人呢?我一直用的苹果不太了解.妈妈现在用的还是我刚毕业给她买的 k30
  3. 手里有一台类似 NUC 的 Mini PC ,还有一台工控机。 Mini PC 配置好 VNC 之后直接开机就可以远程连接使用,随便配置分辨率什么的也都没问题;但是工控机必须插 HDMI 欺骗器才能正常启动图形界面、用 VNC 远程连接。 问了工控机的客服,他们甚至不知道有这样的情况,这个是硬件导致的吗?还是固件什么导致的? 我看有很多人的其他电脑也有这样的情况,如果这是个特性的话,这样设计的目的是什么?是为了节能吗? 问号有点儿多,提前感谢解答。
  4. 个人基本情况:统招本科,六年工作经验,react 和 vue 都会(都有 3 年左右的使用经验)。react 会更熟一点。 上任工资 20k ,这次薪资预期持平即可,已离职随时到岗,另外现在还不在上海,最好一面能够远程面试。 如果有意向可以加我 v:jarvan_king(不用解 base64),我发简历或者留下联系方式我联系你 感谢各位
  5. 或者换一种方式:恕我直言,1000 以内的人体工学椅都是垃圾
  6. iPhone 端,几年前用的国内号码注册的,一直在用保持登录态好几年了,很久没登录过了,今天打开突然要登录了,要验证邮箱和手机号,结果看到手机的验证码来源是,感觉好奇怪 [舒宜智能] 您好,请您在 5 分钟以内登录验证码 xxxxx
  7. 目前是买的 A 类场外基金,每天有限额 100/500/1000 这样 费率: 买入=0.12% 运作费率=0.6%-0.8%/年 听说场内基金可以做到 买入=0.005% 免 5 。昨天特地开了个户去看了下,发现场内运作费率普遍,1%/年 左右,这样算岂不是成本更高,只是从 T+3 变成了 T+0 ? 还有第三种,新加坡 OCBC+长桥,这种刚知道不了解是否安全,以及两次换汇+交易整体成本 或者还有没有其他更好的渠道?你的选择是什么?
  8. 背景:使用 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 协议没反应。
  9. Win11 23H2 ,系统睡眠唤醒后,任务栏图标消失,实际是占位存在的,只是显示透明了,点击一下就会出现。这个 bug 持续很久了,不是必现,但出现概率挺高 网上搜,不是个例,微软社区答复都是牛头不对马嘴,没有找到有效解决方案。 求助 V 友
  10. 求推荐一些易用的方案,或者图形化生成模版,js 或 python 都行,看过 jspdf 和 reportlab ,感觉用代码手搓排版和元素样式及定位太痛苦了
  11. 最近被这个输入法问题折磨地很难受。 大概是从 9 月下旬开始,我用的搜狗输入法会时不时出现这种毛病,输入时首个字母没进入输入法,而是直接以英文形式上屏。 例如,我想输入 zhe “这”,结果会变成上图的样子。 这种情况只会在进入输入模式后第一次按键时偶发出现,从不会在输入的中途出现。在浏览器、QQ 、微信等多个应用中都出现过这种现象。 考虑过是搜狗输入法的问题,但更换 Rime 后也会出现这种问题,应该和操作系统( Windows 11 24H2 26100.2033 )有关,或者和我安装的软件有关。 网上搜索后实在没找到什么有价值的信息,如果哪位朋友有思路还请不吝赐教,谢谢~
  12. 请教各位,市面上有没有充电宝是可以 magsafe 给 iphone 充电,并且也可以无线 qi/qi2 给自己充电的? 我看到特斯拉新出了一个这样的,但是好像还没发售,一直想找一个这样的。
  13. 职位描述 1 、深入了解司乘两端全流程业务,了解并掌握后端整体的系统架构,参与出行中台的业务架构设计与优化工作。 2 、负责交易主流程核心系统维护,支持快车、专车、优步、优享、豪华车、拼车、出租车等核心业务的研发。 3 、负责对复杂业务进行抽象优化,搭建好业务平台,提供新业务/新功能快速孵化接入的能力。 任职要求 1 、计算机或相关专业本科及以上学历,3 年及以上工作经验; 2 、熟悉并掌握常见语言中的一种或多种(Golang 、PHP 、Java),从事过大型高并发架构设计者优先; 3 、熟悉常用 DB 、缓存应用和优化; 4 、对分布式服务架构有较深的认识,了解业界常用开源技术; 5 、有较强的业务抽象、逻辑分析能力,善于总结沉淀; 6 、善于发现问题,解决问题,并能落地解决方案; 7 、良好的沟通能力和团队协作能力。 有兴趣发送简历到邮箱 clarencegogogo@outlook.com 也可回帖咨询
  14. 一些网站如果打不开(显示“连接已重置”),此时打开 edge 设置中的“使用安全的 DNS 指定如何查找网站的网络地址”,随便选个“1.1.1.1”或“opendns”,再刷新网站就能打开了(当然国内的网站访问就很慢了),然后关闭这个设置,只要不关电脑,网站访问都没问题。请问这是什么原因?路由器用的是老毛子+v2ray 。 谢谢。
  15. 福利待遇优 五险一金+商业险 入职年假 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
  16. 8 月就出台的政策,说 9 月底落地的,已经没下文了?
  17. 当前房贷固定利率是:4.165%,希望转为 LPR 。 在农行 APP 看到如下界面: 疑问:转了之后到底是比 4.165%高了还是低了?
  18. 昨天深夜发了,但好像没人看到,再次发一下,见谅,原帖 电脑信息 显卡型号 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 地址) 求大佬帮忙猜想一下原因。
  19. 执行 ipconfig /displaydns 查看,发现域名存在两个 ip 地址,其中一个是服务器的外网 ip 直接编辑本地 hosts ,关联域名和 ip 地址就不会出现卡顿情况,这种是不是需要联系域名厂商,修改关联的 ip 呢
  20. 因为办公空间有限,只能换把椅子,最好可以避免二郎腿,能轻松放倒又安全不会来回滑动,价格预算不是关键,双十一应该是个好时机。去车里睡不太现实,孕妇不想开车,觉得操心。就选择打车上下班了。求见多识广的 V2 大佬给推荐一下。孕妇身高只有 155 ,目前 57kg ,所以还得适合小个子。懒人沙发和行军床实在是行政不能接受的。
  21. 1.双方夫妻收入大概 2w 左右,目前是和父母住一套安置房。 2.无贷款
  22. 哪个性能更好,在移动端推荐使用哪个