Skip to main content

Chicago Tech Jobs - More for July

Lightstream

Lightstream | Lead Full-Stack Engineer | Chicago, IL | Onsite, Remote, Full-Time, https://www.golightstream.com/lead-full-stack-engineer/
Lightstream | Senior Backend Engineer | Chicago, IL | Onsite, Remote, Full-Time, https://www.golightstream.com/senior-backend-engineer/
Lightstream | Senior Frontend Engineer | Chicago, IL | Onsite, Remote, Full-Time, https://www.golightstream.com/senior-frontend-engineer/
-
Lightstream is a simple, powerful, and collaborative live video production suite in your browser. We are a small, but rapidly growing team of gaming, esports, and video industry veterans. Members of our team have contributed to the success of brands like SteelSeries, Machinima, Open Broadcasting Software, Major League Gaming, ESL, Beyond Gaming, and even old school brands like GotFrag & World Cyber Games. If you have a passion for gaming, video, and bleeding edge technologies, let us know! https://www.golightstream.com | jobs@golightstream.com

Avant

Avant (https://avant.com) | Chicago, IL | Full-time | Onsite
Our mission is to lower the costs and barriers of borrowing. Today, we do that for under-served customers. Tomorrow, with our Lending as a Platform initiative, we will be revolutionizing the experience for our bank partners.
Come join us at https://www.avant.com/jobs

20spokes

20spokes | Full Stack Engineer | Chicago IL | REMOTE, ONSITE https://www.20spokes.com/careers
20spokes is looking for its next team member. We’re a small team that works in web development building web apps and mobile apps. We are growing fast and quickly becoming one of the premier agencies in Chicago for startups. Projects are exciting and new as we work with our clients to build their ideas and businesses start on the web. Our unique and broad experience helps us work effectively with projects ranging from 2-6 months.
* 4–6 Years of experience with Ruby on Rails in a production environment. * Solid experience with React or other Javascript frameworks like Angular or Ember. * Experience working on fast-paced projects in an agile environment. * Pragmatic approach while still delivering quality and maintainable code. * Team player looking to collaborate and contribute to shipping great projects. * Strong desire to learn and improve your skills. * Strong object oriented programming foundation. * Experience creating data structure and modeling the architecture of a project * Work using TDD principles.

Moat

Moat | New York, San Francisco, Chicago, Austin, London, Sydney | ONSITE | https://moat.com
Moat is hiring for a wide set of roles (frontend/backend/mobile software engineering, dev ops, QA, data science, UI/UX design).
We help top brands, large sites and popular apps make good product decisions -- often it's a decision to run fewer ads -- based on thoughtful analysis of reliable data. We process a trillion real-time events per month, and we're attacking hard problems like ad latency, botnets and malware.
We have strong benefits and fun extracurriculars, and we have relationships with just about every news, sports, entertainment, medical, and music site I know along with Facebook, Instagram, YouTube, Twitter, Snapchat, Pinterest, and scores of advertisers.
Recently, we made the decision to join Oracle Data Cloud, a collection of startups within Oracle.
Drop me an email me at: chuck.bassett@moat.com

NCC Group

NCC Group (formerly Matasano Security, iSEC Partners, and Intrepidus Group) - Atlanta, Austin, Chicago, New York, San Francisco, Seattle, and Sunnyvale, CA
NCC Group is currently looking for experienced security minds to join our merry crew! Take your skillset to the next level, perform cutting edge security research, and contribute on interesting client engagements. The elusive triple threat.
What do we do exactly? Penetration testing, security analysis, DFIR, and cutting-edge research into current technologies and attacks (breaking things). You spend most of your day thinking about security systems and how they can break. You get to be creative and have a lot of freedom to be clever while learning new technologies at a very fast pace. Engagements are usually 2-4 weeks long and in a year you will be exposed to 15-20 products and technology stacks. Your work will typically initiate person-months of security improvements in products millions of people use. You will have access to senior engineers/architects and your findings/ideas will be heard by senior decision makers. You will have enormous impact in making the software people use safer.
All of our consultants are also security researchers, with dedicated research time. Not too shabby!
If you want to learn more about us and our open positions check out our:
Blog - https://www.nccgroup.trust/us/blog/
Cryptopals - http://cryptopals.com/ Microcorruption - http://microcorruption.com/ If you're ready to apply, contact us at: https://www.nccgroup.trust/us/about-us/careers/current-vacancies/ Our Incident Response team is rapidly expanding to keep up with demand and we are looking for new hires in San Francisco and New York! We'd love to hear from you if you have experience in that sector.
We're also looking for Sales Development Representatives in NYC and SF and Strategic Account Managers in SoCal (pentesting and DFIR) and remote (GRM-focused) should you be interested or know of anyone who might fit the bill. Reach out to us directly at na-cv@nccgroup.trust.
We'd love to hear from you! - NCC Group Recruiting Team

ThoughtWorks

ThoughtWorks | Lead Mobile Engineers | New York, San Francisco, Chicago, Dallas, Denver, Atlanta | Full Time | On Site & Travel | VISA transfer OK | www.thoughtworks.com/
APPLY:
Chicago: https://www.thoughtworks.com/jobs/208775
ABOUT THOUGHTWORKS:
As software delivery consultants, we work with a variety of clients that hire us to solve complex and interesting problems. Each client we work with gives us a new perspective and a broad exposure to different technologies, which leads to a pretty unlimited learning environment. If you have a passion for exploring new technologies, chances are you’ll fit right in.
Our Lead Mobile Engineers partner with our clients to define their mobile strategy and are hands-on in building applications that can scale an enterprise system. We create enterprise mobile applications that are clean, well-tested, scalable and deployed in a CI/CD pipeline.
WHAT WE’RE LOOKING FOR:
Ideal candidates have been working in the mobile space for a few years, have led a few mobile teams, can lead mobile strategy, and care about best practices like testing and continuous delivery. We are particularly interested in engineers with native iOS experience, especially Swift.
We have a strong preference for candidates with previous full stack development experience, as the nature of consulting means working on projects with a huge variety in scale, scope and technology. However, we are open to considering candidates without previous full stack experience if there is a strong desire to learn from our full stack developers, DevOps engineers, etc.
We work almost exclusively on client site providing a mix of delivery and consulting services, so you’ll travel extensively as part of your role.

Comments

Popular posts from this blog

Complexity Analysis for Interviews, Part 1

This is part 1 of a two part series. Skip over to part 2 you'd like . For coding interviews, we are interested in gauging the asymptotic efficiency of algorithms both in terms of running time and space. The formal study of analysis of algorithms is called complexity theory, a rich field with fascinating and complicated math. For interviews, we only need a few basic concepts. Asymptotic efficiency is concerned with how the running time or memory requirements of an algorithm grows with the input size, so it is intimately concerned with how well algorithms scale to larger inputs. This is important in Computer Science and in practice because whereas some algorithms work well enough for small inputs of say < 10 inputs, the running time and space grows far faster than the input size and thus large inputs of say 10s to millions of inputs becomes impractical (usually meaning taking hours or even years of execution time). Consider sorting. Say for the sake of argument that sorting

Top 5 Books for Language-Specific Interview Questions

Shrunk and White of Programming When you put down that you know a certain programming language or languages on your resume, you are setting certain expectations for the interviewer. I would strongly caution against putting down "expert" in a language unless you invented or are one of the language's maintainers. You are giving your interviewer the license to quiz you on programming language lore. There are a handful of concepts that are considered "standard" knowledge for each language which go broadly beyond syntax and general semantics. These concepts commonly involve major pitfalls in a given language and the idiomatic technique for negotiating these pitfalls and writing efficient and maintainable code. Note, although the concepts are considered idiomatic, you can seldom infer them from knowledge of syntax and semantics alone. The tricky part here is that most courses that teach a particular programming language do not cover these idiomatic techniques and e

What Are The Types of Questions Asked In Tech Interviews?

Many interview prep books focus on the bread and butter coding interviewing questions, but in real interviews your interviewer may pose other types of questions. It is important to be comfortable and come prepared for these other types of questions which depart dramatically for coding questions yet still may bear considerable weight in your interview evaluation. Behavioral & experience These are the standard non-technical interview questions where the interviewer asks about what you did in particular scenarios and how you performed in the roles listed on your resume. Language specific knowledge questions There is a manageable set of questions for each common programming language. There are questions for uncommon languages too should to encounter a company that emphasizes their use of some of the lesser known languages. Usually these questions attempt to probe for your knowledge of some differentiator and key feature of the programming language. For example, virtual functio