Skip to content

Instantly share code, notes, and snippets.

View aryou's full-sized avatar
🎯
Focusing

Aaron Ryou aryou

🎯
Focusing
View GitHub Profile
@aryou
aryou / code_challenge.md
Last active March 22, 2024 18:11
Raeden Code Challenge

Code Challenge


  1. Build a REST API using the Flask framework to hold addresses
  2. Your API should have an endpoint to add new addresses. Sample data provided below of addresses to use a. You can use any storage engine you like. Postgres, mysql, mongodb, redis, sqllite or even store in a flat file. Just make sure you give instructions on how to setup the storage device b. the created field date/times as ISO-8601 with timezones UTC format when the address was created
  3. Create an endpoint to get all addresses stored
  4. Create an endpoint to filter all addresses where value="high"
  5. Use at least one design pattern
$ git remote rm origin
$ git remote add origin git@github.com:aplikacjainfo/proj1.git
$ git config master.remote origin
$ git config master.merge refs/heads/master
@aryou
aryou / gist:b1d8e595734622b562cc
Created September 17, 2015 15:58
custom runner
# -*- coding: utf-8 -*-
'''
MyRunner
'''
from __future__ import absolute_import
# Import salt modules
import salt.client
if __name__ == "__main__":