Showing posts with label tips. Show all posts

怎麼開Lyft 才賺錢?


怎麼開Lyft才賺錢? 如果考量到車輛維修整理的話,個人認為去找個商店打工可能還比較划算!當然,Lyft還是有機會賺點零用錢,但是一定要Work Smart Not Work Hard! 什麼叫Work Smart? 下面兩張是我在同一天內接的客人紀錄:

圖A

圖B

Prime Time

這兩張的里程差不多,也就是基本工資上沒有差到太多,但是圖A多了Prime Time。也就是多了一倍的工資。這一倍的工資基本上就是讓你每個小時時薪可以比較多的關鍵了。但Prime Time有點可遇不可求(必須要客人在App 指定的粉紅色區塊內叫車)

看看圖B,就知道基本上這個小時是沒賺錢的。我花了快半個小時開車載這個客人到目的地,除非客人是從郊區要到市區(但大部分是相反),通常我要空車開回去接近市區才容易有request,或是就算有request通常還要開個十幾分鐘的車程,變成頂多一個小時只能接1~2組客人,這樣就變得很沒效率和沒賺頭。

Power Zone

圖C
Lyft 會在有特殊時候(球賽,大型活動)把一個區塊畫出來,這個區塊內request的會有10~100%的加成。加成會以Bonuse的項目顯示在該次的紀錄上(如上圖C)。這個加成是比較容易拿到的,基本上只要把車子開在zone裡面就有很大機會可以拿到,但是要注意時間。Lyft很奸巧,有時Power Zone時間是不連續的,也就是如果3PM~4PM有35%,下次的時間就是5PM~6PM,也就是中間的4PM~5PM沒有加成。除非真的很缺錢,我通常沒有加成的時間就休息一下。

Power Zone 時間表

Tips

別想太多,有的話當賺到的。我通常五組客人才會有一組給。如果是商務客去機場或是飯店接的,幫忙提一下行李機會比較高。

No Show

如果抵達後五分鐘內客人沒出現,打電話也沒接。就可以No show。費用各城市不同,可以參考這裡: https://www.lyft.com/cities



損失與求償

沒想到我也會碰到這樣的情況,不過在外頭跑本來什麼情況都可能發生。有一天第一趟的case,才開沒五分鐘,後座的小朋友就直接吐了。整個椅墊上都是嘔吐物(然後量多到透到椅墊的下方 ),當然馬上折返。對方給了5塊小費,不過我光是清潔和好幾天都沒辦法用車,損失根本不止。我當下馬上跟Lyft回報(App 內有help 選項,填妥並上傳相關照片),沒多久Lyft就表示會跟對方收150的Damage費用。也算是稍稍彌補了。



結論


因為考量到成本,在我這個區域開Lyft要養家活口很難,之前和加州開Lyft的朋友聊過也是相同的問題。不過如果只是賺賺零用錢倒不失為一個好方式,另外一方面也可以和不同背景的人聊天真的不錯,不過我碰到的幾乎都是黑人朋友就是了。

看完了還是決定試試看的話,referral申請連結: 按我

新聞參考:

[Swift] Sort custom class(struct) object array


//Post structure 
class Post: NSObject {
    var uid: String
    var title: String
    var body: String
    var time: String
    var imagePath : String
    init(uid: String, title: String, body: String, time: String, imagePath: String) {
        self.uid = uid
        self.title = title
        self.body = body
        self.time = time
        self.imagePath = imagePath
    }
}


var postAr = [Post]()

//add element in to array...
........
//Sort array
postAr = postAr.sorted(by: { $0.time > $1.time })


last line is key....In Addition, we can using map, filter or reduce to operate on Swift collection types.

You can see how to use in here







[Swift] set UILabel fade-in fade-out continuity

extension UILabel {
    /**
     Set Text With animation fadein fadeout
     - parameter duration: NSTimeInterval?
     */
    public func setTextAnimation(duration: TimeInterval?, completion:(()->())? = nil) {
        UIView.animate(withDuration: duration!, delay: 0.0, options: UIViewAnimationOptions.curveEaseOut, animations: {
            self.alpha = 0.0
        }, completion: {
            (finished: Bool) -> Void in
            // Fade in
            UIView.animate(withDuration: duration!, delay: 0.0, options: UIViewAnimationOptions.curveEaseIn, animations: {
                self.alpha = 1.0
            }, completion: {
                (finished: Bool) -> Void in
                self.setTextAnimation(duration: duration!)
            })
        })
    }

}

面試題目: Do you have any questions for us?

好吧,我通常第一個念頭就是NO. 但是查到的資料都是說“不可以簡單的回答yes/no” .
(又不能問薪水福利,又不能問工時). So, 所以最好先了解一下該公司的業務內容,公司文化,相關新聞等。Please do not ask any questions where you already know the answer.

列一下學校文件給的可以問的問題:

  1.  When do you plan to make a hiring decision?
  2.  What are the primary results you would like to see produced in this job?
  3.  What attributes are you looking for in the person that you hire for this position?
  4.  What types of people seem to do well in this department/company/position?
  5.  Could you give me an idea of what the company culture is like?
  6.  How would you describe your management style?
  7.  Please describe a typical day in this position.
  8.  Can you tell me about the team I would be working with?
  9.  What are the next steps in the interviewing process?

面試題目: Tell me about yourself?

最近在準備面試,把學校提供的一些面試準備方向記錄一下。 “Tell me about yourself“ 是很簡單也很深奧的問題。從這個問題的回答,人家想知道你如何看待這份工作的關係。所以不要回答家庭, 小孩等和工作無關的。

試著簡單列出下列一些list,然後把這個組織起來。

  • Education (as it relates to the position)
  • Skills/Related Work Experience
  • Job Focus/Future Career Plans
回答的方向可以簡單的以 現在- 過去- 未來 做一個編排。

Q: "Tell me about yourself." 
A: "Well, I'm currently is a part-time student at Clark College. I'm also a volunteer at Boys and Girls Clubs, where I teach young to code and maintain computers. Before that, I worked for one of a biggest real estate companies as a programmer in Taiwan.  I really enjoyed the work that I did, I build internal websites and APPs for our client use. I wrote over 10 APPs for different companies; some of them have been downloaded over 170,000 times until now. I have a positive attitude and like to challenge new things. That's why I left my comfort zone and came to the US to pursue my American Dream. "