Jobs at Djinni

9586
  • Β· 150 views Β· 28 applications Β· 17d

    Fullstack Developer - Creative Tool for Artists and Designers to $8000

    Full Remote Β· Worldwide Β· 5 years of experience Β· C2 - Proficient
    About the Role We're seeking an experienced Fullstack Developer to join the Genie team and help build an intelligent canvas platform that enables artists and creators to build custom, node-based creative workflows combining AI models with professional...

    About the Role

     

    We're seeking an experienced Fullstack Developer to join the Genie team and help build an intelligent canvas platform that enables artists and creators to build custom, node-based creative workflows combining AI models with professional editors.

    This is a critical hire to strengthen our development capacity and accelerate platform development with clean architecture, scalability, and maintainability.

     

    Tech Stack

    Frontend

    • Next.js 15.5+ (App Router with Turbopack, React Server Components)
    • React 19.2 with TypeScript
    • TailwindCSS + custom design system
    • Zustand for state management
    • WebGL & WebGPU canvas rendering (GPU-accelerated graph visualization)
    • GLSL shaders for visual effects and rendering
    • Storybook 9+ for component development

       

    Backend

    • Fastify 4+ (Node.js framework) - high-performance REST APIs
    • TypeScript 5.4-5.8 (strict mode with verbatimModuleSyntax)
    • Hexagonal Architecture (Ports & Adapters pattern)
    • Turborepo monorepo with pnpm workspaces (serial builds for architecture stability)

       

    Data Layer

    • PostgreSQL (via Prisma ORM) - users, projects, billing, subscriptions
    • Redis - caching, BullMQ queues, pub/sub, rate limiting
    • Neo4j (active) - canvas/node graph data with hexagonal adapter
    • Google Cloud Storage - asset management

       

    Infrastructure & DevOps

    • GCP Cloud Run - microservices hosting
    • Vercel - frontend deployments with preview environments
    • Docker - containerization & local development
    • Cloudflare - DNS, CDN, WAF
    • GitHub Actions - CI/CD pipelines

     

    Key Libraries & Tools

    • Better Auth 1.3+ - authentication & session management
    • BullMQ - background job queues
    • Zod 4.1+ - schema validation with branded types
    • Sentry - error tracking
    • PostHog - analytics
    • Stripe - payments
    • Winston - structured logging
    • Resend - transactional emails
    • elkjs - graph layout algorithms

     

    What You'll Do

     

    Core Responsibilities

    • Build and maintain features across the full stack (Next.js frontend + Fastify backend)
    • Design and implement API endpoints following hexagonal architecture principles
    • Work with PostgreSQL, Redis, and Neo4j using the repository pattern
    • Implement background jobs using BullMQ for async operations
    • Build GPU-accelerated canvas components using WebGL/WebGPU
    • Write and optimize GLSL shaders for visual effects and rendering
    • Develop creative coding features for visual artists and creators
    • Integrate AI models (Stable Diffusion, ComfyUI workflows, etc.)
    • Develop reusable components in Storybook for our design system
    • Write clean, maintainable, and testable TypeScript code with strict mode
    • Follow architectural patterns: Ports & Adapters, Schema-First Development
    • Collaborate on API design and database schema changes
    • Optimize performance for 1000+ concurrent users
    • Debug production issues and implement monitoring solutions

     

    Technical Expectations

    • Follow hexagonal architecture (business logic β†’ Port interface β†’ Adapter implementation)
    • Use schema-first development with centralized Zod schemas and branded types
    • Implement proper separation of concerns across monorepo packages
    • Write code with TypeScript strict mode compliance (verbatimModuleSyntax, exactOptionalPropertyTypes)
    • Use ENV_KEYS registry for all configuration (no .env files allowed)
    • Apply queue-first approach for background jobs (BullMQ)
    • Use repository pattern for database access (DatabaseFactory + Repository Adapters)
    • Write meaningful tests with proper package imports (never relative imports in tests)
    • Understand GPU rendering pipeline (WebGL/WebGPU for canvas visualization)
    • Work with AI model APIs and understand image generation workflows


    Required Skills

    Must Have

    • 5+ years professional fullstack development experience
    • Strong TypeScript expertise (generics, type inference, strict mode, branded types)
    • Production experience with Next.js (App Router strongly preferred)
    • Solid Node.js backend development skills (Fastify/Express/Koa/similar)
    • Experience with PostgreSQL and SQL optimization
    • Understanding of REST API design and best practices
    • Familiarity with monorepo architecture (Turborepo, Nx, Lerna, or similar)
    • Git workflow proficiency (feature branches, PRs, code reviews)
    • Strong problem-solving and debugging skills
    • Ability to work independently and take ownership of features

     

    Highly Desired (Creative Coding & AI)

    • Creative coding experience (p5.js, Three.js, Processing, or similar)
    • WebGL/WebGPU experience (shader programming, GPU optimization)
    • GLSL shader programming (vertex shaders, fragment shaders, compute shaders)
    • ComfyUI experience or understanding of node-based AI workflows
    • Working knowledge of AI image generation models (Stable Diffusion, FLUX, etc.)
    • Understanding of AI model parameters (prompts, sampling, CFG, schedulers, etc.)
    • Experience with generative art or interactive graphics
    • Familiarity with canvas-based creative tools

     

    Nice to Have

    • Experience with Hexagonal/Clean Architecture or similar patterns (Onion, Ports & Adapters)
    • Familiarity with graph databases (Neo4j, ArangoDB, etc.)
    • Redis experience (caching, pub/sub, queues)
    • GCP knowledge (Cloud Run, Cloud SQL, Cloud Storage, Secret Manager)
    • Docker and containerization experience
    • Experience with BullMQ, Bull, or similar queue systems
    • Understanding of authentication systems (OAuth, session management)
    • Payment integration experience (Stripe)
    • Exposure to AI/ML APIs (OpenAI, Replicate, fal.ai, RunPod)
    • Storybook experience for component-driven development
    • Vercel deployment and preview environments
    • Experience with creative coding frameworks (openFrameworks, Cinder, nannou)
    • Knowledge of image processing and computer graphics fundamentals

     

    What We're Looking For

     

    Key Qualities

    • Pragmatic approach - you prioritize correct solutions over quick hacks
    • Architecture-minded - you understand why patterns matter at scale
    • Detail-oriented - you care about code quality, testing, and documentation
    • Self-sufficient - you can unblock yourself and find solutions
    • Communication skills - you can explain technical decisions clearly
    • Team player - you're comfortable with code reviews and collaboration
    • Growth mindset - you're eager to learn and improve continuously
    • Performance-conscious - you understand GPU rendering and optimization techniques
    • Creative technologist - you appreciate the intersection of code, art, and AI
    • AI-curious - you're excited about working with cutting-edge AI models

     

    Red Flags We Avoid

    • Reliance on skipLibCheck or TypeScript workarounds
    • Creating bandaid solutions instead of fixing root causes
    • Ignoring architectural guidelines and patterns
    • Poor testing practices or skipping tests
    • Inability to work with existing codebases
    • Direct coupling to infrastructure (e.g., direct Prisma in business logic)

     

    Our Development Philosophy

    We follow strict principles to ensure long-term maintainability:

    1. Convention over Configuration - extend existing patterns, don't create new ones
    2. DRY Principles - 2+ uses = shared package (packages/)
    3. Schema-First - centralized Zod schemas with branded types in //genieartinc/schemas
    4. Port-Adapter Pattern - technology-agnostic business logic via interfaces
    5. Queue-First - all async work goes through BullMQ
    6. No Relative Test Imports - tests must mirror real app imports
    7. ENV_KEYS System - centralized configuration, no .env files ever
    8. Repository Pattern - DatabaseFactory + Repository Adapters, never direct ORM in business logic
    9. GPU-First Rendering - WebGPU with WebGL fallback for canvas performance

     

    Performance Targets: API < 200ms | AI < 30s | Page load < 3s | 5xx < 0.1%

     

    Development Workflow

    • Enhanced GitHub Flow: main (production) ← staging ← feature/* branches
    • CI/CD: GitHub Actions + Vercel preview deployments for every PR
    • Code reviews are mandatory
    • Automated checks: TypeScript, ESLint, architecture validation, tests
    • Architecture validation runs on every PR (pnpm arch:validate)
    • Serial builds with Turborepo (concurrency: 1) for architecture stability
    • We value correctness over speed - proper solutions, not shortcuts

     

    What We Offer

    • Competitive salary + equity/stock options
    • Remote-friendly 
    • Work on cutting-edge AI/creative tools
    • Direct impact on product development
    • Collaborate with creative technologists and AI researchers

     

    How to Apply

    Please submit:

    1. Resume/CV
    2. GitHub profile or portfolio with code samples
    3. Cover letter addressing:
      • Why you're interested in Genie and this role
      • Your experience with similar architectures (hexagonal/clean architecture, monorepos, etc.)
      • Your background in creative coding and/or AI tools (if applicable)
      • A challenging technical problem you've solved and your approach
      • Any experience with WebGL/WebGPU, shaders, or generative art
    4. Portfolio/demos showcasing:
      • Similar Industry project portfolio is must
      • Creative coding projects (p5.js, Three.js, shaders, etc.)
      • WebGL/WebGPU experiments or interactive graphics
      • AI integration projects (ComfyUI workflows, Stable Diffusion, etc.)
      • Canvas-based applications or visual tools
    5. Code samples demonstrating:
      • Clean architecture/SOLID principles
      • TypeScript expertise (strict mode, advanced types, branded types)
      • Fullstack capabilities (frontend + backend)
      • Performance optimization or GPU programming

     

    More
  • Β· 42 views Β· 2 applications Β· 17d

    C++ developer with 3D APIs

    Office Work Β· Ukraine (Lviv) Β· Product Β· 2 years of experience Β· B1 - Intermediate
    VisCo AS is searching for software engineers for an exciting role on our vCog development team. We are looking for a software developer to help us build and improve our proprietary 3D engine. Required Skills: 1+ year of industry experience...

    VisCo AS is searching for software engineers for an exciting role on our vCog development team. We are looking for a software developer to help us build and improve our proprietary 3D engine. 

     

    Required Skills: 

     

    • 1+ year of industry experience developing commercial systems and applications; 
    • Strong understanding of software development and testing practices; 
    • C++ programming skills; 
    • Good understanding of object-oriented concepts; 
    • 3D math skills (matrices, vectors, etc.); 
    • Experience with any of the 3D APIs (OpenGL, Direct3D, Vulkan, etc.); 
    • Performance optimization skills (CPU/GPU/Memory etc.);   
    • Understanding of algorithms and data-structures; 
    • English at technical level.  

     

    Will be a plus: 

     

    • Code and algorithms optimization knowledge; 
    • Understanding of data-oriented design; 
    • Advanced knowledge of vector math and 3D geometry; 
    • Understanding of 3D rendering techniques; 
    • Experience with any low-level 3D API (DX12, Vulkan, WebGPU or Metal); 
    • Bachelor's degree in computer science or related field. 

     

    Responsibilities:  

     

    • Write clear, maintainable C++ code;  
    • Participate in functionality and interface design sessions;  
    • Identify and fix bottlenecks and bugs;  
    • Implementation of new medium-complexity features;  
    • Track/report work using our code/task tracking systems;  
    • Collaborate with other company departments. 

     

    We offer: 

     

    • Competitive salary level; 
    • Career possibilities with growing team; 
    • Constant corporate events of different types; 
    • Truly friendly environment and flexible schedule; 
    • Technical challenges that will help you to grow constantly; 
    • 20 working days of paid vacation, paid sick leaves. 
    More
  • Β· 37 views Β· 16 applications Β· 16d

    Influencer Marketing Specialist (Instagram, TikTok, B2Π‘ SaaS, % of revenue)

    Full Remote Β· Worldwide Β· Product Β· 1 year of experience Β· C1 - Advanced
    We are developing a B2Π‘ SaaS product and want to make it go viral. Looking for a specialist who can manage influencer marketing on Instagram and TikTok in different countries, with a focus on Tier 1 markets. Requirements: Knowledge of Western Instagram...

    We are developing a B2Π‘ SaaS product and want to make it go viral. Looking for a specialist who can manage influencer marketing on Instagram and TikTok in different countries, with a focus on Tier 1 markets.

     

    Requirements:

    • Knowledge of Western Instagram & TikTok trends
    • Understanding of foreign (Western) audiences
    • Experience working with influencers directly and via various platforms
    • Ability to create and edit photo and video content when needed
    • Understanding of platform algorithms
    • Ability to calculate influencer marketing ROI and campaign economics
    • Providing influencers with clear briefs and ensuring agreements are fulfilled
    • Good English
    • Proven case studies

     

    Would be a plus:

    • Paid ads experience (Facebook, TikTok, etc.)
    • Experience with Reddit marketing or community growth
    • Experience with X

     

    We offer:

    • Fixed salary + % of revenue
    • Work with an international team on a product aimed at Tier 1 markets
    • Opportunity to make a significant impact on product virality
    More
  • Β· 26 views Β· 1 application Β· 16d

    SMM Specialist (Instagram, TikTok, B2Π‘ SaaS, % of revenue)

    Hybrid Remote Β· Indonesia Β· Product Β· 1 year of experience Β· B2 - Upper Intermediate
    We are developing a B2C SaaS product and aim to make it go viral. We’re looking for a creative SMM professional who can consistently produce engaging content for our official pages and help us achieve viral growth. Being in Bali is a big plus, as we can...

    We are developing a B2C SaaS product and aim to make it go viral. We’re looking for a creative SMM professional who can consistently produce engaging content for our official pages and help us achieve viral growth. Being in Bali is a big plus, as we can collaborate closely on-site.

     

    Requirements:

    • Proven experience managing social media for SaaS products (preferably)
    • Ability to recruit actors or creators for content
    • Skills in filming and editing Reels-style videos
    • Understanding of what makes content go viral
    • Knowledge of Instagram & TikTok trends
    • Ability to create and edit photo/video content
    • Awareness of platform algorithms
    • Good English
    • Proven case studies or portfolio

       

    Would be a plus:

    • Experience working with influencers
    • Experience with paid ads (Facebook, TikTok, etc.)
    • Reddit marketing or community growth experience
    • Experience with X (Twitter)

       

    We offer:

    • Fixed salary + bonuses for high-performing viral content
    • Work with an international team targeting Tier 1 markets
    • Opportunity to make a significant impact on product growth and virality

     

    More
  • Β· 330 views Β· 105 applications Β· 16d

    Game Tester (mobile)

    Full Remote Β· Worldwide Β· 2 years of experience Β· B1 - Intermediate
    Why TREAT? TREAT is a fast-growing gaming startup pioneering a new model: Play to Impact. Through engaging gameplay, TREAT allows pet lovers to co-own & treat real dogs and cats in needβ€”think of it as a real-life "Tamagotchi"! Our players have already...

    Why TREAT?

    TREAT is a fast-growing gaming startup pioneering a new model: Play to Impact. Through engaging gameplay, TREAT allows pet lovers to co-own & treat real dogs and cats in needβ€”think of it as a real-life "Tamagotchi"! Our players have already earned over 18,000,000 treats, meals, and toys for shelter animals. Our mission? To entertain millions while positively impacting the lives of countless animals around the globe.

     

    About the Role:

    We are looking for a dedicated QA Specialist who thrives in gaming environments and has a passion for delivering exceptional user experiences. Your role will be critical in ensuring the stability, quality, and optimization of TREAT’s platform as we grow our global impact. You’ll collaborate closely with our Development team and other departments to ensure every feature supports our mission of real-world change.

     

    Responsibilities:

    • Take ownership of testing game features and systems to ensure reliability and high-quality user experiences.
    • Collaborate with developers and cross-functional teams to understand requirements and achieve project goals.
    • Develop and execute test cases for new client-side features while maintaining existing functionalities.
    • Conduct extensive testing across multiple device models (iOS & Android) for consistent performance and compatibility.
    • Test gameplay under varied network conditions to replicate real-world user scenarios.
    • Clearly document and communicate findings, coordinating closely with relevant departments to resolve issues.
    • Participate in design and code reviews, proactively identifying potential issues.
    • Identify, classify, track, and report gameplay bugs and performance issues.
    • Regularly refine and optimize QA processes for enhanced efficiency.

     

    Requirements:

    • High proficiency in English is a MUST(reading, writing, speaking) for clear international communication.
    • Bachelor’s degree in Computer Science, Engineering, or related field.
    • Minimum of 2 years' hands-on experience testing mobile games on iOS and Android.
    • Full QA lifecycle experience with at least one successfully published app/game on App Store & Play Store.
    • Proficient in multi-device testing and network condition simulation.
    • Skilled in issue-tracking platforms for effective task management.
    • Excellent documentation skills, with strong abilities in issue reporting and resolution follow-up.
    • Strong problem-solving abilities and meticulous attention to detail.
    • Animal lover with experience having pets (dogs/cats) and/or involvement with animal shelters.

     

    Advantages:

    • Experience with Unity testing frameworks and gaming performance metrics.
    • Familiarity with Jira and Confluence.
    • Agile methodology experience (Scrum, Kanban) in fast-paced, collaborative environments.

     

    Additional Information:

    • Salary Range: $1000–$1700 USD per month
    • Location: Remote
    • Work Schedule: Sunday to Thursday (aligning with Israel working hours 09:30 AM- 6:30 PM).
    More
  • Β· 61 views Β· 14 applications Β· 16d

    AI-Assisted Upwork Bidder - Prove Your Skills, Get Paid Accordingly

    Full Remote Β· Worldwide Β· 1 year of experience Β· B2 - Upper Intermediate
    Most bidders using AI tools just blast generic proposals and wonder why nothing converts. Volume without quality = wasted connects. We need someone who gets it: AI tools (Upwex, Vollna) generate volume, your brain ensures quality. What You'll Actually...

     

     

    Most bidders using AI tools just blast generic proposals and wonder why nothing converts. Volume without quality = wasted connects.

    We need someone who gets it: AI tools (Upwex, Vollna) generate volume, your brain ensures quality.

    What You'll Actually Do:

    • Run AI bidding tools (Upwex/Vollna - we provide)
    • Review and customize AI outputs (this is the skill part)
    • 100+ bids weekly, every week (not 100, then 80, then 50...)
    • 10%+ reply rate through quality control
    • Track your own metrics, we verify weekly

    Compensation: $1,000 base + $500 performance bonus + $100 per closed deal = $1,600+/month

    Hit metrics, get paid. Miss metrics, don't. Simple.

    Application Test - $50 Paid: Three job postings, three proposals, explain your reasoning. 48 hours.

    If you can't handle a paid test, you can't handle performance metrics.

    Requirements:

    • Upwork bidding experience (6+ months)
    • AI tool familiarity (Upwex/Vollna preferred, similar tools acceptable)
    • Ability to make AI outputs not sound like AI
    • Consistent work ethic
    • Comfortable with metrics accountability

    Tech Stack:

    • Upwork platform
    • AI bidding tools (Upwex/Vollna - we provide access)
    • Spreadsheet for metrics tracking
    • Slack for communication

    What We Offer:

    • Clear metrics (scorecard reviews every Friday)
    • AI tools provided (we pay, you manage)
    • Performance-based pay (results = money)
    • No micromanagement (weekly check-ins, not daily babysitting)

    What We Don't Offer:

    • Patience for excuses
    • Vague expectations
    • Tolerance for coasting

    If you're confident with AI-assisted bidding and consistent work habits, apply. If you just want to set-and-forget AI tools while performance tanks, don't.

    More
  • Β· 124 views Β· 46 applications Β· 16d

    Senior Full-Stack Engineer

    Full Remote Β· Countries of Europe or Ukraine Β· 5 years of experience Β· B2 - Upper Intermediate
    Join a global leader shaping the future of autonomous AI agents for developers. We’re an international, fast-growing company building AI-powered tools that transform coding workflows, automate repetitive tasks, and boost developer productivity...

    Join a global leader shaping the future of autonomous AI agents for developers. We’re an international, fast-growing company building AI-powered tools that transform coding workflows, automate repetitive tasks, and boost developer productivity worldwide.


    About the Role:

    As a Senior Full-Stack Engineer, you’ll work across the stack to design scalable backend systems, build high-performance UIs, and integrate AI assistants into modern development workflows. You’ll tackle challenges like parsing massive codebases, building intelligent automation, and optimizing cloud infrastructure at scale.


    Tech Stack:

    React, TypeScript, Python, Node.js, Postgres, Redis, AWS (extensive use of managed services)


    Responsibilities:

    • Architect and implement scalable backend services and APIs.
    • Build intuitive, performant frontend components and IDE integrations.
    • Collaborate with AI engineers to integrate intelligent automation.
    • Optimize performance, reliability, and developer experience across systems.


    Requirements:

    • 5+ years of full-stack development experience.
    • Expert in React and TypeScript with modern frontend architecture skills.
    • Hands-on AWS experience and strong backend skills in Python or Node.js.


    Nice to Have:

    • Familiarity with AI-powered dev tools, CI/CD pipelines, and IaC (Terraform or Pulumi).


    Why Join Us:

    • Be part of a global company redefining how software is built with AI.
    • Collaborate with top engineers and AI specialists worldwide.
    • Solve cutting-edge challenges in a fast-paced, innovative environment.
    • Enjoy a fun, international culture with endless opportunities for growth and impact.
    • Full remote position.
    More
  • Β· 123 views Β· 14 applications Β· 16d

    WordPress / Laravel Developer (PHP Back-end) to $1500

    Full Remote Β· Ukraine Β· 2 years of experience Β· B1 - Intermediate
    Work format: Remote Level: Strong Junior / Middle Employment type: Full-time About Us We are a development team building content websites and custom solutions based on WordPress and Laravel. We work with international clients and deliver efficient,...

    Work format: Remote

    Level: Strong Junior / Middle

    Employment type: Full-time

     

    About Us

    We are a development team building content websites and custom solutions based on WordPress and Laravel. We work with international clients and deliver efficient, high-performance web solutions for media, marketing, and technology projects.

     

    Responsibilities

    • Develop and maintain projects built on WordPress and Laravel
    • Create and integrate REST APIs
    • Optimize backend performance and database queries
    • Build and customize themes, plugins, and components
    • Integrate external APIs and analytical services
    • Participate in code reviews and collaborate via Git

     

    Requirements

    • Solid knowledge of PHP 8+, MySQL, WordPress Core, Laravel, Git, Docker
    • Experience with REST API development
    • Understanding of CMS architecture, clean code, and security best practices
    • Strong sense of responsibility and attention to detail

     

    Nice to Have

    • Experience with Vue.js, WooCommerce, SEO optimization, CI/CD pipelines
    • Performance optimization for large-scale websites
    • Basic knowledge of front-end stack (HTML, CSS, JavaScript)

     

    We offer:

    • Remote full-time position.
    • Direct impact on a greenfield product.
    • Flexible schedule and long-term collaboration.
    • Small team with quick decision-making.

     

    Application Process: 
    Apply directly through Djinni and we will review your resume and any additional materials within five business days. If your experience aligns with our needs, we will get back to you with next steps. If not, don’t worry β€” our journey together may just be beginning. We’d love to keep in touch as our team grows and more opportunities arise. Best of luck with your career pursuits!

    More
  • Β· 51 views Β· 2 applications Β· 16d

    Senior Node.js Developer (Spain)

    Office Work Β· Spain Β· Product Β· 6 years of experience Β· B2 - Upper Intermediate
    BrainRocket is a global company creating end-to-end tech products for clients across Fintech, iGaming, and Marketing. ‍Young, ambitious, and unstoppable, we've already taken Cyprus, Malta, Portugal, Poland, and Serbia by storm. Our BRO team consists of...

    BrainRocket is a global company creating end-to-end tech products for clients across Fintech, iGaming, and Marketing. β€Young, ambitious, and unstoppable, we've already taken Cyprus, Malta, Portugal, Poland, and Serbia by storm. Our BRO team consists of 1,300 bright minds creating innovative ideas and products. We don’t follow formats. We shape them. We build what works, launch it fast, and make sure it hits.

     

    We are looking for a skilled Senior Node.js Developer to join our team in Spain, Valencia (on-site).

     

    βœ… Requirements:

    βœ”οΈStrong knowledge of JavaScript and the ECMAScript 6 standards;

    βœ”οΈ5+ years of commercial experience with Node.js and Nest.js;

    βœ”οΈ5+ years of commercial experience in web development;

    βœ”οΈCommercial experience of working with high loaded SQL or NO SQL databases;

    βœ”οΈCommercial experience of implementing the REST, GraphQL and WebSockets;

    βœ”οΈUnderstanding of the TDD principles and experience of writing tests;

    βœ”οΈUnderstanding of microservice architecture principles;

    βœ”οΈExperience of GIT version control system;

    βœ”οΈExperience with RabbitMQ;

    βœ”οΈExperience with Redis;

    βœ”οΈExperience with databases MongoDB, MySQL;

    βœ”οΈAt least Intermediate lvl of English.

     

    βœ… Will be a plus: 
    - 2+ years of hands-on experience developing over CI/CD/Micro; Services architecture/Containers;
    - Experience with Kubernetes;
    - Experience with Nats;
    - Experience with TypeScript.

     

    βœ… Duties and opportunities:

    - In-house platform development;
    - 3rd party API integrations;
    - Actively participate in developing new features from scratch.

     

    βœ… We offer excellent benefits, including but not limited to:
    πŸ§‘πŸ»β€πŸ’» Learning and development opportunities and interesting, challenging tasks;
    πŸ“š Opportunity to develop language skills, with partial compensation for the cost of English classes;

    ✈️ Relocation package (tickets, staying in a hotel for up to 2 weeks, and visa relocation support for our employees and their family members);
    πŸ₯ Global coverage health insurance;
    🏝 Time for proper rest, with 20 working days of annual vacation and additional paid sick days;
    πŸ“ˆ Competitive remuneration level with annual review;
    🀝 Teambuilding activities.

     

    Join BrainRocket and rock with us! πŸš€

     

    Bold moves start here. Make yours. Apply today! 

    More
  • Β· 223 views Β· 67 applications Β· 16d

    Project Manager (background in outsourcing/ outstaffing companies) to $3000

    Full Remote Β· Ukraine Β· 3 years of experience Β· C1 - Advanced
    We, at Fireart, are scaling the project management team, so we are looking for a Project Manager who can work directly with our customers and translate their visions into well-thought-out kick-off plans. You are a great fit if... Leadership skills that...

    We, at Fireart, are scaling the project management team, so we are looking for a Project Manager who can work directly with our customers and translate their visions into well-thought-out kick-off plans.


     

    You are a great fit if...

    • Leadership skills that positively impact processes and help you perform under pressure
    • Ability to deliver products on time, within budget, and at high quality
    • Understanding of SDLC and experience with Agile, Waterfall, or Hybrid approaches
    • Strong scope management and planning abilities
    • Open and transparent communication that helps build trust with clients, even when navigating challenging conversations
    • A sense of product vision, whether a pinch or plenty, with the ability to share ideas, guide clients, and help them make informed decisions
    • Experience defining high-level client requirements and sharing the vision with the team
    • Thoughtful, reasonable decision-making skills
    • A β€œhappy team first” mindset
    • Knowledge of PM tools, strategies, or methodologies to achieve project goals
    • C1 English or higher
    • Experience working as PM at software houses/ agencies

     

    Nice to have

    • A good eye for design
    • Technical background

     

    Why you should join us

    • We are growing daily and expanding our client list, providing opportunities to develop skills and work on various projects.
    • We avoid micromanagement and fully trust the professionalism of our hires.
    • Our employees are always ready to assist and support you, ensuring you won’t face problems alone.
    • Fireart boasts a friendly atmosphere with talented individuals, promising an interesting journey for your continuous professional development.


     

    We have 2 steps in the recruitment process

    1 β€” Interview with the Recruitment Specialist

    2 β€” Interview with the Head of Delivery

     

    What we offer

    • Competitive compensation depending on experience and skills (basic salary+bonuses)
    • A friendly team of like-minded people
    • Opportunities for learning and development
    • Compensation for sick leaves
    • 21 working days paid vacation + all Poland national holidays
    • Corporate events and activities
    • Private medical care
    • Office work or remote working (based on your location)
    More
  • Β· 71 views Β· 14 applications Β· 16d

    Financial Analyst (Reconciliation)

    Full Remote Β· Countries of Europe or Ukraine Β· Product Β· 1 year of experience Β· B2 - Upper Intermediate
    PayDo, a leading Electronic Money Institution (EMI) authorised by the FCA in the UK, FINTRAC in Canada, and MFSA in Malta, operates in 140 countries and over 25 industries. Offering multicurrency IBANs, merchant solutions, and mass payment options, PayDo...

    PayDo, a leading Electronic Money Institution (EMI) authorised by the FCA in the UK, FINTRAC in Canada, and MFSA in Malta, operates in 140 countries and over 25 industries. Offering multicurrency IBANs, merchant solutions, and mass payment options, PayDo provides premium and convenient payment services. With all features available through one platform and contract, PayDo is a preferred solution for local and international payments. 
    We are looking for a Financial Analyst (Reconciliation Specialist) to join our Finance team. The role focuses on daily and monthly reconciliation of transactions with PSP providers, ensuring accuracy of financial records, identifying discrepancies, and maintaining smooth communication with payment partners. The specialist will also contribute to process improvements, reporting, and ad-hoc financial analysis.

    Responsibilities:

    • Perform daily and monthly reconciliations with PSP providers to ensure accuracy of financial records.
    • Identify and resolve discrepancies in transactions, fees, and settlements.
    • Collect and maintain financial documentation, reports, and invoices.
    • Prepare and update internal financial reports and summaries for management.
    • Support timely reporting and compliance with internal deadlines and standards.
    • Communicate with providers and internal teams to clarify and resolve issues.
    • Contribute to process improvements and integration of new reconciliation tools and systems.
    • Handle ad-hoc financial requests and provide accurate data analysis when required.

    Skills & Requirements:

    • 1–3 years of experience in finance, reconciliation, accounting, or payment operations
    • Strong knowledge of Excel/Google Sheets (formulas, pivot tables, VLOOKUP, data validation)
    • Experience with BI systems (e.g., Tableau, Metabase, or similar)
    • Attention to detail and accuracy in working with large data volumes
    • English level: minimum B1 (written and spoken, for communication with providers)
    • Strong analytical and problem-solving skills
    • Ability to meet deadlines and manage multiple tasks simultaneously

    Nice to have

    • Knowledge of SQL and Python for data analysis and automation
    • Previous experience with PSPs, banks, fintech, or Big 4 audit firms
    • Familiarity with chargebacks, refunds, and settlement processes

    We work in a result-driven culture. You will fit in if you:

    • Own your work with no excuses.
    • Take initiative and act before being told.
    • Deliver results that make a real impact.
    • Solve problems quickly with practical solutions.

    What we offer:

    • Annual Learning & Development Budget – invest in your growth with dedicated funds for courses, training, and certifications.
    • Regular Performance Reviews Based on KPIs – for your professional growth.
    • Transparent career growth – with opportunities to achieve Lead roles within 1 year, Head roles in 2 years, and even C-level within 4 years, based on exceptional performance.
    • Innovation Financial Rewards – share your ideas through our PayDo Ideas Hub and earn extra bonuses.
    • Paid Vacation – with the flexibility to transfer unused days to the next year or receive compensation.
    • Paid Sick Leave – available to cover medical needs and emergencies.
    • Public Holidays tailored to your country’s calendar.
    • Flexible Payout Options – PE accounts or popular e-wallets.

    Become part of a global team redefining FinTech. Your expertise, passion, and ideas will shape the future of payments with PayDo!

    More
  • Β· 25 views Β· 10 applications Β· 15d

    Sales Manager

    Full Remote Β· Countries of Europe or Ukraine Β· Product Β· 1 year of experience Β· C1 - Advanced
    PayDo, a leading Electronic Money Institution (EMI) authorised by the FCA in the UK, FINTRAC in Canada, and MFSA in Malta, operates in 140 countries and over 25 industries. Offering multicurrency IBANs, merchant solutions and mass payment options, PayDo...

    PayDo, a leading Electronic Money Institution (EMI) authorised by the FCA in the UK, FINTRAC in Canada, and MFSA in Malta, operates in 140 countries and over 25 industries. Offering multicurrency IBANs, merchant solutions and mass payment options, PayDo provides premium and convenient payment services. With all features available through one platform and contract, PayDo is a preferred solution for local and international payments.

    We are looking for an ambitious and result–oriented Sales Manager who wants to develop a career and grow in sales.
    We are committed to providing you with comprehensive training and support by experienced professionals so you can succeed in the Sales role.

    Responsibilities:
    – Acquire new clients by growing, maintaining and leveraging leads, converting them into sales opportunities
    – Identify features of target business verticals in order to offer the most suitable solution for the potential client
    – Prepare and organize sales materials, including presentations and proposals
    – Present and pitch products to potential clients
    – Schedule and attend meetings with potential clients to discuss their needs and introduce PayDo’s solutions
    – Prepare offers, agreements and invoices
    – Work with CRM (Zendesk Sell)
    – Provide periodic updates and report to the Head of Department
    – Achieve weekly/monthly KPIs

    Skills & Requirements:
    – Motivated, enthusiastic and result-oriented individual with a strong work ethics
    – A quick learner who can grasp new concepts and apply them quickly
    – Fluent in English and Ukrainian/Russian
    – Basic knowledge of CRM platforms
    – A creative and resourceful problem solver
    – Ready for new challenges with a strong can-do attitude

    We work in a result-driven culture. You will fit in if you:

    • Own your work with no excuses.
    • Take initiative and act before being told.
    • Deliver results that make a real impact.
    • Solve problems quickly with practical solutions.

    What we offer:

    • Annual Learning & Development Budget – invest in your growth with dedicated funds for courses, training, and certifications.
    • Regular Performance Reviews Based on KPIs – for your professional growth.
    • Transparent career growth – with opportunities to achieve Lead roles within 1 year, Head roles in 2 years, and even C-level within 4 years, based on exceptional performance.
    • Innovation Financial Rewards – share your ideas through our PayDo Ideas Hub and earn extra bonuses.
    • Paid Vacation – with the flexibility to transfer unused days to the next year or receive compensation.
    • Paid Sick Leave – available to cover medical needs and emergencies.
    • Public Holidays tailored to your country’s calendar.
    • Flexible Payout Options – PE accounts or popular e-wallets.

    Become part of a global team redefining FinTech. Your expertise, passion, and ideas will shape the future of payments with PayDo!

    More
  • Β· 48 views Β· 0 applications Β· 15d

    Video Editor

    Full Remote Β· Countries of Europe or Ukraine Β· 1 year of experience Β· Native
    We're looking for a creative-obsessed Video Editor who lives and breathes scroll-stopping content and understands what makes people stop, watch, and buy. This role is ideal for someone who can turn raw footage into conversion machines, thinks in TikTok...

    We're looking for a creative-obsessed Video Editor who lives and breathes scroll-stopping content and understands what makes people stop, watch, and buy. This role is ideal for someone who can turn raw footage into conversion machines, thinks in TikTok native language, and wants to master performance creative with a world-class DTC growth team.

     

    Schedule & Availability

    • Full-time position: 40 hours/week
    • EST time zone overlap required (must be available during core EST business hours)
    • Committed availability and responsiveness during working hours
    • Flexible working hours – get your work done, we don't micromanage
    • No meetings Friday policy (and if you finish your work by Thursday, take Friday afternoon off)
       

    Essential Qualities

    • Unrivaled Adobe AE, Premiere, Photoshop, and Illustrator skills
    • Deep understanding of direct response video editing principles
    • Fluent conversational English for phone calls, Zoom, and real-time discussions
    • Professional communication across phone, Zoom, Slack, email, and text
    • Proactive mindset – you propose changes, cuts, and adjustments to make pieces better
    • Flexible with revisions as the creative team constantly iterates
    • Passion for creating awe-inspiring designs and videos that convert
    • Think outside the box and generate new creative ideas from available assets
       

    Required Experience

    • 1-2 years in motion graphics, video editing, or similar (startup or marketing space preferred)
    • Experience working with marketing or product teams
    • Strong portfolio demonstrating direct response video editing principles
    • Visual design skills with understanding of layout, hierarchy, and typography
    • Good understanding of performance marketing creative


     

    Creative Execution

    • Edit and produce video content and GIFs for TikTok, Instagram, and Facebook ads
    • Transform raw video assets into scroll-stopping ad creative
    • Creative use of stock footage and off-the-shelf effects
    • Master motion graphics for social media advertising
       

    Strategic Creative Thinking

    • Understand what makes social media advertising creative convert
    • Proactively identify opportunities to improve creative performance
    • Generate fresh creative concepts based on available assets
    • Stay ahead of trends in TikTok, IG, and FB native content
       

    Collaboration

    • Work directly with DTC growth team on ongoing creative optimization
    • Iterate quickly based on performance data and team feedback
    • Support multiple client accounts with consistent quality
       

    You'll be the creative engine turning raw assets into conversion machines that make our clients' ads impossible to scroll past.

    CRITICAL: Communication is Everything
     

    Reliable communication is our #1 priority. We cannot tolerate contractors going silent. We need:

    • Prompt responses or acknowledgment of tasks
    • Multi-channel communication (text, calls, Zoom, Slack, email)
    • Fluent conversational English for real-time discussions
    • Proactive updates if a task will take longer
    • Clear expectations – better to know a task takes 3 days than disappear for a week
       

    What We DON'T Want

    • Need constant direction or hand-holding
    • Cannot troubleshoot independently
    • Require frequent check-ins
    • Poor communication or disappearing without notice
    • Uncomfortable with phone/video calls
       

    Ideal Candidate

    • Lives and breathes social media content trends
    • Obsessed with what makes people stop scrolling and take action
    • Independent, proactive, and solution-oriented
    • Takes ownership of creative quality and performance
    • Hungry to master performance creative at scale
    • Thrives on fast iterations and data-driven feedback
       

    Who We Are

    ColdBru is a next-gen DTC growth team that partners with brands to drastically improve their growth trajectory when other options don't move the bottom line. We provide ongoing creative optimization services that move the needle on our clients' bottom-line growth.

    We're a team of handpicked individuals hell-bent on profitable growth. We get up in the morning energized to crack the latest growth problems wide open just cause it sounds fun. We wouldn't settle for anything less and don't take 'No' for an answer. No task is too big or too small – if it's needed to achieve profitable growth, we find a way to do it or get it done.
     

    Our values: Fast, data-driven, customer-centric, and adaptable.

    We aren't on a hiring spree and will only onboard someone on the same wavelength. That being said, if you think you can outperform and don't have all the experience above, we're open to chatting – ownership and follow-through are what we really care about.
     

    What You Get
     

    Growth & Learning

    • Learn from a world-class team leading the space
    • In 6 months you'll learn more than other people learn in 3 years
    • Essentially unlimited self-improvement budget (online courses and educational experiences)
       

    Flexibility & Lifestyle

    • Flexible working hours
    • Work from anywhere in the world
    • No meetings Friday (finish by Thursday? Take Friday afternoon off)
       

    Perks & Benefits

    • Performance incentives
    • Coffee stipend – if you work at ColdBru, you don't pay for coffee. Period.
    • Wellness budget for physical and mental well-being (use it however you see fit)
    • Work-from-home stipend after 6 months
    • Team retreats
       

    Application Instructions

    Include in your proposal:

    • Portfolio link (REQUIRED) – show us direct response video work that demonstrates conversion-focused editing
    • Confirmation of EST time zone overlap availability and full-time (40 hrs/week) commitment
    • Commitment to communication expectations
    • Conversational English proficiency
    • Top 3 creative works you've produced that you believe are the best
    • Overview of your Adobe Creative Suite expertise (AE, Premiere, Photoshop, Illustrator)
    • Why this role appeals to you and how you align with our values
       

    We value creativity, speed, and reliability above all. If you understand what makes scroll-stopping content convert and want to master performance creative with the best, we'd love to see your work.

    More
  • Β· 34 views Β· 0 applications Β· 15d

    Data Engineer (API-Focused)

    Hybrid Remote Β· Cyprus, Latvia, Moldova, Romania, Ukraine (Kyiv) Β· Product Β· 3 years of experience Β· B2 - Upper Intermediate
    Location: Remote Employment Type: Full-time Level: Middle Openings: 1 About the Role We are seeking a Data Engineer (API-Focused) to ensure smooth ingestion and reliable operation of our data flows. You’ll design, develop, and optimize scalable data...

     Location: Remote
     Employment Type: Full-time
     Level: Middle
     Openings: 1

     

    About the Role

    We are seeking a Data Engineer (API-Focused) to ensure smooth ingestion and reliable operation of our data flows. You’ll design, develop, and optimize scalable data pipelines that pull from APIs and streaming sources, keeping our datasets clean and analytics-ready.

     

    Responsibilities

    • Develop and maintain data ingestion pipelines from external APIs and streaming sources.
    • Implement scalable ETL/ELT workflows using Airflow.
    • Automate data validation and error handling processes to ensure accuracy and reliability.
    • Collaborate with senior data engineers and architects to align with the overall data architecture.
    • Support BI and analytics teams by ensuring availability of clean, reliable datasets.

       

    Requirements

    • 3+ years of experience in data engineering.
    • Hands-on experience with API integrations (REST/GraphQL, authentication, pagination, rate limits).
    • Proficiency in Python, SQL, and data pipeline frameworks.
    • Solid experience with Airflow, Redshift, and S3.
    • Experience with Kafka and event-based data ingestion.
    • Familiarity with CI/CD for data workflows is a plus.
    • Intermediate English (written and spoken).

       

    What We Offer

    • 100% remote work environment.
    • Competitive compensation package.
    • Opportunities for professional growth and learning.
    • Collaborative and international team.

     

    More
  • Β· 47 views Β· 9 applications Β· 15d

    SEO and Link Building Specialist

    Full Remote Β· Countries of Europe or Ukraine Β· Product Β· 2 years of experience Β· B2 - Upper Intermediate
    Company: SDK.finance is FinTech software company in the B2B sector, providing solutions for launching banks and payment businesses worldwide. About the Role: We are looking for a proactive SEO & Link Building Specialist to optimize our website and...

    Company: SDK.finance is FinTech software company in the B2B sector, providing solutions for launching banks and payment businesses worldwide.
     

    About the Role:
    We are looking for a proactive SEO & Link Building Specialist to optimize our website and support our global growth. This is not a project-based role - we need someone who can fully immerse in our product, working closely with the team to deliver high-quality, long-term results. We’re looking for an experienced SEO professional to take full ownership of SDK.finance’s search strategy from technical SEO and content architecture to link building and authority growth. This is a long-term, hands-on role for someone ready to immerse fully in the product and its ecosystem.
    GEO: Worldwire
     

    Key Responsibilities:

    • Lead the full SEO lifecycle: research, planning, implementation, monitoring, and iteration.
       

    Tasks:

    • Conduct on-page SEO, including keyword research, content optimization, meta tags, headings, URL structure, internal linking, and technical SEO recommendations.
    • Develop and execute link-building strategies to increase domain authority and organic traffic.
    • Apply AI tools and techniques for SEO optimization and content improvement.
    • Optimize content specifically for AI search engines.
    • Analyze competitors' SEO strategies, identify best practices, and implement insights to improve our performance.
    • Monitor online mentions of the company without links and perform outreach to convert them into backlinks.
    • Crowd links.
    • Collaborate with content creators to ensure SEO best practices in all new content.
    • Analyze website performance and report on SEO KPIs, progress, and opportunities for improvement.
       

    Requirements

    • Minimum 2 years of hands-on experience in SEO and link building.
    • English β€” Upper-Intermediate (B2) or higher 
    • Self-driven and results-oriented, comfortable working independently.
    • Detail-focused and consistent in following through on long-term goals.
    • Prefers to own outcomes end-to-end, not just execute isolated tasks.
       

    Bonus Skills:

    • Experience in B2B software or FinTech industry.
    • Understanding of CDN optimisation (Cloudflare).
    More
Log In or Sign Up to see all posted jobs