Skip to main content

실리콘밸리 구직 체험기2_201505 - 4. 인터뷰 진행 상황


구직 초반의 마음 상태는 H1B도 있으니까 어떻게든 잘 되겠지 싶었습니다.
남들 몇년에 걸쳐 경험하는 것을 1년안에 해치울 수 있어서 오히려 잘 되었다 싶었고,
몇몇 지인들의 reference도 받을 수 있어서 쉽게 구할 수 있을 줄 알았으나 1달반이 가까와 오도록 성과가 나타나지 않았습니다.
나의 인터뷰 진행 상태는 다음과 같았습니다.


- 첫번째 전화인터뷰: 모두 내 경력 때문에 좋아라 했습니다.
- 전화 테크 인터뷰: 대략적인 기술 설명과 해법들을 이야기 하는 것이라면 별 무리 없었습니다.
- online test: 메모장 같은 것을 통해서 코딩을 했는데 소통이 잘 되지 않아서 내가 봐도 맘에 안들었습니다.
- onsite 인터뷰
- 현재 시스템 architecture 설명: 대부분 분위기가 좋았습니다.
- white board coding: 처음 보는 문제들을 풀기가 쉽지 않았고, 설령 못풀어도 접근 방법등을 설명해야 하는데 멀티태스킹이 안되는 관계로 버벅거리기 일쑤 였습니다.


참고로 나는 나의 포트폴리오를 정리하기 위해서 깃헙에 샘플 프로그램 등을 정리해서 올렸습니다. 내 과거 프로젝트를 보여줄 수는 없지만 간단히 스터디 한 것들, 관심있는 것들을 이력서가 아니라 실제 동작하는 앱과 코드로 노출 시킬 수 있어서 인터뷰 채택에 도움이 되었다고 생각합니다.


3~4주 많은 인터뷰 일정들이 지나갔습니다. 준비하는 동안 60번이 넘은 폰스크린과 10여차례의 온사이트 인터뷰를 봤습니다.





Comments

Popular posts from this blog

Amazon RDS Blue/Green Deployments

In order to avoid some errors I experienced when proceeding as described in the official documentation, I describe what I did in order. 1) Modify parameters of source_database * error: Blue Green Deployments requires cluster parameter group has binlog enabled. RDS Parameter groups: source-params-group binlog_format => MIXED mysql> show global variables like 'binlog_format'; 2) Insert a row after rebooting the source database, to avoid this error. * error: Correct the replication errors and then switch over. Read Replica Replication Error - IOError: 1236, reason: Got fatal error 1236 from master when reading data from binary log: 'Could not find first log file name in binary log index file' => To Fix: You need to change the data in the source database. INSERT INTO dummy_table ( `favorite_id` , `favorite_order` , `user_id` , `board_id` ) VALUES ('100001', '1', '11111', '11111'); 3) Modify the param...

Fluentd for mysql in AWS

(0) preparation ulimit -n If your console shows 1024, it is insufficient. Please add following lines to your /etc/security/limits.conf file and reboot your machine. root soft nofile 65536 root hard nofile 65536 (1) install Fluentd // “Ubuntu 12.04 LTS / Precise” curl -L http://toolbelt.treasuredata.com/sh/install-ubuntu-precise.sh | sh /etc/init.d/td-agent start/stop/restart/status // test curl -X POST -d 'json={"json":"message"}' http://localhost:8888/debug.test /etc/init.d/td-agent stop chown: changing ownership of `/var/run/td-agent/td-agent.pid': Operation not permitted chown: changing ownership of `/var/run/td-agent': Operation not permitted  * Stopping td-agent td-agent                                                                                   ...

Install CoreOs on linode without VM

Install CoreOs on linode without VM 1. Add a Linode 2. Create a new Disk   CoreOS 3. Rescue > Reboot into Rescue Mode 4. Remote Access   Launch Lish Console 5. make an install script cat <<'EOF1' > install.sh # add needed package sudo apt-get update sudo apt-get install -y curl wget whois sudo apt-get install -y ca-certificates #sudo apt-get install gawk -y # get discovery url discoveryUrl=`curl https://discovery.etcd.io/new` # write cloud-config.yml cat <<EOF2 > cloud-config.yml #cloud-config users:   - name: core     groups:       - sudo       - docker coreos:   etcd:     name: node01     discovery: $discoveryUrl hostname: node01 EOF2 # get the coreos installation script #wget https://raw.github.com/coreos/init/master/bin/coreos-install wget https://raw.githubusercontent.com/coreos/init/master/bin/coreos-install # run installation chmod 75...