The best resumes are also the shortest, almost without exception
If you have actually done something impressive, it doesn't take long to say it
The long and rambling resumes use breadth to cover up a lack of depth
Things you can try if you're a programmer:
- Create a small standalone app in 4 wks.
- Write a short tech ebook in 2 wks.
- Create a 1-hour video course in 1 wk.
- Build a SaaS MVP in 4 wks.
Try to make $50/day from each, and you'll have $6K/mo.
Embrace the constraints.
JavaScript's Array.from() is great for chunking an array into smaller arrays of a specified size. Array.flat() lets us flatten these to get the original array.
ALT const chunk = (arr, size) => Array.from({ length: Math.ceil(arr.length / size) }, (v, i) => arr.slice(i * size, i * size size)); // chunk array into smaller arrays of size 3 const chunks = chunk([1,2,3,4,5,6], 3); > [1,2,3] > [4,5,6] chunks.flat(); // flatten the chunked array > [1,2,3,4,5,6]