-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathjoblist.html
More file actions
126 lines (100 loc) · 4.9 KB
/
joblist.html
File metadata and controls
126 lines (100 loc) · 4.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
---
layout: default
title: Job List
permalink: joblist
redirect_to: masterjoblist
---
<section class="section">
<div class="container">
<div class="row">
<div class="col-md-4">
</div>
<div class="col-md-8">
<h1 class="h1">Best Business-Side Jobs at Tech Companies</h1>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="list-group hidden-xs hidden-sm visible-md visible-lg">
{% for company in site.data.jobs %}
<a class="list-group-item list-group-item-action smooth-scroll" href="#{{ company.slug }}">
{{ company.company }}
</a>
{% endfor %}
</div>
</div>
<div class="col-md-8">
<div class="lead">
<p> Here's our list the best non-technical roles available at tech companies.</p>
<p><em>Note: the application for some of these jobs is only open during certain times of the year. If a job is closed, we've tried to include a link to the best place to find the job once it opens.</em></p>
<p>We did our best to make this list as comprehensive as possible, but there are always more jobs that we couldn't fit here. If there is a tech company you are interested in that’s not on this list, it doesn’t mean they aren’t hiring. Go
to their career page and explore!</p>
</p>
<p>
— Neel, Parth, and Adi
</p>
<p>
<em>
P.S. Want tips on how to get the job? <a href="#tips">Read below!</a>
</em>
</p>
</div>
<hr />
<div class="list-group visible-xs visible-sm hidden-md hidden-lg">
{% for company in site.data.jobs %}
<a class="list-group-item list-group-item-action smooth-scroll" href="#{{ company.slug }}">
{{ company.company }}
</a>
{% endfor %}
</div>
<!-- <p><strong>Interested in a non-developer job at a tech company? <a href="https://www.amazon.com/dp/B0756MTX6K/">Swipe to Unlock</a> was co-authored by a recipient of a fulltime Google APMM offer, Google RPM offer, and Microsoft PMM offer. <a href="https://www.amazon.com/dp/B0756MTX6K/">The book</a> offers valuable tech insights and concept overviews that will be extremely relevant for the Google APMM interview.</strong></p>
<div class="embed-responsive embed-responsive-16by9">
<iframe width="1280" height="720" src="https://www.youtube.com/embed/KqCcDS63hZE" frameborder="0" allowfullscreen></iframe>
</div>
<br/> -->
{% for company in site.data.jobs %}
<div id="{{ company.slug }}" class="company-block">
<h2 class="text-info">{{ company.company }}</h2>
{% for job in company.jobs %}
<h3>{{ job.role }}</h3>
<p>
{{ job.description }}
</p>
<a href="{{ job.url }}" target="_blank" class="btn btn-default">
Learn more
</a>
<!-- <a href="https://www.amazon.com/dp/B0756MTX6K/" class="btn btn-default">
Buy <em>Swipe to Unlock</em> to prepare
</a> -->
{% endfor %}
</div>
<hr />
{% endfor %}
<section id="tips">
<h2 class="h1 text-primary">How to get the job</h2>
<p class="lead">
Okay, so now you know where to apply. Now, how do you ace your interview and get an offer? The dirty little secret is that <em>you don’t need a technical background or even need to have ever taken a CS class</em>. But it definitely helps
if you understand how technology works at a high level and the business strategy behind it.
</p>
<p class="lead">
Check out our new book, <a href="http://swipetounlock.com/amazon"><em>Swipe to Unlock</em></a>. It contains the key general tech and business concepts that we think everyone should know to get a non-technical job in the tech industry.
</p>
</section>
<!-- <div class="text-center">
<a href="https://www.amazon.com/gp/product/B0756MTX6K/ref=as_li_tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=B0756MTX6K&linkCode=as2&tag=swipetounlock-20&linkId=0788862628123a7609141c7b2c4ae733/" target="_blank" class="btn btn-primary btn-lg">Learn about <em>Swipe to Unlock</em></a>
</div> -->
<section class="text-center">
<div class="row">
<div class="col-xs-8 col-xs-push-2 col-sm-6 col-sm-push-3">
<a href="{{ site.baseurl }}/amazon" target="_blank">
<img src="{{ site.baseurl }}/assets/img/cover/cover-2e.png" class="img-responsive" alt="Swipe to Unlock">
</a>
</div>
</div>
{% include amazon_button.html %}
</section>
<br/>
</div>
</div>
</div>
</section>