摘要: 作为刚刚毕业参加工作的本科生,初出茅庐的这点儿经验和建议自然无法和业界大佬的相提并论,就姑且算作是我的小总结吧;对你有用就更好啦! 一.我的第一份工作经历了两轮面试,第一次是项目经理到学校进行的校招,第二次是与项目技术人员进行的视频面试。 P公司是3月份大三下学期开学后第一个来我学校进行校招的公司, 阅读全文
posted @ 2017-10-05 03:32 Mr.Winter 阅读(3882) 评论(0) 推荐(0) 编辑
摘要: 生成二维码 qr-image import qr = require('qr-image'); const qr_code = qr.image(text); 生成的qr_code是一个可读流NodeJS.ReadableStream。 可以直接存文件,把这个读流管连到一个新创建的写流 qr_cod 阅读全文
posted @ 2022-09-16 17:06 Mr.Winter 阅读(1145) 评论(0) 推荐(0) 编辑
摘要: oTree - A modern open platform for social science experiments. links: 简书 oTree简介 oTree学习教程(一)概念性概述 oTree学习教程(二)Models oTree学习教程(三)Pages oTree学习教程(四)Te 阅读全文
posted @ 2022-07-13 16:19 Mr.Winter 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 2019秋招复习笔记--面试高频知识点 作者: lllunaticer 出处:https://www.cnblogs.com/greatLong/p/10552835.html 版权:本站使用「CC BY 4.0」创作共享协议,转载请在文章明显位置注明作者及出处。 why:原版看着太费劲了 第一模块 阅读全文
posted @ 2021-08-05 18:44 Mr.Winter 阅读(113) 评论(1) 推荐(0) 编辑
摘要: part 1 基础数据结构 1,11,15,21,24,25,26,42,66,88,141,142,189,206,283,641 part 2 哈希 49,84,94,144,239,242,347,429,589,590,O49,O40 part 3 递归 17,22,46,47,50,70, 阅读全文
posted @ 2020-09-07 10:50 Mr.Winter 阅读(122) 评论(0) 推荐(0) 编辑
摘要: HashMap (Java Platform SE 8) Hash table based implementation of the Map interface. This implementation provides all of the optional map operations, an 阅读全文
posted @ 2020-08-10 01:49 Mr.Winter 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 1.三元表达式不要用来判断真假值 let bought = (account && account.period_record_length || account.standard_class_record_length) ? true : false; // if true, = true 2.不 阅读全文
posted @ 2020-08-08 16:55 Mr.Winter 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 使用 Promise - JavaScript | MDN Using Promises A Promise is an object representing the eventual completion or failure of an asynchronous operation. Sinc 阅读全文
posted @ 2020-04-08 00:26 Mr.Winter 阅读(244) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-04-25 11:12 Mr.Winter 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 题目: 扔 n 个骰子,向上面的数字之和为 S。给定 Given n,请列出所有可能的 S值及其相应的概率。 给定 n = 1,返回 [ [1, 0.17], [2, 0.17], [3, 0.17], [4, 0.17], [5, 0.17], [6, 0.17]]。 方法一 概率问题最简单有效的 阅读全文
posted @ 2018-11-01 17:04 Mr.Winter 阅读(267) 评论(0) 推荐(0) 编辑
摘要: 搭建Android浏览器壳子 不久前我们要做一个Android端的手机APP,但没有用Android原生的组件, 而是把这个APP做成了一个访问某一固定IP的浏览器,即单纯的一个壳子; 具体的内容用Vue来开发。 因为这个项目本身不大,加上我们只有一名web前端开发人员,所以选用了此套路; 再加上现 阅读全文
posted @ 2018-09-26 10:28 Mr.Winter 阅读(815) 评论(0) 推荐(0) 编辑