This job post is closed and the position is probably filled. Please do not apply. Work for Splitgraph and want to re-open this job? Use the edit link in the email when you posted the job!
# We're building the Data Platform of the Future\nJoin us if you want to rethink the way organizations interact with data. We are a **developer-first company**, committed to building around open protocols and delivering the best experience possible for data consumers and publishers.\n\nSplitgraph is a **seed-stage, venture-funded startup hiring its initial team**. The two co-founders are looking to grow the team to five or six people. This is an opportunity to make a big impact on an agile team while working closely with the\nfounders.\n\nSplitgraph is a **remote-first organization**. The founders are based in the UK, and the company is incorporated in both USA and UK. Candidates are welcome to apply from any geography. We want to work with the most talented, thoughtful and productive engineers in the world.\n# Open Positions\n**Data Engineers welcome!** The job titles have "Software Engineer" in them, but at Splitgraph there's a lot of overlap \nbetween data and software engineering. We welcome candidates from all engineering backgrounds.\n\n[Senior Software Engineer - Backend (mainly Python)](https://www.notion.so/splitgraph/Senior-Software-Engineer-Backend-2a2f9e278ba347069bf2566950857250)\n\n[Senior Software Engineer - Frontend (mainly TypeScript)](https://www.notion.so/splitgraph/Senior-Software-Engineer-Frontend-6342cd76b0df483a9fd2ab6818070456)\n\nโ [**Apply to Job**](https://4o99daw6ffu.typeform.com/to/ePkNQiDp) โ (same form for both positions)\n\n# What is Splitgraph?\n## **Open Source Toolkit**\n\n[Our open-source product, sgr,](https://www.github.com/splitgraph/splitgraph) is a tool for building, versioning and querying reproducible datasets. It's inspired by Docker and Git, so it feels familiar. And it's powered by PostgreSQL, so it works seamlessly with existing tools in the Postgres ecosystem. Use Splitgraph to package your data into self-contained\ndata images that you can share with other Splitgraph instances.\n\n## **Splitgraph Cloud**\n\nSplitgraph Cloud is a platform for data cataloging, integration and governance. The user can upload data, connect live databases, or "push" versioned snapshots to it. We give them a unified SQL interface to query that data, a catalog to discover and share it, and tools to build/push/pull it.\n\n# Learn More About Us\n\n- Listen to our interview on the [Software Engineering Daily podcast](https://softwareengineeringdaily.com/2020/11/06/splitgraph-data-catalog-and-proxy-with-miles-richardson/)\n\n- Watch our co-founder Artjoms present [Splitgraph at the Bay Area ClickHouse meetup](https://www.youtube.com/watch?v=44CDs7hJTho)\n\n- Read our HN/Reddit posts ([one](https://news.ycombinator.com/item?id=24233948) [two](https://news.ycombinator.com/item?id=23769420) [three](https://news.ycombinator.com/item?id=23627066) [four](https://old.reddit.com/r/datasets/comments/icty0r/we_made_40k_open_government_datasets_queryable/))\n\n- [Read our blog](https://www.splitgraph.com/blog)\n\n- Read the slides from our early (2018) presentations: ["Docker for Data"](https://www.slideshare.net/splitgraph/splitgraph-docker-for-data-119112722), [AHL Meetup](https://www.slideshare.net/splitgraph/splitgraph-ahl-talk)\n\n- [Follow us on Twitter](https://ww.twitter.com/splitgraph)\n\n- [Find us on GitHub](https://www.github.com/splitgraph)\n\n- [Chat with us in our community Discord](https://discord.gg/eFEFRKm)\n\n- Explore the [public data catalog](https://www.splitgraph.com/explore) where we index 40k+ datasets\n\n# How We Work: What's our stack look like?\n\nWe prioritize developer experience and productivity. We resent repetition and inefficiency, and we never hesitate to automate the things that cause us friction. Here's a sampling of the languages and tools we work with:\n\n- **[Python](https://www.python.org/) for the backend.** Our [core open source](https://www.github.com/splitgraph/splitgraph) tech is written in Python (with [a bit of C](https://github.com/splitgraph/Multicorn) to make it more interesting), as well as most of our backend code. The Python code powers everything from authentication routines to database migrations. We use the latest version and tools like [pytest](https://docs.pytest.org/en/stable/), [mypy](https://github.com/python/mypy) and [Poetry](https://python-poetry.org/) to help us write quality software.\n\n- **[TypeScript](https://www.typescriptlang.org/) for the web stack.** We use TypeScript throughout our web stack. On the frontend we use [React](https://reactjs.org/) with [next.js](https://nextjs.org/). For data fetching we use [apollo-client](https://www.apollographql.com/docs/react/) with fully-typed GraphQL queries auto-generated by [graphql-codegen](https://graphql-code-generator.com/) based on the schema that [Postgraphile](https://www.graphile.org/postgraphile) creates by introspecting the database.\n\n- [**PostgreSQL](https://www.postgresql.org/) for the database, because of course.** Splitgraph is a company built around Postgres, so of course we are going to use it for our own database. In fact, we actually have three databases. We have `auth-db` for storing sensitive data, `registry-db` which acts as a [Splitgraph peer](https://www.splitgraph.com/docs/publishing-data/push-data) so users can push Splitgraph images to it using [sgr](https://www.github.com/splitgraph/splitgraph), and `cloud-db` where we store the schemata that Postgraphile uses to autogenerate the GraphQL server.\n\n- [**PL/pgSQL](https://www.postgresql.org/docs/current/plpgsql.html) and [PL/Python](https://www.postgresql.org/docs/current/plpython.html) for stored procedures.** We define a lot of core business logic directly in the database as stored procedures, which are ultimately [exposed by Postgraphile as GraphQL endpoints](https://www.graphile.org/postgraphile/functions/). We find this to be a surprisingly productive way of developing, as it eliminates the need for manually maintaining an API layer between data and code. It presents challenges for testing and maintainability, but we've built tools to help with database migrations and rollbacks, and an end-to-end testing framework that exercises the database routines.\n\n- [**PostgREST](https://postgrest.org/en/v7.0.0/) for auto-generating a REST API for every repository.** We use this excellent library (written in [Haskell](https://www.haskell.org/)) to expose an [OpenAPI](https://github.com/OAI/OpenAPI-Specification)-compatible REST API for every repository on Splitgraph ([example](http://splitgraph.com/mildbyte/complex_dataset/latest/-/api-schema)).\n\n- **Lua ([luajit](https://luajit.org/luajit.html) 5.x), C, and [embedded Python](https://docs.python.org/3/extending/embedding.html) for scripting [PgBouncer](https://www.pgbouncer.org/).** Our main product, the "data delivery network", is a single SQL endpoint where users can query any data on Splitgraph. Really it's a layer of PgBouncer instances orchestrating temporary Postgres databases and proxying queries to them, where we load and cache the data necessary to respond to a query. We've added scripting capabilities to enable things like query rewriting, column masking, authentication, ACL, orchestration, firewalling, etc.\n\n- **[Docker](https://www.docker.com/) for packaging services.** Our CI pipeline builds every commit into about a dozen different Docker images, one for each of our services. A production instance of Splitgraph can be running over 60 different containers (including replicas).\n\n- **[Makefile](https://www.gnu.org/software/make/manual/make.html) and** [docker-compose](https://docs.docker.com/compose/) **for development.** We use [a highly optimized Makefile](https://www.splitgraph.com/blog/makefile) and `docker-compose` so that developers can easily spin-up a stack that mimics production in every way, while keeping it easy to hot reload, run tests, or add new services or configuration.\n\n- **[Nomad](https://www.nomadproject.io/) for deployment and [Terraform](https://www.terraform.io/) for provisioning.** We use Nomad to manage deployments and background tasks. Along with Terraform, we're able to spin up a Splitgraph cluster on AWS, GCP, Scaleway or Azure in just a few minutes.\n\n- **[Airflow](https://airflow.apache.org/) for job orchestration.** We use it to run and monitor jobs that maintain our catalog of [40,000 public datasets](https://www.splitgraph.com/blog/40k-sql-datasets), or ingest other public data into Splitgraph.\n\n- **[Grafana](https://grafana.com/), [Prometheus](https://prometheus.io/), [ElasticSearch](https://www.elastic.co/), and [Kibana](https://www.elastic.co/kibana) for monitoring and metrics.** We believe it's important to self-host fundamental infrastructure like our monitoring stack. We use this to keep tabs on important metrics and the health of all Splitgraph deployments.\n\n- **[Mattermost](https://mattermost.com/) for company chat.** We think it's absolutely bonkers to pay a company like Slack to hold your company communication hostage. That's why we self-host an instance of Mattermost for our internal chat. And of course, we can deploy it and update it with Terraform.\n\n- **[Matomo](https://matomo.org/) for web analytics.** We take privacy seriously, and we try to avoid including any third party scripts on our web pages (currently we include zero). We self-host our analytics because we don't want to share our user data with third parties.\n\n- **[Metabase](https://www.metabase.com/) and [Splitgraph](https://www.splitgraph.com) for BI and [dogfooding](https://en.wikipedia.org/wiki/Eating_your_own_dog_food)**. We use Metabase as a frontend to a Splitgraph instance that connects to Postgres (our internal databases), MySQL (Matomo's database), and ElasticSearch (where we store logs and DDN analytics). We use this as a chance to dogfood our software and produce fancy charts.\n\n- **The occasional best-of-breed SaaS services** **for organization.** As a privacy-conscious, independent-minded company, we try to avoid SaaS services as much as we can. But we still find ourselves unable to resist some of the better products out there. For organization we use tools like [Zoom](https://www.zoom.us) for video calls, [Miro](https://miro.com/) for brainstorming, [Notion](https://www.notion.so) for documentation (you're on it!), [Airtable for workflow management](https://airtable.com/), [PivotalTracker](https://www.pivotaltracker.com/) for ticketing, and [GitLab for dev-ops and CI](https://about.gitlab.com/).\n\n- **Other fun technologies** including [HAProxy](http://www.haproxy.org/), [OpenResty](https://openresty.org/en/), [Varnish](https://varnish-cache.org/), and bash. We don't touch them much because they do their job well and rarely break.\n\n# Life at Splitgraph\n**We are a young company building the initial team.** As an early contributor, you'll have a chance to shape our initial mission, growth and company values.\n\n**We think that remote work is the future**, and that's why we're building a remote-first organization. We chat on [Mattermost](https://mattermost.com/) and have video calls on Zoom. We brainstorm with [Miro](https://miro.com/) and organize with [Notion](https://www.notion.so).\n\n**We try not to take ourselves too seriously**, but we are goal-oriented with an ambitious mission.\n\n**We believe that as a small company, we can out-compete incumbents** by thinking from first principles about how organizations interact with data. We are very competitive.\n\n# Benefits\n- Fully remote\n\n- Flexible working hours\n\n- Generous compensation and equity package\n\n- Opportunity to make high-impact contributions to an agile team\n\n# How to Apply? Questions?\n[**Complete the job application**](https://4o99daw6ffu.typeform.com/to/ePkNQiDp)\n\nIf you have any questions or concerns, feel free to email us at [[email protected]](mailto:[email protected]) \n\nPlease mention the words **DESERT SPELL GOWN** when applying to show you read the job post completely (#RMjE2LjczLjIxNi4xNDY=). This is a feature to avoid spam applicants. Companies can search these words to find applicants that read this and see they're human.\n\n \n\n#Location\nWorldwide
# How do you apply?\n\nThis job post has been closed by the poster, which means they probably have enough applicants now. Please do not apply.
This job post is closed and the position is probably filled. Please do not apply. Work for MapLarge and want to re-open this job? Use the edit link in the email when you posted the job!
๐ค Closed by robot after apply link errored w/ code 404 3 years ago
\nEnjoy solving problems and automation? \n\nWe are looking for a DevOps or Software Automation expert to re-imagine MapLarge’s continuous integration process. We have a growing team of developers and a world class product which needs flexible and fast infrastructure to facilitate development and high quality customer deliverables.\n\nWe’re looking for an experienced programmer with deep expertise in operational IT disciplines such as Security, Infrastructure, Networking, etc. Of particular interest are skills in one or more of the following areas:\n\n\n* Containerization - Docker & Kubernetes\n\n* Enterprise Single Sign On, particularly OAuth, SAML, and Active Directory \n\n* Network security & firewall\n\n* Continuous Integration / Continuous Delivery (TeamCity, Azure DevOps preferred)\n\n* IT Vendor & data center operations management\n\n* Backup & Restore operations \n\n* Infrastructure as code - Terraform, Ansible, Chef, Puppet, etc\n\n\n\n\nWhat We Do\n\nThe team at MapLarge builds cutting edge products for data analytics and visualization to make us safer, more productive, and more efficient. The Maplarge API provides real time geospatial analytics for over 15 billion location events per day and trillions of historical events. Analysts using our geospatial visualization capability can instantly visualize and publish for data discovery and model testing on any desktop, mobile or tablet device. \n\nWho We Need\n\nDevOps / Software Automation Developer - Our ideal candidate has experience with all aspects of building, testing, deploying and releasing software. Ideally they have a knack for C# and/or Javascript which is what most of our existing tests and tools are built in. They are strong independent workers good at designing and implementing practical solutions that are “good enough” without getting bogged down in the pursuit of perfection. We are a fully remote company and our employees must be capable of handling all aspects of a project from helping define requirements to design, execution and testing. We need high energy people who enjoy working quickly with a fast paced team. \n\nCultural Fit - While we hire all kinds of people and invent roles to fit them, there are three key traits we require of every team member that really define our team. \n\n* Fun to Work With - Life is short and work should be fun. \n\n* Extremely Smart - We work on cutting edge hard problems and we need people who can both architect and build these systems at the same time while working with a highly intelligent peer group. \n\n* Passionate Engineers - We need people who really love their work and exhibit the energy and creativity that comes from being fully engaged in what you do.\n\n\n\nRequirements:\n\n\n* US Person based anywhere in the US (100% remote allowed but no offshore)\n\n* 5 Years work experience\n\n* Experience with continuous integration, cloud compute, virtualization, containers, .Net Core and Standard builds, source control and bug tracking\n\n* Experienced solving challenging problems\n\n* Strong Software Development Background\n\n\n \n\n#Salary and compensation\n
No salary data published by company so we estimated salary based on similar jobs related to DevOps, C, C Plus Plus, Senior, Developer, Digital Nomad, JavaScript, Cloud, API and Mobile jobs that are similar:\n\n
$70,000 — $120,000/year\n
\n\n#Benefits\n
๐ฐ 401(k)\n\n๐ Distributed team\n\nโฐ Async\n\n๐ค Vision insurance\n\n๐ฆท Dental insurance\n\n๐ Medical insurance\n\n๐ Unlimited vacation\n\n๐ Paid time off\n\n๐ 4 day workweek\n\n๐ฐ 401k matching\n\n๐ Company retreats\n\n๐ฌ Coworking budget\n\n๐ Learning budget\n\n๐ช Free gym membership\n\n๐ง Mental wellness budget\n\n๐ฅ Home office budget\n\n๐ฅง Pay in crypto\n\n๐ฅธ Pseudonymous\n\n๐ฐ Profit sharing\n\n๐ฐ Equity compensation\n\nโฌ๏ธ No whiteboard interview\n\n๐ No monitoring system\n\n๐ซ No politics at work\n\n๐ We hire old (and young)\n\n
# How do you apply?\n\nThis job post has been closed by the poster, which means they probably have enough applicants now. Please do not apply.
This job post is closed and the position is probably filled. Please do not apply. Work for IDS International and want to re-open this job? Use the edit link in the email when you posted the job!
๐ค Closed by robot after apply link errored w/ code 404 3 years ago
\nC#/.NET Software Engineer\n\nWhy IDS?\n\nToday’s virtual training environments are segmented and simplistic—the opposite of the real-world’s complex and integrated cyber battlefield. When even the most subtle input can influence every other facet of an operation, the one-dimensional training provided to our armed forces is not only outdated, it flat-out fails to equip them to outpace the operational tempo of the rapidly-evolving multi-domain battlefield. In the virtual arena, new threats emerge every day. IDS provides the tools for warfighters and cyber operators not just to prepare for them, but to anticipate the risks and to be ready for them when they arrive.\n\nSocial Media Environment and Internet Replication (SMEIR™), a product of IDS International Government Services, is a digital training solution that provides a full-range, free-play, immersive, realistic and scalable operational practice environment in which warfighters simultaneously train on full-spectrum cyberspace operations and social media analytics during integrated and multi-dimensional exercises.\n\nIDS International is seeking a Senior Software Engineer to join our growing team and build out the next generation of our internet simulation platform, called SMEIR. Our extensive software suite is deployed into cyber-training exercises in various environments. The Senior .Net/C# Software Engineer will further develop our .NET and Node.js based command and control software. Our engineering team uses a modified Scrum/Agile process. Candidate must be at ease working in an agile environment with little supervision. We use Slack, Jira and Git for project and software management. Our main office is in Arlington, VA with remote opportunities available for the right candidate. \n\nRequired Qualifications:\n\n\n* Minimum 4 years professional experience with:\n\n\n* .NET\n\n* .NET Core 2.x WebAPI\n\n* C# 7+\n\n* RESTful API Design / Development\n\n* MongoDB.\n\n\n\n\n\n* Familiarity with Microservice Architecture.\n\n\n\n\nPreferred Qualifications:\n\n\n* Experience with:\n\n\n* ECMA (JavaScript) / Node.js / Meteor.js / React.js\n\n* HTML/CSS\n\n* Docker\n\n* Kubernetes.\n\n\n\n\n\n* Experience with Scrum/Agile development methodologies.\n\n* Dev/Ops Experience with Linux, BASH, Python.\n\n* Undergraduate degree in Computer Science or related field. \n\n\n\n\nIDS’s competitive benefit package starts you off out on the right foot. Eligibility begins day one.\n\n\n* Health and Well-being - 100% of employee medical and other insurance premiums are paid by IDS.\n\n* Financial Future – 401(k) with an industry leading match and no waiting period. You are fully vested in all contributions from the start.\n\n* Paid Leave - Generous time off accruals for you to take paid leave, totaling five weeks.\n\n* Professional Development – networking opportunities, informal mentoring, education reimbursement and access to thousands of online professional development resources.\n\n* Casual, fun, and supportive work environment with all the tools and amenities you need to thrive.\n\n\n\n\nMust be an effective communicator both verbally and in writing. Most positions require ability to work on a desktop or laptop computer for extended periods of time. Computer activities include reading, reviewing and analyzing information, as well as providing recommendations, summaries, and reports in written or verbal format. Additionally, positions require ability to sit at a workstation for extended periods; use hand(s) to handle or feel objects, tools, or controls; reach with hands and arms; as well as speak and hear.\n\nEmployee may be required to occasionally lift and/or move moderate amounts of weight, typically less than 20 pounds. Regular and predictable attendance is essential.\n\nQualified applicants will receive consideration for employment without regard to race, color, religion, sex, national origin, sexual orientation, gender identity, disability or protected veteran status, and any other characteristic protected by federal, state, and local law.\n\nIf you are unable to apply through the portal and need to speak to someone about necessary accommodations to apply, please email [email protected] and we will follow up with you. Do not submit resumes and applications through this ema \n\n#Salary and compensation\n
No salary data published by company so we estimated salary based on similar jobs related to C, C Plus Plus, Engineer, Developer, Digital Nomad, Jira, Education, Git, API, Senior and Medical jobs that are similar:\n\n
$70,000 — $120,000/year\n
\n\n#Benefits\n
๐ฐ 401(k)\n\n๐ Distributed team\n\nโฐ Async\n\n๐ค Vision insurance\n\n๐ฆท Dental insurance\n\n๐ Medical insurance\n\n๐ Unlimited vacation\n\n๐ Paid time off\n\n๐ 4 day workweek\n\n๐ฐ 401k matching\n\n๐ Company retreats\n\n๐ฌ Coworking budget\n\n๐ Learning budget\n\n๐ช Free gym membership\n\n๐ง Mental wellness budget\n\n๐ฅ Home office budget\n\n๐ฅง Pay in crypto\n\n๐ฅธ Pseudonymous\n\n๐ฐ Profit sharing\n\n๐ฐ Equity compensation\n\nโฌ๏ธ No whiteboard interview\n\n๐ No monitoring system\n\n๐ซ No politics at work\n\n๐ We hire old (and young)\n\n
# How do you apply?\n\nThis job post has been closed by the poster, which means they probably have enough applicants now. Please do not apply.
This job post is closed and the position is probably filled. Please do not apply. Work for MapLarge and want to re-open this job? Use the edit link in the email when you posted the job!
๐ค Closed by robot after apply link errored w/ code 404 3 years ago
\n100% Remote: This role allows working remotely 100% of the time from anywhere in the US. Workers must be authorized to work in the US (No Non US Applicants Please). \n\nWhat We Do\n\nThe team at MapLarge builds cutting edge products for data analytics and visualization to make us safer, more productive, and more efficient. The Maplarge API provides real time geospatial analytics for over 15 billion location events per day and trillions of historical events. Analysts using our geospatial visualization capability can instantly visualize and publish for data discovery and model testing on any desktop, mobile or tablet device.\n\nWho We Need\n\nCultural Fit - While we hire all kinds of people and invent roles to fit them, there are three key traits we require of every team member that really define our team.\n\n* Fun to Work With - Life is short and work should be fun. \n\n* Extremely Smart - We work on cutting edge hard problems and we need people who can both architect and code these systems at the same time while working with a highly intelligent peer group. \n\n* Passionate Engineers - We need people who really love programming and exhibit the energy and creativity that comes from being fully engaged in what you do.\n\n\n\nSkills & Requirements\n\nTypes of Roles\n\nWe need talented people to help add cool new features to our platform. Below are the general categories of tasks we are working on, but often people straddle multiple areas so take them more as the general "gist" of what you might do with us. We are looking for smart, hard working, fun people and we will invent the right role to fit them. The key trait we are looking for is people who like to both architect/design and write the code for complex systems. \n\n(1) Client Side - Interactive Visuals: We maintain a JavaScript API for for interactive Data Visualization using our high performance web services. We need people both to help add new dynamic animated UI components and other features to the JS API. We also need people to build data driven visuals for our demo gallery if you are artistically or data analysis inclined. Enjoy working with Knockout, Angular, D3.js, HTML5? Check our our galleries to see the kind of stuff you will be working on http://maplarge.com/demos\n\n(2) Full Stack Web Services - Full stack developers who are comfortable working on both client and server side to produce high performance applications powered by scalable web services are the backbone of our team. We run c# in both .net and mono server side and also maintain a flexible client side API with a large library of reusable components. We host and run large deployments that sometimes scale to thousands of computers for scientific/industrial/gov users and in a typical day process data over 15 billion records from 110 million streaming data sources. \n\n(3) Algorithm / Core Database Development - We built our own in memory database and distributed data analytics pipeline from the ground up with funding from DARPA, and we have a team of really talented researchers working on Pattern analysis, Streaming analytics, Spatial queries and Network graph functions that power our visual engines. We are always looking for practical people who love writing highly optimized code that straddles the line between research and software development. We don't usually publish scientific papers, but we are right out on the edge pulling algorithms out of the latest research papers finding really fast "good enough" approaches that let us tease interesting patterns out of data without getting lost in "science experiment land"\n\nRequirements:\n\n\n* US Person based anywhere in the US (100% remote allowed but no off shore)\n\n* 5 Years work experience as a programmer\n\n* Highly Comfortable with C# and Visual Studio\n\n* Experienced with Web Development & JavaScript\n\n\n \n\n#Salary and compensation\n
No salary data published by company so we estimated salary based on similar jobs related to C, C Plus Plus, Senior, Engineer, Web Developer, Architecture, Developer, Digital Nomad, JavaScript, API and Mobile jobs that are similar:\n\n
$70,000 — $120,000/year\n
\n\n#Benefits\n
๐ฐ 401(k)\n\n๐ Distributed team\n\nโฐ Async\n\n๐ค Vision insurance\n\n๐ฆท Dental insurance\n\n๐ Medical insurance\n\n๐ Unlimited vacation\n\n๐ Paid time off\n\n๐ 4 day workweek\n\n๐ฐ 401k matching\n\n๐ Company retreats\n\n๐ฌ Coworking budget\n\n๐ Learning budget\n\n๐ช Free gym membership\n\n๐ง Mental wellness budget\n\n๐ฅ Home office budget\n\n๐ฅง Pay in crypto\n\n๐ฅธ Pseudonymous\n\n๐ฐ Profit sharing\n\n๐ฐ Equity compensation\n\nโฌ๏ธ No whiteboard interview\n\n๐ No monitoring system\n\n๐ซ No politics at work\n\n๐ We hire old (and young)\n\n
# How do you apply?\n\nThis job post has been closed by the poster, which means they probably have enough applicants now. Please do not apply.
This job post is closed and the position is probably filled. Please do not apply. Work for MapLarge and want to re-open this job? Use the edit link in the email when you posted the job!
๐ค Closed by robot after apply link errored w/ code 404 3 years ago
\n100% Remote: This role allows working remotely 100% of the time from anywhere in the US. Workers must be authorized to work in the US (No Non US Applicants Please). \n\nWhat We Do\n\nThe team at MapLarge builds cutting edge products for data analytics and visualization to make us safer, more productive, and more efficient. The Maplarge API provides real time geospatial analytics for over 15 billion location events per day and trillions of historical events. Analysts using our geospatial visualization capability can instantly visualize and publish for data discovery and model testing on any desktop, mobile or tablet device.\n\nWho We Need\n\nCultural Fit - While we hire all kinds of people and invent roles to fit them, there are three key traits we require of every team member that really define our team.\n\n* Fun to Work With - Life is short and work should be fun. \n\n* Extremely Smart - We work on cutting edge hard problems and we need people who can both architect and code these systems at the same time while working with a highly intelligent peer group. \n\n* Passionate Engineers - We need people who really love programming and exhibit the energy and creativity that comes from being fully engaged in what you do.\n\n\n\nSkills & Requirements\n\nTypes of Roles\n\nWe need talented people to help add cool new features to our platform. Below are the general categories of tasks we are working on, but often people straddle multiple areas so take them more as the general "gist" of what you might do with us. We are looking for smart, hard working, fun people and we will invent the right role to fit them. The key trait we are looking for is people who like to both architect/design and write the code for complex systems. \n\n(1) Client Side - Interactive Visuals: We maintain a JavaScript API for for interactive Data Visualization using our high performance web services. We need people both to help add new dynamic animated UI components and other features to the JS API. We also need people to build data driven visuals for our demo gallery if you are artistically or data analysis inclined. Enjoy working with Knockout, Angular, D3.js, HTML5? Check our our galleries to see the kind of stuff you will be working on http://maplarge.com/demos\n\n(2) Full Stack Web Services - Full stack developers who are comfortable working on both client and server side to produce high performance applications powered by scalable web services are the backbone of our team. We run c# in both .net and mono server side and also maintain a flexible client side API with a large library of reusable components. We host and run large deployments that sometimes scale to thousands of computers for scientific/industrial/gov users and in a typical day process data over 15 billion records from 110 million streaming data sources. \n\n(3) Algorithm / Core Database Development - We built our own in memory database and distributed data analytics pipeline from the ground up with funding from DARPA, and we have a team of really talented researchers working on Pattern analysis, Streaming analytics, Spatial queries and Network graph functions that power our visual engines. We are always looking for practical people who love writing highly optimized code that straddles the line between research and software development. We don't usually publish scientific papers, but we are right out on the edge pulling algorithms out of the latest research papers finding really fast "good enough" approaches that let us tease interesting patterns out of data without getting lost in "science experiment land"\n\nRequirements:\n\n\n* US Person based anywhere in the US (100% remote allowed but no off shore)\n\n* 5 Years work experience as a programmer\n\n* Highly Comfortable with C# and Visual Studio\n\n* Experienced with Web Development & JavaScript\n\n\n \n\n#Salary and compensation\n
No salary data published by company so we estimated salary based on similar jobs related to C, C Plus Plus, Senior, Engineer, Web Developer, Architecture, Developer, Digital Nomad, JavaScript, API and Mobile jobs that are similar:\n\n
$70,000 — $120,000/year\n
\n\n#Benefits\n
๐ฐ 401(k)\n\n๐ Distributed team\n\nโฐ Async\n\n๐ค Vision insurance\n\n๐ฆท Dental insurance\n\n๐ Medical insurance\n\n๐ Unlimited vacation\n\n๐ Paid time off\n\n๐ 4 day workweek\n\n๐ฐ 401k matching\n\n๐ Company retreats\n\n๐ฌ Coworking budget\n\n๐ Learning budget\n\n๐ช Free gym membership\n\n๐ง Mental wellness budget\n\n๐ฅ Home office budget\n\n๐ฅง Pay in crypto\n\n๐ฅธ Pseudonymous\n\n๐ฐ Profit sharing\n\n๐ฐ Equity compensation\n\nโฌ๏ธ No whiteboard interview\n\n๐ No monitoring system\n\n๐ซ No politics at work\n\n๐ We hire old (and young)\n\n
# How do you apply?\n\nThis job post has been closed by the poster, which means they probably have enough applicants now. Please do not apply.
This job post is closed and the position is probably filled. Please do not apply. Work for MapLarge and want to re-open this job? Use the edit link in the email when you posted the job!
\nEnjoy solving problems and automation? \n\nWe are looking for a DevOps or Software Automation expert to re-imagine MapLarge’s continuous integration process. We have a growing team of developers and a world class product which needs flexible and fast infrastructure to facilitate development and high quality customer deliverables.\n\nWhat We Do\n\nThe team at MapLarge builds cutting edge products for data analytics and visualization to make us safer, more productive, and more efficient. The Maplarge API provides real time geospatial analytics for over 15 billion location events per day and trillions of historical events. Analysts using our geospatial visualization capability can instantly visualize and publish for data discovery and model testing on any desktop, mobile or tablet device. \n\n\nWho We Need\n\nDevOps / Software Automation Developer - Our ideal candidate has experience with all aspects of building, testing, deploying and releasing software. Ideally they have a knack for C# and/or Javascript which is what most of our existing tests and tools are built in. They are strong independent workers good at designing and implementing practical solutions that are “good enough” without getting bogged down in the pursuit of perfection. We are a fully remote company and our employees must be capable of handling all aspects of a project from helping define requirements to design, execution and testing. We need high energy people who enjoy working quickly with a fast paced team. \n\n\nCultural Fit - While we hire all kinds of people and invent roles to fit them, there are three key traits we require of every team member that really define our team. \n\n* Fun to Work With - Life is short and work should be fun. \n\n* Extremely Smart - We work on cutting edge hard problems and we need people who can both architect and build these systems at the same time while working with a highly intelligent peer group. \n\n* Passionate Engineers - We need people who really love their work and exhibit the energy and creativity that comes from being fully engaged in what you do.\n\n\n\nRequirements:\n\n\n* US Person based anywhere in the US (100% remote allowed but no offshore)\n\n* 5 Years work experience\n\n* Experience with continuous integration, cloud compute, virtualization, containers, .Net Core and Standard builds, source control and bug tracking\n\n* Experienced solving challenging problems\n\n* Strong Software Development Background\n\n\n \n\n#Salary and compensation\n
No salary data published by company so we estimated salary based on similar jobs related to DevOps, C, C Plus Plus, Senior, Developer, Digital Nomad, JavaScript, Cloud, API and Mobile jobs that are similar:\n\n
$70,000 — $120,000/year\n
\n\n#Benefits\n
๐ฐ 401(k)\n\n๐ Distributed team\n\nโฐ Async\n\n๐ค Vision insurance\n\n๐ฆท Dental insurance\n\n๐ Medical insurance\n\n๐ Unlimited vacation\n\n๐ Paid time off\n\n๐ 4 day workweek\n\n๐ฐ 401k matching\n\n๐ Company retreats\n\n๐ฌ Coworking budget\n\n๐ Learning budget\n\n๐ช Free gym membership\n\n๐ง Mental wellness budget\n\n๐ฅ Home office budget\n\n๐ฅง Pay in crypto\n\n๐ฅธ Pseudonymous\n\n๐ฐ Profit sharing\n\n๐ฐ Equity compensation\n\nโฌ๏ธ No whiteboard interview\n\n๐ No monitoring system\n\n๐ซ No politics at work\n\n๐ We hire old (and young)\n\n
# How do you apply?\n\nThis job post has been closed by the poster, which means they probably have enough applicants now. Please do not apply.
This job post is closed and the position is probably filled. Please do not apply. Work for MapLarge and want to re-open this job? Use the edit link in the email when you posted the job!
\nWhat We Do\n\nThe team at MapLarge builds cutting edge products for data analytics and visualization to make us safer, more productive, and more efficient. The Maplarge API provides real time geospatial analytics for over 15 billion location events per day and trillions of historical events. Analysts using our geospatial visualization capability can instantly visualize and publish for data discovery and model testing on any desktop, mobile or tablet device.\n\n\nWho We Need\n\nCultural Fit - While we hire all kinds of people and invent roles to fit them, there are three key traits we require of every team member that really define our team.\n\n* Fun to Work With - Life is short and work should be fun. \n\n* Extremely Smart - We work on cutting edge hard problems and we need people who can both architect and code these systems at the same time while working with a highly intelligent peer group. \n\n* Passionate Engineers - We need people who really love programming and exhibit the energy and creativity that comes from being fully engaged in what you do.\n\n \n\n#Salary and compensation\n
No salary data published by company so we estimated salary based on similar jobs related to C, C Plus Plus, Senior, Engineer, Web Developer, Architecture, Developer, Digital Nomad, API and Mobile jobs that are similar:\n\n
$70,000 — $120,000/year\n
\n\n#Benefits\n
๐ฐ 401(k)\n\n๐ Distributed team\n\nโฐ Async\n\n๐ค Vision insurance\n\n๐ฆท Dental insurance\n\n๐ Medical insurance\n\n๐ Unlimited vacation\n\n๐ Paid time off\n\n๐ 4 day workweek\n\n๐ฐ 401k matching\n\n๐ Company retreats\n\n๐ฌ Coworking budget\n\n๐ Learning budget\n\n๐ช Free gym membership\n\n๐ง Mental wellness budget\n\n๐ฅ Home office budget\n\n๐ฅง Pay in crypto\n\n๐ฅธ Pseudonymous\n\n๐ฐ Profit sharing\n\n๐ฐ Equity compensation\n\nโฌ๏ธ No whiteboard interview\n\n๐ No monitoring system\n\n๐ซ No politics at work\n\n๐ We hire old (and young)\n\n
# How do you apply?\n\nThis job post has been closed by the poster, which means they probably have enough applicants now. Please do not apply.
This job post is closed and the position is probably filled. Please do not apply. Work for MapLarge and want to re-open this job? Use the edit link in the email when you posted the job!
\nWhat We Do\n\nThe team at MapLarge builds cutting edge products for data analytics and visualization to make us safer, more productive, and more efficient. The Maplarge API provides real time geospatial analytics for over 15 billion location events per day and trillions of historical events. Analysts using our geospatial visualization capability can instantly visualize and publish for data discovery and model testing on any desktop, mobile or tablet device.\n\n\nWho We Need\n\nCultural Fit - While we hire all kinds of people and invent roles to fit them, there are three key traits we require of every team member that really define our team.\n\n* Fun to Work With - Life is short and work should be fun. \n\n* Extremely Smart - We work on cutting edge hard problems and we need people who can both architect and code these systems at the same time while working with a highly intelligent peer group. \n\n* Passionate Engineers - We need people who really love programming and exhibit the energy and creativity that comes from being fully engaged in what you do.\n\n \n\n#Salary and compensation\n
No salary data published by company so we estimated salary based on similar jobs related to C, C Plus Plus, Senior, Engineer, Web Developer, Architecture, Developer, Digital Nomad, API and Mobile jobs that are similar:\n\n
$70,000 — $120,000/year\n
\n\n#Benefits\n
๐ฐ 401(k)\n\n๐ Distributed team\n\nโฐ Async\n\n๐ค Vision insurance\n\n๐ฆท Dental insurance\n\n๐ Medical insurance\n\n๐ Unlimited vacation\n\n๐ Paid time off\n\n๐ 4 day workweek\n\n๐ฐ 401k matching\n\n๐ Company retreats\n\n๐ฌ Coworking budget\n\n๐ Learning budget\n\n๐ช Free gym membership\n\n๐ง Mental wellness budget\n\n๐ฅ Home office budget\n\n๐ฅง Pay in crypto\n\n๐ฅธ Pseudonymous\n\n๐ฐ Profit sharing\n\n๐ฐ Equity compensation\n\nโฌ๏ธ No whiteboard interview\n\n๐ No monitoring system\n\n๐ซ No politics at work\n\n๐ We hire old (and young)\n\n
# How do you apply?\n\nThis job post has been closed by the poster, which means they probably have enough applicants now. Please do not apply.