V School | Better Humans, Better Outcomes

So you want to work remotely

Remote work is hard to find, but it is possible to achieve, especially if you've worked remotely before. If this will be your first remote position, I would focus instead on negotiating a position that will let you start working remotely after the first 6 months to a year. As

GitHub: What are employers looking for?

Believe it or not, potential employers can learn a lot about you just by looking at your GitHub profile. From how well you code to what languages you specialize in, to even whether or not you might be passionate about coding, it's all there, or it can be if you

Lil' Bits

Warmup Write a function that takes a non-negative integer as an argument and returns its binary representation as a string. For example: convertToBinary(12) // "1100" convertToBinary(0) // "0" convertToBinary(5) // "101"

MissingNo.

Warm up Write a function that returns the missing number from an unsorted array of numbers. * Create a function that identifies the range of numbers within a given array. * Have the function return all numbers missing within the range. Example: function findMissingNo([3,5,4,8,1,2,7]){ //Find

Building Reusable Components in ReactJS

This post aims to demonstrate how to make truly reusable components using what are known as render-props and props.children. Modularity Vs. Reusability Just because it's modular doesn't mean it's reusable. Probably the most common example of this is with forms. If you're making a

component for posting data,

V School | Better Humans, Better Outcomes © 2026