Skip to content

Instantly share code, notes, and snippets.

View vickywane's full-sized avatar
🎯
Break stuff ..... Make Stuff ...

Nwani Victory vickywane

🎯
Break stuff ..... Make Stuff ...
View GitHub Profile

I bundled these up into groups and wrote some thoughts about why I ask them!

If these helped you, I'd love to hear about it!! I'm on twitter @vcarl_ or send me an email [email protected]

Onboarding and the workplace

https://blog.vcarl.com/interview-questions-onboarding-workplace/

  • How long will it take to deploy my first change? To become productive? To understand the codebase?
  • What kind of equipment will I be provided? Will the company pay/reimburse me if I want something specific?
@vickywane
vickywane / Trie.js
Last active March 3, 2021 01:38 — forked from tpae/Trie.js
Trie.js - super simple JavaScript implementation
// Trie.js - JS implementation
// https://en.wikipedia.org/wiki/Trie
// Inspired by Tpae's implementation
// we start with the TrieNode
function TrieNode(key) {
// the "key" value will be the character in sequence
this.key = key;
@vickywane
vickywane / codility_solutions.txt
Created August 5, 2020 21:36 — forked from lalkmim/codility_solutions.txt
Codility Solutions in JavaScript
Lesson 1 - Iterations
- BinaryGap - https://codility.com/demo/results/trainingU2FQPQ-7Y4/
Lesson 2 - Arrays
- OddOccurrencesInArray - https://codility.com/demo/results/trainingFN5RVT-XQ4/
- CyclicRotation - https://codility.com/demo/results/trainingSH2W5R-RP5/
Lesson 3 - Time Complexity
- FrogJmp - https://codility.com/demo/results/training6KKWUD-BXJ/
- PermMissingElem - https://codility.com/demo/results/training58W4YJ-VHA/