楼主: Owenli20
跳转到指定楼层
上一主题 下一主题
收起左侧

[找工就业] 大龄码农下岗再就业时间线

   
🔗
 楼主| Owenli20 2023-3-13 23:18:37 来自APP | 只看该作者
全局:
nneight1 发表于 2023-03-13 07:30:12
他家要求本来就高,现在要求肯定更了很多
对了,楼主,如果面试问你现在是不是在职,要如实说吗?
做背景调查的时候,中间有gap,有问题吗?
背景调查是另外一回事 因为我还在公司payroll上 所以technically我还是在职
不过就算已经离职了 gap一两个月肯定没问题
回复

使用道具 举报

全局:
Owenli20 发表于 2023-03-13 08:18:37
. 背景调查是另外一回事 因为我还在公司payroll上 所以technically我还是在职
不过就算已经离职了 gap一两个月肯定没问题
谢谢楼主详细解答
回复

使用道具 举报

🔗
nneight1 2023-3-16 07:06:15 | 只看该作者
全局:
Owenli20 发表于 2023-3-11 15:28
面经题
Design VISA network to talk to buyer and merchant's bank,场景就是buyer去买东西刷信用卡,m ...

我的数据🧱店面也挂了,是一个system design,但更多的是需要写伪代码的coding和design相结合的问题。就直接在楼主的帖子下分享一下。
我直接写了一个LSM tree的伪代码实现,结果还是收到fail的feedback
“It looks like they felt you were knowledgeable and familiar with the problem space but unfortunately were expecting more probing and explanation of thinking in order to move forward for a Staff level position.”
我刚开始说了一下大致的思路,面试官也认可,我以为面试官也比较熟悉这一块。结果发现面试官对细节不是很清楚,所以花了不少时间讨论一些disaster recovery,write ahead log的细节。估计面试官觉得我应该把这些细节提前要解释清楚。
  1. class Store {  // C++
  2. /*
  3. LSM tree
  4. memtable (10000 entries)
  5. WAL
  6. table in disk
  7. */
  8. public:
  9. Store() {
  10.    // Called when the system first comes up. You can assume that no `get` or `put` calls will be made
  11.    // before this function has completed.
  12.    string logFilePath = "";
  13.    entries_limit = 10000;
  14.    readWAL();
  15. }
  16. /*. Waral dи,
  17. it can always return the most recent memtable copy in disk one by one ..
  18. */
  19. bool loadMST(map<string, string>& m){


  20. }
  21. bool storeMST(map<string, string>& m){


  22. }. ----
  23. bool writeWAL(td::string key, std::string value){
  24.    open();
  25.    write(logFilePath, pos_end, "%s, %value".format(key, value));//block ops
  26.    return true;


  27. }
  28.   bool readWAL(map<string, string>& m){. .и
  29.    open();
  30.    auto pairs = read(logFilePath, pos_end, "%s, %value".format(key, value));
  31.    m[pair.key] = m[pair.value];
  32.    return true;
  33. }
  34. bool clearWAL(){


  35. }
  36. void put(std::string key, std::string value) {
  37.    // Writes a given key/value pair into the store.  If `key` is already present replace the
  38.    // current `value` with one given.  After this function returns, the value must be *durable*
  39.    // meaning that even in the presence of failures (program crashing or power going out), subsequent
  40.    // `get` calls for this key must continue to return the result of the most recent `put`.
  41.    m[key] = value;
  42.    writeWAL(key, value);. 1point3acres
  43.    if(exceeded_limited()){
  44.      clearWAL()
  45.      storeMST();
  46.    }.
  47.    return;
  48. }
  49. thread_t pdflush(){
  50.    if(exceeded_limited()){. ----
  51.      storeMST();
  52.      clearWAL()
  53.    
  54.    }
  55. }
  56. std::string get(std::string key) {
  57.    // Returns the most recently `put` value for the given `key`.
  58.    // Returns an empty string, if no value has been `put` for this key.
  59.    if(m.find(key) != m.end()){
  60.      return value;
  61.    }
  62.    map<string, string> t;
  63.    while(loadMST(t)){
  64.      if(t.find(key) != t.end()){
  65.        m[key] = t[key];
  66.        return value;.--
  67.      }
  68.    }
  69.    return "";
  70. }. 1point 3acres
  71. private:
  72. map<string, string> m;.--
  73. int entries_limit;
  74. };
复制代码
BTW,原题只有construtor和get/put函数,其他都是我添加的辅助函数

评分

参与人数 1大米 +1 收起 理由
Felix1218 + 1 赞一个

查看全部评分

回复

使用道具 举报

全局:
请问楼主提到的在 每天linkedin上找公司投,除了recruiter reachout外, 就是在jobs页面上搜swe然后看最新开放的岗位吗?谢谢
回复

使用道具 举报

🔗
 楼主| Owenli20 2023-4-18 11:47:32 | 只看该作者
全局:
bieguanwoshishe 发表于 2023-4-16 10:10
请问楼主提到的在 每天linkedin上找公司投,除了recruiter reachout外, 就是在jobs页面上搜swe然后看最新 ...

基本上是,比如搜machine learning infrastructure engineer
设置了关键字 senior software engineer, staff software engineer, machine learning engineer这些,每天会收到邮件
回复

使用道具 举报

全局:
Owenli20 发表于 2023-04-17 20:47:32
基本上是,比如搜machine learning infrastructure engineer
设置了关键字 senior software engineer, staff software en
感谢回复 请问这个邮件是recruiter 嘛还是LinkedIn 的那个job alert: job based on your profile 的邮件提醒呢   不好意思问的有点细  我最近找工就是想多听听大家的方法     我在LinkedIn jobs 那里比方搜SWE 过去24小时内的 感觉很多公司都是奇奇怪怪的和自己的经历也不符合....
回复

使用道具 举报

🔗
 楼主| Owenli20 2023-4-19 04:33:53 | 只看该作者
全局:
bieguanwoshishe 发表于 2023-4-18 00:40
感谢回复 请问这个邮件是recruiter 嘛还是LinkedIn 的那个job alert: job based on your profile 的邮件提 ...

就是自己设置的alert 不是recruiter也不是系统自动推荐
不过都差不多吧 有机会就投呗
回复

使用道具 举报

🔗
 楼主| Owenli20 2023-4-19 04:34:31 | 只看该作者
全局:
Owenli20 发表于 2023-4-18 13:33
就是自己设置的alert 不是recruiter也不是系统自动推荐
不过都差不多吧 有机会就投呗

可能是open to work里设置 不过我也记不清楚了
回复

使用道具 举报

全局:
Owenli20 发表于 2023-4-18 13:33
就是自己设置的alert 不是recruiter也不是系统自动推荐
不过都差不多吧 有机会就投呗

请教大神,现在找工作一定需要内推吗?能内推就内推,因为竞争激烈?
回复

使用道具 举报

🔗
 楼主| Owenli20 2023-9-8 23:25:59 | 只看该作者
全局:
WishUponAStar 发表于 2023-9-4 19:57
请教大神,现在找工作一定需要内推吗?能内推就内推,因为竞争激烈?

不一定要内推,内推不如海投快,要跟内推人联系follow up之类的
建议大中厂或者很想去的内推,其他海投,我第一周就海投了50家,也拿到了几个面试
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册账号
隐私提醒:
  • ☑ 禁止发布广告,拉群,贴个人联系方式:找人请去🔗同学同事飞友,拉群请去🔗拉群结伴,广告请去🔗跳蚤市场,和 🔗租房广告|找室友
  • ☑ 论坛内容在发帖 30 分钟内可以编辑,过后则不能删帖。为防止被骚扰甚至人肉,不要公开留微信等联系方式,如有需求请以论坛私信方式发送。
  • ☑ 干货版块可免费使用 🔗超级匿名:面经(美国面经、中国面经、数科面经、PM面经),抖包袱(美国、中国)和录取汇报、定位选校版
  • ☑ 查阅全站 🔗各种匿名方法

本版积分规则

>
快速回复 返回顶部 返回列表