Skip to content

Instantly share code, notes, and snippets.

通用問題:

  1. 為什麼這個職位要招人?之前有過這個職位的人嗎?他是為什麼離職的?還是單純因為公司高速增長所以多了這個職缺?
  2. 你覺得大家想留在貴司的理由是什麼?文化、價值觀、薪資之類的嗎?
  3. 如果我錄取了,公司希望我在頭三個月內做的三件事情是什麼?
  4. 在你心目中,要成功地做好這份工作,需要做到哪幾點或特質?
  5. 公司怎樣衡量員工的 performance 的?
  6. 公司去年有遇到什麼重大問題?最後是怎麼克服的?
  7. 員工通常都待多久?
  8. 公司會辦什麼活動給員工參加嗎?
  9. (最後一題問):剛才說過的話裡,有沒有哪些內容讓你覺得我不合適的?
var imgIds = [
1203716, 1203756, 1203720,
];
const omeroUrls = {
hms: 'https://omero.hms.harvard.edu',
idp: 'https://idp.tissue-atlas.org'
};
// choose omero instance between the HMS and the IDP OMERO
const whichOmero = 'hms';
@DahlitzFlorian
DahlitzFlorian / timer_class.py
Created April 23, 2019 19:36
Article: How To Create Your Own Timing Context Manager
from time import time
class Timer(object):
def __init__(self, description):
self.description = description
def __enter__(self):
self.start = time()
def __exit__(self, type, value, traceback):
self.end = time()