mirror of
https://github.com/remoteintech/remote-jobs
synced 2025-03-14 22:06:57 +00:00
Merge branch 'remoteintech:main' into greenstitchContrib
This commit is contained in:
commit
c15e8515a7
13 changed files with 165 additions and 460 deletions
51
.github/workflows/jekyll-gh-pages.yml
vendored
51
.github/workflows/jekyll-gh-pages.yml
vendored
|
@ -1,51 +0,0 @@
|
|||
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
|
||||
name: Deploy Jekyll with GitHub Pages dependencies preinstalled
|
||||
|
||||
on:
|
||||
# Runs on pushes targeting the default branch
|
||||
push:
|
||||
branches: ["main"]
|
||||
|
||||
# Allows you to run this workflow manually from the Actions tab
|
||||
workflow_dispatch:
|
||||
|
||||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
||||
permissions:
|
||||
contents: read
|
||||
pages: write
|
||||
id-token: write
|
||||
|
||||
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
|
||||
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
|
||||
concurrency:
|
||||
group: "pages"
|
||||
cancel-in-progress: false
|
||||
|
||||
jobs:
|
||||
# Build job
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
- name: Setup Pages
|
||||
uses: actions/configure-pages@v3
|
||||
- name: Build with Jekyll
|
||||
uses: actions/jekyll-build-pages@v1
|
||||
with:
|
||||
source: ./
|
||||
destination: ./_site
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-pages-artifact@v2
|
||||
|
||||
# Deployment job
|
||||
deploy:
|
||||
environment:
|
||||
name: github-pages
|
||||
url: ${{ steps.deployment.outputs.page_url }}
|
||||
runs-on: ubuntu-latest
|
||||
needs: build
|
||||
steps:
|
||||
- name: Deploy to GitHub Pages
|
||||
id: deployment
|
||||
uses: actions/deploy-pages@v2
|
64
.github/workflows/jekyll.yml
vendored
64
.github/workflows/jekyll.yml
vendored
|
@ -1,64 +0,0 @@
|
|||
# This workflow uses actions that are not certified by GitHub.
|
||||
# They are provided by a third-party and are governed by
|
||||
# separate terms of service, privacy policy, and support
|
||||
# documentation.
|
||||
|
||||
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
|
||||
name: Deploy Jekyll site to Pages
|
||||
|
||||
on:
|
||||
# Runs on pushes targeting the default branch
|
||||
push:
|
||||
branches: ["main"]
|
||||
|
||||
# Allows you to run this workflow manually from the Actions tab
|
||||
workflow_dispatch:
|
||||
|
||||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
||||
permissions:
|
||||
contents: read
|
||||
pages: write
|
||||
id-token: write
|
||||
|
||||
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
|
||||
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
|
||||
concurrency:
|
||||
group: "pages"
|
||||
cancel-in-progress: false
|
||||
|
||||
jobs:
|
||||
# Build job
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
- name: Setup Ruby
|
||||
uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
|
||||
with:
|
||||
ruby-version: '3.1' # Not needed with a .ruby-version file
|
||||
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
||||
cache-version: 0 # Increment this number if you need to re-download cached gems
|
||||
- name: Setup Pages
|
||||
id: pages
|
||||
uses: actions/configure-pages@v3
|
||||
- name: Build with Jekyll
|
||||
# Outputs to the './_site' directory by default
|
||||
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
|
||||
env:
|
||||
JEKYLL_ENV: production
|
||||
- name: Upload artifact
|
||||
# Automatically uploads an artifact from the './_site' directory by default
|
||||
uses: actions/upload-pages-artifact@v2
|
||||
|
||||
# Deployment job
|
||||
deploy:
|
||||
environment:
|
||||
name: github-pages
|
||||
url: ${{ steps.deployment.outputs.page_url }}
|
||||
runs-on: ubuntu-latest
|
||||
needs: build
|
||||
steps:
|
||||
- name: Deploy to GitHub Pages
|
||||
id: deployment
|
||||
uses: actions/deploy-pages@v2
|
13
Gemfile
13
Gemfile
|
@ -1,13 +0,0 @@
|
|||
source 'https://rubygems.org'
|
||||
|
||||
gem "jekyll", "~> 4.3.2" # installed by `gem jekyll`
|
||||
# gem "webrick" # required when using Ruby >= 3 and Jekyll <= 4.2.2
|
||||
|
||||
gem "just-the-docs", "0.6.2" # pinned to the current release
|
||||
# gem "just-the-docs" # always download the latest release
|
||||
|
||||
gem "jekyll-github-metadata", ">= 2.15"
|
||||
|
||||
gem "jekyll-include-cache", group: :jekyll_plugins
|
||||
|
||||
gem "html-proofer", "~> 5.0", :group => :development
|
81
Gemfile.lock
81
Gemfile.lock
|
@ -1,81 +0,0 @@
|
|||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
addressable (2.8.5)
|
||||
public_suffix (>= 2.0.2, < 6.0)
|
||||
colorator (1.1.0)
|
||||
concurrent-ruby (1.2.2)
|
||||
em-websocket (0.5.3)
|
||||
eventmachine (>= 0.12.9)
|
||||
http_parser.rb (~> 0)
|
||||
eventmachine (1.2.7)
|
||||
ffi (1.15.5)
|
||||
forwardable-extended (2.6.0)
|
||||
google-protobuf (3.24.3-x86_64-linux)
|
||||
http_parser.rb (0.8.0)
|
||||
i18n (1.14.1)
|
||||
concurrent-ruby (~> 1.0)
|
||||
jekyll (4.3.2)
|
||||
addressable (~> 2.4)
|
||||
colorator (~> 1.0)
|
||||
em-websocket (~> 0.5)
|
||||
i18n (~> 1.0)
|
||||
jekyll-sass-converter (>= 2.0, < 4.0)
|
||||
jekyll-watch (~> 2.0)
|
||||
kramdown (~> 2.3, >= 2.3.1)
|
||||
kramdown-parser-gfm (~> 1.0)
|
||||
liquid (~> 4.0)
|
||||
mercenary (>= 0.3.6, < 0.5)
|
||||
pathutil (~> 0.9)
|
||||
rouge (>= 3.0, < 5.0)
|
||||
safe_yaml (~> 1.0)
|
||||
terminal-table (>= 1.8, < 4.0)
|
||||
webrick (~> 1.7)
|
||||
jekyll-include-cache (0.2.1)
|
||||
jekyll (>= 3.7, < 5.0)
|
||||
jekyll-sass-converter (3.0.0)
|
||||
sass-embedded (~> 1.54)
|
||||
jekyll-seo-tag (2.8.0)
|
||||
jekyll (>= 3.8, < 5.0)
|
||||
jekyll-watch (2.2.1)
|
||||
listen (~> 3.0)
|
||||
just-the-docs (0.6.2)
|
||||
jekyll (>= 3.8.5)
|
||||
jekyll-include-cache
|
||||
jekyll-seo-tag (>= 2.0)
|
||||
rake (>= 12.3.1)
|
||||
kramdown (2.4.0)
|
||||
rexml
|
||||
kramdown-parser-gfm (1.1.0)
|
||||
kramdown (~> 2.0)
|
||||
liquid (4.0.4)
|
||||
listen (3.8.0)
|
||||
rb-fsevent (~> 0.10, >= 0.10.3)
|
||||
rb-inotify (~> 0.9, >= 0.9.10)
|
||||
mercenary (0.4.0)
|
||||
pathutil (0.16.2)
|
||||
forwardable-extended (~> 2.6)
|
||||
public_suffix (5.0.3)
|
||||
rake (13.0.6)
|
||||
rb-fsevent (0.11.2)
|
||||
rb-inotify (0.10.1)
|
||||
ffi (~> 1.0)
|
||||
rexml (3.2.6)
|
||||
rouge (4.1.3)
|
||||
safe_yaml (1.0.5)
|
||||
sass-embedded (1.67.0-x86_64-linux-gnu)
|
||||
google-protobuf (~> 3.23)
|
||||
terminal-table (3.0.2)
|
||||
unicode-display_width (>= 1.1.1, < 3)
|
||||
unicode-display_width (2.4.2)
|
||||
webrick (1.8.1)
|
||||
|
||||
PLATFORMS
|
||||
x86_64-linux
|
||||
|
||||
DEPENDENCIES
|
||||
jekyll (~> 4.3.2)
|
||||
just-the-docs (= 0.6.2)
|
||||
|
||||
BUNDLED WITH
|
||||
2.3.26
|
|
@ -208,14 +208,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
|
||||
|
@ -344,6 +342,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
|
||||
|
@ -395,6 +394,7 @@ 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
|
||||
|
@ -441,6 +441,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
|
||||
|
@ -578,6 +579,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
|
||||
|
@ -604,6 +606,7 @@ Name | Website | Region
|
|||
[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
|
||||
|
|
179
_config.yml
179
_config.yml
|
@ -1,179 +0,0 @@
|
|||
# Welcome to Jekyll!
|
||||
#
|
||||
# This config file is meant for settings that affect your whole site, values
|
||||
# which you are expected to set up once and rarely edit after that. If you find
|
||||
# yourself editing these this file very often, consider using Jekyll's data files
|
||||
# feature for the data you need to update frequently.
|
||||
#
|
||||
# For technical reasons, this file is *NOT* reloaded automatically when you use
|
||||
# 'jekyll serve'. If you change this file, please restart the server process.
|
||||
|
||||
# Site settings
|
||||
# These are used to personalize your new site. If you look in the HTML files,
|
||||
# you will see them accessed via {{ site.title }}, {{ site.github_repo }}, and so on.
|
||||
# You can create any custom variable you would like, and they will be accessible
|
||||
# in the templates via {{ site.myvariable }}.
|
||||
title: Remote in Tech
|
||||
description: A list of semi to fully remote-friendly companies in tech
|
||||
baseurl: "" # the subpath of your site, e.g. /blog
|
||||
url: "https://remoteintech.github.io/remote-jobs/" # the base hostname & protocol for your site, e.g. http://example.com
|
||||
repository: remoteintech/remote-jobs # for github-metadata
|
||||
|
||||
permalink: pretty
|
||||
|
||||
exclude:
|
||||
# from https://github.com/jekyll/jekyll/blob/master/lib/site_template/_config.yml:
|
||||
- .sass-cache/
|
||||
- .jekyll-cache/
|
||||
- gemfiles/
|
||||
- Gemfile
|
||||
- Gemfile.lock
|
||||
- node_modules/
|
||||
- vendor/bundle/
|
||||
- vendor/cache/
|
||||
- vendor/gems/
|
||||
- vendor/ruby/
|
||||
# specific to the theme website:
|
||||
- bin/
|
||||
- lib/
|
||||
- "*.gemspec"
|
||||
- "*.gem"
|
||||
- LICENSE.txt
|
||||
- package.json
|
||||
- package-lock.json
|
||||
- Rakefile
|
||||
- README.md
|
||||
- CODE_OF_CONDUCT.md
|
||||
- docker-compose.yml
|
||||
- Dockerfile
|
||||
# theme test code
|
||||
- fixtures/
|
||||
|
||||
# Set a path/url to a logo that will be displayed instead of the title
|
||||
#logo: "/assets/images/just-the-docs.png"
|
||||
|
||||
# Enable or disable the site search
|
||||
# Supports true (default) or false
|
||||
search_enabled: true
|
||||
search:
|
||||
# Split pages into sections that can be searched individually
|
||||
# Supports 1 - 6, default: 2
|
||||
heading_level: 2
|
||||
# Maximum amount of previews per search result
|
||||
# Default: 3
|
||||
previews: 2
|
||||
# Maximum amount of words to display before a matched word in the preview
|
||||
# Default: 5
|
||||
preview_words_before: 3
|
||||
# Maximum amount of words to display after a matched word in the preview
|
||||
# Default: 10
|
||||
preview_words_after: 3
|
||||
# Set the search token separator
|
||||
# Default: /[\s\-/]+/
|
||||
# Example: enable support for hyphenated search words
|
||||
tokenizer_separator: /[\s/]+/
|
||||
# Display the relative url in search results
|
||||
# Supports true (default) or false
|
||||
rel_url: true
|
||||
# Enable or disable the search button that appears in the bottom right corner of every page
|
||||
# Supports true or false (default)
|
||||
button: false
|
||||
|
||||
# For copy button on code
|
||||
enable_copy_code_button: true
|
||||
|
||||
# By default, consuming the theme as a gem leaves mermaid disabled; it is opt-in
|
||||
mermaid:
|
||||
# Version of mermaid library
|
||||
# Pick an available version from https://cdn.jsdelivr.net/npm/mermaid/
|
||||
version: "10.5.0"
|
||||
# Put any additional configuration, such as setting the theme, in _includes/mermaid_config.js
|
||||
# See also docs/ui-components/code
|
||||
# To load mermaid from a local library, also use the `path` key to specify the location of the library; e.g.
|
||||
# for (v10+):
|
||||
# path: "/assets/js/mermaid.esm.min.mjs"
|
||||
# for (<v10):
|
||||
# path: "/assets/js/mermaid.min.js"
|
||||
# Note: copy both `mermaid.esm.min.mjs` (v10+) or `mermaid.min.js` (<v10) and the associated `.map` file from the specified version of `mermaid/dist` to `/assets/js/`.
|
||||
|
||||
# Enable or disable heading anchors
|
||||
heading_anchors: true
|
||||
|
||||
# Aux links for the upper right navigation
|
||||
aux_links:
|
||||
"Interested in the source of this?":
|
||||
- "https://github.com/remoteintech/remote-jobs"
|
||||
|
||||
# Makes Aux links open in a new tab. Default is false
|
||||
aux_links_new_tab: false
|
||||
|
||||
# Sort order for navigation links
|
||||
# nav_sort: case_insensitive # default, equivalent to nil
|
||||
nav_sort: case_sensitive # Capital letters sorted before lowercase
|
||||
|
||||
# External navigation links
|
||||
nav_external_links:
|
||||
- title: Nav - Interested in the source of this?
|
||||
url: https://github.com/remoteintech/remote-jobs
|
||||
|
||||
# Footer content
|
||||
# appears at the bottom of every page's main content
|
||||
|
||||
# Back to top link
|
||||
back_to_top: true
|
||||
back_to_top_text: "Back to top"
|
||||
|
||||
footer_content: "Powered by <a href=\"https://github.com/remoteintech/remote-jobs/graphs/contributors\">contributors.</a> <a href=\"https://github.com/dougaitken\">Maintained by Doug.</a>"
|
||||
|
||||
# Footer last edited timestamp
|
||||
last_edit_timestamp: true # show or hide edit time - page must have `last_modified_date` defined in the frontmatter
|
||||
last_edit_time_format: "%b %e %Y at %I:%M %p" # uses ruby's time format: https://ruby-doc.org/stdlib-2.7.0/libdoc/time/rdoc/Time.html
|
||||
|
||||
|
||||
# Footer "Edit this page on GitHub" link text
|
||||
# gh_edit_link: true # show or hide edit this page link
|
||||
# gh_edit_link_text: "Edit this page on GitHub"
|
||||
# gh_edit_repository: "https://github.com/remoteintech/remote-jobs" # the github URL for your repo
|
||||
# gh_edit_branch: "main" # the branch that your docs is served from
|
||||
# gh_edit_source: docs # the source that your files originate from
|
||||
# gh_edit_view_mode: "tree" # "tree" or "edit" if you want the user to jump into the editor immediately
|
||||
|
||||
# Color scheme currently only supports "dark", "light"/nil (default), or a custom scheme that you define
|
||||
color_scheme: nil
|
||||
|
||||
callouts_level: quiet # or loud
|
||||
callouts:
|
||||
highlight:
|
||||
color: yellow
|
||||
important:
|
||||
title: Important
|
||||
color: blue
|
||||
new:
|
||||
title: New
|
||||
color: green
|
||||
note:
|
||||
title: Note
|
||||
color: purple
|
||||
warning:
|
||||
title: Warning
|
||||
color: red
|
||||
|
||||
plugins:
|
||||
- jekyll-seo-tag
|
||||
- jekyll-github-metadata
|
||||
- jekyll-include-cache
|
||||
|
||||
kramdown:
|
||||
syntax_highlighter_opts:
|
||||
block:
|
||||
line_numbers: false
|
||||
|
||||
compress_html:
|
||||
clippings: all
|
||||
comments: all
|
||||
endings: all
|
||||
startings: []
|
||||
blanklines: false
|
||||
profile: false
|
||||
# ignore:
|
||||
# envs: all
|
|
@ -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/
|
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;).
|
||||
|
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/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
|
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/
|
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)
|
Loading…
Add table
Reference in a new issue