We're looking for a backend software engineer to join our Python team. And work on our internal ERP platform ensuring the exploration and promotion of adopting new technologies whilst prototyping, testing and developing new concepts (focusing on fintech). That our in-house systems used by all team members. In addition to this, they play a pivotal role in defining standards for development for the whole company.
While we don't expect you to have full-stack development experience, but the general understanding of how each part of a complex system works is necessary.
General project description An internal solution for managing, monitoring and forecasting resources availability in terms of short-term and long-term plannings. The project aims at integrating a large number of third-party services that are used within the company, into a single control tower. The system also provides an automation of the routine daily activities and supports data pipelines for the Business Intelligent team.
Technology stack: Python, React.js, AWS Serverless Application Model (AWS SAM), GitHub CI/CD, Google Services API, Slack API, Jira API, HubSpot API
Project start date: December 2020
Specify the approximate term of the project: long term partnership
YOUR BACKGROUND
- Software engineering commercial experience with Python (1+ year)
- Experience in writing and using REST APIs
- Experience with RDBMS (PostgreSQL, MySQL)
- Confident use of Git
- Ready to switch technology stack and project
- Good verbal and written communication skills
- English B1
Skills that will be a plus:
- Education in computer science, computer engineering, or equivalent experience
- Experience with NoSQL (DynamoDB, MongoDB, etc)
- Knowledge of serverless architecture principles
- Knowledge of micro-services architecture principles
- Experience with building and deploying with AWS cloud infrastructure
- Experience with Docker
- Experience with CI/CD tools (Gitlab, Github, Travis, etc.)
- Experience in creating technical specifications
RESPONSIBILITIES
- Creating high-level architecture and technical requirements based on the business ones
- Creating “Proof of Concepts” and prototypes on the pre-sale and early development phases
- Supporting development process in situations associated with the emergence of unresolved technological issues
- Analyzing technology trends and their benefits for the company and end customers
- Building internal tools for automating everyday activities, increasing work efficiency and improving management processes
- Writing tech specifications
- Keeping code quality at a high level
BEFORE WE CONSIDER YOU, PLEASE ANSWER 2 QUESTIONS:
- What kind of projects do you prefer to work on? What motivates you in your work and what can demotivate you?
- Technical Specification Objective: To implement an algorithm to find the equilibrium index in an array of integers. Description: The equilibrium index in an array is defined as the index at which the sum of elements to the left equals the sum of elements to the right. In other words, it is the index where the sum of elements in the array before that index equals the sum of elements after it. For example, in the array 1, 7, 3, 6, 5, 6, the equilibrium index is 3, because the sum of elements to the left of index 3 (1 + 7 + 3 is 11) equals the sum of elements to the right of index 3 (5 + 6 is 11). If no equilibrium index is found, the function should return -1.