Merge branch 'remoteintech:main' into main

This commit is contained in:
Janvi 2023-10-13 21:45:24 +05:30 committed by GitHub
commit 05501f82b7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 461 additions and 126 deletions

8
.github/dependabot.yml vendored Normal file
View file

@ -0,0 +1,8 @@
version: 2
updates:
- package-ecosystem: bundler
directory: /
schedule:
interval: daily
allow:
- dependency-type: direct

View file

@ -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
View 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
View file

@ -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
View 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
View 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

View file

@ -147,6 +147,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
@ -392,6 +393,7 @@ Name | Website | Region
[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/ |
@ -495,6 +497,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

179
_config.yml Normal file
View 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

View file

@ -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>

View file

@ -0,0 +1,25 @@
# CloudEra
## Company blurb
Explore opportunities at Cloudera
Were 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

29
company-profiles/karat.md Normal file
View file

@ -0,0 +1,29 @@
# Karat
## Company blurb
Karat created the worlds 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. Karats 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/)

View 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

8
index.md Normal file
View file

@ -0,0 +1,8 @@
---
title: Home
layout: home
---
Hello.
----