Skip to content

Instantly share code, notes, and snippets.

View Munsterberg's full-sized avatar

Jake Munsterberg

  • Toronto
View GitHub Profile
@Munsterberg
Munsterberg / gist:5ae2e5a0ead6785cd7b310f4cf1e2ba6
Created February 12, 2021 23:32
Manage neovim python versions with pyenv
pyenv virtualenv 2.7.14 neovim2
pyenv virtualenv 3.6.5 neovim3
pyenv activate neovim2
pip install neovim
pyenv which python # Note the path
pyenv activate neovim3
pip install neovim
pyenv which python # Note the path
@Munsterberg
Munsterberg / linusfe.md
Last active October 20, 2019 17:35
Linus FE challenge

Linus Frontend Technical Challenge

Description

You are tasked with replicating a mockup that we provide.

The mockup is a simple slide-in side navigation menu, with some settings content. You must recreate this mockup in React without the use of a navigation library. Toggle buttons should trigger state updates, dropdowns should have at least 2 options (make them up).

Requirements

  • Use React.js
  • Recreate mockup

Linus Coding Challenge

Description

You are tasked with designing and building a REST API with basic user authentication (not oAuth).

The REST API should allow basic CRUD operations for dogs (create, read, update, delete). Only authenticated users should be able to create, update, and delete dogs; whereas any user should be able to view/read a dog(s). Users should be able to search for dogs via a partial (or complete) term -- how you choose to implement this is entirely up to you.