diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..0f22e09 --- /dev/null +++ b/.env.example @@ -0,0 +1,19 @@ +NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY= +CLERK_SECRET_KEY= + +CLERK_WEBHOOK_SECRET= + +NEXT_PUBLIC_CLERK_SIGN_IN_URL=/sign-in +NEXT_PUBLIC_CLERK_SIGN_UP_URL=/sign-up +NEXT_PUBLIC_CLERK_AFTER_SIGN_IN_URL=/ +NEXT_PUBLIC_CLERK_AFTER_SIGN_UP_URL=/onboarding + +NEXT_PUBLIC_TINY_MCE_API_KEY= + +MONGODB_URL= + +NEXT_PUBLIC_SERVER_URL= + +OPENAI_API_KEY= + +RAPID_API_KEY= diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..c59ae31 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Liron Abutbul + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index c403366..66f0a8e 100644 --- a/README.md +++ b/README.md @@ -1,36 +1,419 @@ -This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). +# Next.js 14 DevOverflow -## Getting Started + -First, run the development server: +[![Latest release](https://img.shields.io/github/v/release/ladunjexa/nextjs14-devoverflow?label=Latest%20release&style=social)](https://github.com/ladunjexa/nextjs14-devoverflow/releases/tag/v0.1.0) +[![Stars](https://img.shields.io/github/stars/ladunjexa/nextjs14-devoverflow?style=social)](https://github.com/ladunjexa/nextjs14-devoverflow/stargazers) +[![Fork](https://img.shields.io/github/forks/ladunjexa/nextjs14-devoverflow?style=social)](https://github.com/ladunjexa/nextjs14-devoverflow/forks) +[![GitHub commits](https://img.shields.io/github/commit-activity/t/ladunjexa/nextjs14-devoverflow?style=social&logo=github)](https://github.com/ladunjexa/nextjs14-devoverflow/commits) +[![Pull requests](https://img.shields.io/github/issues-pr/ladunjexa/nextjs14-devoverflow?style=social&logo=github)](https://github.com/ladunjexa/nextjs14-devoverflow/pulls) + +![demo](https://i.ibb.co/x7FChRP/Thumbnail.jpg) + +[![ladunjexa](https://custom-icon-badges.demolab.com/badge/made%20by%20-ladunjexa-556bf2?logo=github&logoColor=white&labelColor=101827)](https://github.com/luadnjexa) +[![License](https://img.shields.io/github/license/ladunjexa/nextjs14-devoverflow?color=dddddd&labelColor=000000)](https://github.com/ladunjexa/nextjs14-devoverflow/blob/main/LICENSE) +[![Top Language](https://img.shields.io/github/languages/top/ladunjexa/nextjs14-devoverflow?logo=github&logoColor=%23007ACC&label=TypeScript)](https://www.typescriptlang.org/) +[![Contributors](https://img.shields.io/github/contributors/ladunjexa/nextjs14-devoverflow?style=flat&color=orange&label=Contributors)](https://github.com/ladunjexa/nextjs14-devoverflow/graphs/contributors) +![Release](https://img.shields.io/github/release/ladunjexa/nextjs14-devoverflow.svg) +![PRs](https://img.shields.io/badge/PRs-welcome-ff69b4.svg?style=shields) +![deployment](https://img.shields.io/github/deployments/ladunjexa/nextjs14-devoverflow/Production?logo=vercel&label=Website) +[![Known Vulnerabilities](https://snyk.io/test/github/ladunjexa/nextjs14-devoverflow/badge.svg)](https://snyk.io/test/github/ladunjexa/nextjs14-devoverflow) + +## 🌐 Live Demo + +Explore the live demonstration of the project: [nextjs14-devoverflow](https://nextjs14-devoverflow.vercel.app/) + +## 📝 Description + +**DevOverflow** is a complex Q&A platform for developers to ask questions, share knowledge, and learn from each other. It is built with Next.js, Tailwind CSS, Clerk, MongoDB, and more. + +
Folder Structure + +```bash +nextjs14-devoverflow/ +├── app/ +├ ├── favicon.ico +├ ├── globals.css +├ ├── layout.tsx +├ ├── (auth)/ +├ ├ ├── onboarding/ +├ ├ ├ └── page.tsx +├ ├ ├── sign-in/[[...sign-in]]/ +├ ├ ├ └── page.tsx +├ ├ ├── sign-up/[[...sign-up]]/ +├ ├ ├ └── page.tsx +├ ├ └── layout.tsx +├ ├── (root)/ +├ ├ ├── layout.tsx +├ ├ ├── (home)/ +├ ├ ├ ├── loading.tsx +├ ├ ├ └── page.tsx +├ ├ ├── ask-question/ +├ ├ ├ └── page.tsx +├ ├ ├── collection/ +├ ├ ├ ├── loading.tsx +├ ├ ├ └── page.tsx +├ ├ ├── community/ +├ ├ ├ ├── loading.tsx +├ ├ ├ └── page.tsx +├ ├ ├── edit-answer/ +├ ├ ├ └── [id]/ +├ ├ ├ └── page.tsx +├ ├ ├── jobs/ +├ ├ ├ ├── loading.tsx +├ ├ ├ └── page.tsx +├ ├ ├── profile/ +├ ├ ├ ├── [id]/ +├ ├ ├ ├ ├── loading.tsx +├ ├ ├ ├ └── page.tsx +├ ├ ├ └── edit/ +├ ├ ├ └── page.tsx +├ ├ ├── question/ +├ ├ ├ ├── [id]/ +├ ├ ├ ├ └── page.tsx +├ ├ ├ └── edit/ +├ ├ ├ └── [id]/ +├ ├ ├ └── page.tsx +├ ├ └── tags/ +├ ├ ├── [id]/ +├ ├ ├ ├── loading.tsx +├ ├ ├ └── page.tsx +├ ├ ├── page.tsx +├ ├ └── loading.tsx +├ └── api/ +├ ├── openai/ +├ ├ └── route.ts +├ ├── rapidapi/ +├ ├ └── route.ts +├ └── webhook/clerk/ +├ └── route.ts +├── components/ +├ ├── cards/ +├ ├ ├── AnswerCard.tsx +├ ├ ├── JobCard.tsx +├ ├ ├── QuestionCard.tsx +├ ├ └── UserCard.tsx +├ ├── forms/ +├ ├ ├── Answer.tsx +├ ├ ├── Profile.tsx +├ ├ └── Question.tsx +├ ├── jobs/ +├ ├ └── JobBadge.tsx +├ ├── shared/ +├ ├ ├── AllAnswers.tsx +├ ├ ├── AnswersTab.tsx +├ ├ ├── EditDeleteAction.tsx +├ ├ ├── Filter.tsx +├ ├ ├── Filters.tsx +├ ├ ├── LeftSidebar.tsx +├ ├ ├── Metric.tsx +├ ├ ├── NoResult.tsx +├ ├ ├── Pagination.tsx +├ ├ ├── ParseHTML.tsx +├ ├ ├── ProfileLink.tsx +├ ├ ├── QuestionsTab.tsx +├ ├ ├── RenderTag.tsx +├ ├ ├── RightSidebar.tsx +├ ├ ├── Stats.tsx +├ ├ ├── Switcher.tsx +├ ├ ├── Votes.tsx +├ ├ ├── navbar/ +├ ├ ├ ├── Navbar.tsx +├ ├ ├ ├── Mobile.tsx +├ ├ ├ └── Theme.tsx +├ ├ └── search/ +├ ├ ├── GlobalFilters.tsx +├ ├ ├── GlobalResult.tsx +├ ├ ├── GlobalSearch.tsx +├ ├ └── LocalSearchbar.tsx +├ └── ui/ (generated by shadcn-ui) +├ ├── badge.tsx +├ ├── button.tsx +├ ├── form.tsx +├ ├── input.tsx +├ ├── label.tsx +├ ├── menubar.tsx +├ ├── select.tsx +├ ├── sheet.tsx +├ ├── skeleton.tsx +├ ├── switch.tsx +├ ├── tabs.tsx +├ ├── textarea.tsx +├ ├── toast.tsx +├ ├── toaster.tsx +├ └── use-toast.ts +├── constants/ +├ ├── filters.ts +├ └── index.ts +├── content/ +├ ├── countries.json +├ └── jsearch.json +├── context/ +├ └── ThemeProvider.ts +├── datbase/ +├ ├── answer.model.ts +├ ├── interaction.model.ts +├ ├── question.model.ts +├ ├── tag.model.ts +├ └── user.model.ts +├── lib/ +├ ├── mongoose.ts +├ ├── utils.ts +├ ├── validations.ts +├ └── actions/ +├ ├── answer.action.ts +├ ├── general.action.ts +├ ├── interaction.action.ts +├ ├── job.action.ts +├ ├── question.action.ts +├ ├── tag.action.ts +├ ├── user.action.ts +├ └── shared.types.d.ts +├── public/ +├ ├── next.svg +├ ├── vercel.svg +├ └── assets/ +├ ├── icons/[[...]].svg +├ └── images/[[...]].{svg,png} +├── styles/ +├ ├── prism.css +├ └── theme.css +├── types/ +├ └── index.d.ts +├── .eslintrc.json +├── .gitignore +├── README.md +├── components.json +├── middleware.ts +├── next.config.js +├── package.json +├── postcss.config.js +├── tailwind.config.ts +└── tsconfig.ts +``` + +
+ +## 📖 Table of Contents + +
Table of Contents + +- [Live Demo](#-live-demo) +- [Description](#-description) +- [Technologies Used](#-technologies-used) +- [Get Started](#-get-started) + - [Prerequisites](#-prerequisites) + - [Installation and Run Locally](#-installation-and-run-locally) + - [Scripts](#-scripts) +- [Environment Variables](#-environment-variables) +- [Deployment](#-deployment) + - [Deploy to production (manual)](#-deploy-to-production-manual) + - [Deploy on Vercel (recommended)](#-deploy-on-vercel-recommended) + - [Deploy on Netlify](#-deploy-on-netlify) +- [Contributing](#-contributing) + - [Bug / Feature Request](#-bug--feature-request) +- [Acknowledgements](#-acknowledgements) +- [References](#-references) +- [Contact Us](#-contact-us) +- [License](#-license) + +
+ +## ✨ Technologies Used + +
DevOverflow is built using the following technologies: + +- [TypeScript](https://www.typescriptlang.org/): TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. +- [Next.js](https://nextjs.org/): Next.js is a React framework for building server-side rendered and statically generated web applications. +- [Tailwind CSS](https://tailwindcss.com/): Tailwind CSS is a utility-first CSS framework for rapidly building custom user interfaces. +- [ESLint](https://eslint.org/): ESLint is a static code analysis tool for identifying problematic patterns found in JavaScript code. +- [Prettier](https://prettier.io/): Prettier is an opinionated code formatter. +- [Clerk](https://clerk.dev/): Clerk is a developer-first authentication API that handles all the logic for user sign up, sign in, and more. +- [Shadcn-UI](https://ui.shadcn.com/): Shadcn UI is a React UI library that helps developers rapidly build modern web applications. +- [TinyMCE](https://www.tiny.cloud/): TinyMCE is the world's most popular JavaScript library for rich text editing. +- [MongoDB](https://www.mongodb.com/): MongoDB is a general purpose, document-based, distributed database built for modern application developers and for the cloud era. +- [Mongoose](https://mongoosejs.com/): Mongoose is a MongoDB object modeling tool designed to work in an asynchronous environment. +- [Prism.js](https://prismjs.com/): Prism is a lightweight, extensible syntax highlighter, built with modern web standards in mind. +- [Query String](https://www.npmjs.com/package/query-string): Parse and stringify URL query strings. +- [Svix](https://svix.com/): Svix is a webhook proxy that allows you to receive webhooks locally. +- [Zod](https://zod.dev/): Zod is a TypeScript-first schema declaration and validation library. +- [Vercel](https://vercel.com/): Vercel is a cloud platform for frontend developers, providing the frameworks, workflows, and infrastructure to build a faster, more personalized Web. + +

+ +[![Technologies Used](https://skillicons.dev/icons?i=ts,nextjs,tailwind,mongodb,vercel)](https://skillicons.dev) + +## 🧰 Get Started + +To get this project up and running in your development environment, follow these step-by-step instructions. + +### 📋 Prerequisites + +In order to install and run this project locally, you would need to have the following installed on your local machine. + +- [Node.js](https://nodejs.org/en/) +- [NPM](https://www.npmjs.com/get-npm) +- [Git](https://git-scm.com/downloads) + +### ⚙️ Installation and Run Locally + +**Step 0:** + +> [!IMPORTANT] +> - the application uses Clerk for Authentication and User Management, therefore, you need to create Clerk account [here](https://clerk.dev/) and sets the `CLERK_PUBLISHABLE_KEY` and `CLERK_SECRET_KEY` environment variables in `.env` file. Also, the different URLs for the Clerk sign-in, sign-up, after sign-in and after sign-up pages. +> - the application uses a MongoDB database, therefore, you need to create a database and connect it to the application, for this, change the `MONGODB_URL` environment variable in `.env` file located in `server` folder. +> - the application uses TinyMCE, therefore, you need to create TinyMCE account [here](https://www.tiny.cloud/) and sets the `NEXT_PUBLIC_TINYMCE_API_KEY` environment variable in `.env` file. +> - the application uses OpenAI API, therefore, you need to create OpenAI account [here](https://openai.com/) and sets the `OPENAI_API_KEY` environment variable in `.env` file. +> - the application uses RapidAPI, therefore, you need to create RapidAPI account [here](https://rapidapi.com/), subscribe to the [JSearch API](https://rapidapi.com/letscrape-6bRBa3QguO5/api/jsearch/) and sets the `RAPIDAPI_API_KEY` environment variable in `.env` file. + +After following all the instructions above, we'll want to create a new webhook on Clerk. To do this, go to the [Clerk Dashboard](https://dashboard.clerk.dev/), click on the "Webhooks" tab, and then click "Add Endpoint". For the Endpoint URL, enter `http:///api/webhook/clerk`. For the events, select the "user". Then click "Create" to create the webhook. get the signing secret and set it as `CLERK_WEBHOOK_SECRET` environment variable in `.env` file. + +**Step 1:** + +Download or clone this repo by using the link below: + +```bash +git clone https://github.com/ladunjexa/nextjs14-devoverflow.git +``` + +**Step 2:** + +Execute the following command in the root directory of the downloaded repo in order to install dependencies: + +```bash +npm install +``` + +**Step 3:** + +Execute the following command in order to run the development server locally: ```bash npm run dev -# or -yarn dev -# or -pnpm dev -# or -bun dev ``` +**Step 4:** + Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. -You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. +### 📜 Scripts + +All scripts are defined in the `package.json` file. Here is a list of all scripts: + +| Script | Action | +| :-------------- | :------------------------------------------ | +| `npm install` | Installs dependencies | +| `npm run dev` | Starts local dev server at `localhost:3000` | +| `npm run build` | Build your production site to `./dist/` | +| `npm run start` | Start your production site locally | +| `npm run lint` | Run ESLint | + +## 🔒 Environment Variables + +Environment variables[^12] can be used for configuration. They must be set before running the app. + +> [Environment variables](https://en.wikipedia.org/wiki/Environment_variable) are variables that are set in the operating system or shell, typically used to configure programs. + +**DevOverflow** uses [Clerk](https://clerk.com), [TinyMCE](https://uploadthing.com/), [RapidAPI](https://rapidapi.com), [OpenAI API](https://openai.com/blog/openai-api) and [MongoDB](https://mongodb.com) as external services. You need to create an account on each of these services and get the required credentials to run the app. + +Create a `.env` file in the root directory of the project and add the following environment variables: + +```env +NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY= +CLERK_SECRET_KEY= +NEXT_CLERK_WEBHOOK_SECRET= + +NEXT_PUBLIC_CLERK_SIGN_IN_URL=/sign-in +NEXT_PUBLIC_CLERK_SIGN_UP_URL=/sign-up +NEXT_PUBLIC_CLERK_AFTER_SIGN_IN_URL=/ +NEXT_PUBLIC_CLERK_AFTER_SIGN_UP_URL=/onboarding + +NEXT_PUBLIC_TINY_MCE_API_KEY= + +MONGODB_URL= + +NEXT_PUBLIC_SERVER_URL= + +OPENAI_API_KEY= + +RAPID_API_KEY= +``` + +## 🚀 Deployment + +#### Deploy to production (manual) + +You can create an optimized production build with the following command: + +```bash +npm run build +``` + +#### Deploy on Vercel (recommended) + +The easiest way to deploy this Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme). + +[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fladunjexa%2Fnextjs14-devoverflow) + +#### Deploy on Netlify + +You can also deploy this Next.js app with [Netlify](https://www.netlify.com/). + +[![Deploy with Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/ladunjexa/nextjs14-devoverflow) + +Check out [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. + +## 🔧 Contributing + +[![contributors](https://contrib.rocks/image?repo=ladunjexa/nextjs14-devoverflow)](https://github.com/ladunjexa/nextjs14-devoverflow/graphs/contributors) + +Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**. + +To fix a bug or enhance an existing module, follow these steps: + +1. Fork the repo +2. Create a new branch (`git checkout -b improve-feature`) +3. Make the appropriate changes in the files +4. Commit your changes (`git commit -am 'Improve feature'`) +5. Push to the branch (`git push origin improve-feature`) +6. Create a Pull Request 🎉 + +### 📩 Bug / Feature Request + +If you find a bug (failure of a module to execute its intended function), kindly open an issue [here](https://github.com/ladunjexa/nextjs14-devoverflow/issues/new) by including the issue with a title and clear description. + +If you'd like to request a new function, feel free to do so by opening an issue [here](https://github.com/ladunjexa/nextjs14-devoverflow/issues/new). Please include sample queries and their corresponding results. + +## 💎 Acknowledgements + +I'd like to express my gratitude to the following people who helped me with this project and made it possible: -This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. +- [Clerk](https://clerk.dev/) +- [MongoDB](https://mongodb.com) +- [Mongoose](https://mongoosejs.com/) +- [Zod](https://zod.dev/) +- [Shadcn](https://shadcn.com/) +- [Tailwind CSS](https://tailwindcss.com/) +- [Svix](https://svix.com/) +- [TinyMCE](https://www.tiny.cloud/) +- [OpenAI API](https://openai.com/blog/openai-api) +- [RapidAPI](https://rapidapi.com/) +- [Vercel](https://vercel.com/) +- [JavaScript Mastery](https://www.jsmastery.pro/) -## Learn More +## 📚 References -To learn more about Next.js, take a look at the following resources: +JSMastery. (2023). [Ultimate Next.js 14 Course | Become a top 1% Next.js 14 developer](https://www.jsmastery.pro/ultimate-next-course). E-Learning. -- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. -- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. +## 📞 Contact Us -You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! +[![Telegram](https://img.shields.io/badge/Telegram-@ladunjexa-2CA5E0?style=social&logo=telegram&logoColor=000000)](https://t.me/ladunjexa) +[![LinkedIn](https://img.shields.io/badge/LinkedIn-ladunjexa-blue?style=flat&logo=linkedin&logoColor=b0c0c0&labelColor=363D44)](https://www.linkedin.com/in/lironabutbul) +[![Instagram](https://img.shields.io/badge/Instagram-ladunjexa-grey?style=flat&logo=instagram&logoColor=b0c0c0&labelColor=8134af)](https://www.instagram.com/ladunjexa) +[![Discord](https://img.shields.io/badge/Discord-ladunjexa-7289da?style=flat&logo=discord&logoColor=b0c0c0&labelColor=2c2f33)](https://discord.com/users/827996364331810816) -## Deploy on Vercel + -The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. +## 📋 License -Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. +**DevOverflow** is open source software [licensed as MIT](https://opensource.org/license/mit/) and is free to use — See [LICENSE](https://github.com/ladunjexa/nextjs14-devoverflow/blob/main/LICENSE) for more details. diff --git a/app/(root)/(home)/page.tsx b/app/(root)/(home)/page.tsx index a92779b..5f0da62 100644 --- a/app/(root)/(home)/page.tsx +++ b/app/(root)/(home)/page.tsx @@ -7,7 +7,7 @@ import LocalSearchbar from "@/components/shared/search/LocalSearchbar"; import Filter from "@/components/shared/Filter"; import NoResult from "@/components/shared/NoResult"; import Pagination from "@/components/shared/Pagination"; -import HomeFilters from "@/components/home/HomeFilters"; +import HomeFilters from "@/components/shared/Filters"; import QuestionCard from "@/components/cards/QuestionCard"; import { @@ -78,7 +78,7 @@ export default async function Home({ searchParams }: SearchParamsProps) { /> - +
{result.questions.length> 0 ? ( diff --git a/app/(root)/jobs/loading.tsx b/app/(root)/jobs/loading.tsx new file mode 100644 index 0000000..b9822c5 --- /dev/null +++ b/app/(root)/jobs/loading.tsx @@ -0,0 +1,34 @@ +import { Skeleton } from "@/components/ui/skeleton"; + +const Loading = () => { + return ( +
+

Jobs

+ +
+ + +
+ +
+
+ + + + +
+
+ +
+
+ +
+ {[...Array(10)].map((_, i) => ( + + ))} +
+
+ ); +}; + +export default Loading; diff --git a/app/(root)/jobs/page.tsx b/app/(root)/jobs/page.tsx new file mode 100644 index 0000000..18d1a82 --- /dev/null +++ b/app/(root)/jobs/page.tsx @@ -0,0 +1,102 @@ +import Filter from "@/components/shared/Filter"; +import LocalSearchbar from "@/components/shared/search/LocalSearchbar"; + +import JobFilters from "@/components/shared/Filters"; +import NoResult from "@/components/shared/NoResult"; +import Pagination from "@/components/shared/Pagination"; +import JobCard from "@/components/cards/JobCard"; + +import { getCountryFilters, getJobs } from "@/lib/actions/job.action"; + +import { JobPageFilters } from "@/constants/filters"; + +import type { SearchParamsProps } from "@/types"; +import type { Metadata } from "next"; + +export const metadata: Metadata = { + title: "Jobs — DevOverflow", +}; + +const Page = async ({ searchParams }: SearchParamsProps) => { + const CountryFilters = await getCountryFilters(); + + const result = await getJobs({ + searchQuery: searchParams.q, + filter: searchParams.filter, + location: searchParams.location, + remote: searchParams.remote, + page: searchParams.page ? +searchParams.page : 1, + wage: searchParams.wage, + skills: searchParams.skills, + }); + + return ( + +

Jobs

+ +
+ + {CountryFilters && ( + + )} +
+ + + +
+ {result.data.length> 0 ? ( + result.data.map((jobItem: any) => ( + + )) + ) : ( + + )} +
+ +
+ +
+
+ ); +}; + +export default Page; diff --git a/app/(root)/question/[id]/page.tsx b/app/(root)/question/[id]/page.tsx index 0b19a03..7ddcf79 100644 --- a/app/(root)/question/[id]/page.tsx +++ b/app/(root)/question/[id]/page.tsx @@ -135,6 +135,7 @@ const Page = async ({ params, searchParams }: URLProps) => { /> `Tell me ${question}`, +}; + export const POST = async (request: Request) => { const { question } = await request.json(); try { - const response = await fetch("https://api.openai.com/v1/chat/completions", { + const response = await fetch(config.apiHost, { method: "POST", headers: { "Content-Type": "application/json", - Authorization: `Bearer ${process.env.OPENAI_API_KEY}`, + Authorization: `Bearer ${config.apiKey}}`, }, body: JSON.stringify({ model: "gpt-3.5-turbo", messages: [ { role: "system", - content: - "You are a knowlegeable assistant that provides quality information.", + content: config.systemContent, }, { role: "user", - content: `Tell me ${question}`, + content: config.userContent(question), }, ], }), diff --git a/app/api/rapidapi/route.ts b/app/api/rapidapi/route.ts new file mode 100644 index 0000000..7d7fa77 --- /dev/null +++ b/app/api/rapidapi/route.ts @@ -0,0 +1,35 @@ +import { NextResponse } from "next/server"; + +const config = { + apiKey: process.env.RAPIDAPI_API_KEY as string, + apiHost: "https://jsearch.p.rapidapi.com", +}; + +export const POST = async (request: Request) => { + const { + page = 1, + pageSize = 1, + filter = "us", + searchQuery = "Software Engineer", + } = await request.json(); + + try { + const response = await fetch( + `${config.apiHost}/search?query=${searchQuery}&location=${filter}&page=${page}&num_pages=${pageSize}`, + { + method: "GET", + headers: { + "X-RapidAPI-Key": config.apiKey, + "X-RapidAPI-Host": config.apiHost, + }, + } + ); + + const responseData = await response.json(); + const result = responseData.result; + + return NextResponse.json({ result }); + } catch (error: any) { + return NextResponse.json({ error: error.message }); + } +}; diff --git a/app/api/webhook/clerk/route.ts b/app/api/webhook/clerk/route.ts index 8217765..bd4f418 100644 --- a/app/api/webhook/clerk/route.ts +++ b/app/api/webhook/clerk/route.ts @@ -60,15 +60,19 @@ export async function POST(req: Request) { const { id, email_addresses, image_url, username, first_name, last_name } = evt.data; + const parts = email_addresses[0].email_address.split("@"); + // create a new user in database const mongoUser = await createUser({ clerkId: id, name: `${first_name}${last_name ? ` ${last_name}` : ""}`, - username: username || "", + username: username || `${parts[0]}-${parts[1].split(".")[0]}`, email: email_addresses[0].email_address, picture: image_url, }); + console.log(mongoUser); + return NextResponse.json({ message: "User created", user: mongoUser }); } diff --git a/components/cards/JobCard.tsx b/components/cards/JobCard.tsx new file mode 100644 index 0000000..cc7d5f5 --- /dev/null +++ b/components/cards/JobCard.tsx @@ -0,0 +1,158 @@ +import Link from "next/link"; +import Image from "next/image"; + +import { Badge } from "@/components/ui/badge"; +import Metric from "@/components/shared/Metric"; +import JobBadge from "@/components/jobs/JobBadge"; + +import { + employmentTypeConverter, + getFormattedSalary, + getTimestamp, + isValidImage, +} from "@/lib/utils"; + +interface JobProps { + title: string; + description: string; + city: string; + state: string; + country: string; + requiredSkills: string[]; + applyLink: string; + employerLogo: string; + employerWebsite: string; + employerName: string; + employmentType: string; + isRemote: boolean; + salary: { + min: number; + max: number; + currency: string; + period: string; + }; + postedAt: string; +} + +const JobCard = ({ + title, + description, + city, + state, + country, + requiredSkills, + applyLink, + employerLogo, + employerWebsite, + employerName, + employmentType, + isRemote, + salary, + postedAt, +}: JobProps) => { + const imageUrl = isValidImage(employerLogo) + ? employerLogo + : "/assets/images/site-logo.svg"; + + const location = `${city ? `${city}${state ? ", " : ""}` : ""}${state || ""}${ + city && state && country ? ", " : "" + }${country || ""}`; + + return ( +
+
+
+ +
+ +
+
+
+ +
+
+
+
+ +
+

+ {title} +

+

+ {employerName} +

+

+ posted {getTimestamp(new Date(postedAt))} +

+
+
+ +
+ +

+ {description.slice(0, 2000)} +

+ + {requiredSkills && requiredSkills.length> 0 && ( +
+ {requiredSkills.map((tag) => ( + + {tag} + + ))} +
+ )} + +
+
+ + + +
+ +

View job

+ arrow up right + +
+
+
+
+ ); +}; + +export default JobCard; diff --git a/components/forms/Profile.tsx b/components/forms/Profile.tsx index 995b670..bb42e16 100644 --- a/components/forms/Profile.tsx +++ b/components/forms/Profile.tsx @@ -32,6 +32,7 @@ const Profile = ({ clerkId, user }: Props) => { const router = useRouter(); const pathname = usePathname(); const parsedUser = JSON.parse(user); + const [isSubmitting, setIsSubmitting] = useState(false); const form = useForm>({ @@ -61,6 +62,7 @@ const Profile = ({ clerkId, user }: Props) => { }, path: pathname, }); + router.push("/"); } catch (error) { toast({ diff --git a/components/jobs/JobBadge.tsx b/components/jobs/JobBadge.tsx new file mode 100644 index 0000000..1657207 --- /dev/null +++ b/components/jobs/JobBadge.tsx @@ -0,0 +1,49 @@ +import Image from "next/image"; +import Link from "next/link"; + +import { Badge } from "@/components/ui/badge"; + +const JobBadge = ({ + data, + badgeStyles, + isLocation, +}: { + data: any; + badgeStyles?: string; + isLocation?: boolean; +}) => { + if (isLocation && !data.location) return null; + + const classNames = isLocation + ? "`subtle-regular background-light800_dark300 text-light400_light500 gap-2 rounded-full border-none px-4 py-2" + : "background-light800_dark400 relative h-16 w-16 rounded-lg"; + return ( + + {isLocation ? ( + + {data.location} + {data.country && ( + flag + )} + + ) : ( + + logo + + )} + + ); +}; + +export default JobBadge; diff --git a/components/shared/Filter.tsx b/components/shared/Filter.tsx index 280b849..1e9a656 100644 --- a/components/shared/Filter.tsx +++ b/components/shared/Filter.tsx @@ -1,5 +1,6 @@ "use client"; +import Image from "next/image"; import { useRouter, useSearchParams } from "next/navigation"; import { @@ -19,18 +20,25 @@ interface Props { filters: FilterProps[]; otherClasses?: string; containerClasses?: string; + jobFilter?: boolean; } -const Filter = ({ filters, otherClasses, containerClasses }: Props) => { +const Filter = ({ + filters, + otherClasses, + containerClasses, + jobFilter = false, +}: Props) => { const searchParams = useSearchParams(); const router = useRouter(); - const paramFilter = searchParams.get("filter"); + const searchParamKey = jobFilter ? "location" : "filter"; + const paramFilter = searchParams.get(searchParamKey); const handleUpdateParams = (value: string) => { const newUrl = formUrlQuery({ params: searchParams.toString(), - key: "filter", - value, + key: searchParamKey, + value: jobFilter ? value.toLowerCase() : value, }); router.push(newUrl, { scroll: false }); @@ -46,10 +54,16 @@ const Filter = ({ filters, otherClasses, containerClasses }: Props) => { className={`${otherClasses} body-regular light-border background-light800_dark300 text-dark500_light700 border px-5 py-2.5`} >
- +
- + {filters.map((filter) => ( { value={filter.value} className="cursor-pointer focus:bg-light-800 dark:focus:bg-dark-400" > + {jobFilter && ( + flag + )} {filter.name} ))} diff --git a/components/home/HomeFilters.tsx b/components/shared/Filters.tsx similarity index 59% rename from components/home/HomeFilters.tsx rename to components/shared/Filters.tsx index 217ef13..3ff887a 100644 --- a/components/home/HomeFilters.tsx +++ b/components/shared/Filters.tsx @@ -4,12 +4,19 @@ import { useState } from "react"; import { useRouter, useSearchParams } from "next/navigation"; import { Button } from "@/components/ui/button"; +import Switcher from "@/components/shared/Switcher"; import { formUrlQuery } from "@/lib/utils"; -import { HomePageFilters } from "@/constants/filters"; +import type { FilterProps } from "@/types"; -const HomeFilters = () => { +const Filters = ({ + filters, + jobFilter = false, +}: { + filters: FilterProps[]; + jobFilter?: boolean; +}) => { const searchParams = useSearchParams(); const router = useRouter(); @@ -40,22 +47,35 @@ const HomeFilters = () => { }; return ( -
- {HomePageFilters.map((filter) => ( +
+ {filters.map((filter, index) => ( ))} + + {jobFilter && ( +
+ + + +
+ )}
); }; -export default HomeFilters; +export default Filters; diff --git a/components/shared/Switcher.tsx b/components/shared/Switcher.tsx new file mode 100644 index 0000000..128a26a --- /dev/null +++ b/components/shared/Switcher.tsx @@ -0,0 +1,56 @@ +"use client"; + +import { useRouter, useSearchParams } from "next/navigation"; + +import { Label } from "@/components/ui/label"; +import { Switch } from "@/components/ui/switch"; + +import { formUrlQuery, removeKeysFromQuery } from "@/lib/utils"; + +interface Props { + query: string; + label: string; +} + +const Switcher = ({ query, label }: Props) => { + const searchParams = useSearchParams(); + const router = useRouter(); + + const paramFilter = searchParams.get(query); + + const handleUpdateParams = (value: string) => { + let newUrl; + + if (!value) { + newUrl = removeKeysFromQuery({ + params: searchParams.toString(), + keysToRemove: [query], + }); + } else { + newUrl = formUrlQuery({ + params: searchParams.toString(), + key: query, + value, + }); + } + + router.push(newUrl, { scroll: false }); + }; + + return ( + + + + + ); +}; + +export default Switcher; diff --git a/components/ui/switch.tsx b/components/ui/switch.tsx new file mode 100644 index 0000000..36fc85a --- /dev/null +++ b/components/ui/switch.tsx @@ -0,0 +1,29 @@ +"use client"; + +import * as React from "react"; +import * as SwitchPrimitives from "@radix-ui/react-switch"; + +import { cn } from "@/lib/utils"; + +const Switch = React.forwardRef< + React.ElementRef, + React.ComponentPropsWithoutRef +>(({ className, ...props }, ref) => ( + + + +)); +Switch.displayName = SwitchPrimitives.Root.displayName; + +export { Switch }; diff --git a/constants/filters.ts b/constants/filters.ts index 1f9d749..4364cd6 100644 --- a/constants/filters.ts +++ b/constants/filters.ts @@ -35,6 +35,13 @@ export const HomePageFilters: FilterProps[] = [ { name: "Unanswered", value: "unanswered" }, ]; +export const JobPageFilters: FilterProps[] = [ + { name: "Full-time", value: "fulltime" }, + { name: "Part-time", value: "parttime" }, + { name: "Contractor", value: "contractor" }, + { name: "Internship", value: "intern" }, +]; + export const GlobalSearchFilters: FilterProps[] = [ { name: "Question", value: "question" }, { name: "Answer", value: "answer" }, diff --git a/constants/index.ts b/constants/index.ts index 5ddfb6f..c6a7d19 100644 --- a/constants/index.ts +++ b/constants/index.ts @@ -71,3 +71,118 @@ export const BADGE_CRITERIA = { GOLD: 100000, }, }; + +export const CURRENCY_NOTATIONS: { [key: string]: string } = { + ALL: "Lek", + AFN: "؋", + ARS: "$", + AWG: "ƒ", + AUD: "$", + AZN: "ман", + BSD: "$", + BYR: "p.", + BZD: "BZ$", + BMD: "$", + BOB: "$b", + BAM: "KM", + BWP: "P", + BGN: "лв", + BRL: "R$", + BND: "$", + KHR: "៛", + CAD: "$", + KYD: "$", + CLP: "$", + CNY: "\", + COP: "$", + CRC: "₡", + HRK: "kn", + CUP: "₱", + CZK: "Kč", + DKK: "kr", + DOP: "RD$", + XCD: "$", + EGP: "£", + SVC: "$", + EEK: "kr", + EUR: "€", + FKP: "£", + FJD: "$", + GHC: "¢", + GIP: "£", + GTQ: "Q", + GGP: "£", + GYD: "$", + HNL: "L", + HKD: "$", + HUF: "Ft", + ISK: "kr", + INR: "₹", + IDR: "Rp", + IRR: "ریال", + IMP: "£", + ILS: "₪", + JMD: "J$", + JPY: "\", + JEP: "£", + KZT: "лв", + KPW: "₩", + KRW: "₩", + KGS: "лв", + LAK: "₭", + LVL: "Ls", + LBP: "£", + LRD: "$", + LTL: "Lt", + MKD: "ден", + MYR: "RM", + MUR: "Rs", + MXN: "$", + MNT: "₮", + MZN: "MT", + NAD: "$", + NPR: "Rs", + ANG: "ƒ", + NZD: "$", + NIO: "C$", + NGN: "₦", + NOK: "kr", + OMR: "ریال", + PKR: "Rs", + PAB: "B/.", + PYG: "Gs", + PEN: "S/.", + PHP: "₱", + PLN: "zł", + QAR: "ریال", + RON: "lei", + RUB: "руб", + SHP: "£", + SAR: "ریال", + RSD: "Дин.", + SCR: "Rs", + SGD: "$", + SBD: "$", + SOS: "S", + ZAR: "R", + LKR: "Rs", + SEK: "kr", + CHF: "CHF", + SRD: "$", + SYP: "£", + TWD: "NT$", + THB: "฿", + TTD: "$", + TRY: "₤", + TRL: "₤", + TVD: "$", + UAH: "₴", + GBP: "£", + USD: "$", + UYU: "$U", + UZS: "лв", + VEF: "Bs", + VND: "₫", + YER: "ریال", + ZWD: "Z$", +}; diff --git a/content/countries.json b/content/countries.json new file mode 100644 index 0000000..80388b5 --- /dev/null +++ b/content/countries.json @@ -0,0 +1,198 @@ +[ + { "name": "Afghanistan", "cca2": "AF" }, + { "name": "Angola", "cca2": "AO" }, + { "name": "Albania", "cca2": "AL" }, + { "name": "Andorra", "cca2": "AD" }, + { "name": "United Arab Emirates", "cca2": "AE" }, + { "name": "Argentina", "cca2": "AR" }, + { "name": "Armenia", "cca2": "AM" }, + { "name": "Antigua and Barbuda", "cca2": "AG" }, + { "name": "Australia", "cca2": "AU" }, + { "name": "Austria", "cca2": "AT" }, + { "name": "Azerbaijan", "cca2": "AZ" }, + { "name": "Burundi", "cca2": "BI" }, + { "name": "Belgium", "cca2": "BE" }, + { "name": "Benin", "cca2": "BJ" }, + { "name": "Burkina Faso", "cca2": "BF" }, + { "name": "Bangladesh", "cca2": "BD" }, + { "name": "Bulgaria", "cca2": "BG" }, + { "name": "Bahrain", "cca2": "BH" }, + { "name": "Bahamas", "cca2": "BS" }, + { "name": "Bosnia and Herzegovina", "cca2": "BA" }, + { "name": "Belarus", "cca2": "BY" }, + { "name": "Belize", "cca2": "BZ" }, + { "name": "Bolivia", "cca2": "BO" }, + { "name": "Brazil", "cca2": "BR" }, + { "name": "Barbados", "cca2": "BB" }, + { "name": "Brunei", "cca2": "BN" }, + { "name": "Bhutan", "cca2": "BT" }, + { "name": "Botswana", "cca2": "BW" }, + { "name": "Central African Republic", "cca2": "CF" }, + { "name": "Canada", "cca2": "CA" }, + { "name": "Switzerland", "cca2": "CH" }, + { "name": "Chile", "cca2": "CL" }, + { "name": "China", "cca2": "CN" }, + { "name": "Ivory Coast", "cca2": "CI" }, + { "name": "Cameroon", "cca2": "CM" }, + { "name": "DR Congo", "cca2": "CD" }, + { "name": "Republic of the Congo", "cca2": "CG" }, + { "name": "Colombia", "cca2": "CO" }, + { "name": "Comoros", "cca2": "KM" }, + { "name": "Cape Verde", "cca2": "CV" }, + { "name": "Costa Rica", "cca2": "CR" }, + { "name": "Cuba", "cca2": "CU" }, + { "name": "Cyprus", "cca2": "CY" }, + { "name": "Czechia", "cca2": "CZ" }, + { "name": "Germany", "cca2": "DE" }, + { "name": "Djibouti", "cca2": "DJ" }, + { "name": "Dominica", "cca2": "DM" }, + { "name": "Denmark", "cca2": "DK" }, + { "name": "Dominican Republic", "cca2": "DO" }, + { "name": "Algeria", "cca2": "DZ" }, + { "name": "Ecuador", "cca2": "EC" }, + { "name": "Egypt", "cca2": "EG" }, + { "name": "Eritrea", "cca2": "ER" }, + { "name": "Spain", "cca2": "ES" }, + { "name": "Estonia", "cca2": "EE" }, + { "name": "Ethiopia", "cca2": "ET" }, + { "name": "Finland", "cca2": "FI" }, + { "name": "Fiji", "cca2": "FJ" }, + { "name": "France", "cca2": "FR" }, + { "name": "Micronesia", "cca2": "FM" }, + { "name": "Gabon", "cca2": "GA" }, + { "name": "United Kingdom", "cca2": "GB" }, + { "name": "Georgia", "cca2": "GE" }, + { "name": "Ghana", "cca2": "GH" }, + { "name": "Guinea", "cca2": "GN" }, + { "name": "Gambia", "cca2": "GM" }, + { "name": "Guinea-Bissau", "cca2": "GW" }, + { "name": "Equatorial Guinea", "cca2": "GQ" }, + { "name": "Greece", "cca2": "GR" }, + { "name": "Grenada", "cca2": "GD" }, + { "name": "Guatemala", "cca2": "GT" }, + { "name": "Guyana", "cca2": "GY" }, + { "name": "Honduras", "cca2": "HN" }, + { "name": "Croatia", "cca2": "HR" }, + { "name": "Haiti", "cca2": "HT" }, + { "name": "Hungary", "cca2": "HU" }, + { "name": "Indonesia", "cca2": "ID" }, + { "name": "India", "cca2": "IN" }, + { "name": "Ireland", "cca2": "IE" }, + { "name": "Iran", "cca2": "IR" }, + { "name": "Iraq", "cca2": "IQ" }, + { "name": "Iceland", "cca2": "IS" }, + { "name": "Israel", "cca2": "IL" }, + { "name": "Italy", "cca2": "IT" }, + { "name": "Jamaica", "cca2": "JM" }, + { "name": "Jordan", "cca2": "JO" }, + { "name": "Japan", "cca2": "JP" }, + { "name": "Kazakhstan", "cca2": "KZ" }, + { "name": "Kenya", "cca2": "KE" }, + { "name": "Kyrgyzstan", "cca2": "KG" }, + { "name": "Cambodia", "cca2": "KH" }, + { "name": "Kiribati", "cca2": "KI" }, + { "name": "Saint Kitts and Nevis", "cca2": "KN" }, + { "name": "South Korea", "cca2": "KR" }, + { "name": "Kuwait", "cca2": "KW" }, + { "name": "Laos", "cca2": "LA" }, + { "name": "Lebanon", "cca2": "LB" }, + { "name": "Liberia", "cca2": "LR" }, + { "name": "Libya", "cca2": "LY" }, + { "name": "Saint Lucia", "cca2": "LC" }, + { "name": "Liechtenstein", "cca2": "LI" }, + { "name": "Sri Lanka", "cca2": "LK" }, + { "name": "Lesotho", "cca2": "LS" }, + { "name": "Lithuania", "cca2": "LT" }, + { "name": "Luxembourg", "cca2": "LU" }, + { "name": "Latvia", "cca2": "LV" }, + { "name": "Morocco", "cca2": "MA" }, + { "name": "Monaco", "cca2": "MC" }, + { "name": "Moldova", "cca2": "MD" }, + { "name": "Madagascar", "cca2": "MG" }, + { "name": "Maldives", "cca2": "MV" }, + { "name": "Mexico", "cca2": "MX" }, + { "name": "Marshall Islands", "cca2": "MH" }, + { "name": "North Macedonia", "cca2": "MK" }, + { "name": "Mali", "cca2": "ML" }, + { "name": "Malta", "cca2": "MT" }, + { "name": "Myanmar", "cca2": "MM" }, + { "name": "Montenegro", "cca2": "ME" }, + { "name": "Mongolia", "cca2": "MN" }, + { "name": "Mozambique", "cca2": "MZ" }, + { "name": "Mauritania", "cca2": "MR" }, + { "name": "Mauritius", "cca2": "MU" }, + { "name": "Malawi", "cca2": "MW" }, + { "name": "Malaysia", "cca2": "MY" }, + { "name": "Namibia", "cca2": "NA" }, + { "name": "Niger", "cca2": "NE" }, + { "name": "Nigeria", "cca2": "NG" }, + { "name": "Nicaragua", "cca2": "NI" }, + { "name": "Netherlands", "cca2": "NL" }, + { "name": "Norway", "cca2": "NO" }, + { "name": "Nepal", "cca2": "NP" }, + { "name": "Nauru", "cca2": "NR" }, + { "name": "New Zealand", "cca2": "NZ" }, + { "name": "Oman", "cca2": "OM" }, + { "name": "Pakistan", "cca2": "PK" }, + { "name": "Panama", "cca2": "PA" }, + { "name": "Pitcairn Islands", "cca2": "PN" }, + { "name": "Peru", "cca2": "PE" }, + { "name": "Philippines", "cca2": "PH" }, + { "name": "Palau", "cca2": "PW" }, + { "name": "Papua New Guinea", "cca2": "PG" }, + { "name": "Poland", "cca2": "PL" }, + { "name": "North Korea", "cca2": "KP" }, + { "name": "Portugal", "cca2": "PT" }, + { "name": "Paraguay", "cca2": "PY" }, + { "name": "Palestine", "cca2": "PS" }, + { "name": "Qatar", "cca2": "QA" }, + { "name": "Romania", "cca2": "RO" }, + { "name": "Russia", "cca2": "RU" }, + { "name": "Rwanda", "cca2": "RW" }, + { "name": "Saudi Arabia", "cca2": "SA" }, + { "name": "Sudan", "cca2": "SD" }, + { "name": "South Sudan", "cca2": "SS" }, + { "name": "Senegal", "cca2": "SN" }, + { "name": "Solomon Islands", "cca2": "SB" }, + { "name": "Sierra Leone", "cca2": "SL" }, + { "name": "El Salvador", "cca2": "SV" }, + { "name": "San Marino", "cca2": "SM" }, + { "name": "Somaliland", "cca2": "SO" }, + { "name": "Somalia", "cca2": "SO" }, + { "name": "Serbia", "cca2": "RS" }, + { "name": "São Tomé and Príncipe", "cca2": "ST" }, + { "name": "Suriname", "cca2": "SR" }, + { "name": "Slovakia", "cca2": "SK" }, + { "name": "Slovenia", "cca2": "SI" }, + { "name": "Sweden", "cca2": "SE" }, + { "name": "Swaziland", "cca2": "SZ" }, + { "name": "Seychelles", "cca2": "SC" }, + { "name": "Syria", "cca2": "SY" }, + { "name": "Chad", "cca2": "TD" }, + { "name": "Togo", "cca2": "TG" }, + { "name": "Thailand", "cca2": "TH" }, + { "name": "Tajikistan", "cca2": "TJ" }, + { "name": "Turkmenistan", "cca2": "TM" }, + { "name": "Timor-Leste", "cca2": "TL" }, + { "name": "Tonga", "cca2": "TO" }, + { "name": "Trinidad and Tobago", "cca2": "TT" }, + { "name": "Tunisia", "cca2": "TN" }, + { "name": "Turkey", "cca2": "TR" }, + { "name": "Tuvalu", "cca2": "TV" }, + { "name": "Tanzania", "cca2": "TZ" }, + { "name": "Uganda", "cca2": "UG" }, + { "name": "Ukraine", "cca2": "UA" }, + { "name": "Uruguay", "cca2": "UY" }, + { "name": "United States", "cca2": "US" }, + { "name": "Uzbekistan", "cca2": "UZ" }, + { "name": "Vatican City", "cca2": "VA" }, + { "name": "Saint Vincent and the Grenadines", "cca2": "VC" }, + { "name": "Venezuela", "cca2": "VE" }, + { "name": "Vietnam", "cca2": "VN" }, + { "name": "Vanuatu", "cca2": "VU" }, + { "name": "Samoa", "cca2": "WS" }, + { "name": "Yemen", "cca2": "YE" }, + { "name": "South Africa", "cca2": "ZA" }, + { "name": "Zambia", "cca2": "ZM" }, + { "name": "Zimbabwe", "cca2": "ZW" } +] diff --git a/content/jsearch.json b/content/jsearch.json new file mode 100644 index 0000000..014e104 --- /dev/null +++ b/content/jsearch.json @@ -0,0 +1,10260 @@ +{ + "status": "EX", + "request_id": "b7aba8ba-1f0e-4020-86de-af8c9125a78b", + "parameters": { "query": "software engineer", "page": 1, "num_pages": 10 }, + "data": [ + { + "employer_name": "Walmart", + "employer_logo": "https://animationvisarts.com/wp-content/uploads/2020/08/Walmart-logo-2008-Now.jpg", + "employer_website": "https://www.walmart.com", + "employer_company_type": "Retail", + "job_publisher": "Walmart Careers", + "job_id": "yj3XyQEFA-4cQWxnAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer III", + "job_apply_link": "https://careers.walmart.com/us/jobs/WD1626226-software-engineer-iii", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.7968, + "apply_options": [ + { + "publisher": "Walmart Careers", + "apply_link": "https://careers.walmart.com/us/jobs/WD1626226-software-engineer-iii", + "is_direct": false + }, + { + "publisher": "Talent.com", + "apply_link": "https://www.talent.com/view?id=94b5006c4281", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=0fd0b5cccec93c26", + "is_direct": false + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/software-engineer-iii-at-walmart-3731788577", + "is_direct": false + }, + { + "publisher": "The Muse", + "apply_link": "https://www.themuse.com/jobs/walmart/software-engineer-iii-fc0455", + "is_direct": true + }, + { + "publisher": "Glassdoor", + "apply_link": "https://www.glassdoor.com/job-listing/software-engineer-iii-walmart-JV_IC1143031_KO0,21_KE22,29.htm?jl=1008936118965", + "is_direct": false + }, + { + "publisher": "SimplyHired", + "apply_link": "https://www.simplyhired.com/job/ISq5IruYQHyQaQdlObSRuSj96qySEj2HejE6YXO7dviudyazkcdq5g", + "is_direct": false + }, + { + "publisher": "Levels.fyi", + "apply_link": "https://www.levels.fyi/jobs?jobId=92194796338062022", + "is_direct": false + } + ], + "job_description": "Position Summary...\n\nWhat you'll do...\n\nDo you enjoy handling complex production environments and collaborating with cross-functional teams to maintain optimal application performance? As a Software Engineer III, you are responsible for translating requirements into technical solutions with the focus of creating the best user experience for our associates and customers. You will be part of a small project team consisting of other engineers who will work together to deliver value and ensure code quality. Communication is also key as you will need to work closely with product owners, designers, and other engineers.\n• As a Software in Engineer on the Record Sales team you will help to develop highly available and scalable APIs to process financial transactions for NextGen point of sale (POS) system and Walmart omni channel clients.\n• You will be helping with Operations of Record sales team to support multiple countries including United Sates, Canada and China.\n• You will be helping to build various tools to check the health of the system, deploying applications into various clouds using Docker and Kubernetes and building various dashboards.\n\nAbout the Team:\nThe Enterprise People Technology team supports the successful deployment and adoption of new People technology across the enterprise. As a Fortune #1 company, our work impacts millions of associates globally. We strive to continuously improve people technology and products to help managers and associates so they can focus on what matters most - supporting our customers and members. People Technology is one of the major segments of Walmart Global Tech’s Enterprise Business Services, which is invested in building a compact, robust organization that includes service operations and technology solutions for Finance, People, and the Associate Digital Experience.\n\nWhat you'll bring:\n• Programming expertise on Java, Springboot, SQL and no-SQL Databases such as Azure SQL, MS SQL, Cassandra.\n• Knowledge Apache Camel, Kafka\n• Docker, Kubernetes\n• Splunk, Medusa, Kibana\n• Running infrastructure with public or private cloud environments and platforms like Azure, GCP\n\nAbout Walmart Global Tech\nImagine working in an environment where one line of code can make life easier for hundreds of millions of people. That’s what we do at Walmart Global Tech. We’re a team of software engineers, data scientists, cybersecurity expert's and service professionals within the world’s leading retailer who make an epic impact and are at the forefront of the next retail disruption. People are why we innovate, and people power our innovations. We are people-led and tech-empowered. We train our team in the skillsets of the future and bring in experts like you to help us grow. We have roles for those chasing their first opportunity as well as those looking for the opportunity that will define their career. Here, you can kickstart a great career in tech, gain new skills and experience for virtually every industry, or leverage your expertise to innovate at scale, impact millions and reimagine the future of retail.\n\nFlexible, hybrid work:\nWe use a hybrid way of working that is primarily in office coupled with virtual when not onsite. Our campuses serve as a hub to enhance collaboration, bring us together for purpose and deliver on business needs. This approach helps us make quicker decisions, remove location barriers across our global team and be more flexible in our personal lives.\n\nBenefits:\nBenefits: Beyond our great compensation package, you can receive incentive awards for your performance. Other great perks include 401(k) match, stock purchase plan, paid maternity and parental leave, PTO, multiple health plans, and much more.\n\nEqual Opportunity Employer:\nWalmart, Inc. is an Equal Opportunity Employer – By Choice. We believe we are best equipped to help our associates, customers and the communities we serve live better when we really know them. That means understanding, respecting and valuing diversity- unique styles, experiences, identities, ideas and opinions – while being inclusive of all people.\n\nThe above information has been designed to indicate the general nature and level of work performed in the role. It is not designed to contain or be interpreted as a comprehensive inventory of all responsibilities and qualifications required of employees assigned to this job. The full Job Description can be made available as part of the hiring process.\n\nMinimum Qualifications...\n\nOutlined below are the required minimum qualifications for this position. If none are listed, there are no minimum qualifications.\n\nOption 1: Bachelor's degree in computer science, computer engineering, computer information systems, software engineering, or related area and 2 years’ experience in software engineering or related area.Option 2: 4 years’ experience in software engineering or related area.\n\nPreferred Qualifications...\n\nOutlined below are the optional preferred qualifications for this position. If none are listed, there are no preferred qualifications.\n\nCustomer Service\n\nMasters: Computer Science\n\nPrimary Location...\n805 SE MOBERLY LN, BENTONVILLE, AR 72712, United States of America", + "job_is_remote": false, + "job_posted_at_timestamp": 1698105600, + "job_posted_at_datetime_utc": "2023-10-24T00:00:00.000Z", + "job_city": "Bentonville", + "job_state": "AR", + "job_country": "US", + "job_latitude": 36.372356, + "job_longitude": -94.21021, + "job_benefits": [ + "health_insurance", + "paid_time_off", + "retirement_savings" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=0&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=yj3XyQEFA-4cQWxnAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 48, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Programming expertise on Java, Springboot, SQL and no-SQL Databases such as Azure SQL, MS SQL, Cassandra", + "Knowledge Apache Camel, Kafka", + "Docker, Kubernetes", + "Running infrastructure with public or private cloud environments and platforms like Azure, GCP", + "Option 1: Bachelor's degree in computer science, computer engineering, computer information systems, software engineering, or related area and 2 years’ experience in software engineering or related area" + ], + "Responsibilities": [ + "As a Software Engineer III, you are responsible for translating requirements into technical solutions with the focus of creating the best user experience for our associates and customers", + "You will be part of a small project team consisting of other engineers who will work together to deliver value and ensure code quality", + "Communication is also key as you will need to work closely with product owners, designers, and other engineers", + "As a Software in Engineer on the Record Sales team you will help to develop highly available and scalable APIs to process financial transactions for NextGen point of sale (POS) system and Walmart omni channel clients", + "You will be helping with Operations of Record sales team to support multiple countries including United Sates, Canada and China", + "You will be helping to build various tools to check the health of the system, deploying applications into various clouds using Docker and Kubernetes and building various dashboards" + ], + "Benefits": [ + "Benefits: Beyond our great compensation package, you can receive incentive awards for your performance", + "Other great perks include 401(k) match, stock purchase plan, paid maternity and parental leave, PTO, multiple health plans, and much more" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_naics_code": "452990", + "job_naics_name": "All Other General Merchandise Stores" + }, + { + "employer_name": "Citadel", + "employer_logo": "https://upload.wikimedia.org/wikipedia/commons/thumb/4/45/Citadel_LLC_Logo.svg/2560px-Citadel_LLC_Logo.svg.png", + "employer_website": "http://www.citadel.com", + "employer_company_type": "Finance", + "job_publisher": "Citadel", + "job_id": "HFssg_CLBOAx0x-KAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer", + "job_apply_link": "https://www.citadel.com/careers/details/software-engineer/", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.9193, + "apply_options": [ + { + "publisher": "Citadel", + "apply_link": "https://www.citadel.com/careers/details/software-engineer/", + "is_direct": false + }, + { + "publisher": "Citadel Securities", + "apply_link": "https://www.citadelsecurities.com/careers/details/software-engineer-grace-hopper-conference-2023/", + "is_direct": false + }, + { + "publisher": "Trabajo.org", + "apply_link": "https://us.trabajo.org/job-1373-20231010-a8c39e0bb4153d9e8ff085e67a16c5ed", + "is_direct": false + }, + { + "publisher": "BeBee", + "apply_link": "https://us.bebee.com/job/20231010-dfb973e367f52f3a3b15dd7c3028ab51", + "is_direct": false + } + ], + "job_description": "At Citadel, Software Engineers are responsible for building the systems that power every aspect of our investment process, from research and analysis to trading, risk management, funding and settlement. Working side by side with investors and quantitative researchers, we use our technical skills to drive critical commercial outcomes. If you’re interested in financial markets and excited by the prospect of having real impact in a fast-paced environment where everyone is inspired to be their best, we’re excited to meet you.\n\nOur most successful engineers are critical thinkers who know how to dissect the problem as proficiently as they know how to build the solution. While we look for technical acumen, commercial acumen is just as important. That includes the ability to flex, change course, and iterate without always having pre-defined specs.\n\nYOUR OPPORTUNITY:\nFrom system engineers who create next-gen platforms to desk-aligned developers who partner with investment teams to increase efficiency and maximize returns, our engineering opportunities are as varied as they are challenging. If you are selected for an interview, one of our recruiters will be in touch to review the specific roles, teams and regions that best align with your skills, seniority, and experience.\n\nYOUR SKILLS & TALENTS:\n• 6+ years of professional software engineering experience\n• Solid computer science fundamentals\n• Expert level programing skills in at least one of the following: Java, C++, Python\n• Proven track record in software design and development\n• Excellent analysis / problem solving skills\n• Strong communication and teamwork skills\n• Ability to manage multiple tasks in a demanding and dynamic environment\n• Minimum of a Bachelor’s degree in Computer Science or a related STEM discipline\n\nIn accordance with New York City’s Pay Transparency Law, the base salary range for this role is 150,000ドル to 300,000ドル. Base salary does not include other forms of compensation or benefits.", + "job_is_remote": false, + "job_posted_at_timestamp": 1698278400, + "job_posted_at_datetime_utc": "2023-10-26T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": ["health_insurance"], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=0&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=HFssg_CLBOAx0x-KAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 72, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": ["java", "python", "C++"], + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "6+ years of professional software engineering experience", + "Solid computer science fundamentals", + "Expert level programing skills in at least one of the following: Java, C++, Python", + "Proven track record in software design and development", + "Excellent analysis / problem solving skills", + "Strong communication and teamwork skills", + "Ability to manage multiple tasks in a demanding and dynamic environment", + "Minimum of a Bachelor’s degree in Computer Science or a related STEM discipline" + ], + "Benefits": [ + "Base salary does not include other forms of compensation or benefits" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_naics_code": "523920", + "job_naics_name": "Portfolio Management" + }, + { + "employer_name": "Talentify.io", + "employer_logo": "https://images.crunchbase.com/image/upload/c_lpad,h_256,w_256,f_auto,q_auto:eco,dpr_1/izo8611kxbziew6eagef", + "employer_website": "http://talentifyhr.com", + "employer_company_type": null, + "job_publisher": "LinkedIn", + "job_id": "iUFw0r-5yjJHuTs9AAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer (Remote)", + "job_apply_link": "https://www.linkedin.com/jobs/view/software-engineer-remote-at-talentify-io-3749253856", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.5962, + "apply_options": [ + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/software-engineer-remote-at-talentify-io-3749253856", + "is_direct": false + }, + { + "publisher": "Talentify", + "apply_link": "https://first-american-financial-1.talentify.io/job/remote-software-engineer-santa-ana-california-first-american-financial-r042129", + "is_direct": false + } + ], + "job_description": "Employer Industry: Software Development\n\nWhy Consider This Job Opportunity\n• Competitive pay up to 110,000ドル\n• Opportunity for professional growth and advancement within the organization\n• Remote work flexibility\n• Comprehensive benefits package, including medical, dental, and vision coverage, 401(k) match, and tuition reimbursement\n• Unique incentive programs and rewards for eligible employees\n• Collaborative and motivating work environment\n\nWhat To Expect (Job Responsibilities)\n• Collaborate with customers, stakeholders, developers, and team members to develop software applications\n• Assist in defining software objectives, deliverables, and specifications\n• Research, analyze, and fulfill requirements of internal and external users\n• Enhance functionality and performance of company applications through software development\n• Conduct software testing, debugging, and monitoring\n\nWhat Is Required (Qualifications)\n• Bachelor's degree in Computer Science, Information Systems, or related field\n• Experience with C#, Angular, Azure, CI/CD, and DevOps\n• Minimum 3 years of software development experience\n• Knowledge of application development and agile methodologies\n• Understanding of software engineering best practices\n• Proficiency in object-oriented programming and design\n\nHow To Stand Out (Preferred Qualifications)\n• Knowledge of programming for different delivery approaches (on-premises, web, cloud, mobile)\n\n#SoftwareDevelopment #CompetitivePay #RemoteWork #ProfessionalGrowth #CollaborativeEnvironment\n\nAt Talentify, we prioritize candidate privacy and champion equal-opportunity employment. Central to our mission is our partnership with companies that share this commitment. We aim to foster a fair, transparent, and secure hiring environment for all. If you encounter any employer not adhering to these principles, please bring it to our attention immediately.\n\nTalentify is not the EOR (Employer of Record) for this position. Our role in this specific opportunity is to connect outstanding candidates with a top-tier employer.\n\nTalentify helps candidates around the world to discover and stay focused on the jobs they want until they can complete a full application in the hiring company career page/ATS.", + "job_is_remote": true, + "job_posted_at_timestamp": 1698311730, + "job_posted_at_datetime_utc": "2023-10-26T09:15:30.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "health_insurance", + "dental_coverage", + "retirement_savings" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=0&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=iUFw0r-5yjJHuTs9AAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": "2023-11-25T09:15:30.000Z", + "job_offer_expiration_timestamp": 1700903730, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 36, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": true, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Bachelor's degree in Computer Science, Information Systems, or related field", + "Experience with C#, Angular, Azure, CI/CD, and DevOps", + "Minimum 3 years of software development experience", + "Knowledge of application development and agile methodologies", + "Understanding of software engineering best practices", + "Proficiency in object-oriented programming and design" + ], + "Responsibilities": [ + "Collaborate with customers, stakeholders, developers, and team members to develop software applications", + "Assist in defining software objectives, deliverables, and specifications", + "Research, analyze, and fulfill requirements of internal and external users", + "Enhance functionality and performance of company applications through software development", + "Conduct software testing, debugging, and monitoring" + ], + "Benefits": [ + "Competitive pay up to 110,000ドル", + "Opportunity for professional growth and advancement within the organization", + "Remote work flexibility", + "Comprehensive benefits package, including medical, dental, and vision coverage, 401(k) match, and tuition reimbursement", + "Unique incentive programs and rewards for eligible employees", + "Collaborative and motivating work environment" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4" + }, + { + "employer_name": "Walmart", + "employer_logo": "https://animationvisarts.com/wp-content/uploads/2020/08/Walmart-logo-2008-Now.jpg", + "employer_website": "https://www.walmart.com", + "employer_company_type": "Retail", + "job_publisher": "Walmart Careers", + "job_id": "EiWmDKAee-r4IvNLAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer III", + "job_apply_link": "https://careers.walmart.com/us/jobs/WD1546581-software-engineer-iii", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.7968, + "apply_options": [ + { + "publisher": "Walmart Careers", + "apply_link": "https://careers.walmart.com/us/jobs/WD1546581-software-engineer-iii", + "is_direct": false + }, + { + "publisher": "Dice", + "apply_link": "https://www.dice.com/job-detail/8d2fca5d-9c9c-4578-91e6-774a6c545604", + "is_direct": false + }, + { + "publisher": "The Muse", + "apply_link": "https://www.themuse.com/jobs/walmart/software-engineer-iii-3e3179", + "is_direct": true + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=47e8b243afba3f60", + "is_direct": false + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/software-engineer-iii-at-sam-s-club-3742203632", + "is_direct": false + }, + { + "publisher": "Levels.fyi", + "apply_link": "https://www.levels.fyi/jobs?jobId=138994833122304710", + "is_direct": false + }, + { + "publisher": "SimplyHired", + "apply_link": "https://www.simplyhired.com/job/tjIwLx7IiA6I0_5Vf0KdikGHe-fEiqeh0ZooROeovS-GgdnKQ5OQVg", + "is_direct": false + }, + { + "publisher": "Ladders", + "apply_link": "https://www.theladders.com/job/software-engineer-iii-walmart-bentonville-ar_64918071", + "is_direct": false + } + ], + "job_description": "Position Summary...\n\nWhat you'll do...\n\nDo you have boundless energy and passion for engineering data used to solve dynamic problems that will shape the future of retail? With the sheer scale of Walmart’s environment comes the biggest of big data sets.\n\nAs a Software Engineer III, you are responsible for translating requirements into technical solutions with the focus of creating the best user experience for our customers. You will be part of a small project team consisting of other engineers who will work together to deliver value and ensure code quality. Communication is also key as you will need to work closely with product owners, designers, and other engineers.\n\nAbout the Team:\nData Ventures exists to unlock the full value of Walmart’s data by developing and productizing B2B data initiatives that empower merchants and suppliers to make better, faster decisions for the business. As part of this transformation, we are seeking entrepreneurial individuals to help drive data productization from concept to deployment.\n\nWhat You'll do\n• Design and develop user-facing features with maintainability, reusability, and scalability in mind.\n• Collaborating with project teams and cross-functional teams. Troubleshooting open issues and bug fixes, ensuring on-time delivery and hand-offs. Interacting with the project manager to provide input on the project plan. Ensuring code quality with code reviews and being aware of best practices.\n• Provides support to the business by responding to user questions, concerns, and issues (for example, technical feasibility, implementation strategies); researching and identifying needed solutions; determining implementation designs; providing guidance regarding implications of new and enhanced systems; identifying short- and long-term solutions; and directing users to appropriate contacts for issues outside of associate's domain.\n• Troubleshoots business and production issues by gathering information (for example, issue, impact, criticality, possible root cause); performing root cause analysis to reduce future issues; engaging support teams to assist in the resolution of issues; driving the development of an action plan; performing actions as designated in the plan; interpreting the results to determine further action; and completing online documentation.\n• Participates in the discovery phase of small to medium-sized projects to produce high- level design by partnering with the product management, project management, business, and user experience teams.\n• Demonstrates up-to-date expertise and applies this to the development, execution, and improvement of action plans by providing expert advice and guidance to others in the application of information and best practices; supporting and aligning efforts to meet customer and business needs; and building commitment for perspectives and rationales.\n• Provides and supports the implementation of business solutions by building relationships and partnerships with key stakeholders; identifying business needs; determining and carrying out necessary processes and practices; monitoring progress and results; recognizing and capitalizing on improvement opportunities; and adapting to competing demands, organizational changes, and new responsibilities.\n• Model’s compliance with company policies and procedures and supports company mission, values, and standards of ethics and integrity by incorporating these into the development and implementation of business plans; using the Open Door Policy; and demonstrating and assisting others with how to apply these in executing business processes and practices.\n\nWhat You’ll Bring\n• High-level proficiency in using the following technologies to build modern web experiences: JavaScript, Typescript, AngularJS, HTML, and CSS/SASS\n• Experience with Observables and RxJS\n• General understanding of software development lifecycle from planning to deployment.\n• Experience consuming, building, and deploying APIs and applications.\n• Ensure the technical feasibility of UI/UX designs and knowledge of Accessibility design principles.\n• Knowledge of Cloud (GCP or Azure), SQL, Mongo DB, and CI/CD\n• Knowledge of backend technologies like C# and Java\n• A disciplined approach to development, code review, testing, documentation, and code structure in a team environment.\n• A constant desire to improve, learn more, and take things to the next level, and a passion for adopting the latest features in the technologies that we leverage.\n• Ability to lead our technical relationship with partners and mentor a team of developers.\n\nNice to Have\n• Experience with Figma\n• Experience with containerization technologies such as Docker and Kubernetes\n\nThe above information has been designed to indicate the general nature and level of work performed in the role. It is not designed to contain or be interpreted as a comprehensive inventory of all duties, responsibilities, and qualifications required of employees assigned to this job. The full Job Description can be made available as part of the hiring process.\n\nAbout Global Tech\nImagine working in an environment where one line of code can make life easier for hundreds of millions of people. That’s what we do at Walmart Global Tech. We’re a team of software engineers, data scientists, cybersecurity expert and service professionals within the world’s leading retailer who make an epic impact and are at the forefront of the next retail disruption. People are why we innovate, and people power our innovations. We are people-led and tech-empowered. We train our team in the skillsets of the future and bring in experts like you to help us grow. We have roles for those chasing their first opportunity as well as those looking for the opportunity that will define their career. Here, you can kickstart a great career in tech, gain new skills and experience for virtually every industry, or leverage your expertise to innovate at scale, impact millions and reimagine the future of retail.\n\nFlexible, hybrid work\nWe use a hybrid way of working that is primarily in the office coupled with virtual when not onsite. Our campuses serve as a hub to enhance collaboration, bring us together for a purpose, and deliver on business needs. This approach helps us make quicker decisions, remove location barriers across our global team and be more flexible in our personal lives.\n\nBenefits & Perks:\nBeyond our great compensation package, you can receive incentive awards for your performance. Other great perks include 401(k) match, stock purchase plan, paid maternity and parental leave, PTO, multiple health plans, and much more.\n\nEqual Opportunity Employer:\nWalmart, Inc. is an Equal Opportunity Employer – By Choice. We believe we are best equipped to help our associates, customers, and the communities we serve live better when we really know them. That means understanding, respecting, and valuing diversity- unique styles, experiences, identities, ideas, and opinions – while being inclusive of all people.\n\nMinimum Qualifications...\n\nOutlined below are the required minimum qualifications for this position. If none are listed, there are no minimum qualifications.\n\nOption 1: Bachelor's degree in computer science, computer engineering, computer information systems, software engineering, or related area and 2 years’ experience in software engineering or related area.Option 2: 4 years’ experience in software engineering or related area.\n\nPreferred Qualifications...\n\nOutlined below are the optional preferred qualifications for this position. If none are listed, there are no preferred qualifications.\n\nCustomer Service\n\nMasters: Computer Science\n\nPrimary Location...\n702 SW 8TH ST, BENTONVILLE, AR 72716, United States of America", + "job_is_remote": false, + "job_posted_at_timestamp": 1698105600, + "job_posted_at_datetime_utc": "2023-10-24T00:00:00.000Z", + "job_city": "Bentonville", + "job_state": "AR", + "job_country": "US", + "job_latitude": 36.372356, + "job_longitude": -94.21021, + "job_benefits": [ + "health_insurance", + "retirement_savings", + "paid_time_off" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=0&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=EiWmDKAee-r4IvNLAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 48, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "High-level proficiency in using the following technologies to build modern web experiences: JavaScript, Typescript, AngularJS, HTML, and CSS/SASS", + "Experience with Observables and RxJS", + "General understanding of software development lifecycle from planning to deployment", + "Ensure the technical feasibility of UI/UX designs and knowledge of Accessibility design principles", + "Knowledge of Cloud (GCP or Azure), SQL, Mongo DB, and CI/CD", + "Knowledge of backend technologies like C# and Java", + "A disciplined approach to development, code review, testing, documentation, and code structure in a team environment", + "A constant desire to improve, learn more, and take things to the next level, and a passion for adopting the latest features in the technologies that we leverage", + "Ability to lead our technical relationship with partners and mentor a team of developers", + "Experience with Figma", + "Experience with containerization technologies such as Docker and Kubernetes", + "Option 1: Bachelor's degree in computer science, computer engineering, computer information systems, software engineering, or related area and 2 years’ experience in software engineering or related area" + ], + "Responsibilities": [ + "As a Software Engineer III, you are responsible for translating requirements into technical solutions with the focus of creating the best user experience for our customers", + "You will be part of a small project team consisting of other engineers who will work together to deliver value and ensure code quality", + "Communication is also key as you will need to work closely with product owners, designers, and other engineers", + "Design and develop user-facing features with maintainability, reusability, and scalability in mind", + "Collaborating with project teams and cross-functional teams", + "Troubleshooting open issues and bug fixes, ensuring on-time delivery and hand-offs", + "Interacting with the project manager to provide input on the project plan", + "Ensuring code quality with code reviews and being aware of best practices", + "Provides support to the business by responding to user questions, concerns, and issues (for example, technical feasibility, implementation strategies); researching and identifying needed solutions; determining implementation designs; providing guidance regarding implications of new and enhanced systems; identifying short- and long-term solutions; and directing users to appropriate contacts for issues outside of associate's domain", + "Troubleshoots business and production issues by gathering information (for example, issue, impact, criticality, possible root cause); performing root cause analysis to reduce future issues; engaging support teams to assist in the resolution of issues; driving the development of an action plan; performing actions as designated in the plan; interpreting the results to determine further action; and completing online documentation", + "Participates in the discovery phase of small to medium-sized projects to produce high- level design by partnering with the product management, project management, business, and user experience teams", + "Demonstrates up-to-date expertise and applies this to the development, execution, and improvement of action plans by providing expert advice and guidance to others in the application of information and best practices; supporting and aligning efforts to meet customer and business needs; and building commitment for perspectives and rationales", + "Provides and supports the implementation of business solutions by building relationships and partnerships with key stakeholders; identifying business needs; determining and carrying out necessary processes and practices; monitoring progress and results; recognizing and capitalizing on improvement opportunities; and adapting to competing demands, organizational changes, and new responsibilities", + "Model’s compliance with company policies and procedures and supports company mission, values, and standards of ethics and integrity by incorporating these into the development and implementation of business plans; using the Open Door Policy; and demonstrating and assisting others with how to apply these in executing business processes and practices" + ], + "Benefits": [ + "Beyond our great compensation package, you can receive incentive awards for your performance", + "Other great perks include 401(k) match, stock purchase plan, paid maternity and parental leave, PTO, multiple health plans, and much more" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_naics_code": "452990", + "job_naics_name": "All Other General Merchandise Stores" + }, + { + "employer_name": "Deluxe", + "employer_logo": "https://www.deluxe.com/content/dam/deluxe/us/en/site-global/deluxe_logo_2020@2x.png", + "employer_website": "http://www.deluxe.com", + "employer_company_type": "Manufacturing", + "job_publisher": "LinkedIn", + "job_id": "02Cow0wZ0R9HcIk0AAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer 5", + "job_apply_link": "https://www.linkedin.com/jobs/view/software-engineer-5-at-deluxe-3746869242", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.6485, + "apply_options": [ + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/software-engineer-5-at-deluxe-3746869242", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=416dd2f2b51e3562", + "is_direct": false + }, + { + "publisher": "Glassdoor", + "apply_link": "https://www.glassdoor.com/job-listing/software-engineer-5-deluxe-corporation-JV_KO0,19_KE20,38.htm?jl=1008945810040", + "is_direct": false + } + ], + "job_description": "The Senior Software Engineer works collaboratively with engineering management, product managers and other software engineers to develop new product offerings and improve existing installed or SAAS solutions for clients within the financial services industry.\n• Work closely with executive leadership, product managers and other software engineers to develop new product offerings and improve existing SAAS solution for clients within the financial services industry\n• Develop and coordinate estimates for software defects, new features, and enhancements that are included in service releases\n• Participate in discussions regarding new product development and product enhancements\n• Design, document, code and deploy new features and defects for system related issues (including the creation of T-SQL queries, creation of web services, client-side JavaScript (including jQuery) and .NET development)\n• Participate in high-level estimates for proposed projects, poker planning for future features, and task estimates for software defects and features at sprint planning\n\nBasic Qualifications:\n\nEducation and Experience: Bachelors and 3 years or HS/GED and 7 years\n\nPreferred Qualifications:\n\nEducation: Bachelors in Computer Science or related field\n\nExperience: 8 years in full cycle design development, or .bnet solutions\n\nDeluxe Corporation is an Equal Opportunity / Affirmative Action employer:\n\nAll qualified applicants will receive consideration for employment without regard to race, color, creed, religion, disability, sex, age, ethnic or national origin, marital status, sexual orientation, gender identity or presentation, pregnancy, genetics, veteran status or any other status protected by state or federal law.\n\nEOE/Minorities/Females/Vet/Disability\n\nPlease view the electronic EEO is the Law Poster which serves to inform you of your equal employment opportunity protections as part of the application process.\n\nReasonable Accommodation for Job Seekers with a Disability: If you require reasonable accommodation in completing this application, interviewing, completing any pre-employment testing, or otherwise participating in the employee selection process, please direct your inquiries to deluxecareers@deluxe.com.", + "job_is_remote": true, + "job_posted_at_timestamp": 1698274083, + "job_posted_at_datetime_utc": "2023-10-25T22:48:03.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=0&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=02Cow0wZ0R9HcIk0AAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": "2023-11-24T22:48:03.000Z", + "job_offer_expiration_timestamp": 1700866083, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": true, + "degree_mentioned": true, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Education and Experience: Bachelors and 3 years or HS/GED and 7 years", + "Education: Bachelors in Computer Science or related field", + "Experience: 8 years in full cycle design development, or .bnet solutions" + ], + "Responsibilities": [ + "The Senior Software Engineer works collaboratively with engineering management, product managers and other software engineers to develop new product offerings and improve existing installed or SAAS solutions for clients within the financial services industry", + "Develop and coordinate estimates for software defects, new features, and enhancements that are included in service releases", + "Participate in discussions regarding new product development and product enhancements", + "Design, document, code and deploy new features and defects for system related issues (including the creation of T-SQL queries, creation of web services, client-side JavaScript (including jQuery) and .NET development)", + "Participate in high-level estimates for proposed projects, poker planning for future features, and task estimates for software defects and features at sprint planning" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_naics_code": "323118", + "job_naics_name": "Blankbook, Looseleaf Binders, and Devices Manufacturing" + }, + { + "employer_name": "Cox Enterprises", + "employer_logo": null, + "employer_website": null, + "employer_company_type": null, + "job_publisher": "Cox Careers - Cox Enterprises", + "job_id": "i3AY49gLDKnMEvXwAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Big Data/Cloud Software Engineer ll", + "job_apply_link": "https://jobs.coxenterprises.com/en/jobs/job/r202332758-big-data-cloud-software-engineer-ll/", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.9098, + "apply_options": [ + { + "publisher": "Cox Careers - Cox Enterprises", + "apply_link": "https://jobs.coxenterprises.com/en/jobs/job/r202332758-big-data-cloud-software-engineer-ll/", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=501098e7d1bfe543", + "is_direct": false + }, + { + "publisher": "Jobgether", + "apply_link": "https://jobgether.com/offer/6537811d64a13bb96e602005-big-datacloud-software-engineer-ll", + "is_direct": false + }, + { + "publisher": "Glassdoor", + "apply_link": "https://www.glassdoor.com/job-listing/big-data-cloud-software-engineer-ll-cox-communications-JV_IC1143063_KO0,35_KE36,54.htm?jl=1008941082236", + "is_direct": false + }, + { + "publisher": "JobServe", + "apply_link": "https://www.jobserve.com/us/en/extjob/BIG-DATA-CLOUD-SOFTWARE-ENGINEER-LL-in-Nevada-USA-8785992F1F480B0D00/", + "is_direct": false + } + ], + "job_description": "Cox Communications is the largest private telecom company in America, and we proudly serve six million homes and businesses across 18 states. At Cox, we are committed to creating meaningful moments of human connection, not only with our products and services, but also with our career opportunities. Come connect with us and let’s build a better future together.\n\nAs a Software Engineer II you will write and maintain data-driven code, create solutions to implement capabilities and features, improve performance and maintainability while reducing technical debt in alignment with technology roadmaps.\n\nPrimary Responsibilities and Essential Functions:\n• Aid in design and maintain the integrity of solutions.\n• Work directly with stakeholders to understand real world problems in our domain.\n• Design and deliver technical solutions to business and product problems.\n• Evolve problem statements into actionable items that enable the team to deliver measurable value.\n• Demonstrate ownership of initiatives and drive them through to completion.\n• Gather and processes raw, structured, semi-structured, and unstructured data using batch and real-time data processing frameworks.\n• Working in a continuous integration, testing, and delivery SDLC employing automation\n• Eager to dig into problems and bring proposed solutions to group discussion.\n• Open to feedback and able to creatively adapt multiple ideas into a solution.\n• Analytical skills and the ability to pay careful attention to detail.\n• Technical writing including high- and low-level diagramming techniques.\n• Performs trouble-shooting efforts and investigations when necessary.\n• Actively participates in the engineering community, staying up to date on new software technologies and best practices and shares insights with others in the organization.\n\nQualifications\nMinimum:\n• Bachelor’s degree in a related discipline and 2 years’ experience in a related field. The right candidate could also have a different combination, such as a master’s degree and up to 2 years’ experience; or 14 years’ experience in a related field.\n• Demonstrated experience with data platforms: Big Data (Java, Python, PySpark..) and Cloud AWS Serverless Computing stack (e.g., Lambda, DynamoDB, S3, SQS, API Gateway, AWS Glue et al.)\n• Excellent analytical, decision-making, problem-solving, team and time management.\n• Knowledge of end-to-end systems development life cycles for software development\n• Excellent verbal and written communication skills to technical and non-technical audiences of various levels in the organization\n• Ability to estimate work effort for project sub-plans or small projects\n• Positive outlook, strong work ethic, and responsive to stakeholders and partners\n• Resourceful and proactive in gathering information and sharing ideas\n\nPreferred:\n• Azure, AWS, or Snowflake Cloud skills (preferably AWS) based around the design and development of multiple data pipeline.\n• Hadoop ecosystem tools and concepts like Hive, Kafka, Spark, Scala, Hbase or Sqoop.\n• Experience working in an Agile Development environment.\n• Experience working on a DevOps Team.\n\n#LI-104", + "job_is_remote": true, + "job_posted_at_timestamp": 1698071628, + "job_posted_at_datetime_utc": "2023-10-23T14:33:48.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=0&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=i3AY49gLDKnMEvXwAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 168, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Bachelor’s degree in a related discipline and 2 years’ experience in a related field", + "The right candidate could also have a different combination, such as a master’s degree and up to 2 years’ experience; or 14 years’ experience in a related field", + "Demonstrated experience with data platforms: Big Data (Java, Python, PySpark..) and Cloud AWS Serverless Computing stack (e.g., Lambda, DynamoDB, S3, SQS, API Gateway, AWS Glue et al.)", + "Excellent analytical, decision-making, problem-solving, team and time management", + "Knowledge of end-to-end systems development life cycles for software development", + "Excellent verbal and written communication skills to technical and non-technical audiences of various levels in the organization", + "Ability to estimate work effort for project sub-plans or small projects", + "Positive outlook, strong work ethic, and responsive to stakeholders and partners", + "Resourceful and proactive in gathering information and sharing ideas" + ], + "Responsibilities": [ + "As a Software Engineer II you will write and maintain data-driven code, create solutions to implement capabilities and features, improve performance and maintainability while reducing technical debt in alignment with technology roadmaps", + "Aid in design and maintain the integrity of solutions", + "Work directly with stakeholders to understand real world problems in our domain", + "Design and deliver technical solutions to business and product problems", + "Evolve problem statements into actionable items that enable the team to deliver measurable value", + "Demonstrate ownership of initiatives and drive them through to completion", + "Gather and processes raw, structured, semi-structured, and unstructured data using batch and real-time data processing frameworks", + "Working in a continuous integration, testing, and delivery SDLC employing automation", + "Eager to dig into problems and bring proposed solutions to group discussion", + "Open to feedback and able to creatively adapt multiple ideas into a solution", + "Technical writing including high- and low-level diagramming techniques", + "Performs trouble-shooting efforts and investigations when necessary", + "Actively participates in the engineering community, staying up to date on new software technologies and best practices and shares insights with others in the organization" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113300", + "job_onet_job_zone": "4" + }, + { + "employer_name": "IQVIA", + "employer_logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTURhSvBE7FNpbU1HcDE7eFq8zck5wJPbXRYr8W&s=0", + "employer_website": null, + "employer_company_type": null, + "job_publisher": "Iqvia", + "job_id": "Lhvci8oUGhED3qPdAAAAAA==", + "job_employment_type": "PARTTIME", + "job_title": "Field Software Engineer/Biomedical Technician - Kansas City, MO", + "job_apply_link": "https://jobs.iqvia.com/job/kansas-city/field-software-engineer-biomedical-technician-kansas-city-mo/24443/55970437280", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.9158, + "apply_options": [ + { + "publisher": "Iqvia", + "apply_link": "https://jobs.iqvia.com/job/kansas-city/field-software-engineer-biomedical-technician-kansas-city-mo/24443/55970437280", + "is_direct": false + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/field-software-engineer-biomedical-technician-kansas-city-mo-at-iqvia-3747164509", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=2fece10f5fee6a71", + "is_direct": false + }, + { + "publisher": "SimplyHired", + "apply_link": "https://www.simplyhired.com/job/gdbZ76hUL-hYOuLISYanR0ryccT1B4WoLu5KU2Ms-ddlNuI7qeR4Nw", + "is_direct": false + }, + { + "publisher": "Job Listings | Barklis", + "apply_link": "https://barklis.com/job-listings/01hdnbcp04c9xp9pf97rrbm6fm", + "is_direct": false + } + ], + "job_description": "We welcome you to apply if interested! You will be asked to create an account, which takes less than one minute and requires only a username and password. The entire application takes no more than 5-7 minutes to complete.\n\nPosition Description:\n\nOur Field Software Engineers/Biomedical Technicians & Early Entry Candidates experience a unique opportunity to employ their technical experience by collaborating with healthcare professionals and leading technical initiatives in medical device technology.\n\nYou will be responsible for software upgrades, installations, and troubleshooting medical devices in a hospital with the support of an on-site team. The current product line being supported is an infusion pump device.\n\nThis is a great opportunity for you to advance your technical and leadership /skills! Experience in healthcare, field service, engineering, biomedical, maintenance, customer service, electronics, electrical, technical work, or IT is beneficial for this position.\n\nIQVIA takes the approach to helping customers drive healthcare forward in this challenging, fast-paced environment. We help customers accelerate results, improve patient outcomes, and unleash new opportunities\n\nWe are hiring immediately ASAP; Targeted offer date is November 13th with an expected start date of November 27th.\n\nYou will have a flexible schedule and an opportunity to grow and expand into new opportunities while earning supplemental income and learning the medical device industry\n\nJob Requirements:\n\n· A Biomedical and/or a Computer Engineer background is preferred\n\n· An active, unrestricted and valid driver license and reliable transportation is required for this position\n\n· Must be comfortable with basic software programs and Microsoft operating system as well as experience with excel spreadsheets\n\n· Ability to assemble and disassemble equipment and devices\n\n· Ability to sit and stand for long periods of time\n\nResponsibilities:\n\n· Organizing, testing, and updating medical devices, installing and configuring hardware, software, and network products.\n\n· Set-up and organization of equipment and workstations.\n\n· Conduct routine checks and records data from product tests after installation and configuration.\n\n· Oversee a team of support staff, manage project timelines and customer needs.\n\n· Per-diem position requiring local travel within Kansas City, with potential overnight travel specific to initial training classes\n\n· Assignment length is approximately 34 weeks with potential to extend\n\n· 35-40 hrs. per week based on client needs\n\nHourly rate will be between 30ドル-35ドル based on level of experience\n\nDuties may require compliance with client requirements that all those performing services on-site be fully vaccinated.\n\nFT1\n\n#LI-CE\n\nIQVIA is a leading global provider of advanced analytics, technology solutions and clinical research services to the life sciences industry. We believe in pushing the boundaries of human science and data science to make the biggest impact possible – to help our customers create a healthier world. Learn more at https://jobs.iqvia.com\n\nWe are committed to providing equal employment opportunities for all, including veterans and candidates with disabilities. https://jobs.iqvia.com/eoe\n\nIQVIA’s ability to operate and provide certain services to customers and partners necessitates IQVIA and its employees meet specific requirements regarding COVID-19 vaccination status. https://jobs.iqvia.com/covid-19-vaccine-status", + "job_is_remote": false, + "job_posted_at_timestamp": 1698192000, + "job_posted_at_datetime_utc": "2023-10-25T00:00:00.000Z", + "job_city": "Kansas City", + "job_state": "MO", + "job_country": "US", + "job_latitude": 39.099728, + "job_longitude": -94.57857, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=0&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=Lhvci8oUGhED3qPdAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Experience in healthcare, field service, engineering, biomedical, maintenance, customer service, electronics, electrical, technical work, or IT is beneficial for this position", + "An active, unrestricted and valid driver license and reliable transportation is required for this position", + "Must be comfortable with basic software programs and Microsoft operating system as well as experience with excel spreadsheets", + "Ability to assemble and disassemble equipment and devices", + "Ability to sit and stand for long periods of time", + "IQVIA’s ability to operate and provide certain services to customers and partners necessitates IQVIA and its employees meet specific requirements regarding COVID-19 vaccination status" + ], + "Responsibilities": [ + "You will be responsible for software upgrades, installations, and troubleshooting medical devices in a hospital with the support of an on-site team", + "The current product line being supported is an infusion pump device", + "Organizing, testing, and updating medical devices, installing and configuring hardware, software, and network products", + "Set-up and organization of equipment and workstations", + "Conduct routine checks and records data from product tests after installation and configuration", + "Oversee a team of support staff, manage project timelines and customer needs", + "Per-diem position requiring local travel within Kansas City, with potential overnight travel specific to initial training classes", + "Assignment length is approximately 34 weeks with potential to extend", + "35-40 hrs" + ], + "Benefits": [ + "You will have a flexible schedule and an opportunity to grow and expand into new opportunities while earning supplemental income and learning the medical device industry", + "Hourly rate will be between 30ドル-35ドル based on level of experience" + ] + }, + "job_job_title": "Technician", + "job_posting_language": "en", + "job_onet_soc": "49906200", + "job_onet_job_zone": "3" + }, + { + "employer_name": "Mastercard", + "employer_logo": "https://www.mastercard.us/content/dam/public/mastercardcom/na/us/en/homepage/Home/mc-logo-52.svg", + "employer_website": "http://www.mastercard.com", + "employer_company_type": "Finance", + "job_publisher": "Careers At Mastercard", + "job_id": "mpSIWsx48NB3-NW8AAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Lead Software Engineer", + "job_apply_link": "https://careers.mastercard.com/us/en/job/R-206810/Lead-Software-Engineer", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.9032, + "apply_options": [ + { + "publisher": "Careers At Mastercard", + "apply_link": "https://careers.mastercard.com/us/en/job/R-206810/Lead-Software-Engineer", + "is_direct": false + }, + { + "publisher": "Black Career Network", + "apply_link": "https://www.ihispano.com/job/lead-software-engineer-remote-new-york-13697971", + "is_direct": false + } + ], + "job_description": "Job Title:\n\nLead Software Engineer\n\nOverview:\n\nABOUT MASTERCARD\nMastercard is a global technology company in the payments industry. Our mission is to connect and power an inclusive, digital economy that benefits everyone, everywhere by making transactions safe, simple, smart, and accessible. At Mastercard, our industry expertise is enhanced by our commitment to being a force for good in the world. We do well by doing good. Our core values of trust, partnership, agility, and thoughtful risk taking are displayed in everything we do. Our culture of collaboration and inclusion makes our company the place where the best people choose to be.\n\nOVERVIEW\nOn the Cloud Platform team, you will be working with Mastercard’s Azure Platform Engineering team. The team is responsible for developing the best of breed Azure Platform capabilities to application development teams such that automated cloud infrastructure can be provided to software engineering and operation teams.\n\nThe Role\n• Implement solutions to manage Mastercard’s Azure infrastructure via code.\n• Engage and improve the lifecycle of the Azure platform and services -- from development to deployment, operation, and refinement.\n• Scale systems sustainably through mechanisms like automation, and evolve systems by pushing for changes that improve reliability and velocity.\n• Design and Develop scalable Big Data Warehouse solutions\n• Practice sustainable incident response and blameless postmortem.\n\nAll About You\n• Experience in the fields of Computer Science or Software Engineering.\n• Experience in Azure infrastructure provisioning through automation tools Terraform.\n• Experience in the design and development of scalable Big Data Warehouse solutions on the Cloud\n• Experience programming in at least one of the following languages: Python, Java, Go, Bash, etc.\n• Experience using DevOps tools such as Jenkins, BitBucket, Artifactory, Sonarqube, etc.\n• Having an understanding of best practices for Logging, Monitoring, and Alerting solutions.\n• Experience with software deployment and configuration automation\n• Bachelor's degree in Computer Science, or a related technical field involving programming\n• Expertise in designing, analyzing, and troubleshooting large-scale systems.\n• Ability to debug, optimize code, and automate routine tasks.\n• Systematic problem-solving approach, with effective communication skills and a sense of drive.\n• Understanding of Windows/Linux operating systems.", + "job_is_remote": false, + "job_posted_at_timestamp": 1697760000, + "job_posted_at_datetime_utc": "2023-10-20T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=0&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=mpSIWsx48NB3-NW8AAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Experience in the fields of Computer Science or Software Engineering", + "Experience in Azure infrastructure provisioning through automation tools Terraform", + "Experience in the design and development of scalable Big Data Warehouse solutions on the Cloud", + "Experience programming in at least one of the following languages: Python, Java, Go, Bash, etc", + "Experience using DevOps tools such as Jenkins, BitBucket, Artifactory, Sonarqube, etc", + "Having an understanding of best practices for Logging, Monitoring, and Alerting solutions", + "Experience with software deployment and configuration automation", + "Bachelor's degree in Computer Science, or a related technical field involving programming", + "Expertise in designing, analyzing, and troubleshooting large-scale systems", + "Ability to debug, optimize code, and automate routine tasks", + "Systematic problem-solving approach, with effective communication skills and a sense of drive", + "Understanding of Windows/Linux operating systems" + ], + "Responsibilities": [ + "Implement solutions to manage Mastercard’s Azure infrastructure via code", + "Engage and improve the lifecycle of the Azure platform and services -- from development to deployment, operation, and refinement", + "Scale systems sustainably through mechanisms like automation, and evolve systems by pushing for changes that improve reliability and velocity", + "Design and Develop scalable Big Data Warehouse solutions", + "Practice sustainable incident response and blameless postmortem" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_occupational_categories": ["Software Engineering"], + "job_naics_code": "522110", + "job_naics_name": "Commercial Banking" + }, + { + "employer_name": "UPMC", + "employer_logo": "https://dam.upmc.com/-/media/upmc/logos/upmclogosvg.svg?la=en&rev=86ad2e14e74e4583a2def08e4bd3f94b&la=en&hash=B6BC24EB232E89F9890EAB8A5434893C", + "employer_website": null, + "employer_company_type": "Health Care", + "job_publisher": "UPMC Careers", + "job_id": "5Hz2C3fpYODJoEwqAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer - Inter (.Net/Cloud)", + "job_apply_link": "https://careers.upmc.com/job/19194505/software-engineer-inter-net-cloud-work-from-home/", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.9155, + "apply_options": [ + { + "publisher": "UPMC Careers", + "apply_link": "https://careers.upmc.com/job/19194505/software-engineer-inter-net-cloud-work-from-home/", + "is_direct": false + }, + { + "publisher": "Salary.com", + "apply_link": "https://www.salary.com/job/upmc/software-engineer-inter/j202307032226198188173", + "is_direct": false + }, + { + "publisher": "Adzuna", + "apply_link": "https://www.adzuna.com/details/4382885227", + "is_direct": false + } + ], + "job_description": "Purpose:\n\nCore Systems under the Application Engineering department provides IT solutions to UPMC Health Plan from Enrollment, Billing, and Claims Processing perspectives. While all these functions currently have been managed in the application called MC400 with RPG/DB2/iSeries/IBMi platform, Core Systems has started a long-term modernization initiative to ultimately transit into Windows/.Net/C#/Angular JS/SQL-No SQL/Cloud platform. We’re looking for an Intermediate Software Engineer to continue to build and expand the team to work towards multiyear multiple modernization projects. The expectation is to work with other software engineers and Architects on both sides (IBMi and .Net/Cloud), other roles (BA, Scrum Master, PM, QA) within and across the IT departments as well as with Business Stakeholders in the agile/DevOps framework.\n\nAn ideal .Net/Cloud candidate should be a self-starter, have an understanding of the technologies outlined below, and be willing/capable of learning/sharing the industry best practices and addressing issues across multiple teams/technologies to build future-centric business capabilities. 100% Work from Home Opportunity.\n\nResponsibilities:\n• • Application Development Cycle – Show fundamental knowledge of the application development cycle.\n\n• Security – Show fundamental knowledge and the ability to learn secure coding processes and writing, accessing, and following established security protocols.\n\n• Troubleshooting – Show the ability to resolve basic issues and offer input on issue resolution.\n\n• Quality – Follow established coding standards. Submit code for review and deliver quality, unit test code.\n\n• Design – Follow established design patterns and have an awareness of user experience standards. Responsible for individual components of design.\n\n• Integration – Responsible for less complex components of integration within a module.\n\n• Documentation – Create basic technical documentation.\n\n• Project Management – Has ownership in the success of projects. Responsible for estimating and delivering on individual tasks within the project.\n\n• Communication – Responsible for demonstrating appropriate, clear, concise, and effective written and oral communications in all interactions to build relationships and accomplish day-to-day work and projects.\n\n• Interactions with Others – Successfully completes projects, tasks, and initiatives by embracing a team-first approach. Works in collaboration with team and offers feedback, where appropriate, to complete individual and group efforts. Shows the ability to adjust and be flexible to change by adapting approach when necessary. Mentors the less experienced staff.\n\n• Self-Development – Responsible for continuous self-study, training, partnering with more senior members of the team, and/or seeking out opportunities to broaden the scope to stay up to date with industry and organizational trends. Seeks feedback from senior team members for development and effectively incorporates feedback into work and behaviors.\n\n• Software Solutions – Develop, validate, and implement software solutions based on customer requirements, Enterprise architecture standards, and defined project designs.", + "job_is_remote": false, + "job_posted_at_timestamp": 1697500800, + "job_posted_at_datetime_utc": "2023-10-17T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=0&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=5Hz2C3fpYODJoEwqAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "An ideal .Net/Cloud candidate should be a self-starter, have an understanding of the technologies outlined below, and be willing/capable of learning/sharing the industry best practices and addressing issues across multiple teams/technologies to build future-centric business capabilities", + "Self-Development – Responsible for continuous self-study, training, partnering with more senior members of the team, and/or seeking out opportunities to broaden the scope to stay up to date with industry and organizational trends" + ], + "Responsibilities": [ + "The expectation is to work with other software engineers and Architects on both sides (IBMi and .Net/Cloud), other roles (BA, Scrum Master, PM, QA) within and across the IT departments as well as with Business Stakeholders in the agile/DevOps framework", + "Application Development Cycle – Show fundamental knowledge of the application development cycle", + "Security – Show fundamental knowledge and the ability to learn secure coding processes and writing, accessing, and following established security protocols", + "Troubleshooting – Show the ability to resolve basic issues and offer input on issue resolution", + "Quality – Follow established coding standards", + "Submit code for review and deliver quality, unit test code", + "Design – Follow established design patterns and have an awareness of user experience standards", + "Responsible for individual components of design", + "Integration – Responsible for less complex components of integration within a module", + "Documentation – Create basic technical documentation", + "Project Management – Has ownership in the success of projects", + "Responsible for estimating and delivering on individual tasks within the project", + "Communication – Responsible for demonstrating appropriate, clear, concise, and effective written and oral communications in all interactions to build relationships and accomplish day-to-day work and projects", + "Interactions with Others – Successfully completes projects, tasks, and initiatives by embracing a team-first approach", + "Works in collaboration with team and offers feedback, where appropriate, to complete individual and group efforts", + "Shows the ability to adjust and be flexible to change by adapting approach when necessary", + "Seeks feedback from senior team members for development and effectively incorporates feedback into work and behaviors", + "Software Solutions – Develop, validate, and implement software solutions based on customer requirements, Enterprise architecture standards, and defined project designs" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113300", + "job_onet_job_zone": "4", + "job_naics_code": "622110", + "job_naics_name": "General Medical and Surgical Hospitals" + }, + { + "employer_name": "Commerce Bank", + "employer_logo": "https://mms.businesswire.com/media/20191101005540/en/357645/23/Commerce_Bancshares_Stacked_342.jpg", + "employer_website": null, + "employer_company_type": "Finance", + "job_publisher": "Commerce Bank Careers", + "job_id": "fW24eEs3ggbeewzsAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Development Engineer", + "job_apply_link": "https://careers.commercebank.com/us/en/job/33538/Software-Development-Engineer", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.9188, + "apply_options": [ + { + "publisher": "Commerce Bank Careers", + "apply_link": "https://careers.commercebank.com/us/en/job/33538/Software-Development-Engineer", + "is_direct": false + }, + { + "publisher": "ZipRecruiter", + "apply_link": "https://www.ziprecruiter.com/c/Commerce-Bank/Job/Software-Development-Engineer/-in-Kansas-City,MO?jid=b1bcad0a9a5d5c10", + "is_direct": false + }, + { + "publisher": "American Banker Jobs", + "apply_link": "https://jobs.americanbanker.com/job/software-development-engineer-5-at-commerce-bank-2", + "is_direct": false + }, + { + "publisher": "Salary.com", + "apply_link": "https://www.salary.com/job/commerce-bank/software-development-engineer/j202303210834285982956", + "is_direct": false + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/software-development-engineer-at-commerce-bank-3696985289", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=2d47a2edc14d203c", + "is_direct": false + }, + { + "publisher": "BeBee", + "apply_link": "https://us.bebee.com/job/20231010-cca325c3fa7963647d08fe99b4120f46", + "is_direct": false + }, + { + "publisher": "SimplyHired", + "apply_link": "https://www.simplyhired.com/job/peV4ZYICucGNxFvaSdaHbk5SzFe_nGs4FeAPmXjXrajX2hosr3BmKQ", + "is_direct": false + } + ], + "job_description": "About Working at Commerce\n\nBuilding a career here is more than just steps on a ladder. It’s about helping people find financial safety and success, helping businesses thrive, and making sure people and their money are taken care of. And our commitment doesn’t stop there. Our culture is about our people, the ones in our communities and the ones that work with us.\n\nHere, you’ll find opportunities to grow and learn, to connect with others, and build relationships with the people around you. You’ll have the space and resources to grow into the best version of yourself. Because our number one investment is you.\n\nCreating an award-winning culture doesn't come easy. And after more than 155 years, we know Commerce Bank is only at its best when our people are. If this sounds interesting to you, keep reading and let’s talk.\n\nAbout This Job\n\nThe IT Department is a huge driver in Commerce Bank’s success. We are the innovative and creative problem solvers who support the applications, maintain a secure network, and determine how to implement initiatives that aid the business units. The banking industry is evolving every day, giving us the ability to learn new technologies and grow to meet the needs of the bank, and at Commerce, we believe our people are what set us apart from our competitors. We are looking for candidates that share the same passion for technology as we do. We want to work with innovative and team-oriented people who have fantastic problem-solving skills.\n\nWe are looking for talented individuals who can help design, develop, deploy, and support applications using leading edge technology under the guidance of our senior engineers, and ensure that processes are documented and comply with business strategic needs, security requirements, and coding standards. It is important for the candidates to have a team-focused and collaborative mentality as it will be necessary to consult regularly with other IT application groups, our IT architecture department, project management, and security to ensure that appropriate design considerations are made during the software development lifecycle (SDLC).\n\nEssential Functions\n• Contribute to the development and support of key externally facing applications at the Bank in a C# .Net multi-tier environment\n• Work with a Scrum team to develop new features and enhance existing functionality while maintaining security best practices\n• Develop dependency injected code along with unit tests that can achieve quality code coverage\n• Provide production support including limited after-hours support as needed\n• Perform other duties as assigned\n\nKnowledge, Skills & Abilities Required\n• Knowledge of front end, back end, and API development using a Java based development environment\n• Intermediate knowledge of application development tools, technologies and languages, Eclipse preferred\n• Intermediate experience in all phases of the Software Development Life Cycle, Agile preferred\n• Intermediate understanding of Service-Oriented Architecture (SOA) concepts, practices and trends\n• Intermediate understanding of Web Services standards and technologies including HTTP, SOAP, XML Schema, WSDL, and REST\n• Intermediate knowledge of Windows, Unix, and/or Linux operating systems\n• Intermediate working knowledge with version control systems (ideally SVN and Git)\n• Intermediate development experience with SQL, including an understanding of relations database concepts and design\n• Ability to execute unit, integration, and system tests within a defined testing structure and environment\n• Ability to support, debug, and repair object-oriented applications\n• Under limited supervision, ability to design and create complex applications\n• Ability to troubleshoot issues with an analytical mindset\n• Motivated and organized self-starter with strong attention to detail and the ability to manage multiple priorities\n• Inquisitive, agile and strong team player with excellent written, verbal and interpersonal communication skills\n• Ability to remain adaptable and resilient to all situations with an optimistic outlook and cast a positive shadow that is aligned with our culture and Core Values\n• Basic level proficiency with Microsoft Word, Excel, and Outlook\n\nEducation & Experience\n• Associate’s degree or equivalent combination of education and experience required\n• 2+ years software development experience required\n• Java experience required\n• 2+ years experience in a development role utilizing at least one Object-Oriented programming language preferred\n• 1+ years of experience utilizing XML technologies and tools preferred\n• Experience with Azure Dev Ops (Formerly known as TFS) preferred\n• Experience working on with Agile methodologies preferred\n• Experience with Kafka and/or Apigee preferred\n\nThis position is a remote opportunity in Kansas City only.\n• *Level of role is determined by knowledge, experience, skills, abilities, and education\n• **For individuals applying, assigned and/or hired to work in areas with pay transparency requirements, Commerce is required by law to include a reasonable estimate of the compensation range for this role. This compensation range is for the Software Development Engineer II & Software Development Engineer III job and contemplates a wide range of factors that are considered in determining most appropriate job level and making compensation decisions, including but not limited to location, skill sets, education, relevant experience and training, licensure and certifications, and other business and organizational needs. The disclosed range estimate has not been adjusted for any applicable differentials (geographic, bilingual, or shift) that could be associated with the position or where it is filled. At Commerce, it is not typical for an individual to be hired at or near the top of the range for their role, and compensation decisions are dependent on the facts and circumstances of each situation. A reasonable estimate of the current base salary range is 88,000ドル to 120,000ドル. This position will be eligible for additional compensation through performance-based incentive plan(s) that will correspond to meeting performance goals. The candidate selected for this position may be eligible for the following employment benefits: employer sponsored health, dental, and vision insurance, 401(k), life insurance, paid vacation, and paid personal time. In addition, we offer career development, education assistance, and voluntary supplemental benefits. Click here to learn more.\n\nLocation: 922 Walnut St, Kansas City, Missouri 64106\n\nTime Type:\nFull time", + "job_is_remote": false, + "job_posted_at_timestamp": 1694995200, + "job_posted_at_datetime_utc": "2023-09-18T00:00:00.000Z", + "job_city": "Kansas City", + "job_state": "MO", + "job_country": "US", + "job_latitude": 39.099728, + "job_longitude": -94.57857, + "job_benefits": [ + "health_insurance", + "retirement_savings", + "dental_coverage", + "paid_time_off" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=0&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=fW24eEs3ggbeewzsAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 24, + "experience_mentioned": true, + "experience_preferred": true + }, + "job_required_skills": [ + "Software Development", + "Agile", + "API Development", + "Java", + "Agile Methodologies", + "Application Development", + "Applications", + "version control systems", + "Integration", + "software development life cycle", + "application development tools", + "Linux", + "xml technologies", + "IT Architecture", + "Eclipse", + "Git", + "Project Management", + "azure dev ops", + "Unix", + "XML", + "XML Schema", + "SQL", + "Wsdl", + "Operating Systems", + "Web Services", + "ADAPTABLE", + "C#", + "Ability to Troubleshoot", + ".Net", + "web services standards" + ], + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": false, + "professional_certification_mentioned": true + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "We are looking for talented individuals who can help design, develop, deploy, and support applications using leading edge technology under the guidance of our senior engineers, and ensure that processes are documented and comply with business strategic needs, security requirements, and coding standards", + "It is important for the candidates to have a team-focused and collaborative mentality as it will be necessary to consult regularly with other IT application groups, our IT architecture department, project management, and security to ensure that appropriate design considerations are made during the software development lifecycle (SDLC)", + "Knowledge of front end, back end, and API development using a Java based development environment", + "Intermediate understanding of Service-Oriented Architecture (SOA) concepts, practices and trends", + "Intermediate understanding of Web Services standards and technologies including HTTP, SOAP, XML Schema, WSDL, and REST", + "Intermediate knowledge of Windows, Unix, and/or Linux operating systems", + "Intermediate working knowledge with version control systems (ideally SVN and Git)", + "Intermediate development experience with SQL, including an understanding of relations database concepts and design", + "Ability to execute unit, integration, and system tests within a defined testing structure and environment", + "Ability to support, debug, and repair object-oriented applications", + "Under limited supervision, ability to design and create complex applications", + "Ability to troubleshoot issues with an analytical mindset", + "Motivated and organized self-starter with strong attention to detail and the ability to manage multiple priorities", + "Inquisitive, agile and strong team player with excellent written, verbal and interpersonal communication skills", + "Ability to remain adaptable and resilient to all situations with an optimistic outlook and cast a positive shadow that is aligned with our culture and Core Values", + "Basic level proficiency with Microsoft Word, Excel, and Outlook", + "Associate’s degree or equivalent combination of education and experience required", + "2+ years software development experience required", + "Java experience required" + ], + "Responsibilities": [ + "Contribute to the development and support of key externally facing applications at the Bank in a C# .Net multi-tier environment", + "Work with a Scrum team to develop new features and enhance existing functionality while maintaining security best practices", + "Develop dependency injected code along with unit tests that can achieve quality code coverage", + "Provide production support including limited after-hours support as needed", + "Perform other duties as assigned" + ], + "Benefits": [ + "This compensation range is for the Software Development Engineer II & Software Development Engineer III job and contemplates a wide range of factors that are considered in determining most appropriate job level and making compensation decisions, including but not limited to location, skill sets, education, relevant experience and training, licensure and certifications, and other business and organizational needs", + "A reasonable estimate of the current base salary range is 88,000ドル to 120,000ドル", + "This position will be eligible for additional compensation through performance-based incentive plan(s) that will correspond to meeting performance goals", + "The candidate selected for this position may be eligible for the following employment benefits: employer sponsored health, dental, and vision insurance, 401(k), life insurance, paid vacation, and paid personal time", + "In addition, we offer career development, education assistance, and voluntary supplemental benefits" + ] + }, + "job_job_title": "Development engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_occupational_categories": ["Technology"], + "job_naics_code": "522120", + "job_naics_name": "Savings Institutions" + }, + { + "employer_name": "FlightSafety International", + "employer_logo": "https://cdn.cookielaw.org/logos/833af5bd-b1f3-423a-a591-9d9d40de117c/15a4077b-ff57-47b3-8029-fce396934533/f07a6cb3-f628-4066-bd7b-657ecbfa8330/FlightSafety_Logo_-_Navigator_Blue_(1).png", + "employer_website": "http://www.flightsafety.com", + "employer_company_type": "Manufacturing", + "job_publisher": "FlightSafety International Careers", + "job_id": "icusRwWHOevj550QAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer II", + "job_apply_link": "https://careers.flightsafety.com/job/Broken-Arrow-Software-Engineer-II-OK-74012/1067599200/", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.7336, + "apply_options": [ + { + "publisher": "FlightSafety International Careers", + "apply_link": "https://careers.flightsafety.com/job/Broken-Arrow-Software-Engineer-II-OK-74012/1067599200/", + "is_direct": false + }, + { + "publisher": "ZipRecruiter", + "apply_link": "https://www.ziprecruiter.com/c/FlightSafety-International/Job/Software-Engineer-II/-in-Broken-Arrow,OK?jid=3bac9c4a184ae433", + "is_direct": false + }, + { + "publisher": "Talent.com", + "apply_link": "https://www.talent.com/view?id=68c4b81b3413", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=fa48c5de202b66f6", + "is_direct": false + }, + { + "publisher": "Ladders", + "apply_link": "https://www.theladders.com/job/software-engineer-ii-flightsafetyinternationalinc-broken-arrow-ok_65072214", + "is_direct": false + }, + { + "publisher": "CareerBuilder", + "apply_link": "https://www.careerbuilder.com/job/J3T2LW6VHQQZHSX94JK", + "is_direct": false + }, + { + "publisher": "Jooble", + "apply_link": "https://jooble.org/jdp/3058353730680602798/Software-Engineer-II-Broken-Arrow%2C-OK", + "is_direct": false + }, + { + "publisher": "BeBee", + "apply_link": "https://us.bebee.com/job/20231020-b6663d89dcdf291810fee8e9f5a14cd5", + "is_direct": false + } + ], + "job_description": "About FlightSafety International\n\nFlightSafety International is the world’s premier professional aviation training company and supplier of flight simulators, visual systems and displays to commercial, government and military organizations. The company provides training for pilots, technicians and other aviation professionals from 167 countries and independent territories. FlightSafety operates the world’s largest fleet of advanced full-flight simulators and award-winning maintenance training at Learning Centers and training locations in the United States, Canada, France and the United Kingdom.\n\nPURPOSE OF POSITION:\n\nEvaluates, selects and applies appropriate engineering techniques and procedures using judgment in making required adaptations and modifications to effect an accurate operating system. Fully autonomous in performing most assignments. Receives assistance only on unusual problems.\n\nTASKS AND RESPONSIBILITIES:\n\nPerforms more varied and difficult aspects of the job; may need some guidance on job duties; applies learning to recommend options to address unusual situations. Trains other Teammates as required.\n\nThe following duties are essential to the successful and satisfactory performance of this job. Other duties may be assigned. Reasonable accommodations may be made to enable individuals with disabilities to perform the essential functions.\n\nDesigns, creates and modifies and maintains applications, development frameworks, and systems level software. Creation of some new applications.\n\nModifies and writes device drivers for interfacing with hardware.\n\nCreates and modifies real-time executive and control software.\n\nDesigns, modifies and creates mathematical support library, systems utilities and debug packages under the direction of a more senior engineer.\n\nEvaluates hardware and software to be installed on FSI-SS computer systems. Provides reports and recommendations.\n\nSupports applications engineers in the development of applications.\n\nProvides support to team leaders and project engineers in software requirements, design and implementation.\n\nProvides guidance to less senior engineers in the department. Provides guidance to engineers in all software departments. Provides recommendations for improvements.\n\nDocuments operating system, application and development software.\n\nWorks with fellow software engineers, hardware engineers and management to effect a smoothly integrated system.\n\nPerforms application design from research to testing phase with limited supervision.\n\nTravel, shift work, and special work hours may be required to accomplish some of the above tasks.\n\nExhibit and practice professional and courteous behavior while interacting with both internal and external customers.\n\nInteract within a cooperative environment through beneficial behavior, commitment to common goals, contribution to problem solving, communication of ideas and suggestions, and encouragement to other employees and departments.\n\nAccountable for the control and distribution of documents and/or equipment subject to export control restrictions and the security of FSI materials, projects and business information regarding the methods and techniques used in the production and usage of FSI products.\n\nAccountable for the accuracy and completeness of assigned tasks.\n\nAble to adhere to a work schedule including prompt and regular attendance.\n\nAbility to work in a constant state of alertness and safe manner.\n\nMINIMUM EDUCATION:\n\nBachelor's degree in Engineering.\n\nMINIMUM EXPERIENCE:\n\nTwo years related experience preferably in simulation.\n\nKNOWLEDGE, SKILLS, ABILITIES:\n\nMATHEMATICAL SKILLS:\n\nAble to work with mathematical concepts such as probability and statistical inference, and fundamentals of plane and solid geometry and trigonometry; Able to apply concepts such as fractions, percentages, ratios, and proportions to practical situations.\n\nREASONING ABILITY:\n\nAble to define problems, collect data, establish facts, and draw valid conclusions; Able to interpret an extensive variety of technical instructions in mathematical or diagram form and deal with several abstract and concrete variables.\n\nPHYSICAL DEMANDS AND WORK ENVIRONMENT: The physical demands and work environment described here are representative of those that must be met and/or encountered by an employee to successfully perform the essential functions of this job. Reasonable accommodations may be made to enable individuals with disabilities to perform the essential functions.\n\nWhile performing the duties of this Job, the employee is regularly required to sit, talk and hear. The employee is frequently required to use hands to finger, handle, or feel. Must work with keyboard, mouse, and monitor for long periods of time.\n\nThe employee is frequently required to stand; walk; reach with hands and arms; climb or balance and stoop, kneel, crouch, or crawl. The employee must occasionally lift and/or move up to 35 pounds.\n\nSpecific vision abilities required by this job include close vision, color vision, depth perception and ability to adjust focus.\n\nWhile performing the duties of this Job, the employee is frequently exposed to moving mechanical parts and high, precarious places. The employee is occasionally exposed to risk of electrical shock and vibration. The noise level in the work environment is usually moderate\n\nFlightSafety is an Equal Opportunity Employer/Vet/Disabled. All qualified applicants will receive consideration for employment without regard to race, color, religion, sex, sexual orientation, gender identity, national origin, or disability.", + "job_is_remote": false, + "job_posted_at_timestamp": 1697698800, + "job_posted_at_datetime_utc": "2023-10-19T07:00:00.000Z", + "job_city": "Broken Arrow", + "job_state": "OK", + "job_country": "US", + "job_latitude": 36.060947, + "job_longitude": -95.797455, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=90&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=icusRwWHOevj550QAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 24, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Ability to work in a constant state of alertness and safe manner", + "Bachelor's degree in Engineering", + "Two years related experience preferably in simulation", + "Able to work with mathematical concepts such as probability and statistical inference, and fundamentals of plane and solid geometry and trigonometry; Able to apply concepts such as fractions, percentages, ratios, and proportions to practical situations", + "Able to define problems, collect data, establish facts, and draw valid conclusions; Able to interpret an extensive variety of technical instructions in mathematical or diagram form and deal with several abstract and concrete variables", + "PHYSICAL DEMANDS AND WORK ENVIRONMENT: The physical demands and work environment described here are representative of those that must be met and/or encountered by an employee to successfully perform the essential functions of this job", + "Must work with keyboard, mouse, and monitor for long periods of time", + "The employee is frequently required to stand; walk; reach with hands and arms; climb or balance and stoop, kneel, crouch, or crawl", + "The employee must occasionally lift and/or move up to 35 pounds", + "Specific vision abilities required by this job include close vision, color vision, depth perception and ability to adjust focus" + ], + "Responsibilities": [ + "Evaluates, selects and applies appropriate engineering techniques and procedures using judgment in making required adaptations and modifications to effect an accurate operating system", + "Fully autonomous in performing most assignments", + "Receives assistance only on unusual problems", + "Performs more varied and difficult aspects of the job; may need some guidance on job duties; applies learning to recommend options to address unusual situations", + "Trains other Teammates as required", + "The following duties are essential to the successful and satisfactory performance of this job", + "Reasonable accommodations may be made to enable individuals with disabilities to perform the essential functions", + "Designs, creates and modifies and maintains applications, development frameworks, and systems level software", + "Creation of some new applications", + "Modifies and writes device drivers for interfacing with hardware", + "Creates and modifies real-time executive and control software", + "Designs, modifies and creates mathematical support library, systems utilities and debug packages under the direction of a more senior engineer", + "Evaluates hardware and software to be installed on FSI-SS computer systems", + "Provides reports and recommendations", + "Supports applications engineers in the development of applications", + "Provides support to team leaders and project engineers in software requirements, design and implementation", + "Provides guidance to less senior engineers in the department", + "Provides guidance to engineers in all software departments", + "Provides recommendations for improvements", + "Documents operating system, application and development software", + "Works with fellow software engineers, hardware engineers and management to effect a smoothly integrated system", + "Performs application design from research to testing phase with limited supervision", + "Travel, shift work, and special work hours may be required to accomplish some of the above tasks", + "Exhibit and practice professional and courteous behavior while interacting with both internal and external customers", + "Interact within a cooperative environment through beneficial behavior, commitment to common goals, contribution to problem solving, communication of ideas and suggestions, and encouragement to other employees and departments", + "Accountable for the control and distribution of documents and/or equipment subject to export control restrictions and the security of FSI materials, projects and business information regarding the methods and techniques used in the production and usage of FSI products", + "Accountable for the accuracy and completeness of assigned tasks", + "Able to adhere to a work schedule including prompt and regular attendance", + "While performing the duties of this Job, the employee is regularly required to sit, talk and hear" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_naics_code": "336411", + "job_naics_name": "Aircraft Manufacturing" + }, + { + "employer_name": "Google", + "employer_logo": "https://kgo.googleusercontent.com/profile_vrt_raw_bytes_1587515358_10512.png", + "employer_website": "http://www.google.com", + "employer_company_type": "Information", + "job_publisher": "LinkedIn", + "job_id": "KT6nXA6_Sq3UIL0NAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Staff Software Engineer, Google Cloud Generative AI", + "job_apply_link": "https://www.linkedin.com/jobs/view/staff-software-engineer-google-cloud-generative-ai-at-google-3747426833", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.6296, + "apply_options": [ + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/staff-software-engineer-google-cloud-generative-ai-at-google-3747426833", + "is_direct": false + } + ], + "job_description": "Note: Google’s hybrid workplace includes remote and in-office roles. By applying to this position you will have an opportunity to share your preferred working location from the following:\n\nIn-office locations: Sunnyvale, CA, USA; Austin, TX, USA; Boulder, CO, USA; Cambridge, MA, USA; Kirkland, WA, USA; New York, NY, USA; Seattle, WA, USA.\n\nRemote location(s): United States.Minimum qualifications:\n• Bachelor’s degree, or equivalent practical experience.\n• 8 years of experience in software development and with data structures/algorithms.\n• 5 years of experience testing, and launching software products, and 3 years of experience with software design and architecture.\n• Experience in Generative AI, responsible AI, and real-time data processing.\n\nPreferred qualifications:\n• Experience with PyTorch, TensorFlow, scikit-learn and other deep learning frameworks.\n• Experience using collaborative notebook-based workflows (e.g. Jupyter) for prototyping and knowledge sharing.\n• Experience in AI/ML quality evaluation and improvement, including balancing tuning techniques with cost/benefit trade-offs.\n• Ability to promote product excellence and collaboration, driving a portfolio of concurrent engineering projects running the gamut from short-term critical feature launches to long-term research initiatives.\n• Passionate about delighting enterprise customers, and an excellent understanding of enterprise workloads.\n\nAbout The Job\n\nGoogle's software engineers develop the next-generation technologies that change how billions of users connect, explore, and interact with information and one another. Our products need to handle information at massive scale, and extend well beyond web search. We're looking for engineers who bring fresh ideas from all areas, including information retrieval, distributed computing, large-scale system design, networking and data storage, security, artificial intelligence, natural language processing, UI design and mobile; the list goes on and is growing every day. As a software engineer, you will work on a specific project critical to Google’s needs with opportunities to switch teams and projects as you and our fast-paced business grow and evolve. We need our engineers to be versatile, display leadership qualities and be enthusiastic to take on new problems across the full-stack as we continue to push technology forward.\n\nAs a Staff Software Engineer, you will work closely with our product teams to innovate, incubate and prototype how to evolve and transform our Google Cloud Platform (GCP) products to provide Generative AI driven experiences and solutions. You will incubate, prototype, and iterate in this space to quickly bring new ideas to production. This includes staying on top of the latest technology and techniques for Generative AI to continue to evolve our approaches.\n\nGoogle Cloud accelerates organizations’ ability to digitally transform their business with the best infrastructure, platform, industry solutions and expertise. We deliver enterprise-grade solutions that leverage Google’s cutting-edge technology – all on the cleanest cloud in the industry. Customers in more than 200 countries and territories turn to Google Cloud as their trusted partner to enable growth and solve their most critical business problems.\n\nThe US base salary range for this full-time position is 185,000ドル-283,000ドル + bonus + equity + benefits. Our salary ranges are determined by role, level, and location. The range displayed on each job posting reflects the minimum and maximum target for new hire salaries for the position across all US locations. Within the range, individual pay is determined by work location and additional factors, including job-related skills, experience, and relevant education or training. Your recruiter can share more about the specific salary range for your preferred location during the hiring process.\n\nPlease note that the compensation details listed in US role postings reflect the base salary only, and do not include bonus, equity, or benefits. Learn more about benefits at Google .\n\nResponsibilities\n• Co-lead the technology and innovation strategy for Generative AI and Machine Learning. Understand, implement, and improve upon the latest research in Generative AI.\n• Apply judgment to determine whether, where, and how to apply AI/ML to products.\n• Evaluate, fine-tune, and maintain models, which includes collecting and preparing data as needed.\n• Improve quality through product integrated prompt engineering and optimizations.\n• Collaborate with team members to build, evaluate, and deploy critical features.\n\nGoogle is proud to be an equal opportunity workplace and is an affirmative action employer. We are committed to equal employment opportunity regardless of race, color, ancestry, religion, sex, national origin, sexual orientation, age, citizenship, marital status, disability, gender identity or Veteran status. We also consider qualified applicants regardless of criminal histories, consistent with legal requirements. See also Google's EEO Policy and EEO is the Law. If you have a disability or special need that requires accommodation, please let us know by completing our Accommodations for Applicants form .", + "job_is_remote": true, + "job_posted_at_timestamp": 1698318837, + "job_posted_at_datetime_utc": "2023-10-26T11:13:57.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": ["health_insurance"], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=90&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=KT6nXA6_Sq3UIL0NAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": "2023-11-25T11:13:57.000Z", + "job_offer_expiration_timestamp": 1700910837, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 96, + "experience_mentioned": true, + "experience_preferred": true + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": true, + "degree_mentioned": true, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Bachelor’s degree, or equivalent practical experience", + "8 years of experience in software development and with data structures/algorithms", + "5 years of experience testing, and launching software products, and 3 years of experience with software design and architecture", + "Experience in Generative AI, responsible AI, and real-time data processing", + "Jupyter) for prototyping and knowledge sharing", + "Passionate about delighting enterprise customers, and an excellent understanding of enterprise workloads" + ], + "Responsibilities": [ + "You will incubate, prototype, and iterate in this space to quickly bring new ideas to production", + "Co-lead the technology and innovation strategy for Generative AI and Machine Learning", + "Understand, implement, and improve upon the latest research in Generative AI", + "Apply judgment to determine whether, where, and how to apply AI/ML to products", + "Evaluate, fine-tune, and maintain models, which includes collecting and preparing data as needed", + "Improve quality through product integrated prompt engineering and optimizations", + "Collaborate with team members to build, evaluate, and deploy critical features" + ], + "Benefits": [ + "The US base salary range for this full-time position is 185,000ドル-283,000ドル + bonus + equity + benefits", + "Our salary ranges are determined by role, level, and location" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15111100", + "job_onet_job_zone": "5", + "job_naics_code": "519130", + "job_naics_name": "Internet Publishing and Broadcasting and Web Search Portals" + }, + { + "employer_name": "Sam's West, Inc.", + "employer_logo": "https://scene7.samsclub.com/is/image/samsclub/sc_logo_blue?fmt=png-alpha&resMode=sharp2&op_usm=1.75,0.3,2,0&wid=200", + "employer_website": "http://www.samsclub.com", + "employer_company_type": "Retail", + "job_publisher": "Workday", + "job_id": "SY3OZbx4Vkf4Hry-AAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer III", + "job_apply_link": "https://walmart.wd5.myworkdayjobs.com/en-US/WalmartExternal/job/Bentonville-AR/Software-Engineer-III_R-1656041", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.7594, + "apply_options": [ + { + "publisher": "Workday", + "apply_link": "https://walmart.wd5.myworkdayjobs.com/en-US/WalmartExternal/job/Bentonville-AR/Software-Engineer-III_R-1656041", + "is_direct": false + }, + { + "publisher": "MySmartPros", + "apply_link": "https://ca.mysmartpros.com/job/walmart-software-engineer-iii-bentonville-ar/", + "is_direct": false + } + ], + "job_description": "Position Summary... What you'll do... Our Company If you are thinking ‘scale’, think bigger and don’t stop there. Yes, we are the Fortune #1 company with 260 million customers a week, 11,695 stores, under 59 banners in 28 countries, and 524ドル billion revenues in fiscal year 2020. But you’ll quickly find we’re a company who wants you to feel comfortable bringing your whole self to work. A career at Walmart Global Tech India is where the world’s most complex challenges meet a kinder way of life. Our mission spreads far beyond the walls of our stores. From day one, you’ll be empowered and equipped to do the best work of your life. Do you want to influence how the next 50 years of retail will look like? At Walmart Global Tech India, we're investing heavily in omni-channel commerce. Come join us if you would like to make a global impact based out of India. Our Team Sam’s club is a membership-based retail warehouse club owned and operated by Walmart. With more than 600 physical clubs across different geographic region in US, Sam’s Club chain serves more than 50 million US members and is rated among the top retailers in US. Your Opportunity Team is looking for a strong Software Engineer who will drive building next generation Walmart suite of products and platform by designing, coding, building and deploying highly scalable and robust cloud based solutions. The role is expected to make a difference to the product in terms of the design and contribute towards identifying technical risks and find alternate solutions to various problems. In addition to that, the role also demands to lead, motivate, mentor and provide ample guidance to the other team members with respect to technical challenges. About Team: Supply Chain at Sam’s Club is all about delivering plans that help provide our members with the products they want, where they want them, at the best price possible. To accomplish this, associates must think critically and create efficiencies, using data and experience to overcome complex challenges. We invite you to join the Sam’s Club Supply Chain Team; a quick moving group of motivated individuals with skills ranging from data analytics to strategy and execution. Together we will design the supply chain of the future and improve our members’ lives. What you'll do: Your Responsibility · As a member of the team you will be expected to code, test and deploy cutting edge solutions at scale, impacting millions of customers worldwide. · Collaborate with senior members of the team to gather requirements, participate in design discussion, code, test and deploy the products to production · Interact with Walmart engineering teams across geographies to leverage expertise and contribute to the tech community. · Engage with Product Management and Business to drive the agenda, set your priorities and deliver awesome products. You will work closely with tech and Business team to understand the requirements, design, architecture and influence the choice of technology to deliver solution working closely with senior architects and leadership team. Join our young, highly energetic and dynamic team, and take part in defining the new age e-commerce and in club shopping experience. You will also have challenging opportunities to cross-collaborate with inter-disciplinary product and engineering teams to solve some of the unique challenges in multi-channel shopping experience. What you'll bring: Your Qualifications · Bachelor’s degree in computer science or related discipline with 3 to 6 years of core software product development experience. · Strong computer science fundamentals in algorithms, data structures, databases, operating systems, etc. · Hands on in developing web applications using Microservices , Kafka and Database skills. · 3 or more years of experience with Java (Spring MVC, Hibernate) in building multi-threaded high performance scalable applications · Experience with Cloud Computing platforms: Microsoft Azure, Google cloud or similar is a plus · A self-motivated learner and builder with strong customer focus and obsession to quality Our Ideal Candidate You have a deep interest and passion for technology. You love writing and owning code and enjoy working with people who will keep challenging you at every stage. You have strong problem solving, analytic, decision-making skills. You are self-driven and motivated with the desire to work in a fast-paced, results-driven agile environment with varied responsibilities. Mandatory Skills Java , Spring, Spring boot, Kafka, Postgres SQL/My SQL, Cloud(GCP), Micro services, Docker , Kubernetes Cloud Skills like GCP Java with multithreading concepts . Implemented Clean Code principles, Junits Good understanding on Kafka Understands performance and Automation aspects of coding to develop high performing services using Spring , Springboot , Microservices Usage of NOSQL and RDBMS DB , Docker , Kubernetes, CI/CD Experience Working on JDK8 and above, having concept on Distributed computing, parallel processing Developing and implementing front-end architecture to support user interface concepts. Developing and implementing backend API interaction to support end to end flow. Improving front-end and backend performance. Implementing CI/CD pipeline and best coding practices. Desirable Skills Experience in migration of monolith to Microservices. Experience working with Reactive Java. Experience working with front end stack like React JS/Node Js About Walmart Sam's Club Supply Chain Sam Walton opened the first Sam's Club in 1983 to meet a growing need among customers who wanted to buy merchandise in bulk. Since then, Sam's Club has grown rapidly, opening more than 600 clubs in the U.S. and 100 clubs internationally. By offering affordable, wholesale merchandise to members, Sam's Club helps make saving simple for families and small business owners. Sam's Club employs about 110,000 associates in the U.S. The average club is 134,000 square feet and offers bulk groceries and general merchandise. Most clubs also have specialty services, such as a pharmacy, an optical department, a photo center, or a tire and battery center. Future Ways of Working: Our company's success can be attributed to our employees. While technology has allowed us to be effective while working remotely, there is no substitute for being in the office together; it helps to shape our culture, collaborate, innovate, build relationships, and move more quickly. We strive to provide flexibility in order to promote a healthy work-life balance but recognize that in-person interactions are important to our culture and shared success. We'll meet in person on a regular and purposeful basis. Benefits: Benefits: Beyond our great compensation package, you can receive incentive awards for your performance. Other great perks include 401(k) match, stock purchase plan, paid maternity and parental leave, PTO, multiple health plans, and much more. Equal Opportunity Employer: Sam’s Club is an Equal Opportunity Employer- By Choice. We believe we are best equipped to help our associates, customers, and the communities we serve live better when we really know them. That means understanding, respecting, and valuing diversity- unique styles, experiences, identities, abilities, ideas and opinions- while being inclusive of all people. The above information has been designed to indicate the general nature and level of work performed in the role. It is not designed to contain or be interpreted as a comprehensive inventory of all responsibilities and qualifications required of employees assigned to this job. The full Job Description can be made available as part of the hiring process. Minimum Qualifications... Outlined below are the required minimum qualifications for this position. If none are listed, there are no minimum qualifications. Option 1: Bachelor's degree in computer science, computer engineering, computer information systems, software engineering, or related area and 2 years’ experience in software engineering or related area.Option 2: 4 years’ experience in software engineering or related area. Preferred Qualifications... Outlined below are the optional preferred qualifications for this position. If none are listed, there are no preferred qualifications. Customer Service Masters: Computer Science Primary Location... 2101 SE SIMPLE SAVINGS DR, BENTONVILLE, AR 72712-4304, United States of America About Walmart: Fifty years ago, Sam Walton started a single mom-and-pop shop and transformed it into the world's biggest retailer. Since those founding days, one thing has remained consistent: our commitment to helping our customers save money so they can live better. Today, we're reinventing the shopping experience and our associates are at the heart of it. You'll play a crucial role in shaping the future of retail, improving millions of lives around the world. This is that place where your passions meet purpose. Join our family and create a career you're proud of.", + "job_is_remote": true, + "job_posted_at_timestamp": 1698019200, + "job_posted_at_datetime_utc": "2023-10-23T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "paid_time_off", + "health_insurance", + "retirement_savings" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=90&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=SY3OZbx4Vkf4Hry-AAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 48, + "experience_mentioned": true, + "experience_preferred": true + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Bachelor’s degree in computer science or related discipline with 3 to 6 years of core software product development experience", + "Strong computer science fundamentals in algorithms, data structures, databases, operating systems, etc", + "Hands on in developing web applications using Microservices , Kafka and Database skills", + "3 or more years of experience with Java (Spring MVC, Hibernate) in building multi-threaded high performance scalable applications", + "A self-motivated learner and builder with strong customer focus and obsession to quality Our Ideal Candidate You have a deep interest and passion for technology", + "You love writing and owning code and enjoy working with people who will keep challenging you at every stage", + "You have strong problem solving, analytic, decision-making skills", + "You are self-driven and motivated with the desire to work in a fast-paced, results-driven agile environment with varied responsibilities", + "Mandatory Skills Java , Spring, Spring boot, Kafka, Postgres SQL/My SQL, Cloud(GCP), Micro services, Docker , Kubernetes Cloud Skills like GCP Java with multithreading concepts ", + "Implemented Clean Code principles, Junits Good understanding on Kafka Understands performance and Automation aspects of coding to develop high performing services using Spring , Springboot , Microservices Usage of NOSQL and RDBMS DB , Docker , Kubernetes, CI/CD Experience Working on JDK8 and above, having concept on Distributed computing, parallel processing Developing and implementing front-end architecture to support user interface concepts", + "Implementing CI/CD pipeline and best coding practices", + "Experience working with Reactive Java", + "Experience working with front end stack like React JS/Node Js About Walmart Sam's Club Supply Chain Sam Walton opened the first Sam's Club in 1983 to meet a growing need among customers who wanted to buy merchandise in bulk", + "Option 1: Bachelor's degree in computer science, computer engineering, computer information systems, software engineering, or related area and 2 years’ experience in software engineering or related area" + ], + "Responsibilities": [ + "The role is expected to make a difference to the product in terms of the design and contribute towards identifying technical risks and find alternate solutions to various problems", + "In addition to that, the role also demands to lead, motivate, mentor and provide ample guidance to the other team members with respect to technical challenges", + "As a member of the team you will be expected to code, test and deploy cutting edge solutions at scale, impacting millions of customers worldwide", + "Collaborate with senior members of the team to gather requirements, participate in design discussion, code, test and deploy the products to production", + "Interact with Walmart engineering teams across geographies to leverage expertise and contribute to the tech community", + "Engage with Product Management and Business to drive the agenda, set your priorities and deliver awesome products", + "You will work closely with tech and Business team to understand the requirements, design, architecture and influence the choice of technology to deliver solution working closely with senior architects and leadership team", + "Join our young, highly energetic and dynamic team, and take part in defining the new age e-commerce and in club shopping experience", + "You will also have challenging opportunities to cross-collaborate with inter-disciplinary product and engineering teams to solve some of the unique challenges in multi-channel shopping experience", + "Developing and implementing backend API interaction to support end to end flow", + "Improving front-end and backend performance" + ], + "Benefits": [ + "Benefits: Benefits: Beyond our great compensation package, you can receive incentive awards for your performance", + "Other great perks include 401(k) match, stock purchase plan, paid maternity and parental leave, PTO, multiple health plans, and much more" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_naics_code": "452990", + "job_naics_name": "All Other General Merchandise Stores" + }, + { + "employer_name": "Braintrust", + "employer_logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRbGy6yC8rIXPxej3Xn_OqjekaLDimDEh-ZZJTI&s=0", + "employer_website": null, + "employer_company_type": null, + "job_publisher": "Startup Jobs", + "job_id": "y_EFydrtonckqkUeAAAAAA==", + "job_employment_type": "CONTRACTOR", + "job_title": "Sr. Software Engineer - Freelance [Remote]", + "job_apply_link": "https://startup.jobs/sr-software-engineer-freelance-remote-braintrust-4769370", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.6442, + "apply_options": [ + { + "publisher": "Startup Jobs", + "apply_link": "https://startup.jobs/sr-software-engineer-freelance-remote-braintrust-4769370", + "is_direct": false + }, + { + "publisher": "Pangian", + "apply_link": "https://pangian.com/job/sr-software-engineer-freelance-remote-5/", + "is_direct": false + }, + { + "publisher": "Remotely", + "apply_link": "https://tryremotely.com/remote-jobs/braintrust-software-engineer-freelance-remote-46498", + "is_direct": false + }, + { + "publisher": "Software Careers", + "apply_link": "https://www.softwarecareers.org/jobs/650b204fbed548e8832d4c3a", + "is_direct": false + } + ], + "job_description": "ABOUT US:\n\nBraintrust is a user-owned talent network that connects you with great jobs with no fees or membership costs—so you keep 100% of what you earn.\n\nOur promise is to give you the opportunity to uniquely differentiate yourself as a top performer.\n\nOur promise to our clients is to help them efficiently discover and hire highly qualified talent like you.\n\nABOUT THE HIRING PROCESS:\n\nThe hiring process for this role involves completing your Braintrust profile, applying directly to the role on Braintrust, and undergoing a one-time screening to ensure you meet our vetted talent specifications. After this, the hiring team will contact you directly if they believe you are a suitable match.\n\nOur process isn't for everyone, that's intentional. If you believe that you are a top candidate for this job, please join our network to give yourself the opportunity to work with top companies.\n\n• JOB TYPE: Freelance, Contract Position (no agencies/C2C - see notes below)\n• LOCATION: Remote - United States only\n• HOURLY RANGE: Our client is looking to pay 95ドル – 104ドル /hr\n• ESTIMATED DURATION: 40h/week - Long term\n• EXPERIENCE: 3-5 years\n• BRAINTRUST JOB ID: 9685\n\nTHE OPPORTUNITY\n\nRequirementsWhat’s the role?\n\nWe are looking for an experienced frontend engineer to join our established yet evolving Design Systems team.\n\nAs a Senior Software Engineer on Design Systems you will be responsible for writing frontend components, architecture, and documentation to improve and expand our Design System. Do you find joy in writing high-quality frontend code and helping other engineers learn and work more effectively? If so, this could be the perfect match.\n\nWhat’s this team like at Etsy?\n\n• Design Systems is responsible for the concepts, guides, systems, and components that make up the fabric of Etsy’s customer experience.\n• Our product teams use Etsy’s mature Design System, "Collage", to build beautiful, engaging, inclusive, accessible and useful products consistently to Etsy’s Buyers and Sellers.\n• You will work directly with Design, Product and Engineering leadership across all platforms to craft our growing landscape of systems. Your work will have a multiplier effect, touching all of Etsy’s product teams as well as every piece of the customer journey.\n• Design Systems is a truly cross-functional, cross-platform team made up of 10+ web and native designers and engineers who are fun, curious, collaborative, passionate leaders - if that resonates with you, please join us!\nWhat you’ll be working onWhat does the day-to-day look like?\n\n• Serve as an advocate for Design Systems, Frontend, and Accessibility across Etsy\n• Create and update reusable components that are used by product teams across all of Etsy\n• Contribute to and lead projects - such as introducing Design Tokens, improving our Metrics, or re-writing our Overlay component\n• Provide daily support for peers across Etsy (ex. writing documentation, reviewing pull requests, answering Slack questions, auditing new features, hosting office hours and classes)\n• Identify and propose tracks of work and tech debt that move our Design System forward\n• Of course, this is just a sample of the kinds of work this role will require! You should assume that your role will encompass other tasks, too, and that your job duties and responsibilities may change from time to time at Etsy's discretion, or otherwise applicable with local law.\n\nQualities that will help you thrive in this role are:\n\n• Expertise in writing JavaScript, CSS, and other frontend code, such as TypeScript, React, Storybook, as well as legacy frameworks\n• Experience working on Design Systems, ideally at a comparable company\n• Ability to hold an opinionated stance on Frontend Architecture and Design Systems - but always willing to change your mind\n• This job is not just building frontend components - consideration of experimentation, documentation, and design will help you thrive\n• Experience leading, mentoring, and coaching other engineers in a compassionate manner\n• Successful track record of planning and leading projects to completion\n• A growth mindset with excitement towards receiving feedback and learning opportunities\n• A strong sense of ownership towards your work\n• Desire to understand the "why" behind what we are doing\n• Strength in frequent collaboration and communication, acting in an inclusive, thoughtful and kind manner\nApply Now!\n\nNotes:\n\nOur employers all have varying legal and geographic requirements for their roles, they trust Braintrust to find them the talent that meet their unique specifications. For that reason, this role is not available to C2C candidates working with an agency. If you are a professional contractor who has created an LLC/corp around their consulting practice, this is well aligned with Braintrust and we’d welcome your application.\n\nBraintrust values the multitude of talents and perspectives that a diverse workforce brings. All qualified applicants will receive consideration for employment without regard to race, national origin, religion, age, color, sex, sexual orientation, gender identity, disability, or protected veteran status.", + "job_is_remote": false, + "job_posted_at_timestamp": 1696573143, + "job_posted_at_datetime_utc": "2023-10-06T06:19:03.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=90&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=y_EFydrtonckqkUeAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "EXPERIENCE: 3-5 years", + "Expertise in writing JavaScript, CSS, and other frontend code, such as TypeScript, React, Storybook, as well as legacy frameworks", + "Experience working on Design Systems, ideally at a comparable company", + "Ability to hold an opinionated stance on Frontend Architecture and Design Systems - but always willing to change your mind", + "This job is not just building frontend components - consideration of experimentation, documentation, and design will help you thrive", + "Experience leading, mentoring, and coaching other engineers in a compassionate manner", + "Successful track record of planning and leading projects to completion", + "A growth mindset with excitement towards receiving feedback and learning opportunities", + "A strong sense of ownership towards your work", + "Desire to understand the "why" behind what we are doing", + "Strength in frequent collaboration and communication, acting in an inclusive, thoughtful and kind manner" + ], + "Responsibilities": [ + "As a Senior Software Engineer on Design Systems you will be responsible for writing frontend components, architecture, and documentation to improve and expand our Design System", + "Design Systems is responsible for the concepts, guides, systems, and components that make up the fabric of Etsy’s customer experience", + "You will work directly with Design, Product and Engineering leadership across all platforms to craft our growing landscape of systems", + "Your work will have a multiplier effect, touching all of Etsy’s product teams as well as every piece of the customer journey", + "Serve as an advocate for Design Systems, Frontend, and Accessibility across Etsy", + "Create and update reusable components that are used by product teams across all of Etsy", + "Contribute to and lead projects - such as introducing Design Tokens, improving our Metrics, or re-writing our Overlay component", + "Provide daily support for peers across Etsy (ex", + "writing documentation, reviewing pull requests, answering Slack questions, auditing new features, hosting office hours and classes)", + "Identify and propose tracks of work and tech debt that move our Design System forward", + "Of course, this is just a sample of the kinds of work this role will require!", + "You should assume that your role will encompass other tasks, too, and that your job duties and responsibilities may change from time to time at Etsy's discretion, or otherwise applicable with local law" + ], + "Benefits": [ + "HOURLY RANGE: Our client is looking to pay 95ドル – 104ドル /hr" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113400", + "job_onet_job_zone": "3", + "job_occupational_categories": [ + "15-1132.00 Software Developers, Application" + ] + }, + { + "employer_name": "Onebrief", + "employer_logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQMWsU6gpCS-fHG5JzjWIOIfYJbV7Cc3hupIf_s&s=0", + "employer_website": "http://onebrief.com", + "employer_company_type": null, + "job_publisher": "Jobs", + "job_id": "r_rqAH5-TZ2NyUPoAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer, Full-stack", + "job_apply_link": "https://jobs.ashbyhq.com/onebrief/33b0d261-bd4f-46db-bc23-2f16769a5edc", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.6644, + "apply_options": [ + { + "publisher": "Jobs", + "apply_link": "https://jobs.ashbyhq.com/onebrief/33b0d261-bd4f-46db-bc23-2f16769a5edc", + "is_direct": false + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/software-engineer-full-stack-at-onebrief-3741527860", + "is_direct": false + } + ], + "job_description": "Overview\n\nOnebrief makes military planning seamless and represents a shift in paradigm for future military decisions. It is an all-in-one tool that supports both the creative and process-oriented aspects of military planning. In Onebrief, planners use maps, boards, diagrams, timelines, tables, slide decks and text documents to create their plans—all while sharing a common database. Everything stays in sync, in real time. Our approach has been refined and validated through hundreds of user experiments.\n\nWe’re post-revenue (5ドルM+ in ARR), and our customers include some of the most prestigious military commands around the world. We are backed by Y Combinator (S21) and top-tier VCs, including Caffeinated Capital (Affirm, Docker, Notion, and more). Our elite team combines the best of tech and military talent, including education and experience at Google, Facebook, Twitter, Adobe, MIT, Harvard, Rivian, Delta Force, TOPGUN, and more.\n\nWe have a big year ahead of us and can barely keep up with demand. This is an opportunity for you to join us with all the perks of an early employee.\nWhat you will achieve\n\nAs a Software Engineer, you'll work in close collaboration with our product, design, and tech operations teams. You'll be responsible for implementing and refining our realtime collaboration, maps, data visualization, rich text, and presentation features, as well as workflows and integrations—all of which are distinguished by rich and highly interactive user interfaces. This is a hands-on role, but you'll also play a key function in continuously improving our end-to-end architecture and developer experience.\n\nYou’ll report directly to Eric Richardson, our Director of Software Engineering\n\nCore Technologies: React, Node.js, Typescript, Postgres, Redis, Kubernetes\nAbout You\n\nThe ideal candidate has worked on projects where creating a killer user experience involved a great deal of technical challenges. We are especially interested in B2B/SaaS projects involving aspects of creative support, data visualization, or modern collaboration.\nQualifications\n• You are a trained and experienced (3+ years) full-stack engineer, who's worked extensively with React and Node.js\n• You have a comprehensive understanding of the current state of web technology and best practices\n• You are a stickler for great developer experience and have frequently rolled up your sleeves and found solutions that made the whole team better\n• Most importantly, you are a true Onebriefer:\n• You are obsessed with creating value for real users\n• You are ambitious, scrappy, and a creative problem-solver\n• You learn quickly, work iteratively, and naturally seek collaboration\n• You approach your work with integrity, intellectual honesty, and a low ego\n• You communicate frankly, clearly, and succinctly\n• You thrive as a self-starter, embracing autonomy and ambiguity\n• You are a U.S. citizen\n\nAbout Us\n\nOur team shares a mission, seeks excellence, and plays to win, with the seriousness and camaraderie of an olympic team. We are in this together, not just because Onebrief will one day be 10x the size of Palantir. We are here to radically improve the future of military decisions, so that the coming decades don’t repeat the previous ones.\n\nHere’s what our team members value most about working here:\n• Founders' transparency\n• Product and vision\n• Nimble leadership\n• Challenges and learning opportunities\n• Ownership and autonomy\n• No non-sense policies and procedures\n• Remote-first\n\nWhat's in it for you\n• 160ドルk - 200ドルk salary/year\n• Equity\n• Remote work, flex time, and unlimited PTO\n• Health, dental, vision, and life insurance\n• 401k\n• Parental leave", + "job_is_remote": true, + "job_posted_at_timestamp": 1690243200, + "job_posted_at_datetime_utc": "2023-07-25T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "health_insurance", + "paid_time_off", + "dental_coverage", + "retirement_savings" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=90&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=r_rqAH5-TZ2NyUPoAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "The ideal candidate has worked on projects where creating a killer user experience involved a great deal of technical challenges", + "We are especially interested in B2B/SaaS projects involving aspects of creative support, data visualization, or modern collaboration", + "You are a trained and experienced (3+ years) full-stack engineer, who's worked extensively with React and Node.js", + "You have a comprehensive understanding of the current state of web technology and best practices", + "You are a stickler for great developer experience and have frequently rolled up your sleeves and found solutions that made the whole team better", + "Most importantly, you are a true Onebriefer:", + "You are obsessed with creating value for real users", + "You are ambitious, scrappy, and a creative problem-solver", + "You learn quickly, work iteratively, and naturally seek collaboration", + "You approach your work with integrity, intellectual honesty, and a low ego", + "You communicate frankly, clearly, and succinctly", + "You thrive as a self-starter, embracing autonomy and ambiguity", + "You are a U.S. citizen" + ], + "Responsibilities": [ + "As a Software Engineer, you'll work in close collaboration with our product, design, and tech operations teams", + "You'll be responsible for implementing and refining our realtime collaboration, maps, data visualization, rich text, and presentation features, as well as workflows and integrations—all of which are distinguished by rich and highly interactive user interfaces", + "This is a hands-on role, but you'll also play a key function in continuously improving our end-to-end architecture and developer experience", + "You’ll report directly to Eric Richardson, our Director of Software Engineering" + ], + "Benefits": [ + "Challenges and learning opportunities", + "Ownership and autonomy", + "160ドルk - 200ドルk salary/year", + "Equity", + "Remote work, flex time, and unlimited PTO", + "Health, dental, vision, and life insurance", + "401k", + "Parental leave" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113300", + "job_onet_job_zone": "4" + }, + { + "employer_name": "Block Party", + "employer_logo": null, + "employer_website": null, + "employer_company_type": null, + "job_publisher": "Job Openings", + "job_id": "ZnFN7XLuv5YXvE36AAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer", + "job_apply_link": "https://block-party.breezy.hr/p/788ffeb2d5d0-software-engineer?source=remotive", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.8118, + "apply_options": [ + { + "publisher": "Job Openings", + "apply_link": "https://block-party.breezy.hr/p/788ffeb2d5d0-software-engineer?source=remotive", + "is_direct": false + } + ], + "job_description": "Company description:\nBlock Party is a seed-stage tech startup building powerful consumer tools for online safety and privacy. People described our flagship product for Twitter as "​​bloody marvellous", "the only thing that makes [Twitter] bearable", and "v good app 10/10 much recommend". And although it’s only in Alpha, our new product, Privacy Party, rates as "magical","really f****** cool!", and "an essential extension if you access any social media sites".\n\nWe’re a team of Stanford, Harvard, Yale, and MIT alums led by founder and CEO Tracy Chou (early engineer at Pinterest, Quora, and Facebook; 2022 Time Woman of the Year; Forbes 30 under 30) and backed by world class investors like Precursor and Stellation. More about us on the company website.\n\nStart date:\nImmediate\n\nLocation:\nUS; this is a remote role on a distributed team (core working hours are midday Eastern Time)\n\nWhat you’ll do:\nYou’ll be one of the first engineers on the team and help bring our first product to market. You’ll work closely with the (technical) CEO and teammates on engineering, design, growth and go-to-market to prioritize the product and tech roadmap; you’ll also be a critical part of the engineering team responsible for building and shipping. As an early member of the engineering team, you’ll shape the foundations of Block Party engineering, not just in terms of the technology but also the culture and processes.\n\nWhat we’re looking for:\n• A full-stack or back-end builder with 2+ years of relevant industry experience\n• A product-first engineer able to work cross-functionally with design, growth, and go-to-market\n• A clear, friendly, open-minded communicator who provides and incorporates feedback\n• A strategic thinker who can plan & reason about product, technology, processes, and people\n• Ability to execute in a remote startup environment\n• Curiosity, humility, a desire to learn and grow and to help others learn and grow\n• Passion for building thoughtful, ethical technology\n\nNice-to-haves, but not required:\n• Experience at an early stage startup\n• Experience with the current tech stack (described below)\n• Experience at a consumer social platform company or working with their APIs\n• Experience with trust and safety / moderation / anti-abuse\n\nTech stack:\nOur browser extension product, Privacy Party, is built in React.js and SCSS, with core automations primarily in JavaScript. The application backend is handled by a Python Flask service with a GraphQL API and persistent data backed by a Postgres database via SQLAlchemy/Alembic. Our cloud infrastructure is hosted on Render and AWS.\n\nThe application is integrated with Sentry and Mixpanel for error logging and product metrics, respectively. We use Parcel for static assets builds, TypeScript for type annotations / safety, Jest for frontend unit tests, and Storybook as a UI harness for frontend development. Additional build verification with continuous integration on CircleCI helps us ensure that we deliver a consistent user experience.\n\nNote: Although it is currently on hiatus due to Twitter API changes, we still have hopes of bringing back Block Party's original anti-harassment product for Twitter someday. The web UI for that product is similarly built in React.js and SCSS, served by Python Flask through a GraphQL API and backed by PostgreSQL with SQLAlchemy/Alembic as the ORM. The bulk of the engineering work, though, is in systems to fetch and process large amounts of data from the Twitter API, the asynchronous task work implemented with Celery and backed by Redis and RabbitMQ. Everything is hosted on Render and AWS.\n\nDiversity and inclusion:\nAt Block Party, we believe in diversity and inclusion, and no applicant will face discrimination based on: race, ethnicity, national origin, religion, age, gender, sexual orientation, gender identity, disability status, parental status, or veteran status.", + "job_is_remote": true, + "job_posted_at_timestamp": 1615161600, + "job_posted_at_datetime_utc": "2021-03-08T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=90&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=ZnFN7XLuv5YXvE36AAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 24, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "A full-stack or back-end builder with 2+ years of relevant industry experience", + "A product-first engineer able to work cross-functionally with design, growth, and go-to-market", + "A clear, friendly, open-minded communicator who provides and incorporates feedback", + "A strategic thinker who can plan & reason about product, technology, processes, and people", + "Ability to execute in a remote startup environment", + "Curiosity, humility, a desire to learn and grow and to help others learn and grow", + "Passion for building thoughtful, ethical technology", + "Experience at an early stage startup", + "Experience with the current tech stack (described below)", + "Experience at a consumer social platform company or working with their APIs", + "Experience with trust and safety / moderation / anti-abuse" + ], + "Responsibilities": [ + "You’ll be one of the first engineers on the team and help bring our first product to market", + "You’ll work closely with the (technical) CEO and teammates on engineering, design, growth and go-to-market to prioritize the product and tech roadmap; you’ll also be a critical part of the engineering team responsible for building and shipping", + "As an early member of the engineering team, you’ll shape the foundations of Block Party engineering, not just in terms of the technology but also the culture and processes" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4" + }, + { + "employer_name": "Number8", + "employer_logo": null, + "employer_website": null, + "employer_company_type": null, + "job_publisher": "Jobvite", + "job_id": "85C56RhC9D3c9jgmAAAAAA==", + "job_employment_type": "CONTRACTOR", + "job_title": "Support Team Software Engineer", + "job_apply_link": "https://jobs.jobvite.com/number8/job/ofhHofwl", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.802, + "apply_options": [ + { + "publisher": "Jobvite", + "apply_link": "https://jobs.jobvite.com/number8/job/ofhHofwl", + "is_direct": false + }, + { + "publisher": "Startup Jobs", + "apply_link": "https://startup.jobs/support-team-software-engineer-number8-4781392", + "is_direct": false + } + ], + "job_description": "Overview\nNumber8 is seeking qualified candidates to fill the role of Software Engineer\n\nIn addition to a competitive salary rate and a positive work environment committed to delivering high-quality technology solutions, we also offer:\n• Flexible schedules and authentic work-life balance\n• Opportunities for continuing education\n• Social activities per country sponsored by the company\n• Birthday celebration\n• Payment in US Dollars\n\nAbout the role\n\nOur client serves more than 300,000 businesses in 25 industries in the United States by facilitating industry initiatives, administrating the company System of Standards, providing education and support, and connecting communities through events and online forums\n\nSupport team software engineer is responsible for troubleshooting and resolving issues with software applications. They work closely with product owners, product managers and users to understand the problems they are experiencing, and then use their technical skills to identify and implement solutions. Application support team software engineers may also be involved in developing and maintaining documentation for the applications they support. Additionally, they do proactive monitoring and resolution for technical debt and propose to close gaps for better supportability.\n\nThe main responsibilities/tasks include:\n• Respond to user support tickets and requests in a timely and efficient manner\n• Troubleshoot and resolve application issues and clearly articulating Root Cause Analysis\n• Hands-on and need to be able to get in and work with the business, design solutions, and code.\n• Work with developers to fix bugs and improve the performance and stability of applications.\n• Work with DevOps to understand incidents and assist in troubleshooting\n• Develop and maintain documentation for applications\n• Monitor application performance and identify potential problems\n• Implement and maintain change control procedures for application updates\n• Train users on new and updated applications\n\nJob Skills/Requirements\n- +90% English written and oral (at least B2 level) with excellent communication skills\n- 5+ years of experience in application development and support\n- Experience with a variety of software development tools and technologies such as Azure / .NET / ASP.NET / ASP.NET Core / SQL / Angular / JavaScript\n- Great at Troubleshooting defects\n- Strong problem-solving and analytical skills\n- Ability to work independently and as part of a team\n- Ability to take business requests and break them down into manageable steps to achieve a goal\n- Capable of designing a moderately sized software project, putting together a project plan to accomplish it, tracking progress, and executing it with a team\n- Able to see the big picture of how systems interact with one another\n\nApply today to learn more about this exciting opportunity. We are actively interviewing now for this position.", + "job_is_remote": false, + "job_posted_at_timestamp": 1696377600, + "job_posted_at_datetime_utc": "2023-10-04T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": ["retirement_savings"], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=90&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=85C56RhC9D3c9jgmAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 60, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Hands-on and need to be able to get in and work with the business, design solutions, and code", + "+90% English written and oral (at least B2 level) with excellent communication skills", + "5+ years of experience in application development and support", + "Experience with a variety of software development tools and technologies such as Azure / .NET / ASP", + "NET / ASP", + "NET Core / SQL / Angular / JavaScript", + "Great at Troubleshooting defects", + "Strong problem-solving and analytical skills", + "Ability to work independently and as part of a team", + "Ability to take business requests and break them down into manageable steps to achieve a goal", + "Capable of designing a moderately sized software project, putting together a project plan to accomplish it, tracking progress, and executing it with a team", + "Able to see the big picture of how systems interact with one another" + ], + "Responsibilities": [ + "Support team software engineer is responsible for troubleshooting and resolving issues with software applications", + "They work closely with product owners, product managers and users to understand the problems they are experiencing, and then use their technical skills to identify and implement solutions", + "Application support team software engineers may also be involved in developing and maintaining documentation for the applications they support", + "Additionally, they do proactive monitoring and resolution for technical debt and propose to close gaps for better supportability", + "Respond to user support tickets and requests in a timely and efficient manner", + "Troubleshoot and resolve application issues and clearly articulating Root Cause Analysis", + "Work with developers to fix bugs and improve the performance and stability of applications", + "Work with DevOps to understand incidents and assist in troubleshooting", + "Monitor application performance and identify potential problems", + "Implement and maintain change control procedures for application updates", + "Train users on new and updated applications" + ], + "Benefits": [ + "Flexible schedules and authentic work-life balance", + "Opportunities for continuing education", + "Social activities per country sponsored by the company", + "Birthday celebration", + "Payment in US Dollars" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15115100", + "job_onet_job_zone": "3" + }, + { + "employer_name": "Concentrix", + "employer_logo": "https://www.concentrix.com/wp-content/uploads/2022/10/logo-concentrix.svg", + "employer_website": "http://www.concentrix.com", + "employer_company_type": "Computer Services", + "job_publisher": "Concentrix Jobs", + "job_id": "pPXp9ZO3snyceK_KAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Full Stack Software Engineer", + "job_apply_link": "https://concentrix.dejobs.org/jefferson-city-mo/full-stack-software-engineer/481690DD7F3F4E3396DFC4759F05F49C/job/?utm_source=flexjobs.com-DE&utm_medium=Other&utm_campaign=flexjobs.com", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.64, + "apply_options": [ + { + "publisher": "Concentrix Jobs", + "apply_link": "https://concentrix.dejobs.org/jefferson-city-mo/full-stack-software-engineer/481690DD7F3F4E3396DFC4759F05F49C/job/?utm_source=flexjobs.com-DE&utm_medium=Other&utm_campaign=flexjobs.com", + "is_direct": false + }, + { + "publisher": "National Labor Exchange Veterans Jobs", + "apply_link": "https://veterans.usnlx.com/jefferson-city-mo/full-stack-software-engineer/481690DD7F3F4E3396DFC4759F05F49C/job/?vs=28", + "is_direct": false + }, + { + "publisher": "Trabajo.org", + "apply_link": "https://us.trabajo.org/job-1275-20231007-502cc8d8a8007f698289bc1feaec8712", + "is_direct": false + }, + { + "publisher": "Jobilize", + "apply_link": "https://www.jobilize.com/job/us-mo-jefferson-full-stack-software-engineer-concentrix-hiring-now", + "is_direct": false + } + ], + "job_description": "Job Title:\n\nFull Stack Software Engineer\n\nJob Description\n\nYour Journey at Concentrix Starts Here:\n\nAt Concentrix, our mission is to be the greatest customer engagement services company in the world, rich in diversity and talent. We believe in doing right by and for people, our clients, their customers, our staff, our communities, and our planet.\n\nWe cannot achieve this vision without you!\n\nIf you have an interest in improving business performance for the world’s best brands in over 40 countries spanning 6 continents, please continue reading. There are a few characteristics we look for across all our hires regardless of the team they are working for. If this is you, we would love to discuss career opportunities with you.\n• Are you ready to reimagine the world?\n• Does working for a company who invests in the future and is inspiring in the marketplace intrigue you?\n• Are you bold in your decisions, and do you have contrarian views on how to run a business?\n• Are you fanatical in your pursuit to continue improving your capabilities?\n\nConcentrix provides eligible employees with an opportunity to enroll in a variety of benefit programs, generally including private medical plans, competitive salary, retirement savings plans, paid learning days, and flexible workplaces. Specific benefits plans will vary by country/region.\n\nIn our Concentrix Catalyst team, you will work with the engine that powers the experience design and engineering capabilities at Concentrix. A leading global solutions company that reimagines everything CX through strategy, talent, and technology. We combine human-centered design, powerful data, and strong tech to accelerate CX transformation at scale. You will be surrounded by the best in the world providing market leading technology and insights to modernize and simplify the customer experience. Within our professional services team, you will deliver strategic consulting, design, advisory services, market research, and contact center analytics that deliver insights to improve outcomes and value for our clients. Hence achieving our vision.\n\nWe’re a remote-first company looking to hire the absolute best talent in the world.\n\n#LI-Remote\n\nAs a Full Stack Software Engineer, you'll play an important role in the development and enhancement of our text analytics solutions by using the latest technologies like generative AI and LLMs. You'll work on a collaborative and passionate Agile team, sharing your expertise in web application development. Our application is primarily Python and Typescript with an Elasticsearch and Postgres back end. We are looking for a well-balanced developer with experience in all layers of a web application stack., you would also have experience working with generative AI and big data analytics to help us meet our upcoming goals.\n\nYou will:\n• Design, develop, and maintain high-quality web applications using Python, React, TypeScript, Elasticsearch and Postgres (or other SQL DBs)\n• Implement text analytics solutions for processing, working with and visualizing big data\n• Participate in the full Agile development cycle, including sprint planning, daily stand-ups, code reviews, and retrospectives\n• Optimize application performance to ensure scalability and reliability\n• Identify and address technical debt and architecture improvements\n\nYou Have:\n• 2+ years of experience in full-stack web development, with a background using a variety of front end and back end technologies that may include: Python, React, TypeScript, Elasticsearch, Postgres, Databricks\n• Knowledge and experience using generative AI technologies like ChatGPT\n• Experience with data visualization libraries like eCharts\n• Proficient in microservice architecture and using containerization technologies including Docker and Kubernetes\n• Experience working in Azure and/or Google cloud platforms\n• Understanding of big data analytics and experience working with relevant tools and frameworks like Data Lake, Delta Lake and Databricks\n• Experience working in an Agile development environment\n• Ability to break down complex problems into manageable tasks\n• General understanding of software architecture and design patterns\n\nLocation:\n\nUSA, TX, Work-at-Home\n\nLanguage Requirements:\n\nTime Type:\n\nFull time\n\nIf you are a California resident, by submitting your information, you acknowledge that you have read and have access to the Job Applicant Privacy Notice for California Residents (https://www.concentrix.com/resource/job-applicant-privacy-notice-for-california-residents/)\n\nConcentrix is an Equal Opportunity/Affirmative Action Employer including Disabled/Vets.\n\nFor more information regarding your EEO rights as an applicant, please visit the following websites:\n\n•English (https://www.eeoc.gov/sites/default/files/2023-06/22-088_EEOC_KnowYourRights6.12.pdf)\n\n•Spanish (https://www.eeoc.gov/sites/default/files/2023-06/22-088_EEOC_KnowYourRightsSp6.12.pdf)\n\nTo request a reasonable accommodation please click here (https://jobs.concentrix.com/global/en/reasonable-accomodation) .\n\nIf you wish to review the Affirmative Action Plan, please click here (https://jobs.concentrix.com/global/en/affirmative-action) .", + "job_is_remote": false, + "job_posted_at_timestamp": 1689311509, + "job_posted_at_datetime_utc": "2023-07-14T05:11:49.000Z", + "job_city": "Jefferson City", + "job_state": "MO", + "job_country": "US", + "job_latitude": 38.576702, + "job_longitude": -92.173515, + "job_benefits": [ + "retirement_savings", + "health_insurance", + "dental_coverage" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=90&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=pPXp9ZO3snyceK_KAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 24, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "We are looking for a well-balanced developer with experience in all layers of a web application stack., you would also have experience working with generative AI and big data analytics to help us meet our upcoming goals", + "2+ years of experience in full-stack web development, with a background using a variety of front end and back end technologies that may include: Python, React, TypeScript, Elasticsearch, Postgres, Databricks", + "Knowledge and experience using generative AI technologies like ChatGPT", + "Experience with data visualization libraries like eCharts", + "Proficient in microservice architecture and using containerization technologies including Docker and Kubernetes", + "Experience working in Azure and/or Google cloud platforms", + "Understanding of big data analytics and experience working with relevant tools and frameworks like Data Lake, Delta Lake and Databricks", + "Experience working in an Agile development environment", + "Ability to break down complex problems into manageable tasks", + "General understanding of software architecture and design patterns" + ], + "Responsibilities": [ + "You will be surrounded by the best in the world providing market leading technology and insights to modernize and simplify the customer experience", + "As a Full Stack Software Engineer, you'll play an important role in the development and enhancement of our text analytics solutions by using the latest technologies like generative AI and LLMs", + "You'll work on a collaborative and passionate Agile team, sharing your expertise in web application development", + "Implement text analytics solutions for processing, working with and visualizing big data", + "Participate in the full Agile development cycle, including sprint planning, daily stand-ups, code reviews, and retrospectives", + "Optimize application performance to ensure scalability and reliability", + "Identify and address technical debt and architecture improvements" + ], + "Benefits": [ + "Concentrix provides eligible employees with an opportunity to enroll in a variety of benefit programs, generally including private medical plans, competitive salary, retirement savings plans, paid learning days, and flexible workplaces", + "Specific benefits plans will vary by country/region" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113300", + "job_onet_job_zone": "4", + "job_naics_code": "541512", + "job_naics_name": "Computer Systems Design Services" + }, + { + "employer_name": "Locus Robotics", + "employer_logo": "https://www.automate.org/userAssets/members/3079/logo/Locus_Robotics_New.png", + "employer_website": "http://locusrobotics.com", + "employer_company_type": null, + "job_publisher": "SmartRecruiters Job Search", + "job_id": "YxOftxKy9vT3JQ8QAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Senior Software Engineer, Database (Remote US)", + "job_apply_link": "https://jobs.smartrecruiters.com/LocusRobotics/743999929333123-senior-software-engineer-database-us-remote-", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.7442, + "apply_options": [ + { + "publisher": "SmartRecruiters Job Search", + "apply_link": "https://jobs.smartrecruiters.com/LocusRobotics/743999929333123-senior-software-engineer-database-us-remote-", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=543d795863967f1e", + "is_direct": true + }, + { + "publisher": "Built In", + "apply_link": "https://builtin.com/job/engineer/senior-software-engineer-database-remote-us/2086815", + "is_direct": false + }, + { + "publisher": "Adzuna", + "apply_link": "https://www.adzuna.com/details/4383778346", + "is_direct": true + } + ], + "job_description": "Company Description\n\nLocus Robotics is a leader in the rapidly growing eCommerce order fulfillment optimization space. Our solution helps warehouse owners attain 2-3X efficiency over cart-picking operations by empowering pickers to work collaboratively with our robots, while integrating with the operator’s Warehouse Management System and using and optimizing existing facility infrastructure. This is an opportunity to join a very smart team deploying cutting-edge technology, to address real-world logistics challenges for major global brands.\n\nWe are seeking an experienced, talented, self-motivated Senior Developer who has a successful track record utilizing modern technologies for Database development and optimization. You will have the opportunity to make a major impact on the technical direction of our products, working with our robotics application interface to improve its core functionality and add new features while maintaining and developing the backend environment. This role is perfect for someone who loves a fast-paced startup environment and wants to break into the robotics field.\n\nJob Description\n• Contribute to software design and architecture, including design reviews\n• Work on a team of talented engineers to maintain the current and lay the foundation for the future generation of Robot/Warehouse Execution Systems\n• Develop high-quality code along with automated unit tests for cloud based and self hosted SaaS products\n• Contribute to integration, system, and performance testing, including test tools\n• Take ownership as a highly motivated member of a scrum team\n• Assist with troubleshooting customer problems and finding solutions in a timely fashion\n• Write test cases within an automated test framework for development projects\n• Work within a scrum environment to plan and deliver incremental software in defined sprints\n• Build strong partnerships with UX Designers, Software Developers, and Product Managers\n• Act as a mentor to junior team members\n\nQualifications\n• Bachelors Degree in Computer Science, Information Technology, MIS, or similar engineering degree\n• 5+ Years of experience in database development and optimization, Microsoft SQL in particular. Previous MS SQL DBA experience is a large plus\n• Familiarity with Data Tier Application and automated builds of DTA or other schema migration tools\n• Knowledge of object-oriented software development, C# and .NET in particular and strong object oriented design and development skills\n• Analytical and problem-solving skills\n• Expertise with warehouse execution and warehouse automation systems is a strong plus\n• Ability to join a team that maintains current systems while innovating the next generation platforms that handle autonomous robots\n• A good sense of humor and an ability to have fun\n\nAdditional Information\n\nLocus Robotics is an Equal Opportunity Employer", + "job_is_remote": false, + "job_posted_at_timestamp": 1697750153, + "job_posted_at_datetime_utc": "2023-10-19T21:15:53.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=90&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=YxOftxKy9vT3JQ8QAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 60, + "experience_mentioned": true, + "experience_preferred": true + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Bachelors Degree in Computer Science, Information Technology, MIS, or similar engineering degree", + "5+ Years of experience in database development and optimization, Microsoft SQL in particular", + "Previous MS SQL DBA experience is a large plus", + "Familiarity with Data Tier Application and automated builds of DTA or other schema migration tools", + "Knowledge of object-oriented software development, C# and .NET in particular and strong object oriented design and development skills", + "Analytical and problem-solving skills", + "Expertise with warehouse execution and warehouse automation systems is a strong plus", + "Ability to join a team that maintains current systems while innovating the next generation platforms that handle autonomous robots", + "A good sense of humor and an ability to have fun" + ], + "Responsibilities": [ + "You will have the opportunity to make a major impact on the technical direction of our products, working with our robotics application interface to improve its core functionality and add new features while maintaining and developing the backend environment", + "Contribute to software design and architecture, including design reviews", + "Work on a team of talented engineers to maintain the current and lay the foundation for the future generation of Robot/Warehouse Execution Systems", + "Develop high-quality code along with automated unit tests for cloud based and self hosted SaaS products", + "Contribute to integration, system, and performance testing, including test tools", + "Take ownership as a highly motivated member of a scrum team", + "Assist with troubleshooting customer problems and finding solutions in a timely fashion", + "Write test cases within an automated test framework for development projects", + "Work within a scrum environment to plan and deliver incremental software in defined sprints", + "Build strong partnerships with UX Designers, Software Developers, and Product Managers", + "Act as a mentor to junior team members" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4" + }, + { + "employer_name": "CURO Financial Technologies Corp", + "employer_logo": "https://media.glassdoor.com/companyupdate/w900/216065/curo-financial-technologies-companyupdate-1644025577312.png?signature=f23e19999b29667cc944821385dcc17529353504f674ae740ee936fb3e2d3fc7", + "employer_website": "http://www.curo.com", + "employer_company_type": null, + "job_publisher": "LinkedIn", + "job_id": "s1NVrSfsVwNyj2n6AAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Senior Software Engineer - Remote", + "job_apply_link": "https://www.linkedin.com/jobs/view/senior-software-engineer-remote-at-curo-financial-technologies-corp-3743870165", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.6581, + "apply_options": [ + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/senior-software-engineer-remote-at-curo-financial-technologies-corp-3743870165", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=1f953d7f243af46d", + "is_direct": true + }, + { + "publisher": "CURO - ICIMS", + "apply_link": "https://curobrands-curo.icims.com/jobs/6870/senior-software-engineer---remote/job", + "is_direct": true + }, + { + "publisher": "Glassdoor", + "apply_link": "https://www.glassdoor.com/job-listing/senior-software-engineer-chicago-curo-financial-technologies-corp-JV_IC1128808_KO0,32_KE33,65.htm?jl=1008802578381", + "is_direct": false + }, + { + "publisher": "USNLX Virtual Jobs - National Labor Exchange", + "apply_link": "https://virtualjobs.usnlx.com/virtual-usa/senior-software-engineer-remote/1A4A29F1440445A8998AB061EB0C37C1/job/?vs=28", + "is_direct": false + }, + { + "publisher": "Salary.com", + "apply_link": "https://www.salary.com/job/curo-financial-technologies-corp/senior-software-engineer-remote/j202310250856548050540", + "is_direct": false + } + ], + "job_description": "CURO is one of the largest, fastest growing full-spectrum consumer credit lenders in the United States and Canada. Our licensed, direct lending products and heightened customer service focus are at the core of what we offer.\n\nWe have an upbeat, friendly and fast-paced environment. Our employees are excited to be a part of the CURO family, as evidenced by our low turnover rates and energized company culture. We’ve consistently grown well ahead of other loan lenders and are primed for continued growth and enduring success.\n\nCome and work for a company that has distinguished itself from competitors with quality product offerings, genuine customer service, robust operating systems, state-of-the-art call center, and a track record of new product innovation!\n\nResponsibilities\n\nWhat you will be doing:\n• Collaborate with product managers, architects, and development teams to understand business requirements and translate them into technical solutions.\n• Design, develop, and maintain high-quality software applications using .Net technologies, adhering to best practices, coding standards, and architectural guidelines.\n• Lead the full software development lifecycle, from requirements gathering and design to implementation, testing, and deployment.\n• Mentor and provide technical guidance to junior engineers, fostering their growth and promoting a culture of continuous learning and improvement.\n• Conduct code reviews, ensuring code quality, performance, and adherence to established standards.\n• Collaborate with DevOps engineers to establish efficient and scalable deployment processes, including continuous integration and deployment.\n• Collaborate with QA engineers to ensure the reliability, performance, and security of software applications through comprehensive testing and code analysis.\n• Participate in architectural discussions and contribute to the evolution and improvement of our software architecture and design patterns.\n• Stay updated with the latest industry trends, technologies, and best practices, and share knowledge with the team to drive innovation and technical excellence.\n• Troubleshoot and resolve complex technical issues, working closely with cross-functional teams to identify root causes and implement effective solutions.\n\nQualifications\n\nWhat you should have:\n• Bachelor's degree in Computer Science , Engineering, or a related field (or equivalent work experience).\n• 5+ years of experience.\n• Proven experience working as a Software Engineer, with a focus on .Net technologies and the Microsoft technology stack.\n• Strong proficiency in C# and .Net Framework, with hands-on experience in developing enterprise-level applications.\n• Solid understanding of software engineering principles, design patterns, and best practices for building scalable and maintainable software solutions.\n• Experience with front-end technologies such as HTML5, CSS3, JavaScript, and frameworks like Angular or React is a plus.\n• Proficiency in working with databases and SQL, including designing and optimizing database schemas and writing complex queries.\n• Experience with cloud platforms (such as AWS, Azure, or Google Cloud Platform) and familiarity with cloud-native application development is a plus.\n• Strong knowledge of software development methodologies, including Agile/Scrum, and experience working in an Agile development environment.\n• Demonstrated leadership abilities, with the ability to mentor and guide junior engineers in technical and professional growth.\n• Excellent problem-solving and analytical skills, with the ability to analyze complex technical issues and propose effective solutions.\n• Strong communication and collaboration skills, with the ability to work effectively in cross-functional teams and communicate technical concepts to non-technical stakeholders.\n\nBase Salary: 90,000ドル - 140,000ドル\n\nThe base salary range represents the low and high end of the anticipated salary range for this position based on the U.S. average. The actual base salary offered for this full-time position will be determined by various factors, including but not limited to, location, skills, knowledge, competencies, and experience.\n\nAll full-time salaried employees are eligible for the following benefits, starting on day one: Flexible Paid Time Off Program, Medical, Dental, Vision, Life Insurance, Disability, and other voluntary coverages. You will also be eligible to participate in our 401k program, starting on the first of the month following 30 days of employment with a company match.\n\nThis employer participates in E-Verify for US-based hires.\n\n#CURO\n\nEEO Statement\n\nCURO Supports Equal Employment Opportunity. CURO (dba Cash Money ® , LendDirect ® , Heights Finance, Southern Finance, Covington Credit, Quick Credit, and First Heritage Credit) is committed to a policy of providing equal employment opportunity to all qualified employees and applicants. This commitment is reflected in all aspects of our daily operations. We do not discriminate on the basis of race, color, sex, religion, national origin, marital status, age, disability, veteran status, or genetic information in any personnel practice, including recruitment, hiring, training, compensation, promotion, and discipline. Additionally, we do not discriminate based on any other characteristic protected by applicable state/provincial or local law where a particular employee works. In addition, it is the policy of CURO to provide reasonable accommodation to qualified employees who have protected disabilities to the extent required by federal law and any state/provincial law where a particular employee works.", + "job_is_remote": true, + "job_posted_at_timestamp": 1698341209, + "job_posted_at_datetime_utc": "2023-10-26T17:26:49.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "dental_coverage", + "retirement_savings", + "paid_time_off", + "health_insurance" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=90&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=s1NVrSfsVwNyj2n6AAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": "2023-11-25T17:26:49.000Z", + "job_offer_expiration_timestamp": 1700933209, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 60, + "experience_mentioned": true, + "experience_preferred": true + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": true, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Bachelor's degree in Computer Science , Engineering, or a related field (or equivalent work experience)", + "5+ years of experience", + "Proven experience working as a Software Engineer, with a focus on .Net technologies and the Microsoft technology stack", + "Strong proficiency in C# and .Net Framework, with hands-on experience in developing enterprise-level applications", + "Solid understanding of software engineering principles, design patterns, and best practices for building scalable and maintainable software solutions", + "Proficiency in working with databases and SQL, including designing and optimizing database schemas and writing complex queries", + "Strong knowledge of software development methodologies, including Agile/Scrum, and experience working in an Agile development environment", + "Demonstrated leadership abilities, with the ability to mentor and guide junior engineers in technical and professional growth", + "Excellent problem-solving and analytical skills, with the ability to analyze complex technical issues and propose effective solutions", + "Strong communication and collaboration skills, with the ability to work effectively in cross-functional teams and communicate technical concepts to non-technical stakeholders" + ], + "Responsibilities": [ + "Collaborate with product managers, architects, and development teams to understand business requirements and translate them into technical solutions", + "Design, develop, and maintain high-quality software applications using .Net technologies, adhering to best practices, coding standards, and architectural guidelines", + "Lead the full software development lifecycle, from requirements gathering and design to implementation, testing, and deployment", + "Mentor and provide technical guidance to junior engineers, fostering their growth and promoting a culture of continuous learning and improvement", + "Conduct code reviews, ensuring code quality, performance, and adherence to established standards", + "Collaborate with DevOps engineers to establish efficient and scalable deployment processes, including continuous integration and deployment", + "Collaborate with QA engineers to ensure the reliability, performance, and security of software applications through comprehensive testing and code analysis", + "Participate in architectural discussions and contribute to the evolution and improvement of our software architecture and design patterns", + "Stay updated with the latest industry trends, technologies, and best practices, and share knowledge with the team to drive innovation and technical excellence", + "Troubleshoot and resolve complex technical issues, working closely with cross-functional teams to identify root causes and implement effective solutions" + ], + "Benefits": [ + "Base Salary: 90,000ドル - 140,000ドル", + "The base salary range represents the low and high end of the anticipated salary range for this position based on the U.S. average", + "The actual base salary offered for this full-time position will be determined by various factors, including but not limited to, location, skills, knowledge, competencies, and experience", + "All full-time salaried employees are eligible for the following benefits, starting on day one: Flexible Paid Time Off Program, Medical, Dental, Vision, Life Insurance, Disability, and other voluntary coverages", + "You will also be eligible to participate in our 401k program, starting on the first of the month following 30 days of employment with a company match" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4" + }, + { + "employer_name": "Citadel", + "employer_logo": "https://upload.wikimedia.org/wikipedia/commons/thumb/4/45/Citadel_LLC_Logo.svg/2560px-Citadel_LLC_Logo.svg.png", + "employer_website": "http://www.citadel.com", + "employer_company_type": "Finance", + "job_publisher": "Citadel Securities", + "job_id": "1STgUKqgcP05dvqNAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer- Full Time (Europe)", + "job_apply_link": "https://www.citadelsecurities.com/careers/details/software-engineer-full-time-europe/", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.8542, + "apply_options": [ + { + "publisher": "Citadel Securities", + "apply_link": "https://www.citadelsecurities.com/careers/details/software-engineer-full-time-europe/", + "is_direct": false + } + ], + "job_description": "At Citadel Securities, our engineers work in small teams to turn the best ideas into high-performing and resilient technology. With short development cycles, work rapidly goes into production. As an engineer, you can create systems architectures, develop platforms and build web frameworks. You’ll have access to state-of-the-art tools and apply innovative techniques including distributed computing, natural language processing, machine learning and more.\n\nYour Objectives:\n• Create technological tools that bring trading strategies to life\n• Develop high-performance, large data research platforms\n• Work in small teams to build the future of finance\n\nYour Skills & Talents:\n• Degree in Computer Science, Computer Engineering or related fields (Bachelor’s, Master’s, PhD)\n• Exceptional programming and design skills\n• Strong analytical skills and familiarity with probability and statistics\n• Ability to communicate effectively in a collaborative, complex and highly technical team environment\n• Intellectual curiosity and passion for solving challenging problems using technology\n\nOpportunities available in London.", + "job_is_remote": false, + "job_posted_at_timestamp": 1698192000, + "job_posted_at_datetime_utc": "2023-10-25T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=10&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=1STgUKqgcP05dvqNAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": false, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Degree in Computer Science, Computer Engineering or related fields (Bachelor’s, Master’s, PhD)", + "Exceptional programming and design skills", + "Strong analytical skills and familiarity with probability and statistics", + "Ability to communicate effectively in a collaborative, complex and highly technical team environment", + "Intellectual curiosity and passion for solving challenging problems using technology" + ], + "Responsibilities": [ + "As an engineer, you can create systems architectures, develop platforms and build web frameworks", + "Create technological tools that bring trading strategies to life", + "Develop high-performance, large data research platforms", + "Work in small teams to build the future of finance" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_naics_code": "523920", + "job_naics_name": "Portfolio Management" + }, + { + "employer_name": "Hudson River Trading", + "employer_logo": "https://upload.wikimedia.org/wikipedia/commons/3/3b/HRT_Primary_Logo_-_Full_Color.png", + "employer_website": "http://www.hudson-trading.com", + "employer_company_type": "Information", + "job_publisher": "Built In Colorado", + "job_id": "-hRNn2_9ssvUyB9MAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Systems Software Engineer - Network Automation (Greater Boulder Area, CO)", + "job_apply_link": "https://www.builtincolorado.com/job/engineer/systems-software-engineer-network-automation/165289", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.5764, + "apply_options": [ + { + "publisher": "Built In Colorado", + "apply_link": "https://www.builtincolorado.com/job/engineer/systems-software-engineer-network-automation/165289", + "is_direct": false + }, + { + "publisher": "Jooble", + "apply_link": "https://jooble.org/jdp/-1916057572809612039/Systems-Software-Engineer-+-Network-Automation-New-York-State", + "is_direct": false + } + ], + "job_description": "The Systems Development team builds and maintains the platform of infrastructure and software shared by all Systems teams to provision, monitor, and manage our servers and networks. As a systems software engineer, your main focus will be tool development in Python. You’ll improve and integrate existing tools and libraries across the platform, while designing and building new ones to make our trading, research, installation, and monitoring systems easier to manage and more reliable. Strong Python skills and development experience are required, along with general UNIX experience.\n\nThe focus of this role will be on tooling and software aimed at making our multi-vendor network environment easier to manage, deploy, and monitor. We are looking for engineers who like networks, being challenged, and working in a fast-paced environment. Responsibilities are broad, bureaucracy is limited, and opportunities for improvement and impact are vast.\nResponsibilities\n• Build and maintain tools and software features to automate systems engineering workflows around machine provisioning, monitoring, metrics collection, maintenance, network configuration, and more\n• Troubleshoot software bugs on a fleet of Linux machines, including application, network,operating system, or kernel issues\n• Build and maintain CI/CD pipelines for code testing and deployment\n• Build software and data models for network configuration\n• Utilize automation tools to mitigate the friction of networks on-call\n\nProfile\n• BS and/or MS in Computer Science or a related field\n• 3+ years of relevant experience, including programming in Python\n• You use automation to solve problems and improve processes efficiently — - why do the same task twice manually?\n• You’re a team player but also work well independently\n• You’re a seasoned multitasker, with the ability to juggle multiple projects while maintaining a high level of attention to detail\n• You’re familiar with working with open-source software, and interested in learning about networking fundamentals\n\nQualifications\n• Strong Python programming skills\n• Ability to debug and analyze problems quickly\n• Ability to learn at a fast pace and apply new skills effectively\n• Strong grasp of computer science fundamentals and software design patterns\n• Solid understanding of Linux/UNIX operating systems\n\nAnnual base salary range of 150,000ドル to 250,000ドル. Pay (base and bonus) may vary depending on job-related skills and experience. A sign-on and discretionary performance bonus may be provided as part of the total compensation package. In addition, Hudson River Trading offers comprehensive benefits, including medical, dental, retirement, paid time off, educational reimbursement, and fitness stipend.\n\nCulture\n\nHudson River Trading (HRT) brings a scientific approach to trading financial products. We have built one of the world's most sophisticated computing environments for research and development. Our researchers are at the forefront of innovation in the world of algorithmic trading.\nAt HRT we welcome a variety of expertise: mathematics and computer science, physics and engineering, media and tech. We’re a community of self-starters who are motivated by the excitement of being at the cutting edge of automation in every part of our organization—from trading, to business operations, to recruiting and beyond. We value openness and transparency, and celebrate great ideas from HRT veterans and new hires alike. At HRT we’re friends and colleagues – whether we are sharing a meal, playing the latest board game, or writing elegant code. We embrace a culture of togetherness that extends far beyond the walls of our office.\nFeel like you belong at HRT? Our goal is to find the best people and bring them together to do great work in a place where everyone is valued. HRT is proud of our diverse staff; we have offices all over the globe and benefit from our varied and unique perspectives. HRT is an equal opportunity employer; so whoever you are we’d love to get to know you.", + "job_is_remote": false, + "job_posted_at_timestamp": 1698066621, + "job_posted_at_datetime_utc": "2023-10-23T13:10:21.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "health_insurance", + "dental_coverage", + "paid_time_off", + "retirement_savings" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=10&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=-hRNn2_9ssvUyB9MAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 36, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": true, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": 150000, + "job_max_salary": 250000, + "job_salary_currency": "USD", + "job_salary_period": "YEAR", + "job_highlights": { + "Qualifications": [ + "Strong Python skills and development experience are required, along with general UNIX experience", + "BS and/or MS in Computer Science or a related field", + "3+ years of relevant experience, including programming in Python", + "You use automation to solve problems and improve processes efficiently — - why do the same task twice manually?", + "You’re a team player but also work well independently", + "You’re a seasoned multitasker, with the ability to juggle multiple projects while maintaining a high level of attention to detail", + "You’re familiar with working with open-source software, and interested in learning about networking fundamentals", + "Strong Python programming skills", + "Ability to debug and analyze problems quickly", + "Ability to learn at a fast pace and apply new skills effectively", + "Strong grasp of computer science fundamentals and software design patterns", + "Solid understanding of Linux/UNIX operating systems" + ], + "Responsibilities": [ + "The Systems Development team builds and maintains the platform of infrastructure and software shared by all Systems teams to provision, monitor, and manage our servers and networks", + "As a systems software engineer, your main focus will be tool development in Python", + "You’ll improve and integrate existing tools and libraries across the platform, while designing and building new ones to make our trading, research, installation, and monitoring systems easier to manage and more reliable", + "The focus of this role will be on tooling and software aimed at making our multi-vendor network environment easier to manage, deploy, and monitor", + "Build and maintain tools and software features to automate systems engineering workflows around machine provisioning, monitoring, metrics collection, maintenance, network configuration, and more", + "Troubleshoot software bugs on a fleet of Linux machines, including application, network,operating system, or kernel issues", + "Build and maintain CI/CD pipelines for code testing and deployment", + "Build software and data models for network configuration", + "Utilize automation tools to mitigate the friction of networks on-call" + ], + "Benefits": [ + "Annual base salary range of 150,000ドル to 250,000ドル", + "Pay (base and bonus) may vary depending on job-related skills and experience", + "A sign-on and discretionary performance bonus may be provided as part of the total compensation package", + "In addition, Hudson River Trading offers comprehensive benefits, including medical, dental, retirement, paid time off, educational reimbursement, and fitness stipend" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15114200", + "job_onet_job_zone": "4", + "job_naics_code": "5112", + "job_naics_name": "Software Publishers" + }, + { + "employer_name": "Okta, Inc.", + "employer_logo": "https://www.okta.com/sites/all/themes/Okta/images/logo.svg", + "employer_website": "http://www.okta.com", + "employer_company_type": null, + "job_publisher": "Okta", + "job_id": "48vih44brFg-6T8iAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Staff Software Engineer, Workflows", + "job_apply_link": "https://www.okta.com/company/careers/engineering/staff-software-engineer-workflows-5398792/", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.9291, + "apply_options": [ + { + "publisher": "Okta", + "apply_link": "https://www.okta.com/company/careers/engineering/staff-software-engineer-workflows-5398792/", + "is_direct": false + } + ], + "job_description": "Get to know Okta\nOkta is The World’s Identity Company. We free everyone to safely use any technology—anywhere, on any device or app. Our Workforce and Customer Identity Clouds enable secure yet flexible access, authentication, and automation that transforms how people move through the digital world, putting Identity at the heart of business security and growth. At Okta, we celebrate a variety of perspectives and experiences. We are not looking for someone who checks every single box - we’re looking for lifelong learners and people who can make us better with their unique experiences. Join our team! We’re building a world where Identity belongs to you.Product Description\nOkta Workflows is the foundation for secure integration between cloud services. By harnessing the power of the cloud, Okta allows people to quickly integrate different services, while still enforcing strong security policies. It integrates directly with an organization’s existing services such as.", + "job_is_remote": false, + "job_posted_at_timestamp": 1696204800, + "job_posted_at_datetime_utc": "2023-10-02T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=10&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=48vih44brFg-6T8iAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": {}, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15119900", + "job_onet_job_zone": "4" + }, + { + "employer_name": "Storm3", + "employer_logo": null, + "employer_website": null, + "employer_company_type": null, + "job_publisher": "Storm3", + "job_id": "5UvcVk_E9Jz7Yb7WAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Principal Software Engineer", + "job_apply_link": "https://storm3.com/job/storm3-united-states-digital-therapeutics-principal-software-engineer/", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.7002, + "apply_options": [ + { + "publisher": "Storm3", + "apply_link": "https://storm3.com/job/storm3-united-states-digital-therapeutics-principal-software-engineer/", + "is_direct": false + } + ], + "job_description": "⚡ Principal Software Engineer\n\n Andreessen Horowitz backing\n\n 240,000ドル-240,000ドル + 1% Equity\n\n USA (Remote)\n\nThis is an opportunity for an experienced IC to join a hyper-growth start-up who are on a mission to integrate nutritional therapy, clinical expertise, and cutting-edge machine learning and digital tools to tackle the underlying causes of chronic diseases.\n\nThe company is growing, & as the inaugural backend-specific engineer in this venture, you would be entrusted with a significant portion of the backend development, while also shaping the team’s trajectory and growth.\n\nResponsibilities:\n\nCode & ship complex backend features and API endpoints at a high velocity, while maintaining high quality, well-structured code\n\nTroubleshoot, debug, and fix issues in production and non-production environments.\n\nDevOps: You should be comfortable with basic cloud deployments.\n\nRequirements:\n\n5-10 years of experience building backend systems in production.\n\nHighly experienced in NodeJS, TypeScript, GCP & Google Kubernetes Engine\n\nExperienced with Infrastructure-as-Code (Pulumi or terraform preferred)\n\nHighly experienced in SQL database\n\nHighly knowledgeable and attentive to detail, carefully crafting both tests and code.\n\nA champion for quality in code, processes, and culture with a growth mindset\n\nAble to work independently to self-manage priorities.\n\nCollege degree in computer science or related field or industry experience.\n\nExperience working in startups.\n\nBenefits\n\nCompetitive Compensation\n\nEquity in a start-up backed by tier-1 VC’s\n\nFull Healthcare, Vision & Dental insurance\n\nAccess to a 401k plan\n\nRemote working\n\n This role is based in the US\n\n Interested in applying? Please click on the ‘Easy Apply’ button or for a confidential chat niall.bradley@storm3.com", + "job_is_remote": true, + "job_posted_at_timestamp": 1698167268, + "job_posted_at_datetime_utc": "2023-10-24T17:07:48.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "retirement_savings", + "health_insurance", + "dental_coverage" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=10&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=5UvcVk_E9Jz7Yb7WAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": "2023-11-23T23:59:59.000Z", + "job_offer_expiration_timestamp": 1700783999, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "5-10 years of experience building backend systems in production", + "Highly experienced in NodeJS, TypeScript, GCP & Google Kubernetes Engine", + "Highly experienced in SQL database", + "Highly knowledgeable and attentive to detail, carefully crafting both tests and code", + "A champion for quality in code, processes, and culture with a growth mindset", + "Able to work independently to self-manage priorities", + "College degree in computer science or related field or industry experience", + "Experience working in startups" + ], + "Responsibilities": [ + "Code & ship complex backend features and API endpoints at a high velocity, while maintaining high quality, well-structured code", + "Troubleshoot, debug, and fix issues in production and non-production environments", + "DevOps: You should be comfortable with basic cloud deployments" + ], + "Benefits": [ + " 240,000ドル-240,000ドル + 1% Equity", + "Competitive Compensation", + "Equity in a start-up backed by tier-1 VC’s", + "Full Healthcare, Vision & Dental insurance", + "Access to a 401k plan" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4" + }, + { + "employer_name": "RemoteWorker US", + "employer_logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTPmX_kOxfDz-v8rWg03-lIv68NbkYv-jMGKeOY&s=0", + "employer_website": null, + "employer_company_type": null, + "job_publisher": "LinkedIn", + "job_id": "VkuXceVivO49S0HgAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer - Applications Developer (Remote Ohio)", + "job_apply_link": "https://www.linkedin.com/jobs/view/software-engineer-applications-developer-remote-ohio-at-remoteworker-us-3748368362", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.5964, + "apply_options": [ + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/software-engineer-applications-developer-remote-ohio-at-remoteworker-us-3748368362", + "is_direct": false + }, + { + "publisher": "SaluteMyJob", + "apply_link": "https://salutemyjob.com/jobs/software-engineer-applications-developer-remote-ohio-kansas-city-missouri/1132792722-2/", + "is_direct": false + }, + { + "publisher": "KHON2 Jobs", + "apply_link": "https://jobs.khon2.com/jobs/software-engineer-applications-developer-remote-ohio-kansas-city-missouri/1132792722-2/", + "is_direct": false + }, + { + "publisher": "KSNT Jobs", + "apply_link": "https://jobs.ksnt.com/jobs/software-engineer-applications-developer-remote-ohio-kansas-city-missouri/1132792722-2/", + "is_direct": false + }, + { + "publisher": "WANE Jobs", + "apply_link": "https://jobs.wane.com/jobs/software-engineer-applications-developer-remote-ohio-kansas-city-missouri/1132792722-2/", + "is_direct": false + }, + { + "publisher": "My Stateline Jobs", + "apply_link": "https://jobs.mystateline.com/jobs/software-engineer-applications-developer-remote-ohio-kansas-city-missouri/1132792722-2/", + "is_direct": false + }, + { + "publisher": "WJHL Jobs", + "apply_link": "https://jobs.wjhl.com/jobs/software-engineer-applications-developer-remote-ohio-kansas-city-missouri/1132792722-2/", + "is_direct": false + }, + { + "publisher": "WAVY Jobs", + "apply_link": "https://jobs.wavy.com/jobs/software-engineer-applications-developer-remote-ohio-kansas-city-missouri/1132792722-2/", + "is_direct": false + } + ], + "job_description": "Location: Troy, OH, US, 45373\n\nCompany Description:\n\nCrown Equipment Corporation is a leading innovator in world-class forklift and material handling equipment and technology. Crown brings the benefits of technology to material handling by connecting lift trucks, operators and facilities and collecting accurate, real-time information for better decision-making.\n\nJob Responsibilities:\n\nSoftware Developer is a critical role in the development of InfoLink, Crown's global fleet management software solution. Crown's award-winning InfoLink is a SaaS solution built on Amazon's AWS platform using leading technologies such as Docker Containers, Python, C# / .NET, Java, Spring Cloud Framework, and Angular.\n\nThe Software Developer analyzes and evaluates existing or proposed systems and develops computer applications, systems and related procedures. The Software Developer also prepares program specifications, codes, tests, and debugs computer applications. Join a full stack development team practicing agile development methodologies with DevOps support.\n\nLocation: This position is based in our Troy, Ohio office with possible option to work from our New Bremen, Ohio global headquarters. These locations are reasonably close to Dayton, Columbus, Cincinnati, Fort Wayne, Indianapolis, Toledo, and Cleveland.\n\nRemote Work: Crown offers mostly remote work for this position. A reasonable commute is necessary since occasional onsite work is required.\n\nVisit YouTube to learn more about:\n\nCrown InfoLink Operator and Fleet Management System\n\nRelated Terms: Agile, App Dev, Application Developer, Applications Programmer, Backend Developer, Cloud Developer, DevOps, Front End Developer, Full Stack, C# / .NET, Java, J2EE, Object Oriented Programming, Python, SaaS Development, Software Engineer, Web Application Developer, Web Developer\n\nMinimum Qualifications:\n• Bachelor degree in Computer Science, Software Engineering, Information Systems, or related major. Will also consider High School Diploma, Bootcamp, or Associate degree with compensating application programming experience.\n• Proficient in Java and Angular with at least 3 years of experience\n• Good written, verbal, analytical, and interpersonal skills\n• Reliable transportation to travel locally between company locations during scheduled workday\n\nPreferred Qualifications:\n• C# experience a plus\n\nWork Authorization:\n\nCrown will only employ those who are legally authorized to work in the United States. This is not a position for which sponsorship will be provided. Individuals with temporary visas or who need sponsorship for work authorization now or in the future, are not eligible for hire.\n\nNo agency calls please.\n\nCompensation and Benefits:\n\nCrown offers an excellent wage and benefits package for full-time employees including Health/Dental/Vision/Prescription Drug Plan, Flexible Benefits Plan, 401K Retirement Savings Plan, Life and Disability Benefits, Paid Holidays, Paid Vacation, Tuition Reimbursement, and much more.\n\nEO/AA Employer Minorities/Females/Protected Veterans/Disabled\n\nJob Segment: Software Engineer, .NET, Application Developer, Cloud, Developer, Engineering, Technology", + "job_is_remote": true, + "job_posted_at_timestamp": 1698203757, + "job_posted_at_datetime_utc": "2023-10-25T03:15:57.000Z", + "job_city": "Kansas City", + "job_state": "MO", + "job_country": "US", + "job_latitude": 39.099728, + "job_longitude": -94.57857, + "job_benefits": [ + "health_insurance", + "retirement_savings", + "dental_coverage", + "paid_time_off" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=10&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=VkuXceVivO49S0HgAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": "2023-11-24T03:15:58.000Z", + "job_offer_expiration_timestamp": 1700795758, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 36, + "experience_mentioned": true, + "experience_preferred": true + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": true, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Bachelor degree in Computer Science, Software Engineering, Information Systems, or related major", + "Will also consider High School Diploma, Bootcamp, or Associate degree with compensating application programming experience", + "Proficient in Java and Angular with at least 3 years of experience", + "Good written, verbal, analytical, and interpersonal skills", + "Reliable transportation to travel locally between company locations during scheduled workday" + ], + "Responsibilities": [ + "Software Developer is a critical role in the development of InfoLink, Crown's global fleet management software solution", + "The Software Developer analyzes and evaluates existing or proposed systems and develops computer applications, systems and related procedures", + "The Software Developer also prepares program specifications, codes, tests, and debugs computer applications" + ], + "Benefits": [ + "Crown offers an excellent wage and benefits package for full-time employees including Health/Dental/Vision/Prescription Drug Plan, Flexible Benefits Plan, 401K Retirement Savings Plan, Life and Disability Benefits, Paid Holidays, Paid Vacation, Tuition Reimbursement, and much more", + "EO/AA Employer Minorities/Females/Protected Veterans/Disabled" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4" + }, + { + "employer_name": "Newfold Digital, Inc.", + "employer_logo": null, + "employer_website": "http://newfold.com", + "employer_company_type": null, + "job_publisher": "Workday", + "job_id": "ZZEK_tbhqUw3gK3vAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Junior Software Engineer", + "job_apply_link": "https://web.wd1.myworkdayjobs.com/en-US/ExternalCareerSite/job/Meridian-Idaho/Junior-Software-Engineer_R7775", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.649, + "apply_options": [ + { + "publisher": "Workday", + "apply_link": "https://web.wd1.myworkdayjobs.com/en-US/ExternalCareerSite/job/Meridian-Idaho/Junior-Software-Engineer_R7775", + "is_direct": false + } + ], + "job_description": "Who we are. Newfold Digital is a leading web technology company serving millions of customers globally. Our customers know us through our robust portfolio of brands. We have some of the industry's most prominent and storied go-to-market brands, including Bluehost, HostGator, Domain.com, Network Solutions, Register.com and Web.com. We help customers of all sizes build a digital presence that delivers results. With our extensive product offerings and personalized support, we take pride in collaborating with our customers to serve their online presence needs. The strength of our company lives in the intersection of our people, our customers, and our brands. The Junior Software Engineer develops and maintains software solutions that align with customer needs. The work is focused on the development and maintenance of our web-based applications and peripheral systems for the domain management market. ***This is a hybrid position that will require going to our Meridian, Idaho office 2 days per week. Candidate must reside in Idaho.*** What you’ll do & how you’ll make your mark. Collaborates with customers and peers to understand requirements Performs analysis, design and implementation of software solutions that align with customer needs Participates in the full software development life cycle and is responsible for providing simple, scalable software solutions Ensure quality standards are met and standard testing methodologies are adhered to Participate in an On Call rotation Develops new solutions that are scalable and maintainable Maintains existing software solution, which would include bug resolution Collaborates well with the team on all levels – troubleshooting issues, new development, and process improvement Participates in code reviews Works both independently and with guidance on both technical and non-technical responsibilities Who you are & what you’ll need to succeed. Demonstrable fundamental understanding in software engineering techniques and methodologies Good understanding of Java or equivalent programming language Fundamental understanding of SQL Fundamental understanding of Database schemas Develop and deliver feature requirements in a timely manner with acceptable unit test code coverage, and adhering to team coding standards Work with team members to help plan, estimate, and develop solutions to unique technical problems Quickly raise issues or concerns to the team and drive discussion end to end Accountable for themselves and success of the team Facilitate trust and collaboration by contributing and soliciting feedback Proactively communicate with peers and offer constructive feedback, raise risks, concerns, and roadblocks Why you’ll love us. Work-life balance. Our work is thrilling and meaningful, but we know balance is key to living well. We celebrate one another’s differences. We’re proud of our culture of diversity and inclusion. We foster a culture of belonging. Our company and customers benefit when employees bring their authentic selves to work. We have programs that bring us together on important issues and provide learning and development opportunities for all employees. We have 20 + affinity groups where you can network and connect with Newfolders globally. We care about you. We provide excellent Health Insurance options to fit you, HSA, Medical, Dental, Vision, Matching 401K, Life/AD&D/STD/LTD, Tuition Reimbursement, LinkedIn Learning, Pet Insurance, Generous Vacation policy, and much more! Where can we take you? We’re fans of helping our employees learn different aspects of the business, be challenged with new tasks, be mentored, and grow their careers. Unfold new possibilities with #teamnewfold! Employment with Newfold Digital is at-will and nothing in this Job Description should be interpreted or construed to alter the at-will employment relationship. This Job Description includes the essential job functions required to perform the job described above, as well as additional duties and responsibilities. This Job Description is not an exhaustive list of all functions that the employee performing this job may be required to perform. The Company reserves the right to revise the Job Description at any time, and to require the employee to perform functions in addition to those listed above. Newfold Digital is a leading web technology company serving nearly seven million customers globally. Established in 2021 through the combination of leading web services providers Endurance Web Presence and Web.com Group, our portfolio of brands includes: BlueHost, CrazyDomains, HostGator, Network Solutions, Register.com, Web.com, and many others. We help customers of all sized build a digital presence that delivers results. With our extensive product offerings and personalized support, we take pride in collaborating with customers to serve their online presence needs.", + "job_is_remote": true, + "job_posted_at_timestamp": 1698105600, + "job_posted_at_datetime_utc": "2023-10-24T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "retirement_savings", + "health_insurance", + "dental_coverage", + "paid_time_off" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=10&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=ZZEK_tbhqUw3gK3vAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": false, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": {}, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4" + }, + { + "employer_name": "Boeing", + "employer_logo": "https://upload.wikimedia.org/wikipedia/commons/thumb/4/4f/Boeing_full_logo.svg/2560px-Boeing_full_logo.svg.png", + "employer_website": "http://www.boeing.com", + "employer_company_type": "Manufacturing", + "job_publisher": "Boeing", + "job_id": "TLJ-t6DCvRdUQH9RAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Senior Software Engineer", + "job_apply_link": "https://jobs.boeing.com/job/oklahoma-city/senior-software-engineer/185/56048608624", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.9009, + "apply_options": [ + { + "publisher": "Boeing", + "apply_link": "https://jobs.boeing.com/job/oklahoma-city/senior-software-engineer/185/56048608624", + "is_direct": false + }, + { + "publisher": "The Muse", + "apply_link": "https://www.themuse.com/jobs/theboeingcompany/senior-software-engineer-acf8b2", + "is_direct": false + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/senior-software-engineer-at-boeing-3746047072", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=ece8df7960f536b0", + "is_direct": false + }, + { + "publisher": "Engineer Jobs", + "apply_link": "https://www.engineerjobs.com/posting/ihp1F0l0g1jDwWLp8LHCcwiS8YjhQF5cgrLX6g5VjmfoeD68o8cYNqSfy0w-_pr6", + "is_direct": false + }, + { + "publisher": "Jooble", + "apply_link": "https://jooble.org/jdp/6163857520584872087/Senior-Software-Engineer-Oklahoma-City%2C-OK", + "is_direct": false + }, + { + "publisher": "Ladders", + "apply_link": "https://www.theladders.com/job/senior-software-engineer-boeing-oklahoma-city-ok_65345201", + "is_direct": false + }, + { + "publisher": "Glassdoor", + "apply_link": "https://www.glassdoor.com/job-listing/senior-software-engineer-boeing-JV_IC1136950_KO0,24_KE25,31.htm?jl=1008938548711", + "is_direct": false + } + ], + "job_description": "Job Description\n\nAt Boeing, we innovate and collaborate to make the world a better place. From the seabed to outer space, you can contribute to work that matters with a company where diversity, equity and inclusion are shared values. We’re committed to fostering an environment for every teammate that’s welcoming, respectful and inclusive, with great opportunity for professional growth. Find your future with us.\n\nThe Boeing Company is looking for Senior Software Engineer to join our Bombers and Fighters organization, part of the Boeing Defense, Space, & Security (BDS) team in Oklahoma City, OK. BDS is seeking a highly qualified Software Engineer to develop leading edge solutions to directly support the warfighter. Boeing Software is experiencing unprecedented growth across all of its supported platforms due to the award of multiple new contracts.\n\nOur Bombers organization supports the B-1 Strike Bomber, B-2 Stealth Bomber, B-52 Heavy Bomber, and the ALCM weapon. These platforms continue to be updated to keep them relevant and supportive of emerging military systems. Upgrades include state-of-the-art radar systems, hypersonic weapons systems, and cutting-edge digital communication infrastructure.\n\nThe successful candidate selected for this position will work in an agile, collaborative environment working with some of the latest software development tools to support development and integration tasks. Troubleshooting normally involves a high-fidelity lab environment working with A/C hardware. The candidate should be self-motivated problem solver, capable of taking initiative with minimal instruction with the ability to problem solve in a clear and concise manner. As well as possess strong interpersonal skills.\n\nOccasional travel may be required but would be less than 10%.\n\nPosition Responsibilities:\n• Leads activities to develop, document and maintain architectures, requirements, algorithms, interfaces and designs for software systems\n• Leads development of code and integration of complex software components into a fully functional software system\n• Develops software verification plans, test procedures and test environments, executing the test procedures and documenting test results to ensure software system requirements are met\n• Provides technical leadership for software projects and leads software supplier management activities\n• Leads development, selection, tailoring and deployment of processes, tools and metrics\n• Plans, executes and documents software research and development projects\n• Serves as a subject matter expert for software domains, system-specific issues, processes and regulations\n• Tracks and evaluates software team and supplier performance to ensure product and process conformance to project plans and industry standards\n• Works under minimal direction\n\nThis position is hybrid. This means that the selected candidate will be required to perform some work onsite at one of the listed location options. This is at the hiring team’s discretion and could potentially change in the future.\n\nThis position requires the ability to obtain a U.S. Security Clearance for which the U.S. Government requires U.S. Citizenship. An interim and/or final U.S. Secret Clearance Post-Start is required.\n\nTo be considered for this position you will be required to complete a technical assessment as part of the selection process. Failure to complete the assessment will remove you from consideration.\n\nBasic Qualifications (Required Skills/Experience):\n• Bachelor, Master or Doctorate of Science degree from an accredited course of study, in Computer Engineering, Software Engineering, Computer Science, Mathematics, Physics or other technical degree\n• 5+ years of experience in software development\n• Experience applying agile best practices to develop applications\n\nPreferred Qualifications (Desired Skills/Experience):\n• Experience with technical mentoring and leadership\n• Technical experience in an aerospace environment\n• Experience in design and implementation of multi-threaded real-time applications\n• Experience using Scaled Agile Framework\n\nTypical Education/Experience:\n\nEducation/experience typically acquired through advanced technical education from an accredited course of study in engineering, computer science, mathematics, physics or chemistry (e.g. Bachelor) and typically 9 or more years' related work experience or an equivalent combination of technical education and experience (e.g. PhD+4 years' related work experience, Master+7 years' related work experience). In the USA, ABET accreditation is the preferred, although not required, accreditation standard.\n\nRelocation:\n\nThis position offers relocation based on candidate eligibility. Note: Basic relocation will be offered for eligible internal candidates.\n\nDrug Free Workplace:\n\nBoeing is a Drug Free Workplace where post offer applicants and employees are subject to testing for marijuana, cocaine, opioids, amphetamines, PCP, and alcohol when criteria is met as outlined in our policies.\n\nShift:\n\nThis position is for 1st shift.\n\nAt Boeing, we strive to deliver a Total Rewards package that will attract, engage and retain the top talent. Elements of the Total Rewards package include competitive base pay and variable compensation opportunities.\n\nThe Boeing Company also provides eligible employees with an opportunity to enroll in a variety of benefit programs, generally including health insurance, flexible spending accounts, health savings accounts, retirement savings plans, life and disability insurance programs, and a number of programs that provide for both paid and unpaid time away from work.\n\nThe specific programs and options available to any given employee may vary depending on eligibility factors such as geographic location, date of hire, and the applicability of collective bargaining agreements.\n\nPlease note that the salary information shown below is a general guideline only. Salaries are based upon candidate experience and qualifications, as well as market and business considerations.\n\nSummary pay range: 113,900ドル - 154,100ドル\n\nExport Control Requirements: Not an export control position\n\nEqual Opportunity Employer:\n\nBoeing is an Equal Opportunity Employer. Employment decisions are made without regard to race, color, religion, national origin, gender, sexual orientation, gender identity, age, physical or mental disability, genetic factors, military/veteran status or other characteristics protected by law.", + "job_is_remote": false, + "job_posted_at_timestamp": 1697760000, + "job_posted_at_datetime_utc": "2023-10-20T00:00:00.000Z", + "job_city": "Oklahoma City", + "job_state": "OK", + "job_country": "US", + "job_latitude": 35.46756, + "job_longitude": -97.516426, + "job_benefits": [ + "health_insurance", + "retirement_savings", + "dental_coverage" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=10&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=TLJ-t6DCvRdUQH9RAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 108, + "experience_mentioned": true, + "experience_preferred": true + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "The candidate should be self-motivated problem solver, capable of taking initiative with minimal instruction with the ability to problem solve in a clear and concise manner", + "As well as possess strong interpersonal skills", + "This position requires the ability to obtain a U.S. Security Clearance for which the U.S. Government requires U.S. Citizenship", + "An interim and/or final U.S. Secret Clearance Post-Start is required", + "Bachelor, Master or Doctorate of Science degree from an accredited course of study, in Computer Engineering, Software Engineering, Computer Science, Mathematics, Physics or other technical degree", + "5+ years of experience in software development", + "Experience applying agile best practices to develop applications", + "Education/experience typically acquired through advanced technical education from an accredited course of study in engineering, computer science, mathematics, physics or chemistry (e.g. Bachelor) and typically 9 or more years' related work experience or an equivalent combination of technical education and experience (e.g. PhD+4 years' related work experience, Master+7 years' related work experience)" + ], + "Responsibilities": [ + "Upgrades include state-of-the-art radar systems, hypersonic weapons systems, and cutting-edge digital communication infrastructure", + "The successful candidate selected for this position will work in an agile, collaborative environment working with some of the latest software development tools to support development and integration tasks", + "Leads activities to develop, document and maintain architectures, requirements, algorithms, interfaces and designs for software systems", + "Leads development of code and integration of complex software components into a fully functional software system", + "Develops software verification plans, test procedures and test environments, executing the test procedures and documenting test results to ensure software system requirements are met", + "Provides technical leadership for software projects and leads software supplier management activities", + "Leads development, selection, tailoring and deployment of processes, tools and metrics", + "Plans, executes and documents software research and development projects", + "Serves as a subject matter expert for software domains, system-specific issues, processes and regulations", + "Tracks and evaluates software team and supplier performance to ensure product and process conformance to project plans and industry standards", + "Works under minimal direction" + ], + "Benefits": [ + "Elements of the Total Rewards package include competitive base pay and variable compensation opportunities", + "The Boeing Company also provides eligible employees with an opportunity to enroll in a variety of benefit programs, generally including health insurance, flexible spending accounts, health savings accounts, retirement savings plans, life and disability insurance programs, and a number of programs that provide for both paid and unpaid time away from work", + "The specific programs and options available to any given employee may vary depending on eligibility factors such as geographic location, date of hire, and the applicability of collective bargaining agreements", + "Summary pay range: 113,900ドル - 154,100ドル" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_naics_code": "336411", + "job_naics_name": "Aircraft Manufacturing" + }, + { + "employer_name": "HackerOne", + "employer_logo": "https://mms.businesswire.com/media/20220127005066/en/658229/22/hackerone_logo_black.jpg", + "employer_website": "http://www.hackerone.com", + "employer_company_type": "Information", + "job_publisher": "Jobs", + "job_id": "C3peF34GKDIbxt2gAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Senior Software Engineer, Payments", + "job_apply_link": "https://jobs.ashbyhq.com/hackerone/4ab693aa-bb00-4ec3-9708-77c5a6dd95de", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.6818, + "apply_options": [ + { + "publisher": "Jobs", + "apply_link": "https://jobs.ashbyhq.com/hackerone/4ab693aa-bb00-4ec3-9708-77c5a6dd95de", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=a406af8233896842", + "is_direct": false + } + ], + "job_description": "Based in: UNITED STATES or Canada (Remote)\n\nPosition Summary\n\nAt HackerOne, we’re on a mission to empower the world to build a safer internet. We’re a growing engineering team with an outsized impact, and we’re looking for a Software Engineer to help us innovate and propel our platform forward. As Senior Software Engineer, you will work with your squad on a variety of challenging and exciting projects. You are a collaborative and effective software engineer as well as a team member. You will work with other engineers at many different levels to gain experience quickly and build delightful features and products for our community, as well as the thousands of companies who trust HackerOne with their cybersecurity posture.\n\nNo security engineering experience? Not a blocker.\n\nNo hacking experience? No problem.\n\nWe are first and foremost product engineers. Digging deep to our core, we are engineers who believe that skillsets are meant to be grown. We don’t need to seek unicorns because we grow into them. Your work will contribute directly to the success of our company, and we are excited to meet you!\n\nThis particular software engineering position will reside on a Payments Engineering Team. The Payments Engineering Team’s mission is to enable HackerOne to move money between customers and hackers in a compliant, flexible, and safe manner.\n\nYour Journey at HackerOne\n• For the first 30 days, you'll be onboarded onto our team, getting familiar with our tools, stack, mission, and most importantly your team. Exploration begins and doesn’t stop\n• By 60 days, you’ll have been eased into our wider ecosystem of rotations and tech leadership. You’ll have confidence to take on project work within the team\n• By 90 days you’ll have completed your first stint as a technical project lead and surprised you’ve only been here for 3 months!\n• At HackerOne we believe in dual engineering career paths. Management is a lateral move, not a promotion. We believe in the ability to explore both paths and -- more importantly -- change your mind if one or the other is not a right fit\n• As part of a small team that punches far above its weight, you’ll get to dive into new product innovation and interesting technical constraints that come with being in the security space, while balancing user delight and satisfaction\n• We’re big on ownership, so we embrace strong collaboration and the ability to influence how we do things\n\nWho You Are\n• 5+ years experience with building enterprise web applications; (Note: years in industry is a rough proxy for impact and experience. It’s not about how long you’ve been doing what you’re doing. It’s about what experience you bring to the table)\n• Experience with Ruby on Rails, relational databases, API design, and writing technical documentation\n• Successful track record of shipping projects quickly with multiple dependencies across technical and non-technical teams\n• Excellent team player with strong communication skills\n• Comfortable collaborating with stakeholders such as Finance and Compliance to understand requirements\n• Ability and willingness to consistently make culture choices that positively impact all of engineering\n• Experience in payment systems that include payout methods such as bank transfers, PayPal, and Bitcoin would be an asset but not essential\n• HackerOne is a digital first company, and all employees must be able to work and excel in a remote environment.\n\nEmployment at HackerOne is contingent on a background check.\n\nHackerOne is committed to equal opportunity in the terms and conditions of employment for all employees and job applicants without regard to race, color, religion, sex, sexual orientation, age, gender identity or gender expression, national origin, pregnancy, disability or veteran status, or any other protected characteristic as outlined by international, federal, state, or local laws.\n\nThis policy applies to all HackerOne employment practices, including hiring, recruiting, promotion, termination, layoff, recall, leave of absence, compensation, benefits, training, and apprenticeship. HackerOne makes hiring decisions based solely on qualifications, merit, and business needs at the time.\n\nPursuant to the San Francisco Fair Chance Ordinance, all qualified applicants with arrest and conviction records will be considered for the position.\n\nHackerOne Values\n\nHackerOne commits to maintaining a strong, inclusive culture built for our employees and our community of hackers. We are driven by our five core values. We recognize that our mission is bigger than us, and therefore act with integrity at all times. As a team, we believe that transparency builds trust so we default to disclosure in our communications. Each individual executes with excellence, creating an environment of greater alignment and greater autonomy. We win as a team and respect all people to empower everyone to learn from each other, innovate, and grow.\n\nWhat We Do\n\nHackerOne pinpoints the most critical security flaws across an organization’s attack surface with continual adversarial testing to outmatch cybercriminals. HackerOne’s Attack Resistance Platform blends the security expertise of ethical hackers with asset discovery, continuous assessment, and process enhancement to reduce threat exposure and empower organizations to transform their businesses with confidence. Customers include Citrix, Coinbase, Costa Coffee, General Motors, GitHub, Goldman Sachs, Hyatt, Microsoft, PayPal, Singapore’s Ministry of Defense, Slack, the U.S. Department of Defense, and Yahoo. In 2023, HackerOne was named a Best Workplace for Innovators by Fast Company.\n\nHackerOne is Digital First\n\nOur work is optimized for asynchronous collaboration, knowledge management, and decision-making. HackerOne is creating an industry, and to do that, we must employ the most creative, forward-thinking distributed talent in the market. Our remote model allows employees to contribute to our mission while providing time and location flexibility which are core elements to a healthy relationship between professional and personal pursuits.\n\n#LI-Remote\n\n#LI-HM1", + "job_is_remote": true, + "job_posted_at_timestamp": 1697673600, + "job_posted_at_datetime_utc": "2023-10-19T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=10&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=C3peF34GKDIbxt2gAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 60, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "By 90 days you’ll have completed your first stint as a technical project lead and surprised you’ve only been here for 3 months!", + "5+ years experience with building enterprise web applications; (Note: years in industry is a rough proxy for impact and experience", + "Experience with Ruby on Rails, relational databases, API design, and writing technical documentation", + "Successful track record of shipping projects quickly with multiple dependencies across technical and non-technical teams", + "Excellent team player with strong communication skills", + "Comfortable collaborating with stakeholders such as Finance and Compliance to understand requirements", + "Ability and willingness to consistently make culture choices that positively impact all of engineering", + "Experience in payment systems that include payout methods such as bank transfers, PayPal, and Bitcoin would be an asset but not essential", + "HackerOne is a digital first company, and all employees must be able to work and excel in a remote environment" + ], + "Responsibilities": [ + "For the first 30 days, you'll be onboarded onto our team, getting familiar with our tools, stack, mission, and most importantly your team" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_naics_code": "519130", + "job_naics_name": "Internet Publishing and Broadcasting and Web Search Portals" + }, + { + "employer_name": "Reveleer", + "employer_logo": null, + "employer_website": "http://reveleer.com", + "employer_company_type": null, + "job_publisher": "Reveleer", + "job_id": "Za8OzXjSRgc8z_a1AAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Full Stack Software Engineer", + "job_apply_link": "https://reveleer.breezy.hr/p/96ffe66724d7-full-stack-software-engineer", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.7243, + "apply_options": [ + { + "publisher": "Reveleer", + "apply_link": "https://reveleer.breezy.hr/p/96ffe66724d7-full-stack-software-engineer", + "is_direct": false + }, + { + "publisher": "Levels.fyi", + "apply_link": "https://www.levels.fyi/jobs?jobId=103303592883954374", + "is_direct": false + }, + { + "publisher": "Salary.com", + "apply_link": "https://www.salary.com/job/reveleer/full-stack-software-engineer/j202303061741125341079", + "is_direct": false + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/full-stack-engineer-at-reveleer-3719525008", + "is_direct": false + }, + { + "publisher": "Remote Workers", + "apply_link": "https://remoteworkers.net/remote-jobs/programming/full-stack-software-engineer-at-health-data-vision-inc-hdvi", + "is_direct": false + }, + { + "publisher": "MySmartPros", + "apply_link": "https://ca.mysmartpros.com/job/full-stack-software-engineer-at-health-data-vision-inc-hdvi/", + "is_direct": false + }, + { + "publisher": "Work From Home Jobs", + "apply_link": "https://remotejob.com.ng/job/full-stack-software-engineer-at-health-data-vision-inc-hdvi/", + "is_direct": false + } + ], + "job_description": "Job Title: Full Stack Software Engineer\n\nJob Summary:\n\nReveleer is a healthcare data and analytics company that uses Artificial Intelligence to give health plans across all business lines greater control over their Quality Improvement, Risk Adjustment, and Member Management programs. With one transformative solution, the Reveleer platform enables plans to independently execute and manage every aspect of enrollment, provider outreach and data retrieval, coding, abstraction, reporting, and submissions. Leveraging proprietary technology, robust data sets, and subject matter expertise, Reveleer provides complete record retrieval and review services so health plans can confidently plan and execute risk, quality, and member management programs to deliver more value and improved outcomes.\n\nWe are looking for an experienced Full Stack Software Engineer to join our team. The ideal candidate will have solid experience with C#, .NET 7/6, .NET Core, JavaScript, and AWS, with a demonstrated track record of designing, developing, and deploying complex, enterprise-level software solutions. Experience working with ReactJS/AngularJS is a plus. The successful candidate will have excellent problem-solving skills, have a strong understanding of software development best practices, and be committed to continual learning.\n\nResponsibilities:\n• Design and develop custom web and mobile applications using C# (or Java), .NET 7/6, .NET Core and JavaScript\n• Design, develop, and maintain complex cloud solutions on the AWS platform\n• Participate in the design, development, and implementation of cloud-based solutions.\n• Ensure cloud-based solutions are secure and compliant with industry standards.\n• Optimize cloud solutions to ensure cost efficiency.\n• Work closely with other team members and stakeholders to ensure solutions meet customer requirements.\n• Write well-structured, maintainable code and perform unit testing\n• Develop and maintain backend services and APIs for applications\n• Ensure software meets all requirements of quality, security, modifiability, and performance\n• Collaborate with other developers and stakeholders throughout the software development life cycle\n• Implement industry best practices and standards\n• Monitor and evaluate system performance, and address customer issues in a timely manner\n• The successful candidate will have extensive working knowledge of JIRA, Confluence, CI/CD pipeline among other tools\n• Provide technical guidance and mentorship to junior engineers.\n• Providing technical guidance to engineering and QA teams\n• Partner with researchers and technology experts in understanding technology development current state and future goals to inform software requirements definition, design, implementation, test, and verification and validation efforts\n\nRequirements:\n• 5+ years of experience developing web and mobile applications\n• Expertise in C#.NET 7/6, .NET Core, AWS services\n• Strong knowledge of T-SQL and SQL Server development tools\n• Develop stored procedures, triggers, functions, and other database objects\n• Strong understanding of software development best practices and processes\n• Taking ownership and leading fellow engineers, you should have solid experience is diagnosing, identifying, and resolving critical issues/bugs as they get reported. Using tools like Newrelic, Splunk, Datadog etc. is required.\n• Ability to work independently and as part of a team\n• Excellent problem-solving, communication, and organizational skills\n• Commitment to continual learning and professional development\n• Ability to work in a fast-paced environment and manage multiple priorities\n• CS degree preferred, or equivalent training or work experience\n• Experience working with ReactJS\n• Experience with cloud-based platforms such as AWS, GCP and/or Azure\n• Experience with modern CI/CD tools such as Docker, Github, Gitlab, Bitbucket etc.\n• Experience with enterprise SaaS products\n• Experience with high-traffic distributed systems at scale\n• Salary range is 125ドルk - 175ドルk per year.\n• Compensation is dependent upon experience and geographic work location.\n• Medical, Dental and Vision benefits\n• 401K\n• PTO Plan\n\nNice to Haves:\n• Experience working with ReactJS\n• Experience with cloud-based platforms such as AWS, GCP and/or Azure\n• Experience with modern CI/CD tools such as Docker, Github, Gitlab, Bitbucket etc.\n• Experience with enterprise SaaS products\n• Experience with high-traffic distributed systems at scale\n\nWhat You’ll Receive:\n• Salary range is 125ドルk - 175ドルk per year\n• Compensation is dependent upon experience and geographic work location\n• Medical, Dental and Vision benefits\n• 401K\n• PTO Plan\n\nReveleer E-Verifies all new hires.\n\nReveleer is an equal opportunity employer. We do not discriminate on the basis or race, religion, color, national origin, gender, gender identity, sexual orientation, age, marital status, veteran status, disability status or genetic information, in compliance with applicable federal, state and local law.", + "job_is_remote": false, + "job_posted_at_timestamp": 1678060800, + "job_posted_at_datetime_utc": "2023-03-06T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "health_insurance", + "retirement_savings", + "dental_coverage", + "paid_time_off" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=10&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=Za8OzXjSRgc8z_a1AAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 60, + "experience_mentioned": true, + "experience_preferred": true + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "We are looking for an experienced Full Stack Software Engineer to join our team", + "The ideal candidate will have solid experience with C#, .NET 7/6, .NET Core, JavaScript, and AWS, with a demonstrated track record of designing, developing, and deploying complex, enterprise-level software solutions", + "The successful candidate will have excellent problem-solving skills, have a strong understanding of software development best practices, and be committed to continual learning", + "5+ years of experience developing web and mobile applications", + "Expertise in C#.NET 7/6, .NET Core, AWS services", + "Strong knowledge of T-SQL and SQL Server development tools", + "Develop stored procedures, triggers, functions, and other database objects", + "Taking ownership and leading fellow engineers, you should have solid experience is diagnosing, identifying, and resolving critical issues/bugs as they get reported", + "Using tools like Newrelic, Splunk, Datadog etc. is required", + "Ability to work independently and as part of a team", + "Excellent problem-solving, communication, and organizational skills", + "Ability to work in a fast-paced environment and manage multiple priorities", + "Experience working with ReactJS", + "Experience with cloud-based platforms such as AWS, GCP and/or Azure", + "Experience with modern CI/CD tools such as Docker, Github, Gitlab, Bitbucket etc", + "Experience with enterprise SaaS products", + "Experience with high-traffic distributed systems at scale" + ], + "Responsibilities": [ + "With one transformative solution, the Reveleer platform enables plans to independently execute and manage every aspect of enrollment, provider outreach and data retrieval, coding, abstraction, reporting, and submissions", + "Design and develop custom web and mobile applications using C# (or Java), .NET 7/6, .NET Core and JavaScript", + "Design, develop, and maintain complex cloud solutions on the AWS platform", + "Participate in the design, development, and implementation of cloud-based solutions", + "Ensure cloud-based solutions are secure and compliant with industry standards", + "Optimize cloud solutions to ensure cost efficiency", + "Work closely with other team members and stakeholders to ensure solutions meet customer requirements", + "Write well-structured, maintainable code and perform unit testing", + "Develop and maintain backend services and APIs for applications", + "Ensure software meets all requirements of quality, security, modifiability, and performance", + "Collaborate with other developers and stakeholders throughout the software development life cycle", + "Implement industry best practices and standards", + "Monitor and evaluate system performance, and address customer issues in a timely manner", + "The successful candidate will have extensive working knowledge of JIRA, Confluence, CI/CD pipeline among other tools", + "Provide technical guidance and mentorship to junior engineers", + "Providing technical guidance to engineering and QA teams", + "Partner with researchers and technology experts in understanding technology development current state and future goals to inform software requirements definition, design, implementation, test, and verification and validation efforts" + ], + "Benefits": [ + "Salary range is 125ドルk - 175ドルk per year", + "Compensation is dependent upon experience and geographic work location", + "Medical, Dental and Vision benefits", + "401K", + "PTO Plan" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113300", + "job_onet_job_zone": "4" + }, + { + "employer_name": "Renaissance", + "employer_logo": "https://www.renaissance.com/wp-content/uploads/2016/07/Renaissance-logo-r.png", + "employer_website": "https://www.renaissance.com", + "employer_company_type": "Information", + "job_publisher": "SmartRecruiters Job Search", + "job_id": "mFOaalAcBFb-yNryAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Senior Software Engineer", + "job_apply_link": "https://jobs.smartrecruiters.com/Renaissance/743999936693924-senior-software-engineer", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.7471, + "apply_options": [ + { + "publisher": "SmartRecruiters Job Search", + "apply_link": "https://jobs.smartrecruiters.com/Renaissance/743999936693924-senior-software-engineer", + "is_direct": false + }, + { + "publisher": "Jobgether", + "apply_link": "https://jobgether.com/offer/652938f867e59c5f21b77af4-senior-software-engineer", + "is_direct": false + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/senior-software-engineer-at-renaissance-learning-3736313784", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=0492aecf3f58d4fb", + "is_direct": true + }, + { + "publisher": "Fairygodboss", + "apply_link": "https://fairygodboss.com/jobs/subtext/senior-software-engineer-f3505ac85ee44f563dff160d4ae0151e", + "is_direct": false + }, + { + "publisher": "TechJob.app", + "apply_link": "https://www.techjob.app/jobs/a0ef8d7b-2f3d-479d-b47c-4cb31b2fdfea", + "is_direct": true + }, + { + "publisher": "Recruit.net", + "apply_link": "https://www.recruit.net/job/senior-software-engineer-jobs/E60107EF9931C474", + "is_direct": false + } + ], + "job_description": "Company Description\n\nWhen you join Renaissance®, you join a global leader in pre-K–12 education technology. Renaissance’s solutions help educators analyze, customize, and plan personalized learning paths for students, allowing time for what matters—creating energizing learning experiences in the classroom.\n\nOur fiercely passionate employees and educational partners have helped drive phenomenal student growth, with Renaissance solutions being used in over one-third of US schools and in more than 100 countries worldwide!\n\nEvery day, we are connected to our mission by exemplifying our values: trust each other, win together, strive for the best, own our actions, and grow and evolve.\n\nJob Description\n\neduCLIMBER is an interactive system that integrates all whole child data into a single platform with built-in tools for intervention tracking, collaboration, effectiveness reporting, early warning, driving system-level improvement, and more.\n\nAs a Senior Software engineer on the eduCLIMBER team, you’ll work on a rapidly growing product that impacts over 3 million students in the US. Our team is highly collaborative and are continuously working to ensure eduCLIMBER is reliable, scalable and robust. Our stack includes PHP, Python, MySQL, AWS and Linux.\n\nAs a Senior Software Engineer, you will:\n• Work in close collaboration with Product Owners and other key stakeholders in expanding and enhancing the eduCLIMBER product\n• Drive key architecture initiatives to allow eduCLIMBER to efficiently scale as our feature-set and customer-base grows\n• Design and implement new services and pipelines to support key integrations with a wide variety of other systems\n• Collaborate with our Data Engineering team as we remodel our data persistence layer\n• Lead and mentor other engineers to promote growth across the team\n• Participate in an on-call rotation to assist with operational support for our US customers\n\nQualifications\n\nFor this role as a Senior Software Engineer, you must have:\n• 8 years of experience developing APIs in PHP\n• 4 years of experience developing, deploying and hosting applications on AWS\n• 4 years of experience developing against MySQL or equivalent RDBMS\n• 2 years of experience with Linux and Docker\n• Strong knowledge of various automated testing frameworks\n• Strong technical documentation and diagramming skills\n• Strong CS fundamentals, solid knowledge of OOP/OOD\n\nBonus Points:\n• Experience working in K-12 EdTech\n\nAdditional Information\n\nAll your information will be kept confidential according to EEO guidelines.\n\nSalary: 109,500ドル to 150,550ドル This range is based on national market data and may vary by location.\n\nBenefits:\n• World Class Health Benefits: Medical, Prescription, Dental, Vision, Telehealth\n• Health Savings and Flexible Spending Accounts\n• 401(k) and Roth 401(k) with company match\n• Paid Vacation and Sick Time Off\n• 12 Paid Holidays\n• Parental Leave (20 total weeks with 14 weeks paid) & Milk Stork program\n• Tuition Reimbursement\n• Life & Disability Insurance\n• Well-being and Employee Assistance Programs\n\nFrequently cited statistics show that some women, underrepresented individuals, protected veterans and individuals with disabilities may only apply to roles if they meet 100% of the qualifications. At Renaissance, we encourage all applications! Roles evolve over time, especially with innovation, and you may be just the person we need for the future!\n\nEQUAL OPPORTUNITY EMPLOYER\n\nRenaissance is an equal opportunity employer and does not discriminate with respect to any term, condition or privilege of employment based on race, color, religion, sex, sexual orientation, gender identity or expression, age, disability, military or veteran status, marital status, or status of an individual in any group or class protected by applicable federal, state, or local law.\n\nREASONABLE ACCOMMODATIONS\n\nRenaissance also provides reasonable accommodations for qualified individuals with disabilities in accordance with the Americans with Disabilities Act and applicable state and local laws. If accommodation is needed to participate in the job application or interview process, please contact Talent Acquisition.\n\nEMPLOYMENT AUTHORIZATION\n\nApplicants must be authorized to work for any employer in the United States. We are unable to sponsor or take over sponsorship of an employment Visa at this time.\n\nFor information about Renaissance, visit: https://www.renaissance.com/", + "job_is_remote": false, + "job_posted_at_timestamp": 1698332785, + "job_posted_at_datetime_utc": "2023-10-26T15:06:25.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "paid_time_off", + "retirement_savings", + "dental_coverage", + "health_insurance" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=10&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=mFOaalAcBFb-yNryAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 96, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "For this role as a Senior Software Engineer, you must have:", + "8 years of experience developing APIs in PHP", + "4 years of experience developing, deploying and hosting applications on AWS", + "4 years of experience developing against MySQL or equivalent RDBMS", + "2 years of experience with Linux and Docker", + "Strong knowledge of various automated testing frameworks", + "Strong technical documentation and diagramming skills", + "Strong CS fundamentals, solid knowledge of OOP/OOD", + "Experience working in K-12 EdTech", + "Applicants must be authorized to work for any employer in the United States" + ], + "Responsibilities": [ + "Work in close collaboration with Product Owners and other key stakeholders in expanding and enhancing the eduCLIMBER product", + "Drive key architecture initiatives to allow eduCLIMBER to efficiently scale as our feature-set and customer-base grows", + "Design and implement new services and pipelines to support key integrations with a wide variety of other systems", + "Collaborate with our Data Engineering team as we remodel our data persistence layer", + "Lead and mentor other engineers to promote growth across the team", + "Participate in an on-call rotation to assist with operational support for our US customers" + ], + "Benefits": [ + "Salary: 109,500ドル to 150,550ドル This range is based on national market data and may vary by location", + "World Class Health Benefits: Medical, Prescription, Dental, Vision, Telehealth", + "Health Savings and Flexible Spending Accounts", + "401(k) and Roth 401(k) with company match", + "Paid Vacation and Sick Time Off", + "12 Paid Holidays", + "Parental Leave (20 total weeks with 14 weeks paid) & Milk Stork program", + "Tuition Reimbursement", + "Life & Disability Insurance", + "Well-being and Employee Assistance Programs" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_naics_code": "5112", + "job_naics_name": "Software Publishers" + }, + { + "employer_name": "Garmin International, Inc.", + "employer_logo": null, + "employer_website": "http://www.garmin.com", + "employer_company_type": null, + "job_publisher": "Garmin Careers", + "job_id": "iBJbJqCFpsB21yqnAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer 1 - Embedded Development", + "job_apply_link": "https://careers.garmin.com/jobs/11249?lang=en-us", + "job_apply_is_direct": true, + "job_apply_quality_score": 0.7183, + "apply_options": [ + { + "publisher": "Garmin Careers", + "apply_link": "https://careers.garmin.com/jobs/11249?lang=en-us", + "is_direct": true + }, + { + "publisher": "ZipRecruiter", + "apply_link": "https://www.ziprecruiter.com/c/Garmin/Job/Software-Engineer-1-Avionics/-in-Olathe,KS?jid=cf70440a2b30acb4", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=cf09b8c2ac078191", + "is_direct": false + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/software-engineer-1-embedded-development-at-garmin-3702322223", + "is_direct": false + }, + { + "publisher": "Engineer Jobs", + "apply_link": "https://www.engineerjobs.com/posting/Yd7q3B3DfSqkv_I3swASEJQSgfEMPvQoV-C3q-wxkb4bVJq-lWCx-kdoTs4gh33W", + "is_direct": false + }, + { + "publisher": "Glassdoor", + "apply_link": "https://www.glassdoor.com/job-listing/software-engineer-1-avionics-garmin-JV_IC1151046_KO0,28_KE29,35.htm?jl=1007747375861", + "is_direct": false + }, + { + "publisher": "Adzuna", + "apply_link": "https://www.adzuna.com/details/4285506721", + "is_direct": false + }, + { + "publisher": "Levels.fyi", + "apply_link": "https://www.levels.fyi/jobs?jobId=89753640610210502", + "is_direct": false + } + ], + "job_description": "Overview\n\nWe are seeking a full-time Software Engineer 1 (Embedded Development) in our Olathe, KS location. In this role, you will be responsible for building upon existing software solutions to develop basic software for Garmin products and/or applications.\n\nEssential Functions\n• Performs new product and/or application software design and development as well as maintenance activities for products and/or applications already in production using C, C++, C#, Java, assembly language, or other selected languages\n• Troubleshoots basic issue reports, reproduces issues, evaluates technical cause and implements and tests software solutions\n• Identifies and resolves defects of basic scope using proper engineering tools and techniques such as debuggers, emulators, simulators, and logic analyzers\n• Applies design standards and procedures using appropriate engineering tools to document and implement basic designs in an organized manner\n• Supports working hours as part of a rotating schedule to provide on call support of Garmin’s 24/7 operations\n\nBasic Qualifications\n• Bachelor’s Degree in Computer Science, Electrical Engineering, Computer Engineering, Software Engineering, Aerospace Engineering, Math, Physics or related field OR an equivalent combination of education and experience\n• Excellent academics (cumulative GPA greater than or equal to 3.0 as a general rule)\n• Demonstrated knowledge, education, experience and/or training necessary to develop basic software in C, C++, C#, Java, assembly language, or other selected languages\n\nDesired Qualifications\n• Outstanding academics (cumulative GPA greater than or equal to 3.5)\n• Previous work or internship experience in design, particularly for consumer products\n\nGarmin International is an equal opportunity employer. Qualified applicants will receive consideration for employment without regard to race, religion, color, national origin, citizenship, sex, sexual orientation, gender identity, veteran’s status, age or disability.\n\nThis position is eligible for Garmin's benefit program. Details can be found here: Garmin Benefits", + "job_is_remote": false, + "job_posted_at_timestamp": 1693192860, + "job_posted_at_datetime_utc": "2023-08-28T03:21:00.000Z", + "job_city": "Olathe", + "job_state": "KS", + "job_country": "US", + "job_latitude": 38.881397, + "job_longitude": -94.81913, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=20&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=iBJbJqCFpsB21yqnAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": "2024-08-28T03:22:20.000Z", + "job_offer_expiration_timestamp": 1724815340, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": ["UNAVAILABLE"], + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Bachelor’s Degree in Computer Science, Electrical Engineering, Computer Engineering, Software Engineering, Aerospace Engineering, Math, Physics or related field OR an equivalent combination of education and experience", + "Excellent academics (cumulative GPA greater than or equal to 3.0 as a general rule)", + "Demonstrated knowledge, education, experience and/or training necessary to develop basic software in C, C++, C#, Java, assembly language, or other selected languages" + ], + "Responsibilities": [ + "In this role, you will be responsible for building upon existing software solutions to develop basic software for Garmin products and/or applications", + "Performs new product and/or application software design and development as well as maintenance activities for products and/or applications already in production using C, C++, C#, Java, assembly language, or other selected languages", + "Troubleshoots basic issue reports, reproduces issues, evaluates technical cause and implements and tests software solutions", + "Identifies and resolves defects of basic scope using proper engineering tools and techniques such as debuggers, emulators, simulators, and logic analyzers", + "Applies design standards and procedures using appropriate engineering tools to document and implement basic designs in an organized manner", + "Supports working hours as part of a rotating schedule to provide on call support of Garmin’s 24/7 operations" + ], + "Benefits": ["This position is eligible for Garmin's benefit program"] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113300", + "job_onet_job_zone": "4" + }, + { + "employer_name": "FlightSafety International", + "employer_logo": "https://cdn.cookielaw.org/logos/833af5bd-b1f3-423a-a591-9d9d40de117c/15a4077b-ff57-47b3-8029-fce396934533/f07a6cb3-f628-4066-bd7b-657ecbfa8330/FlightSafety_Logo_-_Navigator_Blue_(1).png", + "employer_website": "http://www.flightsafety.com", + "employer_company_type": "Manufacturing", + "job_publisher": "FlightSafety International Careers", + "job_id": "QDALoNATzkXPUgBGAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer", + "job_apply_link": "https://careers.flightsafety.com/job/Broken-Arrow-Software-Engineer-OK-74012/1043836700/", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.8367, + "apply_options": [ + { + "publisher": "FlightSafety International Careers", + "apply_link": "https://careers.flightsafety.com/job/Broken-Arrow-Software-Engineer-OK-74012/1043836700/", + "is_direct": false + }, + { + "publisher": "ZipRecruiter", + "apply_link": "https://www.ziprecruiter.com/c/FlightSafety-International/Job/Software-Engineer/-in-Broken-Arrow,OK?jid=2d4fed0056fe6dd2", + "is_direct": false + }, + { + "publisher": "Salary.com", + "apply_link": "https://www.salary.com/job/flightsafety-international-inc/software-engineer/j202302170822409816832", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=3338b3aabb794007", + "is_direct": false + }, + { + "publisher": "JSfirm.com", + "apply_link": "https://www.jsfirm.com/job/Engineering-Engineer-Software-III/Broken+Arrow-Oklahoma/jobID_1219131", + "is_direct": false + }, + { + "publisher": "BeBee", + "apply_link": "https://us.bebee.com/job/20231017-da22f2031f4e326dde046582ba216f96", + "is_direct": false + }, + { + "publisher": "Glassdoor", + "apply_link": "https://www.glassdoor.com/job-listing/software-engineer-flightsafety-international-JV_IC1137003_KO0,17_KE18,44.htm?jl=1008719278575", + "is_direct": false + }, + { + "publisher": "Jooble", + "apply_link": "https://jooble.org/jdp/-3247237164684863347/Software-Engineer-Broken-Arrow%2C-OK", + "is_direct": false + } + ], + "job_description": "About FlightSafety International\n\nFlightSafety International is the world’s premier professional aviation training company and supplier of flight simulators, visual systems and displays to commercial, government and military organizations. The company provides training for pilots, technicians and other aviation professionals from 167 countries and independent territories. FlightSafety operates the world’s largest fleet of advanced full-flight simulators and award-winning maintenance training at Learning Centers and training locations in the United States, Canada, France and the United Kingdom.\n\nPurpose of Position\n\nEvaluates, selects, and applies appropriate engineering techniques and procedures using judgment in making required adaptations and modifications to affect an accurate operating system. Fully autonomous in performing most assignments. Receives assistance only on unusual problems.\n\nTasks and Responsibilities\n\nESSENTIAL FUNCTIONS AND RESPONSIBILITIES: The following duties are essential to the successful and satisfactory performance of this job. Other duties may be assigned. Reasonable accommodations may be made to enable individuals with disabilities to perform the essential functions.\n• Designs, creates, and modifies and maintains applications, development frameworks, and systems level software. Creation of some new applications.\n• Modifies and writes device drivers for interfacing with hardware.\n• Creates and modifies real-time executive and control software.\n• Designs, modifies, and creates mathematical support library, systems utilities, and debug packages under the direction of a more senior engineer.\n• Evaluates hardware and software to be installed on FSI-SS computer systems. Provides reports and recommendations.\n• Provides support to team leaders and project engineers in software requirements, design, and implementation.\n• Provides guidance to less senior engineers in the department. Provides recommendations for improvements.\n• Documents operating system, application and development software.\n• Works with fellow software engineers, hardware engineers and management to affect a smoothly integrated system.\n• Performs application design from research to testing phase with limited supervision.\n\nTasks and Responsibilities Continued\n• Interact within a cooperative environment through beneficial behavior, commitment to common goals, contribution to problem solving, communication of ideas and suggestions, and encouragement to other employees and departments.\n• Accountable for the control and distribution of documents and/or equipment subject to export control restrictions and the security of FSI materials, projects and business information regarding the methods and techniques used in the production and usage of FSI products.\\Accountable for the accuracy and completeness of assigned tasks.\n• Able to adhere to a work schedule including prompt and regular attendance.\n• Ability to work in a constant state of alertness and safe manner.\n\nTo perform the job successfully, an individual should demonstrate the following competencies:\n• Accountability - Shows up to work as scheduled, and follows instructions, policies, and procedures. Meets productivity standards, deadlines, and work schedules. Accepts full responsibility for quality of work, both independent and team projects.\n• Adaptability- Quickly modifies behavior to maintain effectiveness when experiencing major changes in work tasks or work environment. Approaches change as opportunities for learning and development.\n• Results Oriented - Focuses on results and desired outcomes and how best to achieve them by ensuring that they and others stay focused on the objective and perform in accordance with clear expectations.\n• Teamwork - Cooperates and collaborates with all teammates to achieve common goals by sharing information or expertise; working together to solve problems in a positive manner while valuing the contributions of others.\n\nMinimum Education and Experience\n\nLevel I - Bachelor's degree in Engineering, Computer Science, Information Systems, or related field; or equivalent combination of education and experience.\n\nLevel II – Bachelor’s degree in Engineering, Two years related experience; or equivalent combination of education and experience. Knowledge and expertise for this level usually results from internal progressive experience. However, selection for this position is based on the demonstrated ability of the person to successfully fulfill the requirements listed. C++ competency required.\n\nLevel III – Bachelor’s degree in Engineering, Four years related experience; or equivalent combination of education and experience. Knowledge and expertise for this level usually results from internal progressive experience. However, selection for this position is based on the demonstrated ability of the person to successfully fulfill the requirements listed. C++ competency required.\n\nLevel IV - Bachelor's degree in Engineering; and six years related experience preferably in simulation; or equivalent combination of education and experience. Knowledge and expertise for this level usually results from internal progressive experience. However, selection for this position is based on the demonstrated ability of the person to successfully fulfill the requirements listed. C++ competency required.\n\nLevel V – Bachelor’s degree in Engineering, Ten years related experience; or equivalent combination of education and experience. Knowledge and expertise for this level usually results from internal progressive experience. However, selection for this position is based on the demonstrated ability of the person to successfully fulfill the requirements listed. C++ competency required.\n\nKnowledge, Skills, Abilities\n\nSOFTWARE KNOWLEDGE AND SKILLS:\n\nStrong knowledge in Modern C++, or Strong C++, Windows/Unix, OS, C#, FORTRAN, Direct X, OpenGL, Dev Studio, Team Foundation Server, device drivers, and real-time computing.\n\nLANGUAGE SKILLS:\n\nFluency in English, through both verbal and written communications; Able to read, analyze, and interpret general business documents, technical procedures, or governmental regulations; Able to write reports, business correspondence, and procedure manuals; Able to effectively present information and respond to questions from groups of managers, clients and customers.\n\nMATHEMATICAL SKILLS:\n\nAble to work with mathematical concepts such as probability and statistical inference, and fundamentals of plane and solid geometry and trigonometry; Able to apply concepts such as fractions, percentages, ratios, and proportions to practical situations.\n\nREASONING ABILITY:\n\nAble to define problems, collect data, establish facts, and draw valid conclusions; Able to interpret an extensive variety of technical instructions in mathematical or diagram form and deal with several abstract and concrete variables.\n\nPhysical Demands and Work Environment\n• While performing the duties of this job, the employee is frequently required to sit; use hands to finger, handle, or feel; reach with hands and arms and talk or hear.\n• The employee is occasionally required to stand; walk; climb or balance.\n• Must work with keyboard, mouse, and monitor for long periods of time.\n• The employee must occasionally lift and/or move up to 30 pounds.\n• While performing the duties of this Job, the employee is occasionally exposed to moving mechanical parts; high, precarious places and fumes or airborne particles.\n• The noise level in the work environment is usually moderate.\n\nFlightSafety is an Equal Opportunity Employer/Vet/Disabled. All qualified applicants will receive consideration for employment without regard to race, color, religion, sex, sexual orientation, gender identity, national origin, or disability.\n\nFlightSafety is an Equal Opportunity Employer/Vet/Disabled. All qualified applicants will receive consideration for employment without regard to race, color, religion, sex, sexual orientation, gender identity, national origin, or disability.", + "job_is_remote": false, + "job_posted_at_timestamp": 1697439600, + "job_posted_at_datetime_utc": "2023-10-16T07:00:00.000Z", + "job_city": "Broken Arrow", + "job_state": "OK", + "job_country": "US", + "job_latitude": 36.060947, + "job_longitude": -95.797455, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=20&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=QDALoNATzkXPUgBGAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 72, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Level I - Bachelor's degree in Engineering, Computer Science, Information Systems, or related field; or equivalent combination of education and experience", + "Knowledge and expertise for this level usually results from internal progressive experience", + "However, selection for this position is based on the demonstrated ability of the person to successfully fulfill the requirements listed", + "Level IV - Bachelor's degree in Engineering; and six years related experience preferably in simulation; or equivalent combination of education and experience", + "SOFTWARE KNOWLEDGE AND SKILLS:", + "Strong knowledge in Modern C++, or Strong C++, Windows/Unix, OS, C#, FORTRAN, Direct X, OpenGL, Dev Studio, Team Foundation Server, device drivers, and real-time computing", + "Fluency in English, through both verbal and written communications; Able to read, analyze, and interpret general business documents, technical procedures, or governmental regulations; Able to write reports, business correspondence, and procedure manuals; Able to effectively present information and respond to questions from groups of managers, clients and customers", + "Able to work with mathematical concepts such as probability and statistical inference, and fundamentals of plane and solid geometry and trigonometry; Able to apply concepts such as fractions, percentages, ratios, and proportions to practical situations", + "Able to define problems, collect data, establish facts, and draw valid conclusions; Able to interpret an extensive variety of technical instructions in mathematical or diagram form and deal with several abstract and concrete variables" + ], + "Responsibilities": [ + "Evaluates, selects, and applies appropriate engineering techniques and procedures using judgment in making required adaptations and modifications to affect an accurate operating system", + "Fully autonomous in performing most assignments", + "Receives assistance only on unusual problems", + "ESSENTIAL FUNCTIONS AND RESPONSIBILITIES: The following duties are essential to the successful and satisfactory performance of this job", + "Reasonable accommodations may be made to enable individuals with disabilities to perform the essential functions", + "Designs, creates, and modifies and maintains applications, development frameworks, and systems level software", + "Creation of some new applications", + "Modifies and writes device drivers for interfacing with hardware", + "Creates and modifies real-time executive and control software", + "Designs, modifies, and creates mathematical support library, systems utilities, and debug packages under the direction of a more senior engineer", + "Evaluates hardware and software to be installed on FSI-SS computer systems", + "Provides reports and recommendations", + "Provides support to team leaders and project engineers in software requirements, design, and implementation", + "Provides guidance to less senior engineers in the department", + "Provides recommendations for improvements", + "Documents operating system, application and development software", + "Works with fellow software engineers, hardware engineers and management to affect a smoothly integrated system", + "Performs application design from research to testing phase with limited supervision", + "Interact within a cooperative environment through beneficial behavior, commitment to common goals, contribution to problem solving, communication of ideas and suggestions, and encouragement to other employees and departments", + "Accountable for the control and distribution of documents and/or equipment subject to export control restrictions and the security of FSI materials, projects and business information regarding the methods and techniques used in the production and usage of FSI products.\\Accountable for the accuracy and completeness of assigned tasks", + "Able to adhere to a work schedule including prompt and regular attendance", + "Ability to work in a constant state of alertness and safe manner", + "Accountability - Shows up to work as scheduled, and follows instructions, policies, and procedures", + "Meets productivity standards, deadlines, and work schedules", + "Accepts full responsibility for quality of work, both independent and team projects", + "Adaptability- Quickly modifies behavior to maintain effectiveness when experiencing major changes in work tasks or work environment", + "Approaches change as opportunities for learning and development", + "Results Oriented - Focuses on results and desired outcomes and how best to achieve them by ensuring that they and others stay focused on the objective and perform in accordance with clear expectations", + "While performing the duties of this job, the employee is frequently required to sit; use hands to finger, handle, or feel; reach with hands and arms and talk or hear", + "The employee is occasionally required to stand; walk; climb or balance", + "Must work with keyboard, mouse, and monitor for long periods of time", + "The employee must occasionally lift and/or move up to 30 pounds", + "While performing the duties of this Job, the employee is occasionally exposed to moving mechanical parts; high, precarious places and fumes or airborne particles" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_naics_code": "336411", + "job_naics_name": "Aircraft Manufacturing" + }, + { + "employer_name": "Massachusetts Institute of Technology", + "employer_logo": "https://web.mit.edu/graphicidentity/images/MIT-logo-name-1.png", + "employer_website": "https://web.mit.edu", + "employer_company_type": "Education", + "job_publisher": "The Journal Of Blacks In Higher Education", + "job_id": "s-P1F2CPJjhAXMwcAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer", + "job_apply_link": "https://jbhe.com/jbhejobs/mit-software-engineer/", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.6914, + "apply_options": [ + { + "publisher": "The Journal Of Blacks In Higher Education", + "apply_link": "https://jbhe.com/jbhejobs/mit-software-engineer/", + "is_direct": false + } + ], + "job_description": "Massachusetts Institute of Technology (MIT)\nSoftware Engineer (Node.js, TypeScript, AWS)\nDigital Credentials Consortium (DCC)\n\nMIT Open Learning seeks a software engineer to advance Digital Credentials Consortium (DCC) technology, including services, and support deployment efforts across the DCC ecosystem.\n\nWill participate in the full life cycle of application development, including design, coding, testing, and production support; work as a project team member or project lead for projects that may span a broad range of applications; and support other team and community members involved in developing software and maintaining the open-source repositories of DCC software and services.\n\nA full description is available at https://openlearning.mit.edu/jobs.\n\nRequired Qualifications:\n• Bachelor’s degree in a related field\n• At least seven years of relevant programming experience\n• Excellent coding and digital development skills\n• Experience with full-stack web development\n• Strong written and verbal communication skills\n• Ability to meet deadlines and work strategically\n\nPreferred Qualifications:\n• Experience with TypeScript, React, and Node.js\n• Experience with DevOps or site reliability engineering (SRE)\n• Experience with mobile application deployment and managing submission to Google Play Store/Apple App Store\n• Project management experience\n\nInterested candidates may apply online at https://hr.mit.edu/careers. Please reference job number 23169.\n\nEmployment is contingent upon the completion of a satisfactory background check.\n\nMIT is an equal employment opportunity employer. We value diversity and strongly encourage applications from individuals from all identities and backgrounds. All qualified applicants will receive equitable consideration for employment based on their experience and qualifications, and will not be discriminated against on the basis of race, color, sex, sexual orientation, gender identity, pregnancy, religion, disability, age, genetic information, veteran status, or national or ethnic origin. See MIT’s full policy on nondiscrimination.\n\nApply Now: https://careers.peopleclick.com/careerscp/client_mit/external/jobDetails/jobDetail.html?jobPostId=28337&localeCode=en-us", + "job_is_remote": false, + "job_posted_at_timestamp": 1694077037, + "job_posted_at_datetime_utc": "2023-09-07T08:57:17.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=20&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=s-P1F2CPJjhAXMwcAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 84, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Bachelor’s degree in a related field", + "At least seven years of relevant programming experience", + "Excellent coding and digital development skills", + "Experience with full-stack web development", + "Strong written and verbal communication skills", + "Ability to meet deadlines and work strategically" + ], + "Responsibilities": [ + "Will participate in the full life cycle of application development, including design, coding, testing, and production support; work as a project team member or project lead for projects that may span a broad range of applications; and support other team and community members involved in developing software and maintaining the open-source repositories of DCC software and services" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_naics_code": "61", + "job_naics_name": "Education" + }, + { + "employer_name": "The Home Depot", + "employer_logo": "https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/TheHomeDepot.svg/1200px-TheHomeDepot.svg.png", + "employer_website": "http://www.homedepot.com", + "employer_company_type": "Retail", + "job_publisher": "Careers.peopleclick.com", + "job_id": "o5-o1EeWxdvS5jOaAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer Senior Manager - Ecommerce Cart and Checkout (Remote)", + "job_apply_link": "https://careers.peopleclick.com/careerscp/client_homedepot/external/jobDetails.do?functionName=getJobDetail&jobPostId=438702&localeCode=en-us", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.6332, + "apply_options": [ + { + "publisher": "Careers.peopleclick.com", + "apply_link": "https://careers.peopleclick.com/careerscp/client_homedepot/external/jobDetails.do?functionName=getJobDetail&jobPostId=438702&localeCode=en-us", + "is_direct": false + } + ], + "job_description": "Position Purpose:\n\nHomeDepot.com is seeking a highly skilled and experienced Sr. Manager of eCommerce to lead our technology team in the development and maintenance of our cart and checkout-related systems and platforms. This position can also potentially be Remote based. The ideal candidate will have a deep understanding of e-commerce and a strong background in managing cross-functional software development projects. As the Sr. Manager of Commerce IT Development, you will be responsible for overseeing the design, development, implementation, and maintenance of our e-commerce systems, ensuring their reliability, scalability, and security.\n\nYou’ll be a member of a team of passionate subject matter experts who work together seamlessly to deliver the best-in-class interconnected experience for our customers. This is an exciting opportunity to join a Fortune 20 company in the US in the cutting-edge, highly visible e-commerce space!\n\nAs a Software Engineer Sr. Manager, you will be given a chance to contribute to the products we create, help grow the next generation of engineering talent, and help shape the technology strategy for One Home Depot.\n\nIn addition, you will be given the chance to work with our most strategic vendors to ensure that 3rd party tools and applications are readily available to all product teams that are interested in using them. The Sr. Manager must exhibit the ability to lead managers and their teams and drive change management and process improvement.\nKey Responsibilities:\n• 20% Strategy & Planning:\n• Works and negotiates with partners on the staffing of skilled engineering positions on product teams\n• Contributes to and makes recommendations for strategic plans in support of key objectives in a timely and fiscally responsible manner\n• Supports and nurtures strategic vendor relationships; recommends ways to influence vendors that aligned to domain, portfolio, and enterprise strategic objectives\n• Evaluates new technologies for adoption across the enterprise\n• Helps to identify and demonstrate emerging technologies for adoption by product teams\n• 20% Delivery & Execution:\n• Collaborates and pairs with product team members (UX, engineering, and product management) to create secure, reliable, scalable software solutions\n• Documents, reviews and ensures that all quality and change control standards are met\n• Writes custom code or scripts to automate infrastructure, monitoring services, and test cases\n• Works with vendors and partners for the successful implementation of critical tooling and platforms\n• Creates meaningful dashboards, logging, alerting, and responses to ensure that issues are captured and addressed proactively\n• Contributes to enterprise-wide tools to drive destructive testing, automation, and engineering empowerment\n• Participates in and leads review board sessions to drive consistency across the enterprise\n• Makes suggestions that help drive operational excellence to create internal customer satisfaction and meet operational metrics\n• Fills in on product teams for engineers who are out of the office\n• 15% Support & Enablement:\n• Fields questions from engineers, product teams, or support teams\n• Monitors tools and participates in conversations to encourage collaboration across product teams\n• Learns, through reading, tutorials, and videos, new technologies and best practices being used within other technology organizations\n• Provides application support for software running in production\n• Acts as a technical escalation point for the engineers on the team\n• 45% People:\n• Provides leadership, mentoring, and coaching to Software Engineers\n• Attracts, retains, and develops top talent to build a world class Software Engineering Team\n• Conducts annual and mid-year reviews by reviewing individual development plans and team feedback\n• Fosters collaboration with team members to drive consistency across product teams, and finds opportunities to expose engineers to career interests\n• Acts as a proponent of modern software development practices\n• Guides team members in strategy, alignment, analysis, and execution tasks within and across product teams\n• Participates in and contributes to learning activities around modern software design and development core practices (communities of practice)\n• Builds relationships with technology leaders at other companies to learn best practices and elegant solutions to common problems\n\nDirect Manager/Direct Reports:\n• Typically reports to the Technology Director, Sr. Director or Vice President.\n\nTravel Requirements:\n• Typically requires overnight travel 5% to 20% of the time.\n\nPhysical Requirements:\n• Most of the time is spent sitting in a comfortable position and there is frequent opportunity to move about. On rare occasions there may be a need to move or lift light articles.\n\nWorking Conditions:\n• Located in a comfortable indoor area. Any unpleasant conditions would be infrequent and not objectionable.", + "job_is_remote": false, + "job_posted_at_timestamp": 1698066483, + "job_posted_at_datetime_utc": "2023-10-23T13:08:03.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=20&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=o5-o1EeWxdvS5jOaAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": true + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": true + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "The ideal candidate will have a deep understanding of e-commerce and a strong background in managing cross-functional software development projects", + "Typically requires overnight travel 5% to 20% of the time", + "Most of the time is spent sitting in a comfortable position and there is frequent opportunity to move about" + ], + "Responsibilities": [ + "Manager of eCommerce to lead our technology team in the development and maintenance of our cart and checkout-related systems and platforms", + "Manager of Commerce IT Development, you will be responsible for overseeing the design, development, implementation, and maintenance of our e-commerce systems, ensuring their reliability, scalability, and security", + "Manager, you will be given a chance to contribute to the products we create, help grow the next generation of engineering talent, and help shape the technology strategy for One Home Depot", + "Manager must exhibit the ability to lead managers and their teams and drive change management and process improvement", + "20% Strategy & Planning:", + "Works and negotiates with partners on the staffing of skilled engineering positions on product teams", + "Contributes to and makes recommendations for strategic plans in support of key objectives in a timely and fiscally responsible manner", + "Supports and nurtures strategic vendor relationships; recommends ways to influence vendors that aligned to domain, portfolio, and enterprise strategic objectives", + "Evaluates new technologies for adoption across the enterprise", + "Helps to identify and demonstrate emerging technologies for adoption by product teams", + "20% Delivery & Execution:", + "Collaborates and pairs with product team members (UX, engineering, and product management) to create secure, reliable, scalable software solutions", + "Documents, reviews and ensures that all quality and change control standards are met", + "Writes custom code or scripts to automate infrastructure, monitoring services, and test cases", + "Works with vendors and partners for the successful implementation of critical tooling and platforms", + "Creates meaningful dashboards, logging, alerting, and responses to ensure that issues are captured and addressed proactively", + "Contributes to enterprise-wide tools to drive destructive testing, automation, and engineering empowerment", + "Participates in and leads review board sessions to drive consistency across the enterprise", + "Makes suggestions that help drive operational excellence to create internal customer satisfaction and meet operational metrics", + "Fills in on product teams for engineers who are out of the office", + "15% Support & Enablement:", + "Fields questions from engineers, product teams, or support teams", + "Monitors tools and participates in conversations to encourage collaboration across product teams", + "Learns, through reading, tutorials, and videos, new technologies and best practices being used within other technology organizations", + "Provides application support for software running in production", + "Acts as a technical escalation point for the engineers on the team", + "45% People:", + "Provides leadership, mentoring, and coaching to Software Engineers", + "Attracts, retains, and develops top talent to build a world class Software Engineering Team", + "Conducts annual and mid-year reviews by reviewing individual development plans and team feedback", + "Fosters collaboration with team members to drive consistency across product teams, and finds opportunities to expose engineers to career interests", + "Acts as a proponent of modern software development practices", + "Guides team members in strategy, alignment, analysis, and execution tasks within and across product teams", + "Participates in and contributes to learning activities around modern software design and development core practices (communities of practice)", + "Builds relationships with technology leaders at other companies to learn best practices and elegant solutions to common problems", + "Typically reports to the Technology Director, Sr" + ] + }, + "job_job_title": "Senior manager", + "job_posting_language": "en", + "job_onet_soc": "11302100", + "job_onet_job_zone": "4", + "job_naics_code": "4441", + "job_naics_name": "Building Material and Supplies Dealers" + }, + { + "employer_name": "Radian", + "employer_logo": "https://upload.wikimedia.org/wikipedia/commons/b/b5/Radian_Primary_Logo_PNG_without_Tag_smaller.png", + "employer_website": "http://www.radian.com", + "employer_company_type": null, + "job_publisher": "Radian Jobs", + "job_id": "kpC-JIuWsQmsshV2AAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer in Test Intern - 100% Remote", + "job_apply_link": "https://careers.radian.com/us/en/job/R20230218/Software-Engineer-in-Test-Intern-100-Remote", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.905, + "apply_options": [ + { + "publisher": "Radian Jobs", + "apply_link": "https://careers.radian.com/us/en/job/R20230218/Software-Engineer-in-Test-Intern-100-Remote", + "is_direct": false + }, + { + "publisher": "ZipRecruiter", + "apply_link": "https://www.ziprecruiter.com/c/Radian-Group,-Inc./Job/Software-Engineer-in-Test-Intern-100-Remote/-in-Philadelphia,PA?jid=9b43fd8797669a53", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=ae4cedbba5c982d1", + "is_direct": false + }, + { + "publisher": "Radian - Talentify", + "apply_link": "https://radian.talentify.io/job/software-engineer-in-test-intern-100-percent-remote-trenton-new-jersey-radian-r20230218", + "is_direct": false + }, + { + "publisher": "Lensa", + "apply_link": "https://lensa.com/software-engineer-in-test-intern-100-remote-jobs/philadelphia/jd/cdd3bd9b75f058d04d0b7fc52dcf63f9", + "is_direct": false + }, + { + "publisher": "Jobrapido.com", + "apply_link": "https://us.jobrapido.com/jobpreview/3020186850", + "is_direct": false + }, + { + "publisher": "Jobilize", + "apply_link": "https://www.jobilize.com/job/us-software-engineer-test-intern-100-remote-united-states-radian-group", + "is_direct": false + } + ], + "job_description": "See yourself at Radian? We see you here too.\n\nAt Radian, we see you. For the person you are and the potential you hold. That’s why we’ve embraced a new way of working that lets our people across the country be themselves, be their best and be their boldest. Because when each of us is truly seen, each of us gives our best – and at Radian, we’ll give you our best right back.\n\nStudies have shown that job seekers may hesitate to apply for jobs unless they meet every single qualification listed. We strive to see the potential in each applicant, so if you’re excited about this role but your experience or education level doesn’t align perfectly with every qualification in the job description, we encourage you to apply anyway. You may be just the right candidate for this or other roles.\n\nSee Yourself as a Software Engineer in Test Intern\n\nThe Software Engineer in Test Intern contributes to Radian's overall test automation frameworks. This role will work closely with the Software Engineer in Test to define and implement an overall test automation infrastructure.\n\nIn order to help ESQA (Enterprise Software Quality Assurance) team improve the UAT (User Acceptance Testing) process efficiency, we need to create and execute more automated tests to replace existing manual tests that take more time and resource to execute and maintain. This role will work to build and maintain more automated tests for project release cycle.\n\nSee the Primary Duties and Responsibilities\n• Contributes to our overall test automation frameworks.\n• Work closely with Senior software engineer to build automation on Radian web applications.\n\nSee the Job Specifications\n\nYour Knowledge\n\nGeneral knowledge of all areas listed below is critical. While expertise in each area is not required for the role, an understanding of how the following technologies work together is important.\n• Building tests/testing software with tools that include Python, Java, Perl, Java Script and Shell Scripting – ability to write testing code\n• Java/Studio, C#, .NET, SQL Server and VB scripting\n• CI tools (Jenkins, Bamboo)\n• VMware or other virtualization technologies\n• GUI automated tools such as Coded UI, Selenium, UFT\n• Performance profiling and monitoring tools\n• Source control systems, Git, BitBucket, or similar\n• Selenium\n• Soap UI\n• SQL\n• Frameworks or products for automated bulk comparison of source and target for data loads to verify data completeness and correctness preferred\n• Testing to verify schemas and data objects after deployments and data in dashboards & report\n• Candidates should also possess excellent interpersonal skills; Candidate should have experience communicating quality issues to leadership team with recommendations on improvements. Candidates should have strong organizational skills, deal with complexity comfortably, and work quickly without sacrificing quality\n\nPrior Work Experience\n• Less than 6 months\n\nEducation\n• Bachelor's Degree in Computer Science\n\nSee Your Location\n\nRadian is committed to a flexible work environment for many of our roles. This is a *Work From Anywhere* role meaning you have the flexibility to work from home (or another designated workspace that fits your needs).\n\nThis role provides additional flexibility should you want to work on-site at a Radian office. Explore our office locations here and let your Talent Acquisition Partner know you would be interested in working on-site.\n• Work From Anywhere is subject to Radian’s Alternative Work Policy and business needs.\n\nSee Why You Should Work With Us\n• Competitive Compensation: anticipated hourly rate from 20ドル.00 to 24ドル.00 based on skills and experience.\n• Our Company Makes an Impact. We’ve been recognized by multiple organizations like Bloomberg’s Gender-Equality Index, HousingWire’s Tech 100, and The Forum of Executive Women’s Champion of Board Diversity. Radian has also pledged to PwC’s CEO Action for Diversity & Inclusion commitment.\n\nSee More About Radian\n\nRadian is a fintech servicing the mortgage and real estate services industry. As a team, we pride ourselves on seeing the potential of every person, every idea and every day.\n\nSeeing each other at Radian goes far beyond our open, flexible culture. It means seeing our people’s potential – and creating inspiring career paths that help them get there. Or seeing new pathways and innovating for the future of our industry. It means seeing each other for all that we are. And it means seeing our purpose as one that extends beyond the bottom line – having an impact on communities across the country to help more people achieve the American Dream of homeownership.\n\nWe hope you’ll see yourself at Radian. See more about us at Radian.com.\n\nDefining Roles for Radian's Future\n\nUnderstanding the qualities and characteristics that define a Leader and an Employee is important to ​building our future-fit workforce. Radian's future is only as bright as its people. For that reason, our People Plan includes profiles to support the qualities and characteristics that each Leader as well as each Employee should embody upon hire or via development.\n\nEEO Statement\n\nRadian complies with all applicable federal, state, and local laws prohibiting discrimination in employment. All qualified applicants will receive consideration for employment without regard to gender, age, race, color, religious creed, marital status, gender identity, sexual orientation, national origin, ethnicity, ancestry, citizenship, genetic information, disability, protected veteran status or any other characteristic protected by applicable federal, state, or local law.\n\nEqual Opportunity Employer Details\n\nTo learn more about Radian’s Code of Conduct and Ethics and workplace conduct, please click [here]. Radian participates in E-Verify [Link] (en español [Link]). Learn more about your rights under immigration laws [Link] (en español [Link]). View the \"EEO is the Law\" poster [Link]. View the \"EEO is the Law\" Supplement [Link]. View Pay Transparency Nondiscrimination Provision [Link].\n\nAccommodation\n\nWhether you require an accommodation for the job application or interview process, Radian is dedicated to a barrier-free employment process and encourages a diverse workforce. If you have questions about the accommodation process, please e-mail careers@radian.com.", + "job_is_remote": false, + "job_posted_at_timestamp": 1694044800, + "job_posted_at_datetime_utc": "2023-09-07T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=20&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=kpC-JIuWsQmsshV2AAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": [ + "uat", + "testing software", + "java", + "quality assurance", + "python", + "test automation", + "user acceptance testing", + "shell scripting", + "ci tools", + "selenium", + "jenkins", + "build automation", + "perl", + "source control systems", + "test automation frameworks", + "bamboo", + "e-verify", + "gui", + "enterprise software", + "coded ui", + "sql", + "web applications", + "test automation infrastructure", + "profiling", + "git", + "vmware", + "uft", + "virtualization", + "bitbucket", + "sql server", + "Software Engineer & IOS Developer", + "Java Software Development Engineer in Test", + "SDET Software Developer Engineer", + "Senior Software Developer Engineer", + "Senior Developer Engineer", + "Senior .Net & Web API Software Engineer", + "Software Design Engineer in Test", + "Senior Software Development Engineer in Test (SDET)", + "Senior Developer & Software Engineer", + "Senior Software Engineer & Full Stack Developer" + ], + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Building tests/testing software with tools that include Python, Java, Perl, Java Script and Shell Scripting – ability to write testing code", + "Java/Studio, C#, .NET, SQL Server and VB scripting", + "CI tools (Jenkins, Bamboo)", + "VMware or other virtualization technologies", + "GUI automated tools such as Coded UI, Selenium, UFT", + "Performance profiling and monitoring tools", + "Source control systems, Git, BitBucket, or similar", + "Candidates should also possess excellent interpersonal skills; Candidate should have experience communicating quality issues to leadership team with recommendations on improvements", + "Candidates should have strong organizational skills, deal with complexity comfortably, and work quickly without sacrificing quality", + "Prior Work Experience", + "Less than 6 months", + "Bachelor's Degree in Computer Science" + ], + "Responsibilities": [ + "This role will work closely with the Software Engineer in Test to define and implement an overall test automation infrastructure", + "In order to help ESQA (Enterprise Software Quality Assurance) team improve the UAT (User Acceptance Testing) process efficiency, we need to create and execute more automated tests to replace existing manual tests that take more time and resource to execute and maintain", + "This role will work to build and maintain more automated tests for project release cycle", + "See the Primary Duties and Responsibilities", + "Work closely with Senior software engineer to build automation on Radian web applications", + "Frameworks or products for automated bulk comparison of source and target for data loads to verify data completeness and correctness preferred", + "Testing to verify schemas and data objects after deployments and data in dashboards & report" + ], + "Benefits": [ + "Competitive Compensation: anticipated hourly rate from 20ドル.00 to 24ドル.00 based on skills and experience" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15119900", + "job_onet_job_zone": "4", + "job_occupational_categories": ["Internship"] + }, + { + "employer_name": "BP", + "employer_logo": "https://www.bp.com/etc/designs/bp-responsive/images/bp-responsive.svg", + "employer_website": "http://www.bp.com", + "employer_company_type": "Mining", + "job_publisher": "BP", + "job_id": "XfsZghiieOsr0z6sAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Staff Software Engineer (Back End)", + "job_apply_link": "https://www.bp.com/en/global/corporate/careers/jobs-at-bp/Staff-Software-Engineer-Back-End-RQ058872.html", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.7409, + "apply_options": [ + { + "publisher": "BP", + "apply_link": "https://www.bp.com/en/global/corporate/careers/jobs-at-bp/Staff-Software-Engineer-Back-End-RQ058872.html", + "is_direct": false + }, + { + "publisher": "ZipRecruiter", + "apply_link": "https://www.ziprecruiter.com/c/bp/Job/Senior-Software-Engineer-(Front-End)/-in-Chicago,IL?jid=0faccdc1369c1c2c", + "is_direct": false + }, + { + "publisher": "JobServe", + "apply_link": "https://www.jobserve.com/us/en/extjob/STAFF-SOFTWARE-ENGINEER-BACK-END-in-Chicago-Illinois-USA-1DF52B338C1C30C6D4/", + "is_direct": false + }, + { + "publisher": "Levels.fyi", + "apply_link": "https://www.levels.fyi/jobs?jobId=142388386036884166", + "is_direct": false + }, + { + "publisher": "Appspot", + "apply_link": "https://amgjobseastus01gc.ue.r.appspot.com/job-in-Chicago-Illinois-USA/STAFF-SOFTWARE-ENGINEER-BACK-END-efe76dd21fbc9074b6/", + "is_direct": false + } + ], + "job_description": "bp’s Innovation & Engineering (I&E) organization is the central organization for all software development. We build all the technology that powers bp’s businesses, from upstream energy production to downstream delivery of energy to our customers. We have a variety of teams depending on your areas of interest, including infrastructure and backend services through to customer-facing web and native applications. We encourage our teams to adapt quickly by using native AWS and Azure services, including serverless, and enable them to pick the best technology for a given problem. This is meant to empower our software engineers while allowing them to learn and develop themselves.", + "job_is_remote": false, + "job_posted_at_timestamp": 1688947200, + "job_posted_at_datetime_utc": "2023-07-10T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=20&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=XfsZghiieOsr0z6sAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": false, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": {}, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113300", + "job_onet_job_zone": "4", + "job_naics_code": "211111", + "job_naics_name": "Crude Petroleum and Natural Gas Extraction" + }, + { + "employer_name": "Storm4", + "employer_logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQkixcib_Lh8n7de_D1x4SIsuqlZ_-8rwmwYBWZ&s=0", + "employer_website": null, + "employer_company_type": null, + "job_publisher": "LinkedIn", + "job_id": "bPjiuYmIauRcD-34AAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Senior Software Engineer", + "job_apply_link": "https://www.linkedin.com/jobs/view/senior-software-engineer-at-storm4-3743046087", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.6361, + "apply_options": [ + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/senior-software-engineer-at-storm4-3743046087", + "is_direct": false + } + ], + "job_description": "⚡ Role: Senior Software Engineer\n\n Industry: E-Mobility\n\n Location: Los Angeles (1-2 days a week in office)\n\n Salary: 130ドルK-150ドルK + 35% bonus + equity\n\nWe are partnered with a leading E-Mobility scaleup that creates state of the art turnkey solutions that include EV infrastructure, an all-electric fleet, fleet maintenance, insurance, full service mobile app, customer support and robust analytics!\n\nThey're growing massively and looking for a Senior Software Engineer with a full stack background to join their team to develop their flagship car sharing software platforms, and scale brand new technology as they grow.\n\nResponsibilities :\n• Design, develop and maintain high availability SaaS applications in micro-services architecture for the E-Mobility space.\n• Develop and maintain multiple application programming interfaces (APIs)\n• Work closely with cross-functional teams to develop and integrate software components\n• Write clean, maintainable, and efficient code, and conduct thorough testing to ensure high-quality software.\n\nRequirements :\n• Bachelor's degree in Computer Science or a related field.\n• 2-5 years of professional experience as a full stack\n• 2+ years experience with React and Node.js\n• 2+ years experience with Java, Python or .NET\n• MUST have professional experience in E-Mobility, Micro-mobility, Car Sharing or Future Mobility space\n\nWhy Apply? \n• The chance to get into one of the most exciting sectors in the GreenTech industry\n• Competitive salary and healthy equity package\n• Career development programme support\n\n Interested in applying? Please click on the ‘Easy Apply’ button. You can also send your resume directly to alisha.michaels@storm4.com or message me directly!", + "job_is_remote": false, + "job_posted_at_timestamp": 1698325236, + "job_posted_at_datetime_utc": "2023-10-26T13:00:36.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=20&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=bPjiuYmIauRcD-34AAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": "2023-12-25T00:53:36.000Z", + "job_offer_expiration_timestamp": 1703465616, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 24, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": true, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Bachelor's degree in Computer Science or a related field", + "2-5 years of professional experience as a full stack", + "2+ years experience with React and Node.js", + "2+ years experience with Java, Python or .NET", + "MUST have professional experience in E-Mobility, Micro-mobility, Car Sharing or Future Mobility space" + ], + "Responsibilities": [ + "Design, develop and maintain high availability SaaS applications in micro-services architecture for the E-Mobility space", + "Develop and maintain multiple application programming interfaces (APIs)", + "Work closely with cross-functional teams to develop and integrate software components", + "Write clean, maintainable, and efficient code, and conduct thorough testing to ensure high-quality software" + ], + "Benefits": [ + " Salary: 130ドルK-150ドルK + 35% bonus + equity", + "Competitive salary and healthy equity package", + "Career development programme support" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4" + }, + { + "employer_name": "CDW", + "employer_logo": "https://upload.wikimedia.org/wikipedia/commons/thumb/5/5c/CDW_logo.svg/1200px-CDW_logo.svg.png", + "employer_website": "http://www.cdw.com", + "employer_company_type": "Information", + "job_publisher": "CDW - Careers", + "job_id": "YkPKJsPC0DyIochvAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "SR Software Engineer II, Cloud (Azure) Data", + "job_apply_link": "https://www.cdwjobs.com/jobs/11855463-sr-software-engineer-ii-cloud-azure-data", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.8198, + "apply_options": [ + { + "publisher": "CDW - Careers", + "apply_link": "https://www.cdwjobs.com/jobs/11855463-sr-software-engineer-ii-cloud-azure-data", + "is_direct": false + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/sr-software-engineer-ii-cloud-azure-data-at-cdw-3698311531", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=e88a350480debfa8", + "is_direct": false + }, + { + "publisher": "Diversity Jobs", + "apply_link": "https://diversityjobs.com/career/4478458/Sr-Software-Engineer-Ii-Data-Illinois-Vernon-Hills", + "is_direct": false + }, + { + "publisher": "Glassdoor", + "apply_link": "https://www.glassdoor.com/job-listing/sr-software-engineer-ii-cloud-azure-data-cdw-JV_KO0,40_KE41,44.htm?jl=1008828467810", + "is_direct": false + }, + { + "publisher": "Levels.fyi", + "apply_link": "https://www.levels.fyi/jobs?jobId=85283455761294022", + "is_direct": false + } + ], + "job_description": "The Senior Software Engineer II – Data will play a pivotal role in building and operationalizing the minimally inclusive data necessary for the enterprise data and analytics initiatives following best practices The bulk of the data engineer’s work would be in building, managing and optimizing data pipelines and then moving these data pipelines effectively into production for key data and analytics consumers like business/data analysts, data scientists or any persona that needs curated data for data and analytics use cases across the enterprise.\n\nKey Areas of Responsibility\n• Develops and maintains scalable data pipelines to support continuing increases in data volume and complexity.\n• Interface with other technology teams to extract, transform, and load data from a wide variety of data sources using big data technologies and SQL\n• Collaborates with business teams to improve data models that feed business intelligence tools, increasing data accessibility and fostering data-driven decision making across the organization.\n• Collaborate with other technology teams to help engineer data sets that data science teams uses to implement advanced analytics algorithms that exploit our rich datasets for statistical analysis, prediction, clustering and machine learning.\n• Responsible for using innovative and modern tools, techniques and architectures to partially or completely automate the most-common, repeatable and tedious data preparation and integration tasks in order to minimize manual and error-prone processes and improve productivity.\n• Train counterparts such as data scientists, data analysts, data consumers in data pipelines and preparation techniques, which make it easier for them to integrate and consume the data they need for their own use cases.\n• Helps ensure compliance and governance during use of data.\n• Be curious and knowledgeable about new data management techniques and how to apply them to solve business problems.\n\nEducation and/or Experience Qualifications\n• BS or MS degree in Computer Science or a related technical field.\n• 7+ years data application development experience\n\nRequired Qualifications\n• Strong experience with various Data Management architectures like Data Warehouse, Data Lake, Data Hub and the supporting processes like Data Integration, Governance, Metadata Management.\n• Extensive experience with popular data processing languages including SQL, PL/SQL, Python, others for relational databases and on NoSQL/Hadoop oriented databases like MongoDB, Cassandra, others for nonrelational databases.\n• Demonstrated ability to build rapport and maintain productive working relationships cross-departmentally and cross-functionally.\n• Demonstrated ability to coach and mentor others.\n• Excellent written and verbal communication skills with the ability to effectively interact with and present to all stakeholders including senior leadership.\n• Strong organizational, planning and creative problem solving-skills with critical attention to detail.\n• Demonstrated success of facilitation and solutions implementation.\n• History of balancing competing priorities with the ability to adapt to the changing needs of the business while meeting deadlines.\n\nPreferred Qualifications\n• Extensive experience with Azure Data Factory\n• Extensive experience working with cloud platform (at least one of Azure, AWS, GCP)\n• Experience with ETL Tools (SSIS, Informatica, Ab Initio, Talend), Python, Databricks, Microsoft SQL Server Platform (version 2012 or later), and/or working in an Agile environment\n\nCOVID-19 Update:\n\nCDW is committed to maintaining a workplace that is free of known hazards and to ensuring the safety, health, and well-being of coworkers and candidates for employment and their families, as well as the community.\n\nCDW requires all coworkers be fully vaccinated against COVID-19, with the only exceptions being a documented, legally required medical or religious accommodation. Prior to starting with CDW, successful candidates will be required to: (i) be fully vaccinated against COVID-19 and provide CDW with proof of full vaccination; or (ii) apply for and receive a medical or religious-based accommodation to be exempt from the mandatory vaccination policy.", + "job_is_remote": false, + "job_posted_at_timestamp": 1692889392, + "job_posted_at_datetime_utc": "2023-08-24T15:03:12.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=20&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=YkPKJsPC0DyIochvAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 84, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "BS or MS degree in Computer Science or a related technical field", + "7+ years data application development experience", + "Strong experience with various Data Management architectures like Data Warehouse, Data Lake, Data Hub and the supporting processes like Data Integration, Governance, Metadata Management", + "Extensive experience with popular data processing languages including SQL, PL/SQL, Python, others for relational databases and on NoSQL/Hadoop oriented databases like MongoDB, Cassandra, others for nonrelational databases", + "Demonstrated ability to build rapport and maintain productive working relationships cross-departmentally and cross-functionally", + "Demonstrated ability to coach and mentor others", + "Excellent written and verbal communication skills with the ability to effectively interact with and present to all stakeholders including senior leadership", + "Strong organizational, planning and creative problem solving-skills with critical attention to detail", + "Demonstrated success of facilitation and solutions implementation", + "History of balancing competing priorities with the ability to adapt to the changing needs of the business while meeting deadlines" + ], + "Responsibilities": [ + "The Senior Software Engineer II – Data will play a pivotal role in building and operationalizing the minimally inclusive data necessary for the enterprise data and analytics initiatives following best practices The bulk of the data engineer’s work would be in building, managing and optimizing data pipelines and then moving these data pipelines effectively into production for key data and analytics consumers like business/data analysts, data scientists or any persona that needs curated data for data and analytics use cases across the enterprise", + "Develops and maintains scalable data pipelines to support continuing increases in data volume and complexity", + "Interface with other technology teams to extract, transform, and load data from a wide variety of data sources using big data technologies and SQL", + "Collaborates with business teams to improve data models that feed business intelligence tools, increasing data accessibility and fostering data-driven decision making across the organization", + "Collaborate with other technology teams to help engineer data sets that data science teams uses to implement advanced analytics algorithms that exploit our rich datasets for statistical analysis, prediction, clustering and machine learning", + "Responsible for using innovative and modern tools, techniques and architectures to partially or completely automate the most-common, repeatable and tedious data preparation and integration tasks in order to minimize manual and error-prone processes and improve productivity", + "Train counterparts such as data scientists, data analysts, data consumers in data pipelines and preparation techniques, which make it easier for them to integrate and consume the data they need for their own use cases", + "Helps ensure compliance and governance during use of data", + "Be curious and knowledgeable about new data management techniques and how to apply them to solve business problems" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_naics_code": "518210", + "job_naics_name": "Data Processing, Hosting, and Related Services" + }, + { + "employer_name": "Cardinal Health", + "employer_logo": "https://1000logos.net/wp-content/uploads/2021/07/Cardinal-Health-Logo.jpg", + "employer_website": "http://www.cardinal.com", + "employer_company_type": "Wholesale", + "job_publisher": "Cardinal Health Careers", + "job_id": "WcLoKXw0E4Dwzf7eAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Staff Engineer Commercial Technologies Software Engineering", + "job_apply_link": "https://jobs.cardinalhealth.com/search/jobdetails/staff-engineer-commercial-technologies-software-engineering/5970f926-79cc-4c11-9cef-c05f9a4591e5", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.8951, + "apply_options": [ + { + "publisher": "Cardinal Health Careers", + "apply_link": "https://jobs.cardinalhealth.com/search/jobdetails/staff-engineer-commercial-technologies-software-engineering/5970f926-79cc-4c11-9cef-c05f9a4591e5", + "is_direct": false + }, + { + "publisher": "Salary.com", + "apply_link": "https://www.salary.com/job/cardinal-health/staff-engineer-commercial-technologies-software-engineering/j202308121344327770008", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=c71315da2eb87c4f", + "is_direct": false + }, + { + "publisher": "Health Industry Distributors Association", + "apply_link": "https://jobs.hida.org/job/staff-engineer-commercial-technologies-software-engineering-211057", + "is_direct": false + }, + { + "publisher": "CareerBuilder", + "apply_link": "https://www.careerbuilder.com/job/J3V87N6XYDMDZ4J8BQ1", + "is_direct": false + }, + { + "publisher": "Jooble", + "apply_link": "https://jooble.org/jdp/1475875124577269488/Staff-Engineer-Commercial-Technologies-Software-Engineering-Dublin%2C-OH", + "is_direct": false + }, + { + "publisher": "Glassdoor", + "apply_link": "https://www.glassdoor.com/job-listing/staff-engineer-commercial-technologies-software-engineering-cardinal-health-JV_IC1145850_KO0,59_KE60,75.htm?jl=1008810965295", + "is_direct": false + }, + { + "publisher": "Learn4Good", + "apply_link": "https://www.learn4good.com/jobs/dublin/ohio/info_technology/2515558728/e/", + "is_direct": false + } + ], + "job_description": "What Commercial Technologies Software Engineering contributes to Cardinal Health\n\nCommercial Technologies manages the enterprise's portfolio of commercial technologies to maximize the business value of the technologies and enhance the customer experience. This function creates strategies for the portfolio and innovative solutions based on relationships with business leaders, develops back-end solutions and capabilities, and improves the front-end experience.\n\nCommercial Technologies Software Engineering develops design options, process improvements and back-end solutions for commercial technologies to maximize performance and suitability for business needs. This job family manages engineering projects and plans for commercial technologies and interfaces with product managers to develop objectives. This job family assesses product systems, identifies opportunities for process and system improvements, and develops solutions through application of engineering principles.\n\nResponsibilities\n• Utilizes development skills to build (code) and unit test new systems functionality per technical specifications, with deliverables to include code builds and documented unit test results.\n• Possess strong problem solving and communication skills. Must be able to articulate an issue, accurately identify solution options and communicate the best course of action to the internal stakeholders.\n• Enforcing sound development practices and ensure the quality delivery of enterprise solutions\n• Maintain a flexible and proactive work environment to facilitate a quick response to changing project requirements and innovate ways to meet mission goals successfully\n\nQualifications\n• 4-8 years of experience preferred\n• Experience with Java, Angular, & GCP preferred\n• BA, BS or equivalent experience in related field preferred. Advance Degree preferred\n\nWhat is expected of you and others at this level\n• Applies comprehensive knowledge and a thorough understanding of concepts, principles, and technical capabilities to perform varied tasks and projects\n• May contribute to the development of policies and procedures\n• Works on complex projects of large scope\n• Develops technical solutions to a wide range of difficult problems\n• Solutions are innovative and consistent with organization objectives\n• Completes work; independently receives general guidance on new projects\n• Work reviewed for purpose of meeting objectives\n• May act as a mentor to less experienced colleagues\n\nAnticipated salary range: 88,500ドル-132,720ドル\n\nBonus eligible: No\n\nBenefits: Health insurance, 401k Contributions, Paid Time Off, Vacation, STD/LTD\n\n#LI-Remote\n\nCandidates who are back-to-work, people with disabilities, without a college degree, and Veterans are encouraged to apply.\n\nCardinal Health supports an inclusive workplace that values diversity of thought, experience and background. We celebrate the power of our differences to create better solutions for our customers by ensuring employees can be their authentic selves each day. Cardinal Health is an Equal Opportunity/Affirmative Action employer. All qualified applicants will receive consideration for employment without regard to race, religion, color, national origin, ancestry, age, physical or mental disability, sex, sexual orientation, gender identity/expression, pregnancy, veteran status, marital status, creed, status with regard to public assistance, genetic status or any other status protected by federal, state or local law.", + "job_is_remote": false, + "job_posted_at_timestamp": 1691712000, + "job_posted_at_datetime_utc": "2023-08-11T00:00:00.000Z", + "job_city": "Dublin", + "job_state": "OH", + "job_country": "US", + "job_latitude": 40.099228, + "job_longitude": -83.114075, + "job_benefits": [ + "dental_coverage", + "health_insurance", + "paid_time_off", + "retirement_savings" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=20&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=WcLoKXw0E4Dwzf7eAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 48, + "experience_mentioned": true, + "experience_preferred": true + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Responsibilities": [ + "Commercial Technologies manages the enterprise's portfolio of commercial technologies to maximize the business value of the technologies and enhance the customer experience", + "This function creates strategies for the portfolio and innovative solutions based on relationships with business leaders, develops back-end solutions and capabilities, and improves the front-end experience", + "Commercial Technologies Software Engineering develops design options, process improvements and back-end solutions for commercial technologies to maximize performance and suitability for business needs", + "This job family manages engineering projects and plans for commercial technologies and interfaces with product managers to develop objectives", + "This job family assesses product systems, identifies opportunities for process and system improvements, and develops solutions through application of engineering principles", + "Utilizes development skills to build (code) and unit test new systems functionality per technical specifications, with deliverables to include code builds and documented unit test results", + "Possess strong problem solving and communication skills", + "Enforcing sound development practices and ensure the quality delivery of enterprise solutions", + "Maintain a flexible and proactive work environment to facilitate a quick response to changing project requirements and innovate ways to meet mission goals successfully", + "Applies comprehensive knowledge and a thorough understanding of concepts, principles, and technical capabilities to perform varied tasks and projects", + "May contribute to the development of policies and procedures", + "Works on complex projects of large scope", + "Develops technical solutions to a wide range of difficult problems", + "Solutions are innovative and consistent with organization objectives", + "Completes work; independently receives general guidance on new projects", + "Work reviewed for purpose of meeting objectives", + "May act as a mentor to less experienced colleagues" + ], + "Benefits": [ + "Anticipated salary range: 88,500ドル-132,720ドル", + "Bonus eligible: No", + "Benefits: Health insurance, 401k Contributions, Paid Time Off, Vacation, STD/LTD" + ] + }, + "job_job_title": "Software engineering", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_naics_code": "424210", + "job_naics_name": "Drugs and Druggists' Sundries Merchant Wholesalers" + }, + { + "employer_name": "Right On Cue Services", + "employer_logo": null, + "employer_website": null, + "employer_company_type": null, + "job_publisher": "Glassdoor", + "job_id": "l90PWBtQcrPy_h3vAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer", + "job_apply_link": "https://www.glassdoor.com/job-listing/software-engineer-right-on-cue-services-JV_KO0,17_KE18,39.htm?jl=1008916131792", + "job_apply_is_direct": true, + "job_apply_quality_score": 0.6678, + "apply_options": [ + { + "publisher": "Glassdoor", + "apply_link": "https://www.glassdoor.com/job-listing/software-engineer-right-on-cue-services-JV_KO0,17_KE18,39.htm?jl=1008916131792", + "is_direct": true + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=29e57493543cccd5", + "is_direct": true + } + ], + "job_description": "Right on Cue Services (ROCS) in Provo, UT is looking to hire a full-time Software Engineer to join our team. This awesome person will work with our current small development team to build new products in the theater industry. Do you like creating new and unique products with the ability to have a huge impact quickly? Do want the chance to work with in a small company where you are more than just another engineer? Would you like to be part of an established company that is growing and the dominant player in our market? Do you want to work for an organization that values you as its most important asset? If so, please read on!\n\nThis Programing position earns a competitive wage of 90,000ドル – 105,000/year depending on experience. We provide great benefits, including health, vision, dental, a flexible spending account (FSA), an employee assistance program (EAP), a 401(k) plan, at least 10 paid holidays, generous paid time off (PTO), life insurance, and a great environment with friends. If this sounds like the right specialist opportunity for you, apply today!\n\nABOUT ROCS\n\nRight On Cue Services provides music for live theater. We are endorsed by most major licensing companies out of New York City and sell our products around the world. We are unique in our industry, combining music and technology to provide a fantastic and customizable service to our clients. We have weathered the pandemic and resulting theater closures and have come out stronger than ever. Now we are ready to expand our product offerings.\n\nWe value our employees and your work life balance. We want our employees to work hard then play hard, leaving work in the office. We have flexible hours to match your location, and our family-friendly schedule helps show our gratitude to our loyal. We insist in open two-way communication.\n\nA DAY IN THE LIFE OF A SOFTWARE ENGINEER\n\nAs one of our Software Engineers, you will have the opportunity to work with our small team to build native Mac and Windows applications using cutting edge application and musical technology. You will be responsible for building, releasing, and maintaining products throughout all stages of the product lifecycle. You will be an invaluable member of the team as we create and release new products.\n\nARE YOU READY TO JOIN OUR TEAM?\n\nIf you feel that you would be right for this job, apply now. We look forward to meeting you!\n\nREQUIREMENTS\n\n1. Strong experience in Object Oriented Programming (OOP) with C++\n\n2. Strong experience with Qt/QML\n\n3. Some experience using Python for our legacy software.\n\nDESIRED EXPERIENCE\n\n1. Experience with cross-platform development on Mac and Windows\n\n2. Experience with audio or video player development or systems with performance requirements\n\nBONUS\n\n1. Experience with Server, Networking, or AWS experience\n\n2. Experience with Audio/MIDI Editing\n\n3. Ability to read music notation\n\nJob Type: Full-time\n\nPay: 90,000ドル.00 - 105,000ドル.00 per year\n\nBenefits:\n• 401(k)\n• Dental insurance\n• Employee assistance program\n• Flexible schedule\n• Flexible spending account\n• Health insurance\n• Life insurance\n• Paid time off\n• Professional development assistance\n• Vision insurance\n\nSchedule:\n• Day shift\n• Monday to Friday\n\nExperience:\n• C++: 5 years (Required)\n• Qt/QML: 3 years (Required)\n• Midi: 2 years (Preferred)\n\nWork Location: Remote", + "job_is_remote": true, + "job_posted_at_timestamp": 1696809600, + "job_posted_at_datetime_utc": "2023-10-09T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "dental_coverage", + "health_insurance", + "paid_time_off", + "retirement_savings" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=20&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=l90PWBtQcrPy_h3vAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": 90000, + "job_max_salary": 105000, + "job_salary_currency": "USD", + "job_salary_period": "YEAR", + "job_highlights": { + "Qualifications": [ + "Strong experience in Object Oriented Programming (OOP) with C++", + "Strong experience with Qt/QML", + "Some experience using Python for our legacy software", + "Experience with Server, Networking, or AWS experience", + "Experience with Audio/MIDI Editing", + "C++: 5 years (Required)", + "Qt/QML: 3 years (Required)" + ], + "Responsibilities": [ + "You will be responsible for building, releasing, and maintaining products throughout all stages of the product lifecycle", + "You will be an invaluable member of the team as we create and release new products" + ], + "Benefits": [ + "This Programing position earns a competitive wage of 90,000ドル – 105,000/year depending on experience", + "We provide great benefits, including health, vision, dental, a flexible spending account (FSA), an employee assistance program (EAP), a 401(k) plan, at least 10 paid holidays, generous paid time off (PTO), life insurance, and a great environment with friends", + "Pay: 90,000ドル.00 - 105,000ドル.00 per year", + "Flexible schedule", + "Professional development assistance" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4" + }, + { + "employer_name": "Vontier", + "employer_logo": "https://mms.businesswire.com/media/20220217005166/en/1362604/22/13278-Vontier_logo_color_rgb-1.jpg", + "employer_website": "http://www.vontier.com", + "employer_company_type": null, + "job_publisher": "Vontier Jobs", + "job_id": "GTuVliw2aqLaFOanAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Staff Engineer, Software Engineer", + "job_apply_link": "https://careers.vontier.com/us/en/job/GIL009867/Staff-Engineer-Software-Engineer", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.7807, + "apply_options": [ + { + "publisher": "Vontier Jobs", + "apply_link": "https://careers.vontier.com/us/en/job/GIL009867/Staff-Engineer-Software-Engineer", + "is_direct": false + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/staff-engineer-software-engineer-at-gilbarco-veeder-root-3745487626", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=cfc1e0732cc4cbed", + "is_direct": false + }, + { + "publisher": "Glassdoor", + "apply_link": "https://www.glassdoor.com/job-listing/staff-engineer-software-engineer-gilbarco-JV_KO0,32_KE33,41.htm?jl=1008938044580", + "is_direct": false + }, + { + "publisher": "Vontier - Talentify", + "apply_link": "https://vontier.talentify.io/job/staff-engineer-software-engineer-virtual-virtual-vontier-gil009867", + "is_direct": false + } + ], + "job_description": "• Oversee the design and development of test automation for an integrated set of products and integrated solutions\n• Provide technical leadership and mentoring to junior SDETs and engineering teams to improve Test Automation practices and frameworks, developing solutions to solve complex challenges for an integrated set of products across test environments, and infrastructure.\n• Define and develop innovative Test Tools, Automation Frameworks, novel Test Automation approaches, and automated tests to increase test coverage and speed delivery of high-quality software\n• Develop and deliver proof of concepts and evaluation of new or enhanced test automation frameworks to support the testing needs of the organization for both functional and non-functional tests\n• Define test automation strategies large scale enterprise programs, working closely with Architects and Development\n• Performing code reviews and providing feedback to junior developers and quality assurance engineers\n• Ensuring adherence to software engineering standards\n• Collaborate with the Architecture team and contribute to system and application architecture\n• Integrate test automation into CICD pipelines enabling continuous integration and testing of software\n• Participate in the development of load models then defining test harnesses and approaches to validating performance of software under peak load volumesAnalyzing data to spot potential weaknesses or problems with software\n• Review and analyze system specifications and design documents to understand the system and narrow down likely failure cases.\n• Responsible for multiple products and SDET Engineers\n• Staff Software Engineer Requirements and Qualifications\n• Bachelor's or master's degree in computer science, software engineering, or a related field\n• Hands on experience in software product development with a focus on Test Automation, Security and performance aspects of a Product (7+ years preferred)\n• Hands-on experience in authoring, building, and adopting large-scale, cross-functional automation frameworks with well-balanced coverage across UI, back-end integration, database, API validation and Command Line (CLI).\n• Excellent analytical and program solving skills, excellent written and oral communication, self-starter, and highly motivated.\n• Proficiency in GoLang development with proven experience on microservices development. Knowledge of API Design, GIT, and Testing.\n• Ability to understand and breakdown complex business functionality, validate related requirements and designs\n• Ability to produce documentation on projects and tasks compliant with standards.\n• Experience with Scrum and other Agile methodologies including Test Driven DevelopmentT\n• Knowledge of Operating Systems (Windows/Linux/Mac) and Web/Cloud/Network Technologies and Mobile Applications\n• Data Modelling and Design Experience, and leveraging that to create a repository of test data of all types\n• Experience with Typescript, Playwright/Cypress, Node.js, AWS , and modern development tools Github, Java, Golang, Docker, Kubernetes and a few others so they can look into new code for issue resolution, test harnesses for performance and load testing, etc.\n• Experience with IoT and data lakes a plus\n\nWHO WE ARE\n\nThe world depends on Gilbarco Veeder-Root products to stay moving. We are the worldwide technology leader for retail and commercial fueling operations. We continue to evolve as smart cities, urbanization, electrification of vehicles, and advanced vehicle diagnostics drive the industry forward. Offering the broadest range of innovative, integrated solutions in the industry, Gilbarco Veeder-Root has delivered value, built extraordinary teams, and earned customer trust for more than 150 years. To learn more about us visit: www.gilbarco.com.\n\nWHO IS VONTIER\n\nVontier (NYSE: VNT) is a global industrial technology company uniting critical mobility and multi-energy technologies and solutions to meet the needs of a rapidly evolving, more connected mobility ecosystem. Leveraging leading market positions, decades of domain expertise and unparalleled portfolio breadth, Vontier enables the way the world moves – delivering smart, safe, and sustainable solutions to our customers and the planet. Vontier has a culture of continuous improvement built upon the foundation of the Vontier Business System and embraced by over 8,500 colleagues worldwide. Additional information about Vontier is available on the Company’s website at www.vontier.com.\n\"Vontier Corporation and all Vontier Companies are equal opportunity employers that evaluate qualified applicants without regard to race, color, national origin, religion, ancestry, sex (including pregnancy, childbirth and related medical conditions), age, marital status, disability, veteran status, citizenship status, sexual orientation, gender identity or expression, and other characteristics protected by law.\"", + "job_is_remote": false, + "job_posted_at_timestamp": 1697743543, + "job_posted_at_datetime_utc": "2023-10-19T19:25:43.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=30&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=GTuVliw2aqLaFOanAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 84, + "experience_mentioned": true, + "experience_preferred": true + }, + "job_required_skills": [ + "software engineering", + "api", + "automation frameworks", + "cicd", + "automation", + "test automation", + "aws", + "api design", + "application architecture", + "continuous integration", + "quality assurance", + "java", + "ui", + "iot", + "microservices", + "development tools", + "node.js", + "integrated solutions", + "agile methodologies", + "technical leadership", + "git", + "operating systems", + "computer science", + "golang development", + "kubernetes", + "software product development", + "typescript", + "test tools", + "mobile applications", + "software engineering standards", + "Associate Engineer & Software Engineer", + "Software Test Engineer & Software Engineer", + "Principal Engineer - Software Engineering", + "Lead Engineer & Software Developer", + "Senior Software Engineer & Software Engineer", + "Senior Staff Engineer - Software Development", + "Senior Software Design Engineer & Architect", + "Systems Engineer Software Developer", + "Senior Engineer - Software Development", + "Senior Software Engineer - SSE" + ], + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Bachelor's or master's degree in computer science, software engineering, or a related field", + "Hands-on experience in authoring, building, and adopting large-scale, cross-functional automation frameworks with well-balanced coverage across UI, back-end integration, database, API validation and Command Line (CLI)", + "Excellent analytical and program solving skills, excellent written and oral communication, self-starter, and highly motivated", + "Proficiency in GoLang development with proven experience on microservices development", + "Knowledge of API Design, GIT, and Testing", + "Experience with Scrum and other Agile methodologies including Test Driven DevelopmentT", + "Knowledge of Operating Systems (Windows/Linux/Mac) and Web/Cloud/Network Technologies and Mobile Applications", + "Experience with Typescript, Playwright/Cypress, Node.js, AWS , and modern development tools Github, Java, Golang, Docker, Kubernetes and a few others so they can look into new code for issue resolution, test harnesses for performance and load testing, etc" + ], + "Responsibilities": [ + "Oversee the design and development of test automation for an integrated set of products and integrated solutions", + "Provide technical leadership and mentoring to junior SDETs and engineering teams to improve Test Automation practices and frameworks, developing solutions to solve complex challenges for an integrated set of products across test environments, and infrastructure", + "Define and develop innovative Test Tools, Automation Frameworks, novel Test Automation approaches, and automated tests to increase test coverage and speed delivery of high-quality software", + "Develop and deliver proof of concepts and evaluation of new or enhanced test automation frameworks to support the testing needs of the organization for both functional and non-functional tests", + "Define test automation strategies large scale enterprise programs, working closely with Architects and Development", + "Performing code reviews and providing feedback to junior developers and quality assurance engineers", + "Ensuring adherence to software engineering standards", + "Collaborate with the Architecture team and contribute to system and application architecture", + "Integrate test automation into CICD pipelines enabling continuous integration and testing of software", + "Participate in the development of load models then defining test harnesses and approaches to validating performance of software under peak load volumes", + "Analyzing data to spot potential weaknesses or problems with software", + "Review and analyze system specifications and design documents to understand the system and narrow down likely failure cases", + "Responsible for multiple products and SDET Engineers", + "Ability to produce documentation on projects and tasks compliant with standards" + ] + }, + "job_job_title": "Staff engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_occupational_categories": ["Information Technology"] + }, + { + "employer_name": "Veeva", + "employer_logo": "https://www.veeva.com/medtech/wp-content/uploads/2021/08/veeva-medtech-medical-device-diagnostics.png", + "employer_website": "http://www.veeva.com", + "employer_company_type": "Computer Services", + "job_publisher": "Veeva Careers - Veeva Systems", + "job_id": "AFzWNzppA4DvYkq7AAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer in Test", + "job_apply_link": "https://careers.veeva.com/job/18438157/software-engineer-in-test-kansas-city-mo/", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.9183, + "apply_options": [ + { + "publisher": "Veeva Careers - Veeva Systems", + "apply_link": "https://careers.veeva.com/job/18438157/software-engineer-in-test-kansas-city-mo/", + "is_direct": false + }, + { + "publisher": "Lever", + "apply_link": "https://jobs.lever.co/veeva/07b2f464-d8b3-4554-9b5e-e6e82cb23b36", + "is_direct": false + }, + { + "publisher": "Simplify", + "apply_link": "https://simplify.jobs/p/13d5c6c4-3873-4e09-b4b6-2fc6e890dd90/Senior-Software-Engineer-in-Test", + "is_direct": false + }, + { + "publisher": "Wellfound", + "apply_link": "https://wellfound.com/jobs/2682896-senior-software-engineer-in-test", + "is_direct": true + }, + { + "publisher": "Levels.fyi", + "apply_link": "https://www.levels.fyi/jobs?jobId=129048512491856582", + "is_direct": false + }, + { + "publisher": "SimplyHired", + "apply_link": "https://www.simplyhired.com/job/35yr7L_SPGKlQQ3zR2ivpAfGBSVHPLEnQn54MkEFjGsdCBmku3wKEQ", + "is_direct": false + }, + { + "publisher": "LocalJobNetwork.com", + "apply_link": "https://jobs.localjobnetwork.com/job/detail/73854338/Senior-Software-Engineer-in-Test", + "is_direct": false + }, + { + "publisher": "BeBee", + "apply_link": "https://us.bebee.com/job/20231018-39284a0e935b199c8733339136557ad1", + "is_direct": false + } + ], + "job_description": "Veeva Systems is a mission-driven organization and pioneer in industry cloud, helping life sciences companies bring therapies to patients faster. As one of the fastest-growing SaaS companies in history, we surpassed 2ドルB in revenue in our last fiscal year with extensive growth potential ahead.\n\nAt the heart of Veeva are our values: Do the Right Thing, Customer Success, Employee Success, and Speed. We're not just any public company – we made history in 2021 by becoming a public benefit corporation (PBC), legally bound to balancing the interests of customers, employees, society, and investors.\n\nAs a Work Anywhere company, we support your flexibility to work from home or in the office, so you can thrive in your ideal environment.\n\nJoin us in transforming the life sciences industry, committed to making a positive impact on its customers, employees, and communities.\n\nThe Role\n\nVeeva Systems is looking for a self-driven and passionate Software Engineer in Test to join our rapidly growing team. As a Software Engineer in Test for Veeva you will be asked to collaborate closely with developers, functional QA, and product managers to develop and maintain a suite of automation test cases that will ensure product quality.\nWhat You'll Do\n• Design, Develop, Maintain, and Execute robust automation test suites\n• Automate API tests using RestAssured\n• Automate UI tests for the Web using Selenium or iOS and Android Native Apps with Appium\n• Ensure product quality using CI/CD methodologies\n• Contribute to automation infrastructure improvements\n• Collaborate with PMs, Developers, and QA on automation strategy and approach\n• Mentor team members via code reviews and pair programming sessions\nRequirements\n• 3+ years experience in the software industry, with a proven track record of designing, developing, and maintaining test automation frameworks\n• Strong Programming experience in Java (knowledge of Java 8+ preferred)\n• Experience with TestNG and Gradle or Maven\n• Experience with the Page Object Pattern\n• Experience leveraging APIs to set up test data/state for UI tests\n• Strong Experience with automation tools: RestAssured and Selenium for Web or Appium for Mobile\n• Strong Experience with CI/CD pipeline management experience with tools: Jenkins, GitLab\n• Problem-Solving, Process Improvement, and Coaching Strong written and verbal English skills to support complex analysis\n• Bachelor’s in Mathematics or Computer Science/Applications/MIS or similar field\nNice to Have\n• Experience testing /automating GraphQL APIs\n• Experience with Apollo library AWS / Docker experience\n• Performance Testing Experience with Jmeter\n\n#LI-Remote\n#BI-Remote\n\nVeeva’s headquarters is located in the San Francisco Bay Area with offices in more than 15 countries around the world.\n\nVeeva is an equal opportunity employer. All qualified applicants will receive consideration for employment without regard to race, color, sex, sexual orientation, gender identity or expression, religion, national origin or ancestry, age, disability, marital status, pregnancy, protected veteran status, protected genetic information, political affiliation, or any other characteristics protected by local laws, regulations, or ordinances. If you need assistance or accommodation due to a disability or special need when applying for a role or in our recruitment process, please contact us at talent_accommodations@veeva.com. For US compensation ranges click here.", + "job_is_remote": false, + "job_posted_at_timestamp": 1697760000, + "job_posted_at_datetime_utc": "2023-10-20T00:00:00.000Z", + "job_city": "Kansas City", + "job_state": "MO", + "job_country": "US", + "job_latitude": 39.099728, + "job_longitude": -94.57857, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=30&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=AFzWNzppA4DvYkq7AAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 36, + "experience_mentioned": true, + "experience_preferred": true + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "3+ years experience in the software industry, with a proven track record of designing, developing, and maintaining test automation frameworks", + "Experience with TestNG and Gradle or Maven", + "Experience with the Page Object Pattern", + "Experience leveraging APIs to set up test data/state for UI tests", + "Strong Experience with automation tools: RestAssured and Selenium for Web or Appium for Mobile", + "Strong Experience with CI/CD pipeline management experience with tools: Jenkins, GitLab", + "Problem-Solving, Process Improvement, and Coaching Strong written and verbal English skills to support complex analysis", + "Bachelor’s in Mathematics or Computer Science/Applications/MIS or similar field", + "Experience testing /automating GraphQL APIs", + "Experience with Apollo library AWS / Docker experience", + "Performance Testing Experience with Jmeter" + ], + "Responsibilities": [ + "As a Software Engineer in Test for Veeva you will be asked to collaborate closely with developers, functional QA, and product managers to develop and maintain a suite of automation test cases that will ensure product quality", + "Design, Develop, Maintain, and Execute robust automation test suites", + "Automate API tests using RestAssured", + "Automate UI tests for the Web using Selenium or iOS and Android Native Apps with Appium", + "Ensure product quality using CI/CD methodologies", + "Contribute to automation infrastructure improvements", + "Collaborate with PMs, Developers, and QA on automation strategy and approach", + "Mentor team members via code reviews and pair programming sessions" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15119900", + "job_onet_job_zone": "4", + "job_naics_code": "541512", + "job_naics_name": "Computer Systems Design Services" + }, + { + "employer_name": "iboss", + "employer_logo": "https://www.ip-performance.co.uk/wp-content/uploads/2021/10/iboss-cyber-security-logo-22.10.21-scaled.jpeg", + "employer_website": "http://www.iboss.com", + "employer_company_type": null, + "job_publisher": "Jobvite", + "job_id": "Qd9ish06HBQGyA_dAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer-Endpoints", + "job_apply_link": "https://jobs.jobvite.com/iboss/job/oFRqofw4", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.802, + "apply_options": [ + { + "publisher": "Jobvite", + "apply_link": "https://jobs.jobvite.com/iboss/job/oFRqofw4", + "is_direct": false + }, + { + "publisher": "Talent.com", + "apply_link": "https://www.talent.com/view?id=2e1cc0c6bd10", + "is_direct": false + }, + { + "publisher": "Ladders", + "apply_link": "https://www.theladders.com/job/software-engineer-endpoints-iboss-atlanta-ga_64930802", + "is_direct": false + }, + { + "publisher": "BeBee", + "apply_link": "https://us.bebee.com/job/20231020-5b08da2026a23fabe7f48339f48e559b", + "is_direct": false + }, + { + "publisher": "Jobilize", + "apply_link": "https://www.jobilize.com/job/us-ga-atlanta-software-engineer-endpoints-iboss-hiring-now-job-immediately", + "is_direct": false + } + ], + "job_description": "Company Overview\n\niboss is a cloud security company that enables the modern workforce to connect securely and directly to all applications from wherever they work. Built on a containerized cloud architecture, iboss delivers security capabilities such as SWG, malware defense, RBI, CASB and data loss prevention to all connections via the cloud, instantaneously and at scale. This eliminates the need for traditional network security appliances, such as VPNs, firewalls and web gateway proxies, which are ineffective at protecting a cloud-first and mobile world. Leveraging a purpose-built cloud architecture backed by 230+ issued and pending patents and more than 100 points of presence globally, iboss processes over 150 billion transactions daily, blocking 4 billion threats per day. More than 4,000 global enterprises trust the iboss Cloud Platform to support their modern workforces, including a large number of Fortune 50 companies. To learn more, visit https://www.iboss.com/\n\nJob Description\n\nAs a Software Engineer- Endpoints at iboss, you’ll have the opportunity to work on multiple technologies. Our development scope extends from device-specific driver, service, and communication protocols to cloud scalable connectivity and big data processing through third-party analytics tool integration and customer enterprise UI creation for security policy management. The pace is fast. The process is agile. This is an excellent opportunity to become a core member of a rapidly growing software development team. There are many exciting projects on which to work. iboss software developers excel at solving tough problems, collaborating well, and working with customer teams to rapidly deploy solutions.\n\nThe work on this team involves developing software to run on several different types of user devices. The applications manage IP traffic flow into the iboss cloud and run on millions of devices every day. This is a prime opportunity to have a significant effect on the leading edge of security software development.\n\nResponsibilities\n• Ability to design and develop clean and maintainable code for deployment on Windows, iOS, Android, and macOS, and ChromeOS systems\n• Quickly understand and extend engineering architectural patterns\n• Independently solve tough software problems\n• Document engineering designs\n• Analyze and estimate development efforts\n\nQualifications\n• 5+ years of experience developing high-quality code in C/C++, Swift/Objective C or Java required\n• Experience focused in C/C++ networking-based applications on Windows, Mac, IOS, Android or Linux Operating Systems\n• 1+ years of experience working with endpoint development\n• Knowledge of security, networking, and handling of large datasets\n• TCP/IP and networking knowledge\n• Must have a good sense of engineering tradeoffs, within the contexts of extendibility, scalability, performance, and maintainability\n• Working knowledge of database technologies and SQL, especially PostgreSQL\n• Experience with OO design and design patterns\n• Comfortable working in a Unix environment\n• Strong knowledge of the full software development life cycle, with experience in an agile environment\n• Previous experience using Wireshark is a plus\n• Experience with software security is a plus\n• BS or MS in Computer Science or related engineering discipline\n\nBenefits\n• Health, Vision, Dental - open to domestic partners\n• 401K with company match\n• Paid Time Off (PTO)\n• Company-paid holidays\n• Optimistic, supportive, and fun work environment\n• Fantastic quarterly company events\n\nThe duties and responsibilities described above are essential functions of the job.\n\nAll qualified applicants will receive consideration for employment without regard to race, color, religion, sex, sexual orientation, gender identity, national origin, status as a veteran, or as an individual with a disability.\n• This position is not eligible for sponsorship of work visas.", + "job_is_remote": false, + "job_posted_at_timestamp": 1695081600, + "job_posted_at_datetime_utc": "2023-09-19T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "retirement_savings", + "paid_time_off", + "health_insurance" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=30&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=Qd9ish06HBQGyA_dAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 60, + "experience_mentioned": true, + "experience_preferred": true + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "5+ years of experience developing high-quality code in C/C++, Swift/Objective C or Java required", + "Experience focused in C/C++ networking-based applications on Windows, Mac, IOS, Android or Linux Operating Systems", + "1+ years of experience working with endpoint development", + "Knowledge of security, networking, and handling of large datasets", + "TCP/IP and networking knowledge", + "Must have a good sense of engineering tradeoffs, within the contexts of extendibility, scalability, performance, and maintainability", + "Working knowledge of database technologies and SQL, especially PostgreSQL", + "Experience with OO design and design patterns", + "Comfortable working in a Unix environment", + "Strong knowledge of the full software development life cycle, with experience in an agile environment", + "BS or MS in Computer Science or related engineering discipline" + ], + "Responsibilities": [ + "The work on this team involves developing software to run on several different types of user devices", + "Ability to design and develop clean and maintainable code for deployment on Windows, iOS, Android, and macOS, and ChromeOS systems", + "Quickly understand and extend engineering architectural patterns", + "Document engineering designs", + "Analyze and estimate development efforts" + ], + "Benefits": [ + "Health, Vision, Dental - open to domestic partners", + "401K with company match", + "Paid Time Off (PTO)", + "Company-paid holidays", + "Optimistic, supportive, and fun work environment", + "Fantastic quarterly company events" + ] + }, + "job_job_title": null, + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4" + }, + { + "employer_name": "WBH, Welbehealth", + "employer_logo": null, + "employer_website": null, + "employer_company_type": null, + "job_publisher": "WelbeHealth Jobs", + "job_id": "3VaNx1XL_ROHVBfIAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Lead Software Engineer", + "job_apply_link": "https://careers.welbehealth.com/us/en/job/WEHLUS6756483002EXTERNALENUS/Lead-Software-Engineer", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.9126, + "apply_options": [ + { + "publisher": "WelbeHealth Jobs", + "apply_link": "https://careers.welbehealth.com/us/en/job/WEHLUS6756483002EXTERNALENUS/Lead-Software-Engineer", + "is_direct": false + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/lead-software-engineer-at-welbehealth-3684727720", + "is_direct": false + }, + { + "publisher": "Startup Jobs", + "apply_link": "https://startup.jobs/lead-software-engineer-welbehealth-4450324", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=f32a0783679f81e4", + "is_direct": false + }, + { + "publisher": "Built In", + "apply_link": "https://builtin.com/job/engineer/lead-software-engineer/1831466", + "is_direct": false + }, + { + "publisher": "Jobgether", + "apply_link": "https://jobgether.com/offer/64c925466a3a161a6dafb11e-lead-software-engineer", + "is_direct": false + }, + { + "publisher": "Simplify", + "apply_link": "https://simplify.jobs/p/a2452803-975d-4260-bee9-dff7e9cf45fb/Lead-Software-Engineer", + "is_direct": false + }, + { + "publisher": "Alumni Ventures Job Board", + "apply_link": "https://jobs.av.vc/companies/welbehealth-2/jobs/26160866-lead-software-engineer", + "is_direct": false + } + ], + "job_description": "LEAD SOFTWARE ENGINEER\n\nAt WelbeHealth, it’s our mission to serve our communities’ most vulnerable seniors through shared intention, pioneering spirit, and courage to love. These core values and our participant focus lead the way no matter what.\n\nUnder the supervision and general direction of Technology Leadership, this role will be responsible for working with business stakeholders, solution architects, data architects, and the Information Technology and Services (IT&S) Department to identify and define business needs that require developed technology solutions to achieve business outcomes. Working within WelbeHealth architecture standards and design patterns, the Lead Software Engineer is responsible for the development, quality assurance, implementation, and maintenance of solutions components that fulfill prioritized business use cases. This role leverages the agile life cycle for solutions deployment in all projects as well as objectively assessing quality and logistics production readiness. The Lead Software Engineer regularly and directly collaborates with the solutions architecture, security service, application management, infrastructure management, and customer service teams. Collaborates effectively with colleagues and stakeholders to promote WelbeHealth values, team culture, and mission.\n\nBenefits of Working at WelbeHealth Apply your clinical expertise in new ways as we rapidly expand. You will have the opportunity to design the way we work in the context of an encouraging and loving environment where every person feels uniquely cared for.\n• BENEFITS: Health Coverage on Day 1, Paid Parental Leave, 401K Match.\n• PERKS: 17 days of paid time off in year one, 12 company holidays & 5 sick days\n• GROWTH: Career path advancement and leadership opportunities\n\nEssential Job Duties\n• Adhere to WelbeHealth Agile DevOps processes, tools, and environments for requirements capture, architecture and design, construction, quality assurance, code, and documentation version control, production deployment, troubleshooting, and change management.\n• Ensures the features provide the security and data integrity required to meet overall department goals toward PCI and HIPAA compliance.\n• Along with product owners and usability designers, participates in requirements discovery and usability sessions with end users.\n• Ensures unit testing, functional testing, and automated testing coverage of features prior to launch.\n• Performs peer coding and design reviews with peer developers.\n• Develops design patterns and standards.\n• Re-write and re-engineer custom legacy applications using latest technology stack as directed by architects and technology leaders.\n• Adept at leveraging new approaches to solutions for system design and functionality.\n• Creates documentation about both the current state of software as well as historical accounts of the process.\n• Participates in refactoring or new technology efforts including research and communication of new design patterns for adoption by the team.\n• Ongoing support, maintenance, and enhancements of solutions including monitoring, performance optimization, and troubleshooting per production DevSecOps procedures.\n• Perform independent verification and validation of solution components constructed by peers through test case development and test plan execution to ensure production readiness.\n• Perform deployment logistics and documentation per WelbeHealth DevSecOps procedures.\n• Work closely with technology and business partners throughout solution development and delivery ensuring proper marketing, testing, implementation, and documentation.\n• Implement solutions following WelbeHealth best practices such as writing clean, maintainable, and reusable code with good design patterns and good documentation.\n• Responsible for ensuring all developed solution architecture is consistent with WelbeHealth architecture and applicable regulations, rules, policies, security protocols, and procedures relevant to WelbeHealth operations as defined by the Regulatory and Compliance, Quality Improvement, and Security teams.\n• Complete all required documentation in a timely and accurate manner.\n• Protect privacy and maintain the confidentiality of all company procedures and information about team members, participants, and families.\n• Follow WelbeHealth policies and procedures and participate in any required Quality Improvement activities, staff training, and meetings.\n\nJob Requirements:\n• Minimum of 10 years of experience in object-oriented software development and maintenance using any programming language like C#, .Net Core, Razor Pages.\n• Minimum 5 years’ experience with React.js UI.\n• Minimum 5 years’ experience with structured database technologies like Azure SQL Server, etc.\n• Minimum 5 years’ experience with REST APIs.\n• Minimum 2 years’ experience with NoSQL database namely Azure Cosmos DB.\n• Minimum 2 years’ experience with Azure Cloud.\n• Minimum 2 years’ of experience in DevSecOps\n• Understanding of how to implement solutions with multiple data sources.\n• Experience with Azure API Apps, Azure Logic apps, Azure Functions, and REST services.\n• Experience writing manual/automated test cases using NUnit.\n• Understanding of Azure Data Factory is a plus.\n• Understanding of Release Management principles with experience working in a strongly structured environment of managing release levels and deployments will be highly valuable.\n• Experience in managing applications on Azure.\n• Experience in building CI/CD pipelines for large scale application on Azure\n• Good Understanding about Autoscaling on Azure\n• Good experience in CI-CD pipeline & tools like Maven, Jenkins etc.\n• Intimate knowledge of the HITRUST CSF, including experience advising and assessing against all CSF domains for HITRUST readiness and validated assessments.\n• Experience and knowledge of healthcare operations and business processes.\n• Working experience in the healthcare industry, including working with the HIPAA Security and Privacy Rules and HITRUST Common Security Framework (CSF). 20230518 Lead Software Engineer.\n\nSalary/Wage base range for this role starts at 130,000ドル.00 -150,000ドル Bonus + Equity. WelbeHealth offers competitive total rewards package that includes, 401k match, healthcare coverage and a broad range of other benefits. Actual pay will be adjusted based on experience and other qualifications.\n\nCOVID-19 Vaccination Policy\n\nAt WelbeHealth, our mission is to unlock the full potential of our vulnerable seniors. In this spirit, please note that we have a vaccination policy for all our employees and proof of vaccination, or a vaccine declination form will be required prior to employment. WelbeHealth maintains required infection control and PPE standards and has requirements relevant to all team members regarding vaccinations.\n\nOur Commitment to Diversity, Equity and Inclusion\n\nAt WelbeHealth, we embrace and cherish the diversity of our team members, and we're committed to building a culture of inclusion and belonging. We're proud to be an equal opportunity employer. People seeking employment at WelbeHealth are considered without regard to race, color, religion, sex, gender, gender identity, gender expression, sexual orientation, marital or veteran status, age, national origin, ancestry, citizenship, physical or mental disability, medical condition, genetic information or characteristics (or those of a family member), pregnancy or other status protected by applicable law.\n\nBeware of Scams\n\nPlease ensure your application is being submitted through a WelbeHealth sponsored site only. Our emails will come from @welbehealth.com email addresses. You will never be asked to purchase your own employment equipment. You can report suspected scam activity to fraud.report@welbehealth.com", + "job_is_remote": false, + "job_posted_at_timestamp": 1696455563, + "job_posted_at_datetime_utc": "2023-10-04T21:39:23.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "retirement_savings", + "health_insurance", + "paid_time_off" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=30&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=3VaNx1XL_ROHVBfIAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 120, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": [ + "razor", + "agile", + "devsecops", + "jenkins", + "production deployment", + "api", + "cosmos", + "infrastructure management", + "quality assurance", + "application management", + "apps", + "solution development", + "agile life cycle", + "c#", + "sql server", + "release management", + "azure cloud", + "performance optimization", + "ui", + "usability", + "azure api apps", + ".net core", + "rest services", + "coding", + "solution architecture", + "azure data factory", + "refactoring", + "change management", + "system design", + "solutions architecture", + "Lead Software Engineer", + "Senior Lead Software Engineer", + "Senior Software Engineer", + "Team Lead & Software Engineer", + "Senior Software Developer", + "Principal Lead Software Engineer", + "Senior Software Engineer & UI Developer", + "Senior Software Designer", + "Lead Software Developer", + "Senior Software Engineer & Java Developer" + ], + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Minimum of 10 years of experience in object-oriented software development and maintenance using any programming language like C#, .Net Core, Razor Pages", + "Minimum 5 years’ experience with React.js UI", + "Minimum 5 years’ experience with structured database technologies like Azure SQL Server, etc", + "Minimum 5 years’ experience with REST APIs", + "Minimum 2 years’ experience with NoSQL database namely Azure Cosmos DB", + "Understanding of how to implement solutions with multiple data sources", + "Experience with Azure API Apps, Azure Logic apps, Azure Functions, and REST services", + "Experience writing manual/automated test cases using NUnit", + "Understanding of Release Management principles with experience working in a strongly structured environment of managing release levels and deployments will be highly valuable", + "Experience in managing applications on Azure", + "Experience in building CI/CD pipelines for large scale application on Azure", + "Good Understanding about Autoscaling on Azure", + "Good experience in CI-CD pipeline & tools like Maven, Jenkins etc", + "Intimate knowledge of the HITRUST CSF, including experience advising and assessing against all CSF domains for HITRUST readiness and validated assessments", + "Experience and knowledge of healthcare operations and business processes", + "Working experience in the healthcare industry, including working with the HIPAA Security and Privacy Rules and HITRUST Common Security Framework (CSF)" + ], + "Responsibilities": [ + "Under the supervision and general direction of Technology Leadership, this role will be responsible for working with business stakeholders, solution architects, data architects, and the Information Technology and Services (IT&S) Department to identify and define business needs that require developed technology solutions to achieve business outcomes", + "Working within WelbeHealth architecture standards and design patterns, the Lead Software Engineer is responsible for the development, quality assurance, implementation, and maintenance of solutions components that fulfill prioritized business use cases", + "This role leverages the agile life cycle for solutions deployment in all projects as well as objectively assessing quality and logistics production readiness", + "The Lead Software Engineer regularly and directly collaborates with the solutions architecture, security service, application management, infrastructure management, and customer service teams", + "Collaborates effectively with colleagues and stakeholders to promote WelbeHealth values, team culture, and mission", + "Adhere to WelbeHealth Agile DevOps processes, tools, and environments for requirements capture, architecture and design, construction, quality assurance, code, and documentation version control, production deployment, troubleshooting, and change management", + "Ensures the features provide the security and data integrity required to meet overall department goals toward PCI and HIPAA compliance", + "Along with product owners and usability designers, participates in requirements discovery and usability sessions with end users", + "Ensures unit testing, functional testing, and automated testing coverage of features prior to launch", + "Performs peer coding and design reviews with peer developers", + "Re-write and re-engineer custom legacy applications using latest technology stack as directed by architects and technology leaders", + "Adept at leveraging new approaches to solutions for system design and functionality", + "Creates documentation about both the current state of software as well as historical accounts of the process", + "Participates in refactoring or new technology efforts including research and communication of new design patterns for adoption by the team", + "Ongoing support, maintenance, and enhancements of solutions including monitoring, performance optimization, and troubleshooting per production DevSecOps procedures", + "Perform independent verification and validation of solution components constructed by peers through test case development and test plan execution to ensure production readiness", + "Perform deployment logistics and documentation per WelbeHealth DevSecOps procedures", + "Work closely with technology and business partners throughout solution development and delivery ensuring proper marketing, testing, implementation, and documentation", + "Implement solutions following WelbeHealth best practices such as writing clean, maintainable, and reusable code with good design patterns and good documentation", + "Responsible for ensuring all developed solution architecture is consistent with WelbeHealth architecture and applicable regulations, rules, policies, security protocols, and procedures relevant to WelbeHealth operations as defined by the Regulatory and Compliance, Quality Improvement, and Security teams", + "Complete all required documentation in a timely and accurate manner", + "Protect privacy and maintain the confidentiality of all company procedures and information about team members, participants, and families", + "Follow WelbeHealth policies and procedures and participate in any required Quality Improvement activities, staff training, and meetings" + ], + "Benefits": [ + "BENEFITS: Health Coverage on Day 1, Paid Parental Leave, 401K Match", + "PERKS: 17 days of paid time off in year one, 12 company holidays & 5 sick days", + "GROWTH: Career path advancement and leadership opportunities", + "Salary/Wage base range for this role starts at 130,000ドル.00 -150,000ドル Bonus + Equity", + "WelbeHealth offers competitive total rewards package that includes, 401k match, healthcare coverage and a broad range of other benefits", + "Actual pay will be adjusted based on experience and other qualifications" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_occupational_categories": ["Corporate"] + }, + { + "employer_name": "InComm Payments", + "employer_logo": null, + "employer_website": "http://www.incomm.com", + "employer_company_type": null, + "job_publisher": "InComm Payments Careers", + "job_id": "OJ4UsdKw8UK7VuSAAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer I", + "job_apply_link": "https://jobs.incommpayments.com/jobs/15143?lang=en-us", + "job_apply_is_direct": true, + "job_apply_quality_score": 0.7966, + "apply_options": [ + { + "publisher": "InComm Payments Careers", + "apply_link": "https://jobs.incommpayments.com/jobs/15143?lang=en-us", + "is_direct": true + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=fb21dad534d213ef", + "is_direct": false + }, + { + "publisher": "Glassdoor", + "apply_link": "https://www.glassdoor.com/job-listing/software-engineer-i-incomm-payments-JV_KO0,19_KE20,35.htm?jl=1008903577481", + "is_direct": false + } + ], + "job_description": "Overview\n\nWhen you think of InComm Payments, think of Innovative Payments Technology. We were founded over 30 years ago and continue to be a pioneer in the payment (FinTech) industry. Since our inception, we have grown to be a team of over 3,000 employees in 34+ countries around the world. We own over 400 global technical patents and a network that includes over 525,000 points of retail distribution that points to our industry expertise.\n\nInComm Payments works with the most recognized and valued brands in the world, and we are partnered with most of the world’s leading merchants. InComm Payments is highly focused on our people and their growth, and we work hard to make a career at InComm Payments meaningful and rewarding. We value innovation, quality, passion, integrity, and responsibility in all that we do, and we are looking for great people to join our team as we move forward towards a very bright future.\n\nYou can learn more about careers at InComm Payments here: www.incomm.com or connect with us on Twitter, Facebook, LinkedIn, or Our Blog.\n\nAbout This Opportunity\n\nInComm is looking for a Software Engineer to join the team! You will be responsible for supporting development, testing and production support for a platform that hosts transit accounts. This platform generates cards, provides tools to sell cards at retail locations, hosts applications, and tools to support reloads and redemptions. This is a great opportunity for you if you are looking to kickstart or progress in your software engineering career. Good English communication and writing skills are required.\n\nResponsibilities\n• Good understanding of Object-Oriented Programming and Design principles including abstraction, inheritance, polymorphism and encapsulation\n• Develop software solutions by writing Java code and ensuring test coverage for the code\n• Writing test cases for the code and functional testing of the code\n• Experience with the full lifecycle of software development including use of version control tools, build management, testing, issue tracking software (e.g. SVN, Git, Maven, bamboo, Jenkins, Sonar, JIRA)\n• Excellent organizational skills, self-administration, attention to detail, multi-tasking, and effective prioritization\n• Taking ownership of technical issues and troubleshooting the production issues\n• Provides 24/7 support when on call rotation for Java/Oracle-based applications.\n• Ability to troubleshoot production issues and drive the issue to resolution with short-term and long-term solutions.\n• Strong analytical skills with the ability to assess complex situations and understand key issues quickly.\n• Support new and continued development of the existing system. Develop, build, deploy and configure applications.\n• Ensure appropriate monitoring and alerting are in place prior to production deployments.\n\nQualifications\n• 1+ Years of Java/J2EE development experience\n• 1+ years of Oracle stored procedures / SQL/ PL/SQL\n• 1+ Years of automation/manual testing\n• 1+ years of CI/CD tools\n• 1+ years of Oracle DB\n• 1+ years of Test-driven development\n• Strong analytical skills with the ability to assess complex systems and situations and troubleshoot issues\n• Problem-solvingng skills, critical thinking, and strong decision-making skills\n• Excellent verbal and written communication, and interpersonal interactions (ability to foster a cooperative work environment)\n• Spring/Spring-MVC/Spring Batch/Spring Boot\n• JAVA, XML\n• Selenium, TestNG or other automation frameworks\n• Tomcat, JBoss\n• Spring (data, boot, security, batch)\n• Hibernate, Hibernate/JPA\n• REST Services, SOAP Services\n• API Management frameworks\n• General SQL/Database experience Oracle/SQL-Server\n• Jenkins, Sonar\n• JIRA & Confluence\n• Must have good English communication and writing skills\n\nAwareness of the following technologies is a plus:\n• HTML5/CSS\n• JavaScript\n• JSP\n• Bootstrap\n• Angular 2+, Angular Material, AngularCLI\n• NodeJS\n\nInComm provides equal employment opportunities (EEO) to all employees and applicants for employment without regard to race, color, religion, sex, sexual orientation, gender identity or national origin, citizenship, veteran’s status, age, disability status, genetics or any other category protected by federal, state, or local law.\n• This position is eligible for the Employee Referral Bonus Program", + "job_is_remote": false, + "job_posted_at_timestamp": 1696255500, + "job_posted_at_datetime_utc": "2023-10-02T14:05:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=30&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=OJ4UsdKw8UK7VuSAAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": "2024-10-02T14:06:07.000Z", + "job_offer_expiration_timestamp": 1727877967, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 12, + "experience_mentioned": true, + "experience_preferred": true + }, + "job_required_skills": ["UNAVAILABLE"], + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "1+ Years of Java/J2EE development experience", + "1+ years of Oracle stored procedures / SQL/ PL/SQL", + "1+ Years of automation/manual testing", + "1+ years of CI/CD tools", + "1+ years of Oracle DB", + "1+ years of Test-driven development", + "Strong analytical skills with the ability to assess complex systems and situations and troubleshoot issues", + "Problem-solvingng skills, critical thinking, and strong decision-making skills", + "Excellent verbal and written communication, and interpersonal interactions (ability to foster a cooperative work environment)", + "Spring/Spring-MVC/Spring Batch/Spring Boot", + "JAVA, XML", + "Selenium, TestNG or other automation frameworks", + "Tomcat, JBoss", + "Spring (data, boot, security, batch)", + "Hibernate, Hibernate/JPA", + "REST Services, SOAP Services", + "API Management frameworks", + "General SQL/Database experience Oracle/SQL-Server", + "Jenkins, Sonar", + "JIRA & Confluence", + "Must have good English communication and writing skills", + "JavaScript", + "Angular 2+, Angular Material, AngularCLI", + "NodeJS" + ], + "Responsibilities": [ + "You will be responsible for supporting development, testing and production support for a platform that hosts transit accounts", + "This platform generates cards, provides tools to sell cards at retail locations, hosts applications, and tools to support reloads and redemptions", + "Good understanding of Object-Oriented Programming and Design principles including abstraction, inheritance, polymorphism and encapsulation", + "Develop software solutions by writing Java code and ensuring test coverage for the code", + "Writing test cases for the code and functional testing of the code", + "Experience with the full lifecycle of software development including use of version control tools, build management, testing, issue tracking software (e.g. SVN, Git, Maven, bamboo, Jenkins, Sonar, JIRA)", + "Excellent organizational skills, self-administration, attention to detail, multi-tasking, and effective prioritization", + "Taking ownership of technical issues and troubleshooting the production issues", + "Provides 24/7 support when on call rotation for Java/Oracle-based applications", + "Ability to troubleshoot production issues and drive the issue to resolution with short-term and long-term solutions", + "Strong analytical skills with the ability to assess complex situations and understand key issues quickly", + "Support new and continued development of the existing system", + "Develop, build, deploy and configure applications", + "Ensure appropriate monitoring and alerting are in place prior to production deployments" + ], + "Benefits": [ + "This position is eligible for the Employee Referral Bonus Program" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4" + }, + { + "employer_name": "Dave Inc.", + "employer_logo": "https://images.crunchbase.com/image/upload/c_lpad,h_256,w_256,f_auto,q_auto:eco,dpr_1/xlonz65kzelxydesn38x", + "employer_website": "http://dave.com", + "employer_company_type": null, + "job_publisher": "Lever", + "job_id": "AMJ6pXtVFBk2gCCEAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Senior Software Engineer, Full Stack", + "job_apply_link": "https://jobs.lever.co/dave/885bd189-eed6-4793-85b2-37f4eaf01902", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.8415, + "apply_options": [ + { + "publisher": "Lever", + "apply_link": "https://jobs.lever.co/dave/885bd189-eed6-4793-85b2-37f4eaf01902", + "is_direct": false + }, + { + "publisher": "Salary.com", + "apply_link": "https://www.salary.com/job/dave-inc/senior-software-engineer-full-stack/j202309270336081588248", + "is_direct": false + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/senior-software-engineer-full-stack-at-dave-3743193191", + "is_direct": false + }, + { + "publisher": "Startup Jobs", + "apply_link": "https://startup.jobs/senior-software-engineer-full-stack-davesavesyou-4748274", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=5905d5365fd63d9e", + "is_direct": false + }, + { + "publisher": "Built In", + "apply_link": "https://builtin.com/job/engineer/senior-software-engineer-full-stack/2051190", + "is_direct": false + }, + { + "publisher": "Wellfound", + "apply_link": "https://wellfound.com/jobs/2807081-senior-software-engineer-full-stack", + "is_direct": true + }, + { + "publisher": "Glassdoor", + "apply_link": "https://www.glassdoor.com/job-listing/senior-software-engineer-full-stack-dave-inc-JV_KO0,35_KE36,44.htm?jl=1008890081420", + "is_direct": false + } + ], + "job_description": "Dave is one of the leading US neobanks and a pioneer in financial services, using disruptive technology to provide best in class banking services to millions of members at a fraction of the cost compared to incumbents. The anchor of our banking value proposition, ExtraCash, provides up to 500ドル of short term, interest free advances to members within minutes of joining. The speed to value, access and pricing of ExtraCash compared to traditional overdraft sets us apart from incumbents and is a key to our strategy to efficiently acquire transacting Dave debit card members.\n\nAs the Senior Full Stack Software Engineer on the FUND team, you will drive the engineering roadmap and technical landscape for the systems driving Bank of Dave. You will spend the vast majority of your time delivering technical solutions, coaching and empowering engineers, and collaborating with design and product managers to deliver an exceptional banking experience to our users.\n\nThe FUND team is responsible for building banking related solutions for our customers, providing functionality that supports Bank of Dave customers. We have more than 10 million users on our mobile app in Apple and Google stores.\n\nWe’re looking for someone who thrives on solving hard problems, is passionate about finding innovative solutions, delights customers, and inspires colleagues. This role reports to the Manager of Software Engineering.\n\nWhat you'll do:\n• Design, build, and maintain the backend code to support features used by our 10 million users\n• Backend development in Typescript\n• Regularly participate in code reviews and other team functions\n• Provide technical leadership and assist guiding the team's overall technical direction\n• Offer mentorship and pair with other engineers regularly\n• Work closely with our PM and design teams to define feature specifications and build products leveraging frameworks such as React.js & React Native\n\nWhat you'll need:\n• Bachelor’s degree (or above) in Computer Science or related discipline. Other majors will be considered in conjunction with appropriate related experience and/or training.\n• 4+ years of software engineering experience with building full stack applications\n• Strong CS fundamentals and problem-solving skills\n• Experience programming in one or more general-purpose programming languages, including but not limited to JavaScript, Java, Python, C/C++ or Go\n• Experience using a modern UI framework to build user-focused interfacesEffective communication skills, a positive attitude, and ability to give and receive constructive feedback.\n• Understand use of monitoring and metric tools.\n• Experience working in an Agile development environment.\n• The ability to discuss and explain system architecture and component design.\n• Proven ability to work as part of a team.\n\nNice-to-have:\n• Experience with Node.js\n• Experience building production mobile applications in React Native\n• Experience working in a start-up environment\n\n138,000ドル - 222,000ドル a year\nDave has established a nationally applicable pay program that recognizes that regardless of where Daves choose to live, their time and effort is of equal value to the company. As such we utilize base salary ranges that are intended to be competitive in all markets and do not differentiate pay based on employee work location.\n\nDon’t let imposter syndrome get in your way of an incredible opportunity. We’re looking for people who can help us achieve our mission and vision, not just check off the boxes. If you’re excited about this role, we encourage you to apply. You may just be the right candidate for this or other roles.\n\nWhy you’ll love working here:\n\nAt Dave, our people are just as important as our product. Our culture is a reflection of our values that guide who we are, how we work, and what we aspire to be. Daves are member centric, helpful, transparent, persistent, and better together. We strive to create an environment where all Daves feel valued, heard, and empowered to do their best work. As a virtual first company, team members can live and work anywhere in the United States, with the exception of Hawaii.\n\nA few of our benefits & perks:\n\n• Opportunity to tackle tough challenges, learn and grow from fellow top talent, and help millions of people reach their personal financial goals\n\n• Flexible hours and virtual first work culture with a home office stipend\n\n• Premium Medical, Dental, and Vision Insurance plans\n\n• Generous paid parental and caregiver leave\n\n• 401(k) savings plan with matching contributions\n\n• Financial advisor and financial wellness support\n\n• Flexible PTO and generous company holidays, including Juneteenth and Winter Break\n\n• All-company in-person events once or twice a year and virtual events throughout to connect with your team members and leadership team\n\nDave Operating LLC is proud to be an Equal Employment Opportunity employer and is dedicated to cultivating a diverse and inclusive workplace. We will consider for employment all qualified applicants and do not discriminate on any basis protected by federal, state, or local law, including the City of Los Angeles’ Fair Chance Initiative for Hiring Ordinance relating to an applicant's criminal history.\n\n#LI-REMOTE", + "job_is_remote": false, + "job_posted_at_timestamp": 1694995200, + "job_posted_at_datetime_utc": "2023-09-18T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "paid_time_off", + "health_insurance", + "retirement_savings", + "dental_coverage" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=30&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=AMJ6pXtVFBk2gCCEAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 48, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Bachelor’s degree (or above) in Computer Science or related discipline", + "Other majors will be considered in conjunction with appropriate related experience and/or training", + "4+ years of software engineering experience with building full stack applications", + "Strong CS fundamentals and problem-solving skills", + "Experience programming in one or more general-purpose programming languages, including but not limited to JavaScript, Java, Python, C/C++ or Go", + "Experience using a modern UI framework to build user-focused interfaces", + "Effective communication skills, a positive attitude, and ability to give and receive constructive feedback", + "Experience working in an Agile development environment", + "The ability to discuss and explain system architecture and component design", + "Proven ability to work as part of a team", + "Experience with Node.js", + "Experience building production mobile applications in React Native", + "Experience working in a start-up environment" + ], + "Responsibilities": [ + "You will spend the vast majority of your time delivering technical solutions, coaching and empowering engineers, and collaborating with design and product managers to deliver an exceptional banking experience to our users", + "This role reports to the Manager of Software Engineering", + "Design, build, and maintain the backend code to support features used by our 10 million users", + "Backend development in Typescript", + "Regularly participate in code reviews and other team functions", + "Provide technical leadership and assist guiding the team's overall technical direction", + "Offer mentorship and pair with other engineers regularly", + "Work closely with our PM and design teams to define feature specifications and build products leveraging frameworks such as React.js & React Native" + ], + "Benefits": [ + "138,000ドル - 222,000ドル a year", + "Opportunity to tackle tough challenges, learn and grow from fellow top talent, and help millions of people reach their personal financial goals", + "Flexible hours and virtual first work culture with a home office stipend", + "Premium Medical, Dental, and Vision Insurance plans", + "Generous paid parental and caregiver leave", + "401(k) savings plan with matching contributions", + "Financial advisor and financial wellness support", + "Flexible PTO and generous company holidays, including Juneteenth and Winter Break", + "All-company in-person events once or twice a year and virtual events throughout to connect with your team members and leadership team" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113300", + "job_onet_job_zone": "4" + }, + { + "employer_name": "Comcast", + "employer_logo": null, + "employer_website": "http://www.comcast.com", + "employer_company_type": "Information", + "job_publisher": "Comcast - Talentify", + "job_id": "fqfbo9k7G6sNCTWxAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Sr. Software Engineer", + "job_apply_link": "https://comcast.talentify.io/job/sr-software-engineer-virtual-pa-comcast-r375001", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.5414, + "apply_options": [ + { + "publisher": "Comcast - Talentify", + "apply_link": "https://comcast.talentify.io/job/sr-software-engineer-virtual-pa-comcast-r375001", + "is_direct": false + } + ], + "job_description": "Industry: Media and Technology Company\n\nWhy consider this job opportunity:\n- Competitive salary within the national pay range\n- Opportunity to work for a Fortune 50 leader in media and technology\n- Chance to be part of a team that drives innovation and revolutionizes industries\n- Potential for career advancement and growth\n- Access to best-in-class benefits and rewards\n\nWhat to Expect (Job Responsibilities):\n- Collaborate with project stakeholders to identify product and technical requirements\n- Analyze integration needs and conduct analysis\n- Design new software and web applications, customize current applications\n- Develop software update process for existing applications\n- Train junior Software Development Engineers on internally developed software applications\n\nWhat is Required (Qualifications):\n- Bachelor's Degree (preferred)\n- 7-10 years of relevant work experience\n- Knowledge of engineering methodologies, concepts, and skills\n- Familiarity with process design and redesign\n- Strong technical and documentation skills\n\nHow to Stand Out (Preferred Qualifications):\n- Extensive related professional experience\n- Expertise in architectural, design, and technical choices\n- Leadership experience in a complex and crucial environment\n- Ability to deliver software on time and within budget\n- Strong knowledge of industry technological developments\n\n#mediaandtechnology #softwaredevelopment #webapplications #technicalskills #careeropportunity\n\nAt Talentify, we prioritize respecting candidate privacy and championing equal-opportunity employment. Central to our mission is partnering only with companies that echo this commitment. We strive to foster a fair, transparent, and secure hiring environment for all. Should you encounter any employer not adhering to these principles, please bring it to our attention immediately.\n\nTalentify isn't the EOR for this position. Instead, our role in this specific opportunity is to link outstanding candidates with a top-tier employer.", + "job_is_remote": true, + "job_posted_at_timestamp": 1698019200, + "job_posted_at_datetime_utc": "2023-10-23T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=30&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=fqfbo9k7G6sNCTWxAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 84, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": 90653.58, + "job_max_salary": 90653.58, + "job_salary_currency": "USD", + "job_salary_period": "YEAR", + "job_highlights": { + "Qualifications": [ + "7-10 years of relevant work experience", + "Knowledge of engineering methodologies, concepts, and skills", + "Familiarity with process design and redesign", + "Strong technical and documentation skills" + ], + "Responsibilities": [ + "Collaborate with project stakeholders to identify product and technical requirements", + "Analyze integration needs and conduct analysis", + "Design new software and web applications, customize current applications", + "Develop software update process for existing applications", + "Train junior Software Development Engineers on internally developed software applications" + ], + "Benefits": [ + "Competitive salary within the national pay range", + "Opportunity to work for a Fortune 50 leader in media and technology", + "Potential for career advancement and growth", + "Access to best-in-class benefits and rewards" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_naics_code": "517110", + "job_naics_name": "Wired Telecommunications Carriers" + }, + { + "employer_name": "Dow Jones", + "employer_logo": "https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/Dow_Jones_Logo.svg/1200px-Dow_Jones_Logo.svg.png", + "employer_website": "http://www.dowjones.com", + "employer_company_type": "Information", + "job_publisher": "Dow Jones Jobs", + "job_id": "Z3V7MnnVoKklgAMhAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Senior Software Engineer", + "job_apply_link": "https://dowjones.jobs/virtual-usa/senior-software-engineer/4F835379D7AB4F5186E7E28AC71A36DB/job/", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.7749, + "apply_options": [ + { + "publisher": "Dow Jones Jobs", + "apply_link": "https://dowjones.jobs/virtual-usa/senior-software-engineer/4F835379D7AB4F5186E7E28AC71A36DB/job/", + "is_direct": false + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/senior-software-engineer-at-opis-a-dow-jones-company-3742109139", + "is_direct": false + }, + { + "publisher": "Adzuna", + "apply_link": "https://www.adzuna.com/details/4378315162", + "is_direct": false + } + ], + "job_description": "Job Description:\n\nABOUT US:\n\nOPIS, a Dow Jones company, is one of the world’s most comprehensive sources for petroleum pricing and news information. OPIS provides real-time and historical spot, wholesale/rack and retail fuel prices for the refined products, renewable fuels and natural gas and gas liquids (LPG) industries. We deliver award-winning news, market intelligence and transparency to the entire refined energy marketplace and companies looking to go carbon neutral. At its core, OPIS uses a set of complex IT systems and tools, handling huge amounts of data in a reliable way, and providing customers with business applications to use this data as efficiently as possible.\n\nAbout the Role\n\nAre you an analytical thinker and passionate about problem solving?\n\nOPIS is looking for an experienced, driven and future thinking Software Engineer. This is a unique opportunity to join a fast-growing team to become an important part of global OPIS. This team member will work with OPIS Product Development teams consisting of members based in Gaithersburg, US, Bucharest, Romania and Remote. To fit this role, we are looking for that unique mix of solid technical capabilities, blended with strong interpersonal skills. This role is proactive within our development teams, responsible for offering innovative technical input, creative ideas and strong technical coding skills.\n\nYou Will:\n• Write, build and deploy code\n• Analyze business application requirements, identify concerns and develop action plans\n• Be part of an Agile team, leading the development team, using our latest software development life-cycle, working closely with team members from Romania and US\n• Leverage our Cloud infrastructure (AWS) to design solutions that make the best of it\n• Maintains existing legacy applications\n• Track down and resolve bugs in any OPIS code base\n• Adhere to best practice development standards (such as continuous integration and deployment)\n• You will be working in our Spot division in OPIS in the United States and may interact cross-continental.\n\nYou Have:\n• Bachelor’s Degree in computer science or related technical field\n• 2+ years hands-on software development experience\n• Knowledge of OOP principles\n• Knowledge of C# and Microsoft .Net framework\n• Knowledge of HTML/CSS/JavaScript\n• Experience with a relational database engine - SQL Server (or PostgreSQL)\n• Experience with modern software development life-cycle\n• Worked with .Net Core\n• Cloud development experience (AWS, Azure)\n• Unit testing experience (NUnit, MSUnit, NSubstitute, Moq, etc.)\n\nOur Benefits\n• Comprehensive Healthcare Plans\n• Paid Time Off\n• Retirement Plans\n• Comprehensive Medical, Dental and Vision Insurance Plans\n• Education Benefits\n• Paid Maternity and Paternity Leave\n• Family Care Benefits\n• Commuter Transit Program\n• Subscription Discounts\n• Employee Referral Program\n\nLearn more about all our US benefits\n\nReasonable accommodation: Dow Jones, Making Careers Newsworthy - We are an equal opportunity employer and all qualified applicants will receive consideration for employment without regard to race, color, religion, sex, sexual orientation, gender identity or expression, pregnancy, age, national origin, disability status, genetic information, protected veteran status, or any other characteristic protected by law. EEO/AA/M/F/Disabled/Vets. Dow Jones is committed to providing reasonable accommodation for qualified individuals with disabilities, in our job application and/or interview process. If you need assistance or accommodation in completing your application, due to a disability, email us at talentresourceteam@dowjones.com. Please put \"Reasonable Accommodation\" in the subject line and provide a brief description of the type of assistance you need. This inbox will not be monitored for application status updates.\n\nBusiness Area: OPIS\n\nJob Category: Software Product Engineering\n\nUnion Status:\n\nNon-Union role\n\nSince 1882, Dow Jones has been finding new ways to bring information to the world’s top business entities. Beginning as a niche news agency in an obscure Wall Street basement, Dow Jones has grown to be a worldwide news and information powerhouse, with prestigious brands including The Wall Street Journal, Dow Jones Newswires, Factiva, Barron’s, MarketWatch and Financial News.\n\nThis longevity and success is due to a relentless pursuit of accuracy, depth and innovation, enhanced by the wisdom of past experience and a solid grasp on the future ahead. More than its individual brands, Dow Jones is a modern gateway to intelligence, with innovative technology, advanced data feeds, integrated solutions, expert research, award-winning journalism and customizable apps and delivery systems to bring the information that matters most to customers, when and where they need it, every day.\n\nIf you are a current employee at Dow Jones, do not apply here. Please go to the Career section on your Workday homepage and view \"Find Jobs - Dow Jones.\" Thank you.\n\nReq ID: 39408", + "job_is_remote": true, + "job_posted_at_timestamp": 1697589961, + "job_posted_at_datetime_utc": "2023-10-18T00:46:01.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "retirement_savings", + "paid_time_off", + "health_insurance", + "dental_coverage" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=30&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=Z3V7MnnVoKklgAMhAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 24, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "OPIS is looking for an experienced, driven and future thinking Software Engineer", + "Bachelor’s Degree in computer science or related technical field", + "2+ years hands-on software development experience", + "Knowledge of OOP principles", + "Knowledge of C# and Microsoft .Net framework", + "Knowledge of HTML/CSS/JavaScript", + "Experience with a relational database engine - SQL Server (or PostgreSQL)", + "Experience with modern software development life-cycle", + "Worked with .Net Core", + "Cloud development experience (AWS, Azure)", + "Unit testing experience (NUnit, MSUnit, NSubstitute, Moq, etc.)" + ], + "Responsibilities": [ + "Write, build and deploy code", + "Analyze business application requirements, identify concerns and develop action plans", + "Be part of an Agile team, leading the development team, using our latest software development life-cycle, working closely with team members from Romania and US", + "Leverage our Cloud infrastructure (AWS) to design solutions that make the best of it", + "Maintains existing legacy applications", + "Track down and resolve bugs in any OPIS code base", + "Adhere to best practice development standards (such as continuous integration and deployment)", + "You will be working in our Spot division in OPIS in the United States and may interact cross-continental" + ], + "Benefits": [ + "Comprehensive Healthcare Plans", + "Paid Time Off", + "Retirement Plans", + "Comprehensive Medical, Dental and Vision Insurance Plans", + "Education Benefits", + "Paid Maternity and Paternity Leave", + "Family Care Benefits", + "Commuter Transit Program", + "Subscription Discounts", + "Employee Referral Program" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_naics_code": "511110", + "job_naics_name": "Newspaper Publishers" + }, + { + "employer_name": "One Medical", + "employer_logo": null, + "employer_website": null, + "employer_company_type": null, + "job_publisher": "One Medical Careers", + "job_id": "ASrsT15mbU_97I7WAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Staff Software Engineer, Machine Learning (LLM)", + "job_apply_link": "https://careers.onemedical.com/search/jobdetails/staff-software-engineer-machine-learning-llm/f33784d1-6f92-4fcf-a58a-0a7203b8b6d7", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.905, + "apply_options": [ + { + "publisher": "One Medical Careers", + "apply_link": "https://careers.onemedical.com/search/jobdetails/staff-software-engineer-machine-learning-llm/f33784d1-6f92-4fcf-a58a-0a7203b8b6d7", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=99e9ca115a0f08e1", + "is_direct": true + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/remote-staff-software-engineer-machine-learning-llm-at-one-medical-3726117386", + "is_direct": false + }, + { + "publisher": "Jobgether", + "apply_link": "https://jobgether.com/offer/6510646e4af993378f4f566c-staff-software-engineer-machine-learning-llm", + "is_direct": false + }, + { + "publisher": "Built In", + "apply_link": "https://builtin.com/job/data/staff-software-engineer-machine-learning-llm/1955348", + "is_direct": false + }, + { + "publisher": "Glassdoor", + "apply_link": "https://www.glassdoor.com/job-listing/staff-software-engineer-machine-learning-llm-one-medical-JV_IC1147401_KO0,44_KE45,56.htm?jl=1008796202559", + "is_direct": true + }, + { + "publisher": "BeBee", + "apply_link": "https://us.bebee.com/job/20231017-cfadd57b9cb72ed860524da302cd0037", + "is_direct": false + }, + { + "publisher": "Jobs - F-Prime Capital", + "apply_link": "https://jobs.fprimecapital.com/companies/iora-health/jobs/28444786-staff-software-engineer-machine-learning-llm", + "is_direct": false + } + ], + "job_description": "About Us\n\nOne Medical is a primary care solution challenging the industry status quo by making quality care more affordable, accessible and enjoyable. But this isn't your average doctor's office. We're on a mission to transform healthcare, which means improving the experience for everyone involved - from patients and providers to employers and health networks. Our seamless in-office and 24/7 virtual care services, on-site labs, and programs for preventive care, chronic care management, common illnesses and mental health concerns have been delighting people for the past fifteen years.\n\nIn February 2023 we marked a milestone when One Medical joined Amazon. Together, we look to deliver exceptional health care to more consumers, employers, care team members, and health networks to achieve better health outcomes. As we continue to grow and seek to impact more lives, we're building a diverse, driven and empathetic team, while working hard to cultivate an environment where everyone can thrive.\n\nThe Opportunity\n\nAt One Medical we build software to improve the healthcare experience for not just our members, but for our providers as well. This enables us to build amazing end-to-end solutions to connect patients and our care team in new and innovative ways.\n\nAs a Staff Software Engineer (Machine Learning), not only will you be partnering with designers and product managers, you'll also be working with clinicians and staff who deliver care daily to One Medical patients. You'll work across the healthcare lifecycle to build features that deliver higher quality care more efficiently and compassionately.\n\nThis role is particularly well-suited for someone who values having significant ownership of their work, helping to lead the direction of the team and/or partnering and mentoring other engineers. We tend to partner with other product teams to build solutions in their domains.\n\nWe are a collaborative and intellectually curious group. We have strong opinions yet keep them loosely held--it's important to us we create an environment where everyone feels safe and supported to voice their thoughts and ideas. If you buy into these ideologies, we'd love to find a time to connect.\n\nWhat you'll work on:\n• Augmenting the patient experience: When members ask questions or book appointments, we want to deliver exceptional patient experiences by providing timely support and assistance. You will utilize novel techniques such as deep learning to understand, support and enhance user interactions, and to create a seamless and accessible patient journey.\n• Enhancing clinical workflows: Our goal is to help our providers focus on doing what they do best: providing best-in-class patient care. We build tools that streamline encounters using predictive autocomplete, summarize and categorize documents, highlight patient risk areas, and provide clinical decision support.\n• Enabling population health management: Even when the patient is not in the clinician's office, we can analyze the health data of the population overall. We build tools to identify at-risk patients who can benefit from various screenings and preemptive interventions to keep members healthy.\n\nYou'll be set up for success if you have:\n• Proven experience and high-level of proficiency in Python and related packages.\n• Deep understanding of machine learning with 7+ years of experience\n• Deep understanding of LLM's. We focus on a wide variety of NLP use cases including writing assistance, summarization, and concept extraction.\n• Understanding of different metrics used in NLP\n• Familiarity with Amazon Web Services (AWS) or other cloud services\n• Track record of deploying machine learning services to production\n• A passion for learning, experimenting with, and applying cutting edge machine learning technologies\n\nNot required, but it would be great if you also had:\n• Knowledge of security best practices\n• Excellent communication skills to translate technical and business strategy in collaboration with partners (business leaders, product managers, clinical/operations staff) across the organization\n• Familiarity with Amazon Web Services (AWS) or other cloud services\n• Understanding of relational databases such as MySQL or Postgres, as well as NoSQL databases such as DynamoDB\n\nTaking care of you today:\n• Paid sabbatical after 5 and 10 years\n• Employee Assistance Program - Free, confidential advice for team members who need help with stress, anxiety, financial planning, and legal issues\n• Competitive Medical, Dental, and Vision plans\n• Free One Medical memberships for yourself, your friends, and your family\n• Pre-Tax commuter benefits\n• PTO cash outs - Option to cash out up to 40 accrued hours per year\n\nProtecting your future for you and your family:\n• 401k match\n• Opportunity to participate in company equity programs\n• Credit towards emergency childcare\n• Company-paid maternity and paternity leave\n• Paid Life Insurance - One Medical pays 100% of the cost of Basic Life Insurance\n• Disability Insurance - One Medical pays 100% of the cost of Short Term and Long Term Disability Insurance\n\nThis is a full-time remote role based in the United States. One Medical is committed to fair and equitable compensation practices. The base salary range for this role is 152,000ドル to 260,000ドル per year. Actual compensation packages are based on several factors that are unique to each candidate, including but not limited to skill set, depth of experience, certifications, and specific work location. The total compensation package for this position may also include annual performance bonus, RSUs, benefits and/or other applicable incentive compensation plans. For more information, visit https://www.onemedical.com/careers/\n\n#LI-Remote\n\n#LI-CR1\n\nOne Medical is an equal opportunity employer, and we encourage qualified applicants of every background, ability, and life experience to contact us about appropriate employment opportunities.\n\nOne Medical participates in E-Verify and will provide the federal government with your Form I-9 information to confirm that you are authorized to work in the U.S. Please refer to the E-Verification Poster (English/Spanish) and Right to Work Poster (English/Spanish) for additional information.", + "job_is_remote": false, + "job_posted_at_timestamp": 1698019200, + "job_posted_at_datetime_utc": "2023-10-23T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "health_insurance", + "retirement_savings", + "dental_coverage", + "paid_time_off" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=30&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=ASrsT15mbU_97I7WAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 84, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": true + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Proven experience and high-level of proficiency in Python and related packages", + "Deep understanding of machine learning with 7+ years of experience", + "Deep understanding of LLM's", + "We focus on a wide variety of NLP use cases including writing assistance, summarization, and concept extraction", + "Familiarity with Amazon Web Services (AWS) or other cloud services", + "Track record of deploying machine learning services to production", + "A passion for learning, experimenting with, and applying cutting edge machine learning technologies", + "Knowledge of security best practices", + "Excellent communication skills to translate technical and business strategy in collaboration with partners (business leaders, product managers, clinical/operations staff) across the organization", + "Understanding of relational databases such as MySQL or Postgres, as well as NoSQL databases such as DynamoDB" + ], + "Responsibilities": [ + "As a Staff Software Engineer (Machine Learning), not only will you be partnering with designers and product managers, you'll also be working with clinicians and staff who deliver care daily to One Medical patients", + "You'll work across the healthcare lifecycle to build features that deliver higher quality care more efficiently and compassionately", + "This role is particularly well-suited for someone who values having significant ownership of their work, helping to lead the direction of the team and/or partnering and mentoring other engineers", + "Augmenting the patient experience: When members ask questions or book appointments, we want to deliver exceptional patient experiences by providing timely support and assistance", + "You will utilize novel techniques such as deep learning to understand, support and enhance user interactions, and to create a seamless and accessible patient journey", + "Enhancing clinical workflows: Our goal is to help our providers focus on doing what they do best: providing best-in-class patient care", + "We build tools that streamline encounters using predictive autocomplete, summarize and categorize documents, highlight patient risk areas, and provide clinical decision support", + "Enabling population health management: Even when the patient is not in the clinician's office, we can analyze the health data of the population overall", + "We build tools to identify at-risk patients who can benefit from various screenings and preemptive interventions to keep members healthy" + ], + "Benefits": [ + "Paid sabbatical after 5 and 10 years", + "Employee Assistance Program - Free, confidential advice for team members who need help with stress, anxiety, financial planning, and legal issues", + "Competitive Medical, Dental, and Vision plans", + "Free One Medical memberships for yourself, your friends, and your family", + "Pre-Tax commuter benefits", + "PTO cash outs - Option to cash out up to 40 accrued hours per year", + "Protecting your future for you and your family:", + "401k match", + "Opportunity to participate in company equity programs", + "Credit towards emergency childcare", + "Company-paid maternity and paternity leave", + "Paid Life Insurance - One Medical pays 100% of the cost of Basic Life Insurance", + "Disability Insurance - One Medical pays 100% of the cost of Short Term and Long Term Disability Insurance", + "The base salary range for this role is 152,000ドル to 260,000ドル per year", + "Actual compensation packages are based on several factors that are unique to each candidate, including but not limited to skill set, depth of experience, certifications, and specific work location", + "The total compensation package for this position may also include annual performance bonus, RSUs, benefits and/or other applicable incentive compensation plans" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15111100", + "job_onet_job_zone": "5" + }, + { + "employer_name": "Pear VC", + "employer_logo": "https://upload.wikimedia.org/wikipedia/en/thumb/6/63/Pear_VC_logo.svg/800px-Pear_VC_logo.svg.png", + "employer_website": "http://www.pear.vc", + "employer_company_type": null, + "job_publisher": "Jobs", + "job_id": "QyMpvq8vCEnwqRWMAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer", + "job_apply_link": "https://jobs.ashbyhq.com/pear/9afa4f39-fa69-4a24-8b76-fbc48a6b61f0", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.7159, + "apply_options": [ + { + "publisher": "Jobs", + "apply_link": "https://jobs.ashbyhq.com/pear/9afa4f39-fa69-4a24-8b76-fbc48a6b61f0", + "is_direct": false + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/software-engineer-infrastructure-at-column-3696158578", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=0a3a1511e2bf4518", + "is_direct": true + }, + { + "publisher": "Levels.fyi", + "apply_link": "https://www.levels.fyi/jobs?jobId=134783427367838406", + "is_direct": false + } + ], + "job_description": "About Nomos\n\nGenerative AI is quickly changing how humans and computers interact and will have a drastic and lasting impact on the productivity of humankind. For companies building technology using generative AI, the biggest bottleneck to their growth is often a lack of strategy and infrastructure for developing, iterating, and scaling their product; adopting new, unfamiliar computing platforms is incredibly challenging.\n\nWe have spent our careers building and scaling companies like Neeva, Robinhood, Plaid, Meta, Phantom, and Google, and we have seen this problem firsthand — builders and developers struggle to wrangle and work with stochastic AI systems in their products. This results in complex (often expensive) coordination between stakeholders and convoluted AI tooling, taking away valuable time and focus from their customers.\n\nAt Nomos, we set out to simplify and fix this. We're dedicated to empowering this transformation by building the tools and experiences to enable the new era of generative AI applications and their developers. We are a developer platform built from the ground up, offering builders and developers a generative AI first-principles solution that cuts the time to launch, reduces undesirable AI results, and ensures your generative AI application is best-in-class.\n\nCome build with us, and let's usher in the age of generative AI together!\n\nThe Opportunity\n\nWe're a lean, experienced team looking to bring on another excellent software engineer. Most of our stack is written in TypeScript, and we generally prefer candidates with at least five years of production coding experience on high-caliber and high-velocity teams. You will partner with leadership to ensure that our development platform is truly best-in-class by driving features through inception, design, and execution and ultimately implementing the most critical projects that empower our customers to build the best generative AI products.\n\nWhat Excites You\n• A highly collaborative environment with a tight feedback loop between your work and its impact on our customers.\n• You have a passion for helping engineers grow and learn and are excited to improve engineering velocity for the team.\n• You have a vision for the systems you work on, but you know how to build incremental milestones and when to make trade-offs between completeness and utility to get to value fast.\n• You’re incredibly proud of the code you write and review and like staying close to the systems you own, and you advocate for high standards in code quality and code review processes.\n• You have a deep commitment to craft & product excellence, incredible design intuition, and an obsession with the customer and their experience.\n\nThe target base salary for this role is between 120,000ドル and 200,000ドル per year. The anticipated base salary range excludes full benefits, including equity, health care insurance, time off, etc. This base salary is accurate based on information at the time of posting. Actual compensation for hired candidates will be determined using several factors, including experience, skills, and qualifications.\n\nNomos is committed to working with the best and brightest people from the broadest talent pool possible. We value bringing together a team with different perspectives, educational backgrounds, and life experiences, and a diversity of ideas allows us to develop the best solutions. All qualified individuals are encouraged to apply.\n\nIf you need assistance or reasonable accommodation during the application and recruiting process, don't hesitate to contact accommodations@getnomos.com.", + "job_is_remote": true, + "job_posted_at_timestamp": 1697414400, + "job_posted_at_datetime_utc": "2023-10-16T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": ["dental_coverage", "health_insurance", "paid_time_off"], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=30&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=QyMpvq8vCEnwqRWMAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 60, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Most of our stack is written in TypeScript, and we generally prefer candidates with at least five years of production coding experience on high-caliber and high-velocity teams", + "You have a passion for helping engineers grow and learn and are excited to improve engineering velocity for the team", + "You have a vision for the systems you work on, but you know how to build incremental milestones and when to make trade-offs between completeness and utility to get to value fast", + "You’re incredibly proud of the code you write and review and like staying close to the systems you own, and you advocate for high standards in code quality and code review processes", + "You have a deep commitment to craft & product excellence, incredible design intuition, and an obsession with the customer and their experience" + ], + "Benefits": [ + "A highly collaborative environment with a tight feedback loop between your work and its impact on our customers", + "The target base salary for this role is between 120,000ドル and 200,000ドル per year", + "The anticipated base salary range excludes full benefits, including equity, health care insurance, time off, etc", + "This base salary is accurate based on information at the time of posting" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4" + }, + { + "employer_name": "Payzer", + "employer_logo": null, + "employer_website": "http://payzerware.com", + "employer_company_type": null, + "job_publisher": "Jobs By Workable", + "job_id": "A0trpNNpe7hv1KR3AAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Senior Java Software Engineer", + "job_apply_link": "https://apply.workable.com/payzer/j/E4170A1DC9", + "job_apply_is_direct": true, + "job_apply_quality_score": 0.7412, + "apply_options": [ + { + "publisher": "Jobs By Workable", + "apply_link": "https://apply.workable.com/payzer/j/E4170A1DC9", + "is_direct": true + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/senior-java-software-engineer-at-payzer-3719412276", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=c145a359cbd1403a", + "is_direct": true + }, + { + "publisher": "Jobgether", + "apply_link": "https://jobgether.com/offer/6465720d52a9a28fbcb5ea5c-senior-java-software-engineer", + "is_direct": false + }, + { + "publisher": "Glassdoor", + "apply_link": "https://www.glassdoor.com/job-listing/senior-java-software-engineer-payzer-JV_KO0,29_KE30,36.htm?jl=1008649402540", + "is_direct": true + }, + { + "publisher": "Pangian", + "apply_link": "https://pangian.com/job/senior-java-software-engineer-remote-261/", + "is_direct": false + } + ], + "job_description": "Payzerware is the all-in-one tool that helps contractors manage their business.\n\nWe help our customers by providing:\n\nくろまる Dispatching & Scheduling software\n\nくろまる Proposal and Invoicing tools to help present sales opportunities and close deals\n\nくろまる CRM tools to help contractors manage customer communication and historical data\n\nくろまる Easy to use online and mobile payment solutions, including instant loan decisions that help grow average order size\n\nくろまる Simple electronic cash management\n\nくろまる Rich financial and customer level reporting\n\nThe Position\n\nOur Software Engineers play an extremely critical role in the company by creating and maintaining web applications whose features and usability are "positively disruptive" for our customers. If you like to create systems that people will use (and love because their jobs become much easier), then please keep reading!\n\nAs a Software Engineer, you will be responsible for designing, coding, testing, and perfecting a variety of web applications that serve our customers. Our technical stack is traditionally LAMP, but we are moving toward a Java based microservices architecture that allows a mix of "best tool for the job" technologies. As a growing company, we have many opportunities to create/enhance our product offerings, and as such you will have the chance to work both individually as well as with teammates to utilize your technical talents. Our Software Engineers also assist with production support needs, although only as a third tier. You will be asked to help solve production problems, but it will not be an overwhelming task time-wise.\n\nWe’re looking for people who are\n\nくろまる Good humans with a positive attitude\n\nくろまる Bright, inquisitive and good at getting things done\n\nくろまる Good problem solvers with lots of intellectual curiosity\n\nくろまる Great at listening to other people\n\nくろまる Able to communicate clearly both orally and in writing\n\nくろまる Ready to work hard, learn and grow in a fast-paced environment\n\nくろまる Eager to be part of a great team on an exciting ride in the heart of South Charlotte\n\nくろまる Honest, fun to be around and cool to work with while getting the job done\n\nQualifications\n\nくろまる 8+ years of SaaS Application Development experience (required)\n\nくろまる Modern Java (Java 11/17 up) (required)\n\nくろまる Modern Spring (6 and up) and SpringBoot (2.6 up) (required)\n\nくろまる Unit & Integration Testing (ex. JUnit+Mockito)\n\nくろまる Security Frameworks/Components (example: Spring Security)\n\nくろまる ORM Frameworks/Components (example: Spring Data, Hibernate/JPA)\n\nくろまる REST API Framework/Components\n\nくろまる Reactive Framework/Components (example: Spring Webflux)\n\nくろまる Maven and/or Gradle build tools.\n\nくろまる Containers (Docker)\n\nくろまる JVM tuning and profiling\n\nくろまる Multi threaded systems\n\nくろまる Micro Services architecture\n\nくろまる Distributed Systems\n\nくろまる MQ Systems\n\nくろまる Git and git workflow\n\nくろまる CI/CD experience\n\nくろまる Deploying libraries to an artifact repository\n\nくろまる Experience developing 12 factor app methodology: https://12factor.net/\n\nくろまる Core understanding on the SOLID Principles\n\nくろまる We prefer it if you went to college but even if you didn’t, we’re open to getting together to talk.\n\nWhat we offer\n\nくろまる The chance to be early at a fast growing, fully funded venture backed startup. You won’t be just another drone at Payzer.\n\nくろまる A professional work environment that’s non-corporate.\n\nくろまる Medical insurance: Choice of plans including 100% employer-paid options\n\nくろまる Dental, vision, short and long-term disability, and life insurance|\n\nくろまる Company-sponsored 401(k) plan\n\nくろまる FSA and HSA Accounts\n\nくろまる Paid time off", + "job_is_remote": false, + "job_posted_at_timestamp": 1684108800, + "job_posted_at_datetime_utc": "2023-05-15T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "health_insurance", + "dental_coverage", + "retirement_savings", + "paid_time_off" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=40&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=A0trpNNpe7hv1KR3AAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 96, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Good humans with a positive attitude", + "Bright, inquisitive and good at getting things done", + "Good problem solvers with lots of intellectual curiosity", + "Great at listening to other people", + "Able to communicate clearly both orally and in writing", + "Ready to work hard, learn and grow in a fast-paced environment", + "Eager to be part of a great team on an exciting ride in the heart of South Charlotte", + "Honest, fun to be around and cool to work with while getting the job done", + "8+ years of SaaS Application Development experience (required)", + "Modern Java (Java 11/17 up) (required)", + "Modern Spring (6 and up) and SpringBoot (2.6 up) (required)", + "Unit & Integration Testing (ex", + "ORM Frameworks/Components (example: Spring Data, Hibernate/JPA)", + "Reactive Framework/Components (example: Spring Webflux)", + "Maven and/or Gradle build tools", + "Git and git workflow", + "Experience developing 12 factor app methodology: https://12factor.net/", + "We prefer it if you went to college but even if you didn’t, we’re open to getting together to talk" + ], + "Responsibilities": [ + "Dispatching & Scheduling software", + "Proposal and Invoicing tools to help present sales opportunities and close deals", + "CRM tools to help contractors manage customer communication and historical data", + "As a Software Engineer, you will be responsible for designing, coding, testing, and perfecting a variety of web applications that serve our customers", + "You will be asked to help solve production problems, but it will not be an overwhelming task time-wise" + ], + "Benefits": [ + "The chance to be early at a fast growing, fully funded venture backed startup", + "Dental, vision, short and long-term disability, and life insurance|", + "Company-sponsored 401(k) plan", + "FSA and HSA Accounts", + "Paid time off" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4" + }, + { + "employer_name": "Close", + "employer_logo": null, + "employer_website": null, + "employer_company_type": null, + "job_publisher": "We Work Remotely", + "job_id": "g1nSh3K27BIEABIaAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Senior/Staff Software Engineer - Backend/Python - USA (100% Remote)", + "job_apply_link": "https://weworkremotely.com/remote-jobs/close-senior-staff-software-engineer-backend-python-usa-100-remote", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.6614, + "apply_options": [ + { + "publisher": "We Work Remotely", + "apply_link": "https://weworkremotely.com/remote-jobs/close-senior-staff-software-engineer-backend-python-usa-100-remote", + "is_direct": false + }, + { + "publisher": "Jooble", + "apply_link": "https://jooble.org/jdp/-5896928408758155666/Senior%2FStaff-Software-Engineer-+-Backend%2FPython-+-USA-(100%25-Remote)-Remote", + "is_direct": false + }, + { + "publisher": "OkJob", + "apply_link": "https://okjob.io/job/1759-close-senior-or-staff-software-engineer-backend-python-usa-100-remote/", + "is_direct": false + }, + { + "publisher": "EffizoJobs", + "apply_link": "https://www.effizojobs.com/job/close-full-time-high-paying-senior-staff-software-engineer-backend-python-usa-100-remote-position/", + "is_direct": false + }, + { + "publisher": "Colorado Jobs - Tarta.ai", + "apply_link": "https://colorado.tarta.ai/j/dB8GZIoBcRajQcTjYn9z0823-close-senior-staff-software-engineer-backend-python-usa-100-remote-in-boulder-colorado-at-philpar", + "is_direct": false + } + ], + "job_description": "We are looking for US-based Senior and Staff level engineers to join our team. Base salary range is 140,000ドル to 200,000ドル. These are fully remote positions. Read on to learn more!\n\nAbout Us\nAt Close, we're building the sales communication platform of the future. With our roots as the very first sales CRM to include built-in calling, we're leading the industry toward eliminating manual processes and helping companies to close more deals (faster). Since our founding in 2013, we've grown to become a profitable, 100% globally distributed team of ~70 high-performing, happy people that are dedicated to building a product our customers love.\n\nOur backend tech stack currently consists primarily of Python Flask web apps with our TaskTiger scheduler handling many of the backend asynchronous task processing chores. Our data stores include MongoDB, PostgreSQL, Elasticsearch, and Redis. The underlying infrastructure runs on AWS using a combination of managed services like EKS, MSK, RDS and ElasticCache and non-managed services running on EC2 instances. All of our compute runs through CI/CD pipelines that build Docker images, run automated tests and deploy to our Kubernetes clusters. Our backend primarily serves a well-documented public API that our front-end JavaScript app consumes. Our infrastructure is heavily automated using Terraform, Ansible and other AWS tools.\n\nWe open sourcing our code and ideas on our GitHub and onThe Making of Close, our behind-the-scenes Product & Engineering blog. Check out our projects like SocketShark, TaskTiger, LimitLion and ciso8601.\n\nAbout You\nWe’re looking for high achieving full-time Software Engineers to join our engineering team. Someone who has interest and a good understanding in web technologies and wants to help design, implement, launch, and scale major systems and user-facing features.\n\nYou're comfortable working in a fast-paced environment with a small and talented team where you're supported in your efforts to grow professionally. You're able to manage your time well, communicate effectively and collaborate in a fully distributed team.\n\nRequirements...\n• Senior/Staff level candidates should have 5+ years experience building modern back-end systems. Mid-level candidates should have ~3 years of similar experience and be eager to level up with the right opportunity.\n• Python experience is preferred but experience in other languages is acceptable if you have a desire to work with Python.\n• You have hands-on production experience working with MongoDB, PostgreSQL, Elasticsearch, or similar data stores.\n• You have experience designing, scaling, debugging, and optimizing systems to make them fast and reliable.\n• You have participated in code reviews and provided overall code quality suggestions to help maintain the structure and quality of the codebase.\n• You care about the craftsmanship of the code and systems you produce.\n• Located in the USA. Not in the US? Check out this job post for our non-US BE position.\n\nBonus point if you have...\n• Contributed open source code related to our tech stack\n• Led small project teams building and launching features\n• Built B2B SaaS products\n• Worked with complex architectures that support multiple APIs (e.g. REST, GQL, WebSockets) as well as async task and event processing frameworks\n\nCome help us with projects like...\n• Conceiving, designing, building, and launching new user-facing features\n• Improving the performance and scalability of our GraphQL andREST API.\n• Improving how we sync millions of sales emails and calendar events each month\n• Working with Twilio's API, WebSockets, and WebRTC to improve our calling features\n• Building user-facing analytics features that provide actionable insights based on sales activity data\n• Improving our Elastic search-backed powerful search features\n• Improving our internal messaging infrastructure using streaming technologies like Kafka and Redis\n• Building new and enhancing existing integrations with other SaaS platforms like Google’s G Suite, Zapier, and Web Conferencing providers\n\nWhy work with us?\n• Culture video \n• 100% remote company (we believe in trust and autonomy)\n• Choose between working 5 days/wk (standard full-time) or 4 days/wk @ 80% pay\n• Annual team retreats ✈️\n• Quarterly virtual summits\n• 5 weeks PTO + Winter Holiday Break\n• 2 additional PTO days every year with the company\n• 1 month paid sabbatical every 5 years\n• Paid parental leave\n• Medical, Dental, Vision with HSA option (US residents)\n• 401k matching at 6% (US residents)\n• Dependent care FSA (US residents)\n• Contributor to Stripe's climate initiative ❤️\n• Our story and team \n\nOur Values\n• Build a house you want to live in -- Examine long-term thinking and action\n• No BS -- Practice transparency and honesty, especially when it’s hard\n• Invest in each other -- Build successful relationships with your coworkers and customers\n• Discipline equals freedom -- Keep your word to yourself and others\n• Strive for greatness -- Constantly challenge yourself and others\n\nHow We Work Together\n• Productivity, Quality & Impact: We don’t track hours. We trust you’re an adult and know best how to prioritize, meet your goals and contribute at a high level.\n• Asynchronous communication & collaboration: We have team members all over the world. We don’t expect anyone to work untraditional hours, that means our default is async. Most teams have 2-5 hours of internal meetings weekly.\n• Appreciation for Deep Work: *During your normal work day, not after a day of meetings*.\n• Autonomy & Freedom: Create a work environment that is sustainable for you. We place a high amount of trust and responsibility with our team members from the start.\n\nAt Close, everyone has a voice. We encourage transparency and practice a mature approach to the work-place. In general, we don’t have strict policies, we have guidelines. Work/Life harmony is an important part of our business - we believe you bring your best to work when you practice self-care (whatever that looks like for you).\n\nWe come from 20+ countries located in 5 of the 7 continents. We’re a collection of talented humans, rich in diverse backgrounds, lifestyles, and cultures. Every year we meet up somewhere around the world to spend time with one another. These gatherings are an opportunity to strengthen the relationships within our global community.\n\nOur team is growing in more ways than one - in the last few years, we've launched 24 babies (and counting!). Unanimously, our favorite and most impactful value is "Build a house you want to live in." We strive to make decisions that are authentic for our people and help our customers become more successful.\n\nOur application process was designed to promote equitable and unbiased hiring practices. We ask a small series of questions that are similar to what would be asked in the first interview. This helps us learn more about you right from the start so please be sure to answer each question thoughtfully. Each application will receive two screens by two different reviewers. Regardless of fit, you will hear back from us letting you know if we'll be moving forward.", + "job_is_remote": true, + "job_posted_at_timestamp": 1681423155, + "job_posted_at_datetime_utc": "2023-04-13T21:59:15.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "health_insurance", + "dental_coverage", + "paid_time_off", + "retirement_savings" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=40&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=g1nSh3K27BIEABIaAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": "2023-11-09T21:59:15.000Z", + "job_offer_expiration_timestamp": 1699567155, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 60, + "experience_mentioned": true, + "experience_preferred": true + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": 100000, + "job_max_salary": 100000, + "job_salary_currency": "USD", + "job_salary_period": "YEAR", + "job_highlights": { + "Qualifications": [ + "Someone who has interest and a good understanding in web technologies and wants to help design, implement, launch, and scale major systems and user-facing features", + "You're comfortable working in a fast-paced environment with a small and talented team where you're supported in your efforts to grow professionally", + "Senior/Staff level candidates should have 5+ years experience building modern back-end systems", + "Mid-level candidates should have ~3 years of similar experience and be eager to level up with the right opportunity", + "You have hands-on production experience working with MongoDB, PostgreSQL, Elasticsearch, or similar data stores", + "You have experience designing, scaling, debugging, and optimizing systems to make them fast and reliable", + "You have participated in code reviews and provided overall code quality suggestions to help maintain the structure and quality of the codebase", + "You care about the craftsmanship of the code and systems you produce", + "Located in the USA", + "Worked with complex architectures that support multiple APIs (e.g. REST, GQL, WebSockets) as well as async task and event processing frameworks", + "No BS -- Practice transparency and honesty, especially when it’s hard" + ], + "Responsibilities": [ + "Conceiving, designing, building, and launching new user-facing features", + "Improving the performance and scalability of our GraphQL and", + "Improving how we sync millions of sales emails and calendar events each month", + "Working with Twilio's API, WebSockets, and WebRTC to improve our calling features", + "Building user-facing analytics features that provide actionable insights based on sales activity data", + "Improving our Elastic search-backed powerful search features", + "Improving our internal messaging infrastructure using streaming technologies like Kafka and Redis" + ], + "Benefits": [ + "Base salary range is 140,000ドル to 200,000ドル", + "Choose between working 5 days/wk (standard full-time) or 4 days/wk @ 80% pay", + "Annual team retreats ✈️", + "Quarterly virtual summits", + "5 weeks PTO + Winter Holiday Break", + "2 additional PTO days every year with the company", + "1 month paid sabbatical every 5 years", + "Paid parental leave", + "Medical, Dental, Vision with HSA option (US residents)", + "401k matching at 6% (US residents)", + "Dependent care FSA (US residents)", + "Contributor to Stripe's climate initiative ❤️", + "Our story and team ", + "Autonomy & Freedom: Create a work environment that is sustainable for you" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_occupational_categories": ["Back-End Programming"] + }, + { + "employer_name": "Locus Robotics", + "employer_logo": "https://www.automate.org/userAssets/members/3079/logo/Locus_Robotics_New.png", + "employer_website": "http://locusrobotics.com", + "employer_company_type": null, + "job_publisher": "SmartRecruiters Job Search", + "job_id": "RJhau5uqFWiqvy3sAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Senior Robotics Software Engineer, Research and Development (Remote US/Canada)", + "job_apply_link": "https://jobs.smartrecruiters.com/LocusRobotics/743999931569633-senior-robotics-software-engineer-research-and-development-remote-in-us-or-canada-", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.7441, + "apply_options": [ + { + "publisher": "SmartRecruiters Job Search", + "apply_link": "https://jobs.smartrecruiters.com/LocusRobotics/743999931569633-senior-robotics-software-engineer-research-and-development-remote-in-us-or-canada-", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=3ab5c1c609a14428", + "is_direct": true + }, + { + "publisher": "Glassdoor", + "apply_link": "https://www.glassdoor.com/job-listing/senior-robotics-software-engineer-research-and-development-remote-us-canada-locus-robotics-JV_KO0,75_KE76,90.htm?jl=1008935890422", + "is_direct": true + }, + { + "publisher": "Jooble", + "apply_link": "https://jooble.org/jdp/-6400617101527029263/Senior-Robotics-Software-Engineer%2C-Research-and-Development-(Remote-in-US-or-Canada)-Nashua%2C-NH", + "is_direct": false + }, + { + "publisher": "Trabajo.org", + "apply_link": "https://us.trabajo.org/job-1275-20231024-bc64497eba6d810a2e9d62a36d2afc5a", + "is_direct": false + }, + { + "publisher": "BeBee", + "apply_link": "https://us.bebee.com/job/20231024-96ce6fc19a7a8d37714e7a115d5d9d0c", + "is_direct": false + } + ], + "job_description": "Company Description\n\nLocus Robotics is a leader in the rapidly growing eCommerce order fulfillment optimization space. Our solution helps warehouse owners attain 2-3X efficiency improvement over cart-picking operations, by empowering pickers to work collaboratively with our robots. All this is accomplished while integrating with the operator’s Warehouse Management System, utilizing and optimizing existing facility infrastructure.\n\nJob Description\n\nLocus Robotics is seeking a Senior Robotics Software Engineer for its Advanced Products Group (APG) to help develop, integrate, and iterate new concepts. APG is a forward-thinking group that evaluates product opportunities with 2–4-year roadmaps using emerging technologies.\n\nThis role is based out Nashua NH Office.\n\nResponsibilities:\n• Integrate robotic hardware and software systems by creating, augmenting, or developing new APIs.\n• Plan and execute proof of concepts and demonstrations for internal and external consumption.\n• Create predictable behaviors for human-robot and robot interactions.\n• Write and execute test procedures for performance evaluation.\n• Document and share knowledge and refine designs based on input from the team.\n• Occasional travel to support pilot deployments and demos may be required.\n\nQualifications\n• 3+ years of commercial experience working with C++ or other object-oriented languages.\n• Demonstratable experience with robotics integration, driver development, and bring up with Robot Operating System (ROS). \n• Strong organization and communication skills, ability to work with stakeholders to receive and provide feedback for iterative design.\n• Comfortable in a culture of quick, iterative design and experimentation.\n• Familiar with API development, hardware and software integration.\n• Knowledgeable regarding robotics systems architecture and mobile robotics.\n\nAdditional Information\n\nLocus Robotics is an Equal Opportunity Employer\n\nR&D-APG-0003", + "job_is_remote": false, + "job_posted_at_timestamp": 1697749361, + "job_posted_at_datetime_utc": "2023-10-19T21:02:41.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=40&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=RJhau5uqFWiqvy3sAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 36, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "3+ years of commercial experience working with C++ or other object-oriented languages", + "Demonstratable experience with robotics integration, driver development, and bring up with Robot Operating System (ROS). ", + "Strong organization and communication skills, ability to work with stakeholders to receive and provide feedback for iterative design", + "Comfortable in a culture of quick, iterative design and experimentation", + "Familiar with API development, hardware and software integration", + "Knowledgeable regarding robotics systems architecture and mobile robotics" + ], + "Responsibilities": [ + "Integrate robotic hardware and software systems by creating, augmenting, or developing new APIs", + "Plan and execute proof of concepts and demonstrations for internal and external consumption", + "Create predictable behaviors for human-robot and robot interactions", + "Write and execute test procedures for performance evaluation", + "Document and share knowledge and refine designs based on input from the team", + "Occasional travel to support pilot deployments and demos may be required" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4" + }, + { + "employer_name": "maven", + "employer_logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRGhQSgTsGpBBJ0aPkI2Ao5NpJ9vAiEjZv8YylD&s=0", + "employer_website": null, + "employer_company_type": null, + "job_publisher": "LinkedIn", + "job_id": "kE8RUjAEug3SLWjaAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer", + "job_apply_link": "https://www.linkedin.com/jobs/view/software-engineer-at-maven-3746810555", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.6571, + "apply_options": [ + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/software-engineer-at-maven-3746810555", + "is_direct": false + } + ], + "job_description": "• * Basic Salary 185ドルK + Performance based bonus\n\nOur client is a quant driven hedge fund and is looking to hire an exceptional Python Engineer to its cross-asset trading team.\n\nAs a Python expert you will be responsible for enhancing and or building all aspects of the team’s automated trading, research, data and risk management system that leverages Python code. This is a comprehensive role where you will work on a variety of short, long term and mission-critical problems.\n\nIn 2-3 years time, depending on your interests, the opportunity to move into a full time research trading role exists. In fact, this opening is the result of a successful transition.\n\nRequirements:\n\n> STEM undergraduate / graduate degree(s) from a leading school.\n\n> Expert programming skills in Python.\n\n> 4 + years work experience as a software engineer / data scientist from any industry.\n\n> Interest in working on statistics, probability and machine learning based projects.\n\nPlease apply via this posting\n• *Please Note: We are a niche recruitment firm specializing in the quantitative trading and Fintech Industry. We have been retained by our client to identify, interview and introduce suitable candidates for this position**", + "job_is_remote": false, + "job_posted_at_timestamp": 1698252621, + "job_posted_at_datetime_utc": "2023-10-25T16:50:21.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=40&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=kE8RUjAEug3SLWjaAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": "2023-11-24T16:50:21.000Z", + "job_offer_expiration_timestamp": 1700844621, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 48, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": true, + "degree_mentioned": true, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "> STEM undergraduate / graduate degree(s) from a leading school", + "> Expert programming skills in Python", + "> 4 + years work experience as a software engineer / data scientist from any industry", + "> Interest in working on statistics, probability and machine learning based projects" + ], + "Responsibilities": [ + "As a Python expert you will be responsible for enhancing and or building all aspects of the team’s automated trading, research, data and risk management system that leverages Python code", + "This is a comprehensive role where you will work on a variety of short, long term and mission-critical problems" + ], + "Benefits": ["Basic Salary 185ドルK + Performance based bonus"] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4" + }, + { + "employer_name": "Sam's Club", + "employer_logo": "https://scene7.samsclub.com/is/image/samsclub/sc_logo_blue?fmt=png-alpha&resMode=sharp2&op_usm=1.75,0.3,2,0&wid=200", + "employer_website": "http://www.samsclub.com", + "employer_company_type": "Retail", + "job_publisher": "Walmart Careers", + "job_id": "09VYXZtSmJTosO2_AAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer III", + "job_apply_link": "https://careers.walmart.com/us/jobs/WD1689675-software-engineer-iii", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.6831, + "apply_options": [ + { + "publisher": "Walmart Careers", + "apply_link": "https://careers.walmart.com/us/jobs/WD1689675-software-engineer-iii", + "is_direct": false + }, + { + "publisher": "Expoint", + "apply_link": "https://expoint.co/he/job/792021259", + "is_direct": false + }, + { + "publisher": "Dice", + "apply_link": "https://www.dice.com/job-detail/a19d2de8-f7cc-4cf1-a06a-caadd98e7a1b", + "is_direct": false + }, + { + "publisher": "Ladders", + "apply_link": "https://www.theladders.com/job/software-engineer-iii-walmart-bentonville-ar_65401675", + "is_direct": false + }, + { + "publisher": "FactoryFix", + "apply_link": "https://jobs.factoryfix.com/jobs/software-engineer-iii--bentonville--ar--3754242229--V2", + "is_direct": false + }, + { + "publisher": "Bentonville, AR - Geebo", + "apply_link": "https://bentonville-ar.geebo.com/jobs-online/view/id/1138571433-software-engineer-iii-cloud-/", + "is_direct": true + }, + { + "publisher": "Job Listings | Barklis", + "apply_link": "https://barklis.com/job-listings/01hcyaatxb6hwah92gc85t6ehv", + "is_direct": false + } + ], + "job_description": "What you'll do...\n\nPosition: Software Engineer III\n\nJob Location: 2101 SE Simple Savings Dr., Bentonville, AR 72712\n\nDuties: Assists in providing guidance to small groups of two to three engineers, including offshore associates, for assigned Engineering projects by providing pertinent documents, directions, examples, and timeline. Provides support to the business by responding to user questions, concerns, and issues (for example, technical feasibility, implementation strategies); researching and identifying needed solutions; determining implementation designs; providing guidance regarding implications of new and enhanced systems; identifying short and long term solutions; and directing users to appropriate contacts for issues outside of associate's domain. Manages small to large-sized complex projects by reviewing project requirements; translating requirements into technical solutions; researching and identifying alternative solutions; determining needed solution based on return on investment and value add to the business; gathering requested information (for example, design documents, product requirements, wire frames); writing and developing code; conducting unit testing; communicating status and issues to team members and stakeholders; collaborating with project team and cross functional teams; identifying areas of opportunity; interpreting information and identifying a solution; ensuring solution is sustainable across implementation and use; troubleshooting open issues and bug-fixes; and ensuring on-time delivery and hand-offs. Troubleshoots business and production issues by gathering information (for example, issue, impact, criticality, possible root cause); performing root cause analysis to reduce future issues; engaging support teams to assist in the resolution of issues; developing solutions; driving the development of an action plan; performing actions as designated in the plan; interpreting the results to determine further action; and completing online documentation. Participates in the discovery phase of small to medium-sized projects to come up with high level design by partnering with the product management, project management, business, and user experience teams.\n\nMinimum education and experience required: Master’s degree or the equivalent in Computer Science, Information Technology, Engineering, or a related field. Position does not require specific years of experience but requires listed skills.\n\nSkills required: Must have experience with: object-oriented programming languages including Java; NoSQL and testing Relational Databases complimenting with tools like SQL developer, PostgreSQL, and Cassandra; analyzing and testing the quality of software; System designs and the Software Development Life Cycle; data analytics; JavaScript; Selenium, WebdriverIO, Reportportal, Sacue labs, and Selenoid; REST and SOAP API testing using Apache HttpClient and SoapUI; Azure and OneOps; and JIRA and other related issues and scrum management tools. Employer will accept any amount of experience with the required skills.\n\n#LI-DNP #LI-DNI\n\nWal-Mart is an Equal Opportunity Employer.", + "job_is_remote": false, + "job_posted_at_timestamp": 1697241600, + "job_posted_at_datetime_utc": "2023-10-14T00:00:00.000Z", + "job_city": "Bentonville", + "job_state": "AR", + "job_country": "US", + "job_latitude": 36.372356, + "job_longitude": -94.21021, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=40&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=09VYXZtSmJTosO2_AAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Minimum education and experience required: Master’s degree or the equivalent in Computer Science, Information Technology, Engineering, or a related field", + "Position does not require specific years of experience but requires listed skills", + "Skills required: Must have experience with: object-oriented programming languages including Java; NoSQL and testing Relational Databases complimenting with tools like SQL developer, PostgreSQL, and Cassandra; analyzing and testing the quality of software; System designs and the Software Development Life Cycle; data analytics; JavaScript; Selenium, WebdriverIO, Reportportal, Sacue labs, and Selenoid; REST and SOAP API testing using Apache HttpClient and SoapUI; Azure and OneOps; and JIRA and other related issues and scrum management tools", + "Employer will accept any amount of experience with the required skills" + ], + "Responsibilities": [ + "Duties: Assists in providing guidance to small groups of two to three engineers, including offshore associates, for assigned Engineering projects by providing pertinent documents, directions, examples, and timeline", + "Provides support to the business by responding to user questions, concerns, and issues (for example, technical feasibility, implementation strategies); researching and identifying needed solutions; determining implementation designs; providing guidance regarding implications of new and enhanced systems; identifying short and long term solutions; and directing users to appropriate contacts for issues outside of associate's domain", + "Manages small to large-sized complex projects by reviewing project requirements; translating requirements into technical solutions; researching and identifying alternative solutions; determining needed solution based on return on investment and value add to the business; gathering requested information (for example, design documents, product requirements, wire frames); writing and developing code; conducting unit testing; communicating status and issues to team members and stakeholders; collaborating with project team and cross functional teams; identifying areas of opportunity; interpreting information and identifying a solution; ensuring solution is sustainable across implementation and use; troubleshooting open issues and bug-fixes; and ensuring on-time delivery and hand-offs", + "Troubleshoots business and production issues by gathering information (for example, issue, impact, criticality, possible root cause); performing root cause analysis to reduce future issues; engaging support teams to assist in the resolution of issues; developing solutions; driving the development of an action plan; performing actions as designated in the plan; interpreting the results to determine further action; and completing online documentation", + "Participates in the discovery phase of small to medium-sized projects to come up with high level design by partnering with the product management, project management, business, and user experience teams" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_naics_code": "452990", + "job_naics_name": "All Other General Merchandise Stores" + }, + { + "employer_name": "Whalesync", + "employer_logo": "https://assets-global.website-files.com/60baa488e09924cdb6bb75a2/619cd89b793d1442aef52507_whalesync%20logo%20full%20-%20minimized.png", + "employer_website": "http://www.whalesync.com", + "employer_company_type": null, + "job_publisher": "Polymer", + "job_id": "28UU-495ZB4FEMotAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Full-Stack Software Engineer", + "job_apply_link": "https://jobs.polymer.co/whalesync/28574", + "job_apply_is_direct": true, + "job_apply_quality_score": 0.7188, + "apply_options": [ + { + "publisher": "Polymer", + "apply_link": "https://jobs.polymer.co/whalesync/28574", + "is_direct": true + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/software-engineer-full-stack-at-whalesync-3726897423", + "is_direct": false + } + ], + "job_description": "About Whalesync\n\nWhalesync makes data syncing easy. Our automation platform syncs data between key business tools like HubSpot and Airtable. We give developers and ops teams two-way, real-time sync, so they can build production-ready workflows.\n\nWhalesync launched during Y Combinator’s S21 cohort. Since then we’ve raised 4ドルM from some of the world’s top investors. We’re now trusted by hundreds of companies like Ramp, Webflow, and Alchemy, and process millions of transactions every day. Many of our customers enjoy the product so much they tell all their friends.\n\nWhat we value\n• We’re always shipping - fast, scrappy people thrive here.\n• We’re obsessed with goals - we’re here to turn a small startup into a long-lasting company.\n• We start with the customer - we all talk to users and work backward from their problems.\n• We have an outlier output bar - we’re an intentionally small, highly effective team.\n\nWhat we’re looking for\n\nReal-time, bi-directional data syncing across an infinite number of tools is a hard technical problem. Offering this in a way that’s simple and accessible is an equally hard design problem.\n\nWe’re looking for someone who is excited by this challenge and the potential impact we can make if we do this right. You’re a product-minded engineer who thrives in a highly autonomous environment. Shipping fast and building awesome things brings you joy.\n\nWhat you’ll be doing\n\nStartups have 70+ SaaS tools on average... data integration is a problem that isn’t going away. While there are many simple automation and ETL pipeline tools out there, Whalesync is the only data syncing product that is developer-grade, but no-code simple.\n\nHere you’ll have the opportunity to work on complex data challenges alongside a small team of seasoned and smart engineers. You’ll have full ownership of projects and work closely with our customers. More specifically, you will:\n• Build many core functionalities that make Whalesync the most powerful data automation tool (e.g. data merging, sync rollbacks, scaling to millions of records, etc.)\n• Build many core features that make Whalesync simple and accessible for both developers and non-developers (e.g. sync previews, auto-schema creation, data visualization, etc.)\n• Work directly with our customers to help solve their problems\n• Ship a bunch of code!\n\nOur stack\n• AWS Fargate\n• NestJS backend\n• Next.js frontend\n• Postgres and Redis data stores\n\nOutcomes we’ll achieve\n\nWe’re obsessed with goals. We make ambitious plans and then get creative in order to achieve them. These are some of the goals we’re focused on right now that we’re excited to reach together.\n• Go from hundreds to thousands of happy customers\n• Cut the time it takes to onboard in half\n• Raise the ceiling of the product by making it more flexible\n• Scale our backend from tens of millions to billions of rows of data\n• Add even more large, fast-growing customers (like Ramp, Webflow, Anrok, Alchemy, etc.)\n• Continue to grow MRR rapidly and raise a series A\n\nRequirements\n• High ownership and autonomy\n• Strong product sense\n• Clear verbal and written communicator\n• Proven ability to drive big projects to completion\n• Strong technical grasp and excellent judgment on task prioritizations\n\nNice-to-have\n• Previously a founder\n• You’ve worked in an early-stage, high-growth SaaS company\n• TypeScript experience\n• Infrastructure and/or data pipeline experience\n\nInterview Process\n\nHere’s a quick overview of our process.\nBenefits\n• Competitive salary and meaningful equity\n• 100% remote\n• Meeting-light culture\n• Three weeks PTO in addition to holidays and sick days\n• Top-tier health, dental, and vision insurance\n• 401k contributions\n• Latest productivity software such as Notion, Linear, and Superhuman", + "job_is_remote": true, + "job_posted_at_timestamp": 1695699892, + "job_posted_at_datetime_utc": "2023-09-26T03:44:52.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "paid_time_off", + "health_insurance", + "dental_coverage", + "retirement_savings" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=40&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=28UU-495ZB4FEMotAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": 100000, + "job_max_salary": 180000, + "job_salary_currency": "USD", + "job_salary_period": "YEAR", + "job_highlights": { + "Qualifications": [ + "High ownership and autonomy", + "Strong product sense", + "Clear verbal and written communicator", + "Proven ability to drive big projects to completion", + "Strong technical grasp and excellent judgment on task prioritizations", + "You’ve worked in an early-stage, high-growth SaaS company", + "TypeScript experience", + "Infrastructure and/or data pipeline experience" + ], + "Responsibilities": [ + "We give developers and ops teams two-way, real-time sync, so they can build production-ready workflows", + "You’ll have full ownership of projects and work closely with our customers", + "Build many core functionalities that make Whalesync the most powerful data automation tool (e.g. data merging, sync rollbacks, scaling to millions of records, etc.)", + "Build many core features that make Whalesync simple and accessible for both developers and non-developers (e.g. sync previews, auto-schema creation, data visualization, etc.)", + "Work directly with our customers to help solve their problems", + "Ship a bunch of code!", + "Go from hundreds to thousands of happy customers", + "Cut the time it takes to onboard in half", + "Raise the ceiling of the product by making it more flexible", + "Scale our backend from tens of millions to billions of rows of data", + "Add even more large, fast-growing customers (like Ramp, Webflow, Anrok, Alchemy, etc.)", + "Continue to grow MRR rapidly and raise a series A" + ], + "Benefits": [ + "Next.js frontend", + "Competitive salary and meaningful equity", + "100% remote", + "Meeting-light culture", + "Three weeks PTO in addition to holidays and sick days", + "Top-tier health, dental, and vision insurance", + "401k contributions", + "Latest productivity software such as Notion, Linear, and Superhuman" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113300", + "job_onet_job_zone": "4" + }, + { + "employer_name": "110 Rocket Software Inc", + "employer_logo": "https://www.rocketsoftware.com/themes/rocketon/Stacked_color_black.png", + "employer_website": "http://www.rocketsoftware.com", + "employer_company_type": "Information", + "job_publisher": "Workday", + "job_id": "BtQbPNkxXlVU1vIZAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer III", + "job_apply_link": "https://rocket.wd5.myworkdayjobs.com/en-US/rocket_careers/job/Software-Engineer-III_R2023-3845", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.7514, + "apply_options": [ + { + "publisher": "Workday", + "apply_link": "https://rocket.wd5.myworkdayjobs.com/en-US/rocket_careers/job/Software-Engineer-III_R2023-3845", + "is_direct": false + }, + { + "publisher": "Mogul", + "apply_link": "https://onmogul.com/jobs/software-engineer-fa844b47-2e8c-4798-bfe6-b3a2c23a88c6", + "is_direct": false + } + ], + "job_description": "It's fun to work in a company where people truly BELIEVE in what they're doing! Job Description Summary: Job Overview: The Software Engineer III designs, develops, troubleshoots, and debugs software programs for new products, new features and software enhancements. You will be expected to work in a fast-paced environment where you will bring your deep technical expertise to successfully manage multiple tasks simultaneously. Your ability to collaborate effectively with other Rocketeers across geographies and technologies will be vital to retain our solutions as the premier technology in the industry. Apply for this exciting opportunity to grow professionally as a part of a dynamic team that continues to grow this business! Mandatory skills required :- C language on IBMi, Multi-threading, Multi-processing, SQL Programming in C, Multi-threaded Applications in IBMi, DB2 (DDL, DML, Materialized Query Table, SQL Functions, SQL Procedures), TCP/IP. Essential Duties and Responsibilities Mastery of software systems Proficient at complex programming exercising independence and discretion while working independently or as part of a team. May lead a team on short or long-term projects as needed. Act as the technical subject matter expert for a product domain and may act as the technical leader within a team. Works independently to create new products, new features, implement software enhancements, correct defects. Set the direction for design and implementation of software features/functionality, correction of defects and/or creation of new products Documents and communicates on complex technical topics outside the immediate development team May interact with customer users to define system requirements and/or necessary modifications History of success working within a team environment Required Qualifications/Experience Typically requires a minimum of 8+ years of related experience Excellent designing and coding skills Understanding fundamental design principles behind a scalable application Object Oriented analysis and design using common design patterns. Proven working experience in Java development Experience in building and testing Java EE applications Expert in popular Java frameworks like Spring, Spring Boot Strong experience with SQL Databases (MySQL, PostgreSQL) including JDBC Experience in REST API & JSON documents Proven experience in Web technologies & frameworks – JavaScript, AngularJS, Vue.js & Django Experience in Web application development using HTML/HTML5, CSS, XML Programming background in Python/Shell and/or similar scripting languages Proficient understanding and experience of code versioning tools, such as Git Experience with CI/CD (Jenkins) and build tools (Maven, Gradle) Fluency in English language, both written and spoken excellent written, verbal, and interpersonal communication skills to deal professionally and collaboratively with all levels of the organization and across geographies. Preferred Skills/Experience Strong background in IBMi OS on IBM Power Servers Conversant with IBM AIX or Linux or Windows Conversant with public cloud vendors such as IBM Cloud or AWS or Azure Some experience or willingness to learn containerization technologies such as Docker, Kubernetes and/or OpenShift Thrives in a multi-tasking environment with constantly evolving priorities. Ability to analyze complex problems into simple sub problems and then reuse available solutions to implement most of those. Ability to design simple systems that can work efficiently without needing much support. Agile development methodologies The base salary range for this role is 124ドルK- 155ドルK /year. Exact compensation may vary based on skills, experience, and location. Job Family Group: Engineering Job Family: Software & Quality Assurance Engineering Job Profile Name: Software Engineer III Employee Type: Individual Contributor Job Level: P3 (Career) . What Rocket Software can offer you in USA: Extensive paid time off programs (paid holidays, sick, and unlimited vacation time) Healthcare coverage options to fit you (and your family’s) needs Retirement savings, with matching contributions by Rocket Software Life and disability coverage Leadership and skills training opportunities Two paid work days for off-site training Rocket Software Inc. is committed to creating a diverse environment and is proud to be an equal opportunity employer. All qualified applicants will receive consideration for employment without regard to race, color, religion, gender, gender identity or expression, sexual orientation, national origin, genetics, disability, age, or veteran status. Rocket Software Inc. is also committed to compliance with all fair employment practices regarding citizenship and immigration status. Rocket is committed to working with and providing reasonable accommodation to individuals with physical and mental disabilities. If you need special assistance or an accommodation while seeking employment, please call: 781-577-4321 or send an email to people@rocketsoftware.com. We will make a determination on your request for reasonable accommodation on a case-by-case basis. #LI-Remote If you like wild growth and working with happy, enthusiastic over-achievers, you'll enjoy your career with us! Thousands of companies around the world depend on Rocket to solve their most challenging business problems by helping them run their critical infrastructure, business processes, and data, as well as extending the value of these assets to take advantage of cloud and mobile computing, advanced analytics, and other future innovations. From the clothes we wear to the cars we drive, Rocket solutions power the back-end systems that thousands of brands interact with every day. At Rocket, software has always been about people—not just ones and zeroes. We’re people solving problems for other people, and we strive to treat our customers, partners, and fellow Rocketeers with humanity. Founded in 1990, Rocket Software is headquartered in Waltham, Massachusetts with 31 offices around the world.", + "job_is_remote": true, + "job_posted_at_timestamp": 1697587200, + "job_posted_at_datetime_utc": "2023-10-18T00:00:00.000Z", + "job_city": "Bentonville", + "job_state": "AR", + "job_country": "US", + "job_latitude": 36.372356, + "job_longitude": -94.21021, + "job_benefits": [ + "dental_coverage", + "paid_time_off", + "retirement_savings" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=40&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=BtQbPNkxXlVU1vIZAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 96, + "experience_mentioned": true, + "experience_preferred": true + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": {}, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_naics_code": "511210", + "job_naics_name": "Software Publishers" + }, + { + "employer_name": "NetApp, Inc.", + "employer_logo": "https://www.netapp.com/media/na_logo_black_rgb_reg-mark_tcm19-21014.jpg", + "employer_website": "http://www.netapp.com", + "employer_company_type": "Manufacturing", + "job_publisher": "Jobs At NetApp", + "job_id": "QniUEZP6-ezGLZDlAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "NetApp Emerging Talent - Software Engineer", + "job_apply_link": "https://jobs.netapp.com/job/San-Jose-NetApp-Emerging-Talent-Software-Engineer-CA-95128/1078848900/", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.813, + "apply_options": [ + { + "publisher": "Jobs At NetApp", + "apply_link": "https://jobs.netapp.com/job/San-Jose-NetApp-Emerging-Talent-Software-Engineer-CA-95128/1078848900/", + "is_direct": false + }, + { + "publisher": "Snagajob", + "apply_link": "https://www.snagajob.com/jobs/877988266", + "is_direct": false + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/netapp-emerging-talent-software-engineer-at-clickjobs-io-3729171703", + "is_direct": false + }, + { + "publisher": "CareerBuilder", + "apply_link": "https://www.careerbuilder.com/job/J3W2R16RLYJQ19CMDHQ", + "is_direct": false + }, + { + "publisher": "Engineer Jobs", + "apply_link": "https://www.engineerjobs.com/posting/exTNuCirv9nrRxaa0kQeLmT9hIhtDpCr6BhHdb7qkVEf4rJu36K-K5S1rfHYOelK", + "is_direct": false + } + ], + "job_description": "About NetApp\n\nWe’re forward-thinking technology people with heart. We make our own rules, drive our own opportunities, and try to approach every challenge with fresh eyes. Of course, we can’t do it alone. We know when to ask for help, collaborate with others, and partner with smart people. We embrace diversity and openness because it’s in our DNA. We push limits and reward great ideas. What is your great idea?\n\n\"At NetApp, we fully embrace and advance a diverse, inclusive global workforce with a culture of belonging that leverages the backgrounds and perspectives of all employees, customers, partners, and communities to foster a higher performing organization.\" -George Kurian, CEO\n\nJob Summary\n\nWe are seeking candidates for an entry-level position with 2-3 years of professional experience in the software development field. This role is designed for individuals looking to build on their existing skills and take the next step in their career.\n\nAs a Software Engineer, you would participate in product design, development, verification, troubleshooting, and delivery of a system or major subsystems. This position requires an individual to be creative, team-oriented, technology savvy, driven to produce results and demonstrates the ability to take a cross-team leadership role. \n\nWe invest heavily in new talent. Your energy and fresh ideas are vital to cementing our position as a market -leader. We’ll push you beyond your comfort zone with a belief that no idea is off-limits. At the same time, you’ll have all the resources, mentoring and feedback you need to grow. What’s more, whatever your role, you can be yourself in a team that celebrates individuality and welcomes different perspectives. \n\nJob Requirements\n\nSome areas of scope within our Software Engineering organization are (but not limited to)- \n\n \n\nFront End Development: \n\nDesign and implement code using Functional and Object-Oriented JavaScript, HTMP, CSS \n\nDevelop enterprise SaaS software using modular, reusable JS components and data visualizations \n\nUnderstanding of concepts related to computer architecture, data structures and algorithms and design patterns/practices \n\n \n\nBack End Development: \n\nUnderstanding of Java, Python, C, and/or C++ \n\nParticipate in product design, development, verification, troubleshooting, and delivery of a system or major subsystems \n\nProjects, experiences, or coursework related to areas such as: Operating Systems, Computer Architecture, Multi-Threading, Data Structures & Algorithms \n\nAdditional Details:\n\nJob Posting Info: This is a pipeline position that will be opened on a recurring basis and used to fill roles aligned with the required skill sets.\n\nProgram Dates: This is fulltime role with a flexible start date in 2024. Recruiting efforts will be ongoing until specific teams find an ideal match.\n\nThrive Everywhere: NetApp’s approach to in-person and remote work will be a flexible hybrid model that emphasizes flexibility for employees and puts our talent first.\n\nExperience\n\nThis position typically requires a minimum of 2 years of relevant work experience.\n\nEqual Opportunity Employer:\n\nNetApp is firmly committed to Equal Employment Opportunity (EEO) and to compliance with all federal, state and local laws that prohibit employment discrimination based on age, race, color, gender, sexual orientation, gender identity, national origin, religion, disability or genetic information, pregnancy, protected veteran status, and any other protected classification.\n\nDid you know...\n\nStatistics show women apply to jobs only when they’re 100% qualified. But no one is 100% qualified. We encourage you to shift the trend and apply anyway! We look forward to hearing from you.\n\nWhy NetApp?\n\nIn a world full of generalists, NetApp is a specialist. No one knows how to elevate the world’s biggest clouds like NetApp. We are data-driven and empowered to innovate. Trust, integrity, and teamwork all combine to make a difference for our customers, partners, and communities.\n\nWe expect a healthy work-life balance. Our volunteer time off program is best in class, offering employees 40 hours of paid time off per year to volunteer with their favorite organizations. We provide comprehensive medical, dental, wellness, and vision plans for you and your family. We offer educational assistance, legal services, and access to discounts. We also offer financial savings programs to help you plan for your future.\n\nIf you run toward knowledge and problem-solving, join us.\n\nUSA Residents Only:\n\nThe base salary hiring wage range for this position which the Company reasonably and in good faith expects to pay for the position in the specified geographic areas or locations, is 106,920ドル – 150,260ドル. Final compensation will be dependent on various factors relevant to the position and candidate such as geographical location, candidate qualifications, certifications, relevant job-related work experience, education, skillset and other relevant business and organizational factors, consistent with applicable law. In addition, the position may include some of the following comprehensive benefits such Medical, Dental, Vision, Life, 401(K), Paid Time off (PTO), sick time, leave of absence as per the FMLA and other relevant leave laws, Company bonus/commission, employee stock purchase plan, and/or restricted stocks (RSU’s).", + "job_is_remote": false, + "job_posted_at_timestamp": 1697871600, + "job_posted_at_datetime_utc": "2023-10-21T07:00:00.000Z", + "job_city": "Wichita", + "job_state": "KS", + "job_country": "US", + "job_latitude": 37.687176, + "job_longitude": -97.330055, + "job_benefits": [ + "paid_time_off", + "retirement_savings", + "health_insurance", + "dental_coverage" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=40&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=QniUEZP6-ezGLZDlAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 24, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": true + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "This position requires an individual to be creative, team-oriented, technology savvy, driven to produce results and demonstrates the ability to take a cross-team leadership role. ", + "Projects, experiences, or coursework related to areas such as: Operating Systems, Computer Architecture, Multi-Threading, Data Structures & Algorithms ", + "This position typically requires a minimum of 2 years of relevant work experience" + ], + "Responsibilities": [ + "As a Software Engineer, you would participate in product design, development, verification, troubleshooting, and delivery of a system or major subsystems", + "Design and implement code using Functional and Object-Oriented JavaScript, HTMP, CSS ", + "Program Dates: This is fulltime role with a flexible start date in 2024" + ], + "Benefits": [ + "Our volunteer time off program is best in class, offering employees 40 hours of paid time off per year to volunteer with their favorite organizations", + "We provide comprehensive medical, dental, wellness, and vision plans for you and your family", + "We offer educational assistance, legal services, and access to discounts", + "We also offer financial savings programs to help you plan for your future", + "The base salary hiring wage range for this position which the Company reasonably and in good faith expects to pay for the position in the specified geographic areas or locations, is 106,920ドル – 150,260ドル", + "In addition, the position may include some of the following comprehensive benefits such Medical, Dental, Vision, Life, 401(K), Paid Time off (PTO), sick time, leave of absence as per the FMLA and other relevant leave laws, Company bonus/commission, employee stock purchase plan, and/or restricted stocks (RSU’s)" + ] + }, + "job_job_title": null, + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_naics_code": "334112", + "job_naics_name": "Computer Storage Device Manufacturing" + }, + { + "employer_name": "Daimler India Commercial Vehicles", + "employer_logo": "https://m.economictimes.com/thumb/msid-68515998,width-1200,height-900,resizemode-4,imgsize-112774/daimler.jpg", + "employer_website": "http://daimler-trucksasia.in", + "employer_company_type": "Manufacturing", + "job_publisher": "ZipRecruiter", + "job_id": "gamSE8sT1O5rEtl3AAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Development Engineer/ (", + "job_apply_link": "https://www.ziprecruiter.com/c/Daimler-India-Commercial-Vehicles/Job/Software-Development-Engineer-(/-in-Shanghai,WV?jid=c8fff2c64ec268ff", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.7172, + "apply_options": [ + { + "publisher": "ZipRecruiter", + "apply_link": "https://www.ziprecruiter.com/c/Daimler-India-Commercial-Vehicles/Job/Software-Development-Engineer-(/-in-Shanghai,WV?jid=c8fff2c64ec268ff", + "is_direct": false + } + ], + "job_description": "Job Objective\n• Focusing on in-vehicle infotainment software platform, applications and services development, can be main HMI, navigation, speech, camera or related functions, applications development and associated framework work.\n• Responsible for the optimization and stability maintenance of in-vehicle infotainment system;\n• Responsible for the delivery of framework/middleware related module software;\n• Research and learn new technologies to meet the iterative updates of smart cockpit product needs.\n• Android framework involves: Power, AMS, WMS, PMS, Car Services, Audio, multimedia, notification, connectivity, Wallpaper and etc.\n• Also product definition, innovation and technical solution definition\n\nQualification\n\nEducation\n\nBachelor degree or above, major in computer, software engineering, electronic engineering, artificial intelligence, pattern recognition, automotive electronics and other related majors;\n\nExperience\n• Fresh graduate\n\nKnowledge\n\nHave strong C /Java programming ability, have good coding habits and experience\n\nStrong algorithm and problem solving skills are preferred.\n\nExperienced in android application development/mobile application development.\n\nUnderstand performance optimization and software architecture design\n\nExperience in large-scale operating system architecture design and technical proposal.\n\nHave passion in cars and automotive related software solutions.\n\nWilling to learn and communicate, as well as a good teamwork spirit.", + "job_is_remote": false, + "job_posted_at_timestamp": 1698013620, + "job_posted_at_datetime_utc": "2023-10-22T22:27:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=40&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=gamSE8sT1O5rEtl3AAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": "2023-11-22T00:00:00.000Z", + "job_offer_expiration_timestamp": 1700611200, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Bachelor degree or above, major in computer, software engineering, electronic engineering, artificial intelligence, pattern recognition, automotive electronics and other related majors;", + "Fresh graduate", + "Have strong C /Java programming ability, have good coding habits and experience", + "Experienced in android application development/mobile application development", + "Understand performance optimization and software architecture design", + "Experience in large-scale operating system architecture design and technical proposal", + "Have passion in cars and automotive related software solutions", + "Willing to learn and communicate, as well as a good teamwork spirit" + ], + "Responsibilities": [ + "Focusing on in-vehicle infotainment software platform, applications and services development, can be main HMI, navigation, speech, camera or related functions, applications development and associated framework work", + "Responsible for the optimization and stability maintenance of in-vehicle infotainment system;", + "Responsible for the delivery of framework/middleware related module software;", + "Research and learn new technologies to meet the iterative updates of smart cockpit product needs", + "Android framework involves: Power, AMS, WMS, PMS, Car Services, Audio, multimedia, notification, connectivity, Wallpaper and etc", + "Also product definition, innovation and technical solution definition" + ] + }, + "job_job_title": "Development engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_occupational_categories": [ + "15-1132.00: Software Developers, Applications" + ], + "job_naics_code": "336111", + "job_naics_name": "Automobile Manufacturing" + }, + { + "employer_name": "Oracle", + "employer_logo": "https://upload.wikimedia.org/wikipedia/commons/thumb/5/50/Oracle_logo.svg/1280px-Oracle_logo.svg.png", + "employer_website": "http://www.oracle.com", + "employer_company_type": "Information", + "job_publisher": "Eeho.fa.us2.Oraclecloud.com", + "job_id": "c8YYPDy8s2a4Y9agAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Sr. Principal Software Engineer", + "job_apply_link": "https://eeho.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/job/211493?utm_medium=search+engine&utm_source=google", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.7602, + "apply_options": [ + { + "publisher": "Eeho.fa.us2.Oraclecloud.com", + "apply_link": "https://eeho.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/job/211493?utm_medium=search+engine&utm_source=google", + "is_direct": false + } + ], + "job_description": "As a member of the software engineering division, you will take an active role in the definition and evolution of standard practices and procedures. Define specifications for significant new projects and specify, design and develop software according to those specifications. You will perform professional software development tasks associated with the developing, designing and debugging of software applications or operating systems.\n\nPublic Cloud SaaS, PaaS Services and/or related technology experience, Cloud Engineering Infrastructure Development", + "job_is_remote": false, + "job_posted_at_timestamp": 1693348376, + "job_posted_at_datetime_utc": "2023-08-29T22:32:56.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=40&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=c8YYPDy8s2a4Y9agAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Public Cloud SaaS, PaaS Services and/or related technology experience, Cloud Engineering Infrastructure Development" + ], + "Responsibilities": [ + "As a member of the software engineering division, you will take an active role in the definition and evolution of standard practices and procedures", + "Define specifications for significant new projects and specify, design and develop software according to those specifications", + "You will perform professional software development tasks associated with the developing, designing and debugging of software applications or operating systems" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_naics_code": "511210", + "job_naics_name": "Software Publishers" + }, + { + "employer_name": "Collibra", + "employer_logo": "https://upload.wikimedia.org/wikipedia/commons/5/58/Collibra-Logo-RGB-FullColor.png", + "employer_website": "http://www.collibra.com", + "employer_company_type": null, + "job_publisher": "Startup Jobs", + "job_id": "FTKcewvclYFWXKwJAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Staff Software Engineer, ElasticSearch", + "job_apply_link": "https://startup.jobs/staff-software-engineer-elasticsearch-collibra-4804159", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.6377, + "apply_options": [ + { + "publisher": "Startup Jobs", + "apply_link": "https://startup.jobs/staff-software-engineer-elasticsearch-collibra-4804159", + "is_direct": false + }, + { + "publisher": "Levels.fyi", + "apply_link": "https://www.levels.fyi/jobs?jobId=97449192487559878", + "is_direct": false + }, + { + "publisher": "Tech:NYC Job Board", + "apply_link": "https://jobs.technyc.org/companies/collibra/jobs/29248332-staff-software-engineer-iam", + "is_direct": false + }, + { + "publisher": "Jobs | Dawn Capital LLP Job Board - Dawn Capital", + "apply_link": "https://jobs.dawncapital.com/companies/collibra/jobs/29248332-staff-software-engineer-iam", + "is_direct": false + }, + { + "publisher": "Jobs | Alkeon Capital Job Board - Alkeon Capital Management", + "apply_link": "https://jobs.alkeon.com/companies/collibra/jobs/30957330-staff-software-engineer-elasticsearch", + "is_direct": false + } + ], + "job_description": "Joining Collibra's Staff Software Engineer - Search teamWe are looking for a visionary technical leader to join our growing engineering team. The mission of the Search Team is to deliver a world class Search experience driving our users' engagement in the Collibra platform. You will be working with the team to solve complex data challenges, developing innovation to amaze our customers with fast and reliable search experience returning relevant data with intuitive search queries.\n\nYou will collaborate with the cross-functional team and all dependent product teams for the success of the Search product. Your responsibility will be to support technical delivery and to create technical vision of the Search product, while working with teams spanning across different regions including Europe, US, Canada and Asia Pacific. We believe our customers are our North Star, they are at the center of everything we do, and we obsess in building products that solve customer problems and needs.\n\nStaff Software Engineers at Collibra are responsible for: • Following agile process (Scrum) to make sure your deliverables are visible for the entire team and company stakeholders\n• Research, develop, and implement advanced search algorithms and techniques to improve search quality, relevance, and efficiency\n• Continuously monitor and optimize the performance of search systems, identifying and addressing bottlenecks and areas for improvement\n• Tackle complex technical challenges related to search functionality, data retrieval, and relevance ranking, working closely with the team to find creative and effective solutions\n• Oversee the Elasticsearch clusters through a managed service, which includes provisioning, scaling, and fine-tuning Elasticsearch instances\n\nYou have:• Professional experience in building large and scalable Java applications based on Spring or Spring Boot in agile environment\n• Experience in leading the technology and driving software development focusing on Search capability, working knowledge of ElasticSearch is a must\n• Excellent communication skills to convey technical complexities. Ability to communicate effectively in English - we’re a global team and English is the most spoken language\n• Work experience in building products intended for real-time on-demand environments e.g. SaaS, Internet/Digital, or Cloud Products\n• Experience with Relational Database Management Systems (preferably PostgresQL)\n• A bachelor’s degree or equivalent related working experience is required\n• This position is not eligible for visa sponsorship\n\nYou are:• Interested in technology and the capability to adapt to new technologies and drive technical vision of the complex software solutions\n• Agile-minded, optimistic, passionate, and pragmatic about delivering valuable software to customers\n• Someone who puts quality first and has a passion for good design and clean code\n• Able to work productively with a geographically distributed remote team and able to mentor and advise other engineers you work with on the scrum team\n• An Open, Direct and Kind team player energized to drive and navigate change\n\nMeasures of success:• Within your first month, you will get familiar with the environment we use, the way we implement software as an organization, simple business use cases and submit code to production.\n• Within your third month, you will implement new user stories with quality and care, and understand what value they will bring to our customers.\n• Within your sixth month, you will be a productive member of the Search team, reliably delivering quality code, participating in testing and on your way to set up technical vision for the Search capability in Collibra.\n\nCompensation for this roleThe standard base salary range for this position is 152,000ドル - 231,000ドル per year. This position is not eligible for additional commission-based compensation. Salary offers are based on a combination of factors, including, but not limited to, experience, skills, and location.\n\nIn addition to base salary, we offer equity ownership at every level, bonus potential, a Flex Fund monthly stipend, pension/401k plans, and more.\n\nBenefits at CollibraCollibra recognizes and values that everyone has different needs, interests, and life goals. We built our {Be}well benefits program with flexibility in mind to support you and your loved ones through a diverse range of circumstances and life events. These flexible offerings sit on a foundation of competitive compensation, health coverage, and time off.\n\nProfessional Development\n\nCollibrians are ambitious and inventive, and we want to develop our skills individually and as a team. You’ll have access to LinkedIn Learning and other development opportunities, as well as other rewards and recognition programs to help grow your career.\n\nHealth Coverage\n\nWe strive to remain locally competitive and globally equitable. This means comprehensive offerings including medical, dental, vision, and mental health benefits for you and your family.\n\nPaid Time Off and Flexibility\n\nWe provide unlimited paid time off, global leave policies for a variety of personal and family circumstances, company-wide wellness days off throughout the year, meeting-free Wednesdays, and a flexible culture to help balance your work and your life.\n\nDiversity, Equity, and Inclusion\n\nWe create inclusion and belonging through how we onboard, meet, connect, engage, and communicate. Learn more about diversity, equity, and inclusion at Collibra.\n\nLearn more about Collibra’s benefits.\n\nAt Collibra, we’re proud to be an equal opportunity employer – which ties directly to our core value, "open, direct, and kind." We realize the key to creating a company with a world-class culture and employee experience comes from who we hire and creating a workplace that celebrates everyone.\n\nWith this, we proudly consider qualified applicants without regard to race, color, religion, creed, gender, national origin, age, disability, veteran status, sexual orientation, pregnancy, sex, gender identity, gender expression, genetic information, physical or mental disability, HIV status, registered domestic partner status, caregiver status, marital status, veteran or military status, citizenship status or any other legally protected category.\n\nLI#JW2", + "job_is_remote": true, + "job_posted_at_timestamp": 1697798900, + "job_posted_at_datetime_utc": "2023-10-20T10:48:20.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "health_insurance", + "paid_time_off", + "retirement_savings", + "dental_coverage" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=50&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=FTKcewvclYFWXKwJAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "You have:• Professional experience in building large and scalable Java applications based on Spring or Spring Boot in agile environment", + "Experience in leading the technology and driving software development focusing on Search capability, working knowledge of ElasticSearch is a must", + "Excellent communication skills to convey technical complexities", + "Ability to communicate effectively in English - we’re a global team and English is the most spoken language", + "Work experience in building products intended for real-time on-demand environments e.g", + "SaaS, Internet/Digital, or Cloud Products", + "Experience with Relational Database Management Systems (preferably PostgresQL)", + "A bachelor’s degree or equivalent related working experience is required", + "This position is not eligible for visa sponsorship", + "You are:• Interested in technology and the capability to adapt to new technologies and drive technical vision of the complex software solutions", + "Agile-minded, optimistic, passionate, and pragmatic about delivering valuable software to customers", + "Someone who puts quality first and has a passion for good design and clean code", + "Able to work productively with a geographically distributed remote team and able to mentor and advise other engineers you work with on the scrum team" + ], + "Responsibilities": [ + "You will be working with the team to solve complex data challenges, developing innovation to amaze our customers with fast and reliable search experience returning relevant data with intuitive search queries", + "You will collaborate with the cross-functional team and all dependent product teams for the success of the Search product", + "Your responsibility will be to support technical delivery and to create technical vision of the Search product, while working with teams spanning across different regions including Europe, US, Canada and Asia Pacific", + "Following agile process (Scrum) to make sure your deliverables are visible for the entire team and company stakeholders", + "Research, develop, and implement advanced search algorithms and techniques to improve search quality, relevance, and efficiency", + "Continuously monitor and optimize the performance of search systems, identifying and addressing bottlenecks and areas for improvement", + "Tackle complex technical challenges related to search functionality, data retrieval, and relevance ranking, working closely with the team to find creative and effective solutions", + "Oversee the Elasticsearch clusters through a managed service, which includes provisioning, scaling, and fine-tuning Elasticsearch instances", + "An Open, Direct and Kind team player energized to drive and navigate change", + "Within your third month, you will implement new user stories with quality and care, and understand what value they will bring to our customers", + "Within your sixth month, you will be a productive member of the Search team, reliably delivering quality code, participating in testing and on your way to set up technical vision for the Search capability in Collibra" + ], + "Benefits": [ + "The standard base salary range for this position is 152,000ドル - 231,000ドル per year", + "This position is not eligible for additional commission-based compensation", + "Salary offers are based on a combination of factors, including, but not limited to, experience, skills, and location", + "In addition to base salary, we offer equity ownership at every level, bonus potential, a Flex Fund monthly stipend, pension/401k plans, and more", + "These flexible offerings sit on a foundation of competitive compensation, health coverage, and time off", + "You’ll have access to LinkedIn Learning and other development opportunities, as well as other rewards and recognition programs to help grow your career", + "We strive to remain locally competitive and globally equitable", + "This means comprehensive offerings including medical, dental, vision, and mental health benefits for you and your family", + "We provide unlimited paid time off, global leave policies for a variety of personal and family circumstances, company-wide wellness days off throughout the year, meeting-free Wednesdays, and a flexible culture to help balance your work and your life" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_occupational_categories": [ + "15-1132.00 Software Developers, Application" + ] + }, + { + "employer_name": "Garmin International, Inc.", + "employer_logo": null, + "employer_website": "http://www.garmin.com", + "employer_company_type": null, + "job_publisher": "Garmin Careers", + "job_id": "p4P6TR9Wz1ABO_psAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer Intern - Web/DevOps Development", + "job_apply_link": "https://careers.garmin.com/jobs/11269?lang=en-us", + "job_apply_is_direct": true, + "job_apply_quality_score": 0.8161, + "apply_options": [ + { + "publisher": "Garmin Careers", + "apply_link": "https://careers.garmin.com/jobs/11269?lang=en-us", + "is_direct": true + }, + { + "publisher": "ZipRecruiter", + "apply_link": "https://www.ziprecruiter.com/c/Garmin-International,-Inc./Job/Software-Engineer-Intern-Web-DevOps-Development/-in-Olathe,KS?jid=e0d543af0e5a1ec9", + "is_direct": false + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/software-engineer-intern-web-devops-development-at-garmin-3702320405", + "is_direct": false + }, + { + "publisher": "Levels.fyi", + "apply_link": "https://www.levels.fyi/jobs?jobId=141753943534248646", + "is_direct": false + }, + { + "publisher": "Trabajo.org", + "apply_link": "https://us.trabajo.org/job-835-20231020-c0804b0ebecd0237ef5c703ccd467ac8", + "is_direct": false + }, + { + "publisher": "Adzuna", + "apply_link": "https://www.adzuna.com/details/4285506272", + "is_direct": false + }, + { + "publisher": "Getwork", + "apply_link": "https://getwork.com/details/6822cf2cd30d893e7eb8a391df61d146", + "is_direct": false + }, + { + "publisher": "Talentify", + "apply_link": "https://garmin.talentify.io/job/software-engineer-intern-webdevops-development-olathe-kansas-garmin-11269", + "is_direct": false + } + ], + "job_description": "Overview\n\nWe are seeking a full-time Intern – Software Engineering (Web/DevOps Development) in our Olathe, KS location. In this role, you will be responsible for learning and training to develop software for Garmin's communication and navigation products under supervision.\n\nEssential Functions\n• Learn to develop software using C, C++, C#, Java, assembly language, or other selected languages\n• Learn to test software using debuggers, emulators, simulators, and logic analyzers\n• Learn to perform software releases and software quality assurance activities\n• Learn to perform maintenance activities for products already in production in addition to new product software design\n\nBasic Qualifications\n• Completed coursework in Computer Science, Electrical Engineering, Computer Engineering, or a related field\n• Excellent academics (cumulative GPA greater than or equal to 3.0 as a general rule)\n• Must possess relevant experience and/or training in languages such as C, C++, C# or Java\n• Must possess relevant experience and/or training in data structures or object oriented design methodology\n\nDesired Qualifications\n• Outstanding academics (cumulative GPA greater than or equal to 3.5)\n• Previous experience with Python, Docker, Kubernetes or Cloud software is strongly preferred\n\nGarmin International is an equal opportunity employer. Qualified applicants will receive consideration for employment without regard to race, religion, color, national origin, citizenship, sex, sexual orientation, gender identity, veteran status, age or disability.\n\nThis position is eligible for Garmin's benefit program. Details can be found here: Garmin Benefits", + "job_is_remote": false, + "job_posted_at_timestamp": 1693192860, + "job_posted_at_datetime_utc": "2023-08-28T03:21:00.000Z", + "job_city": "Olathe", + "job_state": "KS", + "job_country": "US", + "job_latitude": 38.881397, + "job_longitude": -94.81913, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=50&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=p4P6TR9Wz1ABO_psAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": "2024-08-28T03:22:21.000Z", + "job_offer_expiration_timestamp": 1724815341, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": true + }, + "job_required_skills": ["UNAVAILABLE"], + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Completed coursework in Computer Science, Electrical Engineering, Computer Engineering, or a related field", + "Excellent academics (cumulative GPA greater than or equal to 3.0 as a general rule)", + "Must possess relevant experience and/or training in languages such as C, C++, C# or Java", + "Must possess relevant experience and/or training in data structures or object oriented design methodology" + ], + "Responsibilities": [ + "In this role, you will be responsible for learning and training to develop software for Garmin's communication and navigation products under supervision", + "Learn to test software using debuggers, emulators, simulators, and logic analyzers", + "Learn to perform software releases and software quality assurance activities", + "Learn to perform maintenance activities for products already in production in addition to new product software design" + ], + "Benefits": ["This position is eligible for Garmin's benefit program"] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113400", + "job_onet_job_zone": "3" + }, + { + "employer_name": "Abrigo", + "employer_logo": "https://www.abrigo.com/wp-content/uploads/2019/01/abrigo-logo.svg", + "employer_website": null, + "employer_company_type": "Information", + "job_publisher": "Jobvite", + "job_id": "zYZZIFMOfpdt5rrpAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer in Test (Mid-Level)", + "job_apply_link": "https://jobs.jobvite.com/bankerstoolbox/job/ooG4ofwg/%7B%7BdeclineUrl%7D%7D", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.7186, + "apply_options": [ + { + "publisher": "Jobvite", + "apply_link": "https://jobs.jobvite.com/bankerstoolbox/job/ooG4ofwg/%7B%7BdeclineUrl%7D%7D", + "is_direct": false + }, + { + "publisher": "Salary.com", + "apply_link": "https://www.salary.com/job/abrigo/software-engineer-in-test-mid-level/j202307260613571667086", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=7d910db679598352", + "is_direct": false + }, + { + "publisher": "Glassdoor", + "apply_link": "https://www.glassdoor.com/job-listing/software-engineer-in-test-mid-level-abrigo-JV_KO0,35_KE36,42.htm?jl=1008941442941", + "is_direct": false + }, + { + "publisher": "Jooble", + "apply_link": "https://jooble.org/jdp/-424873354801623088/Software-Engineer-in-Test-(Mid+Level)-United-States", + "is_direct": true + } + ], + "job_description": "We provide technology that community financial institutions use to manage risk and drive growth. Our solutions automate key processes – from anti-money laundering to fraud detection to CECL readiness to lending workflows – empowering our customers by addressing their Enterprise Risk Management needs.\n\nThis is an exciting opportunity for someone who is not only a master of their craft, but also shares our commitment to driving a strong company culture by putting their heart and soul into their work every day.\n\nWe are seeking a highly motivated and skilled Software Engineer in Test to ensure high quality releases for our Risk product suite. This role will focus on creating & updating test cases with the goal of a fully automated testing suite.\n\nThe position will require test automation experience in a fast-paced environment at a rapidly growing company. The expectation for this individual is to not only execute but innovate at an elevated level. Ideal candidates must be passionate about test automation & delivering high quality software to customers. Position will be remote or hybrid-based in our Austin (TX) or Raleigh (NC) office.\n\nWhat You’ll Do:\n• Write, design, and execute automated tests\n• Collaborate within a cross-functional team of engineers, product managers, and QA\n• Develop automated tests for various levels of testing including regression, integration, end to end, functional, smoke & performance tests\n• Automate processes around testing including test data creation\n• Contribute to all levels of software quality with an automation first mindset\n• Work with the team to ensure new features being built are tested following our standards\n• Work with developers to identify the right testing strategies on every story, task & bug fix\n• Log & fully document defects\n• Triage test failures\n\nWhat You’ll Need:\n• 3+ years of experience automating test scripts in a software development environment\n• Strong automation skills & experience with Selenium, Cypress, or similar tools\n• Ability to understand the business logic of applications written in these technologies\n• Experience working with cloud architecture is a plus\n• Experience writing & running SQL queries\n• Experience with Specflow & Gherkin\n• Experience with scripting languages (e.g., Python, Bash)\n• Knowledge and Experience developing and executing performance tests\n• Working understanding of unit tests & code coverage\n• Knowledge and Experience writing and executing test plans\n• Experience working in an Agile environment\n• Exceptional logic and deductive, problem-solving skills\n• Ability to work closely with team members in a highly collaborative environment\n\nWhat You’ll Get:\n• Market competitive total rewards package\n• To be part of the Heart & SOUL of a winning company with an inspiring mission\n• The opportunity to Make Big Things Happen\n• Competitive salary along with full health benefits with an HSA option\n• Unlimited PTO and bank holidays\n• 401(k) plan and company match\n\nWe are an equal opportunity employer and all qualified applicants will receive consideration for employment without regard to race, color, religion, sex, gender identity, age, genetic trait, sexual orientation, national origin, disability status, or any other characteristic protected by law.\n\nAbrigo is committed to providing reasonable accommodations for qualified individuals with disabilities and disabled veterans in our job application procedures. If you need assistance or an accommodation due to a disability, you may contact us at careers@abrigo.com with the subject line accommodation.", + "job_is_remote": false, + "job_posted_at_timestamp": 1698019200, + "job_posted_at_datetime_utc": "2023-10-23T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "retirement_savings", + "health_insurance", + "paid_time_off" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=50&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=zYZZIFMOfpdt5rrpAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 36, + "experience_mentioned": true, + "experience_preferred": true + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "3+ years of experience automating test scripts in a software development environment", + "Strong automation skills & experience with Selenium, Cypress, or similar tools", + "Ability to understand the business logic of applications written in these technologies", + "Experience writing & running SQL queries", + "Experience with Specflow & Gherkin", + "Experience with scripting languages (e.g., Python, Bash)", + "Knowledge and Experience developing and executing performance tests", + "Working understanding of unit tests & code coverage", + "Knowledge and Experience writing and executing test plans", + "Experience working in an Agile environment", + "Exceptional logic and deductive, problem-solving skills", + "Ability to work closely with team members in a highly collaborative environment" + ], + "Responsibilities": [ + "This role will focus on creating & updating test cases with the goal of a fully automated testing suite", + "The position will require test automation experience in a fast-paced environment at a rapidly growing company", + "Write, design, and execute automated tests", + "Collaborate within a cross-functional team of engineers, product managers, and QA", + "Develop automated tests for various levels of testing including regression, integration, end to end, functional, smoke & performance tests", + "Automate processes around testing including test data creation", + "Contribute to all levels of software quality with an automation first mindset", + "Work with the team to ensure new features being built are tested following our standards", + "Work with developers to identify the right testing strategies on every story, task & bug fix", + "Log & fully document defects", + "Triage test failures" + ], + "Benefits": [ + "Market competitive total rewards package", + "To be part of the Heart & SOUL of a winning company with an inspiring mission", + "The opportunity to Make Big Things Happen", + "Competitive salary along with full health benefits with an HSA option", + "Unlimited PTO and bank holidays", + "401(k) plan and company match" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15119900", + "job_onet_job_zone": "4", + "job_naics_code": "511210", + "job_naics_name": "Software Publishers" + }, + { + "employer_name": "saile.ai", + "employer_logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT4xwz5NDtkBNOAANTThr1V_0iqQ1wiU1cTLFUf&s=0", + "employer_website": null, + "employer_company_type": null, + "job_publisher": "Job Board - Valor Ventures", + "job_id": "PJU9gsNGCtQBBzJcAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Staff Software Engineer", + "job_apply_link": "https://jobs.valor.vc/companies/saile-ai/jobs/29524652-staff-software-engineer", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.6273, + "apply_options": [ + { + "publisher": "Job Board - Valor Ventures", + "apply_link": "https://jobs.valor.vc/companies/saile-ai/jobs/29524652-staff-software-engineer", + "is_direct": false + } + ], + "job_description": "About Sailes\n\nSailes envisions a world where technology creates the space for us all to be more human. Our mission is to help every sales team unlock potential and act on possibilities. Today, we elevate the world’s leading sales executives with Sailebots that eliminate manual prospecting tasks in favor of high-value, high-return sales activities. For the Fortune 500 and beyond, our unique Sailebots automate the entire prospecting lifecycle. This Digital LaborTM process helps companies triple their pipeline at a 5X cost reduction from manual prospecting.\n\nWhat You'll Do\n\nAs a Staff Software Engineer at Sailes, you'll play a crucial role in revolutionizing sales through AI-driven solutions. Join our dynamic team dedicated to crafting cutting-edge applications, ensuring seamless user experiences, and addressing complex challenges. Your role involves taking ownership of features, breaking them down, and architecting solutions while leading the team's technical direction.\n\nResponsibilities\n• Collaborate with cross-functional teams, including designers, product managers, and data scientists, to deliver exceptional Python-based applications.\n• Architect and develop high-performance, scalable, and maintainable backend systems using Python, SQLAlchemy, and AWS.\n• Break down complex features into actionable tasks and guide implementation.\n• Mentor junior developers, fostering their growth.\n• Explore and evaluate new technologies and methodologies to drive innovation and enhance our tech stack.\n\nMinimum Requirements\n• Proficiency in backend development with a strong emphasis on problem-solving skills and experience in architecting scalable solutions.\n• Mastery of relevant backend technologies, including ORM frameworks, and experience with leading cloud providers for designing high-performance systems.\n• Self-starter who can work independently and collaboratively.\n• Dedication to improving application structures and code quality.\n• Excellent written and verbal communication skills.\n\nPreferred Technology Qualifications\n• Python: Expertise in building scalable and maintainable Python applications.\n• SQLAlchemy: Deep understanding of SQL and database management.\n• AWS: Hands-on experience with AWS services for cloud-based solutions.\n• Postgres: Proficiency in working with PostgreSQL databases.\n• REST APIs and GraphQL: Designing and consuming APIs for data integration.\n\nWhat We Offer\n• Competitive salary and benefits with medical, dental, and 401K match.\n• Paid vacation and additional perks.\n• Flexible remote work options.\n• DoorDash stipend for work convenience.\n• Autonomy in your work with strong team support.\n• Challenging projects from concept to production-ready code.\n• Opportunities to contribute to architectural improvements.\n\nJoin Us\n\nIf you are an enthusiastic and skilled developer who thrives in a collaborative environment, is passionate about staying current with the latest technologies, and enjoys mentoring fellow developers, we invite you to apply and be a key contributor to our exciting projects. Join us in reshaping how sales executives operate, leveraging AI-powered solutions.", + "job_is_remote": false, + "job_posted_at_timestamp": 1694523861, + "job_posted_at_datetime_utc": "2023-09-12T13:04:21.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "health_insurance", + "dental_coverage", + "paid_time_off", + "retirement_savings" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=50&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=PJU9gsNGCtQBBzJcAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Proficiency in backend development with a strong emphasis on problem-solving skills and experience in architecting scalable solutions", + "Mastery of relevant backend technologies, including ORM frameworks, and experience with leading cloud providers for designing high-performance systems", + "Self-starter who can work independently and collaboratively", + "Dedication to improving application structures and code quality", + "Excellent written and verbal communication skills" + ], + "Responsibilities": [ + "As a Staff Software Engineer at Sailes, you'll play a crucial role in revolutionizing sales through AI-driven solutions", + "Join our dynamic team dedicated to crafting cutting-edge applications, ensuring seamless user experiences, and addressing complex challenges", + "Your role involves taking ownership of features, breaking them down, and architecting solutions while leading the team's technical direction", + "Collaborate with cross-functional teams, including designers, product managers, and data scientists, to deliver exceptional Python-based applications", + "Architect and develop high-performance, scalable, and maintainable backend systems using Python, SQLAlchemy, and AWS", + "Break down complex features into actionable tasks and guide implementation", + "Mentor junior developers, fostering their growth", + "Explore and evaluate new technologies and methodologies to drive innovation and enhance our tech stack" + ], + "Benefits": [ + "Competitive salary and benefits with medical, dental, and 401K match", + "Paid vacation and additional perks", + "Flexible remote work options", + "DoorDash stipend for work convenience", + "Autonomy in your work with strong team support", + "Opportunities to contribute to architectural improvements" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4" + }, + { + "employer_name": "Akamai Technologies, Inc", + "employer_logo": "https://www.akamai.com/site/en/images/logo/akamai-logo.png", + "employer_website": "http://www.akamai.com", + "employer_company_type": "Information", + "job_publisher": "Akamai Jobs", + "job_id": "T0BwRhlyjW8zRpTEAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Senior Software Engineer II - Remote", + "job_apply_link": "https://akamai.dejobs.org/virtual-usa/senior-software-engineer-ii-remote/0D5A751D161E402FA63C5012397B06B5/job/", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.6877, + "apply_options": [ + { + "publisher": "Akamai Jobs", + "apply_link": "https://akamai.dejobs.org/virtual-usa/senior-software-engineer-ii-remote/0D5A751D161E402FA63C5012397B06B5/job/", + "is_direct": false + }, + { + "publisher": "Salary.com", + "apply_link": "https://www.salary.com/job/akamai-technologies/senior-hypervisor-engineer-remote/j202306041813332822542", + "is_direct": false + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/principal-software-engineer-remote-at-akamai-technologies-3742114276", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=b64515be26c6fbf5", + "is_direct": false + }, + { + "publisher": "Built In", + "apply_link": "https://builtin.com/job/engineer/senior-lead-software-engineer-remote/2048507", + "is_direct": false + }, + { + "publisher": "Levels.fyi", + "apply_link": "https://www.levels.fyi/jobs?jobId=131426545890665158", + "is_direct": false + }, + { + "publisher": "CareerBuilder", + "apply_link": "https://www.careerbuilder.com/job/J3M6176QYM607CVV7T9", + "is_direct": false + }, + { + "publisher": "Glassdoor", + "apply_link": "https://www.glassdoor.com/job-listing/senior-software-engineer-remote-akamai-JV_KO0,31_KE32,38.htm?jl=1008921191748", + "is_direct": false + } + ], + "job_description": "Are you interested in leading innovation into new security product areas?\n\nDo you love collaborating with teams to solve complex problems?\n\nJoin our Global Web Security group!\n\nOur team designs and develops innovative solutions to help our customers protect their websites and secure online transactions. Powering over 85% of the top online retailers every day, we work collaboratively with other teams using cutting-edge technology to prevent data theft and downtime, and mitigating potentially devastating account takeover attempts.\n\nShape the future of our security products\n\nYou will be involved in every step of the development process to ensure a highly interactive, useful and usable web-based application. This will be done by developing and articulating requirements and product visions, through conceptualization, documenting, communicating your design work, and implementation.\n\nAs a Senior Software Engineer II, you will be responsible for:\n• Creating new features, enhancing existing features and optimizing existing functionality, from conception and design through to testing/deployment\n• Working on projects that make our network more stable, faster, and more secure\n• Partnering with our development/system QA teams to create regression tests that cover changes to our software\n• Collaborating with our operations teams to investigate and troubleshoot complex problem escalations for our customers\n\nDo what you love\n\nTo be successful in this role you will:\n• Have 8 years of relevant experience and a Bachelor's degree in Computer Science or its equivalent\n• Have expertise developing web applications or data pipelines in Java and experience building and consuming RESTful APIs\n• Have proven experience designing data structures\n• Demonstrate experience working with Spring\n• Demonstrate knowledge in Linux/ Unix system administration\n• Have experience with large-scale production infrastructure such as AWS and Azure\n• Possess the ability to work productively with team members to identify and resolve issues collaboratively\n\nWork in a way that works for you\n\nFlexBase, Akamai's Global Flexible Working Program, is based on the principles that are helping us create the best workplace in the world. When our colleagues said that flexible working was important to them, we listened. We also know flexible working is important to many of the incredible people considering joining Akamai. FlexBase, gives 95% of employees the choice to work from their home, their office, or both (in the country advertised). This permanent workplace flexibility program is consistent and fair globally, to help us find incredible talent, virtually anywhere. We are happy to discuss working options for this role and encourage you to speak with your recruiter in more detail when you apply.\n\nLearn (https://www.akamai.com/careers) what makes Akamai a great place to work\n\nConnect with us on social and see what life at Akamai is like!\n\nWe power and protect life online, by solving the toughest challenges, together.\n\nAt Akamai, we're curious, innovative, collaborative and tenacious. We celebrate diversity of thought and we hold an unwavering belief that we can make a meaningful difference. Our teams use their global perspectives to put customers at the forefront of everything they do, so if you are people-centric, you'll thrive here.\n\nWorking for you\n\nAt Akamai, we will provide you with opportunities to grow, flourish, and achieve great things. Our benefit options are designed to meet your individual needs for today and in the future. We provide benefits surrounding all aspects of your life:\n• Your health\n• Your finances\n• Your family\n• Your time at work\n• Your time pursuing other endeavors\n\nOur benefit plan options are designed to meet your individual needs and budget, both today and in the future.\n\nAbout us\n\nAkamai powers and protects life online. Leading companies worldwide choose Akamai to build, deliver, and secure their digital experiences helping billions of people live, work, and play every day. With the world's most distributed compute platform from cloud to edge we make it easy for customers to develop and run applications, while we keep experiences closer to users and threats farther away.\n\nJoin us\n\nAre you seeking an opportunity to make a real difference in a company with a global reach and exciting services and clients? Come join us and grow with a team of people who will energize and inspire you!\n\nAkamai Technologies is an Affirmative Action, Equal Opportunity Employer that values the strength that diversity brings to the workplace. All qualified applicants will receive consideration for employment and will not be discriminated against on the basis of gender, gender identity, sexual orientation, race/ethnicity, protected veteran status, disability, or other protected group status.\n\n#LI-Remote\n\nCompensation\n\nAkamai is committed to fair and equitable compensation practices. The base salary for this position ranges from 134,466ドル - 214,782ドル/year; a candidateâ€TMs salary is determined by various factors including, but not limited to, relevant work experience, skills, certifications and location. The compensation package may also include incentive compensation opportunities in the form of annual bonus or incentives, equity awards and an Employee Stock Purchase Plan (ESPP). Akamai provides industry-leading benefits including healthcare, 401K savings plan, company holidays, vacation (in the form of PTO), sick time, family friendly benefits including parental leave and an employee assistance program including a focus on mental and financial wellness; Eligibility requirements apply.", + "job_is_remote": true, + "job_posted_at_timestamp": 1697239331, + "job_posted_at_datetime_utc": "2023-10-13T23:22:11.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "retirement_savings", + "health_insurance", + "dental_coverage", + "paid_time_off" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=50&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=T0BwRhlyjW8zRpTEAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 96, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": true + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Have 8 years of relevant experience and a Bachelor's degree in Computer Science or its equivalent", + "Have expertise developing web applications or data pipelines in Java and experience building and consuming RESTful APIs", + "Have proven experience designing data structures", + "Demonstrate experience working with Spring", + "Demonstrate knowledge in Linux/ Unix system administration", + "Have experience with large-scale production infrastructure such as AWS and Azure", + "Possess the ability to work productively with team members to identify and resolve issues collaboratively" + ], + "Responsibilities": [ + "You will be involved in every step of the development process to ensure a highly interactive, useful and usable web-based application", + "This will be done by developing and articulating requirements and product visions, through conceptualization, documenting, communicating your design work, and implementation", + "As a Senior Software Engineer II, you will be responsible for:", + "Creating new features, enhancing existing features and optimizing existing functionality, from conception and design through to testing/deployment", + "Working on projects that make our network more stable, faster, and more secure", + "Partnering with our development/system QA teams to create regression tests that cover changes to our software", + "Collaborating with our operations teams to investigate and troubleshoot complex problem escalations for our customers" + ], + "Benefits": [ + "Your health", + "Your finances", + "Your time pursuing other endeavors", + "The base salary for this position ranges from 134,466ドル - 214,782ドル/year; a candidateâ€TMs salary is determined by various factors including, but not limited to, relevant work experience, skills, certifications and location", + "The compensation package may also include incentive compensation opportunities in the form of annual bonus or incentives, equity awards and an Employee Stock Purchase Plan (ESPP)", + "Akamai provides industry-leading benefits including healthcare, 401K savings plan, company holidays, vacation (in the form of PTO), sick time, family friendly benefits including parental leave and an employee assistance program including a focus on mental and financial wellness; Eligibility requirements apply" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_naics_code": "518210", + "job_naics_name": "Data Processing, Hosting, and Related Services" + }, + { + "employer_name": "LiveMarket", + "employer_logo": null, + "employer_website": null, + "employer_company_type": null, + "job_publisher": "LiveHire", + "job_id": "23a-0Q8qoZzlzdcMAAAAAA==", + "job_employment_type": "CONTRACTOR", + "job_title": "Software Engineer", + "job_apply_link": "https://www.livehire.com/careers/livemarket/job/RKYCM/PL1NL19IDM/software-engineer", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.7407, + "apply_options": [ + { + "publisher": "LiveHire", + "apply_link": "https://www.livehire.com/careers/livemarket/job/RKYCM/PL1NL19IDM/software-engineer", + "is_direct": false + }, + { + "publisher": "Glassdoor", + "apply_link": "https://www.glassdoor.com/job-listing/software-engineer-remote-livemarket-JV_KO0,24_KE25,35.htm?jl=1008834085965", + "is_direct": false + } + ], + "job_description": "Seeking a talented Software Engineer with expertise in SAP. As a Software Engineer, you will be responsible for developing, designing, and maintaining our software applications with a focus on SAP integration and customization. Your knowledge of SAP will play a crucial role in implementing robust and scalable solutions that meet business requirements.\n\nResponsibilities:\n• Collaborate with cross-functional teams to understand business requirements and translate them into technical specifications for SAP integration and customization.\n• Design, develop, test, and deploy high-quality software solutions using programming languages such as ABAP, Java, or Python, depending on project requirements.\n• Develop and maintain interfaces between SAP and other third-party applications, ensuring seamless data flow and synchronization.\n• Customize SAP modules, including but not limited to Financials, Human Resources, Supply Chain, and Manufacturing, as per business process requirements.\n• Troubleshoot and resolve technical issues, bugs, and performance bottlenecks in SAP-based systems, ensuring optimal system performance and reliability.\n• Collaborate with functional consultants and business stakeholders to gather requirements, provide technical guidance, and propose innovative solutions within the SAP ecosystem.\n• Conduct code reviews to ensure compliance with coding best practices, maintainable code standards, and adherence to security and data privacy guidelines.\n• Collaborate with SAP functional teams to perform system upgrades, enhancements, and configuration changes, ensuring minimal disruption to business operations.\n• Stay updated with the latest SAP technologies, releases, and best practices, and proactively identify opportunities to leverage new functionalities to improve business processes.\n• Document technical specifications, system configurations, and development activities for future reference and knowledge sharing.\n\nRequirements:\n• Bachelor's degree in Computer Science, Software Engineering, or a related field. Master's degree is a plus.\n• Proven hands-on experience in SAP development and customization using ABAP, Java, or Python.\n• Excellent interpersonal and communication skills to collaborate effectively with cross-functional teams and stakeholders.\n• Ability to work independently and handle multiple priorities in a fast-paced environment.\n• Strong analytical and critical thinking abilities to understand complex business requirements and translate them into technical solutions.\n• SAP certifications such as SAP Certified Development Associate (ABAP) or similar are a plus.\n\nThe Software Engineer opportunity is used to fill high-volume roles or frequently hired positions to be used for future openings. By filling out an application you are joining our LiveMarket, where you have the opportunity to be matched with openings that are the right fit for you. The responsibilities and requirements of each role vary by opportunity. Our team will help guide you on how to best showcase your skills and match you to the right opportunity for you!", + "job_is_remote": false, + "job_posted_at_timestamp": 1695945600, + "job_posted_at_datetime_utc": "2023-09-29T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=50&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=23a-0Q8qoZzlzdcMAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": true + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Bachelor's degree in Computer Science, Software Engineering, or a related field", + "Proven hands-on experience in SAP development and customization using ABAP, Java, or Python", + "Excellent interpersonal and communication skills to collaborate effectively with cross-functional teams and stakeholders", + "Ability to work independently and handle multiple priorities in a fast-paced environment", + "Strong analytical and critical thinking abilities to understand complex business requirements and translate them into technical solutions" + ], + "Responsibilities": [ + "As a Software Engineer, you will be responsible for developing, designing, and maintaining our software applications with a focus on SAP integration and customization", + "Your knowledge of SAP will play a crucial role in implementing robust and scalable solutions that meet business requirements", + "Collaborate with cross-functional teams to understand business requirements and translate them into technical specifications for SAP integration and customization", + "Design, develop, test, and deploy high-quality software solutions using programming languages such as ABAP, Java, or Python, depending on project requirements", + "Develop and maintain interfaces between SAP and other third-party applications, ensuring seamless data flow and synchronization", + "Customize SAP modules, including but not limited to Financials, Human Resources, Supply Chain, and Manufacturing, as per business process requirements", + "Troubleshoot and resolve technical issues, bugs, and performance bottlenecks in SAP-based systems, ensuring optimal system performance and reliability", + "Collaborate with functional consultants and business stakeholders to gather requirements, provide technical guidance, and propose innovative solutions within the SAP ecosystem", + "Conduct code reviews to ensure compliance with coding best practices, maintainable code standards, and adherence to security and data privacy guidelines", + "Collaborate with SAP functional teams to perform system upgrades, enhancements, and configuration changes, ensuring minimal disruption to business operations", + "Stay updated with the latest SAP technologies, releases, and best practices, and proactively identify opportunities to leverage new functionalities to improve business processes", + "Document technical specifications, system configurations, and development activities for future reference and knowledge sharing" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4" + }, + { + "employer_name": "Rubris", + "employer_logo": null, + "employer_website": "https://www.rubris.com", + "employer_company_type": null, + "job_publisher": "Rubris", + "job_id": "RFwG8o7O0BGH3hfSAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer - Remote", + "job_apply_link": "https://rubris-inc.breezy.hr/p/1984a3e8968b-software-engineer-remote", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.6772, + "apply_options": [ + { + "publisher": "Rubris", + "apply_link": "https://rubris-inc.breezy.hr/p/1984a3e8968b-software-engineer-remote", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=6d55d549a205eba6", + "is_direct": true + }, + { + "publisher": "WayUp", + "apply_link": "https://www.wayup.com/i-j-Rubris-671476839837314/", + "is_direct": false + }, + { + "publisher": "Glassdoor", + "apply_link": "https://www.glassdoor.com/job-listing/software-engineer-remote-rubris-JV_KO0,24_KE25,31.htm?jl=1008346668163", + "is_direct": true + }, + { + "publisher": "Jooble", + "apply_link": "https://jooble.org/jdp/-6616082294198432906/Software-Engineer-+-Remote-Remote", + "is_direct": false + }, + { + "publisher": "Recruit.net", + "apply_link": "https://www.recruit.net/job/software-engineer-jobs/18CC6C6C0E07C1C1", + "is_direct": false + } + ], + "job_description": "Rubris Inc. is a software company that provides technology and support for complex business and legal processes in the Mass Tort industry. We create solutions to streamline and automate processes to improve efficiency in the management of often complex workflows in this industry.\n\nRubris is looking for a Software Engineer to play a pivotal role in the organization by helping us design and build new features and enhance our highly configurable and dynamic application as we support our ever growing list of projects and clients, each with their own complexities.\n\nOur incredible software development team at Rubris is looking to add smart people that can help us improve our application, as well as our software processes. We anticipate continued expansion and plenty of opportunities and advancement for people who can step in and help lead us in that growth.\n\nOur focus is about hiring smart people who care about software design, architecture, automated testing and processes more than we care about experience in specific technologies. That being said, our application is based on Ruby on Rails 7 with a Postgres backend and some Javascript and CSS sprinkled in, running in the AWS Cloud. All of our developers are full stack... as comfortable styling a web page as they are writing a SQL query, although most have their strengths in one area or another.\n\nPrimary Job Responsibilities Include:\n• Write and update code for proprietary database-backed web application\n• Participate in design discussions for upcoming features\n• Coordinate with team to ensure that code changes are merged and deployed smoothly\n• Collaborate with team when changes are complex, time-critical, and/or high-risk\n• Update documentation as needed for new and existing features\n• Work with team members design new product features and enhancements\n• Assist in the scoping and sequencing of upcoming work items\n• Translate business requirements into software designs and code\n• Identify enhancements, refactoring opportunities and fix bugs as necessary\n• Create custom SQL queries and reports\n• Follow best practices for test-driven development, refactoring, code standards and documentation\n• Create and maintain unit tests\n• Create custom Ruby scripts to load data, perform post-deployment migrations in support of the Operations team\n• Regularly attends stand up meetings and participate in team retrospectives\n\nPosition requirements:\n• Bachelor’s degree in computer science, information technology, or related field preferred and at least 2-3 years of software development experience\n• Proactive, self-starter with excellent project management skills and ability to manage multiple tasks effectively\n• Excellent communication skills with the ability to engage, influence, and inspire partners and stakeholders to drive collaboration and alignment\n• High degree of organization, process oriented, individual initiative, and personal accountability\n• Able to communicate professionally, concisely, and factually in written and oral formats\n• Adaptable and flexible in providing client support and supporting other team members; able to work outside of business hours when needed\n• Able to maintain confidentiality of sensitive information\n• Able to maintain composure and professionalism in the face of rapid changes and urgent requests\n• Strong attention to detail with a commitment to accuracy and thoroughness\n• Able to independently and actively manage time, tasks, and tools to meet deadlines and deliverables\n• Technical skills preferred, not required\no Ruby on Rails\no PostgreSQL\no YAML Configuration Files\no Integration Testing\no Agile (Kanban Style)\no Bootstrap\no AWS\no GitHub and GitHub Actions\no Docker\n\nWHAT WE OFFER:\n• Work that Matters\n• 100% work from home\n• Fully paid employee medical, dental, and vision insurance\n• Five weeks of annual paid time off (PTO) plus 11 paid holidays\n• 401(k) plan with employer match\n• Quarterly bonus program\n• Training, coaching, and career growth\n\nRubris Values:\n\nShift your perspective.\n\nIdeas are developed by understanding different points of view. As Albert Einstein said, \"No problem can be solved from the same level of consciousness that created it."\n\nBe generous.\n\nWe have better experiences and achieve more when kindness and generosity are abundant. Share your time, share your experience, and share your compassion.\n\nLove what you do.\n\nWake up each morning excited to learn new skills, incubate ideas, and develop relationships. Choose your love of the process over your desire for control of the outcome.\n\nWe are an equal opportunity employer.\n\nRubris believes in creating a culture of equality in our workplace. We embrace difference and diversity of identity, experience and thought and seek to attract, develop, and advance the most talented individuals regardless of their race, sexual orientation, religion, age, gender, disability status or any other dimension of diversity. The success of our team members drives the success of our business and promoting a culture in which every team member feels respected and supported creates a workplace in which we all can accomplish our goals.", + "job_is_remote": true, + "job_posted_at_timestamp": 1670889600, + "job_posted_at_datetime_utc": "2022-12-13T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "retirement_savings", + "paid_time_off", + "dental_coverage", + "health_insurance" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=50&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=RFwG8o7O0BGH3hfSAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 24, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Proactive, self-starter with excellent project management skills and ability to manage multiple tasks effectively", + "Excellent communication skills with the ability to engage, influence, and inspire partners and stakeholders to drive collaboration and alignment", + "High degree of organization, process oriented, individual initiative, and personal accountability", + "Able to communicate professionally, concisely, and factually in written and oral formats", + "Adaptable and flexible in providing client support and supporting other team members; able to work outside of business hours when needed", + "Able to maintain confidentiality of sensitive information", + "Able to maintain composure and professionalism in the face of rapid changes and urgent requests", + "Strong attention to detail with a commitment to accuracy and thoroughness", + "Able to independently and actively manage time, tasks, and tools to meet deadlines and deliverables", + "Ruby on Rails", + "PostgreSQL", + "YAML Configuration Files", + "Integration Testing", + "Agile (Kanban Style)", + "Bootstrap", + "AWS", + "GitHub and GitHub Actions" + ], + "Responsibilities": [ + "Write and update code for proprietary database-backed web application", + "Participate in design discussions for upcoming features", + "Coordinate with team to ensure that code changes are merged and deployed smoothly", + "Collaborate with team when changes are complex, time-critical, and/or high-risk", + "Update documentation as needed for new and existing features", + "Work with team members design new product features and enhancements", + "Assist in the scoping and sequencing of upcoming work items", + "Translate business requirements into software designs and code", + "Identify enhancements, refactoring opportunities and fix bugs as necessary", + "Create custom SQL queries and reports", + "Follow best practices for test-driven development, refactoring, code standards and documentation", + "Create and maintain unit tests", + "Create custom Ruby scripts to load data, perform post-deployment migrations in support of the Operations team", + "Regularly attends stand up meetings and participate in team retrospectives" + ], + "Benefits": [ + "Work that Matters", + "100% work from home", + "Fully paid employee medical, dental, and vision insurance", + "Five weeks of annual paid time off (PTO) plus 11 paid holidays", + "401(k) plan with employer match", + "Quarterly bonus program", + "Training, coaching, and career growth" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4" + }, + { + "employer_name": "Mastercard", + "employer_logo": "https://www.mastercard.us/content/dam/public/mastercardcom/na/us/en/homepage/Home/mc-logo-52.svg", + "employer_website": "http://www.mastercard.com", + "employer_company_type": "Finance", + "job_publisher": "Careers At Mastercard", + "job_id": "GDGo5Zp05loZ1kanAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Solution Architect - Lead Software Engineer", + "job_apply_link": "https://careers.mastercard.com/us/en/job/R-207654/Solution-Architect-Lead-Software-Engineer", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.9031, + "apply_options": [ + { + "publisher": "Careers At Mastercard", + "apply_link": "https://careers.mastercard.com/us/en/job/R-207654/Solution-Architect-Lead-Software-Engineer", + "is_direct": false + }, + { + "publisher": "Monster", + "apply_link": "https://www.monster.com/job-openings/solution-architect-lead-software-engineer-kansas-city-mo--2c048ce3-31cd-4dbd-bb36-f0cb54549f0e", + "is_direct": false + }, + { + "publisher": "ZipRecruiter", + "apply_link": "https://www.ziprecruiter.com/c/Mastercard,-Inc./Job/Solution-Architect-Lead-Software-Engineer/-in-Kansas-City,MO?jid=581ca801f86f2cb0", + "is_direct": false + }, + { + "publisher": "Salary.com", + "apply_link": "https://www.salary.com/job/us-mastercard-technologies-llc/solution-architect-lead-software-engineer/j202310120545255608036", + "is_direct": false + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/solution-architect-lead-software-engineer-at-mastercard-3736359264", + "is_direct": false + }, + { + "publisher": "BeBee", + "apply_link": "https://us.bebee.com/job/20231014-d9d4615d7031427f7f7a77e4386a74a2", + "is_direct": false + }, + { + "publisher": "Ladders", + "apply_link": "https://www.theladders.com/job/solution-architect-principal-software-engineer-mastercard-kansas-city-mo_64790784", + "is_direct": false + }, + { + "publisher": "CareerBuilder", + "apply_link": "https://www.careerbuilder.com/job/J3V8HV6YDC5KPVRX2D2", + "is_direct": false + } + ], + "job_description": "Our Purpose\n\nWe work to connect and power an inclusive, digital economy that benefits everyone, everywhere by making transactions safe, simple, smart and accessible. Using secure data and networks, partnerships and passion, our innovations and solutions help individuals, financial institutions, governments and businesses realize their greatest potential. Our decency quotient, or DQ, drives our culture and everything we do inside and outside of our company. We cultivate a culture of inclusion for all employees that respects their individual strengths, views, and experiences. We believe that our differences enable us to be a better team – one that makes better decisions, drives innovation and delivers better business results.\n\nTitle and Summary\n\nSolution Architect - Lead Software Engineer\n\nThe Solution Architect will be responsible for devising architectures and providing technical leadership for initiatives targeting fraud, customer risk and authentication. These initiates will drive new capabilities into a powerful state-of-the-art Decision Management platform which processes billions of transactions per month utilizing a multi-tiered, message-oriented approach to ensure high performance and availability.\n\nThe individual assuming this role will provide technical leadership and expertise focused on creating new platform capabilities at the heart of this high-volume transaction processing system, including: web applications for managing fraud solutions and fraud events; APIs for exposing capabilities to customers; and vendor solutions for business rules management and fraud scoring. Additionally, this role will partner with other architects, developers, analysts, as well as business partners and other Mastercard technology teams to drive exceptional and impactful business outcomes. A successful candidate will deliver innovative, robust, cost effective technology solutions which align to enterprise strategies and achieve business results.\n\nOverview\n\n• The Solution Architecture team sets strategic vision and defines new\ncapabilities for Mastercard's Decision Management Platform\n• This platform provides business solutions to combat fraud and authenticate users and processes billions of transactions per month\n• Solutions Architects will provide technical thought leadership and expertise for new platform capabilities\n• These new capabilities will build on a high volume transaction processing system, web applications for managing fraud solutions and fraud events, APIs for exposing capabilities to customers, and vendor solutions for business rules management and fraud scoring\n• Would you like to be a part of developing industry leading solutions for fighting fraud?\n• Are you motivated by using state of the art technologies to speed business solutions to market?\n• Do you want to create innovative solutions to challenging business problems?\n\nRole\n\n• Delivering innovative end-to-end architectural solutions -- from the conceptual to the application level for new initiatives\n• Partnering with business and other technology teams to set technical strategy, roadmaps and direction\n• Innovating new approaches to meet business needs, lower costs, and improve agility\n• Providing direction to project technical leads and reviewing designs\n• Mentor technical individual contributors\n• Estimating and planning new efforts\n\nAll About You\n\n• Education: Bachelor’s Degree in Computer Science, Engineering, or related technical field\n• Experience architecting large and complex systems from the conceptual architecture level down through the application architecture level\n• Experience providing technical thought leadership across an organization\n• A wide breadth and depth of technical experience including Java, Linux, Oracle, and virtualization technologies\n• Experience with agile software development processes and architecture governance\n• Strong verbal and written communication skills with the ability to communicate to an audience at all levels within an organization\n• Self-motivated with the ability to accomplish tasks with minimal direction\n• Ability to manage multiple efforts simultaneously and meet agreed upon deadlines\n\nDesirable Knowledge/Experience\n\n• Experience with web architecture and application development, including APIs\n• Experience with high performance data storage such as GemFire in-memory Object Grid\n• Database experience (e.g., Oracle)\n• Experience integrating vendor and open source products into an overall system\n• Experience developing and supporting highly scalable/high performance transaction processing systems\n\nIn the US, Mastercard is an inclusive Equal Employment Opportunity employer that considers applicants without regard to gender, gender identity, sexual orientation, race, ethnicity, disabled or veteran status, or any other characteristic protected by law. If you require accommodations or assistance to complete the online application process, please contact reasonable_accommodation@mastercard.com and identify the type of accommodation or assistance you are requesting. Do not include any medical or health information in this email. The Reasonable Accommodations team will respond to your email promptly.\n\nCorporate Security Responsibility\n\nAll activities involving access to Mastercard assets, information, and networks comes with an inherent risk to the organization and, therefore, it is expected that every person working for, or on behalf of, Mastercard is responsible for information security and must:\n• Abide by Mastercard’s security policies and practices;\n• Ensure the confidentiality and integrity of the information being accessed;\n• Report any suspected information security violation or breach, and\n• Complete all periodic mandatory security trainings in accordance with Mastercard’s guidelines.", + "job_is_remote": false, + "job_posted_at_timestamp": 1697068800, + "job_posted_at_datetime_utc": "2023-10-12T00:00:00.000Z", + "job_city": "O'Fallon", + "job_state": "MO", + "job_country": "US", + "job_latitude": 38.810608, + "job_longitude": -90.699844, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=60&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=GDGo5Zp05loZ1kanAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Education: Bachelor’s Degree in Computer Science, Engineering, or related technical field", + "Experience architecting large and complex systems from the conceptual architecture level down through the application architecture level", + "Experience providing technical thought leadership across an organization", + "A wide breadth and depth of technical experience including Java, Linux, Oracle, and virtualization technologies", + "Experience with agile software development processes and architecture governance", + "Strong verbal and written communication skills with the ability to communicate to an audience at all levels within an organization", + "Self-motivated with the ability to accomplish tasks with minimal direction", + "Ability to manage multiple efforts simultaneously and meet agreed upon deadlines", + "Experience with web architecture and application development, including APIs", + "Experience with high performance data storage such as GemFire in-memory Object Grid", + "Database experience (e.g., Oracle)", + "Experience integrating vendor and open source products into an overall system", + "Experience developing and supporting highly scalable/high performance transaction processing systems" + ], + "Responsibilities": [ + "The Solution Architect will be responsible for devising architectures and providing technical leadership for initiatives targeting fraud, customer risk and authentication", + "These initiates will drive new capabilities into a powerful state-of-the-art Decision Management platform which processes billions of transactions per month utilizing a multi-tiered, message-oriented approach to ensure high performance and availability", + "The individual assuming this role will provide technical leadership and expertise focused on creating new platform capabilities at the heart of this high-volume transaction processing system, including: web applications for managing fraud solutions and fraud events; APIs for exposing capabilities to customers; and vendor solutions for business rules management and fraud scoring", + "Additionally, this role will partner with other architects, developers, analysts, as well as business partners and other Mastercard technology teams to drive exceptional and impactful business outcomes", + "Delivering innovative end-to-end architectural solutions -- from the conceptual to the application level for new initiatives", + "Partnering with business and other technology teams to set technical strategy, roadmaps and direction", + "Innovating new approaches to meet business needs, lower costs, and improve agility", + "Providing direction to project technical leads and reviewing designs", + "Mentor technical individual contributors", + "Estimating and planning new efforts", + "Abide by Mastercard’s security policies and practices;", + "Ensure the confidentiality and integrity of the information being accessed;", + "Report any suspected information security violation or breach, and", + "Complete all periodic mandatory security trainings in accordance with Mastercard’s guidelines" + ] + }, + "job_job_title": "Solution architect", + "job_posting_language": "en", + "job_onet_soc": "15119900", + "job_onet_job_zone": "4", + "job_occupational_categories": ["Software Engineering"], + "job_naics_code": "522110", + "job_naics_name": "Commercial Banking" + }, + { + "employer_name": "Cox Enterprises", + "employer_logo": null, + "employer_website": null, + "employer_company_type": null, + "job_publisher": "Cox Careers - Cox Enterprises", + "job_id": "CU1joJchX73_ima6AAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Senior Software Engineer", + "job_apply_link": "https://jobs.coxenterprises.com/en/jobs/job/r202331454-senior-software-engineer/", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.9063, + "apply_options": [ + { + "publisher": "Cox Careers - Cox Enterprises", + "apply_link": "https://jobs.coxenterprises.com/en/jobs/job/r202331454-senior-software-engineer/", + "is_direct": false + }, + { + "publisher": "BeBee", + "apply_link": "https://us.bebee.com/job/20231004-5de55ecbaadf95c9bca2884af859105e", + "is_direct": false + }, + { + "publisher": "Learn4Good", + "apply_link": "https://www.learn4good.com/jobs/dallas/texas/info_technology/2656805907/e/", + "is_direct": false + } + ], + "job_description": "Technology We Use:\nPHP, .Net, Angular, MySQL, C#, AWS (EKS, SNS, SQS, Lambda), Docker, Helm, REST\n\nResponsibilities\n• Build and integrate new architecture, frameworks, technologies and everything that makes for great software.\n• Design, develop and implement unit and scenario testing for existing code base and for new functionality under development, using a strong understanding of security-based design patterns\n• Provide senior-level systems design, development, programming and support for the Express Recoveries application operating in our LAMP environment.\n• Strong experience in modern PHP Frameworks (Symfony, Laravel, etc)\n• Serve as a technical expert in the evaluation and testing of the capabilities, characteristics and requirements of existing and emerging information systems technologies.\n• Maintain and apply strong understanding of business practices to effectively fulfill responsibilities while working on multiple high-priority tasks\n• Make recommendations as to feasibility of implementation of modified or new technologies and / or frameworks\n• Play an active role in the design and development of new code\n• Participate in scrum agile development process\nQualification\n• Bachelor's degree in a related discipline and 4 years of experience in a related field. The right candidate could also have a different combination, such as master's degree and 2 years of experience; a Ph. D. and up to 1 year of experience; or 16 years of experience in a related field.\n• Solid knowledge of programming fundamentals—algorithms, data structures, design patterns, and paradigms\n• Experience building successful products as a full-stack engineer with increasing responsibilities\n• Experience building, tuning and supporting large scale, high-availability SaaS platforms\n• Experience consuming/creating JSON-based, RESTful APIs\n• Experience with 3rd party API integrations\n• Able to work fast and deliver fast, check your work and take pride in shipping quality.\n• Take the initiative to find new ways to solve problems. You help the team understand your point of view and advocate for great solutions.\n• Ability to quickly learn new technology and apply knowledge to solve technical and business problems\n• Strong written and verbal communication skills\n• Experience with Agile process\nPreferred skills & experience\n• Strong understanding of AWS or other cloud technologies\n• Familiarity with modern front-end technologies such as react or other single page application frameworks and their interactions with APIs\n• Experience leading major projects with API-first approach\n• Experience with .NET, C# and technologies such as WEB API\n• Experience operating in Scaled Agile Framework (SAFe)", + "job_is_remote": false, + "job_posted_at_timestamp": 1696014802, + "job_posted_at_datetime_utc": "2023-09-29T19:13:22.000Z", + "job_city": "Dallas", + "job_state": "TX", + "job_country": "US", + "job_latitude": 32.776665, + "job_longitude": -96.79699, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=60&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=CU1joJchX73_ima6AAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 192, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Bachelor's degree in a related discipline and 4 years of experience in a related field", + "The right candidate could also have a different combination, such as master's degree and 2 years of experience; a Ph. D. and up to 1 year of experience; or 16 years of experience in a related field", + "Solid knowledge of programming fundamentals—algorithms, data structures, design patterns, and paradigms", + "Experience building successful products as a full-stack engineer with increasing responsibilities", + "Experience building, tuning and supporting large scale, high-availability SaaS platforms", + "Experience consuming/creating JSON-based, RESTful APIs", + "Experience with 3rd party API integrations", + "Able to work fast and deliver fast, check your work and take pride in shipping quality", + "Ability to quickly learn new technology and apply knowledge to solve technical and business problems", + "Strong written and verbal communication skills", + "Experience with Agile process" + ], + "Responsibilities": [ + "Build and integrate new architecture, frameworks, technologies and everything that makes for great software", + "Design, develop and implement unit and scenario testing for existing code base and for new functionality under development, using a strong understanding of security-based design patterns", + "Provide senior-level systems design, development, programming and support for the Express Recoveries application operating in our LAMP environment", + "Strong experience in modern PHP Frameworks (Symfony, Laravel, etc)", + "Serve as a technical expert in the evaluation and testing of the capabilities, characteristics and requirements of existing and emerging information systems technologies", + "Maintain and apply strong understanding of business practices to effectively fulfill responsibilities while working on multiple high-priority tasks", + "Make recommendations as to feasibility of implementation of modified or new technologies and / or frameworks", + "Play an active role in the design and development of new code", + "Participate in scrum agile development process", + "Take the initiative to find new ways to solve problems", + "You help the team understand your point of view and advocate for great solutions" + ] + }, + "job_job_title": null, + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4" + }, + { + "employer_name": "Walmart", + "employer_logo": "https://animationvisarts.com/wp-content/uploads/2020/08/Walmart-logo-2008-Now.jpg", + "employer_website": "https://www.walmart.com", + "employer_company_type": "Retail", + "job_publisher": "Walmart Careers", + "job_id": "At82GwJz7GP4GKxzAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer III", + "job_apply_link": "https://careers.walmart.com/us/jobs/WD1690018-software-engineer-iii", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.7968, + "apply_options": [ + { + "publisher": "Walmart Careers", + "apply_link": "https://careers.walmart.com/us/jobs/WD1690018-software-engineer-iii", + "is_direct": false + }, + { + "publisher": "Dice.com", + "apply_link": "https://www.dice.com/job-detail/6f5c2c43-1b70-458b-b97b-ea74af1e76d0", + "is_direct": false + }, + { + "publisher": "ZipRecruiter", + "apply_link": "https://www.ziprecruiter.com/c/Walmart,-Inc./Job/(USA)-Software-Engineer-III/-in-Bentonville,AR?jid=5e501d9500ad3727", + "is_direct": false + }, + { + "publisher": "Ladders", + "apply_link": "https://www.theladders.com/job/usa-software-engineer-iii-walmart-bentonville-ar_65325518", + "is_direct": false + }, + { + "publisher": "FactoryFix", + "apply_link": "https://jobs.factoryfix.com/jobs/software-engineer-iii--bentonville--ar--3502788246--V2", + "is_direct": false + }, + { + "publisher": "Walmart - Talentify", + "apply_link": "https://walmart.talentify.io/job/software-engineer-iii-bentonville-arkansas-walmart-wd1690018", + "is_direct": false + }, + { + "publisher": "Job Listings | Barklis", + "apply_link": "https://barklis.com/job-listings/01hd8p0e3mg0nrbwcjgfn1bbkk", + "is_direct": false + } + ], + "job_description": "What you'll do...\n\nPosition: Software Engineer III\n\nJob Location: 702 SW 8th Street, Bentonville, AR 72712\n\nDuties: Creates and delivers presentations on application solutions to diverse audiences (for example, suppliers, technical staff) by gathering required information; developing materials; and identifying recommendations. Demonstrates up-to-date expertise in Information Systems Division (ISD)-Applications Development area and applies this to the development, execution, and improvement of action plans by providing expert advice and guidance to others in the application of information and best practices; supporting and aligning efforts to meet Customer and business needs; and building commitment for perspectives and rationales. Develops Associate capabilities by mentoring and teaching team members (for example, coding languages, scripts, documentation requirements, programming standards, DBMS technologies); assigning tasks; and reviewing and approving recommended solutions. Manages product installation upgrades (for example, Information Systems Division (ISD) application solutions, third-party products) by evaluating new application components; determining release schedules; and establishing installation timelines. Provides complex application solutions by identifying business requirements; researching potential solutions; making recommendations to meet end-user business objectives; conducting analysis and design; writing data analysis documents; creating technical design documentation; and writing detailed checklists for change control implementations. Supports Information Systems Division (ISD) applications by coordinating responses to user questions and problems; overseeing research of service level functions (for example, performance, availability, reliability); driving problem identification to root cause; coordinating resolutions, changes, and improvements; and leading and engaging war and focus room meetings. Leads efforts to increase Information Systems Division (ISD) team effectiveness by identifying and implementing best practices; utilizing work review processes (for example, code, design, technical); and improving Customer communications. Participates in team projects by following Information Systems Development Life Cycle (ISDLC) processes; leading projects; creating and approving project plans; directing development of program specifications and programs; gathering requested information; writing, testing, and debugging complex programs and scripts; implementing test scripts and procedures; testing and installing third-party software; writing instruction manuals; compiling documentation reports; and documenting application changes. Telecommuting / working from home is permissible.\n\nMinimum education and experience required: Bachelor’s degree in Computer Science, Information Technology, Engineering or related, plus 5 years of software engineering experience.\n\nSkills required: Must have experience with: implementing and maintaining REST API with Java; implementing and maintaining REST API with Spring Boot; designing applications in object-oriented programming languages; writing complex queries in SQL databases; developing applications using SQL as a backend; testing and debugging REST API applications; maintaining code using GitHub; developing innovative solutions for complex problems in cloud computing environments like Azure; writing unit tests for applications; and processing data using queries and code. Employer will accept any amount of experience with the required skills.\n\nSalary Range: 115,149ドル to 180,000ドル. Additional compensation includes annual or quarterly performance incentives. Additional compensation for certain positions may also include: Regional Pay Zone (RPZ) (based on location) and Stock equity incentives\n\nBenefits: At Walmart, we offer competitive pay as well as performance-based incentive awards and other great benefits for a happier mind, body, and wallet. Health benefits include medical, vision and dental coverage. Financial benefits include 401(k), stock purchase and company-paid life insurance. Paid time off benefits include PTO (including sick leave), parental leave, family care leave, bereavement, jury duty and voting. Other benefits include short-term and long-term disability, education assistance with 100% company paid college degrees, company discounts, military service pay, adoption expense reimbursement, and more.\n\nEligibility requirements apply to some benefits and may depend on your job classification and length of employment. Benefits are subject to change and may be subject to a specific plan or program terms. For information about benefits and eligibility, see One.Walmart.com.\n\nWal-Mart is an Equal Opportunity Employer.\n\n#LI-DNP #LI-DNI", + "job_is_remote": false, + "job_posted_at_timestamp": 1697673600, + "job_posted_at_datetime_utc": "2023-10-19T00:00:00.000Z", + "job_city": "Bentonville", + "job_state": "AR", + "job_country": "US", + "job_latitude": 36.372356, + "job_longitude": -94.21021, + "job_benefits": [ + "retirement_savings", + "paid_time_off", + "health_insurance", + "dental_coverage" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=60&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=At82GwJz7GP4GKxzAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 60, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Minimum education and experience required: Bachelor’s degree in Computer Science, Information Technology, Engineering or related, plus 5 years of software engineering experience", + "Skills required: Must have experience with: implementing and maintaining REST API with Java; implementing and maintaining REST API with Spring Boot; designing applications in object-oriented programming languages; writing complex queries in SQL databases; developing applications using SQL as a backend; testing and debugging REST API applications; maintaining code using GitHub; developing innovative solutions for complex problems in cloud computing environments like Azure; writing unit tests for applications; and processing data using queries and code", + "Employer will accept any amount of experience with the required skills" + ], + "Responsibilities": [ + "Duties: Creates and delivers presentations on application solutions to diverse audiences (for example, suppliers, technical staff) by gathering required information; developing materials; and identifying recommendations", + "Demonstrates up-to-date expertise in Information Systems Division (ISD)-Applications Development area and applies this to the development, execution, and improvement of action plans by providing expert advice and guidance to others in the application of information and best practices; supporting and aligning efforts to meet Customer and business needs; and building commitment for perspectives and rationales", + "Develops Associate capabilities by mentoring and teaching team members (for example, coding languages, scripts, documentation requirements, programming standards, DBMS technologies); assigning tasks; and reviewing and approving recommended solutions", + "Manages product installation upgrades (for example, Information Systems Division (ISD) application solutions, third-party products) by evaluating new application components; determining release schedules; and establishing installation timelines", + "Provides complex application solutions by identifying business requirements; researching potential solutions; making recommendations to meet end-user business objectives; conducting analysis and design; writing data analysis documents; creating technical design documentation; and writing detailed checklists for change control implementations", + "Supports Information Systems Division (ISD) applications by coordinating responses to user questions and problems; overseeing research of service level functions (for example, performance, availability, reliability); driving problem identification to root cause; coordinating resolutions, changes, and improvements; and leading and engaging war and focus room meetings", + "Leads efforts to increase Information Systems Division (ISD) team effectiveness by identifying and implementing best practices; utilizing work review processes (for example, code, design, technical); and improving Customer communications", + "Participates in team projects by following Information Systems Development Life Cycle (ISDLC) processes; leading projects; creating and approving project plans; directing development of program specifications and programs; gathering requested information; writing, testing, and debugging complex programs and scripts; implementing test scripts and procedures; testing and installing third-party software; writing instruction manuals; compiling documentation reports; and documenting application changes" + ], + "Benefits": [ + "Salary Range: 115,149ドル to 180,000ドル", + "Additional compensation includes annual or quarterly performance incentives. Additional compensation for certain positions may also include: Regional Pay Zone (RPZ) (based on location) and Stock equity incentives", + "Benefits: At Walmart, we offer competitive pay as well as performance-based incentive awards and other great benefits for a happier mind, body, and wallet", + "Health benefits include medical, vision and dental coverage", + "Financial benefits include 401(k), stock purchase and company-paid life insurance", + "Paid time off benefits include PTO (including sick leave), parental leave, family care leave, bereavement, jury duty and voting", + "Other benefits include short-term and long-term disability, education assistance with 100% company paid college degrees, company discounts, military service pay, adoption expense reimbursement, and more" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_naics_code": "452990", + "job_naics_name": "All Other General Merchandise Stores" + }, + { + "employer_name": "The Home Depot", + "employer_logo": "https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/TheHomeDepot.svg/1200px-TheHomeDepot.svg.png", + "employer_website": "http://www.homedepot.com", + "employer_company_type": "Retail", + "job_publisher": "Careers.peopleclick.com", + "job_id": "U6cGUpEQvMZ1lF2uAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer Senior Manager (Remote)", + "job_apply_link": "https://careers.peopleclick.com/careerscp/client_homedepot/external/en-us/gateway.do?functionName=viewFromLink&jobPostId=438568&localeCode=en-us", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.633, + "apply_options": [ + { + "publisher": "Careers.peopleclick.com", + "apply_link": "https://careers.peopleclick.com/careerscp/client_homedepot/external/en-us/gateway.do?functionName=viewFromLink&jobPostId=438568&localeCode=en-us", + "is_direct": false + }, + { + "publisher": "Adzuna", + "apply_link": "https://www.adzuna.com/details/4383884480", + "is_direct": false + }, + { + "publisher": "Learn4Good", + "apply_link": "https://www.learn4good.com/jobs/online_remote/software_development/2638052784/e/", + "is_direct": false + }, + { + "publisher": "ExploreJobSearch", + "apply_link": "https://jobs.explorejobsearch.com/job-detail/307910/software-engineer-senior-manager-remote", + "is_direct": false + } + ], + "job_description": "Position Purpose:\n\nAs a Software Engineer Sr. Manager, you will be given a chance to contribute to the products we create, help grow the next generation of engineering talent, and help shape the technology strategy of the enterprise.\nIn addition, you will be given the chance to work with our most strategic vendors to ensure that 3rd party tools and applications are readily available to all product teams that are interested in using them. The Sr. Manager must exhibit the ability to lead managers and their teams and drive change management and process improvement.\nKey Responsibilities:\n• 20% Strategy & Planning:\n• Works and negotiates with partners on the staffing of skilled engineering positions on product teams\n• Contributes to and makes recommendations for strategic plans in support of key objectives in a timely and fiscally responsible manner\n• Supports and nurtures strategic vendor relationships; recommends ways to influence vendors that aligned to domain, portfolio, and enterprise strategic objectives\n• Evaluates new technologies for adoption across the enterprise\n• Helps to identify and demonstrate emerging technologies for adoption by product teams\n• 20% Delivery & Execution:\n• Collaborates and pairs with product team members (UX, engineering, and product management) to create secure, reliable, scalable software solutions\n• Documents, reviews and ensures that all quality and change control standards are met\n• Writes custom code or scripts to automate infrastructure, monitoring services, and test cases\n• Works with vendors and partners for the successful implementation of critical tooling and platforms\n• Creates meaningful dashboards, logging, alerting, and responses to ensure that issues are captured and addressed proactively\n• Contributes to enterprise-wide tools to drive destructive testing, automation, and engineering empowerment\n• Participates in and leads review board sessions to drive consistency across the enterprise\n• Makes suggestions that help drive operational excellence to create internal customer satisfaction and meet operational metrics\n• Fills in on product teams for engineers who are out of the office\n• 15% Support & Enablement:\n• Fields questions from engineers, product teams, or support teams\n• Monitors tools and participates in conversations to encourage collaboration across product teams\n• Learns, through reading, tutorials, and videos, new technologies and best practices being used within other technology organizations\n• Provides application support for software running in production\n• Acts as a technical escalation point for the engineers on the team\n• 45% People:\n• Provides leadership, mentoring, and coaching to Software Engineers\n• Attracts, retains, and develops top talent to build a world class Software Engineering Team\n• Conducts annual and mid-year reviews by reviewing individual development plans and team feedback\n• Fosters collaboration with team members to drive consistency across product teams, and finds opportunities to expose engineers to career interests\n• Acts as a proponent of modern software development practices\n• Guides team members in strategy, alignment, analysis, and execution tasks within and across product teams\n• Participates in and contributes to learning activities around modern software design and development core practices (communities of practice)\n• Builds relationships with technology leaders at other companies to learn best practices and elegant solutions to common problems\nDirect Manager/Direct Reports:\n• Typically reports to the Technology Director, Sr. Director or Vice President.\nTravel Requirements:\n• Typically requires overnight travel 5% to 20% of the time.\nPhysical Requirements:\n• Most of the time is spent sitting in a comfortable position and there is frequent opportunity to move about. On rare occasions there may be a need to move or lift light articles.\nWorking Conditions:\n• Located in a comfortable indoor area. Any unpleasant conditions would be infrequent and not objectionable.", + "job_is_remote": false, + "job_posted_at_timestamp": 1697749073, + "job_posted_at_datetime_utc": "2023-10-19T20:57:53.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=60&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=U6cGUpEQvMZ1lF2uAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": true + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Typically requires overnight travel 5% to 20% of the time", + "Most of the time is spent sitting in a comfortable position and there is frequent opportunity to move about" + ], + "Responsibilities": [ + "Manager, you will be given a chance to contribute to the products we create, help grow the next generation of engineering talent, and help shape the technology strategy of the enterprise", + "Manager must exhibit the ability to lead managers and their teams and drive change management and process improvement", + "20% Strategy & Planning:", + "Works and negotiates with partners on the staffing of skilled engineering positions on product teams", + "Contributes to and makes recommendations for strategic plans in support of key objectives in a timely and fiscally responsible manner", + "Supports and nurtures strategic vendor relationships; recommends ways to influence vendors that aligned to domain, portfolio, and enterprise strategic objectives", + "Evaluates new technologies for adoption across the enterprise", + "Helps to identify and demonstrate emerging technologies for adoption by product teams", + "20% Delivery & Execution:", + "Collaborates and pairs with product team members (UX, engineering, and product management) to create secure, reliable, scalable software solutions", + "Documents, reviews and ensures that all quality and change control standards are met", + "Writes custom code or scripts to automate infrastructure, monitoring services, and test cases", + "Works with vendors and partners for the successful implementation of critical tooling and platforms", + "Creates meaningful dashboards, logging, alerting, and responses to ensure that issues are captured and addressed proactively", + "Contributes to enterprise-wide tools to drive destructive testing, automation, and engineering empowerment", + "Participates in and leads review board sessions to drive consistency across the enterprise", + "Makes suggestions that help drive operational excellence to create internal customer satisfaction and meet operational metrics", + "Fills in on product teams for engineers who are out of the office", + "15% Support & Enablement:", + "Fields questions from engineers, product teams, or support teams", + "Monitors tools and participates in conversations to encourage collaboration across product teams", + "Learns, through reading, tutorials, and videos, new technologies and best practices being used within other technology organizations", + "Provides application support for software running in production", + "Acts as a technical escalation point for the engineers on the team", + "45% People:", + "Provides leadership, mentoring, and coaching to Software Engineers", + "Attracts, retains, and develops top talent to build a world class Software Engineering Team", + "Conducts annual and mid-year reviews by reviewing individual development plans and team feedback", + "Fosters collaboration with team members to drive consistency across product teams, and finds opportunities to expose engineers to career interests", + "Acts as a proponent of modern software development practices", + "Guides team members in strategy, alignment, analysis, and execution tasks within and across product teams", + "Participates in and contributes to learning activities around modern software design and development core practices (communities of practice)", + "Builds relationships with technology leaders at other companies to learn best practices and elegant solutions to common problems", + "Typically reports to the Technology Director, Sr" + ] + }, + "job_job_title": "Senior manager", + "job_posting_language": "en", + "job_onet_soc": "11302100", + "job_onet_job_zone": "4", + "job_naics_code": "4441", + "job_naics_name": "Building Material and Supplies Dealers" + }, + { + "employer_name": "Vida Health", + "employer_logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR4GXlvIw5Y8WN2L_wrK6QoY5g1M32emxsvCRqY&s=0", + "employer_website": "http://www.vida.com", + "employer_company_type": null, + "job_publisher": "Lever", + "job_id": "TfWdobgqE-izJRltAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Sr. Software Engineer - Backend and Infrastructure", + "job_apply_link": "https://jobs.lever.co/vida/da795b7d-4884-4364-8e0c-d3974f005189", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.7901, + "apply_options": [ + { + "publisher": "Lever", + "apply_link": "https://jobs.lever.co/vida/da795b7d-4884-4364-8e0c-d3974f005189", + "is_direct": false + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/sr-software-engineer-infrastructure-at-vida-health-3719302469", + "is_direct": false + }, + { + "publisher": "ZipRecruiter", + "apply_link": "https://www.ziprecruiter.com/c/Vida-Health/Job/Sr.-Software-Engineer-Infrastructure/-in-United,WV?jid=42796656d9eab44a", + "is_direct": false + }, + { + "publisher": "Wellfound", + "apply_link": "https://wellfound.com/jobs/2793811-sr-software-engineer-infrastructure", + "is_direct": true + }, + { + "publisher": "Built In", + "apply_link": "https://builtin.com/job/engineer/sr-software-engineer-infrastructure/2027929", + "is_direct": false + }, + { + "publisher": "VentureLoop", + "apply_link": "https://www.ventureloop.com/ventureloop/jobdetail.php?jobid=2563960", + "is_direct": false + }, + { + "publisher": "Salary.com", + "apply_link": "https://www.salary.com/job/vida-health/sr-software-engineer-infrastructure/j202309130333128113811", + "is_direct": false + }, + { + "publisher": "Startup Jobs", + "apply_link": "https://startup.jobs/sr-software-engineer-infrastructure-vida-4715660", + "is_direct": false + } + ], + "job_description": "ABOUT US\n\nAt Vida, we help people get better — and we’re helping the healthcare system get better, too.\n\nVida provides expert, personalized, on-demand health coaching and programs through a network of experienced health care providers — like dietitians, therapists, and health coaches and leading medical institutions — coupled with an easy-to-use app with award-winning content.\n\nWe focus on chronic conditions — like diabetes, depression, and hypertension — which account for 80% of the 3ドル trillion spent on healthcare in the US.\n\nBy combining advanced technology with the top-notch healthcare providers, Vida is breaking down the barriers that have historically kept people from getting the best care. Vida’s cloud-based platform captures real-time data from 100+ devices and apps and delivers AI-driven insights back to employers, health plans, and providers to improve care. We are trusted by Fortune 1000 companies, major national payers, and large providers to enable their employees to live their healthiest lives.\n• *Vida is authorized to do business in many, but not all, states. If you are not located in or able to work from a state where Vida is registered, you will not be eligible for employment. Please speak with your recruiter to learn more about where Vida is registered.\n\nABOUT THE ROLE\n\nThe backend infrastructure engineering team designs builds and maintains the APIs that power our mobile and web applications as well as the underlying cloud-based services that they run on. You will be joining this creative and dedicated team as a technical leader to make an immediate impact on our business. We are small enough for you to have a large impact and big enough to learn and grow from your peers.\n\nThe team works cross functionally with a multidisciplinary team of mobile, test, web, product, design and clinical experts to build and design new product experiences for both our providers and our members. In addition, we work closely with our data science teams to integrate AI powered features into our platform\n\nThe role also involves learning about, prototyping, and integrating the latest Generative AI features into end-user experiences.\n\nThis is a remote position, working with a team typically working in the pacific time zone.\n\nRESPONSIBILITIES\n• Design and build out of distributed cloud-based infrastructure services which enable multiple applications for the rapid member growth at Vida.\n• Contribute to the rapid build out of our LLM infrastructure, gaining familiarity with the latest tools and technologies as they evolve.\n• Evolve our architecture, with a mindset to constantly improve reliability, efficiency and speed while also allowing for cleaner and quicker feature development.\n• Collaborate within your team: review and give feedback on mobile and web features and designs, design APIs to enable the features, test, ramp, and monitor the success of the features you build.\n• Collaborate across Backend engineering: help bring new ideas and best practices to other Backend engineers, help define and drive the long term technical roadmap.\n• Be an owner of your work in all environments from staging to production. We are looking for those willing to raise their hand and step up to follow a project all the way through, from finding the problem to celebrating the solution.\n• Set up monitoring and alerting on services to continuously improve our SLA.\n• Find cloud-native solutions to problems and find ways to increase efficiency and reduce the cost of services.\n\nQUALIFICATIONS\n• 3-5+ years of software engineering work experience.\n• Experience with designing service oriented architectures, distributed systems, GraphQL and REST APIs.\n• Advanced proficiency with building, deploying and managing container based services within Kubernetes running in a public cloud environment.\n• Ability to lead and coordinate delivery of work with other software engineers.\n• Strong skills and experience in the foundational skills of Software Engineering, such as Data Structures, OO Design, Relational Databases.\n• Working knowledge of developing scalable, resilient and secure backend services in languages such as Python and Livescript.\n• Excellent communication and interpersonal skills.\n• Ownership mindset: Be excited about monitoring and alerting on your systems, and be ready to query your own tracking data to find out how your feature is doing.\n\nBONUS SKILLS\n• Actively contribute to creating/sustaining a culture of engineering excellence - hire great engineers, lead, mentor, take charge and get things done.\n• Experience with working in the healthcare industry, building HIPAA-compliant services, and using healthcare standards such as FHIR.\n• Experience with managing cloud environments using infrastructure-as-code tools such as Terraform\n• Experience with monitoring and alerting systems such as NewRelic, DataDog, Grafana.\n• Experience with asynchronous systems such as Kafka, RabbitMQ, PubSub, Kinesis.\n• Experience with API modeling and test tools such as OpenAPI, Swagger, GraphQL, and Postman.\n\nBENEFITS\n• Competitive compensation with meaningful stock options\n• Medical, Dental, Vision, Disability and Life Insurance (We cover 100% of your premium and 80% for your dependents)\n• Healthcare FSA Plan\n• Dependent Care FSA Plans\n• 401K Program\n• Flexible PTO Policy\n• Paid Parental Leave\n• 10 Paid Company Holidays\n\nPERKS\n• We’re a distributed company, so you can work from most US states (We still have a HQ office in San Francisco)\n• Access to a Vida Health Coach and the full Vida App\n• New hire home office stipend\n• Training and leadership development programs\n• Learning & Development stipend\n• All Company Events\n• Team Based Connection Opportunities\n• Significant opportunities for growth and development as the business grows\n\n116,000ドル - 170,000ドル a year\nSalary will be based upon location/region (based on 4 US regions) and experience/level.\n\nAs backend infrastructure engineers, the team works end to end on developing new services and features, getting them into production and monitoring the success of them. If you have demonstrated an ability to ship software, we encourage you to apply even if you do not have the exact experience or do not meet certain requirements.\n\nVida is proud to be an Equal Employment Opportunity and Affirmative Action employer.\n\nDiversity is more than a commitment at Vida—it is the foundation of what we do. All qualified applicants will receive consideration for employment without regard to race, color, ancestry, religion, gender, gender identity or expression, sexual orientation, marital status, national origin, genetics, disability, age, or Veteran status. We also consider qualified applicants with criminal histories, consistent with applicable federal, state and local law.\n\nWe seek to recruit, develop and retain the most talented people from a diverse candidate pool. We don’t just accept differences — we celebrate them, we support them, and we thrive on them for the benefit of our employees, our platform and those we serve. Vida is committed to providing reasonable accommodations for qualified individuals with disabilities and disabled veterans in our job application procedures.\n\nWe do not accept unsolicited assistance from any headhunters or recruitment firms for any of our job openings. All resumes or profiles submitted by search firms to any employee at Vida in any form without a valid, signed search agreement in place for the specific position will be deemed the sole property of Vida. No fee will be paid in the event the candidate is hired by Vida as a result of the unsolicited referral.\n\n#LI-remote", + "job_is_remote": false, + "job_posted_at_timestamp": 1694476800, + "job_posted_at_datetime_utc": "2023-09-12T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "dental_coverage", + "retirement_savings", + "paid_time_off", + "health_insurance" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=60&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=TfWdobgqE-izJRltAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 36, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "3-5+ years of software engineering work experience", + "Experience with designing service oriented architectures, distributed systems, GraphQL and REST APIs", + "Advanced proficiency with building, deploying and managing container based services within Kubernetes running in a public cloud environment", + "Ability to lead and coordinate delivery of work with other software engineers", + "Strong skills and experience in the foundational skills of Software Engineering, such as Data Structures, OO Design, Relational Databases", + "Working knowledge of developing scalable, resilient and secure backend services in languages such as Python and Livescript", + "Excellent communication and interpersonal skills", + "Ownership mindset: Be excited about monitoring and alerting on your systems, and be ready to query your own tracking data to find out how your feature is doing", + "Actively contribute to creating/sustaining a culture of engineering excellence - hire great engineers, lead, mentor, take charge and get things done", + "Experience with working in the healthcare industry, building HIPAA-compliant services, and using healthcare standards such as FHIR", + "Experience with managing cloud environments using infrastructure-as-code tools such as Terraform", + "Experience with monitoring and alerting systems such as NewRelic, DataDog, Grafana", + "Experience with asynchronous systems such as Kafka, RabbitMQ, PubSub, Kinesis", + "Experience with API modeling and test tools such as OpenAPI, Swagger, GraphQL, and Postman" + ], + "Responsibilities": [ + "The role also involves learning about, prototyping, and integrating the latest Generative AI features into end-user experiences", + "This is a remote position, working with a team typically working in the pacific time zone", + "Design and build out of distributed cloud-based infrastructure services which enable multiple applications for the rapid member growth at Vida", + "Contribute to the rapid build out of our LLM infrastructure, gaining familiarity with the latest tools and technologies as they evolve", + "Evolve our architecture, with a mindset to constantly improve reliability, efficiency and speed while also allowing for cleaner and quicker feature development", + "Collaborate within your team: review and give feedback on mobile and web features and designs, design APIs to enable the features, test, ramp, and monitor the success of the features you build", + "Collaborate across Backend engineering: help bring new ideas and best practices to other Backend engineers, help define and drive the long term technical roadmap", + "Be an owner of your work in all environments from staging to production", + "We are looking for those willing to raise their hand and step up to follow a project all the way through, from finding the problem to celebrating the solution", + "Set up monitoring and alerting on services to continuously improve our SLA", + "Find cloud-native solutions to problems and find ways to increase efficiency and reduce the cost of services" + ], + "Benefits": [ + "Competitive compensation with meaningful stock options", + "Medical, Dental, Vision, Disability and Life Insurance (We cover 100% of your premium and 80% for your dependents)", + "Healthcare FSA Plan", + "Dependent Care FSA Plans", + "401K Program", + "Flexible PTO Policy", + "Paid Parental Leave", + "10 Paid Company Holidays", + "We’re a distributed company, so you can work from most US states (We still have a HQ office in San Francisco)", + "Access to a Vida Health Coach and the full Vida App", + "New hire home office stipend", + "Training and leadership development programs", + "Learning & Development stipend", + "All Company Events", + "Team Based Connection Opportunities", + "Significant opportunities for growth and development as the business grows", + "116,000ドル - 170,000ドル a year", + "Salary will be based upon location/region (based on 4 US regions) and experience/level" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113300", + "job_onet_job_zone": "4" + }, + { + "employer_name": "Invoice Cloud", + "employer_logo": "https://images.crunchbase.com/image/upload/c_lpad,f_auto,q_auto:eco,dpr_1/zrnuryp1uzrbzctss5iu", + "employer_website": "http://www.invoicecloud.net", + "employer_company_type": null, + "job_publisher": "VentureFizz", + "job_id": "maZTKXz5u92YsTDdAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer, Test", + "job_apply_link": "https://venturefizz.com/jobs/software-engineer-test-at-invoice-cloud", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.7239, + "apply_options": [ + { + "publisher": "VentureFizz", + "apply_link": "https://venturefizz.com/jobs/software-engineer-test-at-invoice-cloud", + "is_direct": false + }, + { + "publisher": "ZipRecruiter", + "apply_link": "https://www.ziprecruiter.com/c/InvoiceCloud/Job/Software-Engineer,-Test/-in-Salt-Lake-City,UT?jid=2a70161d496e64ae", + "is_direct": true + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=6248588f0205fc24", + "is_direct": true + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/software-engineer-test-at-invoicecloud-inc-3729915173", + "is_direct": false + }, + { + "publisher": "Built In", + "apply_link": "https://builtin.com/job/engineer/software-engineer-test/2059463", + "is_direct": false + } + ], + "job_description": "About InvoiceCloud:\n\nInvoiceCloud, an EngageSmart solution, is a leading provider of online bill payment services. Founded in 2009, the company has grown to be one of the leading disruptors in the cloud-based electronic bill presentment and payment (EBPP) space, helping institutions put customer experience first. By switching to InvoiceCloud, clients can improve customer engagement, loyalty, and efficiency while reducing churn and missed payments in the process. With over 50 million payments processed annually, InvoiceCloud is one of the most secure, innovative, and inclusive fintech solutions in the market. To learn more, visit www.InvoiceCloud.com.\n\nThe Platform Engineering team at Invoice Cloud is dedicated to the design, build, and evolution of the end-to-end automated testing platform supporting the entire SaaS customer engagement, e-billing, and payment platform used by thousands of businesses and millions of customers. The Software Engineer (Quality) will play a key hands-on development role in building and growing automation frameworks.. You will also own entire lifecycle (design, document, develop, maintain, publish, and run) of automated test development, configuration & related automated deployment pipelines within assigned agile team. This is an ideal opportunity for someone who is passionate about releasing high quality, customer experience, SaaS products in a highly scalable, reliable, and secure manner, leveraging agile test driven development practices. We are looking for a strong business and technical problem solver, with understanding of quality engineering within the SDLC life cycle.\n\nOutcomes and Responsibilities:\n• The Software Engineer (Quality) will have a broad set of responsibilities including the following:\n• Drive a strong sense of ownership, accountability, and pride in the entire full stack agile team for the overall quality of the product.\n• Work on the total lifecycle of application and infrastructure services from inception to operations and monitoring(all aspects of automation in DevOps delivery pipeline.\n• Develop and maintain automated build, testing and deployment scripts and configurations that serve as frameworks and solutions for agile\n• Setting up, maintaining, and operating test automation frameworks supporting multiple application platforms, such as Databases, Web, Mobile, APIs/Microservices (CNCF)\n• Develops test system configurations, test data as code and automated functional and non-functional (load/performance) testing scripts.\n• Performs test executions and writes test scripts for complex integrated systems supporting end-end verification and\n• Defines and manages software test environments as configurations/code supporting various architectures.\n• Write well-designed, readable, maintainable testing code, patterns and frameworks supporting internal services with focus to increase automated test coverage of code.\n• Work with application and infrastructure teams to analyze current manual processes and determine options to\n• Work closely and collaboratively with in full stack agile engineering team to establish and automate the necessary quality standards, requirements with a strong bias to reduce manual testing effort and continuously increasing confidence in software releases.\n• Play a supporting role in planning, scoping, estimating, and validating prioritized testing requirements for all on-going feature development in the scrum\n• Work closely with teams to troubleshoot and resolve application and infrastructure\n• Build trusting relationships and collaborate within and across all internal teams.\n• Participate in code reviews to maintain code quality and distribute knowledge.\n• Adhere to testing standards, best practices, and operational procedures for releases.\n• Ensure application releases occur regularly, timely and with high quality.\n• Encourage a highly communicative culture that ensures open, transparent, and consistent exchange with key stakeholders.\n• Keep up to date on industry trends, new tools, and technologies with respect to Continuous Delivery.\n• Learn new tools and scripting languages as\n• Perform periodic on-call support for after-hours deployment/maintenance windows.\n• Coach, mentor and help peers.\n• Report progress on work items as it happens, via work item notes, and as requested.\n\nWho We Seek:\n• 3+ years of hands-on technical experience in quality engineering practices, test automation (unit, API testing, acceptance testing, performance testing)supporting continuous releases.\n• 3-5+years of experience with technologies and tools such as\n• Jira, Jfrog Artifactory, Jenkins/Azure DevOps, Terraform, InSpec, Selenium, Jmeter, NeoLoad, Postman, SOAPUI, Sonarqube, Docker, Cucumber, Specflow, Chai, Mocha, Kubernetes (AKS, GKE, EKS)\n• Proficient in programming and scripting languages such as C#, .Net, T-SQL, Groovy, Shell, Python, Java, PowerShell, .NET Core/Framework, Ruby and JavaScript, JS, Node.\n• Experience in agile software delivery practices like Scrum, Kanban etc.\n• Detailed knowledge of software engineering best practices for the full software development life cycle, including agile planning, coding standards, code reviews, source control, build and release processes, continuous deployment, and test suite development and maintenance.\n• Expertise in manual and automated test planning and execution while building modern test frameworks and infrastructure iteratively.\n• Expertise in data structures and programming language principles.\n• Experience designing, coding, building, and testing software or systems.\n• Experience with acceptance test-driven development (ATDD/BDD) and continuous integration patterns/solutions.\n• Technical background in quality engineering tools supporting SaaS based products, such as modern web applications, APIs (Soap, Rest etc.), database and cloud infrastructure testing.\n• Familiarity of software security best practices (OWASP Top 10) and implementing quality and security gates within software delivery.\n• Experience with networking, storage, operating systems, databases (Windows and Linux).\n• Experience with Microsoft Azure or similar cloud technology vendors such as AWS, GCP.\n• Understanding of scalable, distributed systems using microservices and event-driven architecture.\n• Understanding of transactional databases.\n• Collaborate with both technical and non-technical stakeholders.\n• Self-led, capable of working with little direction.\n• Skilled communicator with a collaborative spirit.\n\nOther desirable/ advantageous skills and experience\n• Bachelors degree in Computer Science Engineering or, Business Information Systems\n\nBenefits\n\nWe offer a competitive benefits program including:\n• Medical, dental, vision, life & disability insurance\n• 401(k) plan with company match & employee stock purchase plan (ESPP)\n• Flexible Time Off (FTO), wellbeing days, paid holidays, and summer Fridays\n• Mental health resources\n• Paid parental leave & Backup Care\n• Tuition reimbursement\n• Employee Resource Groups (ERGs)\n\nInvoice Cloud is an Equal Opportunity Employer.\n\nInvoice Cloud provides equal employment opportunities to all employees and applicants for employment and prohibits discrimination and harassment of any type without regard to race, color, religion, age, sex, national origin, disability status, genetics, protected veteran status, sexual orientation, gender identity or expression, or any other characteristic protected by federal, state or local laws.\n\nThis policy applies to all terms and conditions of employment, including recruiting, hiring, placement, promotion, termination, layoff, recall, transfer, leaves of absence, compensation, and training.\n\nIf you have a disability under the Americans with Disabilities Act or similar law, or you require a religious accommodation, and you wish to discuss potential accommodations related to applying for employment at our company, please contact jobs@engagesmart.com.\n\nClick here to review EngageSmart's Job Applicant Privacy Policy.\n\nTo all recruitment agencies: Invoice Cloud does not accept agency resumes. Please do not forward resumes to our jobs alias, employees, or any other organization location. Invoice Cloud is not responsible for any fees related to unsolicited resumes.", + "job_is_remote": false, + "job_posted_at_timestamp": 1696041600, + "job_posted_at_datetime_utc": "2023-09-30T02:40:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "retirement_savings", + "dental_coverage", + "health_insurance", + "paid_time_off" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=60&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=maZTKXz5u92YsTDdAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 36, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "We are looking for a strong business and technical problem solver, with understanding of quality engineering within the SDLC life cycle", + "3+ years of hands-on technical experience in quality engineering practices, test automation (unit, API testing, acceptance testing, performance testing)supporting continuous releases", + "3-5+years of experience with technologies and tools such as", + "Jira, Jfrog Artifactory, Jenkins/Azure DevOps, Terraform, InSpec, Selenium, Jmeter, NeoLoad, Postman, SOAPUI, Sonarqube, Docker, Cucumber, Specflow, Chai, Mocha, Kubernetes (AKS, GKE, EKS)", + "Proficient in programming and scripting languages such as C#, .Net, T-SQL, Groovy, Shell, Python, Java, PowerShell, .NET Core/Framework, Ruby and JavaScript, JS, Node", + "Experience in agile software delivery practices like Scrum, Kanban etc", + "Detailed knowledge of software engineering best practices for the full software development life cycle, including agile planning, coding standards, code reviews, source control, build and release processes, continuous deployment, and test suite development and maintenance", + "Expertise in manual and automated test planning and execution while building modern test frameworks and infrastructure iteratively", + "Expertise in data structures and programming language principles", + "Experience designing, coding, building, and testing software or systems", + "Experience with acceptance test-driven development (ATDD/BDD) and continuous integration patterns/solutions", + "Technical background in quality engineering tools supporting SaaS based products, such as modern web applications, APIs (Soap, Rest etc.), database and cloud infrastructure testing", + "Familiarity of software security best practices (OWASP Top 10) and implementing quality and security gates within software delivery", + "Experience with networking, storage, operating systems, databases (Windows and Linux)", + "Experience with Microsoft Azure or similar cloud technology vendors such as AWS, GCP", + "Understanding of scalable, distributed systems using microservices and event-driven architecture", + "Understanding of transactional databases", + "Collaborate with both technical and non-technical stakeholders", + "Self-led, capable of working with little direction", + "Skilled communicator with a collaborative spirit", + "Bachelors degree in Computer Science Engineering or, Business Information Systems" + ], + "Responsibilities": [ + "The Software Engineer (Quality) will play a key hands-on development role in building and growing automation frameworks.", + "You will also own entire lifecycle (design, document, develop, maintain, publish, and run) of automated test development, configuration & related automated deployment pipelines within assigned agile team", + "The Software Engineer (Quality) will have a broad set of responsibilities including the following:", + "Drive a strong sense of ownership, accountability, and pride in the entire full stack agile team for the overall quality of the product", + "Work on the total lifecycle of application and infrastructure services from inception to operations and monitoring(all aspects of automation in DevOps delivery pipeline", + "Develop and maintain automated build, testing and deployment scripts and configurations that serve as frameworks and solutions for agile", + "Setting up, maintaining, and operating test automation frameworks supporting multiple application platforms, such as Databases, Web, Mobile, APIs/Microservices (CNCF)", + "Develops test system configurations, test data as code and automated functional and non-functional (load/performance) testing scripts", + "Performs test executions and writes test scripts for complex integrated systems supporting end-end verification and", + "Defines and manages software test environments as configurations/code supporting various architectures", + "Write well-designed, readable, maintainable testing code, patterns and frameworks supporting internal services with focus to increase automated test coverage of code", + "Work with application and infrastructure teams to analyze current manual processes and determine options to", + "Work closely and collaboratively with in full stack agile engineering team to establish and automate the necessary quality standards, requirements with a strong bias to reduce manual testing effort and continuously increasing confidence in software releases", + "Play a supporting role in planning, scoping, estimating, and validating prioritized testing requirements for all on-going feature development in the scrum", + "Work closely with teams to troubleshoot and resolve application and infrastructure", + "Build trusting relationships and collaborate within and across all internal teams", + "Participate in code reviews to maintain code quality and distribute knowledge", + "Adhere to testing standards, best practices, and operational procedures for releases", + "Ensure application releases occur regularly, timely and with high quality", + "Encourage a highly communicative culture that ensures open, transparent, and consistent exchange with key stakeholders", + "Keep up to date on industry trends, new tools, and technologies with respect to Continuous Delivery", + "Learn new tools and scripting languages as", + "Perform periodic on-call support for after-hours deployment/maintenance windows", + "Coach, mentor and help peers", + "Report progress on work items as it happens, via work item notes, and as requested" + ], + "Benefits": [ + "We offer a competitive benefits program including:", + "Medical, dental, vision, life & disability insurance", + "401(k) plan with company match & employee stock purchase plan (ESPP)", + "Flexible Time Off (FTO), wellbeing days, paid holidays, and summer Fridays", + "Mental health resources", + "Paid parental leave & Backup Care", + "Tuition reimbursement", + "Employee Resource Groups (ERGs)" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15119900", + "job_onet_job_zone": "4" + }, + { + "employer_name": "Coinbase Page", + "employer_logo": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Coinbase.svg/2560px-Coinbase.svg.png", + "employer_website": "http://www.coinbase.com", + "employer_company_type": "Retail", + "job_publisher": "Startup Jobs", + "job_id": "JN35j1q4pM59he6rAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Summer 2024 - Software Engineer Intern, Frontend", + "job_apply_link": "https://startup.jobs/summer-2024-software-engineer-intern-frontend-coinbase-page-4808430", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.6384, + "apply_options": [ + { + "publisher": "Startup Jobs", + "apply_link": "https://startup.jobs/summer-2024-software-engineer-intern-frontend-coinbase-page-4808430", + "is_direct": false + } + ], + "job_description": "At Coinbase, our mission is to increase economic freedom around the world, and we couldn’t do this without hiring the best people. We’re a group of hard-working overachievers who are deeply focused on building the future of finance and Web3 for our users across the globe, whether they’re trading, storing, staking or using crypto. Know those people who always lead the group project? That’s us.\n\nThere are a few things we look for across all hires we make at Coinbase, regardless of role or team. First, we look for candidates who will thrive in a culture like ours, where we default to trust, embrace feedback, and disrupt ourselves. Second, we expect all employees to commit to our mission-focused approach to our work. Finally, we seek people who are excited to learn about and live crypto, because those are the folks who enjoy the intense moments in our sprint and recharge work culture. We’re a remote-first company looking to hire the absolute best talent all over the world.\n\nReady to #LiveCrypto? Who you are:\n\n• You’ve got positive energy. You’re optimistic about the future and determined to get there.\n• You’re never tired of learning. You want to be a pro in bleeding edge tech like DeFi, NFTs, DAOs, and Web 3.0.\n• You appreciate direct communication. You’re both an active communicator and an eager listener - because let’s face it, you can’t have one without the other. You’re cool with candid feedback and see every setback as an opportunity to grow.\n• You can pivot on the fly. Crypto is constantly evolving, so our priorities do, too. What you worked on last month may not be what you work on today, and that excites you. You’re not looking for a boring job.\n• You have a "can do" attitude. Our teams create high-quality work on quick timelines. Owning a problem doesn’t scare you, but rather empowers you to take 100% responsibility for achieving our mission.\n• You want to be part of a winning team. We’re stronger together, and you’re a person who embraces being pushed out of your comfort zone.\nCoinbase is seeking software engineer interns to join our team to build new features that improve existing products like Coinbase.com, Prime, Wallet, etc. You will solve unique, large scale, highly complex technical problems. You will help build the next generation of systems to make cryptocurrency accessible to everyone across the globe (www, iOS, Android), operating real-time applications with high frequency, low latency updates, keeping the platform safe from fraud, enabling delightful experiences, and managing the most secure, dockerized infrastructure running in the cloud.\n\nWhat you’ll be doing (ie. job duties):\n\n• Write high quality, well tested code to meet the needs of your customers\n• Work on projects with engineers, designers, product managers, and senior leadership to help turn our product and technical vision into a tangible roadmap\n\nWhat we look for in you (ie. job requirements):\n\n• Have programming experience (in a class, for fun, at a job) -- most of our systems are written in Golang, JavaScript, and Ruby but experience with any is not a strict requirement.\n• Enjoy thinking about how people interact with products and building experiences that users love\n• Self-motivated and committed to personal growth\n• Approach problems with positive energy\n\nNice to haves:\n\n• Degree or currently pursuing a Bachelors, Masters, or PhD in Computer Science, Software Engineering, Computer Engineering, Electrical Engineering, Mathematics or a related field\n• You’ve worked in developing React Native mobile apps.\n\nPosition ID: G2484\n\nPay Transparency Notice: Depending on your work location, the target annual salary for this position can range as detailed below. Full time offers from Coinbase also include target bonus + target equity + benefits (including medical, dental, vision and 401(k)).\nPay Range:\n50ドル—50ドル USD\nCommitment to Equal OpportunityCoinbase is committed to diversity in its workforce and is proud to be an Equal Opportunity Employer. All qualified applicants will receive consideration for employment without regard to race, color, religion, creed, gender, national origin, age, disability, veteran status, sex, gender expression or identity, sexual orientation or any other basis protected by applicable law. Coinbase will also consider for employment qualified applicants with criminal histories in a manner consistent with applicable federal, state and local law. For US applicants, you may view Pay Transparency, Employee Rights and Know Your Rights notices by clicking on their corresponding links. Additionally, Coinbase participates in the E-Verify program in certain locations, as required by law.\n\nCoinbase is also committed to providing reasonable accommodations to individuals with disabilities. If you need a reasonable accommodation because of a disability for any part of the employment process, please send an e-mail to accommodations[at]coinbase.com and let us know the nature of your request and your contact information. For quick access to screen reading technology compatible with this site click here to download a free compatible screen reader (free step by step tutorial can be found here).\n\nGlobal Data Privacy Notice for Job Candidates and ApplicantsDepending on your location, the General Data Protection Regulation (GDPR) and California Consumer Privacy Act (CCPA) may regulate the way we manage the data of job applicants. Our full notice outlining how data will be processed as part of the application procedure for applicable locations is available here. By submitting your application, you are agreeing to our use and processing of your data as required. For US applicants only, by submitting your application you are agreeing to arbitration of disputes as outlined here.", + "job_is_remote": true, + "job_posted_at_timestamp": 1698114170, + "job_posted_at_datetime_utc": "2023-10-24T02:22:50.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "retirement_savings", + "dental_coverage", + "health_insurance", + "paid_time_off" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=60&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=JN35j1q4pM59he6rAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "You’ve got positive energy", + "You’re optimistic about the future and determined to get there", + "You’re never tired of learning", + "You want to be a pro in bleeding edge tech like DeFi, NFTs, DAOs, and Web 3.0", + "You appreciate direct communication", + "You’re both an active communicator and an eager listener - because let’s face it, you can’t have one without the other", + "You want to be part of a winning team", + "Have programming experience (in a class, for fun, at a job) -- most of our systems are written in Golang, JavaScript, and Ruby but experience with any is not a strict requirement", + "Enjoy thinking about how people interact with products and building experiences that users love", + "Self-motivated and committed to personal growth", + "Approach problems with positive energy", + "Degree or currently pursuing a Bachelors, Masters, or PhD in Computer Science, Software Engineering, Computer Engineering, Electrical Engineering, Mathematics or a related field", + "You’ve worked in developing React Native mobile apps" + ], + "Responsibilities": [ + "You will solve unique, large scale, highly complex technical problems", + "You will help build the next generation of systems to make cryptocurrency accessible to everyone across the globe (www, iOS, Android), operating real-time applications with high frequency, low latency updates, keeping the platform safe from fraud, enabling delightful experiences, and managing the most secure, dockerized infrastructure running in the cloud", + "Write high quality, well tested code to meet the needs of your customers", + "Work on projects with engineers, designers, product managers, and senior leadership to help turn our product and technical vision into a tangible roadmap" + ], + "Benefits": [ + "Pay Transparency Notice: Depending on your work location, the target annual salary for this position can range as detailed below", + "Full time offers from Coinbase also include target bonus + target equity + benefits (including medical, dental, vision and 401(k))", + "50ドル—50ドル USD" + ] + }, + "job_job_title": null, + "job_posting_language": "en", + "job_onet_soc": "15113400", + "job_onet_job_zone": "3", + "job_occupational_categories": [ + "15-1132.00 Software Developers, Application" + ], + "job_naics_code": "454111", + "job_naics_name": "Electronic Shopping" + }, + { + "employer_name": "Doppel", + "employer_logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR58bvLMG9HroCgInBUCjzO3HEFFVnC7Kq416Hg&s=0", + "employer_website": null, + "employer_company_type": null, + "job_publisher": "Jobs", + "job_id": "C9yuw0WyQyEmO5A3AAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer", + "job_apply_link": "https://jobs.ashbyhq.com/Doppel/0cc6eced-3f1d-475f-aadd-13d5235ea026", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.6682, + "apply_options": [ + { + "publisher": "Jobs", + "apply_link": "https://jobs.ashbyhq.com/Doppel/0cc6eced-3f1d-475f-aadd-13d5235ea026", + "is_direct": false + }, + { + "publisher": "Glassdoor", + "apply_link": "https://www.glassdoor.com/job-listing/software-engineer-doppel-JV_KO0,17_KE18,24.htm?jl=1008939624658", + "is_direct": true + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=e6edf8a654ba5eed", + "is_direct": true + }, + { + "publisher": "Wellfound", + "apply_link": "https://wellfound.com/jobs/2166212-software-engineer", + "is_direct": true + } + ], + "job_description": "What we're building\n\nWe’re building the best AI-powered brand protection and anti-phishing platform in the world.\n\nThis means we’re designing scalable systems that monitor hundreds of millions of domains, social media accounts, apps, dark web forums, etc. — and leverage the latest advances in few-shot learning AI models to identify digital threats. On the frontend, we’re developing high-throughput review tooling that enables our analysts to quickly takedown phishing and other digital threats.\n\nWhat we're looking for\n\nWe're looking for fast-moving, customer-obsessed engineers who want to have outsized impact and ownership on a lean, high-performing team. Our compensation philosophy reflects this with above-market equity offers, and you’ll get the opportunity to join a rapidly growing company that’s making the Internet a safer place every day. We’re remote-first, hiring in the US, and have quarterly in-person social events!\n\nWe’re looking for evidence of outstanding ability and hustle. As for our tech stack:\n• Backend\n• Python, PostgreSQL, Data Pipelines, Google Cloud, AI models\n• Frontend\n• ReactJS, GraphQL, Typescript\n\nAbout us\n\nDoppel is the leading solution in modern digital risk protection for trusted brands. Our state-of-the-art AI scans over 10 million entities daily across the web, dark web, social media, and app stores, offering unparalleled breadth in detecting digital threats, including piracy, counterfeiting, phishing scams, executive impersonators, and more. Seamless integrations with domain registrars, web hosts, browsers, social media platforms, and digital marketplaces power real-time, continuous, and automated protection, making Doppel the best defense for trusted brands, from startups to Fortune 500 companies.", + "job_is_remote": true, + "job_posted_at_timestamp": 1697932800, + "job_posted_at_datetime_utc": "2023-10-22T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=60&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=C9yuw0WyQyEmO5A3AAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": false, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": {}, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4" + }, + { + "employer_name": "FlightSafety International", + "employer_logo": "https://cdn.cookielaw.org/logos/833af5bd-b1f3-423a-a591-9d9d40de117c/15a4077b-ff57-47b3-8029-fce396934533/f07a6cb3-f628-4066-bd7b-657ecbfa8330/FlightSafety_Logo_-_Navigator_Blue_(1).png", + "employer_website": "http://www.flightsafety.com", + "employer_company_type": "Manufacturing", + "job_publisher": "FlightSafety International Careers", + "job_id": "4R4A3TAFrEOrwEmaAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer II", + "job_apply_link": "https://careers.flightsafety.com/job/Broken-Arrow-Software-Engineer-II-OK-74012/1012867800/", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.8336, + "apply_options": [ + { + "publisher": "FlightSafety International Careers", + "apply_link": "https://careers.flightsafety.com/job/Broken-Arrow-Software-Engineer-II-OK-74012/1012867800/", + "is_direct": false + } + ], + "job_description": "About FlightSafety International\n\nFlightSafety International is the world’s premier professional aviation training company and supplier of flight simulators, visual systems and displays to commercial, government and military organizations. The company provides training for pilots, technicians and other aviation professionals from 167 countries and independent territories. FlightSafety operates the world’s largest fleet of advanced full-flight simulators and award-winning maintenance training at Learning Centers and training locations in the United States, Canada, France and the United Kingdom.\n\nPurpose of Position\n\nProvides software solution for visual systems integration and simulation of systems external to the aircraft for use in pilot training. Must simulate or stimulate avionics, infrastructure, and aircraft environment, including providing the interface to the visual system. Is responsible for product from design phase to hardware integration phase, to customer and certification authority verification, and continuing with ongoing customer support.\n\nProficiency Levels\n\nPerforms more varied and difficult aspects of the job; may need some guidance on job duties; applies learning to recommend options to address unusual situations. Trains other Teammates as required.\n\nTasks and Responsibilities\n• Will work on a variety of devices, from Full Flight Simulators with six degree-of-freedom motions systems and wraparound visual systems to graphics-based desktop trainers.\n• Implements all standard visual systems simulation software, datalink simulation software, and other simulated systems external to the aircraft (such as moving models, satellites, nav aids and radios, DMO/SAF servers, and electronic warfare systems), and integrates the software with that of other engineering disciplines (such as aircraft systems, flight, propulsion, autoflight systems, sound, instructor station, and image generators).\n• If aircraft data is not available is required to assist in gathering data from aircraft or test bench to be used to re-engineer, the aircraft avionics.\n• Develops graphical representations of aircraft instruments and displays for lower level (desktop) trainers and re-engineered avionics in high-level trainers.\n• Prepares customer test guides that will be used to verify that the simulation satisfies the simulator specification requirements.\n• Studies aircraft data (wiring diagrams, avionic specifications, etc.) to design real time software to accurately model the avionics’ behavior.\n• Performs standardized procedures to verify that the design meets the requirements of the customer test guide.\n• Presents and demonstrates the simulator operation to the customer and corrects deficiencies identified by the customer. This may include working at customer facilities. Exhibits and practices professional and courteous behavior while interacting with customers.\n• Works well with software and hardware engineers, technicians, project engineers and program managers. Interacts within a cooperative environment through beneficial behavior, commitment to common goals, contribution to problem solving, communication of ideas and suggestions, and encouragement.\n• Updates and maintains project schedules in Project Server for assigned projects.\n\nTasks and Responsibilities\n• Domestic and international travel, shift work, and special work hours may be required to accomplish duties.\n• Exhibit and practice professional and courteous behavior while interacting with both internal and external customers.\n• Interact within a cooperative environment through beneficial behavior, commitment to common goals, contribution to problem solving, communication of ideas and suggestions, and encouragement to other employees and departments.\n• Accountable for the control and distribution of documents and/or equipment subject to export control restrictions and the security of FSI materials, projects, intellectual property, and business information regarding the methods and techniques used in the production and usage of FSI products.\n• Accountable for the accuracy and completeness of assigned tasks.\n• Able to adhere to a work schedule including prompt and regular attendance.\n• Ability to work in a constant state of alertness and safe manner.\n\nLevel Dependent\n• Will train other engineers as required. Makes self available to answer questions pertaining to his/her expertise.\n• May be expected to independently maintain schedule and complete tasks.\n• May contribute or lead new research and product development.\n• May lead small teams of engineers.\n• May be involved in creating customer proposals including an estimate of hours required.\n• May be required to give technical presentations.\n\nTo perform the job successfully, an individual should demonstrate the following competencies:\n• Accountability - Shows up to work as scheduled, and follows instructions, policies, and procedures. Meets productivity standards, deadlines, and work schedules. Accepts full responsibility for quality of work, both independent and team projects.\n• Adaptability- Quickly modifies behavior to maintain effectiveness when experiencing major changes in work tasks or work environment. Approaches change as opportunities for learning and development.\n• Results Oriented - Focuses on results and desired outcomes and how best to achieve them by ensuring that they and others stay focused on the objective and perform in accordance with clear expectations.\n• Teamwork - Cooperates and collaborates with all teammates to achieve common goals by sharing information or expertise; working together to solve problems in a positive manner while valuing the contributions of others.\n\nEducation AND/OR Experience\n\nLevel II - Bachelor's degree in Engineering; and two years related experience preferably in simulation; or equivalent combination of education and experience. Knowledge and expertise for this level usually results from internal progressive experience. However, selection for this position is based on the demonstrated ability of the person to successfully fulfill the requirements listed.\n\nKnowledge, Skills, Abilities\n\nSOFTWARE KNOWLEDGE AND SKILLS:\n\nBasic high level programming skills required. C++ is preferred, C, FORTRAN, and/or Ada specifically are a plus. Knowledge of operating systems such as UNIX, Linux, and Concurrent OS/32 are a plus. Familiarity with Visual Studio 2015+, Team Foundation Server (Azure DevOps), and Project Server also a plus.\n\nEQUIPMENT KNOWLEDGE AND SKILLS:\n\nMicrosoft Operating System and standard office equipment such as computers, phones, photocopiers and fax machines.\n\nLANGUAGE SKILLS:\n\nFluency in English, through both verbal and written communications; Able to read, analyze, and interpret general business documents, technical procedures, or governmental regulations; Able to write reports, business correspondence, and procedure manuals; Able to effectively present information and respond to questions from groups of managers, clients and customers.\n\nMATHEMATICAL SKILLS:\n\nAble to work with mathematical concepts such as exponents, vector analysis, matrix transformations, probability and statistical inference, and fundamentals of plane and solid geometry and trigonometry; Able to apply concepts such as fractions, percentages, ratios, and proportions to practical situations.\n\nREASONING ABILITY:\n\nAble to define problems, collect data, establish facts, and draw valid conclusions; Able to interpret an extensive variety of technical instructions in mathematical or diagram form and deal with several abstract and concrete variables.\n\nPhysical Demands and Work Environment\n\nWhile performing the duties of this Job, the employee is regularly required to sit. The employee is frequently required to use hands to finger, handle, or feel; reach with hands and arms and talk or hear. The employee is occasionally required to stand; walk; climb or balance and stoop, kneel, crouch, or crawl.\n\nThe employee must occasionally lift and/or move up to 10 pounds. Specific vision abilities required by this job include close vision, distance vision, color vision, depth perception and ability to adjust focus.\n\nWhile performing the duties of this Job, the employee is occasionally exposed to moving mechanical parts. The noise level in the work environment is usually moderate.\n\nFlightSafety is an Equal Opportunity Employer/Vet/Disabled. All qualified applicants will receive consideration for employment without regard to race, color, religion, sex, sexual orientation, gender identity, national origin, or disability.", + "job_is_remote": false, + "job_posted_at_timestamp": 1695886200, + "job_posted_at_datetime_utc": "2023-09-28T07:30:00.000Z", + "job_city": "Broken Arrow", + "job_state": "OK", + "job_country": "US", + "job_latitude": 36.060947, + "job_longitude": -95.797455, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=60&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=4R4A3TAFrEOrwEmaAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 24, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": true + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Teamwork - Cooperates and collaborates with all teammates to achieve common goals by sharing information or expertise; working together to solve problems in a positive manner while valuing the contributions of others", + "Level II - Bachelor's degree in Engineering; and two years related experience preferably in simulation; or equivalent combination of education and experience", + "Knowledge and expertise for this level usually results from internal progressive experience", + "However, selection for this position is based on the demonstrated ability of the person to successfully fulfill the requirements listed", + "Basic high level programming skills required", + "Microsoft Operating System and standard office equipment such as computers, phones, photocopiers and fax machines", + "Fluency in English, through both verbal and written communications; Able to read, analyze, and interpret general business documents, technical procedures, or governmental regulations; Able to write reports, business correspondence, and procedure manuals; Able to effectively present information and respond to questions from groups of managers, clients and customers", + "Able to work with mathematical concepts such as exponents, vector analysis, matrix transformations, probability and statistical inference, and fundamentals of plane and solid geometry and trigonometry; Able to apply concepts such as fractions, percentages, ratios, and proportions to practical situations", + "Able to define problems, collect data, establish facts, and draw valid conclusions; Able to interpret an extensive variety of technical instructions in mathematical or diagram form and deal with several abstract and concrete variables", + "The employee is frequently required to use hands to finger, handle, or feel; reach with hands and arms and talk or hear", + "The employee is occasionally required to stand; walk; climb or balance and stoop, kneel, crouch, or crawl", + "The employee must occasionally lift and/or move up to 10 pounds", + "Specific vision abilities required by this job include close vision, distance vision, color vision, depth perception and ability to adjust focus" + ], + "Responsibilities": [ + "Provides software solution for visual systems integration and simulation of systems external to the aircraft for use in pilot training", + "Must simulate or stimulate avionics, infrastructure, and aircraft environment, including providing the interface to the visual system", + "Is responsible for product from design phase to hardware integration phase, to customer and certification authority verification, and continuing with ongoing customer support", + "Trains other Teammates as required", + "Will work on a variety of devices, from Full Flight Simulators with six degree-of-freedom motions systems and wraparound visual systems to graphics-based desktop trainers", + "Implements all standard visual systems simulation software, datalink simulation software, and other simulated systems external to the aircraft (such as moving models, satellites, nav aids and radios, DMO/SAF servers, and electronic warfare systems), and integrates the software with that of other engineering disciplines (such as aircraft systems, flight, propulsion, autoflight systems, sound, instructor station, and image generators)", + "If aircraft data is not available is required to assist in gathering data from aircraft or test bench to be used to re-engineer, the aircraft avionics", + "Develops graphical representations of aircraft instruments and displays for lower level (desktop) trainers and re-engineered avionics in high-level trainers", + "Prepares customer test guides that will be used to verify that the simulation satisfies the simulator specification requirements", + "Studies aircraft data (wiring diagrams, avionic specifications, etc.)", + "to design real time software to accurately model the avionics’ behavior", + "Performs standardized procedures to verify that the design meets the requirements of the customer test guide", + "Presents and demonstrates the simulator operation to the customer and corrects deficiencies identified by the customer", + "This may include working at customer facilities", + "Works well with software and hardware engineers, technicians, project engineers and program managers", + "Updates and maintains project schedules in Project Server for assigned projects", + "Domestic and international travel, shift work, and special work hours may be required to accomplish duties", + "Exhibit and practice professional and courteous behavior while interacting with both internal and external customers", + "Interact within a cooperative environment through beneficial behavior, commitment to common goals, contribution to problem solving, communication of ideas and suggestions, and encouragement to other employees and departments", + "Accountable for the control and distribution of documents and/or equipment subject to export control restrictions and the security of FSI materials, projects, intellectual property, and business information regarding the methods and techniques used in the production and usage of FSI products", + "Accountable for the accuracy and completeness of assigned tasks", + "Able to adhere to a work schedule including prompt and regular attendance", + "Ability to work in a constant state of alertness and safe manner", + "Will train other engineers as required", + "Makes self available to answer questions pertaining to his/her expertise", + "May be expected to independently maintain schedule and complete tasks", + "May contribute or lead new research and product development", + "May lead small teams of engineers", + "May be involved in creating customer proposals including an estimate of hours required", + "May be required to give technical presentations", + "Accountability - Shows up to work as scheduled, and follows instructions, policies, and procedures", + "Meets productivity standards, deadlines, and work schedules", + "Accepts full responsibility for quality of work, both independent and team projects", + "Adaptability- Quickly modifies behavior to maintain effectiveness when experiencing major changes in work tasks or work environment", + "Approaches change as opportunities for learning and development", + "Results Oriented - Focuses on results and desired outcomes and how best to achieve them by ensuring that they and others stay focused on the objective and perform in accordance with clear expectations", + "While performing the duties of this Job, the employee is regularly required to sit" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_naics_code": "336411", + "job_naics_name": "Aircraft Manufacturing" + }, + { + "employer_name": "Extant Resourcing Ltd", + "employer_logo": null, + "employer_website": null, + "employer_company_type": null, + "job_publisher": "ZipRecruiter", + "job_id": "WILDBnKTITGzkB35AAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Embedded Software Engineer - Processor specialist, C++", + "job_apply_link": "https://www.ziprecruiter.com/c/Extant-Resourcing-Ltd/Job/Embedded-Software-Engineer-Processor-specialist,-C++/-in-Tulsa,OK?jid=c3676baf10bcce5d", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.7092, + "apply_options": [ + { + "publisher": "ZipRecruiter", + "apply_link": "https://www.ziprecruiter.com/c/Extant-Resourcing-Ltd/Job/Embedded-Software-Engineer-Processor-specialist,-C++/-in-Tulsa,OK?jid=c3676baf10bcce5d", + "is_direct": false + } + ], + "job_description": "Job Summary & ResponsibilitiesOur client a global success story is on a path of significant growth. We are looking for a skilled embedded developer to join their team.\n\nYou will be working within a team that are the top of the top in terms of design capability. On a day to day basis you will be working with complex embedded systems for a range of new and existing product.\n\nWith some exciting projects on the horizon, this is a great time to join a company as we help double the R&D team over the coming 24 months.\n\nTo be considered for this role you must have extensive experience in C and C++ programming , Real time operating systems and experience throughout your career with embedded systems. In addition we are ideally looking for a candidate with experience in processor development or integration, experience with ARM Cortex M. DSP experience will hold you in high regard.\n\nWe are searching for candidates with a minimum of 3 years experience who have a relevant tertiary qualification in electrical engineering or similar discipline.\n\nFor a confidential discussion please forward your CV through and we will be in touch.\n\nRequirementsElectrical Engineering qualification or similar Embedded systems experience\nC and C++ programming\nARM Cortex M experience\n\nIdeally some DSP experience.", + "job_is_remote": false, + "job_posted_at_timestamp": 1697929380, + "job_posted_at_datetime_utc": "2023-10-21T23:03:00.000Z", + "job_city": "Tulsa", + "job_state": "OK", + "job_country": "US", + "job_latitude": 36.15398, + "job_longitude": -95.992775, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=60&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=WILDBnKTITGzkB35AAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": "2023-11-21T00:00:00.000Z", + "job_offer_expiration_timestamp": 1700524800, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 36, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "To be considered for this role you must have extensive experience in C and C++ programming , Real time operating systems and experience throughout your career with embedded systems", + "In addition we are ideally looking for a candidate with experience in processor development or integration, experience with ARM Cortex M", + "DSP experience will hold you in high regard", + "We are searching for candidates with a minimum of 3 years experience who have a relevant tertiary qualification in electrical engineering or similar discipline", + "RequirementsElectrical Engineering qualification or similar Embedded systems experience", + "Ideally some DSP experience" + ], + "Responsibilities": [ + "On a day to day basis you will be working with complex embedded systems for a range of new and existing product" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113300", + "job_onet_job_zone": "4", + "job_occupational_categories": [ + "15-1133.00: Software Developers, Systems Software" + ] + }, + { + "employer_name": "GovOS", + "employer_logo": null, + "employer_website": "http://www.govos.com", + "employer_company_type": null, + "job_publisher": "GovOS", + "job_id": "wKH96PgiGRGG9h3LAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Senior Software Engineer", + "job_apply_link": "https://govos.breezy.hr/p/6066890e32de-senior-software-engineer", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.6924, + "apply_options": [ + { + "publisher": "GovOS", + "apply_link": "https://govos.breezy.hr/p/6066890e32de-senior-software-engineer", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=ea6bfbe997e93ab7", + "is_direct": true + }, + { + "publisher": "Glassdoor", + "apply_link": "https://www.glassdoor.com/job-listing/senior-software-engineer-govos-JV_KO0,24_KE25,30.htm?jl=1008921311481", + "is_direct": true + }, + { + "publisher": "Jooble", + "apply_link": "https://jooble.org/jdp/3732176677699698146/Senior-Software-Engineer-Remote", + "is_direct": false + }, + { + "publisher": "Jobrapido.com", + "apply_link": "https://us.jobrapido.com/jobpreview/3045658608", + "is_direct": false + } + ], + "job_description": "Job Description\n\nWe're looking for a back-end lead to help us develop our cloud platform for local governments. This position is fully remote. The platform is a set of common services\nproviding shared functionality to all our individual products, such as authentication, reporting, payment processing, search, etc.\n\nResponsibilities\n• Leading a small team of engineers to build and enhance our backend services\n• Mentoring the team in best practices for building scalable and reliable web services, including code reviews\n• Daily coding alongside the team\n• Defining, refining, and documenting engineering practices and processes\nas makes sense for the team\n\nQualifications\n• Experience building production-grade service-oriented solutions in Node.js\n• Experience with automated testing (unit / integration testing)\n• Experience building RESTful APIs\n• Experience with message-based services and event-driven architectures\n• Experience with relational databases (we use Postgres)\n• Excellent communication skills\n\nBonus points for\n• Experience with Elastic Search\n• Experience with payment processing\n• Business Intelligence/ETL/Analytic processing\n• Serverless applications\n• Some experience with other programming languages\n\nCompensation & Benefits\n• Pay Range: 150,000ドル-180,000ドル\n• Leadership and career development opportunities\n• Competitive insurance (medical, dental, vision, and voluntary life & disability)\n• Mental health benefits\n• 401(k) plan (company matching)\n• Paid holidays\n• Flexible PTO - no accruals\n• Paid generous parental leave\n• Monthly work from home stipend\n\nThe pay range listed above represents the anticipated low and high end of the pay range for this position and may change in the future. Actual pay may vary and may be above or below the range based on various factors, including but not limited to work location, experience, and performance.", + "job_is_remote": true, + "job_posted_at_timestamp": 1696982400, + "job_posted_at_datetime_utc": "2023-10-11T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "dental_coverage", + "retirement_savings", + "health_insurance", + "paid_time_off" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=70&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=wKH96PgiGRGG9h3LAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Experience building production-grade service-oriented solutions in Node.js", + "Experience with automated testing (unit / integration testing)", + "Experience building RESTful APIs", + "Experience with message-based services and event-driven architectures", + "Experience with relational databases (we use Postgres)", + "Excellent communication skills", + "Experience with Elastic Search", + "Business Intelligence/ETL/Analytic processing", + "Serverless applications", + "Some experience with other programming languages" + ], + "Responsibilities": [ + "Leading a small team of engineers to build and enhance our backend services", + "Mentoring the team in best practices for building scalable and reliable web services, including code reviews", + "Daily coding alongside the team", + "Defining, refining, and documenting engineering practices and processes" + ], + "Benefits": [ + "Compensation & Benefits", + "Pay Range: 150,000ドル-180,000ドル", + "Leadership and career development opportunities", + "Competitive insurance (medical, dental, vision, and voluntary life & disability)", + "Mental health benefits", + "401(k) plan (company matching)", + "Paid holidays", + "Flexible PTO - no accruals", + "Paid generous parental leave", + "Monthly work from home stipend", + "The pay range listed above represents the anticipated low and high end of the pay range for this position and may change in the future" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4" + }, + { + "employer_name": "SMASH", + "employer_logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRKj5u4Sm2xLY2Kw348P1KlyxJRt24kHgCGi7ml&s=0", + "employer_website": null, + "employer_company_type": null, + "job_publisher": "LinkedIn", + "job_id": "rHSWC6rT2clxIcS6AAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Senior Software Engineer C-482", + "job_apply_link": "https://www.linkedin.com/jobs/view/senior-software-engineer-c-482-at-smash-3749135452", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.6408, + "apply_options": [ + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/senior-software-engineer-c-482-at-smash-3749135452", + "is_direct": false + }, + { + "publisher": "Smash CR - JazzHR", + "apply_link": "https://smashcr.applytojob.com/apply/c84qpueUZi/Senior-Software-Engineer-C482", + "is_direct": false + } + ], + "job_description": "SMASH, Who we are?\n\nWe are agents for tech professionals in Costa Rica and Colombia that help them build careers in the United States.\n• We believe in long-lasting relationships with our talent. We invest time getting to know them as individuals and understanding what they are looking for as their professional next step.\n• We aim to find the perfect match. As agents, we make sure to pair our talent with our US clients, not only by their technical skills but as a cultural fit. Our core competency is to find the right talent, fast.\n• We purposefully move away from the "contractor" or "outsourcing" type of relationship. Our clients don’t want contractors or "just a service." Neither does our talent.\n\nOur Benefits\n• Work from everywhere\n• Private Medical Insurance\n• English Academy for Employees and Relative\n• Business Skills Coach – Certifications\n• Discounts with Tech Universities\n• Events and additional Perks\n\nThis position is Remote to work with a US Company, you will require to have Citizenship or work permit from Colombia or Costa Rica to apply for this role\n\nOur client is looking for a Senior Software Engineer. As part of this team, you will work in a highly collaborative environment to build the next generation technology stack for one most rapidly expanding enterprises. You will have the opportunity to work and collaborate with prominent national brands.\n\nAs our team continues to expand, we are in search of individuals who exhibit both determination, a history of accomplishing goals, and an optimistic mentality. Join us in continuing the development of next-generation technology stacks, applications, products, and microservices.\n\nThe Impact You Will Make\n• Develop high-quality software that is aligned with user needs and business goals.\n• Coding using PHP, Go & JavaScript\n• Working extensively with the latest Vue.js and Laravel frameworks\n• Provide technical leadership for solving complex programming tasks\n• Responsible for project life-cycle, analysis, design, development, implementation, support and enhancement\n• Design and maintain coding standards to enhance app development and maintenance\n• Apply experience in PHP, Go, Javascript / Vue.js\n• Use PHP and Go to engineer and develop a microservice architecture\n• Sharing what you learn as you grow your programming skills\n\nWhat You Need\n• 5+ years as a Software Engineer\n• Extensive knowledge of PHP, Go & Javascript\n• Extensive experience working on web applications\n• Thorough comprehension of Vue.js and Laravel frameworks\n• Extensive understanding of MySql and database architecture\n• Proficient in Git version control\n• Strong understanding of Docker\n• High proficiency in written and verbal technical communication\n• A strong desire to learn from others and to teach others\n• Degree or foreign equivalent in Computer Science, Information Systems, or a closely related degree and 5 years of experience in the job offered or a closely related position\n• Experience with AWS, service-oriented architecture, and/or high-availability architecture.", + "job_is_remote": false, + "job_posted_at_timestamp": 1698274542, + "job_posted_at_datetime_utc": "2023-10-25T22:55:42.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": ["health_insurance"], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=70&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=rHSWC6rT2clxIcS6AAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": "2023-11-24T22:55:43.000Z", + "job_offer_expiration_timestamp": 1700866543, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 60, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": true, + "degree_mentioned": true, + "degree_preferred": false, + "professional_certification_mentioned": true + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Apply experience in PHP, Go, Javascript / Vue.js", + "Use PHP and Go to engineer and develop a microservice architecture", + "5+ years as a Software Engineer", + "Extensive knowledge of PHP, Go & Javascript", + "Extensive experience working on web applications", + "Thorough comprehension of Vue.js and Laravel frameworks", + "Extensive understanding of MySql and database architecture", + "Proficient in Git version control", + "Strong understanding of Docker", + "High proficiency in written and verbal technical communication", + "A strong desire to learn from others and to teach others", + "Degree or foreign equivalent in Computer Science, Information Systems, or a closely related degree and 5 years of experience in the job offered or a closely related position", + "Experience with AWS, service-oriented architecture, and/or high-availability architecture" + ], + "Responsibilities": [ + "Develop high-quality software that is aligned with user needs and business goals", + "Coding using PHP, Go & JavaScript", + "Provide technical leadership for solving complex programming tasks", + "Responsible for project life-cycle, analysis, design, development, implementation, support and enhancement", + "Design and maintain coding standards to enhance app development and maintenance" + ], + "Benefits": [ + "Work from everywhere", + "Private Medical Insurance", + "English Academy for Employees and Relative", + "Business Skills Coach – Certifications", + "Discounts with Tech Universities", + "Events and additional Perks" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4" + }, + { + "employer_name": "Shutterfly", + "employer_logo": "https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Shutterfly_logo.svg/1280px-Shutterfly_logo.svg.png", + "employer_website": "https://www.shutterfly.com", + "employer_company_type": "Manufacturing", + "job_publisher": "Jobvite", + "job_id": "o8vgXfl1ryZdRKG3AAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Principal Software Engineer", + "job_apply_link": "https://jobs.jobvite.com/shutterfly/job/ovTDofw9", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.8482, + "apply_options": [ + { + "publisher": "Jobvite", + "apply_link": "https://jobs.jobvite.com/shutterfly/job/ovTDofw9", + "is_direct": false + }, + { + "publisher": "Virtual Vocations", + "apply_link": "https://www.virtualvocations.com/job/principal-software-engineer-951989.html", + "is_direct": false + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/principal-software-engineer-at-shutterfly-3741507493", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=8430407baf7864ed", + "is_direct": true + }, + { + "publisher": "Jobgether", + "apply_link": "https://jobgether.com/offer/65397bebc60d43fe60d92033-principal-software-engineer", + "is_direct": false + }, + { + "publisher": "Levels.fyi", + "apply_link": "https://www.levels.fyi/jobs?jobId=82734701640327878", + "is_direct": false + }, + { + "publisher": "Glassdoor", + "apply_link": "https://www.glassdoor.com/job-listing/principal-software-engineer-shutterfly-JV_KO0,27_KE28,38.htm?jl=1008929436205", + "is_direct": true + }, + { + "publisher": "Jobilize", + "apply_link": "https://www.jobilize.com/job/us-principal-software-engineer-united-states-shutterfly-hiring-now", + "is_direct": false + } + ], + "job_description": "At Shutterfly, we make life’s experiences unforgettable. We believe there is extraordinary power in the self-expression. That’s why our family of brands helps customers create products and capture moments that reflect who they uniquely are.\n\nAs a Principal Software Engineer, you will create architectural approaches to e-commerce web-applications in shopping domain area, changes to existing systems and leads the realization of design to the desired target state. Deep subject matter knowledge of Web-applications and Content management systems is essential and technical knowledge of cloud architectures is highly desirable. In this role, you will conceptualize, design and development, maintain, and support of Shutterfly consumer facing web-applications in AWS environments.\n\nWhat You’ll Do Here:\n• Design and development of e-commerce web-application to meet business and technology needs\n• Employ engineering standards, principles, design patterns, and drive for high quality & performance system\n• Work collaboratively with others within and outside of team to build and deliver technology solutions aligned to business initiatives\n• Take a lead on effort to manage scalability, performance and availability, and reduce the operational overhead\n• Analyze situations and develop effective solutions that is flexible enough to be able to handle the changes that will occur over time\n• Provide technical guidance and coaching to development teams\n• Communicate successfully all concepts and guidelines to development team\n• Conduct code reviews and ensure architectural oversight and delivery of quality of code\n• Evaluate and recommend tools, technologies and processes to ensure the highest quality of the software\n• Troubleshoot code level problems quickly and efficiently\n\nThe Skills You’ll Bring:\n• Degree in Computer Science/Information Systems (or similar)\n• 7+ year of hands-on experience on web-application and micro services development\n• 5+ years of experience in software application design and architecture\n• Deep understanding of designing high speed web-applications\n• Experience in working with Web Application Frameworks & CMS systems.\n• Proficiency in coding in JavaScript/ReactJS, Java and Responsive web design\n• Excellent knowledge in algorithms, data structures, and software design\n• Experience in operationalizing and scaling the software solution.\n\nSupporting a diverse and inclusive workforce is important to Shutterfly not only because it directly reflects our value of Embracing our Differences, but also because it’s the right thing to do for our business and for our people. Learn more about our commitment to Diversity, Equity and Inclusion at Shutterfly DE&I.\n\nThe compensation package for this role is based on multiple factors, such as job level, responsibilities, location, and candidate experience. The base pay ranges included below are specific to the locations listed, and may not be applicable to other locations.\n• California : [ 128,700ドル-154,650]\n• Connecticut, New York, and Rhode Island: [128,700ドル-154,650]\n• Colorado and Washington: [128,700ドル-154,650]\n• Nevada: [120,500ドル-154,650]\n\nThis position may be eligible for a bonus incentive, health benefits, a 401K program, and other employee perks. More details about our company benefits can be found at https://shutterflyinc.com/benefits/\n\n#SFLYTechnology", + "job_is_remote": false, + "job_posted_at_timestamp": 1696204800, + "job_posted_at_datetime_utc": "2023-10-02T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": ["retirement_savings", "health_insurance"], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=70&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=o8vgXfl1ryZdRKG3AAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 84, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Degree in Computer Science/Information Systems (or similar)", + "7+ year of hands-on experience on web-application and micro services development", + "5+ years of experience in software application design and architecture", + "Deep understanding of designing high speed web-applications", + "Experience in working with Web Application Frameworks & CMS systems", + "Proficiency in coding in JavaScript/ReactJS, Java and Responsive web design", + "Excellent knowledge in algorithms, data structures, and software design", + "Experience in operationalizing and scaling the software solution" + ], + "Responsibilities": [ + "As a Principal Software Engineer, you will create architectural approaches to e-commerce web-applications in shopping domain area, changes to existing systems and leads the realization of design to the desired target state", + "In this role, you will conceptualize, design and development, maintain, and support of Shutterfly consumer facing web-applications in AWS environments", + "Design and development of e-commerce web-application to meet business and technology needs", + "Employ engineering standards, principles, design patterns, and drive for high quality & performance system", + "Work collaboratively with others within and outside of team to build and deliver technology solutions aligned to business initiatives", + "Take a lead on effort to manage scalability, performance and availability, and reduce the operational overhead", + "Analyze situations and develop effective solutions that is flexible enough to be able to handle the changes that will occur over time", + "Provide technical guidance and coaching to development teams", + "Communicate successfully all concepts and guidelines to development team", + "Conduct code reviews and ensure architectural oversight and delivery of quality of code", + "Evaluate and recommend tools, technologies and processes to ensure the highest quality of the software", + "Troubleshoot code level problems quickly and efficiently" + ], + "Benefits": [ + "This position may be eligible for a bonus incentive, health benefits, a 401K program, and other employee perks" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_naics_code": "32311", + "job_naics_name": "Printing" + }, + { + "employer_name": "Sev1Tech", + "employer_logo": null, + "employer_website": "http://www.sev1tech.com", + "employer_company_type": null, + "job_publisher": "Careers - Sev1Tech, LLC. - ICIMS", + "job_id": "1OpZALhvdpn-_DW8AAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Senior Software Engineer", + "job_apply_link": "https://careers-sev1tech.icims.com/jobs/7314/senior-software-engineer/job", + "job_apply_is_direct": true, + "job_apply_quality_score": 0.6602, + "apply_options": [ + { + "publisher": "Careers - Sev1Tech, LLC. - ICIMS", + "apply_link": "https://careers-sev1tech.icims.com/jobs/7314/senior-software-engineer/job", + "is_direct": true + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/senior-software-engineer-at-sev1tech-llc-3746868327", + "is_direct": false + }, + { + "publisher": "Levels.fyi", + "apply_link": "https://www.levels.fyi/jobs?jobId=141356785156924102", + "is_direct": false + }, + { + "publisher": "Pangian", + "apply_link": "https://pangian.com/job/sr-software-engineer-remote-327/", + "is_direct": false + } + ], + "job_description": "Overview/ Job Responsibilities\n\nSev1Tech is seeking a Senior Software Engineer for the Naval Supply Systems Command (NAVSUP) Ordnance Information System (OIS). This role will bring strong systems, software, cloud, and SAFE/Agile experience to provide technical expertise on a mission-critical program whose purpose is to develop, modernize, enhance, operate, and maintain services for OIS mission critical systems.\n• You will participate in all aspects of the software development lifecycle of a mission critical product including scope and work estimation, architecture and design, coding and unit testing.\n• Support all aspects of software development (designing, coding, testing, debugging, and maintaining products).\n• Translate customer needs into user stories and deliver working capabilities at the conclusion of each sprint.\n• Mentor other software developers on product team to enhance their skills.\n• Participate and/or lead sprint demonstrations and facilitate implementation of agreed upon ideas identified at retrospectives.\n• Work with others on product teams to develop solutions to hard problems that are impeding progress.\n• Effectively communicate technical challenges, options considered, and the recommended solution to team leads.\n\nMinimum Qualifications\n• Must have DOD Secret level clearance to start\n• Certification Requirement: Directive 8570.1/8140 - IAT I: A+ or Security+\n• Bachelor’s degree with a minimum of 6 years of relevant experience.\n• Must be a self-starter with the ability to work independently with minimal supervision. Interface with software developers, analysts, and other project team members using Agile SCRUM methodology and SAFe to deliver features that enhance system capabilities and facilitate NAVSUP OIS’s mission.\n• Experience with IT networks and technologies; preferably Oracle 19c, Linux, PL/SQL, Java, Java Servlet, JUnit, JavaScript, HTML, CSS, TypeScript, Axios, Maven, Vue.JS, Ionic, and Oracle Forms and Reports.\n• Experience with an agile lifecycle management tool (e.g., Jira, Azure DevOps, Gitlab Ultimate)\n• Proficiency with common SAFE and Agile practices, service-oriented environments, and better development practices\n• Excellent written and verbal communication skills\n\nDesired Qualifications\n• Experience as a software developer supporting one or more products within NAVSUP\n• Familiarity with and prior use of test automation, e.g., Selenium, Citrus\n• Knowledge of AWS Relational Database Services\n• Experience with DevSecOps frameworks\n• Experience as a developer within the AWS environment is a plus\n• Direct experience in providing customer support.\n• Experience with policies and procedures to escalate customer issues.\n• Experience with analytical and documentation requirements.\n\nAbout Sev1Tech LLC\n\nFounded in 2010, Sev1Tech provides IT, engineering, and program management solutions delivery. Sev1Tech focuses on providing program and IT support services to critical missions across Federal and Commercial Clients. Our Mission is to Build better companies. Enable better government. Protect our nation. Build better humans across the country.\n\nJoin the Sev1Tech family where you can achieve great accomplishments while fostering a satisfying and rewarding career progression. Please apply directly through the website at: https://www.sev1tech.com/careers/current-openings/#/ #joinSev1tech\n\nFor any additional questions or to submit any referrals, please contact: michelle.sexton@sev1tech.com\n\nSev1Tech is an Equal Opportunity and Affirmative Action Employer. All qualified applicants will receive consideration for employment without regard to race, color, religion, sex, pregnancy, sexual orientation, gender identity, national origin, age, protected veteran status, or disability status.", + "job_is_remote": false, + "job_posted_at_timestamp": 1634927073, + "job_posted_at_datetime_utc": "2021-10-22T18:24:33.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=70&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=1OpZALhvdpn-_DW8AAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": "2024-10-22T18:24:33.000Z", + "job_offer_expiration_timestamp": 1729621473, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 72, + "experience_mentioned": true, + "experience_preferred": true + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": false, + "professional_certification_mentioned": true + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Must have DOD Secret level clearance to start", + "Certification Requirement: Directive 8570.1/8140 - IAT I: A+ or Security+", + "Bachelor’s degree with a minimum of 6 years of relevant experience", + "Must be a self-starter with the ability to work independently with minimal supervision", + "Experience with IT networks and technologies; preferably Oracle 19c, Linux, PL/SQL, Java, Java Servlet, JUnit, JavaScript, HTML, CSS, TypeScript, Axios, Maven, Vue.JS, Ionic, and Oracle Forms and Reports", + "Experience with an agile lifecycle management tool (e.g., Jira, Azure DevOps, Gitlab Ultimate)", + "Proficiency with common SAFE and Agile practices, service-oriented environments, and better development practices", + "Excellent written and verbal communication skills" + ], + "Responsibilities": [ + "This role will bring strong systems, software, cloud, and SAFE/Agile experience to provide technical expertise on a mission-critical program whose purpose is to develop, modernize, enhance, operate, and maintain services for OIS mission critical systems", + "You will participate in all aspects of the software development lifecycle of a mission critical product including scope and work estimation, architecture and design, coding and unit testing", + "Support all aspects of software development (designing, coding, testing, debugging, and maintaining products)", + "Translate customer needs into user stories and deliver working capabilities at the conclusion of each sprint", + "Mentor other software developers on product team to enhance their skills", + "Participate and/or lead sprint demonstrations and facilitate implementation of agreed upon ideas identified at retrospectives", + "Work with others on product teams to develop solutions to hard problems that are impeding progress", + "Effectively communicate technical challenges, options considered, and the recommended solution to team leads" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4" + }, + { + "employer_name": "Tovala", + "employer_logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTFfH_tc69dZDvPY2sRykG4uHfF49hiDq5ibRUw&s=0", + "employer_website": "http://tovala.com", + "employer_company_type": null, + "job_publisher": "Lever", + "job_id": "tZtmfc11430muffNAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Web Senior Software Engineer", + "job_apply_link": "https://jobs.lever.co/tovala/6b9eb42b-2176-4857-814c-1092181fa0a9", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.7974, + "apply_options": [ + { + "publisher": "Lever", + "apply_link": "https://jobs.lever.co/tovala/6b9eb42b-2176-4857-814c-1092181fa0a9", + "is_direct": false + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/senior-engineer-web-at-underdog-fantasy-3694386387", + "is_direct": false + }, + { + "publisher": "ZipRecruiter", + "apply_link": "https://www.ziprecruiter.com/c/Siemens/Job/Software-Engineer-Senior/-in-Fremont,CA?jid=efecc0be54af7def", + "is_direct": false + }, + { + "publisher": "Champaign-Urbana Jobs - You're Welcome CU", + "apply_link": "https://jobs.yourewelcomecu.com/companies/tovala/jobs/29217819-web-senior-software-engineer", + "is_direct": false + }, + { + "publisher": "Built In", + "apply_link": "https://builtin.com/job/engineer/senior-software-engineer-web-frontend/845492", + "is_direct": false + }, + { + "publisher": "Built In Chicago", + "apply_link": "https://www.builtinchicago.org/job/engineer/web-senior-software-engineer/226534", + "is_direct": false + }, + { + "publisher": "Wellfound", + "apply_link": "https://wellfound.com/jobs/1740637-software-engineer-web", + "is_direct": true + }, + { + "publisher": "Startup Jobs", + "apply_link": "https://startup.jobs/web-senior-software-engineer-tovala-4679933", + "is_direct": false + } + ], + "job_description": "We’re Tovala, a food-tech company reinventing home cooking to save consumers time. Through an innovative combination of hardware, software, and fresh food delivery, we make it incredibly simple for anyone to prepare and enjoy delicious, home-cooked meals without sacrificing time to do whatever matters to them. Through our superior technology, product experience and food quality, we have separated Tovala from the busy pack of other meal delivery businesses. In the process, we’ve amassed a loyal, rapidly growing following and our retention, product engagement and customer NPS are all best-in-class. We’ve raised over 100ドルmm from great investors like Left Lane Capital, Origin Ventures, Y Combinator and Comcast Ventures and have invested strongly in building a unique culture that fosters growth, personal development and camaraderie.\n\nPosition Summary\n\nTovala is seeking an experienced Web Software Engineer to join our talented team. As a Web Engineer at Tovala, you will contribute to internal tools that help our Customer Service team and our Operations team prepare and ship meals weekly. Our Web Engineers deliver different ways to surprise and delight our customers through our ordering experience.\n\nThis role will\n• Be a member of our front-end applications team designing and developing our web applications using TypeScript, React, and Tailwind.\n• Produce high-quality code grounded in strong software engineering principles.\n• Participate in code reviews and drive best practices.\n• Write and maintain automated tests at all levels of the solution.\n• Partner with our product team to propose, design, estimate, and deliver solutions.\n\nAbout you\n• You work with UX Designers and love prototyping and giving feedback on designs.\n• You have hands-on, professional experience building enterprise-level web applications.\n• You have deployed and maintained enterprise-level web applications.\n• You write unit tests and UI automation tests as part of your development process.\n• You can communicate with both technical and non-technical stakeholders effectively.\n• You love food, whether that means cooking it, eating it, frequently pressing your nose against deli windows, or lusting after soft-serve on Instagram – all fair game.\n\nRequirements\n• Bachelor's Degree in Computer Science or equivalent experience.\n• 5+ years of experience developing web applications.\n• 4+ years developing in React and TypeScript.2+ years of experience using Tailwind.\n• 2+ years of unit testing using Jest or similar frameworks.\n• You have experience monitoring uptime and performance.\n• You have deployed at least 1 web application using Vercel or similar providers.You have experience building and managing internal libraries.\n• Strong written and verbal communication skills\n\nCompensation & Benefits\n• Tovala uses market data, geography, and placement of internal employees to determine appropriate salary. Additionally, we offer all employees real ownership in the company in the form of a competitive equity package.\n• Unlimited paid time off (with a minimum of 15 days off you HAVE to take)\n• Comprehensive healthcare coverage we really invest in\n• 401k with match\n• Free Tovala Smart Oven and discounted Tovala meals\n• Paid holidays and our winter holiday office shutdown where the offices and facilities close for a week around Christmas and New Years\n• Various other perks - recognition programs, continued learning stipend, casual dress code, in-office coffee, snacks and drinks, and Tovala swag\n\nThe values we hold dear\n\nPut the team first\n\nWe put what is best for the broader team ahead of what is best for ourselves or our immediate department.\n\nGet s#!t done (well)\n\nWe celebrate people at all levels for delivering high impact work that expands the bounds of what we’re able to do.\n\nConnect the dots\n\nWe engage with curiosity to learn how our work impacts others so that we can problem-solve holistically and work collaboratively.\n\nBe Direct\n\nWe share our perspective openly and directly, even when it feels difficult to do so.\n\nEmbrace the obstacles\n\nWe rise to meet challenges with a sense of urgency, resolve, and optimism.\n\nChampion the customer\n\nWe consider and prioritize our customer in all of our decisions\n\nAt Tovala we‘re committed to building a workplace that represents a variety of backgrounds, skills, and perspectives and do not discriminate on the basis of race, religion, color, national origin, gender, sexual orientation, age, marital status, veteran status, or disability status. Everyone is welcome here!", + "job_is_remote": false, + "job_posted_at_timestamp": 1693267200, + "job_posted_at_datetime_utc": "2023-08-29T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "paid_time_off", + "retirement_savings", + "health_insurance" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=70&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=tZtmfc11430muffNAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 60, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "You work with UX Designers and love prototyping and giving feedback on designs", + "You have hands-on, professional experience building enterprise-level web applications", + "You have deployed and maintained enterprise-level web applications", + "You write unit tests and UI automation tests as part of your development process", + "You can communicate with both technical and non-technical stakeholders effectively", + "You love food, whether that means cooking it, eating it, frequently pressing your nose against deli windows, or lusting after soft-serve on Instagram – all fair game", + "Bachelor's Degree in Computer Science or equivalent experience", + "5+ years of experience developing web applications", + "4+ years developing in React and TypeScript.2+ years of experience using Tailwind", + "2+ years of unit testing using Jest or similar frameworks", + "You have experience monitoring uptime and performance", + "You have deployed at least 1 web application using Vercel or similar providers", + "You have experience building and managing internal libraries", + "Strong written and verbal communication skills" + ], + "Responsibilities": [ + "As a Web Engineer at Tovala, you will contribute to internal tools that help our Customer Service team and our Operations team prepare and ship meals weekly", + "Be a member of our front-end applications team designing and developing our web applications using TypeScript, React, and Tailwind", + "Produce high-quality code grounded in strong software engineering principles", + "Participate in code reviews and drive best practices", + "Write and maintain automated tests at all levels of the solution", + "Partner with our product team to propose, design, estimate, and deliver solutions" + ], + "Benefits": [ + "Tovala uses market data, geography, and placement of internal employees to determine appropriate salary", + "Additionally, we offer all employees real ownership in the company in the form of a competitive equity package", + "Unlimited paid time off (with a minimum of 15 days off you HAVE to take)", + "Comprehensive healthcare coverage we really invest in", + "401k with match", + "Free Tovala Smart Oven and discounted Tovala meals", + "Paid holidays and our winter holiday office shutdown where the offices and facilities close for a week around Christmas and New Years", + "Various other perks - recognition programs, continued learning stipend, casual dress code, in-office coffee, snacks and drinks, and Tovala swag" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113400", + "job_onet_job_zone": "3" + }, + { + "employer_name": "C0035 LiveRamp, Inc.", + "employer_logo": null, + "employer_website": null, + "employer_company_type": null, + "job_publisher": "Workday", + "job_id": "dYUZgEPRobIKMIr_AAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Senior Software Engineer - Ingestion", + "job_apply_link": "https://liveramp.wd5.myworkdayjobs.com/en-US/LiveRampCareers/job/Senior-Software-Engineer--Cloud-Runtime-Enablement_JR010018", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.8399, + "apply_options": [ + { + "publisher": "Workday", + "apply_link": "https://liveramp.wd5.myworkdayjobs.com/en-US/LiveRampCareers/job/Senior-Software-Engineer--Cloud-Runtime-Enablement_JR010018", + "is_direct": false + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/senior-software-engineer-ingestion-at-liveramp-3716309630", + "is_direct": false + }, + { + "publisher": "Liveramp Jobs", + "apply_link": "https://liveramp.dejobs.org/virtual-usa/senior-software-engineer-golang-kubernetes/3706012FF6EE4E5DA7EC696ED21D67D5/job/?utm_source=USNLx.com-DE&utm_medium=NLX&utm_campaign=USNLx.com", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=87972ffcfa99d4d5", + "is_direct": false + }, + { + "publisher": "Levels.fyi", + "apply_link": "https://www.levels.fyi/jobs?jobId=80340883968271046", + "is_direct": false + }, + { + "publisher": "Jooble", + "apply_link": "https://jooble.org/jdp/7477122280562007530/Senior-Software-Engineer-(Golang%2C-Kubernetes)-New-York-State", + "is_direct": false + }, + { + "publisher": "BeBee", + "apply_link": "https://us.bebee.com/job/20231009-bdefb5ac36b89ffe3d3e2a1fe16058c0", + "is_direct": false + }, + { + "publisher": "Jora", + "apply_link": "https://us.jora.com/job/Senior-Software-Engineer-9dee2ea4c60e8f01a422bcca9e921b0a", + "is_direct": false + } + ], + "job_description": "LiveRamp is the data collaboration platform of choice for the world’s most innovative companies. A groundbreaking leader in consumer privacy, data ethics, and foundational identity, LiveRamp is setting the new standard for building a connected customer view with unmatched clarity and context while protecting precious brand and consumer trust. LiveRamp offers complete flexibility to collaborate wherever data lives to support the widest range of data collaboration use cases—within organizations, between brands, and across its premier global network of top-quality partners. Hundreds of global innovators, from iconic consumer brands and tech giants to banks, retailers, and healthcare leaders turn to LiveRamp to build enduring brand and business value by deepening customer engagement and loyalty, activating new partnerships, and maximizing the value of their first-party data while staying on the forefront of rapidly evolving compliance and privacy requirements. Senior Software Engineer- Global Ingestion Platform LiveRamp is the leading data connectivity platform. We are committed to connecting the world’s data safely and effectively, advancing innovation, and empowering people to do good. Our platform powers customer experiences centered around the needs and concerns of real people, keeping the Internet open for all. We enable individuals worldwide to connect with the brands and products they love. LiveRampers thrive on solving challenging problems for the good of humanity—and we’re always looking for bright, kind, and creative people to help us get there. Mission: LiveRamp makes it safe and easy for businesses to use data effectively. The Global Ingestion team owns the crucial part of our LiveRamp system, where customers first upload or channel their data. くろまる We are a critical component of LiveRamp’s vision to become a global platform for connected data. We aim to provide an intuitive self-service user interface for our customers to efficiently upload, connect or start ingesting their data. くろまる We receive and process hundreds of billions of records (120TB of data) daily from various sources. くろまる We parse, validate, anonymize, and normalize the data to a standard format to enable use by a diverse set of downstream applications. くろまる We take data ethics and security seriously throughout our pipeline, ensuring compliance with relevant privacy laws and certifications. Your will: くろまる Lead the team to build the next-generation global ingestion platform from the ground up and migrate existing complex use cases into that system. In its completion, the global ingestion platform will empower data connectivity in global markets (US, EU, APAC, etc). くろまる Work with a team of supportive and passionate software engineers. くろまる Architect and implement systems that materialize our platform vision. くろまる Resolve technical issues for internal and external customers. くろまる Be a coach to other engineers on the team, helping them succeed in their current role while preparing them for future roles. くろまる Perform code reviews and design reviews for other engineers on the team. くろまる Have an impact across the entire product and engineer org by leading technical discussions in the architecture board, evangelizing best practices, standards, and mentoring engineers and engineering teams. くろまる Have an impact in the broader industry by representing LiveRamp to speak at events and conferences. Your team will: くろまる Build and support best in class Global Ingestion systems with an emphasis on top-notch user experience and intuitive self-service workflows. くろまる Design and implement next generation data pipelines to efficiently handle Petabytes of batched or real time streaming data at a global scale. くろまる Uphold our data ethics and security standards to meet or exceed customer expectations and global government regulations. くろまる Stay nimble and respond quickly to emerging technologies and opportunities. About you: くろまる 8+ years of experience in the fields of software engineering (backend) くろまる 3+ years of experience using cloud based platform such as GCP, AWS, Azure or similar technologies くろまる Track record of leading and delivering large scale, cross-team, cross-functional projects, enjoy collaborating on an agile development team and have empathy for teammates and customers. くろまる Excellent communication and collaboration skills, and experience working with a remote, global team. くろまる Have a passion for building large-scale distributed systems and are comfortable writing maintainable, extensible, scalable and high performance code. くろまる Have a startup personality and enjoy working as part of a team: smart, ethical, friendly, hard-working, and productive. くろまる You love mentoring junior engineers, leading end-to-end development and release of an application or service, deploying software that conforms to best practices. くろまる Comfortable evaluating and adapting to the latest tools and technologies. くろまる Not afraid of "getting your hands dirty" and quickly iterating with evolving requirements from customers. くろまる Proficient in one or more compiled languages, preferably Java, Scala, Go or C++. くろまる Bachelor or Master of Science in Computer Science, Information Systems or related degree Bonus points: くろまる Experience with GCP products such as BigTable, BigQuery, Dataproc, PubSub or other data tools like Spark, Kafka, Hive, or Apache Beam くろまる Experience with development tools such as Terraform, Kubernetes, Helm, or Gradle くろまる Experience with real time distributed database such as SingleStore くろまる Experience with designing and implementing interfaces and infrastructure for large scale systems and RESTful APIs くろまる Contributions to open source projects Benefits: くろまる People: work with talented, collaborative, and friendly people who love what they do. くろまる In-Office Food: enjoy catered meals, boundless snacks, and the occasional food truck. くろまる Fun: we host in-person and virtual events such as game nights, happy hours, camping trips, and sports leagues. くろまる Work/Life Harmony: flexible paid time off, options for working from home, and paid parental leave. くろまる Whole Health Package: medical, dental, vision, and disability insurance. Plus mental health support (via Talkspace) and fitness reimbursement up to 100ドル per month. くろまる Savings: our 401K matching plan helps you plan ahead. くろまる RampRemote: a comprehensive program to assist you in setting up a home office that works for you More about us: LiveRamp’s mission is to connect data in ways that matter, and doing so starts with our people. We know that inspired teams enlist people from a blend of backgrounds and experiences. And we know that individuals do their best when they not only bring their full selves to work but feel like they truly belong. Connecting LiveRampers to new ideas and one another is one of our guiding principles—one that informs how we hire, train, and grow our global team across eight countries and four continents. LiveRamp is an affirmative action and equal opportunity employer (AA/EOE/W/M/Vet/Disabled) and does not discriminate in recruiting, hiring, training, promotion or other employment of associates or the awarding of subcontracts because of a person's race, color, sex, age, religion, national origin, protected veteran, disability, sexual orientation, gender identity, genetics or other protected status. Qualified applicants with arrest and conviction records will be considered for the position in accordance with the San Francisco Fair Chance Ordinance. California residents: Please see our California Personnel Privacy Policy for more information regarding how we collect, use, and disclose the personal information you provide during the job application process. To all recruitment agencies: LiveRamp does not accept agency resumes. Please do not forward resumes to our jobs alias, LiveRamp employees or any other company location. LiveRamp is not responsible for any fees related to unsolicited resumes. The approximate annual base compensation range is 148,000ドル to 190,000ドル The actual offer, reflecting the total compensation package and benefits, will be determined by a number of factors including the applicant's experience, knowledge, skills, and abilities, geography, as well as internal equity among our team. More about us: LiveRamp’s mission is to connect data in ways that matter, and doing so starts with our people. We know that inspired teams enlist people from a blend of backgrounds and experiences. And we know that individuals do their best when they not only bring their full selves to work but feel like they truly belong. Connecting LiveRampers to new ideas and one another is one of our guiding principles—one that informs how we hire, train, and grow our global team across nine countries and four continents. Click here to learn more about Diversity, Inclusion, & Belonging (DIB) at LiveRamp. Our growth is creating great opportunities! LiveRamp is the data collaboration platform of choice for the world’s most innovative companies. A groundbreaking leader in consumer privacy, data ethics, and foundational identity, LiveRamp is setting the new standard for building a connected customer view with unmatched clarity and context while protecting precious brand and consumer trust. LiveRamp offers complete flexibility to collaborate wherever data lives to support the widest range of data collaboration use cases—within organizations, between brands, and across its premier global network of top-quality partners. Hundreds of global innovators, from iconic consumer brands and tech giants to retailers, financial services, and healthcare leaders turn to LiveRamp to build enduring brand and business value by deepening customer engagement and loyalty, activating new partnerships, and maximizing the value of their first-party data while staying on the forefront of rapidly evolving compliance and privacy requirements. LiveRamp is based in San Francisco, California with offices worldwide. Learn more at LiveRamp.com.", + "job_is_remote": true, + "job_posted_at_timestamp": 1694563200, + "job_posted_at_datetime_utc": "2023-09-13T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "retirement_savings", + "health_insurance", + "paid_time_off", + "dental_coverage" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=70&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=dYUZgEPRobIKMIr_AAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 96, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": false, + "professional_certification_mentioned": true + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "8+ years of experience in the fields of software engineering (backend)", + "3+ years of experience using cloud based platform such as GCP, AWS, Azure or similar technologies", + "Track record of leading and delivering large scale, cross-team, cross-functional projects, enjoy collaborating on an agile development team and have empathy for teammates and customers", + "Excellent communication and collaboration skills, and experience working with a remote, global team", + "Have a passion for building large-scale distributed systems and are comfortable writing maintainable, extensible, scalable and high performance code", + "Have a startup personality and enjoy working as part of a team: smart, ethical, friendly, hard-working, and productive", + "You love mentoring junior engineers, leading end-to-end development and release of an application or service, deploying software that conforms to best practices", + "Comfortable evaluating and adapting to the latest tools and technologies", + "Not afraid of "getting your hands dirty" and quickly iterating with evolving requirements from customers", + "Proficient in one or more compiled languages, preferably Java, Scala, Go or C++", + "Bachelor or Master of Science in Computer Science, Information Systems or related degree Bonus points:", + "Experience with GCP products such as BigTable, BigQuery, Dataproc, PubSub or other data tools like Spark, Kafka, Hive, or Apache Beam", + "Experience with development tools such as Terraform, Kubernetes, Helm, or Gradle", + "Experience with real time distributed database such as SingleStore", + "Experience with designing and implementing interfaces and infrastructure for large scale systems and RESTful APIs" + ], + "Responsibilities": [ + "Lead the team to build the next-generation global ingestion platform from the ground up and migrate existing complex use cases into that system", + "In its completion, the global ingestion platform will empower data connectivity in global markets (US, EU, APAC, etc)", + "Work with a team of supportive and passionate software engineers", + "Architect and implement systems that materialize our platform vision", + "Resolve technical issues for internal and external customers", + "Be a coach to other engineers on the team, helping them succeed in their current role while preparing them for future roles", + "Perform code reviews and design reviews for other engineers on the team", + "Have an impact across the entire product and engineer org by leading technical discussions in the architecture board, evangelizing best practices, standards, and mentoring engineers and engineering teams", + "Have an impact in the broader industry by representing LiveRamp to speak at events and conferences", + "Build and support best in class Global Ingestion systems with an emphasis on top-notch user experience and intuitive self-service workflows", + "Design and implement next generation data pipelines to efficiently handle Petabytes of batched or real time streaming data at a global scale", + "Uphold our data ethics and security standards to meet or exceed customer expectations and global government regulations", + "Stay nimble and respond quickly to emerging technologies and opportunities" + ], + "Benefits": [ + "Work/Life Harmony: flexible paid time off, options for working from home, and paid parental leave", + "Whole Health Package: medical, dental, vision, and disability insurance", + "Plus mental health support (via Talkspace) and fitness reimbursement up to 100ドル per month", + "Savings: our 401K matching plan helps you plan ahead", + "The approximate annual base compensation range is 148,000ドル to 190,000ドル The actual offer, reflecting the total compensation package and benefits, will be determined by a number of factors including the applicant's experience, knowledge, skills, and abilities, geography, as well as internal equity among our team" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4" + }, + { + "employer_name": "Oracle", + "employer_logo": "https://upload.wikimedia.org/wikipedia/commons/thumb/5/50/Oracle_logo.svg/1280px-Oracle_logo.svg.png", + "employer_website": "http://www.oracle.com", + "employer_company_type": "Information", + "job_publisher": "Eeho.fa.us2.Oraclecloud.com", + "job_id": "OzaHkaT2pyImVemUAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Senior Software Engineer", + "job_apply_link": "https://eeho.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1/job/211522", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.6758, + "apply_options": [ + { + "publisher": "Eeho.fa.us2.Oraclecloud.com", + "apply_link": "https://eeho.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1/job/211522", + "is_direct": false + } + ], + "job_description": "Building off our Cloud momentum, Oracle has formed a new organization - OHAI. This team will focus on product development and product strategy for Oracle Health, while building out a complete platform supporting modernized, automated healthcare. This is a net new line of business, constructed with an entrepreneurial spirit that promotes an energetic and creative environment. We are unencumbered and will need your contribution to make it a world class engineering center with the focus on excellence.\n\nWhy?\n\nOHAI is a new line of business that aims to leverage our expertise in IaaS and SaaS to transform the health care industry, provide patient-centric care and make the best clinical tools available around the world (https://www.oracle.com/industries/healthcare/). We are looking for the best and brightest technologists as we build the next generation of Health platform that will change the industry. This is a greenfield effort with an entrepreneurial spirit that promotes energetic and creative environment. We like to move fast and innovate, and we want your help to make it a world class engineering team that makes a large impact.\n\nMillennium Platform is building the next generation of health care platform using cloud native solutions to provide superior patient experience. The platform and control plane build foundational building blocks that make up the stack and services to manage environment lifecycle events. Our platform provides consistent customer experience across management operations while providing mission critical functions ranging from patient prescriptions to surgery rooms to our customers across the globe. We are expanding our talented team so come join us while we embark on this exciting journey.\n\nWhat?\n\nWe are seeking hands-on Senior Member of Technical Staff Engineers that share our passion and excitement of operating distributed systems at hyper scale using cloud native best practices. You will have part in the disruption of the health care industry and will help deliver better patient care.\n\nAs a SMTS engineer in our team, you’ll be responsible and lead efforts in designing and building scalable, distributed, and resilient software components and services to support health care platform, applications, and our end users. We believe in ownership and expect you to think long term, mentor, and empower other engineers. As a tech lead you will own the complete SDLC from architecture, development, testing, first class monitoring, to production.\n\nMinimum Qualifications\n• BS or MS degree in computer science, or equivalent\n• 5+ years of developing and shipping enterprise distributed and/or cloud native systems\n• Strong grasp of system design fundamentals and distributed systems architectural best practices\n• Demonstrated ability to write great code in Java, Python, or similar OO languages\n• Experience with web application development using microservices frameworks such as Helidon, Dropwizard, Spring, etc.\n• Experience with containers and container orchestration technologies (Kubernetes, Docker)\n• Strong desire to make an impact and thrive in collaborative and energetic environments\n• Ability to effectively communicate technical concepts verbally and through design aspects", + "job_is_remote": false, + "job_posted_at_timestamp": 1697746192, + "job_posted_at_datetime_utc": "2023-10-19T20:09:52.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=70&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=OzaHkaT2pyImVemUAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "BS or MS degree in computer science, or equivalent", + "5+ years of developing and shipping enterprise distributed and/or cloud native systems", + "Strong grasp of system design fundamentals and distributed systems architectural best practices", + "Demonstrated ability to write great code in Java, Python, or similar OO languages", + "Experience with web application development using microservices frameworks such as Helidon, Dropwizard, Spring, etc", + "Experience with containers and container orchestration technologies (Kubernetes, Docker)", + "Strong desire to make an impact and thrive in collaborative and energetic environments", + "Ability to effectively communicate technical concepts verbally and through design aspects" + ], + "Responsibilities": [ + "The platform and control plane build foundational building blocks that make up the stack and services to manage environment lifecycle events", + "You will have part in the disruption of the health care industry and will help deliver better patient care", + "As a SMTS engineer in our team, you’ll be responsible and lead efforts in designing and building scalable, distributed, and resilient software components and services to support health care platform, applications, and our end users", + "As a tech lead you will own the complete SDLC from architecture, development, testing, first class monitoring, to production" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_naics_code": "511210", + "job_naics_name": "Software Publishers" + }, + { + "employer_name": "Jobs for Humanity", + "employer_logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTbJHCUX2weqb1W1kVhYxPY9kNLcAtoWBR-AN_g&s=0", + "employer_website": null, + "employer_company_type": null, + "job_publisher": "WayUp", + "job_id": "2YK5pYiWEoxGnLD2AAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer", + "job_apply_link": "https://www.wayup.com/i-j-ServiceNow-294563131492001/", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.6633, + "apply_options": [ + { + "publisher": "WayUp", + "apply_link": "https://www.wayup.com/i-j-ServiceNow-294563131492001/", + "is_direct": false + } + ], + "job_description": "Job Description\n\nLead Engineer - Network Security Monitoring\n\nLocation: 7000 Target Pkwy N, Brooklyn Park, Minnesota, United States, 55445\n\nThe pay range for this position is 109,000ドル.00 - 196,200ドル.00. Pay is based on several factors including labor markets, education, work experience, and certifications. In addition to your pay, Target cares about your well-being and offers comprehensive health benefits and programs for you and your family. Other benefits include a 401(k), employee discount, short term disability, long term disability, paid sick leave, paid national holidays, and paid vacation. Find out more about our competitive benefits here.\n\nAbout Us\n\nTarget is a Fortune 50 company and one of America's leading retailers. We value innovation, ongoing learning, engineering excellence, and stellar outcomes. The Cyber Fusion Center is where our security team drives innovation and protects our network using cutting-edge technologies. Join us and be part of taking our enterprise security solutions from concept to release.\n\nJob Description\n\nIn this role, you will collaborate with software and security engineers to innovate and defend Target's network. Your responsibilities will include ensuring Cybersecurity visibility requirements are met and developing our network-based threat detection capability. Job duties may change based on business needs.\n\nQualifications\n• A 4-year degree or equivalent experience\n• 5+ years of experience in network engineering or network visibility architecture and design\n• Strong knowledge of network traffic analysis applications and tooling\n• Expertise in analysis of network protocols and captured network traffic\n• Effective communication skills using high- and low-level diagrams\n• Expertise in analysis and optimization of systems capacity, performance, and operational health\n• Keeps up-to-date with new technologies through training and self-directed education\n• Strong problem-solving and troubleshooting skills\n\nAdditional Skills\n• Experience with Security Onion, Zeek, Suricata, Snort\n• Proficiency in Python, Bash, Go scripting/programming\n• Experience developing monitoring and testing frameworks\n• Proficiency in Kibana, Splunk, Graylog for data analysis\n• Experience with Linux, Docker, git\n\nWork Arrangement\n\nThis position offers a Hybrid/Flex for Your Day work arrangement. This means that you will perform your core role both onsite at our Target HQ MN location and virtually, depending on your tasks. Work duties cannot be performed outside the country of the primary work location unless otherwise specified by Target. Learn more about Minnesota here.\n\nAmericans with Disabilities Act (ADA)\n\nTarget will provide reasonable accommodations during the application process as required by law. If you have a disability and need assistance, please visit your nearest Target store or Supply Chain Facility, or contact Guest Services at 1-800-440-0680.\n\nDear Hiring Manager, I am writing to express my interest in the Lead Engineer - Network Security Monitoring position at Target. I am excited about the opportunity to contribute to a company that values innovation, ongoing learning, and engineering excellence. I believe that my qualifications make me a strong fit for this role: - 4-year degree or equivalent experience - 5+ years of network engineering or network visibility architecture and design - Strong knowledge of network traffic analysis applications and tooling - Expertise in analysis of network protocols and captured network traffic - Effective communication skills using high- and low-level diagrams - Expertise in analysis and optimization of systems capacity, performance, and operational health - Keeps up-to-date with new technologies through training and self-directed education - Strong problem-solving and troubleshooting skills In addition, I have experience with Security Onion, Zeek, Suricata, Snort, and proficiency in Python, Bash, Go scripting/programming. I have also developed monitoring and testing frameworks and analyzed data using tools like Kibana, Splunk, and Graylog. My familiarity with Linux, Docker, and git further strengthens my abilities. I am confident that my skills and experience make me a valuable asset to Target's Cyber Fusion Center. I am eager to contribute to the team's mission of defending Target's network using cutting-edge technologies. Thank you for considering my application. I look forward to the opportunity to discuss my qualifications further. Sincerely, [Your Name]\n\nQualifications:\nQualifications\n\n► Key Qualifications\n• BS in Computer Science, Engineering or related field required.\n• 1+ years of previous experience in this field required.\n• Experience in all phases of the software development cycle required.\n• Demonstrated ability to solve complex programming problems required.\n• Ability to effectively communicate business issues and needs required.\n\nAdditional Information\n\nThe salary range for this position is 51,900ドル - 86,500ドル/ year.\n\nThe hiring [base salary / wage rate] range above represents what Avery Dennison reasonably expects to pay for this position as of the date of this posting. Actual salaries will vary within the range, and in some circumstances may be above or below the range, based on various factors including but not limited to a candidate’s relevant skills, experience, education and training, and location, as well as the job scope and complexity, responsibilities, and regular and/or necessary travel required for the position, which may change depending on the candidate pool. Avery Dennison reserves the right to modify this information at any time, subject to applicable law.\n\n► Additional Requirements\n• Compliance with applicable Company policies maintaining a drug free workplace is required.\n• Compliance with all Company policies is required including all safety policies and procedures.\n\n► Supervisory Responsibilities\n\nNone.\n\n► Management Disclaimer\n\nVestcom’s Management reserves the right to revise, change or modify the duties and responsibilities of this position at any time to meet business and organizational needs. This position description may not list all duties for this position. The incumbent in the position may be asked to perform other duties. This position description is not a contract for employment and either the incumbent or Vestcom may terminate employment at any time, for any reason. ****", + "job_is_remote": false, + "job_posted_at_timestamp": 1675137261, + "job_posted_at_datetime_utc": "2023-01-31T03:54:21.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "retirement_savings", + "health_insurance", + "paid_time_off" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=70&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=2YK5pYiWEoxGnLD2AAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 48, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": true + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": {}, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4" + }, + { + "employer_name": "Scripps Research", + "employer_logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSABKhvwXI0sKbx4e8_97umVTEmEkMY7D9exdsI&s=0", + "employer_website": null, + "employer_company_type": null, + "job_publisher": "JobRxiv", + "job_id": "cuepYe3eh6G4si5OAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "RESEARCH PROGRAMMER II (Software Engineer)- Wu Lab", + "job_apply_link": "https://jobrxiv.org/job/research-programmer-ii-software-engineer-wu-lab/", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.7645, + "apply_options": [ + { + "publisher": "JobRxiv", + "apply_link": "https://jobrxiv.org/job/research-programmer-ii-software-engineer-wu-lab/", + "is_direct": false + }, + { + "publisher": "ZipRecruiter", + "apply_link": "https://www.ziprecruiter.com/c/Scripps-Research/Job/RESEARCH-PROGRAMMER-II-(Software-Engineer)-Wu-Lab/-in-San-Diego,CA?jid=c48043a41cca5183", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=0e8a1667270e51c3", + "is_direct": false + }, + { + "publisher": "Glassdoor", + "apply_link": "https://www.glassdoor.com/job-listing/research-programmer-iii-sr-software-engineer-hughes-lab-the-scripps-research-institute-JV_IC1147311_KO0,55_KE56,86.htm?jl=1008626705500", + "is_direct": false + } + ], + "job_description": "ABOUT US: Scripps Research is ranked the most influential institution in the world for its impact on innovation. We expand basic knowledge in the biosciences and use these fundamental advancements to develop profound innovations that improve wellbeing. Our educational and training programs mold talented and committed students and postdocs into leading edge scientists. Scientists in the institute’s six academic research departments work hand-in-hand with researchers of the Scripps Research Translational Institute and Calibr to merge foundational studies in biology, chemistry and computer science with translational science to produce pioneering drugs and advances in digital and precision medicine. Together, we cultivate new scientific leaders and expand the frontiers of knowledge to deliver medical breakthroughs to better human health around the globe. If you have a passion for making a difference, this could be your opportunity to join our transformative team.\n\nPOSITION TITLE: Research Programmer II (Software Engineer)\n\nPOSITION SUMMERY: The hiring laboratory is involved in numerous projects to build software infrastructure and tools for bioinformatics, genetics, and genomics research. We have a particular emphasis on building large scale data integration infrastructure and on community platforms that enable collaboration and crowdsourcing. Representative projects include outbreak.info, the BioThings SDK for building APIs (biothings.io), and mygene.info. The broader research team includes a mix of software engineers and scientists; of graduate students, postdoctoral researchers, and staff; and of geographically and demographically diverse individuals. We actively cultivate an inclusive work environment.\n\nThis position can focus on any aspect of software engineering, including developing front-end interfaces to discover and analyze data, backend systems to efficiently access biomedical data, and/or DevOps to deploy and maintain software infrastructure.\n\nREQUIREMENTS:\n• Bachelor’s degree in Computer Science, Information Systems or related field, or an equivalent combination of education, training and/or experience. A degree in a biological or chemical science may be accepted if accompanied with programming education, training, and/or experience.\n• Minimum of two years experience in software application development and research programming.\n• Experience with software development in Python or JavaScript.\n• A demonstrated ability to apply the fundamentals of software application development.\n• Experience with version control, including git and github.\n\nPlease include code samples and/or a link to a public code repository with examples of your work.\n\nPREFERRED SKILLSET:\n\nPrior experience with the one or more of the following is preferred:\n• Familiarity with biomedical research and methodology, especially genetics and genomics.\n• Experience developing scalable system architectures that adhere to good software engineering principles\n• Ability to tackle large, open-ended research questions independently and as part of a team\n• Bioinformatics or computational biology experience\n• Experience working within a diverse, interdisciplinary team.\n• Experience building or consuming web service Application Programming Interfaces (APIs) for data integration.\n• Experience contributing to open source software projects.\n\nIn addition, for applicants focusing on front-end development:\n• JavaScript frameworks (React, Vue.js, Angular, or similar), HTML5, CSS3, SASS/SCSS/LESS, TypeScript\n• Developing tools to share, visualize, and analyze biomedical data\n• Data visualization principles and methodology, and a portfolio of projects applying these principles to create\n• Web-based static and interactive visualizations using libraries like D3.js or Vega\n• User interface (UI) and user experience (UX) design\n• Cloud-based deployment\n\nFor applicants focusing on backend development or DevOps roles:\n• Elasticsearch\n• MongoDB\n• Postgres\n• Nginx\n• Linux server (Ubuntu Server) administration\n• Amazon Web Services setup and management\n• Automated deployment\n• Docker/Docker-compose, and automated CI/CD workflow setup\n• Ansible\n\nLOCATION: La Jolla, California or Remote Employment within the United States. In rare circumstances, candidates outside the United States will be considered.\n\nPHYSICAL REQUIREMENTS: This position works in an office environment. Further details of the physical requirements of established essential functions for this position will be addressed/discussed during the interview process.\n\nCOMPENSATION: The expected hiring range for this position is 64,480ドル to 78,000ドル per year, commensurate with experience. Consideration will be given to experience that exceeds the listed requirements.\n\nCOMPREHENSIVE BENEFITS INCLUDE\n• Eligibility for retirement plans with employer contribution.\n• Full suite of Health and Welfare plans including three medical plan options (including an HSA available option), dental, vision, life insurance, disability, EAP and more.\n• Access to Flexible Spending Accounts (Medical/Dependent Care).\n• Remote/Hybrid/Flexible work schedules (Dependent on role).\n• Competitive vacation and sick leave policies.\n• Free, on-site Counseling Center which provides confidential counseling services to benefits-eligible employees and their family members.\n• Free, on-site parking.\n\nThe above statements describe the level of work performed and expected in general terms. The statements are not intended to list all the responsibilities, duties and/or skills required of employees so classified, and the content herein is subject to change due to the business needs of Scripps Research, with or without notice. Furthermore, nothing in this job description shall be interpreted to be in conflict with or to eliminate or modify in any way the employment-at-will status of Scripps Research staff.\n\nEEO Statement:\n\nThe Scripps Research Institute is an Equal Opportunity Employer. We promote diversity of thought, culture and background in the fields of science. All qualified applicants are encouraged to apply and will receive consideration for employment without regard to race, color, religion, sex, sexual orientation, gender identity, national origin, disability, protected veteran status, or any other legally protected characteristic or status. Underrepresented individuals are encouraged to apply.\n\nTagged as: Engineering", + "job_is_remote": false, + "job_posted_at_timestamp": 1670863379, + "job_posted_at_datetime_utc": "2022-12-12T16:42:59.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "paid_time_off", + "retirement_savings", + "dental_coverage", + "health_insurance" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=70&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=cuepYe3eh6G4si5OAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 24, + "experience_mentioned": true, + "experience_preferred": true + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Bachelor’s degree in Computer Science, Information Systems or related field, or an equivalent combination of education, training and/or experience", + "A degree in a biological or chemical science may be accepted if accompanied with programming education, training, and/or experience", + "Minimum of two years experience in software application development and research programming", + "Experience with software development in Python or JavaScript", + "A demonstrated ability to apply the fundamentals of software application development", + "Experience with version control, including git and github", + "In addition, for applicants focusing on front-end development:", + "JavaScript frameworks (React, Vue.js, Angular, or similar), HTML5, CSS3, SASS/SCSS/LESS, TypeScript", + "Web-based static and interactive visualizations using libraries like D3.js or Vega", + "User interface (UI) and user experience (UX) design", + "Amazon Web Services setup and management", + "Ansible" + ], + "Responsibilities": [ + "This position can focus on any aspect of software engineering, including developing front-end interfaces to discover and analyze data, backend systems to efficiently access biomedical data, and/or DevOps to deploy and maintain software infrastructure", + "Developing tools to share, visualize, and analyze biomedical data", + "Data visualization principles and methodology, and a portfolio of projects applying these principles to create", + "Automated deployment", + "Docker/Docker-compose, and automated CI/CD workflow setup" + ], + "Benefits": [ + "COMPENSATION: The expected hiring range for this position is 64,480ドル to 78,000ドル per year, commensurate with experience", + "Eligibility for retirement plans with employer contribution", + "Full suite of Health and Welfare plans including three medical plan options (including an HSA available option), dental, vision, life insurance, disability, EAP and more", + "Access to Flexible Spending Accounts (Medical/Dependent Care)", + "Remote/Hybrid/Flexible work schedules (Dependent on role)", + "Competitive vacation and sick leave policies", + "Free, on-site Counseling Center which provides confidential counseling services to benefits-eligible employees and their family members" + ] + }, + "job_job_title": "Programmer", + "job_posting_language": "en", + "job_onet_soc": "15113100", + "job_onet_job_zone": "4" + }, + { + "employer_name": "WarrCloud", + "employer_logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQAE8vNzGE94L6QfRolQkDKEUt7iNSom02LR9Or&s=0", + "employer_website": "http://warrcloud.com", + "employer_company_type": null, + "job_publisher": "Startup Jobs", + "job_id": "7PqDNrziwI6Pn_C0AAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Senior Software Engineer - Core Team", + "job_apply_link": "https://startup.jobs/senior-software-engineer-core-team-warrcloud-4802346", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.6631, + "apply_options": [ + { + "publisher": "Startup Jobs", + "apply_link": "https://startup.jobs/senior-software-engineer-core-team-warrcloud-4802346", + "is_direct": false + } + ], + "job_description": "Summary\n\nWe are a well-funded start-up that has developed and commercialized a first-of-its-kind machine learning-enabled SaaS platform that automates warranty claims processing for franchise automotive dealerships and OEMs. If you have ever wanted to work for an exciting and fast-growing company in the automotive software space then this is the job for you! We are a first to market leader experiencing rapid growth and are seeking an experienced Software Engineer to join our team.\n\nAs a Senior Software Engineer, you will be joining a small development team who are passionate, friendly, collaborative, and driven. We use an agile methodology in the way that we work together and on our cloud-based application. To be successful in this role, you must be passionate about building an application that is extraordinary while working in an often ambiguous and ever-evolving business. In your role, you will build robust and scalable solutions in collaboration with the development team. We aim to constantly improve our processes, products, and our best asset, our people.\n\nTop Reasons to Work with Us\n\n• 100% Remote opportunity\n• Competitive salary\n• Stock Options\n• Health care, 401k and other benefits\n• Stable / Fast Growing / Exciting company\n• Chance to work with first of its kind AI/ML technology\n• Awesome company culture!\n\nWhat You Will Be Doing\n\nGeneral duties the position may be asked to perform and is not intended to be all-inclusive\n\n• Full Stack development with a strong understanding of the development life cycle\n• Develop, test, and deploy applications based on end-user feedback\n• Support software release activities including functional testing, and documentation for accreditation\n• Collaborate with Product Owner and Development Manager on requirements gathering and ensuring that capabilities gathered are properly described\n• Assist junior developers as needed\n• Provide creative solutions to problems\n• Peer code reviews\n\nRequirements\n\nWhat You Need for this Position\n\n• 6+ years of Software Development experience\n• 2+ years of C# .Net experience\n• Cloud based development experience\n• API development experience\n• Experience working in an Agile environment\n• Bachelor's degree in Computer Science or related field is required\n• Willingness to work in a fast-paced startup environment\n• Team player\n\nNice to Have\n\n• 2+ years of automotive industry experience with DMS software a plus\n• Selenium development experience\n• Script development experience is a plus\n• AWS microservices experience a plus\n\nBenefits\n\n• As a valued employee, you will be able to enroll in benefits immediately upon hire that takes effect the first day of the month following your start date\n\nApplicants must be authorized to work in the U.S", + "job_is_remote": true, + "job_posted_at_timestamp": 1697776875, + "job_posted_at_datetime_utc": "2023-10-20T04:41:15.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": ["retirement_savings", "health_insurance"], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=80&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=7PqDNrziwI6Pn_C0AAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 72, + "experience_mentioned": true, + "experience_preferred": true + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": true, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "6+ years of Software Development experience", + "2+ years of C# .Net experience", + "Cloud based development experience", + "API development experience", + "Experience working in an Agile environment", + "Bachelor's degree in Computer Science or related field is required", + "Willingness to work in a fast-paced startup environment", + "Team player", + "Selenium development experience", + "Applicants must be authorized to work in the U.S" + ], + "Responsibilities": [ + "In your role, you will build robust and scalable solutions in collaboration with the development team", + "General duties the position may be asked to perform and is not intended to be all-inclusive", + "Full Stack development with a strong understanding of the development life cycle", + "Develop, test, and deploy applications based on end-user feedback", + "Support software release activities including functional testing, and documentation for accreditation", + "Collaborate with Product Owner and Development Manager on requirements gathering and ensuring that capabilities gathered are properly described", + "Assist junior developers as needed", + "Provide creative solutions to problems", + "Peer code reviews" + ], + "Benefits": [ + "100% Remote opportunity", + "Competitive salary", + "Stock Options", + "Health care, 401k and other benefits", + "Stable / Fast Growing / Exciting company", + "Chance to work with first of its kind AI/ML technology", + "Awesome company culture!", + "As a valued employee, you will be able to enroll in benefits immediately upon hire that takes effect the first day of the month following your start date" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_occupational_categories": [ + "15-1132.00 Software Developers, Application" + ] + }, + { + "employer_name": "Garmin International, Inc.", + "employer_logo": null, + "employer_website": "http://www.garmin.com", + "employer_company_type": null, + "job_publisher": "Garmin Careers", + "job_id": "K5c1RQab8N5upOfMAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer Intern - Embedded Development", + "job_apply_link": "https://careers.garmin.com/jobs/11268?lang=en-us", + "job_apply_is_direct": true, + "job_apply_quality_score": 0.7183, + "apply_options": [ + { + "publisher": "Garmin Careers", + "apply_link": "https://careers.garmin.com/jobs/11268?lang=en-us", + "is_direct": true + }, + { + "publisher": "Chegg Internships", + "apply_link": "https://www.internships.com/posting/lit_39566707055", + "is_direct": false + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=138346725af803cd", + "is_direct": false + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/software-engineer-intern-embedded-development-at-garmin-3702318885", + "is_direct": false + }, + { + "publisher": "JobTeaser", + "apply_link": "https://graduateland.com/project/54099280/14/software-engineer-intern-embedded-development?switchLanguage=1", + "is_direct": false + }, + { + "publisher": "Glassdoor", + "apply_link": "https://www.glassdoor.com/job-listing/software-engineer-intern-embedded-development-garmin-international-inc-JV_IC1151046_KO0,45_KE46,70.htm?jl=1008837175918", + "is_direct": false + }, + { + "publisher": "Levels.fyi", + "apply_link": "https://www.levels.fyi/jobs?jobId=93227272720261830", + "is_direct": false + }, + { + "publisher": "Jobilize", + "apply_link": "https://www.jobilize.com/job/us-ks-olathe-software-engineer-intern-embedded-development-garmin", + "is_direct": false + } + ], + "job_description": "Overview\n\nWe are seeking a full-time Intern – Software Engineering (Embedded Development) in our Olathe, KS location. In this role, you will be responsible for learning and training to develop software for Garmin's communication and navigation products under supervision.\n\nEssential Functions\n• Learn to develop software using C, C++, C#, Java, assembly language, or other selected languages\n• Learn to test software using debuggers, emulators, simulators, and logic analyzers\n• Learn to perform software releases and software quality assurance activities\n• Learn to perform maintenance activities for products already in production in addition to new product software design\n\nBasic Qualifications\n• Completed coursework in Computer Science, Electrical Engineering, Computer Engineering, or a related field\n• Excellent academics (cumulative GPA greater than or equal to 3.0 as a general rule)\n• Must possess relevant experience and/or training in languages such as C, C++, C# or Java\n• Must possess relevant experience and/or training in data structures or object oriented design methodology\n\nDesired Qualifications\n• Outstanding academics (cumulative GPA greater than or equal to 3.5)\n\nGarmin International is an equal opportunity employer. Qualified applicants will receive consideration for employment without regard to race, religion, color, national origin, citizenship, sex, sexual orientation, gender identity, veteran status, age or disability.\n\nThis position is eligible for Garmin's benefit program. Details can be found here: Garmin Benefits", + "job_is_remote": false, + "job_posted_at_timestamp": 1693192860, + "job_posted_at_datetime_utc": "2023-08-28T03:21:00.000Z", + "job_city": "Olathe", + "job_state": "KS", + "job_country": "US", + "job_latitude": 38.881397, + "job_longitude": -94.81913, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=80&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=K5c1RQab8N5upOfMAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": "2024-08-28T03:22:21.000Z", + "job_offer_expiration_timestamp": 1724815341, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": ["UNAVAILABLE"], + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "Completed coursework in Computer Science, Electrical Engineering, Computer Engineering, or a related field", + "Excellent academics (cumulative GPA greater than or equal to 3.0 as a general rule)", + "Must possess relevant experience and/or training in languages such as C, C++, C# or Java", + "Must possess relevant experience and/or training in data structures or object oriented design methodology" + ], + "Responsibilities": [ + "In this role, you will be responsible for learning and training to develop software for Garmin's communication and navigation products under supervision", + "Learn to test software using debuggers, emulators, simulators, and logic analyzers", + "Learn to perform software releases and software quality assurance activities", + "Learn to perform maintenance activities for products already in production in addition to new product software design" + ], + "Benefits": ["This position is eligible for Garmin's benefit program"] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113300", + "job_onet_job_zone": "4" + }, + { + "employer_name": "Beam", + "employer_logo": null, + "employer_website": null, + "employer_company_type": null, + "job_publisher": "Beam", + "job_id": "rs-Wz3pXwc-l2h8QAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Senior Software Engineer", + "job_apply_link": "https://beam.breezy.hr/p/1a7b1b90e3b6-senior-software-engineer", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.6914, + "apply_options": [ + { + "publisher": "Beam", + "apply_link": "https://beam.breezy.hr/p/1a7b1b90e3b6-senior-software-engineer", + "is_direct": false + }, + { + "publisher": "Wellfound", + "apply_link": "https://wellfound.com/jobs/2787103-senior-software-engineer", + "is_direct": true + }, + { + "publisher": "Glassdoor", + "apply_link": "https://www.glassdoor.com/job-listing/senior-software-engineer-beam-JV_KO0,24_KE25,29.htm?jl=1008802589579", + "is_direct": true + }, + { + "publisher": "Indeed", + "apply_link": "https://www.indeed.com/viewjob?jk=25b5172fd20cf9b7", + "is_direct": true + }, + { + "publisher": "Recruit.net", + "apply_link": "https://www.recruit.net/job/senior-software-engineer-jobs/1ACC51080A823BDA", + "is_direct": false + }, + { + "publisher": "Jobrapido.com", + "apply_link": "https://us.jobrapido.com/jobpreview/2973539099", + "is_direct": false + }, + { + "publisher": "Vabiso", + "apply_link": "https://vabiso.com/job/senior-software-engineer-2", + "is_direct": false + }, + { + "publisher": "Remoteli.io", + "apply_link": "https://remoteli.io/jobs/senior-software-engineer-beam", + "is_direct": false + } + ], + "job_description": "Company Overview:\n\nAt Beam (formerly Edquity), we’re building technology for the social safety net that empowers institutions and government leaders to deliver funding equitably, efficiently, and securely to those who need it most. Our research-backed approach streamlines the administration of benefits while also addressing common pitfalls in program management — including racial bias, inefficiency, compliance risk, and lack of transparency and monitoring — to quickly deliver funds to those with the greatest need. Since 2020, we’ve delivered more 240ドルM in cash grants to hundreds of thousands of people in need through our platform.\n\nBeam is a Series A stage, venture-backed company and has received support from many of the leading impact and postsecondary success investors and has also received non-dilutive support from foundations like the Bill and Melinda Gates Foundation.\n\nJob Overview:\n\nBeam is seeking an experienced and passionate Senior Software Engineer. The Senior Software Engineer will utilize modern architecture and technology in a collaborative environment and should have a keen interest in System Design and Architecture to quickly identify improvements and implement them. The Senior Software Engineer should work towards a vision beyond the daily tasks with a proactive, solutions-oriented mindset and appreciate autonomous responsibility.\n\nThis role is full-stack; the Engineer will participate in building and maintaining frontend and backend services, optimizing query performance and cost, and using cutting-edge frontend technologies to create an incredible user experience.\n\nWhat you will do:\n• Work with designers, product managers, and other developers in a highly collaborative agile environment.\n• Build our products out further by improving the performance of our codebase and handling scaling issues to accommodate user growth, as well as writing rigorous and thorough tests to ensure code stability.\n• Create new products and features to match business needs, while maintaining our current product and keeping technical debt to a minimum.\n• Digest and distill technical problems and propose and execute creative technical solutions.\n• Review code, identify technical priorities, and system design trade-offs\n• Build for scale, availability, performance, and security across the stack.\n\nQualifications:\n• 5+ years of professional Javascript experience (Node, React, etc.).\n• Experience with Typescript and GraphQL\n• Experience with modern frontend frameworks: specifically Next.js, Remix, Redux, Sass\n• Experience with modern frontend architectures, including CDNs, API proxies, security, browser performance\n• Experience working in GCP or other cloud development platform\n• Git: Professional experience with version control\n• Experience building/maintaining web apps in production, and testing front and backend code. Specific experience with Cypress preferred.\n• A strong work ethic: ability to be self-motivated and take ownership over tasks\n• A strong belief in equity and a desire to reduce structural inequality\n• Don't hesitate to apply even if you don't meet every qualification, as we individually evaluate all applications and do consider candidates with outside experience.\n\nCompensation and Benefits:\n\nThe salary range for this position has been benchmarked in relation to scope of role, market rate, company stage, and internal equity. The salary for this role will be between 130,000ドル - 155,000ドル. Where a candidate falls within the band is determined by skillset, experience level, and geographic location. In addition to base salary, this role will come with a total compensation package that includes equity shares and competitive benefits. Some of our benefits include:\n• Fully remote\n• Fully paid health insurance (Medical/Vision/Dental)\n• Unlimited PTO, Sick and Mental Health Benefits\n• 11 paid company holidays\n• 401k with a 4% match\n• Paid Parental Leave\n• Annual Professional Development Stipend\n• Home Office Setup Stipend\n• Generous Equity\n• Many more!\n\nBeam is committed to building a diverse staff and strongly encourages applications from candidates of color. Beam provides equal employment opportunities to all employees and applicants for employment and prohibits discrimination and harassment of any type without regard to race, color, religion, age, sex, national origin, disability status, genetics, protected veteran status, sexual orientation, gender identity or expression, or any other characteristic protected by federal, state or local laws.", + "job_is_remote": true, + "job_posted_at_timestamp": 1691366400, + "job_posted_at_datetime_utc": "2023-08-07T00:00:00.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "retirement_savings", + "paid_time_off", + "health_insurance", + "dental_coverage" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=80&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=rs-Wz3pXwc-l2h8QAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 60, + "experience_mentioned": true, + "experience_preferred": true + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "The Senior Software Engineer will utilize modern architecture and technology in a collaborative environment and should have a keen interest in System Design and Architecture to quickly identify improvements and implement them", + "5+ years of professional Javascript experience (Node, React, etc.)", + "Experience with Typescript and GraphQL", + "Experience with modern frontend frameworks: specifically Next.js, Remix, Redux, Sass", + "Experience with modern frontend architectures, including CDNs, API proxies, security, browser performance", + "Experience working in GCP or other cloud development platform", + "Git: Professional experience with version control", + "Experience building/maintaining web apps in production, and testing front and backend code" + ], + "Responsibilities": [ + "This role is full-stack; the Engineer will participate in building and maintaining frontend and backend services, optimizing query performance and cost, and using cutting-edge frontend technologies to create an incredible user experience", + "Work with designers, product managers, and other developers in a highly collaborative agile environment", + "Build our products out further by improving the performance of our codebase and handling scaling issues to accommodate user growth, as well as writing rigorous and thorough tests to ensure code stability", + "Create new products and features to match business needs, while maintaining our current product and keeping technical debt to a minimum", + "Digest and distill technical problems and propose and execute creative technical solutions", + "Review code, identify technical priorities, and system design trade-offs", + "Build for scale, availability, performance, and security across the stack" + ], + "Benefits": [ + "The salary range for this position has been benchmarked in relation to scope of role, market rate, company stage, and internal equity", + "The salary for this role will be between 130,000ドル - 155,000ドル", + "In addition to base salary, this role will come with a total compensation package that includes equity shares and competitive benefits", + "Fully remote", + "Fully paid health insurance (Medical/Vision/Dental)", + "Unlimited PTO, Sick and Mental Health Benefits", + "11 paid company holidays", + "401k with a 4% match", + "Paid Parental Leave", + "Annual Professional Development Stipend", + "Home Office Setup Stipend", + "Generous Equity" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4" + }, + { + "employer_name": "LanceSoft Inc", + "employer_logo": "https://media.licdn.com/dms/image/C560BAQGdL6NTOB2wbw/company-logo_200_200/0/1605809113610?e=2147483647&v=beta&t=iSy-o640AHp6kii909-6ZrtmxPfnGAdFNentrM06Tjk", + "employer_website": "http://www.lancesoft.com", + "employer_company_type": "Staffing", + "job_publisher": "ZipRecruiter", + "job_id": "O3TpLcf6XMRMgOxfAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer", + "job_apply_link": "https://www.ziprecruiter.com/c/LanceSoft-Inc/Job/Software-Engineer/-in-Oklahoma-City,OK?jid=50bd36e203af3f56", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.7169, + "apply_options": [ + { + "publisher": "ZipRecruiter", + "apply_link": "https://www.ziprecruiter.com/c/LanceSoft-Inc/Job/Software-Engineer/-in-Oklahoma-City,OK?jid=50bd36e203af3f56", + "is_direct": false + }, + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/software-engineer-at-lancesoft-inc-3739479822", + "is_direct": false + }, + { + "publisher": "Talent.com", + "apply_link": "https://www.talent.com/view?id=c6cadc59a442", + "is_direct": false + }, + { + "publisher": "Levels.fyi", + "apply_link": "https://www.levels.fyi/jobs?jobId=89923544349057734", + "is_direct": false + }, + { + "publisher": "Salary.com", + "apply_link": "https://www.salary.com/job/randstad/software-engineer-61025-1/j202310210845495478803", + "is_direct": false + }, + { + "publisher": "CareerBuilder", + "apply_link": "https://www.careerbuilder.com/job/J3T2F7624TRK5JYHX48", + "is_direct": false + }, + { + "publisher": "Jooble", + "apply_link": "https://jooble.org/jdp/-8555132707630316529/Software-Engineer-+-61025+1-Oklahoma-City%2C-OK", + "is_direct": false + }, + { + "publisher": "Engineer Jobs", + "apply_link": "https://www.engineerjobs.com/posting/TkfJTnDxj9IUCmZTniYRlILJWtfZ4QnwSRn0avvWa-N_OYVjcn9PVwWeX79inUdK", + "is_direct": false + } + ], + "job_description": "Job Description:\n• Leads activities to develop, document and maintain architectures, requirements, algorithms, interfaces and designs for software systems.\n• Leads development of code and integration of complex software components into a fully functional software system.\n• Develops software verification plans, test procedures and test environments, executing the test procedures and documenting test results to ensure software system requirements are met.\n• Provides technical leadership for software projects and leads software supplier management activities. Leads development, selection, tailoring and deployment of processes, tools and metrics.\n• Plans, executes and documents software research and development projects. Serves as a subject matter expert for software domains, system-specific issues, processes and regulations.\n• Tracks and evaluates software team and supplier performance to ensure product and process conformance to project plans and industry standards. Works under minimal direction.\n• You will be developing and maintaining software requirements at the Software Requirements Specification level .\n• You will be using tools: CAMEO; DOORS; AWS. You will be working very closely with the Software Development teams and will have an opportunity to develop software and perform software testing.\n• If you come to work with us you will be responsible for full life-cycle software development which means you will have a hand in defining the requirements; designing, implementing and testing the software; and supporting these products through delivery and in the field.\n• Will be a member of a high performing, collaborative team and must be self-motivated with a strong work ethic, excellent time-management, and interpersonal skills.\n• These teams use agile methodologies to support all aspects of product development, including project management.\n• You will be encouraged to actively help the team to continuously improve and develop innovative and creative solutions to products and processes.\nSecurity Clearance:\n• This position requires the ability to obtain a US Security Clearance for which the US Government requires US Citizenship. An interim and/or final U.S. Secret Clearance Post-Start is required.\nBasic Qualifications (Required Skills and Experience):\n• 5+ years of experience in software requirements analysis, decomposition and allocation.\n• 5+ years of experience using a requirements tracability tool, like DOORS\n• 5+ years of experience using an system design tool, like CAMEO\n• 3+ years of experience in software development life cycles,and best agile software engineering practice.\n• Bachelor of Science degree from an accredited course of study, in Computer Engineering, Software Engineering, Computer Science or other technical degree\n• Desired Experience, Skills and Qualifications:\n• Experience with Agile/Scrum and Scaled Agile.\n• Experience with requirements development on US Gov programs.", + "job_is_remote": false, + "job_posted_at_timestamp": 1695884400, + "job_posted_at_datetime_utc": "2023-09-28T07:00:00.000Z", + "job_city": "Oklahoma City", + "job_state": "OK", + "job_country": "US", + "job_latitude": 35.46756, + "job_longitude": -97.516426, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=80&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=O3TpLcf6XMRMgOxfAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": "2023-11-24T00:00:00.000Z", + "job_offer_expiration_timestamp": 1700784000, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": 60, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": 66.68, + "job_max_salary": 73.35, + "job_salary_currency": "USD", + "job_salary_period": "HOUR", + "job_highlights": { + "Qualifications": [ + "This position requires the ability to obtain a US Security Clearance for which the US Government requires US Citizenship", + "An interim and/or final U.S. Secret Clearance Post-Start is required", + "5+ years of experience in software requirements analysis, decomposition and allocation", + "5+ years of experience using a requirements tracability tool, like DOORS", + "5+ years of experience using an system design tool, like CAMEO", + "3+ years of experience in software development life cycles,and best agile software engineering practice", + "Bachelor of Science degree from an accredited course of study, in Computer Engineering, Software Engineering, Computer Science or other technical degree", + "Experience with Agile/Scrum and Scaled Agile", + "Experience with requirements development on US Gov programs" + ], + "Responsibilities": [ + "Leads activities to develop, document and maintain architectures, requirements, algorithms, interfaces and designs for software systems", + "Leads development of code and integration of complex software components into a fully functional software system", + "Develops software verification plans, test procedures and test environments, executing the test procedures and documenting test results to ensure software system requirements are met", + "Provides technical leadership for software projects and leads software supplier management activities", + "Leads development, selection, tailoring and deployment of processes, tools and metrics", + "Plans, executes and documents software research and development projects", + "Serves as a subject matter expert for software domains, system-specific issues, processes and regulations", + "Tracks and evaluates software team and supplier performance to ensure product and process conformance to project plans and industry standards", + "Works under minimal direction", + "You will be developing and maintaining software requirements at the Software Requirements Specification level ", + "You will be working very closely with the Software Development teams and will have an opportunity to develop software and perform software testing", + "If you come to work with us you will be responsible for full life-cycle software development which means you will have a hand in defining the requirements; designing, implementing and testing the software; and supporting these products through delivery and in the field", + "These teams use agile methodologies to support all aspects of product development, including project management", + "You will be encouraged to actively help the team to continuously improve and develop innovative and creative solutions to products and processes" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_occupational_categories": [ + "15-1132.00: Software Developers, Applications" + ], + "job_naics_code": "561311", + "job_naics_name": "Employment Placement Agencies" + }, + { + "employer_name": "Robert Half", + "employer_logo": "https://www.roberthalf.com/sites/default/files/rh-logo-rgb.jpg", + "employer_website": "http://www.rhi.com", + "employer_company_type": "Staffing", + "job_publisher": "Dice", + "job_id": "0I-pzEw7bQPgtLa5AAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer", + "job_apply_link": "https://www.dice.com/job-detail/24c6a5d6-bfbe-47f4-a97c-db7c6084d587", + "job_apply_is_direct": true, + "job_apply_quality_score": 0.6733, + "apply_options": [ + { + "publisher": "Dice", + "apply_link": "https://www.dice.com/job-detail/24c6a5d6-bfbe-47f4-a97c-db7c6084d587", + "is_direct": true + }, + { + "publisher": "Salary.com", + "apply_link": "https://www.salary.com/job/robert-half/software-engineer/j202309040436123277625", + "is_direct": false + }, + { + "publisher": "Engineer Jobs", + "apply_link": "https://www.engineerjobs.com/posting/fWrEkfMCzXXrncQe8BL82QwAqrgHR75wCgasa-KyMU69A42u34liX0_DS8KTIDqm", + "is_direct": false + }, + { + "publisher": "Glassdoor", + "apply_link": "https://glassdoor.com/job-listing/software-engineer-robert-half-JV_IC1131030_KO0,17_KE18,29.htm?jl=1008912696220", + "is_direct": true + }, + { + "publisher": "Missouri Jobs - Tarta.ai", + "apply_link": "https://missouri.tarta.ai/j/Hr79dYoBcRajQcTjeF_Y0823-software-engineer-in-grandview-missouri-at-robert-half", + "is_direct": false + } + ], + "job_description": "Description\n\nPerm Position: SOFTWARE ENGINEER\n\nLocation: HYBRID - KANSAS CITY, MO\n\nSalary: UP TO 135ドルK + EXCEPTIONAL BENEFITS\n• ** For immediate and confidential consideration, please send a message to MEREDITH CARLE on LinkedIn or send an email to me with your resume. My email can be found on my LinkedIn page. ***\n\nJoin our enterprise team and work on an array of projects. You'll be responsible for crafting high-quality applications, modernizing legacy systems and maintaining and enhancing reporting and application processes. You will work with a team of about 5 for a technical and hands-off manager who empowers his teams to succeed. This is a financial services company with a long rich history of proven success and stability.\n\nYour Role:\n• Lead the charge in developing innovative applications, with a focus on the latest Angular and RESTful services on .NET Core.\n• Master a dynamic, fast-paced environment where you'll collaborate closely with internal teams to deliver exceptional solutions.\n• Dive into SQL (T-SQL), C#, VB.net, .NET CORE, and JavaScript (including Angular 1.x and 8+).\n• Take the helm in cloud-based technology development.\n• Shine in daily stand-up meetings (SCRUM) while providing guidance and mentorship to junior and mid-level developers.\n• Showcase your skills in T-SQL and translating requirements into outstanding applications.\n\nYour Experience Should Include:\n• Proficiency in SQL, T-SQL, VB.NET, C#.NET, Java, JavaScript/TypeScript.\n• Familiarity with Angular, .NET, .NET Core, and other JavaScript frameworks.\n• Web UI layer design and development.\n• Expertise in web services, including WCF, WebAPI, and RESTful services.\n• SSRS report design.\n• Knowledge of ETL tools like SSIS.\n• SharePoint or other CMS experience.\n• Automated testing skills.\n• Strong grasp of security and application authentication best practices.\n• Familiarity with GitHub and build/deployment tools like Jenkins.\n• ** For immediate and confidential consideration, please send a message to MEREDITH CARLE on LinkedIn or send an email to me with your resume. My email can be found on my LinkedIn page. Also, you may contact me by office: . Or one click apply on our Robert Half website. No third party inquiries please. Our client cannot provide sponsorship and cannot hire C2C. ***\n\nRequirements\n\n- Knowledge of creating and consuming WebAPI's\n\n- Common development framework experience\n\n- Understanding of Relational Database Management Systems\n\n- Knowledgeable in project methodologies\n\n- 2+ years of experience with current development tools/languages\n\nTechnology Doesn't Change the World, People Do.®\n\nRobert Half is the world's first and largest specialized talent solutions firm that connects highly qualified job seekers to opportunities at great companies. We offer contract, temporary and permanent placement solutions for finance and accounting, technology, marketing and creative, legal, and administrative and customer support roles.\n\nRobert Half works to put you in the best position to succeed. We provide access to top jobs, competitive compensation and benefits, and free online training. Stay on top of every opportunity - whenever you choose - even on the go. Download the Robert Half app and get 1-tap apply, notifications of AI-matched jobs, and much more.\n\nAll applicants applying for U.S. job openings must be legally authorized to work in the United States. Benefits are available to contract/temporary professionals, including medical, vision, dental, and life and disability insurance. Hired contract/temporary professionals are also eligible to enroll in our company 401(k) plan. Visit roberthalf.gobenefits.net for more information.\n\n© 2023 Robert Half. An Equal Opportunity Employer. M/F/Disability/Veterans. By clicking \"Apply Now,\" you're agreeing to Robert Half's Terms of Use.", + "job_is_remote": false, + "job_posted_at_timestamp": 1696723638, + "job_posted_at_datetime_utc": "2023-10-08T00:07:18.000Z", + "job_city": "Grandview", + "job_state": "MO", + "job_country": "US", + "job_latitude": 38.88584, + "job_longitude": -94.53301, + "job_benefits": [ + "retirement_savings", + "dental_coverage", + "health_insurance" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=80&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=0I-pzEw7bQPgtLa5AAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": "2023-11-23T01:09:14.000Z", + "job_offer_expiration_timestamp": 1700701754, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": [ + "Linkedin", + "Jenkins", + "Microsoft SharePoint", + "Automated testing", + "TypeScript", + "CMS", + ".NET", + "HIS", + "Research and development", + "Creativity", + "WCF", + "Collaboration", + "C#", + "Legal", + "JavaScript", + "Mentorship", + "C", + "Database administration", + "JavaScript frameworks", + "AngularJS", + "Transact-SQL", + "Java", + "Accounting", + "Artificial intelligence", + "Legacy systems", + "Visual Basic .NET", + "UI", + "Web services", + "Design", + "Leadership", + "Microsoft SSRS", + "Financial services", + "FOCUS", + "RESTful", + "Cloud computing", + "Software deployment", + "Scrum", + "Customer support", + "Finance", + "Marketing", + "Online training", + "Extract", + "transform", + "load", + "GitHub", + "Reporting", + "Marketing operations", + "Insurance", + "SQL", + "Authentication", + "Microsoft Ssis", + "Web API" + ], + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": false, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": 135000, + "job_max_salary": 135000, + "job_salary_currency": "USD", + "job_salary_period": "YEAR", + "job_highlights": { + "Qualifications": [ + "Proficiency in SQL, T-SQL, VB.NET, C#.NET, Java, JavaScript/TypeScript", + "Familiarity with Angular, .NET, .NET Core, and other JavaScript frameworks", + "Web UI layer design and development", + "Expertise in web services, including WCF, WebAPI, and RESTful services", + "SSRS report design", + "Knowledge of ETL tools like SSIS", + "SharePoint or other CMS experience", + "Automated testing skills", + "Strong grasp of security and application authentication best practices", + "Familiarity with GitHub and build/deployment tools like Jenkins", + "** For immediate and confidential consideration, please send a message to MEREDITH CARLE on LinkedIn or send an email to me with your resume", + "Knowledge of creating and consuming WebAPI's", + "Common development framework experience", + "Understanding of Relational Database Management Systems", + "Knowledgeable in project methodologies", + "2+ years of experience with current development tools/languages" + ], + "Responsibilities": [ + "You'll be responsible for crafting high-quality applications, modernizing legacy systems and maintaining and enhancing reporting and application processes", + "You will work with a team of about 5 for a technical and hands-off manager who empowers his teams to succeed", + "Lead the charge in developing innovative applications, with a focus on the latest Angular and RESTful services on .NET Core", + "Master a dynamic, fast-paced environment where you'll collaborate closely with internal teams to deliver exceptional solutions", + "Take the helm in cloud-based technology development", + "Shine in daily stand-up meetings (SCRUM) while providing guidance and mentorship to junior and mid-level developers" + ], + "Benefits": [ + "Salary: UP TO 135ドルK + EXCEPTIONAL BENEFITS", + "We provide access to top jobs, competitive compensation and benefits, and free online training", + "Stay on top of every opportunity - whenever you choose - even on the go", + "Benefits are available to contract/temporary professionals, including medical, vision, dental, and life and disability insurance", + "Hired contract/temporary professionals are also eligible to enroll in our company 401(k) plan" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_naics_code": "561311", + "job_naics_name": "Employment Placement Agencies" + }, + { + "employer_name": "Figma", + "employer_logo": "https://www.mg21.com/wp-content/uploads/2021/04/Figma.png", + "employer_website": "http://figma.com", + "employer_company_type": null, + "job_publisher": "LinkedIn", + "job_id": "4g_3gFrhwJ0bRGrsAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer - FigJam", + "job_apply_link": "https://www.linkedin.com/jobs/view/software-engineer-figjam-at-figma-3746697575", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.7521, + "apply_options": [ + { + "publisher": "LinkedIn", + "apply_link": "https://www.linkedin.com/jobs/view/software-engineer-figjam-at-figma-3746697575", + "is_direct": false + }, + { + "publisher": "ZipRecruiter", + "apply_link": "https://www.ziprecruiter.com/c/Figma/Job/Software-Engineer-FigJam/-in-New-York,NY?jid=1c4b243c51220e09", + "is_direct": false + }, + { + "publisher": "Rise", + "apply_link": "https://app.joinrise.co/jobs/software-engineer-figjam-yvyd", + "is_direct": false + } + ], + "job_description": "Figma is growing our team of passionate people on a mission to make design accessible to all. Born on the Web, Figma helps entire product teams brainstorm, create, test, and ship better designs, together. From great products to long-lasting companies, we believe that nothing great is made alone—come make with us!\n\nFigJam is an online whiteboard for teams to ideate and brainstorm together. Purpose-built for every stage of your end-to-end workflows, FigJam makes everything from whiteboarding to design sprints easier and more fun — whether you’re working alone or collaborating with your extended team, no matter where in the world they’re based.\n\nThis is Figma’s newest standalone product offering and is still in its earliest stages of opportunity; we’ll look to you to help own and shape product direction as we explore this greenfield space. You’ll use our unique technical stack to solve complex technical challenges and help launch some of FigJam’s most compelling forthcoming features.\n\nWe use C++ (we call it fullscreen) for the main canvas working space in FigJam, which compiles to WebAssembly to run in the browser and enables our powerful performance and rendering capability - an industry setting standard for what is possible on the web. We use React and Typescript for our UI, where things like our toolbar and context menus live; it works in close concert with the WebAssembly layer, so we can offer a responsive, interactive, and delightful user experience. Livegraph is Figma’s own implementation of GraphQL, which helps us query data from our databases efficiently. We occasionally dabble in REST APIs and our infrastructure code as well!\n\nProfessional experience with these languages and technologies is not a requirement. We encourage candidates to use the programming language that they’re most comfortable with during interviews—new hires will be onboarded onto our codebase on the job.\n\nFigma is a highly collaborative organization and most projects are owned by small teams of 2-3 people. You’ll form strong relationships and collaborate with engineers outside of your immediate team, designers, leaders, PMs, data scientists, and user researchers to both scale our product efforts and invest in each other’s learning, growth, and success. We strive to foster an inclusive culture that promotes equity and belonging, and use our engineering values to guide how we work together: communicate early and often, lift your team, focus on craftsmanship, and prioritize impact. Learn more about our values and how we developed them here.\n\nThis is a full-time role that can be held from one of our US hubs or remotely in the United States.\n\nWhat you’ll do at Figma:\n\nIn 30 days, you will...\n• Be paired with an onboarding buddy on your team who will help you ramp in our stack and get to know Figma. You’ll move from starter tasks and codebase contributions aligned to your existing experience to areas that present growth opportunities and learning.\n• Begin contributing to feature workstreams organized around weekly roadmap goals and longer-term milestones in partnership with engineers and designers - we don’t operate in silos.\n• Get to know Figmates across the company via team-building activities (like our weekly Zoom hang, where we celebrate wins, play games, and have even made literal, delicious fig jam together), participating in our Give a Fig philanthropy efforts, joining one of our Employee Resource Groups, or creating something amazing during Maker Week.\n\nIn 60 days, you will...\n• Ship a feature to production, which might include things like a UX update to our delightful toolbar.\n• Participate in design reviews, technical reviews, and give feedback during user testing sessions.\n• Craft performance objectives with your manager that align with company priorities and career development opportunities.\n\nIn 90 days (and beyond), you will...\n• Work closely with cross-functional partners to drive a new feature from conception to execution to shipping, like Open Sessions, which allows users to join your FigJam files for up to 24 hours at a time without log-ins or friction.\n• Contribute to org-wide initiatives like new hire onboarding, developing interview processes, and Diversity, Equity, and Belonging efforts.\n• Improve engineering processes around testing, reliability, and quality.\n• Be a mentor and provide thoughtful feedback to your peers, and benefit from strong personal and professional mentorship opportunities yourself.\n\nWe’d love to hear from you if you have:\n• At least 3+ years* of professional experience shipping features or products as a fullstack developer, ideally in one of our core technical domains (but not required!)\n• Working on or leading development on a large web application.\n• Writing C++ (or related languages such as Objective C or C) in a user-facing context (e.g. gaming, native applications).\n• Proactive communication skills and a willingness to work directly with designers, product managers, and other collaborators to build performant, fun, accessible experiences for users.\n• Experience in and a desire to teach fellow engineers through pairing, code review, and in-the-moment feedback.\n• A dedication to building a supportive and inclusive environment with and for your teammates.\n\nOne of Figma’s values is to Grow as you go. We believe in hiring smart, curious people who are excited to learn and develop their skills. If you’re excited about this role but your past experience doesn’t align perfectly with the points outlined in the job description, we encourage you to apply anyway. You may be just the right candidate for this or other roles!\n\nWe will work to ensure individuals with disabilities are provided reasonable accommodation to participate in the interview process, to perform essential job functions, and to receive other benefits and privileges of employment. Please let your recruiter know if you require accommodation.\n\nRead more about our team:\n• Investing in Figma: The Decade of Design\n• How work is changing at Figma\n• Figma's next product is a multiplayer whiteboard called FigJam\n• Software Design Startup Figma Is Now Worth 10ドル Billion\n• Inside Figma: How Figma Engineering uses FigJam to scale\n• Inside Figma: How our PM team uses FigJam\n• Jamming on FigJam: A journey from beta to GA\n\nPay Transparency Disclosure\n\nIf based in Figma’s San Francisco or New York hub offices, this role has the annual base salary range stated below.\n\nJob level and actual compensation will be decided based on factors including, but not limited to, individual qualifications objectively assessed during the interview process (including skills and prior relevant experience, potential impact, and scope of role), market demands, and specific work location. The listed range is a guideline, and the range for this role may be modified. For roles that are available to be filled remotely, the pay range is localized according to employee work location by a factor of between 80% and 100% of range. Please discuss your specific work location with your recruiter for more information.\n\nFigma offers equity to employees, as well a competitive package of additional benefits, including health, dental & vision, retirement with company contribution, parental leave & reproductive or family planning support, mental health & wellness benefits, generous PTO, company recharge days, a learning & development stipend, a work from home stipend, and cell phone reimbursement. Figma also offers sales incentive pay for most sales roles. Figma’s compensation and benefits are subject to change and may be modified in the future.\n\nAnnual Base Salary Range (SF/NY Hub):\n\n168,000ドル—350,000ドル USD\n\nAbout Figma\n\nDylan Field and Evan Wallace co-founded Figma in 2012 with the vision of building tools for designers in the browser. Their goal was to create the first design tool that combined the accessibility of the Web with the functionality of a native app. Today Figma is a platform with tools and spaces to support the entire product development process—idea to design to build—and has simplified collaboration for companies like Microsoft, Uber, and The New York Times to name a few.\n\nAt Figma, we celebrate and support our differences. We know employing a team rich in diverse backgrounds, experiences, and opinions allows our employees, products, and community to flourish. Figma is an equal opportunity workplace—we are dedicated to equal employment opportunities regardless of race, color, ancestry, religion, sex, national origin, sexual orientation, age, citizenship, marital status, disability, gender identity, or veteran status. We also consider qualified applicants regardless of criminal histories, consistent with legal requirements.\n\nWe will work to ensure individuals with disabilities are provided reasonable accommodation to participate in the interview process, to perform essential job functions, and to receive other benefits and privileges of employment. Please let your recruiter know if you require accommodation.\n\nBy applying for this job, the candidate acknowledges and agrees that any personal data contained in their application or supporting materials will be processed in accordance with the applicable candidate section of Figma's Privacy Policy.", + "job_is_remote": true, + "job_posted_at_timestamp": 1698078405, + "job_posted_at_datetime_utc": "2023-10-23T16:26:45.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": [ + "paid_time_off", + "retirement_savings", + "dental_coverage", + "health_insurance" + ], + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=80&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=4g_3gFrhwJ0bRGrsAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": "2023-11-22T16:26:45.000Z", + "job_offer_expiration_timestamp": 1700670405, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": true, + "degree_mentioned": true, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "At least 3+ years* of professional experience shipping features or products as a fullstack developer, ideally in one of our core technical domains (but not required!)", + "Working on or leading development on a large web application", + "Writing C++ (or related languages such as Objective C or C) in a user-facing context (e.g. gaming, native applications)", + "Proactive communication skills and a willingness to work directly with designers, product managers, and other collaborators to build performant, fun, accessible experiences for users", + "Experience in and a desire to teach fellow engineers through pairing, code review, and in-the-moment feedback" + ], + "Responsibilities": [ + "You’ll use our unique technical stack to solve complex technical challenges and help launch some of FigJam’s most compelling forthcoming features", + "Be paired with an onboarding buddy on your team who will help you ramp in our stack and get to know Figma", + "You’ll move from starter tasks and codebase contributions aligned to your existing experience to areas that present growth opportunities and learning", + "Begin contributing to feature workstreams organized around weekly roadmap goals and longer-term milestones in partnership with engineers and designers - we don’t operate in silos", + "Get to know Figmates across the company via team-building activities (like our weekly Zoom hang, where we celebrate wins, play games, and have even made literal, delicious fig jam together), participating in our Give a Fig philanthropy efforts, joining one of our Employee Resource Groups, or creating something amazing during Maker Week", + "Ship a feature to production, which might include things like a UX update to our delightful toolbar", + "Participate in design reviews, technical reviews, and give feedback during user testing sessions", + "Craft performance objectives with your manager that align with company priorities and career development opportunities", + "Work closely with cross-functional partners to drive a new feature from conception to execution to shipping, like Open Sessions, which allows users to join your FigJam files for up to 24 hours at a time without log-ins or friction", + "Contribute to org-wide initiatives like new hire onboarding, developing interview processes, and Diversity, Equity, and Belonging efforts", + "Improve engineering processes around testing, reliability, and quality", + "Be a mentor and provide thoughtful feedback to your peers, and benefit from strong personal and professional mentorship opportunities yourself" + ], + "Benefits": [ + "If based in Figma’s San Francisco or New York hub offices, this role has the annual base salary range stated below", + "Job level and actual compensation will be decided based on factors including, but not limited to, individual qualifications objectively assessed during the interview process (including skills and prior relevant experience, potential impact, and scope of role), market demands, and specific work location", + "Figma offers equity to employees, as well a competitive package of additional benefits, including health, dental & vision, retirement with company contribution, parental leave & reproductive or family planning support, mental health & wellness benefits, generous PTO, company recharge days, a learning & development stipend, a work from home stipend, and cell phone reimbursement", + "Figma also offers sales incentive pay for most sales roles", + "168,000ドル—350,000ドル USD" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4" + }, + { + "employer_name": "Walmart", + "employer_logo": "https://animationvisarts.com/wp-content/uploads/2020/08/Walmart-logo-2008-Now.jpg", + "employer_website": "https://www.walmart.com", + "employer_company_type": "Retail", + "job_publisher": "Walmart Careers", + "job_id": "RKbsot3GbLqSis9dAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer III", + "job_apply_link": "https://careers.walmart.com/us/jobs/WD1690045-software-engineer-iii", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.7968, + "apply_options": [ + { + "publisher": "Walmart Careers", + "apply_link": "https://careers.walmart.com/us/jobs/WD1690045-software-engineer-iii", + "is_direct": false + }, + { + "publisher": "Dice.com", + "apply_link": "https://www.dice.com/job-detail/abb8765c-2a29-4b54-bb51-6bac6636b464", + "is_direct": false + }, + { + "publisher": "Ladders", + "apply_link": "https://www.theladders.com/job/software-engineer-iii-walmart-bentonville-ar_65274146", + "is_direct": false + }, + { + "publisher": "FactoryFix", + "apply_link": "https://jobs.factoryfix.com/jobs/software-engineer-iii--bentonville--ar--2586264762--V2", + "is_direct": false + }, + { + "publisher": "Walmart - Talentify", + "apply_link": "https://walmart.talentify.io/job/software-engineer-iii-bentonville-arkansas-walmart-wd1690045", + "is_direct": false + }, + { + "publisher": "Arkansas Jobs - Tarta.ai", + "apply_link": "https://ar.tarta.ai/j/fHuY3IYBwqybIuBUh2g20323-software-engineer-iii-in-bentonville-ar-at-walmart", + "is_direct": false + }, + { + "publisher": "Job Listings | Barklis", + "apply_link": "https://barklis.com/job-listings/01h7zy29npt3e21941rg0e805q", + "is_direct": false + } + ], + "job_description": "What you'll do...\n\nPosition: Software Engineer III\n\nJob Location: 702 SW 8th Street, Bentonville, AR 72712\n\nDuties: Assists in providing guidance to small groups of two to three engineers, including offshore associates, for assigned Engineering projects by providing pertinent documents, directions, examples, and timeline. Provides support to the business by responding to user questions, concerns, and issues (for example, technical feasibility, implementation strategies); researching and identifying needed solutions; determining implementation designs; providing guidance regarding implications of new and enhanced systems; identifying short- and long-term solutions; and directing users to appropriate contacts for issues outside of associate's domain. Manages small to large-sized complex projects by reviewing project requirements; translating requirements into technical solutions; researching and identifying alternative solutions; determining needed solution based on return on investment and value add to the business; gathering requested information (for example, design documents, product requirements, wire frames); writing and developing code; conducting unit testing; communicating status and issues to team members and stakeholders; collaborating with project team and cross functional teams; identifying areas of opportunity; interpreting information and identifying a solution; ensuring solution is sustainable across implementation and use; troubleshooting open issues and bug-fixes; and ensuring on-time delivery and hand-offs. Troubleshoots business and production issues by gathering information (for example, issue, impact, criticality, possible root cause); performing root cause analysis to reduce future issues; engaging support teams to assist in the resolution of issues; developing solutions; driving the development of an action plan; performing actions as designated in the plan; interpreting the results to determine further action; and completing online documentation. Participates in the discovery phase of small to medium-sized projects to come up with high level design by partnering with the product management, project management, business, and user experience teams.\n\nMinimum education and experience required: Master’s degree or the equivalent in Computer Science, Information Technology, Engineering, or a related field. Position does not require specific years of experience but requires listed skills.\n\nSkills Required: Must have experience with: designing and implementing REST APIs using Java Spring Framework; developing analytics real-time data pipelines and ETL activities using Bigdata tools (Spark, Kafka, HDFS, HIVE, and Functional language Scala); developing asynchronous and non-blocking components using reactive programming; implementing SQL and using stored procedures and built-in functions to retrieve and update data from SQL and Oracle databases; developing Spring Data JPA queries to do CRUD operations on NOSQL databases and build search queries to retrieve data from search data databases; developing and implementing automated CI/CD pipelines using Jenkins to deploy changes onto AWS App Service and Kubernetes Service; fixing bugs and debugging production issues; utilizing Jira and Confluence for work tracking and collaboration and sharing code between team members using GitHub; developing test cases for bug free code using JUnit, Mockito, and Integration Test cases; preparing JMeter Scripts and Automaton Scripts (Python or Shell) to trigger performance and stress testing of applications; logging application logs in Splunk to search and create dashboards and creating alerts in Grafana dashboards; developing application Cache layer to improve application performance; configuring Linux operating system. Employer will accept any amount of experience with the required skills.\n\nWal-Mart is an Equal Opportunity Employer.\n\n#LI-DNP #LI-DNI", + "job_is_remote": false, + "job_posted_at_timestamp": 1697673600, + "job_posted_at_datetime_utc": "2023-10-19T00:00:00.000Z", + "job_city": "Bentonville", + "job_state": "AR", + "job_country": "US", + "job_latitude": 36.372356, + "job_longitude": -94.21021, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=80&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=RKbsot3GbLqSis9dAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": false + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": {}, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_naics_code": "452990", + "job_naics_name": "All Other General Merchandise Stores" + }, + { + "employer_name": "Cadence Design Systems, Inc.", + "employer_logo": "https://www.cadence.com/content/dam/cadence-www/global/en_US/images/site-images/icons/navigation-icons/cadence-logo-black.png", + "employer_website": "http://www.cadence.com", + "employer_company_type": "Information", + "job_publisher": "Cadence Jobs", + "job_id": "IaK56ASkkh-9Zi1hAAAAAA==", + "job_employment_type": "FULLTIME", + "job_title": "Software Engineer II", + "job_apply_link": "https://cadence.dejobs.org/virtual-usa/software-engineer-ii/AA24ACCC35BD4E539A84E4B43FA3082F/job/", + "job_apply_is_direct": false, + "job_apply_quality_score": 0.6586, + "apply_options": [ + { + "publisher": "Cadence Jobs", + "apply_link": "https://cadence.dejobs.org/virtual-usa/software-engineer-ii/AA24ACCC35BD4E539A84E4B43FA3082F/job/", + "is_direct": false + }, + { + "publisher": "National Labor Exchange Veterans Jobs", + "apply_link": "https://veterans.usnlx.com/virtual-usa/software-engineer-ii/AA24ACCC35BD4E539A84E4B43FA3082F/job/?vs=28", + "is_direct": false + }, + { + "publisher": "AMVETS Jobs", + "apply_link": "https://amvetsjobs.org/virtual-usa/software-engineer-ii/AA24ACCC35BD4E539A84E4B43FA3082F/job/?vs=28", + "is_direct": false + }, + { + "publisher": "HonorHer Jobs", + "apply_link": "https://honorher.works/virtual-usa/software-engineer-ii/AA24ACCC35BD4E539A84E4B43FA3082F/job/?vs=28", + "is_direct": false + } + ], + "job_description": "At Cadence, we hire and develop leaders and innovators who want to make an impact on the world of technology.\n\nRequirements :\n\nMS/PHD from EE, computer science, math or related.\n\nIC design knowledge is necessary, synthesis, static timing analysis, placement knowledge will be a strong plus.\n\nFluent English in both oral and written.\n\nAdvanced developing and debugging capacity in LINUX environment, familiar with C/C++, gdb etc ...\n\nStrong problem-solving, algorithmic capacity.\n\nExperience with script language, TCL is a plus.\n\nWe’re doing work that matters. Help us solve what others can’t.\n\nCadence plays a critical role in creating the technologies that modern life depends on. We are a global electronic design automation company, providing software, hardware, and intellectual property to design advanced semiconductor chips that enable our customers create revolutionary products and experiences.\n\nThanks to the outstanding caliber of the Cadence team and the empowering culture that we have cultivated for over 25 years, Cadence continues to be recognized by Fortune Magazine as one of the 100 Best Companies to Work For. Our shared passion for solving the world’s toughest technical challenges, our dedication to pushing the limits of the industry, and our drive to do meaningful work differentiates the people of Cadence.\n\nCadence is committed to creating a diverse environment and is proud to be an equal opportunity employer. All qualified applicants will receive consideration for employment without regard to race, color, sex, age, national origin, religion, sexual orientation, gender identity, status as a veteran, basis of disability, or any other protected class.\n\nCadence is committed to creating a diverse environment and is proud to be an equal opportunity employer. All qualified applicants will receive consideration for employment without regard to race, color, sex, age, national origin, religion, sexual orientation, gender identity, status as a veteran, basis of disability, or any other protected class.", + "job_is_remote": true, + "job_posted_at_timestamp": 1543526559, + "job_posted_at_datetime_utc": "2018-11-29T21:22:39.000Z", + "job_city": null, + "job_state": null, + "job_country": "US", + "job_latitude": 37.09024, + "job_longitude": -95.71289, + "job_benefits": null, + "job_google_link": "https://www.google.com/search?gl=us&hl=en&rciv=jb&q=software+engineer&start=80&ibp=htl;jobs#fpstate=tldetail&htivrt=jobs&htiq=software+engineer&htidocid=IaK56ASkkh-9Zi1hAAAAAA%3D%3D", + "job_offer_expiration_datetime_utc": null, + "job_offer_expiration_timestamp": null, + "job_required_experience": { + "no_experience_required": false, + "required_experience_in_months": null, + "experience_mentioned": true, + "experience_preferred": true + }, + "job_required_skills": null, + "job_required_education": { + "postgraduate_degree": false, + "professional_certification": false, + "high_school": false, + "associates_degree": false, + "bachelors_degree": false, + "degree_mentioned": true, + "degree_preferred": false, + "professional_certification_mentioned": false + }, + "job_experience_in_place_of_education": false, + "job_min_salary": null, + "job_max_salary": null, + "job_salary_currency": null, + "job_salary_period": null, + "job_highlights": { + "Qualifications": [ + "MS/PHD from EE, computer science, math or related", + "IC design knowledge is necessary, synthesis, static timing analysis, placement knowledge will be a strong plus", + "Fluent English in both oral and written", + "Advanced developing and debugging capacity in LINUX environment, familiar with C/C++, gdb etc ...", + "Strong problem-solving, algorithmic capacity" + ] + }, + "job_job_title": "Software engineer", + "job_posting_language": "en", + "job_onet_soc": "15113200", + "job_onet_job_zone": "4", + "job_naics_code": "5112", + "job_naics_name": "Software Publishers" + } + ] +} diff --git a/lib/actions/job.action.ts b/lib/actions/job.action.ts new file mode 100644 index 0000000..7a267bc --- /dev/null +++ b/lib/actions/job.action.ts @@ -0,0 +1,116 @@ +import { readFileSync } from "fs"; +import path from "path"; + +import type { GetJobsParams } from "./shared.types"; + +let _jsearch: any; +let _countries: any; + +export async function getJobs(params: GetJobsParams) { + try { + const { + page = 1, + pageSize = 10, + filter, + location, + remote, + wage, + skills, + searchQuery, + } = params; + + // Calculate the number of jobs to skip based on the page number and page size + const skipAmount = (page - 1) * pageSize; + + if (!_jsearch) { + const file = path.join(process.cwd(), "content", "jsearch.json"); + const fileSync = readFileSync(file, "utf8"); + + const jsonData = JSON.parse(fileSync); + + _jsearch = jsonData; + } + + const allJobs = _jsearch.data || []; + + const searchQueryRegExp = new RegExp( + (searchQuery || "").toLowerCase(), + "i" + ); + const locationRegExp = new RegExp((location || "").toLowerCase(), "i"); + + const filteredJobs = allJobs.filter((job: any) => { + return ( + job && + searchQueryRegExp.test(job.job_title) && + locationRegExp.test(job.job_country) && + (!remote || job.job_is_remote === true) && + (!wage || + (job.job_min_salary !== null && job.job_max_salary !== null)) && + (!skills || job.job_required_skills) + ); + }); + + let filterOptions = { + job_employment_type: "", + }; + + switch (filter) { + case "fulltime": + filterOptions = { job_employment_type: "FULLTIME" }; + break; + case "parttime": + filterOptions = { job_employment_type: "PARTTIME" }; + break; + case "contractor": + filterOptions = { job_employment_type: "CONTRACTOR" }; + break; + case "intern": + filterOptions = { job_employment_type: "INTERN" }; + break; + default: + filterOptions = { job_employment_type: "" }; + break; + } + + const data = filteredJobs + .filter((job: any) => + filterOptions.job_employment_type !== "" + ? job.job_employment_type === filterOptions.job_employment_type + : true + ) + .slice(skipAmount, skipAmount + pageSize); + + const totalJobs = allJobs.length; + + const isNext = totalJobs> skipAmount + data.length; + + return { data, isNext }; + } catch (error) { + console.log(error); + throw error; + } +} + +export async function getCountryFilters() { + try { + if (!_countries) { + const file = path.join(process.cwd(), "content", "countries.json"); + const fileSync = readFileSync(file, "utf8"); + + const jsonData = JSON.parse(fileSync); + + _countries = jsonData; + } + + const result = _countries.map((country: any) => ({ + name: country.name, + value: country.cca2, + })); + + return result; + } catch (error: any) { + console.log(error); + throw error; + } +} diff --git a/lib/actions/shared.types.d.ts b/lib/actions/shared.types.d.ts index ea8cf1c..a8f381f 100644 --- a/lib/actions/shared.types.d.ts +++ b/lib/actions/shared.types.d.ts @@ -70,7 +70,12 @@ export interface GetUserByIdParams extends UserId {} export interface GetAllUsersParams extends Searchable {} -export interface GetAllJobsParams extends Searchable {} +export interface GetJobsParams extends Searchable { + location?: string; + remote?: boolean | string; + wage?: boolean | string; + skills?: boolean | string; +} export interface UpdateUserParams extends ClerkId, Path { updateData: Partial; @@ -182,3 +187,10 @@ export interface JobFilterParams { query: string; page: string; } + +export interface GetFormattedSalaryParams { + min: number; + max: number; + currency: string; + period: string; +} diff --git a/lib/utils.ts b/lib/utils.ts index 5c3509d..d08257e 100644 --- a/lib/utils.ts +++ b/lib/utils.ts @@ -2,14 +2,17 @@ import qs from "query-string"; import { type ClassValue, clsx } from "clsx"; import { twMerge } from "tailwind-merge"; -import { BADGE_CRITERIA } from "@/constants"; +import { BADGE_CRITERIA, CURRENCY_NOTATIONS } from "@/constants"; +import { JobPageFilters } from "@/constants/filters"; import type { UrlQueryParams, RemoveUrlQueryParams, BadgeParams, BadgeCounts, + FilterProps, } from "@/types"; +import type { GetFormattedSalaryParams } from "./actions/shared.types"; export function cn(...inputs: ClassValue[]) { return twMerge(clsx(inputs)); @@ -116,3 +119,63 @@ export const assignBadges = (params: BadgeParams): BadgeCounts => { return badgeCounts; }; + +export const employmentTypeConverter = (type: string): string => { + let employmentType: string = ""; + + JobPageFilters.forEach((filter: FilterProps) => { + if (filter.value === type) { + employmentType = filter.name; + } + }); + + return employmentType; +}; + +export const getFormattedSalary = ({ + min, + max, + currency, + period, +}: GetFormattedSalaryParams) => { + if (!min || !max) return null; + + const salaryInfo = { + symbol: CURRENCY_NOTATIONS[currency] || "$", + low: salaryFormatter(min, 1), + high: salaryFormatter(max, 1), + per: period ? `/${period.toLowerCase()}ly` : "", + }; + + const { symbol, low, high, per } = salaryInfo; + + const formattedSalary = `${symbol}${low} - ${symbol}${high}${per}`; + + return formattedSalary as string; +}; + +const salaryFormatter = (num: number, digits: number) => { + const lookup = [ + { value: 1, symbol: "" }, + { value: 1e3, symbol: "k" }, + { value: 1e6, symbol: "M" }, + { value: 1e9, symbol: "G" }, + { value: 1e12, symbol: "T" }, + { value: 1e15, symbol: "P" }, + { value: 1e18, symbol: "E" }, + ]; + + const rx = /\.0+$|(\.[0-9]*[1-9])0+$/; + const lookupItem = lookup + .slice() + .reverse() + .find((item) => num>= item.value); + return lookupItem + ? (num / lookupItem.value).toFixed(digits).replace(rx, "1ドル") + + lookupItem.symbol + : "0"; +}; + +export function isValidImage(url: string) { + return /\.(jpg|jpeg|png|webp||svg)$/.test(url); +} diff --git a/middleware.ts b/middleware.ts index 052a6a8..44ee76e 100644 --- a/middleware.ts +++ b/middleware.ts @@ -7,6 +7,7 @@ export default authMiddleware({ publicRoutes: [ "/", "/api/webhook/clerk", + "/api/rapidapi", "/question/:id", "/tags", "/tags/:id", @@ -14,7 +15,7 @@ export default authMiddleware({ "/community", "/jobs", ], - ignoredRoutes: ["/api/webhook/clerk", "/api/openai"], + ignoredRoutes: ["/api/webhook/clerk", "/api/openai", "/api/rapidapi"], }); export const config = { diff --git a/next.config.js b/next.config.js index 8041dea..5151a33 100644 --- a/next.config.js +++ b/next.config.js @@ -1,5 +1,8 @@ /** @type {import('next').NextConfig} */ const nextConfig = { + typescript: { + ignoreBuildErrors: true, + }, experimental: { mdxRs: true, serverComponentsExternalPackages: ["mongoose"], diff --git a/package-lock.json b/package-lock.json index 7f994c8..3b66c2d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,35 +8,36 @@ "name": "nextjs14-devoverflow", "version": "0.1.0", "dependencies": { - "@clerk/nextjs": "^4.26.1", - "@hookform/resolvers": "^3.3.2", + "@clerk/nextjs": "^4.29.7", + "@hookform/resolvers": "^3.3.4", "@radix-ui/react-dialog": "^1.0.5", "@radix-ui/react-icons": "^1.3.0", "@radix-ui/react-label": "^2.0.2", "@radix-ui/react-menubar": "^1.0.4", "@radix-ui/react-select": "^2.0.0", "@radix-ui/react-slot": "^1.0.2", + "@radix-ui/react-switch": "^1.0.3", "@radix-ui/react-tabs": "^1.0.4", "@radix-ui/react-toast": "^1.1.5", - "@tinymce/tinymce-react": "^4.3.0", + "@tinymce/tinymce-react": "^4.3.2", "class-variance-authority": "^0.7.0", - "clsx": "^2.0.0", - "eslint-config-prettier": "^9.0.0", + "clsx": "^2.1.0", + "eslint-config-prettier": "^9.1.0", "eslint-config-standard": "^17.1.0", - "eslint-plugin-tailwindcss": "^3.13.0", - "html-react-parser": "^5.0.2", - "lucide-react": "^0.290.0", - "mongodb": "^6.2.0", - "mongoose": "^7.6.3", - "next": "14.0.1", - "prettier": "^3.0.3", + "eslint-plugin-tailwindcss": "^3.14.3", + "html-react-parser": "^5.1.7", + "lucide-react": "^0.335.0", + "mongodb": "^6.3.0", + "mongoose": "^7.8.4", + "next": "14.1.1", + "prettier": "^3.2.5", "prismjs": "^1.29.0", - "query-string": "^8.1.0", + "query-string": "^8.2.0", "react": "^18", "react-dom": "^18", - "react-hook-form": "^7.47.0", - "svix": "^1.13.0", - "tailwind-merge": "^2.0.0", + "react-hook-form": "^7.50.1", + "svix": "^1.19.0", + "tailwind-merge": "^2.2.1", "zod": "^3.22.4" }, "devDependencies": { @@ -74,9 +75,9 @@ } }, "node_modules/@babel/runtime": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.2.tgz", - "integrity": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==", + "version": "7.24.0", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.0.tgz", + "integrity": "sha512-Chk32uHMg6TnQdvw2e9IlqPpFX/6NLuK0Ys2PqLb7/gL5uFn9mXvK715FGLlOLQrcO4qIkNHkvPGktzzXexsFw==", "dependencies": { "regenerator-runtime": "^0.14.0" }, @@ -85,12 +86,12 @@ } }, "node_modules/@clerk/backend": { - "version": "0.32.1", - "resolved": "https://registry.npmjs.org/@clerk/backend/-/backend-0.32.1.tgz", - "integrity": "sha512-ZH3Mez3f9SZwjpRbC1oaw3+q1+jXkF02HpUB+3vH2+PNxdY+AJ0MW4ACtJhIMNqeY8zAEKzYKMpuGsI+3NVyOA==", + "version": "0.38.1", + "resolved": "https://registry.npmjs.org/@clerk/backend/-/backend-0.38.1.tgz", + "integrity": "sha512-Nnr+j2V0RwFp/CFjlp7VenGPACilhAVD2j1c49fxjQUuAWeLd/z/5efb9mp7kgZup8oxpOHoMDjO2ndWY4rPqA==", "dependencies": { - "@clerk/shared": "1.0.1", - "@clerk/types": "3.57.0", + "@clerk/shared": "1.3.1", + "@clerk/types": "3.62.0", "@peculiar/webcrypto": "1.4.1", "@types/node": "16.18.6", "cookie": "0.5.0", @@ -114,12 +115,12 @@ "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" }, "node_modules/@clerk/clerk-react": { - "version": "4.27.1", - "resolved": "https://registry.npmjs.org/@clerk/clerk-react/-/clerk-react-4.27.1.tgz", - "integrity": "sha512-LAMcMFn6yLlzLKtyrixZtBYhtTNpjhEunbcPb1XxFAG6iNuN4dX5AAxWli4cstcZ+Q0C9O9zHIt0Qb6J3Arcng==", + "version": "4.30.5", + "resolved": "https://registry.npmjs.org/@clerk/clerk-react/-/clerk-react-4.30.5.tgz", + "integrity": "sha512-jWSbgjWW3ny+ctQKpz/c8CwascliDtaa/8FyHX7tqKlV7vFeR9N/AjaZIUKHrbeGpRk+b/RM2xHLoZS4nZ4V6A==", "dependencies": { - "@clerk/shared": "1.0.1", - "@clerk/types": "3.57.0", + "@clerk/shared": "1.3.1", + "@clerk/types": "3.62.0", "tslib": "2.4.1" }, "engines": { @@ -135,13 +136,13 @@ "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" }, "node_modules/@clerk/clerk-sdk-node": { - "version": "4.12.18", - "resolved": "https://registry.npmjs.org/@clerk/clerk-sdk-node/-/clerk-sdk-node-4.12.18.tgz", - "integrity": "sha512-uFmVLL1qFwY4habJD4gKfmSrqqE31T/ILkj+VbXWeg5hrnO4xrueQmUGanV8dcyNr5uM3q9TbqGOjbAI5Su0Ig==", + "version": "4.13.9", + "resolved": "https://registry.npmjs.org/@clerk/clerk-sdk-node/-/clerk-sdk-node-4.13.9.tgz", + "integrity": "sha512-SRATpmPcN5IkdewasiJyvSoKNnNnk+Igb/tpjNV6hM9zS3tbWwJx/haUtR76tTjmloUQemVBl5oVr0hnZTq3kg==", "dependencies": { - "@clerk/backend": "0.32.1", - "@clerk/shared": "1.0.1", - "@clerk/types": "3.57.0", + "@clerk/backend": "0.38.1", + "@clerk/shared": "1.3.1", + "@clerk/types": "3.62.0", "@types/cookies": "0.7.7", "@types/express": "4.17.14", "@types/node-fetch": "2.6.2", @@ -171,15 +172,15 @@ "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" }, "node_modules/@clerk/nextjs": { - "version": "4.26.1", - "resolved": "https://registry.npmjs.org/@clerk/nextjs/-/nextjs-4.26.1.tgz", - "integrity": "sha512-2XCgH+H80uyIb3iBQMxBmCYUwH9Eij99aJcxd04p60fYCkzNYJjtxbAJTmX9evwSKRRGAKGCxa3ZwXoprDCROA==", - "dependencies": { - "@clerk/backend": "0.32.1", - "@clerk/clerk-react": "4.27.1", - "@clerk/clerk-sdk-node": "4.12.18", - "@clerk/shared": "1.0.1", - "@clerk/types": "3.57.0", + "version": "4.29.7", + "resolved": "https://registry.npmjs.org/@clerk/nextjs/-/nextjs-4.29.7.tgz", + "integrity": "sha512-tPvIp4GXCsjcKankLRpPPQGDWmpmlB2tm+p656/OUUmzPMeDnk5Euc86HjSk+5C9BAHVatrveRth6fHa4yzNhQ==", + "dependencies": { + "@clerk/backend": "0.38.1", + "@clerk/clerk-react": "4.30.5", + "@clerk/clerk-sdk-node": "4.13.9", + "@clerk/shared": "1.3.1", + "@clerk/types": "3.62.0", "path-to-regexp": "6.2.1", "tslib": "2.4.1" }, @@ -198,9 +199,9 @@ "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" }, "node_modules/@clerk/shared": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@clerk/shared/-/shared-1.0.1.tgz", - "integrity": "sha512-jUmDlU9FYJi1AhCDkyoI0alh3L/gXpw9HzuB49uiqtU8pdCtjJNLHE5EY7mfHoGP5DdCZlmApzC+HyCamyOUVA==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@clerk/shared/-/shared-1.3.1.tgz", + "integrity": "sha512-nzv4+uA90I/eQp55zfK9a1Po9VgCYlzlNhuZnKqyRsPyJ38l4gpIf3B3qSHHdN0+MTx9cWGFrik1CnpftdOBXQ==", "dependencies": { "glob-to-regexp": "0.4.1", "js-cookie": "3.0.1", @@ -216,9 +217,9 @@ } }, "node_modules/@clerk/types": { - "version": "3.57.0", - "resolved": "https://registry.npmjs.org/@clerk/types/-/types-3.57.0.tgz", - "integrity": "sha512-i+XqgqRbcMn5gMwWGiA3W6lCTSDYdonDAgoJgNyRemQg7Zesnbd4OoJZfqyW6vN3wvD9Bl+gMb7gQ3VquNWUOA==", + "version": "3.62.0", + "resolved": "https://registry.npmjs.org/@clerk/types/-/types-3.62.0.tgz", + "integrity": "sha512-rjtdPqNJtfayCrqOCi20i46rw7X5yzAiOoh0Dzl7KX8kdBWQn06UxpgREPEp/3gFS2imVFRyXtx+fUGRwOGjaw==", "dependencies": { "csstype": "3.1.1" }, @@ -318,9 +319,9 @@ "integrity": "sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A==" }, "node_modules/@hookform/resolvers": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/@hookform/resolvers/-/resolvers-3.3.2.tgz", - "integrity": "sha512-Tw+GGPnBp+5DOsSg4ek3LCPgkBOuOgS5DsDV7qsWNH9LZc433kgsWICjlsh2J9p04H2K66hsXPPb9qn9ILdUtA==", + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@hookform/resolvers/-/resolvers-3.3.4.tgz", + "integrity": "sha512-o5cgpGOuJYrd+iMKvkttOclgwRW86EsWJZZRC23prf0uU2i48Htq4PuT73AVb9ionFyZrwYEITuOFGF+BydEtQ==", "peerDependencies": { "react-hook-form": "^7.0.0" } @@ -407,9 +408,9 @@ } }, "node_modules/@next/env": { - "version": "14.0.1", - "resolved": "https://registry.npmjs.org/@next/env/-/env-14.0.1.tgz", - "integrity": "sha512-Ms8ZswqY65/YfcjrlcIwMPD7Rg/dVjdLapMcSHG26W6O67EJDF435ShW4H4LXi1xKO1oRc97tLXUpx8jpLe86A==" + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/@next/env/-/env-14.1.1.tgz", + "integrity": "sha512-7CnQyD5G8shHxQIIg3c7/pSeYFeMhsNbpU/bmvH7ZnDql7mNRgg8O2JZrhrc/soFnfBnKP4/xXNiiSIPn2w8gA==" }, "node_modules/@next/eslint-plugin-next": { "version": "14.0.1", @@ -421,9 +422,9 @@ } }, "node_modules/@next/swc-darwin-arm64": { - "version": "14.0.1", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.0.1.tgz", - "integrity": "sha512-JyxnGCS4qT67hdOKQ0CkgFTp+PXub5W1wsGvIq98TNbF3YEIN7iDekYhYsZzc8Ov0pWEsghQt+tANdidITCLaw==", + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.1.1.tgz", + "integrity": "sha512-yDjSFKQKTIjyT7cFv+DqQfW5jsD+tVxXTckSe1KIouKk75t1qZmj/mV3wzdmFb0XHVGtyRjDMulfVG8uCKemOQ==", "cpu": [ "arm64" ], @@ -436,9 +437,9 @@ } }, "node_modules/@next/swc-darwin-x64": { - "version": "14.0.1", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-14.0.1.tgz", - "integrity": "sha512-625Z7bb5AyIzswF9hvfZWa+HTwFZw+Jn3lOBNZB87lUS0iuCYDHqk3ujuHCkiyPtSC0xFBtYDLcrZ11mF/ap3w==", + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-14.1.1.tgz", + "integrity": "sha512-KCQmBL0CmFmN8D64FHIZVD9I4ugQsDBBEJKiblXGgwn7wBCSe8N4Dx47sdzl4JAg39IkSN5NNrr8AniXLMb3aw==", "cpu": [ "x64" ], @@ -451,9 +452,9 @@ } }, "node_modules/@next/swc-linux-arm64-gnu": { - "version": "14.0.1", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.0.1.tgz", - "integrity": "sha512-iVpn3KG3DprFXzVHM09kvb//4CNNXBQ9NB/pTm8LO+vnnnaObnzFdS5KM+w1okwa32xH0g8EvZIhoB3fI3mS1g==", + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.1.1.tgz", + "integrity": "sha512-YDQfbWyW0JMKhJf/T4eyFr4b3tceTorQ5w2n7I0mNVTFOvu6CGEzfwT3RSAQGTi/FFMTFcuspPec/7dFHuP7Eg==", "cpu": [ "arm64" ], @@ -466,9 +467,9 @@ } }, "node_modules/@next/swc-linux-arm64-musl": { - "version": "14.0.1", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.0.1.tgz", - "integrity": "sha512-mVsGyMxTLWZXyD5sen6kGOTYVOO67lZjLApIj/JsTEEohDDt1im2nkspzfV5MvhfS7diDw6Rp/xvAQaWZTv1Ww==", + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.1.1.tgz", + "integrity": "sha512-fiuN/OG6sNGRN/bRFxRvV5LyzLB8gaL8cbDH5o3mEiVwfcMzyE5T//ilMmaTrnA8HLMS6hoz4cHOu6Qcp9vxgQ==", "cpu": [ "arm64" ], @@ -481,9 +482,9 @@ } }, "node_modules/@next/swc-linux-x64-gnu": { - "version": "14.0.1", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.0.1.tgz", - "integrity": "sha512-wMqf90uDWN001NqCM/auRl3+qVVeKfjJdT9XW+RMIOf+rhUzadmYJu++tp2y+hUbb6GTRhT+VjQzcgg/QTD9NQ==", + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.1.1.tgz", + "integrity": "sha512-rv6AAdEXoezjbdfp3ouMuVqeLjE1Bin0AuE6qxE6V9g3Giz5/R3xpocHoAi7CufRR+lnkuUjRBn05SYJ83oKNQ==", "cpu": [ "x64" ], @@ -496,9 +497,9 @@ } }, "node_modules/@next/swc-linux-x64-musl": { - "version": "14.0.1", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.0.1.tgz", - "integrity": "sha512-ol1X1e24w4j4QwdeNjfX0f+Nza25n+ymY0T2frTyalVczUmzkVD7QGgPTZMHfR1aLrO69hBs0G3QBYaj22J5GQ==", + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.1.1.tgz", + "integrity": "sha512-YAZLGsaNeChSrpz/G7MxO3TIBLaMN8QWMr3X8bt6rCvKovwU7GqQlDu99WdvF33kI8ZahvcdbFsy4jAFzFX7og==", "cpu": [ "x64" ], @@ -511,9 +512,9 @@ } }, "node_modules/@next/swc-win32-arm64-msvc": { - "version": "14.0.1", - "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.0.1.tgz", - "integrity": "sha512-WEmTEeWs6yRUEnUlahTgvZteh5RJc4sEjCQIodJlZZ5/VJwVP8p2L7l6VhzQhT4h7KvLx/Ed4UViBdne6zpIsw==", + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.1.1.tgz", + "integrity": "sha512-1L4mUYPBMvVDMZg1inUYyPvFSduot0g73hgfD9CODgbr4xiTYe0VOMTZzaRqYJYBA9mana0x4eaAaypmWo1r5A==", "cpu": [ "arm64" ], @@ -526,9 +527,9 @@ } }, "node_modules/@next/swc-win32-ia32-msvc": { - "version": "14.0.1", - "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.0.1.tgz", - "integrity": "sha512-oFpHphN4ygAgZUKjzga7SoH2VGbEJXZa/KL8bHCAwCjDWle6R1SpiGOdUdA8EJ9YsG1TYWpzY6FTbUA+iAJeww==", + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.1.1.tgz", + "integrity": "sha512-jvIE9tsuj9vpbbXlR5YxrghRfMuG0Qm/nZ/1KDHc+y6FpnZ/apsgh+G6t15vefU0zp3WSpTMIdXRUsNl/7RSuw==", "cpu": [ "ia32" ], @@ -541,9 +542,9 @@ } }, "node_modules/@next/swc-win32-x64-msvc": { - "version": "14.0.1", - "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.0.1.tgz", - "integrity": "sha512-FFp3nOJ/5qSpeWT0BZQ+YE1pSMk4IMpkME/1DwKBwhg4mJLB9L+6EXuJi4JEwaJdl5iN+UUlmUD3IsR1kx5fAg==", + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.1.1.tgz", + "integrity": "sha512-S6K6EHDU5+1KrBDLko7/c1MNy/Ya73pIAmvKeFwsF4RmBFJSO7/7YeD4FnZ4iBdzE69PpQ4sOMU9ORKeNuxe8A==", "cpu": [ "x64" ], @@ -1159,6 +1160,35 @@ } } }, + "node_modules/@radix-ui/react-switch": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-switch/-/react-switch-1.0.3.tgz", + "integrity": "sha512-mxm87F88HyHztsI7N+ZUmEoARGkC22YVW5CaC+Byc+HRpuvCrOBPTAnXgf+tZ/7i0Sg/eOePGdMhUKhPaQEqow==", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/primitive": "1.0.1", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-context": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-use-controllable-state": "1.0.1", + "@radix-ui/react-use-previous": "1.0.1", + "@radix-ui/react-use-size": "1.0.1" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, "node_modules/@radix-ui/react-tabs": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/@radix-ui/react-tabs/-/react-tabs-1.0.4.tgz", @@ -1425,12 +1455,12 @@ } }, "node_modules/@tinymce/tinymce-react": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/@tinymce/tinymce-react/-/tinymce-react-4.3.0.tgz", - "integrity": "sha512-iB4cUsYfcJL4NGuKhqCGYuTmFTje3nPxyPv1HxprTsp/YMGuuiiSNWrv3zwI31QX5Cn8qeq9MrMDnbxuRugHyg==", + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/@tinymce/tinymce-react/-/tinymce-react-4.3.2.tgz", + "integrity": "sha512-wJHZhPf2Mk3yTtdVC/uIGh+kvDgKuTw/qV13uzdChTNo68JI1l7jYMrSQOpyimDyn5LHAw0E1zFByrm1WHAVeA==", "dependencies": { "prop-types": "^15.6.2", - "tinymce": "^6.3.1" + "tinymce": "^6.0.0 || ^5.5.1" }, "peerDependencies": { "react": "^18.0.0 || ^17.0.1 || ^16.7.0", @@ -1438,18 +1468,18 @@ } }, "node_modules/@types/body-parser": { - "version": "1.19.4", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.4.tgz", - "integrity": "sha512-N7UDG0/xiPQa2D/XrVJXjkWbpqHCd2sBaB32ggRF2l83RhPfamgKGF8gwwqyksS95qUS5ZYF9aF+lLPRlwI2UA==", + "version": "1.19.5", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", + "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", "dependencies": { "@types/connect": "*", "@types/node": "*" } }, "node_modules/@types/connect": { - "version": "3.4.37", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.37.tgz", - "integrity": "sha512-zBUSRqkfZ59OcwXon4HVxhx5oWCJmc0OtBTK05M+p0dYjgN6iTwIL2T/WbsQZrEsdnwaF9cWQ+azOnpPvIqY3Q==", + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", + "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", "dependencies": { "@types/node": "*" } @@ -1477,9 +1507,9 @@ } }, "node_modules/@types/express-serve-static-core": { - "version": "4.17.39", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.39.tgz", - "integrity": "sha512-BiEUfAiGCOllomsRAZOiMFP7LAnrifHpt56pc4Z7l9K6ACyN06Ns1JLMBxwkfLOjJRlSf06NwWsT7yzfpaVpyQ==", + "version": "4.17.43", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.43.tgz", + "integrity": "sha512-oaYtiBirUOPQGSWNGPWnzyAFJ0BP3cwvN4oWZQY+zUBwpVIGsKUkpBpSztp74drYcjavs7SKFZ4DX1V2QeN8rg==", "dependencies": { "@types/node": "*", "@types/qs": "*", @@ -1488,9 +1518,9 @@ } }, "node_modules/@types/http-errors": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.3.tgz", - "integrity": "sha512-pP0P/9BnCj1OVvQR2lF41EkDG/lWWnDyA203b/4Fmi2eTyORnBtcDoKDwjWQthELrBvWkMOrvSOnZ8OVlW6tXA==" + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", + "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==" }, "node_modules/@types/json5": { "version": "0.0.29", @@ -1498,14 +1528,14 @@ "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" }, "node_modules/@types/keygrip": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@types/keygrip/-/keygrip-1.0.4.tgz", - "integrity": "sha512-/tjWYD8StMrINelsrHNmpXceo9s3/Y22AzePH1qCvXIgmz/aQp2YFFr6HqhNQVIOdcvaVyp5GS+yjHGuF7Rwsg==" + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/keygrip/-/keygrip-1.0.6.tgz", + "integrity": "sha512-lZuNAY9xeJt7Bx4t4dx0rYCDqGPW8RXhQZK1td7d4H6E9zYbLoOtjBvfwdTKpsyxQI/2jv+armjX/RW+ZNpXOQ==" }, "node_modules/@types/mime": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.4.tgz", - "integrity": "sha512-1Gjee59G25MrQGk8bsNvC6fxNiRgUlGn2wlhGf95a59DrprnnHk80FIMMFG9XHMdrfsuA119ht06QPDXA1Z7tw==" + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", + "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==" }, "node_modules/@types/node": { "version": "20.8.9", @@ -1533,24 +1563,22 @@ "node_modules/@types/prop-types": { "version": "15.7.9", "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.9.tgz", - "integrity": "sha512-n1yyPsugYNSmHgxDFjicaI2+gCNjsBck8UX9kuofAKlc0h1bL+20oSF72KeNaW2DUlesbEVCFgyV2dPGTiY42g==", - "devOptional": true + "integrity": "sha512-n1yyPsugYNSmHgxDFjicaI2+gCNjsBck8UX9kuofAKlc0h1bL+20oSF72KeNaW2DUlesbEVCFgyV2dPGTiY42g==" }, "node_modules/@types/qs": { - "version": "6.9.9", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.9.tgz", - "integrity": "sha512-wYLxw35euwqGvTDx6zfY1vokBFnsK0HNrzc6xNHchxfO2hpuRg74GbkEW7e3sSmPvj0TjCDT1VCa6OtHXnubsg==" + "version": "6.9.12", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.12.tgz", + "integrity": "sha512-bZcOkJ6uWrL0Qb2NAWKa7TBU+mJHPzhx9jjLL1KHF+XpzEcR7EXHvjbHlGtR/IsP1vyPrehuS6XqkmaePy//mg==" }, "node_modules/@types/range-parser": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.6.tgz", - "integrity": "sha512-+0autS93xyXizIYiyL02FCY8N+KkKPhILhcUSA276HxzreZ16kl+cmwvV2qAM/PuCCwPXzOXOWhiPcw20uSFcA==" + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", + "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==" }, "node_modules/@types/react": { - "version": "18.2.33", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.33.tgz", - "integrity": "sha512-v+I7S+hu3PIBoVkKGpSYYpiBT1ijqEzWpzQD62/jm4K74hPpSP7FF9BnKG6+fg2+62weJYkkBWDJlZt5JO/9hg==", - "devOptional": true, + "version": "18.2.55", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.55.tgz", + "integrity": "sha512-Y2Tz5P4yz23brwm2d7jNon39qoAtMMmalOQv6+fEFt1mT+FcM3D841wDpoUvFXhaYenuROCy3FZYqdTjM7qVyA==", "dependencies": { "@types/prop-types": "*", "@types/scheduler": "*", @@ -1569,22 +1597,21 @@ "node_modules/@types/scheduler": { "version": "0.16.5", "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.5.tgz", - "integrity": "sha512-s/FPdYRmZR8SjLWGMCuax7r3qCWQw9QKHzXVukAuuIJkXkDRwp+Pu5LMIVFi0Fxbav35WURicYr8u1QsoybnQw==", - "devOptional": true + "integrity": "sha512-s/FPdYRmZR8SjLWGMCuax7r3qCWQw9QKHzXVukAuuIJkXkDRwp+Pu5LMIVFi0Fxbav35WURicYr8u1QsoybnQw==" }, "node_modules/@types/send": { - "version": "0.17.3", - "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.3.tgz", - "integrity": "sha512-/7fKxvKUoETxjFUsuFlPB9YndePpxxRAOfGC/yJdc9kTjTeP5kRCTzfnE8kPUKCeyiyIZu0YQ76s50hCedI1ug==", + "version": "0.17.4", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", + "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", "dependencies": { "@types/mime": "^1", "@types/node": "*" } }, "node_modules/@types/serve-static": { - "version": "1.15.4", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.4.tgz", - "integrity": "sha512-aqqNfs1XTF0HDrFdlY//+SGUxmdSUbjeRXb5iaZc3x0/vMbYmdw9qvOgHWOyyLFxSSRnUuP5+724zBgfw8/WAw==", + "version": "1.15.5", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.5.tgz", + "integrity": "sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==", "dependencies": { "@types/http-errors": "*", "@types/mime": "*", @@ -2185,9 +2212,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001558", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001558.tgz", - "integrity": "sha512-/Et7DwLqpjS47JPEcz6VnxU9PwcIdVi0ciLXRWBQdj1XFye68pSQYpV0QtPTfUKWuOaEig+/Vez2l74eDc1tPQ==", + "version": "1.0.30001596", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001596.tgz", + "integrity": "sha512-zpkZ+kEr6We7w63ORkoJ2pOfBwBkY/bJrG/UZ90qNb45Isblu8wzDgevEOrRL1r9dWayHjYiiyCMEXPn4DweGQ==", "funding": [ { "type": "opencollective", @@ -2266,15 +2293,23 @@ "url": "https://joebell.co.uk" } }, + "node_modules/class-variance-authority/node_modules/clsx": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.0.0.tgz", + "integrity": "sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==", + "engines": { + "node": ">=6" + } + }, "node_modules/client-only": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" }, "node_modules/clsx": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.0.0.tgz", - "integrity": "sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.0.tgz", + "integrity": "sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==", "engines": { "node": ">=6" } @@ -2354,8 +2389,7 @@ "node_modules/csstype": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", - "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==", - "devOptional": true + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" }, "node_modules/damerau-levenshtein": { "version": "1.0.8", @@ -2797,9 +2831,9 @@ } }, "node_modules/eslint-config-prettier": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.0.0.tgz", - "integrity": "sha512-IcJsTkJae2S35pRsRAwoCE+925rJJStOdkKnLVgtE+tEpqU0EVVM7OqrwxqgptKdX29NUwC82I5pXsGFIgSevw==", + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz", + "integrity": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==", "bin": { "eslint-config-prettier": "bin/cli.js" }, @@ -3136,9 +3170,9 @@ } }, "node_modules/eslint-plugin-tailwindcss": { - "version": "3.13.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-tailwindcss/-/eslint-plugin-tailwindcss-3.13.0.tgz", - "integrity": "sha512-Fcep4KDRLWaK3KmkQbdyKHG0P4GdXFmXdDaweTIPcgOP60OOuWFbh1++dufRT28Q4zpKTKaHwTsXPJ4O/EjU2Q==", + "version": "3.14.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-tailwindcss/-/eslint-plugin-tailwindcss-3.14.3.tgz", + "integrity": "sha512-1MKT8CrVuqVJleHxb7ICHsF2QwO0G+VJ28athTtlcOkccp0qmwK7nCUa1C9paCZ+VVgQU4fonsjLz/wUxoMHJQ==", "dependencies": { "fast-glob": "^3.2.5", "postcss": "^8.4.4" @@ -3147,7 +3181,7 @@ "node": ">=12.13.0" }, "peerDependencies": { - "tailwindcss": "^3.3.2" + "tailwindcss": "^3.4.0" } }, "node_modules/eslint-scope": { @@ -3671,32 +3705,33 @@ } }, "node_modules/html-dom-parser": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/html-dom-parser/-/html-dom-parser-5.0.3.tgz", - "integrity": "sha512-slsc6ipw88OUZjAayRs5NTmfOQCwcUa3hNyk6AdsbQxY09H5Lr1Y3CZ4ZlconMKql3Ga6sWg3HMoUzo7KSItaQ==", + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/html-dom-parser/-/html-dom-parser-5.0.8.tgz", + "integrity": "sha512-vuWiX9EXgu8CJ5m9EP5c7bvBmNSuQVnrY8tl0z0ZX96Uth1IPlYH/8W8VZ/hBajFf18EN+j2pukbCNd01HEd1w==", "dependencies": { "domhandler": "5.0.3", - "htmlparser2": "9.0.0" + "htmlparser2": "9.1.0" } }, "node_modules/html-react-parser": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/html-react-parser/-/html-react-parser-5.0.2.tgz", - "integrity": "sha512-GlWOqEhkRmZZCo/5jvZNcmIZjg9eMhF9crUguWkd3IZlPBzWKr0y5/FPWGgs9We89lkb+hnLnahs3Q6nkvQypA==", + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/html-react-parser/-/html-react-parser-5.1.7.tgz", + "integrity": "sha512-clDscCPYxpZbKLAXJVw3DIiuklZejb5ChK+yXMaA7KKuc0c74ep8jY40pUvMo2WnUU7GB3/hAike/ZAfQ+Ybkw==", "dependencies": { + "@types/react": "17 || 18", "domhandler": "5.0.3", - "html-dom-parser": "5.0.3", + "html-dom-parser": "5.0.8", "react-property": "2.0.2", - "style-to-js": "1.1.8" + "style-to-js": "1.1.10" }, "peerDependencies": { "react": "0.14 || 15 || 16 || 17 || 18" } }, "node_modules/htmlparser2": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-9.0.0.tgz", - "integrity": "sha512-uxbSI98wmFT/G4P2zXx4OVx04qWUmyFPrD2/CNepa2Zo3GPNaCaaxElDgwUrwYWkK1nr9fft0Ya8dws8coDLLQ==", + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-9.1.0.tgz", + "integrity": "sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==", "funding": [ "https://github.com/fb55/htmlparser2?sponsor=1", { @@ -4308,9 +4343,9 @@ } }, "node_modules/lucide-react": { - "version": "0.290.0", - "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.290.0.tgz", - "integrity": "sha512-CBDPRLOPjdo+bVlxhaa7FVWaB8OrZZQ34mwm0Fsz9ut6JltN/Td55640ur8bRWSJuz6+nX2klKrpBpV7ktwD3Q==", + "version": "0.335.0", + "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.335.0.tgz", + "integrity": "sha512-FNmIG4JLdvpK86ZFJjrT0SnFEa95KhsiNokVicA5mWEf1oe+ujP2C/bTr0PVQzr/wzvZpzgxaOySq0O79q2oMA==", "peerDependencies": { "react": "^16.5.1 || ^17.0.0 || ^18.0.0" } @@ -4390,13 +4425,13 @@ } }, "node_modules/mongodb": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.2.0.tgz", - "integrity": "sha512-d7OSuGjGWDZ5usZPqfvb36laQ9CPhnWkAGHT61x5P95p/8nMVeH8asloMwW6GcYFeB0Vj4CB/1wOTDG2RA9BFA==", + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.3.0.tgz", + "integrity": "sha512-tt0KuGjGtLUhLoU263+xvQmPHEGTw5LbcNC73EoFRYgSHwZt5tsoJC110hDyO1kjQzpgNrpdcSza9PknWN4LrA==", "dependencies": { "@mongodb-js/saslprep": "^1.1.0", "bson": "^6.2.0", - "mongodb-connection-string-url": "^2.6.0" + "mongodb-connection-string-url": "^3.0.0" }, "engines": { "node": ">=16.20.1" @@ -4443,14 +4478,54 @@ "whatwg-url": "^11.0.0" } }, + "node_modules/mongodb/node_modules/@types/whatwg-url": { + "version": "11.0.4", + "resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-11.0.4.tgz", + "integrity": "sha512-lXCmTWSHJvf0TRSO58nm978b8HJ/EdsSsEKLd3ODHFjo+3VGAyyTp4v50nWvwtzBxSMQrVOK7tcuN0zGPLICMw==", + "dependencies": { + "@types/webidl-conversions": "*" + } + }, + "node_modules/mongodb/node_modules/mongodb-connection-string-url": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-3.0.0.tgz", + "integrity": "sha512-t1Vf+m1I5hC2M5RJx/7AtxgABy1cZmIPQRMXw+gEIPn/cZNF3Oiy+l0UIypUwVB5trcWHq3crg2g3uAR9aAwsQ==", + "dependencies": { + "@types/whatwg-url": "^11.0.2", + "whatwg-url": "^13.0.0" + } + }, + "node_modules/mongodb/node_modules/tr46": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-4.1.1.tgz", + "integrity": "sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw==", + "dependencies": { + "punycode": "^2.3.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/mongodb/node_modules/whatwg-url": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-13.0.0.tgz", + "integrity": "sha512-9WWbymnqj57+XEuqADHrCJ2eSXzn8WXIW/YSGaZtb2WKAInQ6CHfaUUcTyyver0p8BDg5StLQq8h1vtZuwmOig==", + "dependencies": { + "tr46": "^4.1.1", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=16" + } + }, "node_modules/mongoose": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-7.6.3.tgz", - "integrity": "sha512-moYP2qWCOdWRDeBxqB/zYwQmQnTBsF5DoolX5uPyI218BkiA1ujGY27P0NTd4oWIX+LLkZPw0LDzlc/7oh1plg==", + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-7.8.4.tgz", + "integrity": "sha512-qqQ7imsb9lyrW1jmYj6/wDiSewRtd/gpOU2Vdy1AMRBT7jrghKnoDMbC3keFUzZ0iyo3ZcYumisPKFnap5R4zQ==", "dependencies": { "bson": "^5.5.0", "kareem": "2.5.1", - "mongodb": "5.9.0", + "mongodb": "5.9.2", "mpath": "0.9.0", "mquery": "5.0.0", "ms": "2.1.3", @@ -4473,9 +4548,9 @@ } }, "node_modules/mongoose/node_modules/mongodb": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-5.9.0.tgz", - "integrity": "sha512-g+GCMHN1CoRUA+wb1Agv0TI4YTSiWr42B5ulkiAfLLHitGK1R+PkSAf3Lr5rPZwi/3F04LiaZEW0Kxro9Fi2TA==", + "version": "5.9.2", + "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-5.9.2.tgz", + "integrity": "sha512-H60HecKO4Bc+7dhOv4sJlgvenK4fQNqqUIlXxZYQNbfEWSALGAwGoyJd/0Qwk4TttFXUOHJ2ZJQe/52ScaUwtQ==", "dependencies": { "bson": "^5.5.0", "mongodb-connection-string-url": "^2.6.0", @@ -4574,17 +4649,17 @@ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" }, "node_modules/next": { - "version": "14.0.1", - "resolved": "https://registry.npmjs.org/next/-/next-14.0.1.tgz", - "integrity": "sha512-s4YaLpE4b0gmb3ggtmpmV+wt+lPRuGtANzojMQ2+gmBpgX9w5fTbjsy6dXByBuENsdCX5pukZH/GxdFgO62+pA==", + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/next/-/next-14.1.1.tgz", + "integrity": "sha512-McrGJqlGSHeaz2yTRPkEucxQKe5Zq7uPwyeHNmJaZNY4wx9E9QdxmTp310agFRoMuIYgQrCrT3petg13fSVOww==", "dependencies": { - "@next/env": "14.0.1", + "@next/env": "14.1.1", "@swc/helpers": "0.5.2", "busboy": "1.6.0", - "caniuse-lite": "^1.0.30001406", + "caniuse-lite": "^1.0.30001579", + "graceful-fs": "^4.2.11", "postcss": "8.4.31", - "styled-jsx": "5.1.1", - "watchpack": "2.4.0" + "styled-jsx": "5.1.1" }, "bin": { "next": "dist/bin/next" @@ -4593,15 +4668,15 @@ "node": ">=18.17.0" }, "optionalDependencies": { - "@next/swc-darwin-arm64": "14.0.1", - "@next/swc-darwin-x64": "14.0.1", - "@next/swc-linux-arm64-gnu": "14.0.1", - "@next/swc-linux-arm64-musl": "14.0.1", - "@next/swc-linux-x64-gnu": "14.0.1", - "@next/swc-linux-x64-musl": "14.0.1", - "@next/swc-win32-arm64-msvc": "14.0.1", - "@next/swc-win32-ia32-msvc": "14.0.1", - "@next/swc-win32-x64-msvc": "14.0.1" + "@next/swc-darwin-arm64": "14.1.1", + "@next/swc-darwin-x64": "14.1.1", + "@next/swc-linux-arm64-gnu": "14.1.1", + "@next/swc-linux-arm64-musl": "14.1.1", + "@next/swc-linux-x64-gnu": "14.1.1", + "@next/swc-linux-x64-musl": "14.1.1", + "@next/swc-win32-arm64-msvc": "14.1.1", + "@next/swc-win32-ia32-msvc": "14.1.1", + "@next/swc-win32-x64-msvc": "14.1.1" }, "peerDependencies": { "@opentelemetry/api": "^1.1.0", @@ -5083,9 +5158,9 @@ } }, "node_modules/prettier": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.0.3.tgz", - "integrity": "sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg==", + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz", + "integrity": "sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==", "bin": { "prettier": "bin/prettier.cjs" }, @@ -5139,9 +5214,9 @@ } }, "node_modules/query-string": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-8.1.0.tgz", - "integrity": "sha512-BFQeWxJOZxZGix7y+SByG3F36dA0AbTy9o6pSmKFcFz7DAj0re9Frkty3saBn3nHo3D0oZJ/+rx3r8H8r8Jbpw==", + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-8.2.0.tgz", + "integrity": "sha512-tUZIw8J0CawM5wyGBiDOAp7ObdRQh4uBor/fUR9ZjmbZVvw95OD9If4w3MQxr99rg0DJZ/9CIORcpEqU5hQG7g==", "dependencies": { "decode-uri-component": "^0.4.1", "filter-obj": "^5.1.0", @@ -5210,9 +5285,9 @@ } }, "node_modules/react-hook-form": { - "version": "7.47.0", - "resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.47.0.tgz", - "integrity": "sha512-F/TroLjTICipmHeFlMrLtNLceO2xr1jU3CyiNla5zdwsGUGu2UOxxR4UyJgLlhMwLW/Wzp4cpJ7CPfgJIeKdSg==", + "version": "7.50.1", + "resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.50.1.tgz", + "integrity": "sha512-3PCY82oE0WgeOgUtIr3nYNNtNvqtJ7BZjsbxh6TnYNbXButaD5WpjOmTjdxZfheuHKR68qfeFnEDVYoSSFPMTQ==", "engines": { "node": ">=12.22.0" }, @@ -5751,17 +5826,17 @@ } }, "node_modules/style-to-js": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.8.tgz", - "integrity": "sha512-bPSspCXkkhETLXnEgDbaoWRWyv3lF2bj32YIc8IElok2IIMHUlZtQUrxYmAkKUNxpluhH0qnKWrmuoXUyTY12g==", + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.10.tgz", + "integrity": "sha512-VC7MBJa+y0RZhpnLKDPmVRLRswsASLmixkiZ5R8xZpNT9VyjeRzwnXd2pBzAWdgSGv/pCNNH01gPCCUsB9exYg==", "dependencies": { - "style-to-object": "1.0.3" + "style-to-object": "1.0.5" } }, "node_modules/style-to-object": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.3.tgz", - "integrity": "sha512-xOpx7S53E0V3DpVsvt7ySvoiumRpfXiC99PUXLqGB3wiAnN9ybEIpuzlZ8LAZg+h1sl9JkEUwtSQXxcCgFqbbg==", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.5.tgz", + "integrity": "sha512-rDRwHtoDD3UMMrmZ6BzOW0naTjMsVZLIjsGleSKS/0Oz+cgCfAPRspaqJuE8rDzpKha/nEvnM0IF4seEAZUTKQ==", "dependencies": { "inline-style-parser": "0.2.2" } @@ -5851,9 +5926,9 @@ } }, "node_modules/svix": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/svix/-/svix-1.13.0.tgz", - "integrity": "sha512-Gvb1MoEJmPop8sY9B4wre2OK42Sqb9O/tN1s4Vu9aU3M2kEpqqZsoWX6i+9f9h4PgOxCg7N25y6KU//gelRlOQ==", + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/svix/-/svix-1.19.0.tgz", + "integrity": "sha512-kDP9hVJ3pKpcGai8tCv1pEGd72WGsHbKABwlf5ipnl8ux5IlOOdEL7ErMEcUZe4diBV7Qp8H3v8Y9oM8ZE8sTA==", "dependencies": { "@stablelib/base64": "^1.0.0", "es6-promise": "^4.2.4", @@ -5883,11 +5958,11 @@ } }, "node_modules/tailwind-merge": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-2.0.0.tgz", - "integrity": "sha512-WO8qghn9yhsldLSg80au+3/gY9E4hFxIvQ3qOmlpXnqpDKoMruKfi/56BbbMg6fHTQJ9QD3cc79PoWqlaQE4rw==", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-2.2.1.tgz", + "integrity": "sha512-o+2GTLkthfa5YUt4JxPfzMIpQzZ3adD1vLVkvKE1Twl9UAhGsEbIZhHHZVRttyW177S8PDJI3bTQNaebyofK3Q==", "dependencies": { - "@babel/runtime": "^7.23.1" + "@babel/runtime": "^7.23.7" }, "funding": { "type": "github", @@ -5895,9 +5970,9 @@ } }, "node_modules/tailwindcss": { - "version": "3.3.5", - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.5.tgz", - "integrity": "sha512-5SEZU4J7pxZgSkv7FP1zY8i2TIAOooNZ1e/OGtxIEv6GltpoiXUqWvLy89+a10qYTB1N5Ifkuw9lqQkN9sscvA==", + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.1.tgz", + "integrity": "sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==", "dependencies": { "@alloc/quick-lru": "^5.2.0", "arg": "^5.0.2", @@ -5973,9 +6048,9 @@ } }, "node_modules/tinymce": { - "version": "6.7.2", - "resolved": "https://registry.npmjs.org/tinymce/-/tinymce-6.7.2.tgz", - "integrity": "sha512-6h/02jHmXyghekFzmzccZxUUEFtlPEKHxOd+gd49bjno3ybavZInPIaDd/pp2GeEwsFm20oGgJCL7UiebXm9dw==" + "version": "6.8.2", + "resolved": "https://registry.npmjs.org/tinymce/-/tinymce-6.8.2.tgz", + "integrity": "sha512-Lho79o2Y1Yn+XdlTEkHTEkEmzwYWTXz7IUsvPwxJF3VTtgHUIAAuBab29kik+f2KED3rZvQavr9D7sHVMJ9x4A==" }, "node_modules/to-no-case": { "version": "1.0.2", @@ -6269,28 +6344,16 @@ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" }, - "node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", - "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" - } - }, "node_modules/webcrypto-core": { - "version": "1.7.7", - "resolved": "https://registry.npmjs.org/webcrypto-core/-/webcrypto-core-1.7.7.tgz", - "integrity": "sha512-7FjigXNsBfopEj+5DV2nhNpfic2vumtjjgPmeDKk45z+MJwXKKfhPB7118Pfzrmh4jqOMST6Ch37iPAHoImg5g==", + "version": "1.7.8", + "resolved": "https://registry.npmjs.org/webcrypto-core/-/webcrypto-core-1.7.8.tgz", + "integrity": "sha512-eBR98r9nQXTqXt/yDRtInszPMjTaSAMJAFDg2AHsgrnczawT1asx9YNBX6k5p+MekbPF4+s/UJJrr88zsTqkSg==", "dependencies": { - "@peculiar/asn1-schema": "^2.3.6", + "@peculiar/asn1-schema": "^2.3.8", "@peculiar/json-schema": "^1.1.12", "asn1js": "^3.0.1", - "pvtsutils": "^1.3.2", - "tslib": "^2.4.0" + "pvtsutils": "^1.3.5", + "tslib": "^2.6.2" } }, "node_modules/webidl-conversions": { diff --git a/package.json b/package.json index 96629ea..40ca74f 100644 --- a/package.json +++ b/package.json @@ -9,35 +9,36 @@ "lint": "next lint" }, "dependencies": { - "@clerk/nextjs": "^4.26.1", - "@hookform/resolvers": "^3.3.2", + "@clerk/nextjs": "^4.29.7", + "@hookform/resolvers": "^3.3.4", "@radix-ui/react-dialog": "^1.0.5", "@radix-ui/react-icons": "^1.3.0", "@radix-ui/react-label": "^2.0.2", "@radix-ui/react-menubar": "^1.0.4", "@radix-ui/react-select": "^2.0.0", "@radix-ui/react-slot": "^1.0.2", + "@radix-ui/react-switch": "^1.0.3", "@radix-ui/react-tabs": "^1.0.4", "@radix-ui/react-toast": "^1.1.5", - "@tinymce/tinymce-react": "^4.3.0", + "@tinymce/tinymce-react": "^4.3.2", "class-variance-authority": "^0.7.0", - "clsx": "^2.0.0", - "eslint-config-prettier": "^9.0.0", + "clsx": "^2.1.0", + "eslint-config-prettier": "^9.1.0", "eslint-config-standard": "^17.1.0", - "eslint-plugin-tailwindcss": "^3.13.0", - "html-react-parser": "^5.0.2", - "lucide-react": "^0.290.0", - "mongodb": "^6.2.0", - "mongoose": "^7.6.3", - "next": "14.0.1", - "prettier": "^3.0.3", + "eslint-plugin-tailwindcss": "^3.14.3", + "html-react-parser": "^5.1.7", + "lucide-react": "^0.335.0", + "mongodb": "^6.3.0", + "mongoose": "^7.8.4", + "next": "14.1.1", + "prettier": "^3.2.5", "prismjs": "^1.29.0", - "query-string": "^8.1.0", + "query-string": "^8.2.0", "react": "^18", "react-dom": "^18", - "react-hook-form": "^7.47.0", - "svix": "^1.13.0", - "tailwind-merge": "^2.0.0", + "react-hook-form": "^7.50.1", + "svix": "^1.19.0", + "tailwind-merge": "^2.2.1", "zod": "^3.22.4" }, "devDependencies": {

AltStyle によって変換されたページ (->オリジナル) /