After almost 3 years of work for huge marketplace I resigned because I didn't feel company goals. Took 2 months of vacation and after that, spent about month looking for job.
It was hard work to be honest. At first I scheduled interviews to "warm up" and get used to questions. It was for first 2 weeks. Then I felt that I was ready for real interviews. Have to say that I have list of companies where I want to work. Try to keep it up to date. It helped a lot, I knew where I should apply. Also Hacker News has great topic "Who is hiring". I had interviews for whole day, starting early for Europe and finishing late after meetings with North America. I admin, it was a challenge for me.
Currently I work for US based company that do good things for environment and have impact for many people lives. It feels good.
Super simple!
Here is example:
> cheat zip
# To create zip file:
zip archive.zip file1 directory/
# To create zip file from directory:
zip -r archive.zip directory/
# To create zip file with password:
zip -P password archive.zip file1
# To join a split zip file (.zip, .z01, .z02, etc):
zip -FF splitZipfile.zip --out joined.zip
# To list, test and extract zip archives, see unzip:
cheat unzip