mirror of
https://github.com/remoteintech/remote-jobs
synced 2025-01-12 20:48:42 +00:00
Make company headings consistent (#407)
* Change "Office Locations" to "Office locations" for consistent casing * Standardize other company headings * Validate heading names * Add a way to look at headings of all profiles at once
This commit is contained in:
parent
4eb1208c8f
commit
c00635038d
188 changed files with 266 additions and 210 deletions
|
@ -19,6 +19,22 @@ const contentPath = (
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Define the heading names expected in company profiles.
|
||||||
|
*/
|
||||||
|
const headingsRequired = [
|
||||||
|
'Company blurb',
|
||||||
|
];
|
||||||
|
const headingsOptional = [
|
||||||
|
'Company size',
|
||||||
|
'Remote status',
|
||||||
|
'Region',
|
||||||
|
'Company technologies',
|
||||||
|
'Office locations',
|
||||||
|
'How to apply',
|
||||||
|
];
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Build list of Markdown files containing company profiles.
|
* Build list of Markdown files containing company profiles.
|
||||||
*/
|
*/
|
||||||
|
@ -126,6 +142,8 @@ $( 'tr' ).each( ( i, tr ) => {
|
||||||
* Scan the individual Markdown files containing the company profiles.
|
* Scan the individual Markdown files containing the company profiles.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
const allProfileHeadings = {};
|
||||||
|
|
||||||
profileFilenames.forEach( filename => {
|
profileFilenames.forEach( filename => {
|
||||||
function error( msg, ...params ) {
|
function error( msg, ...params ) {
|
||||||
errorCount++;
|
errorCount++;
|
||||||
|
@ -181,8 +199,52 @@ profileFilenames.forEach( filename => {
|
||||||
) {
|
) {
|
||||||
error( 'No link to company profile from readme' );
|
error( 'No link to company profile from readme' );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Build and validate list of headings contained in this Markdown profile.
|
||||||
|
|
||||||
|
const profileHeadings = [];
|
||||||
|
|
||||||
|
$( 'h2' ).each( ( i, el ) => {
|
||||||
|
const headingName = $( el ).html();
|
||||||
|
profileHeadings.push( headingName );
|
||||||
|
if (
|
||||||
|
headingsRequired.indexOf( headingName ) === -1 &&
|
||||||
|
headingsOptional.indexOf( headingName ) === -1
|
||||||
|
) {
|
||||||
|
error(
|
||||||
|
'Invalid heading name: "%s". Expected one of: %s',
|
||||||
|
headingName,
|
||||||
|
JSON.stringify( headingsRequired.concat( headingsOptional ) )
|
||||||
|
);
|
||||||
|
}
|
||||||
|
// Track headings across all profiles
|
||||||
|
if ( ! allProfileHeadings[ headingName ] ) {
|
||||||
|
allProfileHeadings[ headingName ] = [];
|
||||||
|
}
|
||||||
|
allProfileHeadings[ headingName ].push( filename );
|
||||||
|
} );
|
||||||
|
|
||||||
|
headingsRequired.forEach( headingName => {
|
||||||
|
if ( profileHeadings.indexOf( headingName ) === -1 ) {
|
||||||
|
error(
|
||||||
|
'Required heading "%s" not found.',
|
||||||
|
headingName
|
||||||
|
);
|
||||||
|
}
|
||||||
|
} );
|
||||||
} );
|
} );
|
||||||
|
|
||||||
|
if ( process.env.REPORT_PROFILE_HEADINGS ) {
|
||||||
|
console.log();
|
||||||
|
console.log(
|
||||||
|
'Profile headings by count (%d total profiles):',
|
||||||
|
profileFilenames.length
|
||||||
|
);
|
||||||
|
Object.keys( allProfileHeadings ).forEach( heading => {
|
||||||
|
console.log( '%s: %d', heading, allProfileHeadings[ heading ].length )
|
||||||
|
} );
|
||||||
|
}
|
||||||
|
|
||||||
console.log();
|
console.log();
|
||||||
console.log(
|
console.log(
|
||||||
'%d problem%s detected',
|
'%d problem%s detected',
|
||||||
|
|
|
@ -30,7 +30,7 @@ We have employees all around the world, from across the US to the UK to South Af
|
||||||
* Nginx
|
* Nginx
|
||||||
* Memcache
|
* Memcache
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
None; or everywhere!
|
None; or everywhere!
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ Worldwide
|
||||||
|
|
||||||
iOS, React, Knockout, Rails, Perl, HTML, Sql, Ruby, JQuery
|
iOS, React, Knockout, Rails, Perl, HTML, Sql, Ruby, JQuery
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Not known
|
Not known
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,7 @@ U.S. citizens, non-citizens who are nationals of the U.S., or people who have be
|
||||||
|
|
||||||
Ruby, Python, HTML, CSS, JavaScript
|
Ruby, Python, HTML, CSS, JavaScript
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Federal buildings in San Francisco, Chicago, New York City, and Washington D.C.
|
Federal buildings in San Francisco, Chicago, New York City, and Washington D.C.
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,7 @@ The bulk of our engineering team is in Europe so we generally prefer candidates
|
||||||
* We make extensive use of a wide array of AWS services
|
* We make extensive use of a wide array of AWS services
|
||||||
* We host our code in Git
|
* We host our code in Git
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
London, United Kingdom
|
London, United Kingdom
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ Worldwide - Acquia is an international company with office locations around the
|
||||||
- JavaScript
|
- JavaScript
|
||||||
- Ruby
|
- Ruby
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
- Boston, MA, USA (Headquarters)
|
- Boston, MA, USA (Headquarters)
|
||||||
- Gent, Belgium
|
- Gent, Belgium
|
||||||
|
|
|
@ -24,7 +24,7 @@ USA only for the time being: many of our contracts with the US government requir
|
||||||
- HTML
|
- HTML
|
||||||
- CSS
|
- CSS
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
None! We have a small coworking space for our DC team, but otherwise everyone works remotely.
|
None! We have a small coworking space for our DC team, but otherwise everyone works remotely.
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ Main office is located at Geneva, Switzerland. There is one small office in Wroc
|
||||||
* Redis
|
* Redis
|
||||||
* React
|
* React
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
[Geneva, CH](https://www.google.ch/maps/place/Boulevard+de+Saint-Georges+72,+1205+Genève/)
|
[Geneva, CH](https://www.google.ch/maps/place/Boulevard+de+Saint-Georges+72,+1205+Genève/)
|
||||||
|
|
||||||
## How to apply
|
## How to apply
|
||||||
|
|
|
@ -20,7 +20,7 @@ Worldwide. Right now we have folks distributed throughout North America and Euro
|
||||||
|
|
||||||
\<Unknown\>
|
\<Unknown\>
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Toronto, Ontario
|
Toronto, Ontario
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@ Worldwide
|
||||||
|
|
||||||
Ruby on Rails, React, jQuery
|
Ruby on Rails, React, jQuery
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Worldwide
|
Worldwide
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ Worldwide, but we work primarily on US timezones.
|
||||||
- Kubernetes
|
- Kubernetes
|
||||||
- Docker
|
- Docker
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
- Seattle, WA
|
- Seattle, WA
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ USA
|
||||||
|
|
||||||
Ruby and RoR, Javascript, AngularJS, Coffeescript, iOS, Android, MySQL, HTML/CSS, Java and Spring
|
Ruby and RoR, Javascript, AngularJS, Coffeescript, iOS, Android, MySQL, HTML/CSS, Java and Spring
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
\<Unknown\>
|
\<Unknown\>
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,7 @@ Our remote engineers work the same hours as our New York and London offices depe
|
||||||
* PostgreSQL
|
* PostgreSQL
|
||||||
* Git
|
* Git
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Our engineering offices are located in New York City and London. We have other offices in Dubai, Shanghai, Seoul, and San Francisco.
|
Our engineering offices are located in New York City and London. We have other offices in Dubai, Shanghai, Seoul, and San Francisco.
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ We employ several strategies that ensure inclusive and collaborative environment
|
||||||
* Jade
|
* Jade
|
||||||
* Stylus
|
* Stylus
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
[Richland, WA](https://www.google.com/maps/place/110+Gage+Blvd,+Richland,+WA+99352)
|
[Richland, WA](https://www.google.com/maps/place/110+Gage+Blvd,+Richland,+WA+99352)
|
||||||
|
|
||||||
## How to apply
|
## How to apply
|
||||||
|
|
|
@ -27,7 +27,7 @@ Latin America - Anexus is a regional company with offices in Costa Rica but a te
|
||||||
- ReactJS
|
- ReactJS
|
||||||
- Symfony
|
- Symfony
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
- San Jose, Costa Rica (Headquarters)
|
- San Jose, Costa Rica (Headquarters)
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@ US-based employees only.
|
||||||
|
|
||||||
CTO Scott Trudeau wrote a gist about their [stack, product team, and mentions working remotely](https://gist.github.com/sstrudeau/f563dc72739e9e047de5)
|
CTO Scott Trudeau wrote a gist about their [stack, product team, and mentions working remotely](https://gist.github.com/sstrudeau/f563dc72739e9e047de5)
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Company office in [NYC - 270 Lafayette St Fl 12 (Prince St.), New York, NY 10012, United States](https://www.google.com/maps/place/Apartment+Therapy/@40.7240504,-73.9965837,20z/data=!4m7!1m4!3m3!1s0x89c27c75f5d73d85:0x4fd9ab773fad77d1!2sProject+Real+Apartment+Treatment,+55+N+Ocean+Ave+%23+2,+Freeport,+NY+11520!3b1!3m1!1s0x0000000000000000:0x9f96cb380f7dbcf7)
|
Company office in [NYC - 270 Lafayette St Fl 12 (Prince St.), New York, NY 10012, United States](https://www.google.com/maps/place/Apartment+Therapy/@40.7240504,-73.9965837,20z/data=!4m7!1m4!3m3!1s0x89c27c75f5d73d85:0x4fd9ab773fad77d1!2sProject+Real+Apartment+Treatment,+55+N+Ocean+Ave+%23+2,+Freeport,+NY+11520!3b1!3m1!1s0x0000000000000000:0x9f96cb380f7dbcf7)
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ Worldwide
|
||||||
|
|
||||||
LAMP
|
LAMP
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
US, UK, Israel offices
|
US, UK, Israel offices
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,7 @@ We work with an extensive range of languages and technologies.
|
||||||
* C#
|
* C#
|
||||||
* Git
|
* Git
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Headquarters in Pasadena, CA and offices throughout the US.
|
Headquarters in Pasadena, CA and offices throughout the US.
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ UTC-8 to UTC+2
|
||||||
|
|
||||||
PHP, Python, JavaScript, git, MySQL, HTML, CSS, Django, Symfony, Ansible, Docker, Jenkins, Nginx, Azure, AWS, Ubuntu, CentOS, RedHat.
|
PHP, Python, JavaScript, git, MySQL, HTML, CSS, Django, Symfony, Ansible, Docker, Jenkins, Nginx, Azure, AWS, Ubuntu, CentOS, RedHat.
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
New Westminster, BC.
|
New Westminster, BC.
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ Worldwide
|
||||||
|
|
||||||
.NET, C#
|
.NET, C#
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
244 5th Avenue, Suite 2960, New York, NY 10001
|
244 5th Avenue, Suite 2960, New York, NY 10001
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@ A good amount of our code is open source on [GitHub](https://github.com/astronom
|
||||||
|
|
||||||
We publish a variety of technical posts on [our blog](https://www.astronomer.io/blog) and [Medium publication](https://medium.com/the-astronomer-journey/latest).
|
We publish a variety of technical posts on [our blog](https://www.astronomer.io/blog) and [Medium publication](https://medium.com/the-astronomer-journey/latest).
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Cincinnati, OH
|
Cincinnati, OH
|
||||||
|
|
||||||
|
|
|
@ -35,7 +35,7 @@ Also be familiar with:
|
||||||
* JSON Web Tokens
|
* JSON Web Tokens
|
||||||
* OAuth, OpenID Connect
|
* OAuth, OpenID Connect
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
8 office locations
|
8 office locations
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ Worldwide - our team members hail from all over, every continent except Antarcti
|
||||||
|
|
||||||
WordPress, [JavaScript (Node/React/Redux)](https://ma.tt/2015/11/dance-to-calypso/), PHP, Spark, Kafka, Elasticsearch, Impala/Hive, MySQL, Java, Python
|
WordPress, [JavaScript (Node/React/Redux)](https://ma.tt/2015/11/dance-to-calypso/), PHP, Spark, Kafka, Elasticsearch, Impala/Hive, MySQL, Java, Python
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
We no longer have an official physical office.
|
We no longer have an official physical office.
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,7 @@ Worldwide - Axelerant team members work from home, cafes, or co-working spaces.
|
||||||
* JavaScript
|
* JavaScript
|
||||||
* Ruby
|
* Ruby
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
* Atlanta, United States
|
* Atlanta, United States
|
||||||
* Gurgaon, India
|
* Gurgaon, India
|
||||||
|
|
|
@ -20,7 +20,7 @@ We currently have employees in the U.S. and in several European countries.
|
||||||
|
|
||||||
\<Unknown\>
|
\<Unknown\>
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
We have one office in Bologna, Italy. All other employees work from home.
|
We have one office in Bologna, Italy. All other employees work from home.
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ Worldwide
|
||||||
|
|
||||||
unknown
|
unknown
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
There is no Bandcamp office. Our team is sprinkled throughout the world.
|
There is no Bandcamp office. Our team is sprinkled throughout the world.
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@ Worldwide - Bandzoogle is remote-only.
|
||||||
|
|
||||||
RoR, Ember.js, APIs
|
RoR, Ember.js, APIs
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
No physical location.
|
No physical location.
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ Worldwide.
|
||||||
|
|
||||||
PHP, jQuery
|
PHP, jQuery
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
None, 100% remote.
|
None, 100% remote.
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ Worldwide
|
||||||
|
|
||||||
Ruby, Rails, CoffeeScript, Backbone.js, Memcached, MySQL, S3
|
Ruby, Rails, CoffeeScript, Backbone.js, Memcached, MySQL, S3
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
While people who work at Basecamp can live and work anywhere they want, about 14 of us work out of our Chicago headquarters.
|
While people who work at Basecamp can live and work anywhere they want, about 14 of us work out of our Chicago headquarters.
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ Currently we are only set up for US-based remote employees.
|
||||||
|
|
||||||
Rails, Ember, JSON API, MySQL, Elasticsearch, Redis, Riak, Redshift
|
Rails, Ember, JSON API, MySQL, Elasticsearch, Redis, Riak, Redshift
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Salt Lake City, Utah
|
Salt Lake City, Utah
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ US, currently.
|
||||||
|
|
||||||
Rails, primarily, with some Wordpress clients.
|
Rails, primarily, with some Wordpress clients.
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Omaha, Nebraska, yo!
|
Omaha, Nebraska, yo!
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,7 @@ We have employees all around the world, with the bulk of our engineering team in
|
||||||
* We host our code in Git
|
* We host our code in Git
|
||||||
* We have a heavy bias towards deploying our services on Kubernetes
|
* We have a heavy bias towards deploying our services on Kubernetes
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
San Francisco, USA and Seville, Spain.
|
San Francisco, USA and Seville, Spain.
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ A team of developers (and designers) located around the US, Canada, and Croatia.
|
||||||
|
|
||||||
JavaScript, HTML, CSS, etc.
|
JavaScript, HTML, CSS, etc.
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Headquarters in Chicago, USA.
|
Headquarters in Chicago, USA.
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ Worldwide
|
||||||
|
|
||||||
Ruby on Rails, ReactJS, Elixir, Phoenix
|
Ruby on Rails, ReactJS, Elixir, Phoenix
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
There is no official office. Some of us choose to work in co-working space together when they're in the same city.
|
There is no official office. Some of us choose to work in co-working space together when they're in the same city.
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,7 @@ Currently our Engineers and Staff work in the US and some are spread across the
|
||||||
- Jenkins
|
- Jenkins
|
||||||
- Vue.js, Knockout
|
- Vue.js, Knockout
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
BriteCore's head office is in Springfield, Missouri.
|
BriteCore's head office is in Springfield, Missouri.
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ Buffer employs people worldwide
|
||||||
|
|
||||||
Redshift, Hadoop, MongoDB JavaScript, PHP, Underscore, Backbone.
|
Redshift, Hadoop, MongoDB JavaScript, PHP, Underscore, Backbone.
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
No physical office, recently sold HQ and all employees work remotely.
|
No physical office, recently sold HQ and all employees work remotely.
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ Worldwide, or "home based", their open vacancies can be search by [location or r
|
||||||
Canonical use a variety of technologies across their range of products or services, the company are behind Ubuntu, the server, Desktop, and mobile operating system.
|
Canonical use a variety of technologies across their range of products or services, the company are behind Ubuntu, the server, Desktop, and mobile operating system.
|
||||||
Canonical has also created several important tools to help customers build, manage and scale their clouds. For telcos and enterprises, Landscape helps administrators deploy and manage Ubuntu clouds cost-effectively. And whether you are using your own cloud or someone else’s, Juju and MAAS drastically reduce the time, cost and complexity of deploying and scaling in any cloud environment.
|
Canonical has also created several important tools to help customers build, manage and scale their clouds. For telcos and enterprises, Landscape helps administrators deploy and manage Ubuntu clouds cost-effectively. And whether you are using your own cloud or someone else’s, Juju and MAAS drastically reduce the time, cost and complexity of deploying and scaling in any cloud environment.
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Canonical Ltd - Douglas, IOM
|
Canonical Ltd - Douglas, IOM
|
||||||
Canonical Group Ltd - London, UK
|
Canonical Group Ltd - London, UK
|
||||||
|
|
|
@ -20,7 +20,7 @@ CareMessage employs people worldwide
|
||||||
|
|
||||||
Ruby, Rails, JavaScript, AngularJS, PostgreSQL, Redis
|
Ruby, Rails, JavaScript, AngularJS, PostgreSQL, Redis
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
San Francisco
|
San Francisco
|
||||||
|
|
||||||
|
|
|
@ -40,7 +40,7 @@ CartoDB has a lovely [attributions page](https://cartodb.com/attributions/) with
|
||||||
| | Mapnik | |
|
| | Mapnik | |
|
||||||
| | CartoCSS | |
|
| | CartoCSS | |
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Madrid & NYC
|
Madrid & NYC
|
||||||
|
|
||||||
|
|
|
@ -41,7 +41,7 @@ Our technology stack is not set in stone, but this is what we are currently usin
|
||||||
- CQRS - Axon Framework
|
- CQRS - Axon Framework
|
||||||
- Git
|
- Git
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
- Swieqi, Malta
|
- Swieqi, Malta
|
||||||
- Barcelona, Spain
|
- Barcelona, Spain
|
||||||
|
|
|
@ -23,7 +23,7 @@ Worldwide - Mainly US based employees but with one in Brazil and another in Aust
|
||||||
|
|
||||||
RoR, AWS, Docker
|
RoR, AWS, Docker
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Head office is located in Needham, MA
|
Head office is located in Needham, MA
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ Mainly USA but some UK
|
||||||
|
|
||||||
Chef
|
Chef
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Chef Seattle
|
Chef Seattle
|
||||||
619 Western Ave, Suite 400
|
619 Western Ave, Suite 400
|
||||||
|
|
|
@ -28,7 +28,7 @@ Not specified.
|
||||||
* Perl
|
* Perl
|
||||||
* Linux
|
* Linux
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Fulton, Maryland
|
Fulton, Maryland
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ The main offices are in New York, San Francisco, Santa Monica, Portland and Seat
|
||||||
* Python
|
* Python
|
||||||
* Javascript
|
* Javascript
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
The main offices are in New York, San Francisco, Santa Monica, Portland and Seattle.
|
The main offices are in New York, San Francisco, Santa Monica, Portland and Seattle.
|
||||||
|
|
||||||
## How to apply
|
## How to apply
|
||||||
|
|
|
@ -20,7 +20,7 @@ Nearly 100 employees
|
||||||
|
|
||||||
JS, node, Python, RoR, PHP, Java,
|
JS, node, Python, RoR, PHP, Java,
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
379 W Broadway, 2nd Floor, New York, NY
|
379 W Broadway, 2nd Floor, New York, NY
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ overlap with US business hours.
|
||||||
|
|
||||||
Python, JavaScript, HTML5/CSS, MongoDB, Elasticsearch, Postgres, AWS, Puppet
|
Python, JavaScript, HTML5/CSS, MongoDB, Elasticsearch, Postgres, AWS, Puppet
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Palo Alto, CA
|
Palo Alto, CA
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ Worldwide
|
||||||
|
|
||||||
AngularJS, Node.js, Android (Java), iOS (Objective-c, Swift), HTML5, CSS, JavaScript, PHP, Ruby, React, Wordpress, C#, Sails.js, Python, .NET, MongoDB, Postgres, SQL
|
AngularJS, Node.js, Android (Java), iOS (Objective-c, Swift), HTML5, CSS, JavaScript, PHP, Ruby, React, Wordpress, C#, Sails.js, Python, .NET, MongoDB, Postgres, SQL
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Buenos Aires, Argentina
|
Buenos Aires, Argentina
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ Anywhere
|
||||||
|
|
||||||
JavaScript, jQuery, React, Ruby on Rails, CloudFlare, AWS
|
JavaScript, jQuery, React, Ruby on Rails, CloudFlare, AWS
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
The team is 100% remote, but there's a mailing address advertised at:
|
The team is 100% remote, but there's a mailing address advertised at:
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Codestunts
|
# Codestunts
|
||||||
|
|
||||||
## Company Codestunts
|
## Company blurb
|
||||||
|
|
||||||
Codestunts connects freelance software developers with lean entrepreneurs and digital agencies. Our job is connect you with a merchant/buyer and guide from recruitment to payment and solving the possible problems between parties.
|
Codestunts connects freelance software developers with lean entrepreneurs and digital agencies. Our job is connect you with a merchant/buyer and guide from recruitment to payment and solving the possible problems between parties.
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ Worldwide
|
||||||
|
|
||||||
PHP, Node.js, MariaDB, Android, IOS
|
PHP, Node.js, MariaDB, Android, IOS
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
The room where you read this line
|
The room where you read this line
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ Worldwide, but remote technical roles are USA only.
|
||||||
* AWS
|
* AWS
|
||||||
* Git
|
* Git
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
* Leesburg, VA, USA (Headquarters)
|
* Leesburg, VA, USA (Headquarters)
|
||||||
* New York City, NY, USA
|
* New York City, NY, USA
|
||||||
|
|
|
@ -24,7 +24,7 @@ We are open to members anywhere. *(We know the possible Mars One members will ha
|
||||||
* Git
|
* Git
|
||||||
* Server administration *(all meanings that could put here)*
|
* Server administration *(all meanings that could put here)*
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Salvador, Bahia, Brasil.
|
Salvador, Bahia, Brasil.
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ project (IPFS, Scala, Java, Go, Python, React, Elasticsearch, Rust...)
|
||||||
|
|
||||||
For remote communication, Slack, Zoom, and Quip.
|
For remote communication, Slack, Zoom, and Quip.
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
San Francisco, New York, Toronto, Bucharest, Dubai
|
San Francisco, New York, Toronto, Bucharest, Dubai
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ Worldwide
|
||||||
Node.JS
|
Node.JS
|
||||||
MongoDB
|
MongoDB
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Devonshire House
|
Devonshire House
|
||||||
60 Goswell Road
|
60 Goswell Road
|
||||||
|
|
|
@ -30,7 +30,7 @@ Convert.com is a 100% remote company and fully encourages remote friendly work.
|
||||||
- Vagrant
|
- Vagrant
|
||||||
- Webpack
|
- Webpack
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
No physical office, all employees work remotely.
|
No physical office, all employees work remotely.
|
||||||
|
|
||||||
## How to apply
|
## How to apply
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
# Corgibytes
|
# Corgibytes
|
||||||
|
|
||||||
## Our mission
|
|
||||||
|
|
||||||
To maintain and improve the world's existing code.
|
|
||||||
|
|
||||||
## Company blurb
|
## Company blurb
|
||||||
|
|
||||||
**Fixing & updating existing code is our speciality**
|
**Fixing & updating existing code is our speciality**
|
||||||
Every member of the Corgibytes team is a consummate problem solver. We love tinkering, testing, and turning frustration into relief. Some call us craftsman. Others, code whisperers. We just have a knack for identifying problems and building solutions. Spaghetti code? We love it. Or, at least making it better.
|
Every member of the Corgibytes team is a consummate problem solver. We love tinkering, testing, and turning frustration into relief. Some call us craftsman. Others, code whisperers. We just have a knack for identifying problems and building solutions. Spaghetti code? We love it. Or, at least making it better.
|
||||||
|
|
||||||
|
**Our mission**
|
||||||
|
To maintain and improve the world's existing code.
|
||||||
|
|
||||||
**Our vision**
|
**Our vision**
|
||||||
Codebases are nurtured to provide the highest value for the longest time.
|
Codebases are nurtured to provide the highest value for the longest time.
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,7 @@ We use CakePHP, Rails, MySQL, LESS, and jQuery.
|
||||||
And/or: Rails, Postgres, Redis, RSpec + Capybara, Sidekiq
|
And/or: Rails, Postgres, Redis, RSpec + Capybara, Sidekiq
|
||||||
And/or: HTML, CSS/LESS, JS/jQuery
|
And/or: HTML, CSS/LESS, JS/jQuery
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Montreal, Canada
|
Montreal, Canada
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ For technical hires, we're looking anywhere in the United States. For non-techni
|
||||||
- DynamoDB
|
- DynamoDB
|
||||||
- ElasticSearch
|
- ElasticSearch
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Offices arise when there is a critical mass in one city. So far, that's just New York.
|
Offices arise when there is a critical mass in one city. So far, that's just New York.
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ Worldwide! We have or have had people based in Germany, the UK, the US, and Cana
|
||||||
* CSS
|
* CSS
|
||||||
* HTML
|
* HTML
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Portland, OR, USA
|
Portland, OR, USA
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,7 @@ MySQL
|
||||||
Nginx
|
Nginx
|
||||||
Python
|
Python
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Amsterdam : Singel 373, 1012 WL, Amsterdam, Netherlands
|
Amsterdam : Singel 373, 1012 WL, Amsterdam, Netherlands
|
||||||
Paris (Levallois-Perret) : 55 rue Raspail, 92300, Levallois-Perret, France
|
Paris (Levallois-Perret) : 55 rue Raspail, 92300, Levallois-Perret, France
|
||||||
|
|
|
@ -24,7 +24,7 @@ Worldwide
|
||||||
- angular
|
- angular
|
||||||
- material design
|
- material design
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
None; or everywhere!
|
None; or everywhere!
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ Worldwide - We have employees that work from the America to Europe, and even som
|
||||||
- Django
|
- Django
|
||||||
- Git
|
- Git
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
- Milan, Italy
|
- Milan, Italy
|
||||||
- São Paulo, Brazil
|
- São Paulo, Brazil
|
||||||
|
|
|
@ -24,7 +24,7 @@ Worldwide given job openings
|
||||||
|
|
||||||
\<unknown\>
|
\<unknown\>
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
New York City - Headquarters
|
New York City - Headquarters
|
||||||
Datadog, Inc. • 620 8th Ave, 45th Floor • New York, NY 10018
|
Datadog, Inc. • 620 8th Ave, 45th Floor • New York, NY 10018
|
||||||
|
|
|
@ -8,7 +8,7 @@ At DGraph, we have built a scalable, distributed, low latency, high throughput G
|
||||||
|
|
||||||
Four-member team as shown on [team page](http://dgraph.io/#team).
|
Four-member team as shown on [team page](http://dgraph.io/#team).
|
||||||
|
|
||||||
## Remote Status
|
## Remote status
|
||||||
|
|
||||||
We encourage remote work. We even cover the expenses for a co-working space in the city of your choice.
|
We encourage remote work. We even cover the expenses for a co-working space in the city of your choice.
|
||||||
|
|
||||||
|
@ -16,15 +16,15 @@ We encourage remote work. We even cover the expenses for a co-working space in t
|
||||||
|
|
||||||
North and South America. We like to have at least a 4-hour overlap when we can coordinate on a project if the need be.
|
North and South America. We like to have at least a 4-hour overlap when we can coordinate on a project if the need be.
|
||||||
|
|
||||||
## Company Technologies
|
## Company technologies
|
||||||
|
|
||||||
Go
|
Go
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
We don't have a central office. Most of the team would work out of SF or Vancouver.
|
We don't have a central office. Most of the team would work out of SF or Vancouver.
|
||||||
|
|
||||||
## How to Apply
|
## How to apply
|
||||||
|
|
||||||
Have a look at the [jobs](http://dgraph.io/#jobs) section on our website. If this looks interesting drop us an email at [join@dgraph.io](join@dgraph.io).
|
Have a look at the [jobs](http://dgraph.io/#jobs) section on our website. If this looks interesting drop us an email at [join@dgraph.io](join@dgraph.io).
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ Worldwide
|
||||||
|
|
||||||
Go, Perl, Ruby, Kafka, Consul, Chef, Prometheus, MemSQL, MySQL, Looker, Rsyslog, Open vSwitch, Libvirt, KVM, chef, git
|
Go, Perl, Ruby, Kafka, Consul, Chef, Prometheus, MemSQL, MySQL, Looker, Rsyslog, Open vSwitch, Libvirt, KVM, chef, git
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
DigitalOcean, Inc. 101 Ave of the Americas 10th Floor New York
|
DigitalOcean, Inc. 101 Ave of the Americas 10th Floor New York
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,7 @@ Discourse is a JavaScript application that runs in your web browser, using the E
|
||||||
|
|
||||||
The server side of Discourse is Ruby on Rails backed by a Postgres database and Redis cache. You can deploy our standard Discourse Docker container on any virtualized cloud server (digital ocean, amazon ec2, rackspace, azure) with 1 GB RAM.
|
The server side of Discourse is Ruby on Rails backed by a Postgres database and Redis cache. You can deploy our standard Discourse Docker container on any virtualized cloud server (digital ocean, amazon ec2, rackspace, azure) with 1 GB RAM.
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Entirely remote, team is distributed with employees in Australia, USA, Brazil, Canada, France, Singapore, India, New Zealand, Austria, and Norway.
|
Entirely remote, team is distributed with employees in Australia, USA, Brazil, Canada, France, Singapore, India, New Zealand, Austria, and Norway.
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ We are open to new team members living anywhere in the world.
|
||||||
|
|
||||||
Our web applications are typically developed in Ruby or Go. Our DNS servers are written in Erlang. We use Chef for automating our operational environments.
|
Our web applications are typically developed in Ruby or Go. Our DNS servers are written in Erlang. We use Chef for automating our operational environments.
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
We have none.
|
We have none.
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ Worldwide
|
||||||
|
|
||||||
Android, iOS/OS X, Windows, Python, Django, Ruby on Rails, Javascript, HTML, CSS, CoffeeScript, React, MYSQL, Redis, GIT, Wordpress, C#, C++
|
Android, iOS/OS X, Windows, Python, Django, Ruby on Rails, Javascript, HTML, CSS, CoffeeScript, React, MYSQL, Redis, GIT, Wordpress, C#, C++
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
R&D office in Porto, Portugal
|
R&D office in Porto, Portugal
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ Remote friendly! (We use Slack, GitHub, etc.)
|
||||||
|
|
||||||
Python, Golang, AngularJS, AWS
|
Python, Golang, AngularJS, AWS
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
New York, NY & Philadelphia, PA
|
New York, NY & Philadelphia, PA
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ You're expected to maintain a regular day-to-day schedule and be in the 'office'
|
||||||
|
|
||||||
JavaScript, TypeScript, Cordova, iOS, Android, Angular2, Python
|
JavaScript, TypeScript, Cordova, iOS, Android, Angular2, Python
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
San Francisco, USA
|
San Francisco, USA
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ US and Canada
|
||||||
|
|
||||||
Wordpress + Ruby on Rails (based on [careers page](http://meetedgar.com/careers/)).
|
Wordpress + Ruby on Rails (based on [careers page](http://meetedgar.com/careers/)).
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
We don't even HAVE a headquarters, unless you count our secret undersea laboratory.
|
We don't even HAVE a headquarters, unless you count our secret undersea laboratory.
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ Costa Rica, US, Anywhere.
|
||||||
|
|
||||||
Java, PHP, Ruby, JavaScript, Go, and anything that solves our client's needs.
|
Java, PHP, Ruby, JavaScript, Go, and anything that solves our client's needs.
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
- Alajuela, Costa Rica.
|
- Alajuela, Costa Rica.
|
||||||
- Atlanta, Georgia, US.
|
- Atlanta, Georgia, US.
|
||||||
|
|
|
@ -25,7 +25,7 @@ We have employees in all around the world.
|
||||||
- Ruby: Logstash
|
- Ruby: Logstash
|
||||||
- APIs: Perl, Python, Ruby, Golang ...
|
- APIs: Perl, Python, Ruby, Golang ...
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
- San Francisco, CA
|
- San Francisco, CA
|
||||||
- Amsterdam
|
- Amsterdam
|
||||||
|
|
|
@ -22,7 +22,7 @@ Envato is a fast growing company with headquarters in Melbourne.
|
||||||
|
|
||||||
## Company technologies
|
## Company technologies
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Headquarters in Melbourne, Australia. Team located around the world.
|
Headquarters in Melbourne, Australia. Team located around the world.
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ Worldwide
|
||||||
|
|
||||||
PHP, Postgres, Solr, Ruby, Hadoop, Go, JavaScript, CSS, Chef
|
PHP, Postgres, Solr, Ruby, Hadoop, Go, JavaScript, CSS, Chef
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Brooklyn, NY
|
Brooklyn, NY
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ All stuff located all over the world
|
||||||
|
|
||||||
Ruby on Rails, Ruby, Erlang, Scala, Go, Postgresql, Chef, React, Redux, Node.js
|
Ruby on Rails, Ruby, Erlang, Scala, Go, Postgresql, Chef, React, Redux, Node.js
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
6 Chaplygina St, Moscow, Russia, 105062
|
6 Chaplygina St, Moscow, Russia, 105062
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ Is your company open to US-based remote employees only? Other countries? Worldwi
|
||||||
|
|
||||||
Insert some of the technologies used in your company here.
|
Insert some of the technologies used in your company here.
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Insert your physical office locations here.
|
Insert your physical office locations here.
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ It doesn't matter where our team members are located, as long as they are passio
|
||||||
|
|
||||||
JavaScript, Python, HTML, CSS, XUL, Java (Android), C++, Objective-C
|
JavaScript, Python, HTML, CSS, XUL, Java (Android), C++, Objective-C
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
The company is located in Cologne, Germany. We pay for coworking space elsewhere if remote workers want it.
|
The company is located in Cologne, Germany. We pay for coworking space elsewhere if remote workers want it.
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@ Worldwide, but mostly Europe
|
||||||
|
|
||||||
You can check our stack on [StackShare](https://stackshare.io/findify)
|
You can check our stack on [StackShare](https://stackshare.io/findify)
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Although, we don't have an official office, the company is registered in Stockholm, Sweden
|
Although, we don't have an official office, the company is registered in Stockholm, Sweden
|
||||||
|
|
||||||
|
|
|
@ -45,7 +45,7 @@ Worldwide
|
||||||
- golang
|
- golang
|
||||||
- ruby
|
- ruby
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
New York, NY
|
New York, NY
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Formstack
|
# Formstack
|
||||||
|
|
||||||
## Company Blurb
|
## Company blurb
|
||||||
|
|
||||||
Formstack's birthday is February 28, 2006. We started as one guy trying to provide a simple data capture solution. Since then, our product has evolved into a robust platform that helps users of all industries better engage with their customers and manage data. Formstack is headquartered in Indianapolis, Indiana, but our 500,000+ users live and work all over the world.
|
Formstack's birthday is February 28, 2006. We started as one guy trying to provide a simple data capture solution. Since then, our product has evolved into a robust platform that helps users of all industries better engage with their customers and manage data. Formstack is headquartered in Indianapolis, Indiana, but our 500,000+ users live and work all over the world.
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ Formstack's birthday is February 28, 2006. We started as one guy trying to provi
|
||||||
|
|
||||||
60 staff and growing!
|
60 staff and growing!
|
||||||
|
|
||||||
## Remote Status
|
## Remote status
|
||||||
|
|
||||||
Formstack is a remote company, with employees in several states and countries. While, yes, this means 'stackers can work at home in their PJs, it also means we've developed a unique culture that thrives on transparency, communication, and fun. We know how to work hard and play hard from wherever we feel most productive - whether that's on a living room couch, in the Formstack office, or on a beach in Thailand.
|
Formstack is a remote company, with employees in several states and countries. While, yes, this means 'stackers can work at home in their PJs, it also means we've developed a unique culture that thrives on transparency, communication, and fun. We know how to work hard and play hard from wherever we feel most productive - whether that's on a living room couch, in the Formstack office, or on a beach in Thailand.
|
||||||
|
|
||||||
|
@ -16,11 +16,11 @@ Formstack is a remote company, with employees in several states and countries. W
|
||||||
|
|
||||||
Worldwide
|
Worldwide
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
8604 Allisonville Rd. Suite 300
|
8604 Allisonville Rd. Suite 300
|
||||||
Indianapolis, IN 46250
|
Indianapolis, IN 46250
|
||||||
|
|
||||||
## How to Apply
|
## How to apply
|
||||||
|
|
||||||
[Formstack Careers](https://www.formstack.com/careers)
|
[Formstack Careers](https://www.formstack.com/careers)
|
||||||
|
|
|
@ -18,7 +18,7 @@ Scotland, UK based company, remote worldwide
|
||||||
## Company technologies
|
## Company technologies
|
||||||
|
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
FreeAgent
|
FreeAgent
|
||||||
One Edinburgh Quay
|
One Edinburgh Quay
|
||||||
|
|
|
@ -22,7 +22,7 @@ Our positions require you to reside in western North America (Pacific or Mountai
|
||||||
|
|
||||||
Primarily front end: (HTML, CSS, JS), as well as Liquid. Some modest backend stuff, bring your favorite backend stack with you.
|
Primarily front end: (HTML, CSS, JS), as well as Liquid. Some modest backend stuff, bring your favorite backend stack with you.
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
No office! Well, except your office. But that's just for you. We don't bother you there.
|
No office! Well, except your office. But that's just for you. We don't bother you there.
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ Europe
|
||||||
- Coffeescript
|
- Coffeescript
|
||||||
- Sass
|
- Sass
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
London, UK
|
London, UK
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ USA
|
||||||
- Git
|
- Git
|
||||||
- JIRA, Confluence, Stash
|
- JIRA, Confluence, Stash
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
- Bloomington, IL
|
- Bloomington, IL
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,7 @@ We are primarily interested in hiring U.S. remote employees.
|
||||||
- Git
|
- Git
|
||||||
- NodeJS
|
- NodeJS
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
- Springfield, MO
|
- Springfield, MO
|
||||||
- Wilmington, NC
|
- Wilmington, NC
|
||||||
|
|
|
@ -26,7 +26,7 @@ Worldwide - We have employees in almost every time zone in the world! From San F
|
||||||
- Sass
|
- Sass
|
||||||
- Git
|
- Git
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
- San Francisco, CA
|
- San Francisco, CA
|
||||||
- Boulder, CO
|
- Boulder, CO
|
||||||
|
|
|
@ -22,7 +22,7 @@ world, regardless of location.
|
||||||
|
|
||||||
Python, Django, JavaScript, Angular, D3.js
|
Python, Django, JavaScript, Angular, D3.js
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Colorado, USA
|
Colorado, USA
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ While we don't take new dependencies lightly, we do aggressively scout for new t
|
||||||
|
|
||||||
That said, we do standardize when and where it makes sense. So far that's meant: Gitlab, Ubuntu, Vagrant, Salt, Docker, Ruby on Rails, JavaScript (Coffeescript), CSS (Stylus, LESS, Sass), HTML (Haml), Bash, some C#.NET MVC, and the typical myriad browser libraries including but not limited to `{jQuery, Bootstrap, Underscore, Backbone, Moment, Chart, Modernizr}.js`
|
That said, we do standardize when and where it makes sense. So far that's meant: Gitlab, Ubuntu, Vagrant, Salt, Docker, Ruby on Rails, JavaScript (Coffeescript), CSS (Stylus, LESS, Sass), HTML (Haml), Bash, some C#.NET MVC, and the typical myriad browser libraries including but not limited to `{jQuery, Bootstrap, Underscore, Backbone, Moment, Chart, Modernizr}.js`
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Meatspace headquarters are allegedly in Washington, DC. Many of us have never ventured out to confirm this rumor, and those who have can't be trusted.
|
Meatspace headquarters are allegedly in Washington, DC. Many of us have never ventured out to confirm this rumor, and those who have can't be trusted.
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,7 @@ About a third of us are in the Bay area, but we have several other US locales re
|
||||||
* AWS
|
* AWS
|
||||||
* Postgres, Redis, etc.
|
* Postgres, Redis, etc.
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
There is no office. Work from where you work best.
|
There is no office. Work from where you work best.
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,7 @@ Our international employees are currently directly contracted.
|
||||||
- Javascript (Angular2, react)
|
- Javascript (Angular2, react)
|
||||||
- Git
|
- Git
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
- Chicago, IL - Headquarters
|
- Chicago, IL - Headquarters
|
||||||
- New York City, NY - Secondary main office
|
- New York City, NY - Secondary main office
|
||||||
|
|
|
@ -32,7 +32,7 @@ Worldwide.
|
||||||
|
|
||||||
The main technologies we use include [Terraform](https://www.terraform.io/), [Go](https://golang.org/), [Docker](https://www.docker.com/), [Packer](https://www.packer.io/), and [AWS](http://aws.amazon.com). We also spend a lot of time working on [open source](https://github.com/gruntwork-io/), [doing talks](http://www.ybrikman.com/writing/2016/03/31/infrastructure-as-code-microservices-aws-docker-terraform-ecs/), and writing [blog posts](https://blog.gruntwork.io/) and [books](http://www.terraformupandrunning.com/).
|
The main technologies we use include [Terraform](https://www.terraform.io/), [Go](https://golang.org/), [Docker](https://www.docker.com/), [Packer](https://www.packer.io/), and [AWS](http://aws.amazon.com). We also spend a lot of time working on [open source](https://github.com/gruntwork-io/), [doing talks](http://www.ybrikman.com/writing/2016/03/31/infrastructure-as-code-microservices-aws-docker-terraform-ecs/), and writing [blog posts](https://blog.gruntwork.io/) and [books](http://www.terraformupandrunning.com/).
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
No offices. Feel free to work out of a co-working space, a coffee shop, your home, or anywhere else you're comfortable and productive.
|
No offices. Feel free to work out of a co-working space, a coffee shop, your home, or anywhere else you're comfortable and productive.
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,7 @@ Currently, our full-time staff is based entirely in the United States.
|
||||||
|
|
||||||
Asana, GitHub, Google Drive, Slack, Zoom
|
Asana, GitHub, Google Drive, Slack, Zoom
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
944 Market St, San Francisco, CA 94102
|
944 Market St, San Francisco, CA 94102
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ Dev team is UK/EU, Sales&OPS are US/UK
|
||||||
|
|
||||||
AWS, Python, Distributed systems, Ansible.
|
AWS, Python, Distributed systems, Ansible.
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Leeds, Philadelphia.
|
Leeds, Philadelphia.
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ Worldwide
|
||||||
|
|
||||||
Ruby, Rails, Sinatra, Javascript, Angular.js, Backbone.js, Git, Github, Slack, Trello.
|
Ruby, Rails, Sinatra, Javascript, Angular.js, Backbone.js, Git, Github, Slack, Trello.
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
We don't have any physical office but you're always invited to share a coworking space or coffee shop with one (or more) of us!
|
We don't have any physical office but you're always invited to share a coworking space or coffee shop with one (or more) of us!
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ Worldwide
|
||||||
|
|
||||||
Docker, Chef, Ansible, Ruby, AWS & Rackspace Cloud, MySQL, Nginx, Graphite, StatsD, Sensu, Git, Redis
|
Docker, Chef, Ansible, Ruby, AWS & Rackspace Cloud, MySQL, Nginx, Graphite, StatsD, Sensu, Git, Redis
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
[Harvest, 16 W 22nd St, 8th Floor New York, NY 10010](https://www.google.com/maps/place/16+W+22nd+St,+New+York,+NY+10010/@40.7412079,-73.9934994,17z/data=!3m1!4b1!4m2!3m1!1s0x89c259a386c20bd5:0x6da26b75635d4e84?hl=en)
|
[Harvest, 16 W 22nd St, 8th Floor New York, NY 10010](https://www.google.com/maps/place/16+W+22nd+St,+New+York,+NY+10010/@40.7412079,-73.9934994,17z/data=!3m1!4b1!4m2!3m1!1s0x89c259a386c20bd5:0x6da26b75635d4e84?hl=en)
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ Worldwide
|
||||||
|
|
||||||
Ruby, Clojure, Elixir, JavaScript, HTML5, CSS3, Postgres, Heroku, AWS, GCE, Docker, Kubernetes
|
Ruby, Clojure, Elixir, JavaScript, HTML5, CSS3, Postgres, Heroku, AWS, GCE, Docker, Kubernetes
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Rio de Janeiro, BRA
|
Rio de Janeiro, BRA
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ We hire engineers worldwide.
|
||||||
|
|
||||||
Our app-layer stack is TypeScript, Backbone, Marionette, Node.js, Redis, and PostgreSQL. Under the hood, Heap is powered by CoffeeScript, Scala, ZooKeeper, Kafka, Akka, and CitusDB.
|
Our app-layer stack is TypeScript, Backbone, Marionette, Node.js, Redis, and PostgreSQL. Under the hood, Heap is powered by CoffeeScript, Scala, ZooKeeper, Kafka, Akka, and CitusDB.
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
San Francisco, CA, USA
|
San Francisco, CA, USA
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,7 @@ Remote position are open to any U.S. citizen whose permanent address is in the U
|
||||||
|
|
||||||
Ruby on Rails, React, PostgreSQL, SASS
|
Ruby on Rails, React, PostgreSQL, SASS
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
Chicago, IL
|
Chicago, IL
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,7 @@ We also love Ansible, AWS/Azure, Git, Postgres, Redis, Github, Slack, and Trello
|
||||||
|
|
||||||
Europe
|
Europe
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
* London, UK
|
* London, UK
|
||||||
* Frankfurt, DE
|
* Frankfurt, DE
|
||||||
|
|
|
@ -21,7 +21,7 @@ US and UK based employees.
|
||||||
|
|
||||||
Hudl keep a GitHub pages site [hudl.github.io](http://hudl.github.io/) showing their Open Source projects and technology
|
Hudl keep a GitHub pages site [hudl.github.io](http://hudl.github.io/) showing their Open Source projects and technology
|
||||||
|
|
||||||
## Office Locations
|
## Office locations
|
||||||
|
|
||||||
We’re headquartered in the Haymarket District of Lincoln, Nebraska.
|
We’re headquartered in the Haymarket District of Lincoln, Nebraska.
|
||||||
|
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue