Live data from Hacker News

Ask HN: Who is hiring? (March 2019)

news.ycombinator.com

521–530 of 909 posts

Re: Ask HN: Who is hiring? (March 2019)

#521
DriveTime | Lead Software Engineer | ONSITE | Tempe, AZ | C#, Angular, TypeScript, Node, Azure

DriveTime is ranked 12th nationally as the “best place to work” for IT employees. With over 145 dealerships across the country, DriveTime is nation’s largest integrated used car retailer.

* Competitive Salary + Full Benefits: Medical, Dental, and Vision

* 401K, life, Long-term Disability Insurance

* Continuous Learning: Tuition Reimbursement Program, Technical Training, Conferences

* Company outings including Golfing, Spring Training Game, and Habitat for Humanity

* An AMAZING, fun, progressive work environment featuring a gym, pool table, foosball, horse shoes, electronic gaming, Virtual Reality Room, a large outdoor turf for tossing frisbees and footballs, gas BBQs, etc.

https://jobs.drivetime.com/Openings/Details/jobid/25864/seni...

https://jobs.drivetime.com/Openings/Details/jobid/26002/seni...

I'm a Team Lead at DriveTime. Feel free to ping me with any questions.

Re: Ask HN: Who is hiring? (March 2019)

#522
Wayfair | Product Management| Boston | FULL TIME, ONSITE

Former YC founder here (Crocodoc, W10, acquired by Box).

tl;dr: Wayfair is run by its original founders and has an unbelievably entrepreneurial product culture that moves quickly and invests aggressively in good ideas. We're customer-obsessed product managers who love to go deep from design to data science to create amazing user experiences.

Openings on my teams currently include:

* Sr. Product Manager, Browse - We’re reimagining how users find what they’re looking for in a catalog of 10M+ products. This role is focused on leveraging everything we know about our customers to create that ideal experience.

* Sr. Product Manager, Search Infrastructure - This is an opportunity to scale the platform that powers our homegrown search engine as well as our fast-growing catalog of 10M+ products.

* Sr. Product Manager, Search Results - There’s a huge opportunity to improve the way we guide users who search through our catalog. We’re looking for a product leader to take on this challenge.

Feel free to reach out to me (Ryan Damico) directly if you're interested at rdamico@wayfair.com.

Re: Ask HN: Who is hiring? (March 2019)

#523

SEEKING FREELANCERS/EMPLOYEES - NYC preferred, but remote quite conceivable HappyFunCorp ( https://happyfuncorp.com ) - We're currently seeking: - good Rails, React, and WordPress developers, as well as excellent technical project managers. We prefer people with a reasonable amount of experience under their belt, but there are always exceptions. - a couple of excellent, principal-level, general-specialist software en…

[flagged]

Re: Ask HN: Who is hiring? (March 2019)

#524

Teradata | Teradata Vantage HA | San Diego, Toronto | Onsite | Full-Time Teradata Vantage HA is heading to the cloud, and we're seeking good people to help us get there. If you want to be part of a team that is driving change within Teradata and with our customers, this is it! We're looking for skilled, passionate people who enjoy highly technical challenges and play well with others. Tech stack includes - C/C++ - Ja…

alice.elliot@teradata.com is not reachable.

Re: Ask HN: Who is hiring? (March 2019)

#525
Center for Astrophysics | UI/UX Developer | ONSITE | Cambridge, MA | VISA | Javascript

Come work for the NASA Astrophysics Data System (ADS), the primary digital library portal for researchers in astronomy and astrophysics. Some of the perks of the jobs include:

* Work with a creative, multitalented team in a first-class academic environment * Generous benefits, flexible work hours, and (local) telecommuting options * Access to the astronomical community and events at the CfA and Harvard University * Engage with users at community meetings and present your work at scientific conferences in astronomy and information science * Continuous Learning: Tuition Reimbursement Program, Technical Training, Conferences * All development is Open Source!

https://ui.adsabs.harvard.edu/about/careers/

Re: Ask HN: Who is hiring? (March 2019)

#526

Underdog.io | New York | Onsite | https://underdog.io Underdog.io, a talent marketplace, is hiring a backend engineer in New York. This role will have ownership over backend and DevOps on our Python (Flask) and JavaScript-based stack. Underdog.io is a small, revenue-funded company where everyone’s contribution and decision-making is directly impactful. Ideal candidates have the skills and initiative to think deeply a…

Will you sponsor H1B?

Re: Ask HN: Who is hiring? (March 2019)

#527
Indigo Agriculture | Back-end, front-end, DevOps, PM, Data Science, Computational Biologist | Boston, MA | Full-time | On-site | https://www.indigoag.com/join-us

================

We're the fastest growing unicorn you've never heard of [0].

Indigo is revolutionizing agtech by offering better crops to farmers through technology. Agtech is one of the most underhyped technology trends [1] and we're serving a multi-trillion dollar marketplace services industry [2].

We're growing so fast that we have to add 35-50 engineers in 2019. Back-end, front-end, devops, data science; you name it, we need the help (including PM and UX roles - see all of them here: https://www.indigoag.com/join-us ).

Our tech stack includes AWS, Docker, Kubernetes (DevOps), Postgres (DB), Node & GraphQL (back-end), React & Apollo (front-end), and Python (data science / comp bio).

We also offer incredible perks. Free lunch (a rarity in Boston), massive commuter benefits (both MBTA and bicycling), fitness reimbursement, ample vacation; we really focus on and believe in both health and sustainability.

I'd be happy to tell you more, so feel free to PM me and I'll personally refer you to the company.

[0] https://www.builtinboston.com/2017/09/26/agtech-startup-indi...

[1] http://stateofstartups.firstround.com/2018/#trends-and-takes

[2] https://andrewchen.co/how-marketplaces-will-reinvent-the-ser...

Re: Ask HN: Who is hiring? (March 2019)

#528
If you're looking for something quick and dirty to filter jobs or get statistics, this is what I paste in browser console:

    function hideAllExcept(searchRegex) {
        var allComments = Array.from(document.querySelectorAll('.comment-tree .comtr'))
            .map(function(e){e.style.display='none';return e});
        var topLevelComments = allComments.filter(e=> e.querySelector('img[width="0"]'));
        var matchedComments = topLevelComments.filter(e=> 
            (e.style.display = searchRegex.test(e.querySelector('.comment').innerText) ? 'table-row' : 'none')=='table-row');
        console.log('Showing '+matchedComments.length+' out of '+topLevelComments.length+' jobs for '+searchRegex);
    }
    // Examples. The last one to execute determines what posts are shown.
    hideAllExcept(/\b(Rust)\b/i);
    hideAllExcept(/\b(Java)\b/i);
    hideAllExcept(/\b(Scala)\b/i);
    hideAllExcept(/\b(Kotlin)\b/i);
    hideAllExcept(/\b(Swift)\b/i);
    hideAllExcept(/\b(Ruby)\b/i);
    hideAllExcept(/\b(Python)\b/i);
    hideAllExcept(/\b(PHP|PHP5|PHP7)\b/i);
    hideAllExcept(/\b(JS|JavaScript)\b/i);
    hideAllExcept(/\b(React|ReactJS)\b/i);
    hideAllExcept(/\b(Angular|Angular5|Angular6)\b/i);
    hideAllExcept(/\b(Vue|VueJS)\b/i);
    hideAllExcept(/\b(Node|NodeJS)\b/i);
    hideAllExcept(/\b(Go|GO|Golang|golang|GOLANG)\b/);
    hideAllExcept(/C#/i);
    hideAllExcept(/\bC\b|C\+\+/i);
    hideAllExcept(/\bHaskell\b/i);
    hideAllExcept(/\bErlang\b/i);
    // Remember to also search other pages. Sorry if I missed some stacks in the examples.

Re: Ask HN: Who is hiring? (March 2019)

#529
post #528

If you're looking for something quick and dirty to filter jobs or get statistics, this is what I paste in browser console: function hideAllExcept(searchRegex) { var allComments = Array.from(document.querySelectorAll('.comment-tree .comtr')) .map(function(e){e.style.display='none';return e}); var topLevelComments = allComments.filter(e=> e.querySelector('img[width="0"]')); var matchedComments = topLevelComments.filter…

Output for first page:

    Showing 8 out of 233 jobs for /\b(Rust)\b/i
    Showing 22 out of 233 jobs for /\b(Java)\b/i
    Showing 13 out of 233 jobs for /\b(Scala)\b/i
    Showing 5 out of 233 jobs for /\b(Kotlin)\b/i
    Showing 9 out of 233 jobs for /\b(Swift)\b/i
    Showing 33 out of 233 jobs for /\b(Ruby)\b/i
    Showing 75 out of 233 jobs for /\b(Python)\b/i
    Showing 7 out of 233 jobs for /\b(PHP|PHP5|PHP7)\b/i
    Showing 56 out of 233 jobs for /\b(JS|JavaScript)\b/i
    Showing 89 out of 233 jobs for /\b(React|ReactJS)\b/i
    Showing 11 out of 233 jobs for /\b(Angular|Angular5|Angular6)\b/i
    Showing 9 out of 233 jobs for /\b(Vue|VueJS)\b/i
    Showing 34 out of 233 jobs for /\b(Node|NodeJS)\b/i
    Showing 31 out of 233 jobs for /\b(Go|GO|Golang|golang|GOLANG)\b/
    Showing 5 out of 233 jobs for /C#/i
    Showing 34 out of 233 jobs for /\bC\b|C\+\+/i
    Showing 4 out of 233 jobs for /\bHaskell\b/i
    Showing 2 out of 233 jobs for /\bErlang\b/i
Suggestions for more regexes and improvements are welcome.

Re: Ask HN: Who is hiring? (March 2019)

#530

The Trade Desk | Full Time, Onsite & Remote | Chicago IL, New York NY, San Jose CA, San Francisco CA, Aliso Viejo CA, Ventura CA, Boulder CO, Denver CO, Bellevue WA, Seattle WA, London UK, Sydney AUS, Shanghai CN Hiring: Senior Software Engineers, as well as Senior Front-End focused engineers who are comfortable with data-access design, development and optimization. You might be a great fit for The Trade Desk's dev t…

Hi, do you have any email address to learn more about these openings or any openings that may not be listed on your site in regards to python? Thanks
Post reply on HN