mirror of
https://github.com/remoteintech/remote-jobs
synced 2024-11-10 06:34:22 +00:00
Merge branch 'main' into patch-1
This commit is contained in:
commit
3c7343028c
16 changed files with 546 additions and 129 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}}"
|
64
.github/workflows/jekyll.yml
vendored
Normal file
64
.github/workflows/jekyll.yml
vendored
Normal file
|
@ -0,0 +1,64 @@
|
|||
# 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
|
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/
|
13
Gemfile
Normal file
13
Gemfile
Normal file
|
@ -0,0 +1,13 @@
|
|||
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
Normal file
81
Gemfile.lock
Normal file
|
@ -0,0 +1,81 @@
|
|||
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
|
|
@ -17,6 +17,7 @@ Name | Website | Region
|
|||
[1Password](/company-profiles/1password.md) | https://www.1password.com | North America, UK
|
||||
[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
|
||||
|
@ -157,6 +158,7 @@ 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
|
||||
|
@ -265,6 +267,7 @@ Name | Website | Region
|
|||
[Fireball Labs](/company-profiles/fireball-labs.md) | https://www.fireballlabs.com | Germany
|
||||
[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
|
||||
|
@ -364,6 +367,7 @@ 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
|
||||
|
@ -480,6 +484,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
|
||||
|
|
179
_config.yml
Normal file
179
_config.yml
Normal file
|
@ -0,0 +1,179 @@
|
|||
# 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,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>
|
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/
|
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)
|
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/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.
|
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/)
|
||||
|
8
index.md
Normal file
8
index.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
title: Home
|
||||
layout: home
|
||||
---
|
||||
|
||||
Hello.
|
||||
|
||||
----
|
Loading…
Reference in a new issue