mirror of
https://github.com/remoteintech/remote-jobs
synced 2024-12-26 12:23:09 +00:00
Merge branch 'main' into added-company
Signed-off-by: Doug Aitken <dougaitken@users.noreply.github.com>
This commit is contained in:
commit
7ab5f482b4
53 changed files with 1476 additions and 260 deletions
6
.github/CONTRIBUTING.md
vendored
6
.github/CONTRIBUTING.md
vendored
|
@ -17,11 +17,11 @@ Thanks for contributing!
|
|||
### For starting the Docker File
|
||||
|
||||
```
|
||||
>remote-jobs $ sudo docker build remote -t remote-jobs
|
||||
>remote-jobs $ sudo docker images ls
|
||||
>remote-jobs $ sudo docker build . -t remote-jobs
|
||||
>remote-jobs $ sudo docker image ls
|
||||
REPOSITORY TAG IMAGE ID CREATED SIZE
|
||||
remote-job latest 971f9317008d 14 minutes ago 204MB
|
||||
>remote-jobs $ sudo docker run -p 8080:8081 remote-job
|
||||
>remote-jobs $ sudo docker run -p 8080:8080 remote-jobs
|
||||
> start
|
||||
> bin/serve-site.js
|
||||
|
||||
|
|
8
.github/dependabot.yml
vendored
Normal file
8
.github/dependabot.yml
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: bundler
|
||||
directory: /
|
||||
schedule:
|
||||
interval: daily
|
||||
allow:
|
||||
- dependency-type: direct
|
82
.github/workflows/codeql.yml
vendored
82
.github/workflows/codeql.yml
vendored
|
@ -1,82 +0,0 @@
|
|||
# For most projects, this workflow file will not need changing; you simply need
|
||||
# to commit it to your repository.
|
||||
#
|
||||
# You may wish to alter this file to override the set of languages analyzed,
|
||||
# or to provide custom queries or build logic.
|
||||
#
|
||||
# ******** NOTE ********
|
||||
# We have attempted to detect the languages in your repository. Please check
|
||||
# the `language` matrix defined below to confirm you have the correct set of
|
||||
# supported CodeQL languages.
|
||||
#
|
||||
name: "CodeQL"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
pull_request:
|
||||
# The branches below must be a subset of the branches above
|
||||
branches: [ "main" ]
|
||||
schedule:
|
||||
- cron: '43 1 * * 0'
|
||||
|
||||
jobs:
|
||||
analyze:
|
||||
name: Analyze
|
||||
# Runner size impacts CodeQL analysis time. To learn more, please see:
|
||||
# - https://gh.io/recommended-hardware-resources-for-running-codeql
|
||||
# - https://gh.io/supported-runners-and-hardware-resources
|
||||
# - https://gh.io/using-larger-runners
|
||||
# Consider using larger runners for possible analysis time improvements.
|
||||
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
|
||||
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
|
||||
permissions:
|
||||
actions: read
|
||||
contents: read
|
||||
security-events: write
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
language: [ 'javascript' ]
|
||||
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby', 'swift' ]
|
||||
# Use only 'java' to analyze code written in Java, Kotlin or both
|
||||
# Use only 'javascript' to analyze code written in JavaScript, TypeScript or both
|
||||
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
|
||||
# Initializes the CodeQL tools for scanning.
|
||||
- name: Initialize CodeQL
|
||||
uses: github/codeql-action/init@v2
|
||||
with:
|
||||
languages: ${{ matrix.language }}
|
||||
# If you wish to specify custom queries, you can do so here or in a config file.
|
||||
# By default, queries listed here will override any specified in a config file.
|
||||
# Prefix the list here with "+" to use these queries and those in the config file.
|
||||
|
||||
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
|
||||
# queries: security-extended,security-and-quality
|
||||
|
||||
|
||||
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
|
||||
# If this step fails, then you should remove it and run the build manually (see below)
|
||||
- name: Autobuild
|
||||
uses: github/codeql-action/autobuild@v2
|
||||
|
||||
# ℹ️ Command-line programs to run using the OS shell.
|
||||
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
|
||||
|
||||
# If the Autobuild fails above, remove it and uncomment the following three lines.
|
||||
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
|
||||
|
||||
# - run: |
|
||||
# echo "Run, Build Application using script"
|
||||
# ./location_of_script_within_repo/buildscript.sh
|
||||
|
||||
- name: Perform CodeQL Analysis
|
||||
uses: github/codeql-action/analyze@v2
|
||||
with:
|
||||
category: "/language:${{matrix.language}}"
|
19
.gitignore
vendored
19
.gitignore
vendored
|
@ -1,5 +1,16 @@
|
|||
/node_modules/
|
||||
/site/build/
|
||||
|
||||
# Jetbrains IDEs
|
||||
.idea
|
||||
.idea
|
||||
|
||||
# Copied from https://github.com/github/gitignore/blob/main/Jekyll.gitignore
|
||||
# Ignore metadata generated by Jekyll
|
||||
_site/
|
||||
.sass-cache/
|
||||
.jekyll-cache/
|
||||
.jekyll-metadata
|
||||
|
||||
# Ignore folders generated by Bundler
|
||||
.bundle/
|
||||
vendor/
|
||||
|
||||
/node_modules/
|
||||
/site/build/
|
47
README.md
47
README.md
|
@ -15,11 +15,13 @@ Name | Website | Region
|
|||
[17hats](/company-profiles/17hats.md) | https://www.17hats.com/ | Worldwide
|
||||
[18F](/company-profiles/18f.md) | https://18f.gsa.gov/ | USA
|
||||
[1Password](/company-profiles/1password.md) | https://www.1password.com | North America, UK
|
||||
[37signals](/company-profiles/37signals.md) | https://37signals.com | Worldwide
|
||||
[3Blocks](/company-profiles/3blocks.md) | https://3blocks.io/ | Worldwide
|
||||
[42 Technologies](/company-profiles/42-technologies.md) | https://www.42technologies.com/ | Worldwide
|
||||
[90 Seconds](/company-profiles/90-seconds.md) | https://90seconds.com/ | Worldwide
|
||||
[abiturma](/company-profiles/abiturma.md) | https://www.abiturma.de/ | Germany
|
||||
[Ably](/company-profiles/ably.md) | https://www.ably.io/ | Europe
|
||||
[Abstract API](/company-profiles/abstract.md) | https://www.abstractapi.com | Worldwide
|
||||
[acct](/company-profiles/acct.md) | https://acct.global | Worldwide
|
||||
[Acivilate](/company-profiles/acivilate.md) | https://acivilate.com/ | USA
|
||||
[Acquia](/company-profiles/acquia.md) | https://www.acquia.com/ | Worldwide
|
||||
[ActiveCampaign](/company-profiles/activecampaign.md) | https://www.activecampaign.com/ | Dublin, Ireland; USA
|
||||
|
@ -32,7 +34,7 @@ Name | Website | Region
|
|||
[Aerolab](/company-profiles/aerolab.md) | https://aerolab.co/ | Latin America
|
||||
[Aerostrat](/company-profiles/aerostrat.md) | https://aerostratsoftware.com/ | USA
|
||||
[AgFlow](/company-profiles/agflow.md) | https://www.agflow.com | Europe
|
||||
[Aha!](/company-profiles/aha.md) | https://www.aha.io | Worldwide
|
||||
[Aha!](/company-profiles/aha.md) | https://www.aha.io | North America, South America, United Kingdom, Ireland, Australia, South Africa
|
||||
[Aim India](/company-profiles/aim-india.md) | https://www.aimincorp.com/ | India
|
||||
[Airbyte](/company-profiles/airbyte.md)| https://airbyte.com/ | Europe, North America, Latin America
|
||||
[AirGarage](/company-profiles/airgarage.md) | https://www.airgarage.com/ | USA
|
||||
|
@ -65,6 +67,7 @@ Name | Website | Region
|
|||
[Artefactual Systems](/company-profiles/artefactual.md) | https://www.artefactual.com | UTC-8 to UTC+2
|
||||
[Articulate](/company-profiles/articulate.md) | https://www.articulate.com | Worldwide
|
||||
[Astronomer](/company-profiles/astronomer.md) | https://www.astronomer.io/ | USA
|
||||
[Atento](/company-profiles/atento.md) | https://atento.gupy.io | Brazil, Mexico and EMEA
|
||||
[Atlassian](/company-profiles/atlassian.md) | https://www.atlassian.com/ | USA, Europe, Asia, Australia
|
||||
[Audiense](/company-profiles/audiense.md) | https://www.audiense.com/ | Worldwide
|
||||
[Aula Education](/company-profiles/aula.md) | https://aula.education/ | Worldwide
|
||||
|
@ -117,7 +120,9 @@ Name | Website | Region
|
|||
[CANCOM](/company-profiles/cancom.md) | https://www.cancom.com/ | Germany, Austria, Slovakia
|
||||
[Canonical](/company-profiles/canonical.md) | https://www.canonical.com/ | Worldwide
|
||||
[Capchase](/company-profiles/capchase.md) | https://www.capchase.com/ | Worldwide
|
||||
[Capgemini](/company-profiles/capgemini.md) | https://www.capgemini.com/us-en/ | Worldwide
|
||||
[Capital One](/company-profiles/capital-one.md) | https://www.capitalonecareers.com/tech | USA
|
||||
[Capmo](/company-profiles/capmo.md) | https://www.capmo.com/en | CET -4 / CET +4
|
||||
[Carbon Black](/company-profiles/carbon-black.md) | https://www.carbonblack.com/ | USA
|
||||
[Cards Against Humanity](/company-profiles/cards-against-humanity.md) | https://cardsagainsthumanity.com/ | USA
|
||||
[CareCru](/company-profiles/carecru.md) | https://carecru.com | Worldwide
|
||||
|
@ -144,6 +149,7 @@ Name | Website | Region
|
|||
[Clootrack](/company-profiles/clootrack.md) | https://www.clootrack.com/ | India
|
||||
[Close](/company-profiles/close.md) | https://close.com | Worldwide
|
||||
[CloudApp](/company-profiles/cloudapp.md) | https://getcloudapp.com | North America
|
||||
[CloudEra](/company-profiles/cloudera.md) | https://www.cloudera.com | Worldwide
|
||||
[Coalition Technologies](/company-profiles/coalition-technologies.md) | https://coalitiontechnologies.com/ | Worldwide
|
||||
[Code Like a Girl](/company-profiles/code-like-a-girl.md) | https://codelikeagirl.com | Australia
|
||||
[Codea IT](/company-profiles/codea-it.md) | https://www.codeait.com | Worldwide
|
||||
|
@ -153,12 +159,13 @@ Name | Website | Region
|
|||
[Codestunts](/company-profiles/codestunts.md) | https://codestunts.com/ | Worldwide
|
||||
[Cofense](/company-profiles/cofense.md) | https://cofense.com | USA
|
||||
[Coforma](/company-profiles/coforma.md) | https://coforma.io | USA
|
||||
[Cognizant](/company-profiles/cognizant.md) | https://www.cognizant.com/in/en | Worldwide
|
||||
[Coinbase](/company-profiles/coinbase.md) | https://www.coinbase.com | Worldwide
|
||||
[Coingape](/company-profiles/coingape.md) | https://coingape.com/ | India
|
||||
[Collabora](/company-profiles/collabora.md) | https://www.collabora.com/ | Worldwide
|
||||
[Comet](/company-profiles/comet.md) | https://www.comet.co/ | France
|
||||
[Compose](/company-profiles/compose.md) | https://www.compose.io/ | Worldwide
|
||||
[Compucorp](/company-profiles/compucorp.md) | https://www.compucorp.co.uk | Worldwide
|
||||
[Compucorp](/company-profiles/compucorp.md) | https://www.compuco.io | Worldwide
|
||||
[Connexa](/company-profiles/connexa.md) | https://www.connexa.com/ | Worldwide
|
||||
[ConsenSys](/company-profiles/consensys.md) | https://consensys.net/ | Worldwide
|
||||
[Consumer Financial Protection Bureau](/company-profiles/consumer-financial-protection-bureau.md) | https://www.consumerfinance.gov | USA
|
||||
|
@ -169,6 +176,7 @@ Name | Website | Region
|
|||
[Core-Apps](/company-profiles/core-apps.md) | https://www.core-apps.com/ | USA
|
||||
[CoreOS](/company-profiles/coreos.md) | https://coreos.com/ | USA
|
||||
[Corgibytes](/company-profiles/corgibytes.md) | https://corgibytes.com | USA East Coast
|
||||
[Cosmic Chimps](/company-profiles/cosmic-chimps.md) | https://www.cosmic-chimps.com/ | Spain, México
|
||||
[Coursera](/company-profiles/coursera.md) | https://www.coursera.org/ | USA, Canada
|
||||
[Crossover](/company-profiles/crossover.md) | https://www.crossover.com | Worldwide
|
||||
[Crowdstrike](/company-profiles/crowdstrike.md) | https://www.crowdstrike.com | Worldwide
|
||||
|
@ -191,6 +199,7 @@ Name | Website | Region
|
|||
[DataStax](/company-profiles/datastax.md) | https://www.datastax.com/ | Worldwide
|
||||
[Datica](/company-profiles/datica.md) | https://datica.com/ | USA
|
||||
[DealDash](/company-profiles/dealdash.md) | http://www.dealdash.com | Worldwide
|
||||
[Deel](/company-profiles/deel.md) | http://www.deel.com/ | Worldwide
|
||||
[Delighted](/company-profiles/delighted.md)| https://delighted.com | Worldwide
|
||||
[Designcode](/company-profiles/designcode.md) | https://designcode.io/ | Worldwide
|
||||
[Deskpass](/company-profiles/deskpass.md) | https://www.deskpass.com | Worldwide
|
||||
|
@ -198,14 +207,12 @@ Name | Website | Region
|
|||
[Devsquad](/company-profiles/devsquad.md) | https://devsquad.com | Worldwide
|
||||
[Dgraph](/company-profiles/dgraph.md) | https://dgraph.io/ | Americas
|
||||
[DigitalOcean](/company-profiles/digitalocean.md) | https://www.digitalocean.com/ | Worldwide
|
||||
[Digitise](/company-profiles/digitise.md) | https://jobs.gohire.io/digitise-xwcfqaab/ | Worldwide
|
||||
[Discord](/company-profiles/discord.md) | https://discord.com/ | USA
|
||||
[Discourse](/company-profiles/discourse.md) | https://www.discourse.org/ | Worldwide
|
||||
[DNSimple](/company-profiles/dnsimple.md) | https://dnsimple.com/ | Worldwide
|
||||
[Docker](/company-profiles/docker.md) | https://www.docker.com | USA
|
||||
[Doist](/company-profiles/doist.md) | https://doist.com | Worldwide
|
||||
[Doit](/company-profiles/doit.md) | https://doit.com | Worldwide
|
||||
[Donut App](/company-profiles/donut.md) | https://www.donut.app/ | USA, EU
|
||||
[DroneDeploy](/company-profiles/dronedeploy.md) | https://www.dronedeploy.com/ | Worldwide
|
||||
[Dropbox](/company-profiles/dropbox.md) | https://www.dropbox.com/ | Worldwide
|
||||
[Drupal Jedi](/company-profiles/drupal-jedi.md) | https://drupaljedi.com/ | Worldwide
|
||||
|
@ -214,6 +221,7 @@ Name | Website | Region
|
|||
[EarthOfDrones](/company-profiles/earthofdrones.md) | https://earthofdrones.com/ | Worldwide
|
||||
[EatStreet](/company-profiles/eatstreet.md) | https://eatstreet.com/ | USA
|
||||
[EBSCO Information Services](/company-profiles/ebsco-information-services.md) | https://www.ebsco.com | USA
|
||||
[Ebury](/company-profiles/ebury.md) | https://ebury.com/ | Worldwide
|
||||
[Eco-Mind](/company-profiles/eco-mind.md) | https://eco-mind.eu/ | Italy
|
||||
[Edgar](/company-profiles/edgar.md) | https://meetedgar.com/ | USA, Canada
|
||||
[Edgio](/company-profiles/edgio.md) | https://edg.io/ | Worldwide
|
||||
|
@ -241,7 +249,9 @@ Name | Website | Region
|
|||
[EVELO](/company-profiles/evelo.md) | https://evelo.com | USA
|
||||
[Evil Martians](/company-profiles/evil-martians.md) | https://evilmartians.com/ | Worldwide
|
||||
[Evrone](/company-profiles/evrone.md) | https://evrone.com/ | Worldwide
|
||||
[Exoscale](/company-profiles/exoscale.md) | https://www.exoscale.com | Europe
|
||||
[ExportData](/company-profiles/exportdata.md) | https://www.exportdata.io/ | Worldwide
|
||||
[Extreme Networks](/company-profiles/extreme-networks.md) | https://www.extremenetworks.com/ | Worldwide
|
||||
[Eyeo (Adblock Plus)](/company-profiles/eyeo.md) | https://eyeo.com/ | Worldwide
|
||||
[FactorialHR](/company-profiles/factorialhr.md) | https://www.factorialhr.com | Worldwide
|
||||
[Fairwinds](/company-profiles/fairwinds.md) | https://www.fairwinds.com | North America
|
||||
|
@ -249,7 +259,7 @@ Name | Website | Region
|
|||
[Fastly](/company-profiles/fastly.md) | https://www.fastly.com/ | Worldwide
|
||||
[FATMAP](/company-profiles/fatmap.md) | https://about.fatmap.com/careers | Europe
|
||||
[Fauna](/company-profiles/fauna.md) | https://www.fauna.com/ | Worldwide
|
||||
[Featurist](/company-profiles/featurist.md) | https://www.featurist.co.uk/ | Worldwide
|
||||
[FDTE](/company-profiles/fdte.md) | https://fdte.org.br/ | Brazil
|
||||
[Fetlife](/company-profiles/fetlife.md) | https://fetlife.com/ | Worldwide
|
||||
[FFW Agency](/company-profiles/ffw-agency.md) | https://ffwagency.com/ | Worldwide
|
||||
[Filament Group](/company-profiles/filament-group.md) | https://www.filamentgroup.com/ | USA
|
||||
|
@ -257,8 +267,10 @@ Name | Website | Region
|
|||
[FingerprintJS](/company-profiles/fingerprintjs.md) | https://fingerprintjs.com | Worldwide
|
||||
[Fire Engine Red](/company-profiles/fire-engine-red.md) | https://fire-engine-red.com/ | Worldwide
|
||||
[Fireball Labs](/company-profiles/fireball-labs.md) | https://www.fireballlabs.com | Germany
|
||||
[FIS GLOBAL](/company-profiles/fis-global.md) | https://www.fisglobal.com/ | USA, UK, Asia
|
||||
[Fiverr](/company-profiles/fiverr.md) | https://www.fiverr.com/ | North America, Asia
|
||||
[FivexL](/company-profiles/fivexl.md) | https://fivexl.io | Worldwide
|
||||
[Fleetio](/company-profiles/fleetio.md) | https://www.fleetio.com/ | WorldWide
|
||||
[Flexera](/company-profiles/flexera.md) | https://www.flexera.com/ | USA
|
||||
[FlightAware](/company-profiles/flightaware.md) | https://flightaware.com | USA
|
||||
[Flip](/company-profiles/flip.md) | https://flip.id | Indonesia
|
||||
|
@ -303,6 +315,7 @@ Name | Website | Region
|
|||
[Grafana Labs](/company-profiles/grafana.md) | https://grafana.com/ | USA and EMEA/EST Timezones
|
||||
[Granicus](/company-profiles/granicus.md) | https://granicus.com/ | USA, UK, Australia, India
|
||||
[Graylog](/company-profiles/graylog.md) | https://www.graylog.org/ | Worldwide
|
||||
[GreenStitch.io](/company-profiles/greenstitch-io.md) | https://greenstitch.io | India
|
||||
[Gremlin](/company-profiles/gremlin.md) | https://gremlin.com | USA
|
||||
[Gridium](/company-profiles/gridium.md) | https://gridium.com | USA
|
||||
[Groove](/company-profiles/groove.md) | https://www.groovehq.com | Worldwide
|
||||
|
@ -332,6 +345,7 @@ Name | Website | Region
|
|||
[Honeycomb](/company-profiles/honeycomb.md) | https://honeycomb.tv/ | Worldwide
|
||||
[Hopper](/company-profiles/hopper.md) | https://www.hopper.com/ | USA, CA, UK, BG, PH, CO
|
||||
[Hotjar](/company-profiles/hotjar.md) | https://careers.hotjar.com/ | Worldwide
|
||||
[Hubspot](/company-profiles/hubspot.md) | https://www.hubspot.com/ | Worldwide
|
||||
[Hudl](/company-profiles/hudl.md) | https://www.hudl.com/ | USA, UK
|
||||
[Hugo](/company-profiles/hugo.md) | https://hugo.events | Worldwide
|
||||
[Human Made](/company-profiles/human-made.md) | https://hmn.md | Worldwide
|
||||
|
@ -358,12 +372,14 @@ Name | Website | Region
|
|||
[Instructure](/company-profiles/instructure.md) | https://www.instructure.com/ | Europe, North America, Oceania
|
||||
[Intellum](/company-profiles/intellum.md) | https://www.intellum.com | USA
|
||||
[Intent](/company-profiles/intent.md) | https://withintent.com | Europe, Africa
|
||||
[Inter.link](/company-profiles/inter-link.md) | https://inter.link/ | Worldwide
|
||||
[Interactive Intelligence](/company-profiles/interactive-intelligence.md) | https://www.inin.com/ | Worldwide
|
||||
[Intercom](/company-profiles/intercom.md) | https://www.intercom.io/ | Worldwide
|
||||
[Interpersonal Frequency (I.F.)](/company-profiles/interpersonal-frequency-i-f.md) | https://ifsight.com/ | Worldwide
|
||||
[Intevity](/company-profiles/intevity.md) | https://www.intevity.com/ | USA
|
||||
[Intuit Inc.](/company-profiles/intuit.md) | https://www.intuit.com/ | Worldwide
|
||||
[Intuition Machines, Inc](/company-profiles/intuition-machines-inc.md) | https://www.imachines.com/ | Worldwide
|
||||
[Invesco](/company-profiles/invesco.md) | https://www.invesco.com/corporate | Worldwide
|
||||
[InVision](/company-profiles/invision.md) | https://www.invisionapp.com/ | Worldwide
|
||||
[IOHK](/company-profiles/iohk.md) | https://iohk.io/ | Worldwide
|
||||
[IOpipe](/company-profiles/iopipe.md) | https://www.iopipe.com | USA
|
||||
|
@ -381,10 +397,12 @@ Name | Website | Region
|
|||
[Jitera](/company-profiles/jitera.md) | https://iruuza-inc.com/ | Worldwide
|
||||
[Jobsity](/company-profiles/jobsity.md) | https://recruitment.jobsity.com/ | USA, LATAM
|
||||
[Jolly Good Code](/company-profiles/jolly-good-code.md) | https://www.jollygoodcode.com | Worldwide
|
||||
[JOOR](/company-profiles/joor.md) | https://www.joor.com | Europe
|
||||
[journy.io](/company-profiles/journy-io.md) | https://www.journy.io | Europe
|
||||
[Joyent](/company-profiles/joyent.md) | https://www.joyent.com/careers/ | USA, UK, Canada, SK, SG
|
||||
[JupiterOne](/company-profiles/jupiterone.md) | https://www.jupiterone.com/careers/ | USA
|
||||
[Kaggle](/company-profiles/kaggle.md) | https://kaggle.com/ | Worldwide
|
||||
[Karat](/company-profiles/karat.md) | https://karat.com/ | Worldwide
|
||||
[Kaufland e-commerce](/company-profiles/kaufland-e-commerce.md) | https://kaufland-ecommerce.com/ | Europe UTC-1 to UTC+2
|
||||
[kea](/company-profiles/kea.md) | https://kea.ai | North and Latin America
|
||||
[Keen IO](/company-profiles/keen-io.md) | https://keen.io/ |
|
||||
|
@ -407,6 +425,7 @@ Name | Website | Region
|
|||
[Lambda School](/company-profiles/lambda-school.md) | https://www.lambdaschool.com/ | USA, Europe
|
||||
[Lambert Labs](/company-profiles/lambert-labs.md) | https://lambertlabs.com/ | UK
|
||||
[LaterPay](/company-profiles/laterpay.md) | https://www.laterpay.net/ | Worldwide
|
||||
[Launch Potato](/company-profiles/launch-potato.md) | https://launchpotato.com/| Worldwide
|
||||
[Leadership Success](/company-profiles/leadership-success.md) | https://www.leadershipsuccess.co/ | Worldwide
|
||||
[Leadfeeder](/company-profiles/leadfeeder.md) | https://www.leadfeeder.com | Europe, North America
|
||||
[LeadIQ](/company-profiles/leadiq.md) | https://leadiq.com/ | Worldwide
|
||||
|
@ -426,6 +445,7 @@ Name | Website | Region
|
|||
[Loadsys Web Strategies](/company-profiles/loadsys.md) | https://www.loadsys.com | USA
|
||||
[Localistico](/company-profiles/localistico.md) | [https://localistico.com](https://localistico.com/team/#hiring) | Worldwide
|
||||
[LogDNA](/company-profiles/logdna.md) | [https://logdna.com](https://logdna.com/culture-and-career/) | Worldwide
|
||||
[LogRocket](/company-profiles/logrocket.md) | [https://logrocket.com/](https://logrocket.com/) | USA
|
||||
[Lullabot](/company-profiles/lullabot.md) | https://www.lullabot.com/ | Worldwide
|
||||
[Luxoft](/company-profiles/luxoft.md) | https://www.luxoft.com/ | Worldwide
|
||||
[Lyseon Tech](/company-profiles/lyseon-tech.md) | https://lt.coop.br/ | Brazil
|
||||
|
@ -450,6 +470,7 @@ Name | Website | Region
|
|||
[Mercari](/company-profiles/mercari.md) | https://about.mercari.com/en/ | Japan
|
||||
[Merico](/company-profiles/merico.md) | https://merico.dev/ | Worldwide
|
||||
[MeridianLink](/company-profiles/meridianlink.md) | https://meridianlink.com/ | USA
|
||||
[MessageBird](/company-profiles/messagebird.md) | https://messagebird.com/ | Worldwide
|
||||
[MetaLab](/company-profiles/metalab.md) | https://metalab.co | Worldwide
|
||||
[MetaMask](/company-profiles/metamask.md) | https://metamask.io | Worldwide
|
||||
[MeteorOps](/company-profiles/meteorops.md) | https://meteorops.com | Worldwide
|
||||
|
@ -472,6 +493,7 @@ Name | Website | Region
|
|||
[Mycelium](/company-profiles/mycelium.md) | https://mycelium.ventures/ | North America, Europe, Oceania
|
||||
[MySQL](/company-profiles/mysql.md) | https://www.mysql.com/ | Worldwide
|
||||
[Nagarro](/company-profiles/nagarro.md) | https://www.nagarro.com/en | Worldwide
|
||||
[Namecheap](/company-profiles/namecheap.md) | https://www.namecheap.com | Worldwide
|
||||
[Nationwide](/company-profiles/nationwide.md) | https://www.nationwide.com/ | USA
|
||||
[Nerdwallet](/company-profiles/nerdwallet.md) | https://www.nerdwallet.com | USA, England
|
||||
[NetApp](/company-profiles/netapp.md) | https://www.netapp.com/ | Worldwide
|
||||
|
@ -487,6 +509,7 @@ Name | Website | Region
|
|||
[Novoda](/company-profiles/novoda.md) | https://www.novoda.com/ | UK, Europe
|
||||
[npm](/company-profiles/npm.md) | https://www.npmjs.com/ | USA
|
||||
[Nuage](/company-profiles/nuage.md) | https://nuagebiz.tech/ | India
|
||||
[Nuharbor Security](/company-profiles/nuharbor-security.md) | https://nuharborsecurity.com/ | USA
|
||||
[Nuna](/company-profiles/nuna.md) | https://www.nuna.com/ | USA
|
||||
[Nvidia](/company-profiles/nvidia.md) | https://www.nvidia.com/ | Worldwide
|
||||
[O'Reilly Media](/company-profiles/oreilly-media.md) | https://www.oreilly.com/ | USA, UK, JPN, CHN
|
||||
|
@ -560,6 +583,7 @@ Name | Website | Region
|
|||
[Progress Engine](/company-profiles/progress-engine.md) | https://www.progress-engine.com/en | Worldwide
|
||||
[Prominent Edge](/company-profiles/prominent-edge.md) | https://prominentedge.com/careers | Worldwide
|
||||
[Puppet](/company-profiles/puppet.md) | https://puppet.com/ | Worldwide
|
||||
[Qatium](/company-profiles/qatium.md) | https://qatium.com/ | Spain
|
||||
[Quaderno](/company-profiles/quaderno.md) | https://quaderno.io/ | Europe
|
||||
[Quantify](/company-profiles/quantify.md) | https://quantifyhq.com | Worldwide
|
||||
[QuestDB](/company-profiles/questdb.md) | https://questdb.io | Worldwide
|
||||
|
@ -585,11 +609,14 @@ Name | Website | Region
|
|||
[reinteractive](/company-profiles/reinteractive.md) | https://reinteractive.com/careers | Worldwide
|
||||
[Remote Garage](/company-profiles/remote-garage.md) | http://www.remotegarage.club/ | India
|
||||
[RemoteBase](/company-profiles/remotebase.md) | https://remotebase.com | Worldwide
|
||||
[RemoteMore](/company-profiles/remotemore.md) | https://remotemore.com | WorldWide
|
||||
[Renaissance](/company-profiles/renaissance.md) | https://www.renaissance.com/ | United States
|
||||
[RenoFi](/company-profiles/renofi.md) | https://renofi.com/ | Worldwide
|
||||
[Replit](/company-profiles/replit.md) | https://replit.com | Worldwide
|
||||
[Research Square](/company-profiles/research-square.md) | https://www.researchsquare.com/ | USA
|
||||
[Revolgy](/company-profiles/revolgy.md) | https://www.revolgy.com/ | Europe, the Middle East, Africa
|
||||
[Revolut](/company-profiles/revolut.md) | https://www.revolut.com/ | Worldwide
|
||||
[Roadpass Digital](/company-profiles/roadpass-digital.md) | https://roadpass.com | USA
|
||||
[Roadtrippers](/company-profiles/roadtrippers.md) | https://www.roadtrippers.com | USA
|
||||
[Rocket.Chat](/company-profiles/rocket-chat.md) | https://rocket.chat | Worldwide
|
||||
[rtCamp](/company-profiles/rtcamp-solutions.md) | https://rtcamp.com | Worldwide
|
||||
|
@ -604,6 +631,7 @@ Name | Website | Region
|
|||
[Scrapinghub](/company-profiles/scrapinghub.md) | https://scrapinghub.com/ | Worldwide
|
||||
[ScyllaDB](/company-profiles/scylladb.md) | https://scylladb.com/ | Worldwide
|
||||
[Seaplane](/company-profiles/seaplane.md) | https://www.seaplane.io/ | Worldwide
|
||||
[SeatGeek](/company-profiles/seatgeek.md) | https://seatgeek.com/ | UK, USA, Israel, Denmark, Germany
|
||||
[SecurityScorecard](/company-profiles/securityscorecard.md) | https://securityscorecard.com/ | UTC -3 to -5
|
||||
[Seeq](/company-profiles/seeq.md) | https://www.seeq.com | USA, Worldwide
|
||||
[Semaphore](/company-profiles/semaphore.md) | https://semaphoreci.com | Europe
|
||||
|
@ -613,6 +641,7 @@ Name | Website | Region
|
|||
[ServMask](/company-profiles/servmask.md) | https://servmask.com | Worldwide
|
||||
[Session](/company-profiles/session.md) | https://getsession.com | Worldwide
|
||||
[Shareup](/company-profiles/shareup.md) | https://shareup.app | Europe
|
||||
[Shattered Silicon](/company-profiles/shattered-silicon.md) | https://shatteredsilicon.net/ | Worldwide
|
||||
[Shippabo](/company-profiles/shippabo.md) | https://shippabo.com | North America
|
||||
[Shogun](/company-profiles/shogun.md) | https://getshogun.com | Worldwide
|
||||
[Shopify](/company-profiles/shopify.md) | https://www.shopify.com | Worldwide
|
||||
|
@ -632,6 +661,7 @@ Name | Website | Region
|
|||
[Socket Supply Co.](/company-profiles/socket-supply-co.md) | https://socketsupply.co | Worldwide
|
||||
[SoftwareMill](/company-profiles/softwaremill.md) | https://softwaremill.com/ | Europe
|
||||
[Sommo](/company-profiles/sommo.md) | https://www.sommo.io/ | Worldwide
|
||||
[Sonatype](/company-profiles/sonatype.md) | https://www.sonatype.com | Worldwide
|
||||
[Soostone](/company-profiles/soostone.md) | https://www.soostone.com/ | USA
|
||||
[Soshace](/company-profiles/soshace.md) | https://www.soshace.com/ | Worldwide
|
||||
[Spoqa](/company-profiles/spoqa.md) | https://spoqa.co.kr/ | Republic of Korea, Japan
|
||||
|
@ -657,6 +687,7 @@ Name | Website | Region
|
|||
[Sutherland CloudSource](/company-profiles/sutherland-cloudsource.md) | https://www.sutherlandcloudsource.com | Worldwide
|
||||
[Svix](/company-profiles/svix.md) | https://www.svix.com/ | USA, Europe
|
||||
[SweetRush](/company-profiles/sweetrush.md) | https://www.sweetrush.com | Worldwide
|
||||
[Swiggy](/company-profiles/swiggy.md) | https://www.swiggy.com | India
|
||||
[Swimlane](/company-profiles/swimlane.md) | https://www.swimlane.com | USA
|
||||
[Sysdig](/company-profiles/sysdig.md)️ | https://sysdig.com/ | USA
|
||||
[Tag1 Consulting](/company-profiles/tag1-consulting.md) | https://tag1consulting.com/ | Worldwide
|
||||
|
@ -693,6 +724,7 @@ Name | Website | Region
|
|||
[Toptal](/company-profiles/toptal.md) | https://www.toptal.com/ | Worldwide
|
||||
[Tower](/company-profiles/tower.md) | https://www.git-tower.com/ | Worldwide
|
||||
[Tractionboard](/company-profiles/tractionboard.md) ️ | https://tractionboard.io/ | USA
|
||||
[Transfeera](/company-profiles/transfeera.md) | https://transfeera.com/ | Brazil
|
||||
[Transition Technologies - Advanced Solutions](/company-profiles/transition-technologies-advanced-solutions.md) | http://www.tt.com.pl/ | Poland
|
||||
[Transloadit](/company-profiles/transloadit.md) | https://transloadit.com/ | Worldwide
|
||||
[Travis](/company-profiles/travis.md) | https://travistravis.co | Worldwide
|
||||
|
@ -738,6 +770,8 @@ Name | Website | Region
|
|||
[WikiHow](/company-profiles/wikihow.md) | https://www.wikihow.com/wikiHow:About-wikiHow | PST Timezone
|
||||
[Wikimedia Foundation](/company-profiles/wikimedia-foundation.md) | https://wikimediafoundation.org | Worldwide
|
||||
[Wildbit](/company-profiles/wildbit.md) | https://wildbit.com/ | Worldwide
|
||||
[Willings,Inc](/company-profiles/willings-inc.md) | https://willings.co.jp/en/ | Japan
|
||||
[Wingify](/company-profiles/wingify.md) | https://wingify.com/ | India
|
||||
[Wipro](/company-profiles/wipro.md) | https://www.wipro.com/ | India
|
||||
[Wizeline](/company-profiles/wizeline.md) | https://www.wizeline.com/ | Worldwide
|
||||
[Wolfram](/company-profiles/wolfram.md) | https://www.wolfram.com | Worldwide
|
||||
|
@ -748,6 +782,7 @@ Name | Website | Region
|
|||
[Xapo](/company-profiles/xapo.md) | https://xapo.com/ | Worldwide
|
||||
[XP Inc](/company-profiles/xp-inc.md) | https://www.xpi.com.br/ | Brazil
|
||||
[XWP](/company-profiles/xwp.md) | https://xwp.co/ | Worldwide
|
||||
[Yahoo!](/company-profiles/yahoo.md) | https://www.yahooinc.com/ | Worldwide
|
||||
[Yandex](/company-profiles/yandex.md) | https://yandex.com/ | Worldwide
|
||||
[YAZIO](/company-profiles/yazio.md) | https://www.yazio.com/en/jobs | Europe
|
||||
[Yodo1](/company-profiles/yodo1.md) | https://www.yodo1.com/en/ | Worldwide
|
||||
|
|
|
@ -1,40 +0,0 @@
|
|||
---
|
||||
layout: none
|
||||
---
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta name="charset" value="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Remote Jobs</title>
|
||||
<style type="text/css">
|
||||
html {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 100%;
|
||||
font-family: Arial, sans-serif;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: -8%;
|
||||
text-align: center;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p>
|
||||
This site is <strong>deprecated</strong>.
|
||||
<br />
|
||||
Go here instead:
|
||||
<a href="https://remoteintech.company/">remoteintech.company</a>
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
28
company-profiles/37signals.md
Normal file
28
company-profiles/37signals.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
# 37signals
|
||||
|
||||
## Company blurb
|
||||
|
||||
We’re a fully-remote company with no physical headquarters. We’re collectively spread out across dozens of cities on multiple continents. Everyone is free to live and work wherever they choose.We run the gamut in geography, lifestyle, and interest, but we’re all here to do exceptional work, build wonderfully novel, straightforward products, experiment, pay attention to the details, treat people right, tell the truth, teach, give back, and keep learning.
|
||||
|
||||
## Company size
|
||||
|
||||
more than 200
|
||||
|
||||
## Remote status
|
||||
|
||||
Full remote company.
|
||||
## Region
|
||||
|
||||
Worldwide
|
||||
|
||||
## Company technologies
|
||||
|
||||
Ruby, Web
|
||||
|
||||
## Office locations
|
||||
|
||||
No physical Headquaters
|
||||
|
||||
## How to apply
|
||||
|
||||
https://37signals.com
|
29
company-profiles/3blocks.md
Normal file
29
company-profiles/3blocks.md
Normal file
|
@ -0,0 +1,29 @@
|
|||
# 3Blocks
|
||||
|
||||
## Company blurb
|
||||
|
||||
3Blocks is a tokenized fractional real estate ownership platform. We bring lucrative American real estate on the blockchain and enable people around the world to invest in American real estate from the comfort of their living rooms.
|
||||
|
||||
## Company size
|
||||
|
||||
5-10 employees.
|
||||
|
||||
## Remote status
|
||||
|
||||
As a remote-friendly company, we prioritize flexibility, enabling our employees to achieve work-life balance while delivering exceptional results from the comfort of their preferred locations.
|
||||
|
||||
## Region
|
||||
|
||||
Worldwide
|
||||
|
||||
## Company technologies
|
||||
|
||||
Coupled with an advanced tech stack encompassing ReactJS, NestJS, Node.js, AWS, and Blockchain, our company leverages cutting-edge technologies to deliver innovative and scalable solutions, ensuring unparalleled value to our clients and users.
|
||||
|
||||
## Office locations
|
||||
|
||||
4910 E Adamo Dr, Unit B, Tampa, FL - 33605, United States.
|
||||
|
||||
## How to apply
|
||||
|
||||
Our open positions are listed on our [Linkedin](https://www.linkedin.com/company/3blocks-io/jobs/) page.
|
36
company-profiles/90-seconds.md
Normal file
36
company-profiles/90-seconds.md
Normal file
|
@ -0,0 +1,36 @@
|
|||
# 90 Seconds
|
||||
|
||||
## Company blurb
|
||||
|
||||
90 Seconds is the global video creation platform, enabling the world’s biggest Brands to create high-quality and authentic videos anywhere in the world.
|
||||
|
||||
90 Seconds revolutionises the way video production is managed by simplifying the complexity of video production. Our unique technology, including an end-to-end suite of collaboration tools, helps Brands connect and track offline video shoots back to an automated online workflow.
|
||||
|
||||
## Company size
|
||||
|
||||
~150 currently (10/11/2023)
|
||||
|
||||
## Remote status
|
||||
|
||||
Many positions are remote friendly. There are a portion of positions that are in-office, but the status of each position is displayed with the job description.
|
||||
|
||||
## Region
|
||||
|
||||
Worldwide
|
||||
|
||||
## Company technologies
|
||||
|
||||
- React.js
|
||||
- Typescript
|
||||
- Java
|
||||
- C++
|
||||
- PHP
|
||||
|
||||
## Office locations
|
||||
|
||||
Singapore, London, Sydney, San Francisco, Hong Kong & Auckland.
|
||||
|
||||
## How to apply
|
||||
|
||||
View open positions here:
|
||||
https://90seconds.com/about/careers/
|
|
@ -1,26 +0,0 @@
|
|||
# acct
|
||||
|
||||
## Company blurb
|
||||
|
||||
We are ACCT (ACupula Consulting & Technology), a software consultancy that creates and transforms technologies into value for high performance businesses. Today we operate in 15 countries creating technologies for the largest e-businesses in the country and the world.
|
||||
|
||||
## Company size
|
||||
|
||||
51-200 employees
|
||||
|
||||
## Remote status
|
||||
|
||||
The team is remote and in person, located in Brazil and 15 other countries.
|
||||
creating technologies for the largest e-commerces in the country and the world.
|
||||
|
||||
## Region
|
||||
|
||||
Brazil, são paulo
|
||||
|
||||
## Company technologies
|
||||
|
||||
E-commerce Business Implementation, Digital Marketing Planning, E-commerce CRO, Data Driven UX, Web Performance Optimization, SEO, Front-end and Back-end Development for E-commerce Business, Systems Integrations, E-commerce Support, Digital Transformation, Product Development and Web Design
|
||||
|
||||
## How to apply
|
||||
|
||||
https://jobs.kenoby.com/acct.
|
|
@ -17,7 +17,7 @@ Staff are remote.
|
|||
|
||||
## Region
|
||||
|
||||
Worldwide
|
||||
North America, South America, United Kingdom, Ireland, Australia, South Africa
|
||||
|
||||
## Company technologies
|
||||
|
||||
|
|
36
company-profiles/atento.md
Normal file
36
company-profiles/atento.md
Normal file
|
@ -0,0 +1,36 @@
|
|||
# Atento
|
||||
|
||||
## Company blurb
|
||||
Atento is one of the top 5 customer relationship management (CRM) and business process outsourcing providers (BPO) in the world and leader in Latin America.
|
||||
|
||||
|
||||
|
||||
## Company size
|
||||
92,663 employees on LinkedIn
|
||||
|
||||
|
||||
|
||||
## Remote status
|
||||
You will be working from home on an Atento PC, so there is an expectation that you are organized and self driven.
|
||||
|
||||
|
||||
|
||||
## Region
|
||||
Brazil, Mexico and EMEA
|
||||
|
||||
|
||||
|
||||
## Company technologies
|
||||
Our unique expertise lies in combining data technology and digital tools with decades of experience in customer experience. This allows us to provide valuable insights for every step of the end/customer's journey, resulting in more valuable experiences for consumers and companies.
|
||||
|
||||
|
||||
## Office locations
|
||||
- Miramar, FL, United States
|
||||
- San Antonio, TX, United States
|
||||
- Pleasant Grove, UT, United States
|
||||
- Buenos Aires, Buenos Aires Province, Argentina
|
||||
|
||||
|
||||
|
||||
## How to apply
|
||||
[Click Here to apply](https://atento.gupy.io/)
|
39
company-profiles/capgemini.md
Normal file
39
company-profiles/capgemini.md
Normal file
|
@ -0,0 +1,39 @@
|
|||
# Capgemini
|
||||
|
||||
## Company blurb
|
||||
|
||||
[Capgemini](https://www.capgemini.com/us-en/) is a global leader in consulting, technology services and digital transformation. We are at the forefront of innovation to address the entire breadth of our clients' opportunities in the evolving world of cloud, digital and platforms. Building on our strong 50-year heritage and deep industry-specific expertise, we enable organizations to realize their business ambitions through an array of services from strategy to operations.
|
||||
|
||||
## Company size
|
||||
|
||||
270,000+ employees worldwide
|
||||
|
||||
## Remote status
|
||||
|
||||
Capgemini offers a variety of remote jobs in different fields, such as software development, customer service, data science, and consulting. We have a strong remote culture and support our remote employees with the tools and resources they need to be successful.
|
||||
|
||||
## Region
|
||||
|
||||
**Worldwide**
|
||||
|
||||
See the [Locations Capgemini operates in](https://unstats.un.org/unsd/methodology/m49/) for a list of accepted countries.
|
||||
|
||||
Some of them are:
|
||||
|
||||
* France
|
||||
* India
|
||||
* United States
|
||||
* United Kingdom
|
||||
* Germany
|
||||
|
||||
## Company technologies
|
||||
|
||||
Capgemini uses a variety of technologies, including cloud computing, big data, artificial intelligence, and machine learning.
|
||||
|
||||
## Office locations
|
||||
|
||||
Capgemini has physical offices in over 50 countries around the world.
|
||||
|
||||
## How to apply
|
||||
|
||||
To apply for a remote job at Capgemini, please visit our careers website: [https://www.capgemini.com/careers/](https://www.capgemini.com/careers/)
|
55
company-profiles/capmo.md
Normal file
55
company-profiles/capmo.md
Normal file
|
@ -0,0 +1,55 @@
|
|||
# Capmo
|
||||
|
||||
## Company blurb
|
||||
|
||||
Capmo was established in early 2018, aiming to transform the construction
|
||||
industry. Since its inception, we've achieved significant milestones. Some
|
||||
noteworthy achievements include: expanding from a team of four to over 90
|
||||
members, successfully completing three funding rounds, relocating to our
|
||||
state-of-the-art terrace office in the heart of Munich, and granting all our
|
||||
employees co-ownership through employee shares.
|
||||
|
||||
## Company size
|
||||
|
||||
Currently, we boast a team of about 100, with numbers on the rise. Nearly half
|
||||
of our workforce is dedicated to engineering, complemented by teams in product,
|
||||
design, sales, finance, operations, and other vital roles.
|
||||
|
||||
## Remote status
|
||||
|
||||
Capmo embraced remote work culture from its early days. Particularly in
|
||||
engineering, many of our team members are dispersed mainly across Europe and
|
||||
other global regions. While certain roles necessitate office presence, we uphold
|
||||
a flexible approach to remote work. We firmly believe in empowering individuals
|
||||
to work from locations where they're most productive.
|
||||
|
||||
## Region
|
||||
|
||||
Currently, we have offices in Munich and Berlin, Germany. Yet, we're receptive
|
||||
to hiring remote talents globally, provided they're within three to four time
|
||||
zones of Central European Time (CET). This encompasses all of Europe, the
|
||||
Middle East/West Asia, and Africa.
|
||||
|
||||
## Company technologies
|
||||
|
||||
We're big fans of TypeScript, employing it across servers, clients, and even
|
||||
infrastructure. Our tech stack also includes React, React Native, GraphQL,
|
||||
and PostgreSQL. All hosted on AWS, managed using CDK.
|
||||
|
||||
Transitioning from our React Native app, we're venturing into native
|
||||
development. Hence, we're on the lookout for skilled iOS and Android developers.
|
||||
|
||||
## Office locations
|
||||
|
||||
Our Munich location is a short distance from the city's core. In Berlin, our
|
||||
office nestles within a vibrant co-working space downtown. Additionally, our
|
||||
remote team members work from home or other chosen locales.
|
||||
|
||||
## How to apply
|
||||
|
||||
Visit our [careers page] for current opportunities. If nothing aligns with your
|
||||
profile, don't hesitate to connect with us regardless.
|
||||
|
||||
<!-- References -->
|
||||
|
||||
[careers page]: https://capmo.jobs.personio.de
|
25
company-profiles/cloudera.md
Normal file
25
company-profiles/cloudera.md
Normal file
|
@ -0,0 +1,25 @@
|
|||
# CloudEra
|
||||
|
||||
## Company blurb
|
||||
Explore opportunities at Cloudera
|
||||
We’re on a mission to make data and analytics easy and accessible to everyone. The work we do empowers any organization – from the world's largest enterprises to small nonprofits – to use data to solve some of the most complex challenges that impact businesses, communities and lives.
|
||||
|
||||
## Company size
|
||||
3000
|
||||
|
||||
## Remote status
|
||||
Global locations
|
||||
Cloudera has corporate offices in 8 U.S. states and 19 countries around the world.
|
||||
Remote positionas are available on job portal.
|
||||
|
||||
## Region
|
||||
Worldwide.
|
||||
|
||||
## Company technologies
|
||||
Datalakes, data mesh, data platforms, enterprise AI
|
||||
|
||||
## Office locations
|
||||
Worldwide
|
||||
|
||||
## How to apply
|
||||
Check our jobs page: https://cloudera.wd5.myworkdayjobs.com/External_Career?remoteType=648856a73acb1001a30bbdb5cbb70002
|
30
company-profiles/cognizant.md
Normal file
30
company-profiles/cognizant.md
Normal file
|
@ -0,0 +1,30 @@
|
|||
# Cognizant
|
||||
|
||||
## Company blurb
|
||||
|
||||
Cognizant is a global professional services company that provides IT services and consulting to clients worldwide. The company offers a wide range of services, including consulting, application development, infrastructure management, and business process outsourcing. Cognizant has a strong focus on digital transformation and helps its clients to adopt new technologies and business models.
|
||||
|
||||
## Company size
|
||||
|
||||
Cognizant is a large company with over 300,000 employees worldwide.
|
||||
|
||||
## Remote status
|
||||
|
||||
Cognizant has a strong remote culture and offers remote positions to employees in many different countries. The company also has a number of hybrid roles that allow employees to work remotely some of the time and in an office the rest of the time.
|
||||
|
||||
## Region
|
||||
|
||||
**Worldwide**
|
||||
|
||||
## Company technologies
|
||||
|
||||
Cognizant uses a wide range of technologies, including Java, Python, .NET, cloud computing, and big data.
|
||||
|
||||
## Office locations
|
||||
|
||||
Cognizant has offices in over 20 countries around the world.
|
||||
|
||||
## How to apply
|
||||
|
||||
You can apply for a job at Cognizant through the company's website.
|
||||
Congnizant's career page: [here](https://careers.cognizant.com/in/en)
|
|
@ -37,4 +37,4 @@ Head office London
|
|||
|
||||
## How to apply
|
||||
|
||||
Check out our [Careers Page](https://www.compucorp.co.uk/jobs)
|
||||
Check out our [Careers Page](https://careers.compuco.io/open-roles)
|
||||
|
|
33
company-profiles/cosmic-chimps.md
Normal file
33
company-profiles/cosmic-chimps.md
Normal file
|
@ -0,0 +1,33 @@
|
|||
# Cosmic Chimps
|
||||
|
||||
## Company blurb
|
||||
|
||||
Design strategies with Cloud and DevSecOps mainly for Startups companies.
|
||||
|
||||
## Remote status
|
||||
|
||||
You'll work 100% remotely independient of your location.
|
||||
|
||||
## Region
|
||||
|
||||
Spain and México
|
||||
|
||||
## Company technologies
|
||||
|
||||
- Java
|
||||
- Flutter
|
||||
- PHP
|
||||
- Amazon Web Services
|
||||
- Jira
|
||||
- Git
|
||||
- Docker
|
||||
- Ansible
|
||||
|
||||
## Office locations
|
||||
|
||||
Pla de Pau Vila, Barcelona, Spain
|
||||
Liverpool 174, Juárez, Cuahutemoc, CDMX, México
|
||||
|
||||
## How to apply
|
||||
|
||||
https://www.linkedin.com/company/cosmic-chimps/jobs/
|
35
company-profiles/deel.md
Normal file
35
company-profiles/deel.md
Normal file
|
@ -0,0 +1,35 @@
|
|||
# Deel
|
||||
|
||||
## Company blurb
|
||||
|
||||
An all-in-one HR platform for global teams
|
||||
|
||||
Founded in 2019, [Deel](https://www.deel.com/) is a cloud-based payroll and compliance software that helps companies simplify every aspect of managing an international workforce, from culture and onboarding, to local payroll and compliance.
|
||||
|
||||
## Company size
|
||||
|
||||
2,600 [^1]
|
||||
|
||||
[^1]: Source: [https://www.forbes.com/companies/deel/?sh=b3b6fa6402fd](https://www.forbes.com/companies/deel/?sh=b3b6fa6402fd)
|
||||
|
||||
## Remote status
|
||||
|
||||
"Whether you want to work at home with your family or travel the world and work along the way, we’re here to support your choices. Our team is in 88 countries and counting." [^2]
|
||||
|
||||
[^2]: Source: [https://www.deel.com/careers](https://www.deel.com/careers)
|
||||
|
||||
## Region
|
||||
|
||||
Worldwide
|
||||
|
||||
## Company technologies
|
||||
|
||||
Typescript, JavaScript, React.js, Node.js, Express, PostgreSQL, Sequelize (ORM), AWS SE/EKS/SNS/SQS, Docker, Kubernetes
|
||||
|
||||
## Office locations
|
||||
|
||||
Argentina | Australia | Austria | Baltics | Belarus | Belgium | Brazil | China | Denmark | Estonia | France | Germany | Hong Kong | India | Israel | Italy | Jordan | Latvia | Lithuania | Malaysia | Moldova | Netherlands | Poland | Portugal | Serbia | Singapore | South Korea | Spain | Switzerland | UK | USA
|
||||
|
||||
## How to apply
|
||||
|
||||
Visit https://jobs.ashbyhq.com/Deel to see open positions.
|
|
@ -1,35 +0,0 @@
|
|||
# Digitise
|
||||
|
||||
## Company blurb
|
||||
|
||||
We are a dynamic London-based web and digital agency working with clients from well-known brands to innovative start-ups, creating custom websites and e-commerce stores, as well as bespoke apps and CRM systems.
|
||||
|
||||
We believe in investing in people and want to build an organization that everyone benefits from in both the short and long term. Considering this philosophy, we have Investors in People, Living Wage and Disability Confident accreditation, amongst others.
|
||||
|
||||
## Company size
|
||||
|
||||
11-50 employees on LinkedIn [Digitise](https://www.linkedin.com/mwlite/company/digitiseagency))
|
||||
|
||||
## Remote status
|
||||
|
||||
Purely remote
|
||||
|
||||
## Region
|
||||
|
||||
Worldwide
|
||||
|
||||
## Company technologies
|
||||
|
||||
Unknown
|
||||
|
||||
## Office locations
|
||||
|
||||
Headquarters:
|
||||
Richmond, United Kingdom
|
||||
|
||||
Remote
|
||||
Coffee shops to couches around the world
|
||||
|
||||
## How to apply
|
||||
|
||||
[Jobs at Digitise](https://jobs.gohire.io/digitise-xwcfqaab/)
|
|
@ -1,35 +0,0 @@
|
|||
# Donut App
|
||||
|
||||
## Company blurb
|
||||
|
||||
Donut App is an online platform that is simple to use, save digital dollar and secure way earn with DeFi.
|
||||
|
||||
Donut’s mission is to create a more inclusive financial world.
|
||||
|
||||
Today, the cornerstones of financial security—buying a house or paying down student debt—are near-impossible.
|
||||
|
||||
Our generation needs better tools to achieve financial independence, so we created the easiest way to grow your wealth with DeFi.
|
||||
|
||||
## Company size
|
||||
|
||||
11-50 employees (as of October 2022)
|
||||
|
||||
## Remote status
|
||||
|
||||
Donut have a flexible remote work policy and also an office in Los Angeles, USA and Berlin, Germany. Staffs are allowed to either work remotely or come to the office if you're around the city.
|
||||
|
||||
## Region
|
||||
|
||||
Current openings are for remote positions in US, EU and Worldwide.
|
||||
|
||||
## Company technologies
|
||||
|
||||
React, Typescript, NodeJS, Go, and many others depending on the team.
|
||||
|
||||
## Office locations
|
||||
|
||||
Los Angeles, Berlin
|
||||
|
||||
## How to apply
|
||||
|
||||
Check our jobs page: https://careers.donut.app/
|
30
company-profiles/ebury.md
Normal file
30
company-profiles/ebury.md
Normal file
|
@ -0,0 +1,30 @@
|
|||
# Ebury
|
||||
|
||||
## Company blurb
|
||||
|
||||
Ebury is a Global FinTech: we apply new technologies to enhance and automate financial services and processes. This allows small and medium-sized businesses to trade and transact internationally by eliminating boundaries related to more traditional procedures.
|
||||
|
||||
Founded in 2009, we are now positioned among the fastest-growing companies in the sector! Headquartered in London, we have more than 1000 staff covering over 50 nationalities (and counting!) working across more than 27 offices worldwide and serving more than 45,000 clients every day.
|
||||
|
||||
## Company size
|
||||
600-700 employees
|
||||
|
||||
## Remote status
|
||||
At Ebury, we understand the key role that technology plays in supporting the growth and efficiency of financial services. This is why we invest so heavily in the latest tools, languages, and platforms, as well as promoting iterative development methods that allow us to work in a rapid evolution environment, creating continuous value.
|
||||
In the summer of 2020, our increasingly international technology team became remote-first, which means that working remotely is the default option for all the employees. In our remote onboarding process, Technology new employees have a ‘buddy’ in the team to accompany them throughout their first weeks.
|
||||
|
||||
## Region
|
||||
Worldwide
|
||||
|
||||
## Company technologies
|
||||
React
|
||||
Node Js
|
||||
Express
|
||||
Javascript
|
||||
|
||||
## Office locations
|
||||
London, Madrid, and Amsterdam
|
||||
|
||||
|
||||
## How to apply
|
||||
Ebury[Career Page](https://careers.ebury.com)
|
38
company-profiles/exoscale.md
Normal file
38
company-profiles/exoscale.md
Normal file
|
@ -0,0 +1,38 @@
|
|||
# Exoscale
|
||||
|
||||
## Company blurb
|
||||
|
||||
Exoscale is a solid European cloud hosting alternative. We’re a team of IT operations veterans turned cloud enthusiasts. With Exoscale, we’re building infrastructure and services to help European teams develop and host cloud native applications. This relentless focus allows us to build a cloud platform that’s both powerful and enjoyable to use. Exoscale is a private company founded in 2011 and headquartered in Switzerland.
|
||||
|
||||
As of 2023, Exoscale operates across 7 data centers in Europe, including locations in Switzerland, Germany, Austria, and Bulgaria.
|
||||
|
||||
More details are available on our website : [Exoscale - European Cloud Hosting](https://wwww.exoscale.com)
|
||||
|
||||
## Company size
|
||||
|
||||
| Year | Employees |
|
||||
| ---- | --------- |
|
||||
| 2023 | 85 |
|
||||
|
||||
## Remote status
|
||||
|
||||
Exoscale has embraced a 100% remote work policy, allowing employees to work from anywhere. This decision promotes flexibility and work-life balance, enabling staff to choose their ideal work environment. It also expands the talent pool, attracting top professionals regardless of their location. To foster team collaboration and connection, Exoscale organizes two annual week-long meetings in different European cities, providing valuable face-to-face interaction opportunities.
|
||||
|
||||
## Region
|
||||
|
||||
Europe, Switzerland preferred.
|
||||
|
||||
## Company technologies
|
||||
|
||||
Ubuntu, [Clojure](https://clojure.org)/[ClojureScript](https://clojurescript.org), Golang, Python, Terraform, Vault, Kubernetes and related ecosystem.
|
||||
|
||||
## Office locations
|
||||
|
||||
Lausanne, Switzerland (HQ)
|
||||
Vienna, Austria
|
||||
|
||||
## How to apply
|
||||
|
||||
We publish open positions (and instructions to apply) on the following locations:
|
||||
* https://www.exoscale.com/jobs/
|
||||
* https://www.linkedin.com/company/exoscale/jobs/
|
31
company-profiles/extreme-networks.md
Normal file
31
company-profiles/extreme-networks.md
Normal file
|
@ -0,0 +1,31 @@
|
|||
# Extreme Networks
|
||||
|
||||
## Company blurb
|
||||
|
||||
Extreme makes networking simple, flexible and scalable. We focus on making your network a strategic asset to power new services, ensure business continuity and accelerate innovation. Whether it’s powering the classroom of the future, improving patient care across hospitals or powering citizen services across Smart Cities – the network has never been more critical to success and we help customers find new ways to leverage the network to drive better outcomes.
|
||||
|
||||
## Company size
|
||||
|
||||
1000+
|
||||
|
||||
## Remote status
|
||||
|
||||
We operate with a Flex First model – enabling our employees to work from wherever is most convenient for them. “Flexibility is the new normal and a key ingredient to creating a more engaged and committed workforce. It has also become a competitive advantage and an expectation for attracting and retaining talent. As such, you will see our flexible work model engrafted into our culture. We ensure that no matter where in the world our employees are working, they feel connected through technology, common interests, and passion.
|
||||
|
||||
## Region
|
||||
|
||||
Worldwide
|
||||
|
||||
## Company technologies
|
||||
|
||||
AWS
|
||||
Microsoft Azure
|
||||
CSP
|
||||
|
||||
## Office locations
|
||||
|
||||
USA, LATAM, EMEA, APAC
|
||||
|
||||
|
||||
## How to apply
|
||||
Extreme Networks[Career Page](https://www.extremenetworks.com/about-extreme-networks/career/)
|
35
company-profiles/fdte.md
Normal file
35
company-profiles/fdte.md
Normal file
|
@ -0,0 +1,35 @@
|
|||
# FDTE
|
||||
|
||||
## Company blurb
|
||||
|
||||
FDTE (Fundação para o Desenvolvimento Tecnológico da Engenharia) is a mid-sized company that works with various technologies, including its own tools (flowbuild). It is already a well-established company in Brazil, with large clients in the e-commerce market, foundations, municipalities, and the Brazilian government.
|
||||
|
||||
It's a company that highly values its employees, paying salaries that are sometimes even higher than the Brazilian market average, offering continuous technical support and numerous opportunities for growth within the company.
|
||||
|
||||
## Company size
|
||||
|
||||
100-200 and growing
|
||||
|
||||
## Remote status
|
||||
|
||||
Remote-first (but not remote-only) based in São Paulo - SP (Brazil)
|
||||
|
||||
## Region
|
||||
|
||||
With employees located worldwide, including Europe, but with a primary focus on Brazil. All calls are scheduled according to the Brazilian time zone (UTC-3).
|
||||
|
||||
## Company technologies
|
||||
|
||||
* Flowbuild
|
||||
* JavaScript
|
||||
* NodeJS
|
||||
* React
|
||||
* Java
|
||||
|
||||
## Office locations
|
||||
|
||||
São Paulo - SP (Brazil)
|
||||
|
||||
## How to apply
|
||||
|
||||
Check the [Human Resources of FDTE - LinkedIn](https://www.linkedin.com/in/brunovanessa/recent-activity/all/), [home](https://fdte.org.br/) and you can send your CV to recrutamento@fdte.io
|
|
@ -1,26 +0,0 @@
|
|||
# Featurist
|
||||
|
||||
## Company blurb
|
||||
|
||||
Featurist provides full stack, feature driven development teams. They build mobile and web apps, transform legacy systems and contribute to the open-source community.
|
||||
|
||||
## Company size
|
||||
|
||||
0-20.
|
||||
|
||||
## Remote status
|
||||
|
||||
Remote workers are welcomed.
|
||||
|
||||
## Region
|
||||
|
||||
Worldwide.
|
||||
|
||||
## Office locations
|
||||
|
||||
* London, United Kingdom
|
||||
* Auvergne-Rhône-Alpes, France
|
||||
|
||||
## How to apply
|
||||
|
||||
https://www.featurist.co.uk/careers/
|
25
company-profiles/fis-global.md
Normal file
25
company-profiles/fis-global.md
Normal file
|
@ -0,0 +1,25 @@
|
|||
# FIS GLOBAL
|
||||
|
||||
## Company blurb
|
||||
|
||||
FIS is a leader in technology and services that helps businesses and communities thrive by advancing commerce and the financial world.
|
||||
|
||||
## Company size
|
||||
|
||||
65000+
|
||||
|
||||
## Remote status
|
||||
|
||||
100% remote from COVID.
|
||||
|
||||
## Office locations
|
||||
|
||||
USA, UK, Asia
|
||||
|
||||
## Company technologies
|
||||
|
||||
HTML/ CSS / Javascript / Typescript / React.js / Node.js / C# / .net / JAVA
|
||||
|
||||
## How to apply
|
||||
|
||||
[FIS global Careers](https://careers.fisglobal.com/)
|
26
company-profiles/fleetio.md
Normal file
26
company-profiles/fleetio.md
Normal file
|
@ -0,0 +1,26 @@
|
|||
# fleetio
|
||||
|
||||
## Company blurb
|
||||
|
||||
Fleetio is a modern software platform that helps thousands of organizations worldwide manage their fleets. You can learn more about our platform here. Transportation technology is a hot market and we're leading the charge, with raving fans and new customers signing up daily. We raised a $21M Series B in late 2020 and are on an exciting trajectory as a company.s
|
||||
|
||||
## Company size
|
||||
|
||||
51 - 250
|
||||
|
||||
## Remote status
|
||||
|
||||
100% Remote. Work from anywhere.
|
||||
|
||||
## Region
|
||||
|
||||
Worldwide
|
||||
|
||||
## Company technologies
|
||||
|
||||
AWS, Terraform, Vault, Consul, Packer, Nomad, Boundary, K8s, Go, Python,Nodejs
|
||||
|
||||
|
||||
## How to apply
|
||||
|
||||
You can contact us through the (https://www.fleetio.com/careers) on the website
|
37
company-profiles/greenstitch-io.md
Normal file
37
company-profiles/greenstitch-io.md
Normal file
|
@ -0,0 +1,37 @@
|
|||
# GreenStitch.io
|
||||
|
||||
## Company blurb
|
||||
|
||||
GreenStitch helps businesses manage their environmental impact in real time and monetize sustainability seamlessly. No Technical expertise required!
|
||||
|
||||
## Company size
|
||||
|
||||
~20 people.
|
||||
|
||||
## Remote status
|
||||
|
||||
We recruit employees and interns and provide them work from home facility. We calculate product supply chain emissions which is quite complex. GreenStitch does the work for you, fast
|
||||
|
||||
* Understand your complete environmental impact
|
||||
* Seamlessly Streamline Data Collection and Management Internally and from Suppliers, while Filling Data Gaps with Smart Automation
|
||||
* Integrate with existing ERPs & inventory databases, previous sustainability reports
|
||||
* Calculate emissions using our integrated database and up-to-date standards, methodologies, and conversion factors
|
||||
|
||||
## Region
|
||||
|
||||
India.
|
||||
|
||||
## Company technologies
|
||||
|
||||
* AI/ML
|
||||
* SaaS Tools
|
||||
* MERN
|
||||
* SpringBoot
|
||||
|
||||
## Office locations
|
||||
|
||||
We have a physical office in Banglore, India which is mainly populated by our administrative staff.
|
||||
|
||||
## How to apply
|
||||
|
||||
Go to https://greenstitch.io/#/about-us and contact to our staff.
|
35
company-profiles/hubspot.md
Normal file
35
company-profiles/hubspot.md
Normal file
|
@ -0,0 +1,35 @@
|
|||
# Hubspot
|
||||
|
||||
## Company blurb
|
||||
|
||||
[Hubspot](https://www.hubspot.com/our-story?hubs_content=www.hubspot.com%2F&hubs_content-cta=homepage-nav-about-desktop) is an all-in-one inbound marketing, sales, and customer service platform designed to help businesses grow and manage their customer relationships effectively.
|
||||
|
||||
|
||||
## Company size
|
||||
|
||||
7100+
|
||||
|
||||
## Remote status
|
||||
|
||||
Partially Remote.
|
||||
|
||||
For more details about how we work remotely, check out our [company careers page](https://www.hubspot.com/careers/jobs?hubs_signup-url=www.hubspot.com%2Fcareers%2Fremote&hubs_signup-cta=careers-location-hero&page=1).
|
||||
|
||||
## Region
|
||||
|
||||
WorldWide
|
||||
|
||||
## Company technologies
|
||||
|
||||
HTML5, jQuery, Google Analytics, JavaScript, GitHub, Git, Docker, React, Amazon EC2, Apache Mesos, Kubernetes.
|
||||
|
||||
## Office locations
|
||||
|
||||
Amsterdam, Berlin, Bogotá, Cambridge, Dublin, Ghent, London, Madrid, Paris, San Francisco, Singapore, Sydney, Tokyo, Toronto.
|
||||
|
||||
## How to apply
|
||||
|
||||
Check out our [company careers page](https://www.hubspot.com/careers/jobs?hubs_signup-url=www.hubspot.com%2Fcareers%2Fremote&hubs_signup-cta=careers-location-hero&page=1).
|
||||
|
||||
To apply, check out [our current openings](https://www.hubspot.com/careers/jobs?hubs_signup-cta=careers-nav-cta&hubs_signup-url=www.hubspot.com%2Fcareers%2Fremote&page=1#office=remote;).
|
||||
|
37
company-profiles/inter-link.md
Normal file
37
company-profiles/inter-link.md
Normal file
|
@ -0,0 +1,37 @@
|
|||
# Inter.link
|
||||
|
||||
## Company blurb
|
||||
|
||||
At Inter.link, we are dedicated to revolutionizing the network industry by delivering superior, sustainable, and automated connectivity solutions to enterprise customers worldwide. Our mission is to provide a 100% uptime guarantee, self-service, and end-to-end automation on a global scale.
|
||||
|
||||
We are committed to excellence and professionalism in everything we do. Trust and equality are at the core of our values, and we strive to ensure that traffic passing through our networks is encrypted and transported equally. We also actively support the network community and strive to continuously improve in all areas, including our commitment to being CO2 neutral.
|
||||
|
||||
## Company size
|
||||
|
||||
>30 as of Q4-2023 with a wide range of nationalities and languages (although English is the official language).
|
||||
|
||||
## Remote status
|
||||
|
||||
Inter.link is a 100% remote and English speaking company. We have no dedicated office although, the company was founded in Berlin, Germany, which means we have a registered address there but, nobody is based at this address.
|
||||
|
||||
We provide employees with everything they need to work remotely (there is a home office budget) and we have flexible working hours.
|
||||
|
||||
We also host quarterly company meet-ups that provide an opportunity to work and socialize with your colleagues in-person, and we have regular virtual social events in between the meet-ups, in order to break up the solitude of remote work.
|
||||
|
||||
## Region
|
||||
|
||||
We are open to hiring people from anywhere around the world. The company was founded in Berlin has been spreading out from there. We now have employees all over Europe and recently hired in the USA. We hope to keep spreading out!
|
||||
|
||||
## Company technologies
|
||||
|
||||
On the networking side of things we are working with the usual networking names such as Arista, Juniper, F5, Kentik, Ansible, J2, NetBox, etc.
|
||||
|
||||
On the software side of things we are working with typical software languages and tools such as Python, Typescript, Go, Django, PostgreSQL, K8s, ArgoCD, etc.
|
||||
|
||||
## Office locations
|
||||
|
||||
We have one office in Berlin which is just a registered company location, and also used for deliveries, nobody works there, we are a 100% remote company.
|
||||
|
||||
## How to apply
|
||||
|
||||
Open positions are listed on our [careers page](https://inter.link/careers). You can apply there or email [jobs@inter.link](mailto:jobs@inter.link) directly.
|
35
company-profiles/invesco.md
Normal file
35
company-profiles/invesco.md
Normal file
|
@ -0,0 +1,35 @@
|
|||
# Invesco
|
||||
|
||||
## Company blurb
|
||||
|
||||
Invesco is an independent global investment management firm dedicated to delivering an investment experience that helps people get more out of life. Great ideas transcend borders at Invesco.
|
||||
|
||||
With 8,000+ employees worldwide and an on-the-ground presence in 25 countries, we’re driven by a pure focus on investment, broad diversity of thought across our organization, and a passion to exceed. If you're looking for challenging work, smart colleagues, and a global employer with a high-performance culture, we invite you to explore your potential at Invesco.
|
||||
|
||||
specialities in investment management, asset management, UITs, closed-end mutual funds, DC/DB, actively managed open-end mutual funds, ETFs, variable insurance funds, separate accounts (individual and institutional), collective trusts, private placements, and subadvised accounts.
|
||||
|
||||
## Company size
|
||||
|
||||
5000-10000
|
||||
|
||||
## Remote status
|
||||
|
||||
Invesco is a partially remote company i.e., works in hybrid mode.
|
||||
|
||||
## Region
|
||||
|
||||
Worldwide. 25 countries.
|
||||
|
||||
## Company technologies
|
||||
|
||||
Python, R, c#, AWS, React, Node.js, Java
|
||||
|
||||
## Office locations
|
||||
|
||||
Invesco Global Headquarters
|
||||
1555 Peachtree St NE, Atlanta, Georgia 30309, US.
|
||||
Also, present in other countries.
|
||||
|
||||
## How to apply
|
||||
|
||||
https://careers.invesco.com/
|
43
company-profiles/joor.md
Normal file
43
company-profiles/joor.md
Normal file
|
@ -0,0 +1,43 @@
|
|||
# JOOR
|
||||
|
||||
## Company blurb
|
||||
|
||||
Redefining the wholesale landscape, JOOR is a global platform connecting brands and retailers with seamless, online transactions. With innovative solutions and a strong emphasis on user experience, we empower businesses to collaborate and trade effortlessly. At JOOR, it's not just about digitizing commerce – we’re reimagining it.
|
||||
|
||||
From iconic brands to up-and-coming retailers, we've been at the forefront, offering solutions that bridge the physical and digital, crafting the future of wholesale commerce.
|
||||
|
||||
## Company size
|
||||
|
||||
200ish dedicated professionals specializing in tech development, sales, customer support, marketing, and operations. The tech/engineering department is around 60 people.
|
||||
|
||||
## Remote status
|
||||
|
||||
The tech team is entirely remote. Most people based in Madrid, but there are employees in the US, Uruguai, Italy, Serbia, and other places. Other departments of the company can be on a hybrid model.
|
||||
|
||||
## Region
|
||||
|
||||
Our team spans the globe. While we have strong presences in North America and Europe, we have team members from Asia to South America. The sun never sets on JOOR!
|
||||
|
||||
## Company technologies
|
||||
|
||||
* Python
|
||||
* React
|
||||
* Django
|
||||
* AWS
|
||||
* GraphQL
|
||||
* Docker
|
||||
* PHP
|
||||
* gRPC
|
||||
* Postgres
|
||||
|
||||
## Office locations
|
||||
|
||||
- New York City
|
||||
- London
|
||||
- Paris
|
||||
- Tokyo
|
||||
- Plus, many of our members operate remotely!
|
||||
|
||||
## How to apply
|
||||
|
||||
Find your next opportunity with us at our [careers portal](https://joor.com/careers/). For specific inquiries or to send a spontaneous application, reach out to careers@joor.com. Our Talent Acquisition Specialist will be happy to assist you.
|
29
company-profiles/karat.md
Normal file
29
company-profiles/karat.md
Normal file
|
@ -0,0 +1,29 @@
|
|||
# Karat
|
||||
|
||||
## Company blurb
|
||||
|
||||
Karat created the world’s first Interviewing Cloud to solve the multi-decade global shortage of software engineers. The Interviewing Cloud is an always-on, scalable, and consistent human + technology solution for conducting predictive, fair, and enjoyable technical interviews 24/7. Karat’s global network of Interview Engineers, unparalleled market intelligence, and purpose-built interviewing infrastructure opens the pipeline for engineering talent, limits pedigree bias, and provides access for underrepresented candidates. The fastest growing and largest enterprises such as Roblox, American Express, Intuit, Compass, and Wayfair trust Karat to expand hiring capacity, unlock developer time, and raise engineering quality so they can innovate and grow.
|
||||
|
||||
## Company size
|
||||
|
||||
376 employees on LinkedIn
|
||||
|
||||
## Remote status
|
||||
|
||||
You will be working from home, any where in the world.
|
||||
|
||||
## Region
|
||||
|
||||
Worldwide
|
||||
|
||||
## Company technologies
|
||||
|
||||
Technical Interviewing, Hiring, SaaS, and Technical Assessment
|
||||
|
||||
## Office locations
|
||||
|
||||
- Seattle, WA, United States
|
||||
|
||||
## How to apply
|
||||
|
||||
[Click Here to apply](https://karat.com/)
|
46
company-profiles/launch-potato.md
Normal file
46
company-profiles/launch-potato.md
Normal file
|
@ -0,0 +1,46 @@
|
|||
# Launch Potato
|
||||
|
||||
## Company blurb
|
||||
|
||||
Launch Potato is a digital media company that owns and operates a portfolio of brands and technologies. Our digital brands help customers discover new products and services that make their lives better.
|
||||
|
||||
In the last few years, we have pushed millions of lines of code, split test tens of thousands of variations across over 1,000,000,000 US consumers. We’ve engaged 2,582,038 Facebook fans with viral posts and responded to 1,927,810 customer emails with high satisfaction. We've grown several digital properties to over 10 million active monthly users.
|
||||
|
||||
## Company size
|
||||
|
||||
51-200
|
||||
|
||||
## Remote status
|
||||
|
||||
While Launch Potato is headquartered in vibrant downtown Delray Beach, Florida, we have a unique international team across a dozen countries. We have been a pioneering advocate of remote work, and our success comes from our diverse, energetic culture and high-performing, entrepreneurial team. We're bootstrapped and have taken no external investment.
|
||||
|
||||
## Region
|
||||
|
||||
Worldwide
|
||||
|
||||
## Company technologies
|
||||
|
||||
- VueJS
|
||||
- Python
|
||||
- Django
|
||||
- SQL
|
||||
- PostgreSQL
|
||||
- GraphQL
|
||||
- Presto
|
||||
- Redshift
|
||||
- Spark
|
||||
- Hive
|
||||
- AWS
|
||||
- Looker
|
||||
- RabbitMQ
|
||||
- Celery
|
||||
- Kinesis
|
||||
- Docker
|
||||
|
||||
## Office locations
|
||||
|
||||
111 E Atlantic Ave #200, Delray Beach, FL 33444, United States
|
||||
|
||||
## How to apply
|
||||
|
||||
https://launchpotato.com/careers
|
29
company-profiles/logrocket.md
Normal file
29
company-profiles/logrocket.md
Normal file
|
@ -0,0 +1,29 @@
|
|||
# LogRocket
|
||||
|
||||
## Company blurb
|
||||
|
||||
LogRocket helps you understand problems affecting your users, so that you can get back to building great software.
|
||||
|
||||
## Company size
|
||||
|
||||
500+
|
||||
|
||||
## Remote status
|
||||
|
||||
Remote - US (depends on the position).
|
||||
|
||||
## Region
|
||||
|
||||
USA
|
||||
|
||||
## Company technologies
|
||||
|
||||
JavaScript, React Native
|
||||
|
||||
## Office locations
|
||||
|
||||
US, Boston
|
||||
|
||||
## How to apply
|
||||
|
||||
https://logrocket.com/careers
|
25
company-profiles/messagebird.md
Normal file
25
company-profiles/messagebird.md
Normal file
|
@ -0,0 +1,25 @@
|
|||
# messagebird
|
||||
|
||||
## Company blurb
|
||||
|
||||
MessageBird’s mission is to create a world where communicating with a business is as easy as talking with a friend. We power communication between businesses and their customers — across any channel, always with the right context, and on every corner of the planet.
|
||||
|
||||
## Company size
|
||||
|
||||
800+ employees
|
||||
|
||||
## Remote status
|
||||
|
||||
The team is remote and in person, located in Amsterdam and 55 other countries.
|
||||
|
||||
## Region
|
||||
|
||||
Worldwide
|
||||
|
||||
## Company technologies
|
||||
|
||||
Our platform, our applications and our APIs help businesses streamline conversations through their customers’ preferred channels — like WhatsApp, Email, SMS, Voice, WeChat, Messenger, Instagram - and build powerful and engaging experiences.
|
||||
|
||||
## How to apply
|
||||
|
||||
[Click Here to apply](https://messagebird.com/careers#jobs)
|
41
company-profiles/namecheap.md
Normal file
41
company-profiles/namecheap.md
Normal file
|
@ -0,0 +1,41 @@
|
|||
# Namecheap
|
||||
|
||||
## Company blurb
|
||||
|
||||
Namecheap is a web hosting and domain registration company founded in 2000. Its hosting plans include free automatic SSL installation, a free website builder, domain name and privacy protection, and unmetered bandwidth.In addition, the company offers a range of other services such as VPN services, website builders and SSL certificates to help customers build their online presence. The company is a leading ICANN Accredited Domain Registrar, with over 2 million customers and over 16 million domains worldwide.
|
||||
|
||||
## Company size
|
||||
|
||||
1,000 - 4,999 employees
|
||||
|
||||
## Remote status
|
||||
|
||||
Some of the roles require you to be in-office or work remotely from a certain location, but most job openings support remote working.
|
||||
|
||||
## Region
|
||||
|
||||
Worldwide
|
||||
|
||||
## Company technologies
|
||||
|
||||
- HTML
|
||||
- CSS
|
||||
- JavaScript
|
||||
- PHP
|
||||
- MySQL
|
||||
- Apache
|
||||
- Linux
|
||||
- cPanel
|
||||
- WHM
|
||||
|
||||
## Office locations
|
||||
|
||||
4600 East Washington Street
|
||||
Suite 305
|
||||
Phoenix, AZ 85034
|
||||
USA
|
||||
|
||||
## How to apply
|
||||
|
||||
[Namecheap careers page](https://www.namecheap.com/careers/openings/)
|
||||
|
36
company-profiles/nuharbor-security.md
Normal file
36
company-profiles/nuharbor-security.md
Normal file
|
@ -0,0 +1,36 @@
|
|||
# Nuharbor Security
|
||||
|
||||
## Company blurb
|
||||
|
||||
Nuharbor Security is a cybersecurity managed service provider based in Colchester Vermont. Nuharbor Security challenges traditional security and audit methodologies to reduce overhead and create a high return on investment while positioning security, compliance, and risk management as business enablers. Nuharbor Security's mission is to make cybersecurity stronger and easier for their clients, helping clients to better understand and protect themselves.
|
||||
|
||||
## Company size
|
||||
|
||||
100-150 Employees
|
||||
|
||||
## Remote status
|
||||
|
||||
Many positions are remote friendly. There are a portion of positions that are in-office, but the status of each position is displayed with the job description.
|
||||
|
||||
Remote employees can work in office with approval and there are events multiple times a year that remote employees can opt to attend in person.
|
||||
|
||||
## Region
|
||||
|
||||
USA
|
||||
|
||||
## Company technologies
|
||||
|
||||
- Splunk (SPL)
|
||||
- C#
|
||||
- Python
|
||||
- Typescript
|
||||
- Security tools (Firewalls, vulnerability scanners, anti-malware, SIEMs, etc.)
|
||||
|
||||
## Office locations
|
||||
|
||||
Colchester, VT (US)
|
||||
|
||||
## How to apply
|
||||
|
||||
View open positions here:
|
||||
https://www.nuharborsecurity.com/careers#job-openings
|
34
company-profiles/qatium.md
Normal file
34
company-profiles/qatium.md
Normal file
|
@ -0,0 +1,34 @@
|
|||
# Qatium
|
||||
|
||||
## Company blurb
|
||||
|
||||
Qatium is a cloud-based developer of digital water technology with offices in Valencia, Spain and a presence around the world.
|
||||
The company operates an open and collaborative water management platform that helps utilities improve the efficiency of their water systems.
|
||||
By removing the barriers to hydraulic know-how, Qatium helps water utilities around the world to improve their water distribution and collection systems, treatment and reclamation facilities, smart metering, and much more.
|
||||
We are a growing team of developers, designers and marketers based in different parts of the world: USA, Canada, Spain, UK, Brazil, the Netherlands and more!
|
||||
|
||||
If you are interested in knowing more, keep reading!
|
||||
|
||||
## Company size
|
||||
|
||||
50+ (as of October 2023)
|
||||
|
||||
## Remote status
|
||||
|
||||
Full remote
|
||||
|
||||
## Region
|
||||
|
||||
Spain
|
||||
|
||||
## Company technologies
|
||||
|
||||
React, TypeScript, Python, C#, and many others depending on the team.
|
||||
|
||||
## Office locations
|
||||
|
||||
Valencia, Spain
|
||||
|
||||
## How to apply
|
||||
|
||||
Check our jobs page: https://qatium.recruitee.com/
|
35
company-profiles/remotemore.md
Normal file
35
company-profiles/remotemore.md
Normal file
|
@ -0,0 +1,35 @@
|
|||
# RemoteMore
|
||||
|
||||
## Company blurb
|
||||
RemoteMore is a remote-hiring marketplace, where we help world-class developers get connected with full time jobs. Our vision of the future is to ensure there's equal access to job opportunities. It is highly embodied
|
||||
by our mission to continuously and repeatedly hire people remotely.
|
||||
|
||||
## Company size
|
||||
20 - 50
|
||||
|
||||
## Remote status
|
||||
Most teams are partially remote
|
||||
|
||||
## Region
|
||||
Worldwide
|
||||
|
||||
## Company technologies
|
||||
Current Stack: Node.js, Google Cloud Platform, React JS, Typescript
|
||||
|
||||
Also be familiar with:
|
||||
* Python
|
||||
* PostgreSQL
|
||||
* Node.js
|
||||
* Vue JS
|
||||
* MongoDB
|
||||
* Express JS
|
||||
|
||||
## Office locations
|
||||
Berlin, Germany
|
||||
New York, United States
|
||||
|
||||
|
||||
## How to apply
|
||||
Checkout [RemoteMore Careers](https://remotemore.com/careers/)
|
||||
|
||||
Visit [LinkedIn](https://www.linkedin.com/company/remotemore/) for updates
|
19
company-profiles/renaissance.md
Normal file
19
company-profiles/renaissance.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
# Renaissance
|
||||
|
||||
## Company blurb
|
||||
|
||||
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. More than one-third of U.S. schools use Renaissance solutions to accelerate learning for millions of students.
|
||||
|
||||
## Company size
|
||||
|
||||
1200+ employees
|
||||
|
||||
|
||||
## Region
|
||||
|
||||
Headquartered in the US - Wisconsin Rapids, WI
|
||||
[Corporate Office Locations List](https://www.renaissance.com/about-us/contact-us/#office-locations)
|
||||
|
||||
## How to apply
|
||||
|
||||
[Click Here to apply](https://careers.smartrecruiters.com/Renaissance)
|
68
company-profiles/roadpass-digital.md
Normal file
68
company-profiles/roadpass-digital.md
Normal file
|
@ -0,0 +1,68 @@
|
|||
# Roadpass Digital
|
||||
|
||||
## Company blurb
|
||||
|
||||
Roadpass Digital makes those experiences more accessible and more memorable by making it easier than ever to hit the road. They empower travelers and businesses that understand the outdoors are meant to be explored, that roads are meant to be driven, and that your next adventure is right around the corner. Millions of travelers have discovered the benefits of Roadpass Digital brands, helping travelers to more easily own and maintain recreational vehicles as well as discover, book, and navigate road trips.
|
||||
|
||||
## Company size
|
||||
|
||||
51-200
|
||||
|
||||
## Remote status
|
||||
|
||||
Most of us are remote. We do have office locations and officially our Headquarters situated at Chicago, Illinois.
|
||||
|
||||
## Region
|
||||
|
||||
USA, New Zeland, India, Philippines, Sri Lanka
|
||||
|
||||
## Company technologies
|
||||
|
||||
Languages and frameworks:
|
||||
|
||||
- Ruby
|
||||
- Javascript
|
||||
- Java
|
||||
- Kotlin
|
||||
- PHP
|
||||
- Linux
|
||||
- c#
|
||||
- TypeScript
|
||||
- .NET
|
||||
|
||||
Development:
|
||||
- Kubernetes
|
||||
- GitHub
|
||||
- Ansible
|
||||
- Git
|
||||
- Docker
|
||||
- Varnish
|
||||
|
||||
Libraries:
|
||||
|
||||
- React
|
||||
- jQuery
|
||||
- Moment.js
|
||||
- Underscore
|
||||
|
||||
Application Hosting:
|
||||
|
||||
- Amazon EC2
|
||||
- Google Cloud Platform
|
||||
- OpenResty
|
||||
- Amazon Web Services
|
||||
|
||||
Data Stores:
|
||||
|
||||
- Amazon S3
|
||||
- PostGIS
|
||||
- PostgreSQL
|
||||
- Redis
|
||||
|
||||
## Office locations
|
||||
|
||||
Chicago, Illinois., Cincinnati, Ohio
|
||||
|
||||
## How to apply
|
||||
|
||||
You can find our open jobs and apply directly here: https://roadtrippers.applytojob.com/apply
|
24
company-profiles/seatgeek.md
Normal file
24
company-profiles/seatgeek.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# SeatGeek
|
||||
|
||||
## Company blurb
|
||||
Founded in 2009 by Russell D'Souza, Jack Groetzinger, and Eric Waller, SeatGeek is the go-to platform for event tickets. Based in NYC, we're known for innovation in live entertainment. Partnered with Major League Soccer in 2016, we're your mobile-focused ticket solution for sports, concerts, and theater. Browse, buy, and enjoy hassle-free ticketing on SeatGeek, your gateway to unforgettable experiences.
|
||||
|
||||
## Company size
|
||||
800+
|
||||
|
||||
## Remote status
|
||||
At SeatGeak, we prioritize team connection and innovation. While working remotely, we host frequent virtual team hangs and engaging happy hours. Our commitment to creativity shines through in our company-wide hackathons held 3-4 times a year. Enjoy the flexibility to work on your terms – whether in the office or 100% remote. We've got your home office needs covered with a WFH stipend. Join us and embrace the best of both worlds.
|
||||
|
||||
## Region
|
||||
Area served - Worldwide.
|
||||
|
||||
## Company technologies
|
||||
Technology not specified.
|
||||
|
||||
## Office locations
|
||||
|
||||
Manchester, Haifa, New York
|
||||
|
||||
## How to apply
|
||||
|
||||
Check out [careers page](https://seatgeek.com/jobs?departments=softwareengineering&locations=all).
|
35
company-profiles/shattered-silicon.md
Normal file
35
company-profiles/shattered-silicon.md
Normal file
|
@ -0,0 +1,35 @@
|
|||
# Shattered Silicon
|
||||
|
||||
## Company blurb
|
||||
|
||||
[Shattered Silicon](https://shatteredsilicon.net/) is a database consultancy company specialising in MySQL and MariaDB. We enable organisations to augment their database administration and maintenance capabilities. We can do this by leveraging the skills and experience of our highly qualified database experts.
|
||||
|
||||
We are completely vendor-independent, which enables us to provide impartial [MariaDB and MySQL support](https://shatteredsilicon.net/mariadb-mysql-support/) and consultancy services. We provide our clients with the best, most appropriate solution possible for the problem they are solving. Our MySQL consulting experts are available 24/7 to help you increase performance, flexibility and business continuity of your database systems. We provide on-site [MariaDB and MySQL consulting](https://shatteredsilicon.net/postgresql-mariadb-mysql-consulting/) in Europe and remote DBA consulting world-wide.
|
||||
|
||||
Our [MySQL experts](https://shatteredsilicon.net/mysql-experts/) recently released [Shattered Silicon Monitoring (SSM)](https://shatteredsilicon.net/mysql-monitoring-ssm/), a fork of Percona Monitoring and Management (PMM) v1. It contains additional features and fixes not present in PMM.
|
||||
|
||||
## Company size
|
||||
|
||||
5-10
|
||||
|
||||
## Remote status
|
||||
|
||||
Fully remote, flexible timezone, flexible work hours.
|
||||
|
||||
## Region
|
||||
|
||||
**Worldwide**
|
||||
|
||||
## Company technologies
|
||||
|
||||
MySQL, MariaDB, Linux, Prometheus, Grafana
|
||||
<https://github.com/shatteredsilicon>
|
||||
<https://shatteredsilicon.net/>
|
||||
|
||||
## Office locations
|
||||
|
||||
Our HQ is in Bulgaria, but all staff are internationally dispersed.
|
||||
|
||||
## How to apply
|
||||
|
||||
<contact@shatteredsilicon.net>
|
65
company-profiles/sonatype.md
Normal file
65
company-profiles/sonatype.md
Normal file
|
@ -0,0 +1,65 @@
|
|||
# Sonatype
|
||||
|
||||
## Company blurb
|
||||
|
||||
[Sonatype](https://www.sonatype.com) is the software supply chain management company. We're on a mission to change how the world innovates by making software development easier. From running the world's largest repository of Java open source components (Maven Central), to inventing componentized software development, and then software supply chain management, to creating the only solution that stops malicious open source malware in its tracks, we're constantly leading the industry, while helping thousands of customers manage open source every day.
|
||||
|
||||
Already used by 15 million developers, we have lofty goals for our technology to be in the hands of every engineering team. And, we need you to do that.
|
||||
|
||||
The Sonatype platform empowers speed and security in open source development. It gives organizations total control of their SDLC for more confidence in every piece of open source code, source code, and containerized code.
|
||||
|
||||
2000 enterprise customers served
|
||||
|
||||
We unite software developers, application security professionals, operators, engineering leaders, and legal teams to manage their open source components safely so that they can focus on innovation.
|
||||
|
||||
15 million software developers served
|
||||
|
||||
Our intelligence engine combines machine learning and nearly 100 in-house expert data researchers to create faster, more in-depth and accurate information about open source than available anywhere else.
|
||||
|
||||
100 million open source components analyzed
|
||||
|
||||
## Company size
|
||||
|
||||
501-1000
|
||||
|
||||
## Remote status
|
||||
|
||||
As a remote-first company, trust is foundational to the success of our business. At Sonatype, Trust = Transparency + Accountability. We strive for transparency through clear communications across functions and levels. We hold ourselves accountable to the promises we make to our employees, investors, and customers.
|
||||
|
||||
Our varied experiences, locations, ethnicities, genders, and sexual orientations, make us a better company. That's why we're committed to bringing different backgrounds and perspectives into our organization.
|
||||
|
||||
## Region
|
||||
|
||||
Worldwide
|
||||
|
||||
While we have offices in the US in Maryland and Virginia, and also in London and Sydney, our growing and talented team lives and works anywhere and everywhere.
|
||||
|
||||
## Company technologies
|
||||
|
||||
JavaScript, HTML, CSS, Java, DevOps, SaaS and cloud technologies
|
||||
|
||||
## Office locations
|
||||
|
||||
**Headquarters**
|
||||
|
||||
8161 Maple Lawn Blvd #250
|
||||
Fulton, MD 20759
|
||||
United States of America
|
||||
|
||||
**European Office**
|
||||
|
||||
168 Shoreditch High Street
|
||||
London E1 6HU
|
||||
United Kingdom
|
||||
|
||||
**APAC Office**
|
||||
|
||||
60 Martin Place Level 1
|
||||
Sydney, NSW 2000
|
||||
Australia
|
||||
|
||||
## How to apply
|
||||
|
||||
Visit https://www.sonatype.com/company/careers to see open positions.
|
||||
|
||||
[1]: https://www.sonatype.com/
|
45
company-profiles/swiggy.md
Normal file
45
company-profiles/swiggy.md
Normal file
|
@ -0,0 +1,45 @@
|
|||
# Swiggy
|
||||
|
||||
## Company blurb
|
||||
|
||||
Swiggy is an Indian online food ordering and delivery platform. Founded in 2014, Swiggy is headquartered in Bangalore and operates in more than 500 Indian cities as of September 2021. Besides food delivery, the platform also provides on-demand grocery deliveries under the name Instamart, and same-day package delivery service called Swiggy Genie.
|
||||
|
||||
## Company size
|
||||
|
||||
6,000+
|
||||
|
||||
## Remote status
|
||||
|
||||
Swiggy announced permanent work-from-anywhere for majority of its roles. The decision was arrived at based on team needs and feedback from several managers and employees who vouched for the flexibility and increased productivity working from home has given them in the last two years. Today, Swiggsters are working out of 487 cities in 27 States and 4 UTs across the country.
|
||||
|
||||
## Region
|
||||
|
||||
Swiggy support remote working, according to [Girish Menon - HR Head @ Swiggy](https://blog.swiggy.com/2022/07/29/swiggy-announces-permanent-work-from-anywhere-policy/).
|
||||
|
||||
## Company technologies
|
||||
|
||||
Backend: Java, Scala, Python, Go, Rust, NodeJS
|
||||
|
||||
Frontend: ReactJS
|
||||
|
||||
App: Kotlin (Android), Swift(iOS)
|
||||
|
||||
IAAS: AWS
|
||||
|
||||
DBs: MySQL, Postgres, ScyllaDB
|
||||
|
||||
Caches: Redis, Aerospike
|
||||
|
||||
Search: Solr, Elasticsearch
|
||||
|
||||
CI/CD: Custom built tool over Jenkins
|
||||
|
||||
## Office locations
|
||||
|
||||
Headquarters are:
|
||||
|
||||
Bengaluru, India
|
||||
|
||||
## How to apply
|
||||
|
||||
Swiggy list all open vacancies on their [jobs page](https://careers.swiggy.com/#/).
|
36
company-profiles/transfeera.md
Normal file
36
company-profiles/transfeera.md
Normal file
|
@ -0,0 +1,36 @@
|
|||
# Transfeera
|
||||
|
||||
## Company blurb
|
||||
|
||||
### Who we are
|
||||
The fintech Transfeera was founded in 2017 with the mission of making the daily lives of those working with payments simpler and more secure. Without friction or surprises when paying and receiving, you focus on what really matters: your business.
|
||||
|
||||
### What we do
|
||||
We automate the financial routine of companies, reducing the possibilities of errors, operational costs, and the time spent on manual and complex tasks.
|
||||
|
||||
### How we do it
|
||||
We are an electronic money issuing payment institution. Our clients have payment solutions where they make payments — individually or in batches — and collect payments via Pix, with the certainty that the money will reach the right person.
|
||||
|
||||
## Company size
|
||||
|
||||
30-50 employees.
|
||||
|
||||
## Remote status
|
||||
|
||||
As a remote-friendly company, Transfeera prioritize flexibility, enabling the employees to achieve work-life balance while delivering exceptional results from the comfort of their preferred locations.
|
||||
|
||||
## Region
|
||||
|
||||
Brazil
|
||||
|
||||
## Company technologies
|
||||
|
||||
We utilize a comprehensive technology stack that includes Node.js for our server-side operations, AWS for our cloud infrastructure, Terraform for efficient infrastructure management, and PostgreSQL for our robust database solutions.
|
||||
|
||||
## Office locations
|
||||
|
||||
Ágora Tech Park - Prédio MOB - Estr. Dona Francisca, 8300 - Sala 401 - Distrito Industrial, Joinville - SC, 89219-600
|
||||
|
||||
## How to apply
|
||||
|
||||
If you are interested in applying, please visit our careers page at https://transfeera.com/carreiras/ and follow the instructions on the form provided.
|
44
company-profiles/willings-inc.md
Normal file
44
company-profiles/willings-inc.md
Normal file
|
@ -0,0 +1,44 @@
|
|||
# Willings Inc
|
||||
|
||||
## Company blurb
|
||||
Enhancing the Presence of Japanese Companies in the Digital Society
|
||||
|
||||
Established : 11th January 2018
|
||||
|
||||
## Company size
|
||||
|
||||
2-10 employees
|
||||
|
||||
Source : https://www.linkedin.com/company/willingsinc/about/
|
||||
|
||||
## Remote status
|
||||
|
||||
Students from India pursuing their bachelors/masters from IITs are eligible to apply
|
||||
|
||||
## Region
|
||||
|
||||
Japan
|
||||
|
||||
## Company technologies
|
||||
Front-end Engineer:
|
||||
HTML, CSS, JavaScript,Angular,AJAX, RESTful API,Responsive Design,Version Control (e.g., Git),Testing (e.g., Jasmine, Karma).
|
||||
|
||||
Sales:
|
||||
Communication,Negotiation,Relationship Management,Market Understanding,Presentation Skills,Goal Setting.
|
||||
|
||||
Backend Developer:
|
||||
Server-side Languages (Java, Python, Ruby, Node.js),Database Management (SQL, NoSQL),RESTful API,Server Deployment,Frameworks (e.g., Spring, Flask, Express),Authentication, Authorization.
|
||||
|
||||
Full Stack Developer:
|
||||
Front-end (HTML, CSS, JavaScript),Back-end (Server-side Languages),Database Management,API Development,Version Control (e.g., Git),Containerization, Cloud Services.
|
||||
|
||||
Software Development Engineer (SDE):
|
||||
Programming Languages (Java, Python, C++),Data Structures, Algorithms,Problem-solving,Object-oriented Design,SDLC Understanding,Version Control (e.g., Git),Testing and Debugging,Software Architecture, Design Patterns
|
||||
|
||||
## Office locations
|
||||
|
||||
5F STbuilding, 2-1-30 Ecchujima, Koto-ku, Tokyo 135-0044
|
||||
|
||||
## How to apply
|
||||
|
||||
Visit https://willings.co.jp/en/join-us to see open positions.
|
29
company-profiles/wingify.md
Normal file
29
company-profiles/wingify.md
Normal file
|
@ -0,0 +1,29 @@
|
|||
# Wingify
|
||||
|
||||
## Company blurb
|
||||
|
||||
Wingify is an India based, fast-growing software company that makes globally admired technology products. There flagship product VWO Experience Optimization Platform is loved by thousands of businesses and users across 90+ countries, and the customer list includes brands like Microsoft, Lenovo, Walt Disney, Target, eBay, and Ubisoft.
|
||||
|
||||
## Company size
|
||||
|
||||
201-500
|
||||
|
||||
## Remote status
|
||||
|
||||
Wingify is a remote first organisation. Work is conducted via Google meet, Slack communication, and a number of other tools to foster collaboration.
|
||||
|
||||
## Region
|
||||
|
||||
Current openings are for remote positions in India
|
||||
|
||||
## Company technologies
|
||||
|
||||
Depending on the product line, technologies include Javascript,Cash.js,Angular
|
||||
|
||||
## Office locations
|
||||
|
||||
The headquarters is in Delhi.
|
||||
|
||||
## How to apply
|
||||
|
||||
https://wingify.com/careers
|
40
company-profiles/yahoo.md
Normal file
40
company-profiles/yahoo.md
Normal file
|
@ -0,0 +1,40 @@
|
|||
# Yahoo!
|
||||
|
||||
## Company blurb
|
||||
|
||||
Yahoo is a global media and tech company that connects people to their passions,
|
||||
It is a web services provider that offers both a search engine and a directory of World Wide Web pages organized in a hierarchy of topic categories,
|
||||
While the Yahoo web portal started off as a web directory, it soon added other services such as email, news and finance.
|
||||
|
||||
## Company size
|
||||
|
||||
8,600 employees
|
||||
|
||||
## Remote status
|
||||
|
||||
Will help you work where you need to, when you need to.
|
||||
|
||||
## Region
|
||||
|
||||
Worldwide
|
||||
|
||||
## Company technologies
|
||||
|
||||
- HTML5
|
||||
- JavaScript
|
||||
- React
|
||||
- Hadoop
|
||||
- Kafka
|
||||
- Node.js
|
||||
- Jenkins
|
||||
- Redis
|
||||
- Docker, K8s
|
||||
|
||||
## Office locations
|
||||
|
||||
Australia, Brazil, Germany, Ireland, India, Japan, New Zealand, Taiwan, UK and USA.
|
||||
|
||||
## How to apply
|
||||
|
||||
[Yahoo! careers page](https://www.yahooinc.com/careers/)
|
||||
|
8
index.md
Normal file
8
index.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
title: Home
|
||||
layout: home
|
||||
---
|
||||
|
||||
Hello.
|
||||
|
||||
----
|
|
@ -7,7 +7,7 @@
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
|
||||
|
||||
<title>404 HTML Template by Colorlib</title>
|
||||
<title>404: The Page can't be found</title>
|
||||
|
||||
<!-- Google font -->
|
||||
<link href="https://fonts.googleapis.com/css?family=Montserrat:200,400,700" rel="stylesheet">
|
||||
|
|
Loading…
Reference in a new issue