-
Notifications
You must be signed in to change notification settings - Fork 0
/
hiring.txt
1318 lines (1275 loc) · 825 KB
/
hiring.txt
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html><head><meta name="referrer" content="origin"></meta><link rel="stylesheet" type="text/css" href="news.css?l8euHEWGw6yxX6DMrSMP"></link><link rel="shortcut icon" href="favicon.ico"></link><script type="text/javascript">
function byId(id) {
return document.getElementById(id);
}
function vote(node) {
var v = node.id.split(/_/); // {'up', '123'}
var item = v[1];
// hide arrows
byId('up_' + item).style.visibility = 'hidden';
byId('down_' + item).style.visibility = 'hidden';
// ping server
var ping = new Image();
ping.src = node.href;
return false; // cancel browser nav
} </script><title>Ask HN: Who is hiring? (November 2014) | Hacker News</title></head><body><center><table border="0" cellpadding="0" cellspacing="0" width="85%" bgcolor="#f6f6ef"><tr><td bgcolor="#ff6600"><table border="0" cellpadding="0" cellspacing="0" width="100%" style="padding:2px"><tr><td style="width:18px;padding-right:4px"><a href="http://www.ycombinator.com"><img src="y18.gif" width="18" height="18" style="border:1px #ffffff solid;"></img></a></td><td style="line-height:12pt; height:10px;"><span class="pagetop"><b><a href="news">Hacker News</a></b><img src="s.gif" height="1" width="10"><a href="newest">new</a> | <a href="threads?id=jecjec">threads</a> | <a href="newcomments">comments</a> | <a href="show">show</a> | <a href="ask">ask</a> | <a href="jobs">jobs</a> | <a href="submit">submit</a></span></td><td style="text-align:right;padding-right:4px;"><span class="pagetop"><a href="user?id=jecjec"><font color="#3c963c">jecjec</font></a> (5) | <a href="logout?whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">logout</a></span></td></tr></table></td></tr><tr style="height:10px"></tr><tr><td><table border="0"><tr><td><center><img src="s.gif" height="1" width="14"></center></td><td class="title"><a href="item?id=8542892">Ask HN: Who is hiring? (November 2014)</a></td></tr><tr><td colspan="1"></td><td class="subtext"><span id="score_8542892">313 points</span> by <a href="user?id=whoishiring">whoishiring</a> 8 days ago | <a href="item?id=8542892">comments</a></td></tr><tr style="height:2px"></tr><tr><td></td><td>Please lead with the location of the position and include the keywords INTERN, REMOTE, or VISA if the corresponding sort of candidate is welcome. Feel free to post any job that may interest HN readers from executive assistant to machine learning expert to CTO.<p>Please do not post recruiting firms or job boards.</td></tr><tr style="height:10px"></tr><tr><td></td><td><form method="post" action="comment"><input type="hidden" name="parent" value="8542892"><input type="hidden" name="whence" value="item?id=8542892"><input type="hidden" name="hmac" value="502cbacce7e07a8cd0407db51c2ecb737aa09168"><textarea name="text" rows="6" cols="60"></textarea><br><br>
<input type="submit" value="add comment"></form></td></tr></table><br><br>
<table border="0"><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543683" onclick="return vote(this)" href="vote?for=8543683&dir=up&by=jecjec&auth=d15101eaad05c89c3360504a1d01374c8a6905a8&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543683"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=jjarmoc">jjarmoc</a> 8 days ago | <a href="item?id=8543683">link</a></span></div><br>
<span class="comment"><font color="#000000">Matasano Security - Chicago. New York City. Sunnyvale.
Job Title: Application Security Consultant<p>Have you ever seen the 1992 film Sneakers? Near the start, we see Martin Bishop (Robert Redford) close out a bank account, and take the proceeds to the managers. He pretty tersely says something like:<p>"Gentlemen, your communication lines are vulnerable.
Fire exits need to be monitored.
Your rent-a-cops are a tad undertrained.
Outside of that, everything seems to be fine.
You'll get our full report in a few days. But first, who's got my check?""<p>Cut to a bank secretary, writing Martin a check.<p>"So, people hire you to break into their places...
...to make sure no one can break into their places?"<p>Whenever I'm asked to explain what we do at Matasano, this scene comes to mind. Our work is the digital equivalent; breaking applications so they can be made stronger and more resilient to attack, inoculating the world's software like a binary flu shot.<p>Modern applications are a lot like the bank in the movie. Authentication protects the front door, much like the bank's cameras and guards. Encryption often protects sensitive data, similar to how steel lined walls protect a bank vault. Communication protocols convey information in and out, like armored cars ferrying cash to and fro. Finding the application's 'communication lines', 'fire exits', and 'rent-a-cops' is our goal. As Application Security Consultants we seek the overlooked, the neglected, the unexpected flaws in an application's code. Like Martin, we show how these weaknesses can lead to overall failure of the application, and we do this so it can be improved.<p>Later in the movie, Cosmo (Ben Kingsley), a villainous ex-con says:
"The world isn't run by weapons anymore, or energy, or money. It's run by little ones and zeroes, little bits of data. It's all just electrons."
In 1992, that might've been hyperbolic but it's becoming more true every day.<p>If being part of ensuring the systems we all rely on continue to function safely and reliably, we should talk. If working with smart people on the cutting edge of technology excites you, we should talk. If diving deeply into a wide variety of technologies and facing new challenges daily appeals to you, we should talk. If tearing apart application code and making it do things that its creators didn't intend is fun for you, we should talk.<p>You can get a taste for the sorts of things we do at www.microcorruption.com and www.cryptopals.com.<p>Reach out to us at [email protected] or by visiting our web site.</font></span><p><font size="1"><u><a href="reply?id=8543683&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8576410" onclick="return vote(this)" href="vote?for=8576410&dir=up&by=jecjec&auth=979e993f9ebfef59ae2b3269dca1599f58a9a3da&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8576410"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=JusticeEX_">JusticeEX_</a> 1 day ago | <a href="item?id=8576410">link</a></span></div><br>
<span class="comment"><font color="#000000">What kind of experience do you need to get started?</font></span><p><font size="1"><u><a href="reply?id=8576410&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8545175" onclick="return vote(this)" href="vote?for=8545175&dir=up&by=jecjec&auth=47605de431b7e234869ec3c10e8d8609738c7928&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8545175"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=miles932">miles932</a> 7 days ago | <a href="item?id=8545175">link</a></span></div><br>
<span class="comment"><font color="#000000">This is an amazing advert for your culture. Way to show a little personality! What kinda dorks do you need again?</font></span><p><font size="1"><u><a href="reply?id=8545175&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="80"></td><td valign="top"><center><a id="up_8553570" onclick="return vote(this)" href="vote?for=8553570&dir=up&by=jecjec&auth=b558bf489d1eb769f3aa7c7f844c83007af4763f&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8553570"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=jerematasno">jerematasno</a> 5 days ago | <a href="item?id=8553570">link</a></span></div><br>
<span class="comment"><font color="#000000">AppSec dorks. Not an appsec dork? Want to be? We'll help you get there (then give you a job).</font></span><p><font size="1"><u><a href="reply?id=8553570&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8559743" onclick="return vote(this)" href="vote?for=8559743&dir=up&by=jecjec&auth=2073f9c4343f5845186394587c5d5ffe80f74cdc&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8559743"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=neftaly">neftaly</a> 4 days ago | <a href="item?id=8559743">link</a></span></div><br>
<span class="comment"><font color="#000000">Oh man, microcorruption is so cool!</font></span><p><font size="1"><u><a href="reply?id=8559743&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543758" onclick="return vote(this)" href="vote?for=8543758&dir=up&by=jecjec&auth=d6ad6ee00b54715370c363515cb98a0f9b8aa7e5&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543758"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=spang">spang</a> 8 days ago | <a href="item?id=8543758">link</a></span></div><br>
<span class="comment"><font color="#000000">Inbox | <a href="https://www.inboxapp.com/" rel="nofollow">https://www.inboxapp.com/</a> | San Francisco, CA (Mission) | Frontend (JS), Design, Backend (Systems+Ops)<p>Hi! We're "The Company Formerly Known As Inbox,"[0] and we're looking for help building the next generation email platform. We're building a missing piece of Internet infrastructure and are looking for frontend engineers, designers, and systems and infrastructure/operations engineers to join us.<p>Companies are building their core businesses around our email API right now, and that means we have to be reliable, up all the time, and fast. We have more data for a single user than in most startups' entire database. That means big technical challenges to solve as we scale out our fledgling distributed backend. If you have experience with automated deployments, debugging running systems, release engineering, and on-call schedules, but are still comfortable writing code, this job[1] might be for you. :)<p>Many people spend their entire days buried in mail clients which haven't significantly changed in years. That means an opportunity to tackle big UX challenges as we build out our client scaffolds and create a new framework for the next generation of mail apps. (Ever meet anyone who really loves their email experience? We want to change that.) Sound exciting to you? Apply here[2].<p>== We're particularly looking for folks who ==<p>* Take personal pride in their work and value autonomy and ownership.<p>* Want the chance to step up and lead a team.<p>* Put the work before ego. We've got each others' backs, and we want you to be with us on that.<p>== A bit more about us ==<p>* We're built on tools like Python, Flask, gevent, nginx, MySQL, AWS, Docker, and Debian. Go is likely to join this list soon. We've been careful to keep our architecture componentized.<p>* Tons of our code is open source. Check it out: <a href="https://github.com/inboxapp" rel="nofollow">https://github.com/inboxapp</a><p>* We're 40% women on our team of 11 (10 engineers), including 1 of 2 cofounders. We want to make that number 50%.<p>* Our sunny Mission office is more lived-in than tidy. Think art studio, not corporate.<p>* We're more likely to end up at the climbing gym or on a bike ride together than out drinking at the latest startup event.<p>* We have an open vacation policy and value personal responsibility and ownership.<p>Apply via Lever at <a href="https://www.inboxapp.com/jobs" rel="nofollow">https://www.inboxapp.com/jobs</a>. Include a cover letter letting us know what draws you to the job. We welcome and encourage applications from women and people of colour.<p>[0] A certain large company recently launched a product of the same name, so we're going to change ours soon. Roll with the punches, eh?<p>[1] <a href="https://jobs.lever.co/inbox/6c7e7186-953d-4083-8bde-37443a239a91/apply" rel="nofollow">https://jobs.lever.co/inbox/6c7e7186-953d-4083-8bde-37443a23...</a><p>[2] <a href="https://jobs.lever.co/inbox/54f73eb2-9094-40ab-b59e-f9df48681065/apply" rel="nofollow">https://jobs.lever.co/inbox/54f73eb2-9094-40ab-b59e-f9df4868...</a></font></span><p><font size="1"><u><a href="reply?id=8543758&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8545324" onclick="return vote(this)" href="vote?for=8545324&dir=up&by=jecjec&auth=46a4a7aec15946cfeba521093e083c28ef8b51a1&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8545324"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=xasos">xasos</a> 7 days ago | <a href="item?id=8545324">link</a></span></div><br>
<span class="comment"><font color="#000000">Are you hiring for interns? :)</font></span><p><font size="1"><u><a href="reply?id=8545324&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="80"></td><td valign="top"><center><a id="up_8549544" onclick="return vote(this)" href="vote?for=8549544&dir=up&by=jecjec&auth=abd00cf638fcd1c05ba84ae12fa7825ca33cbb22&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8549544"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=grinich">grinich</a> 6 days ago | <a href="item?id=8549544">link</a></span></div><br>
<span class="comment"><font color="#000000">Potentially-- feel free to email us with more info: [email protected]</font></span><p><font size="1"><u><a href="reply?id=8549544&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8576155" onclick="return vote(this)" href="vote?for=8576155&dir=up&by=jecjec&auth=be3f4b8499a6c57281ce2504e93132e1b861feac&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8576155"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=kedargj">kedargj</a> 1 day ago | <a href="item?id=8576155">link</a></span></div><br>
<span class="comment"><font color="#000000">McKinsey Digital Labs | <a href="http://bit.ly/mdl_us" rel="nofollow">http://bit.ly/mdl_us</a> | San Francisco, New York | Front-end Developer<p><pre><code> About McKinsey Digital Labs</code></pre>
=====================================<p>McKinsey Digital Labs is the in-house client focused digital delivery group of McKinsey & Company.<p>MDL combines user-centered design with unparalleled business knowledge and world-class agile development skills to deliver impactful digital experiences.<p>We are a team of passionate designers, architects and developers solving tough problems for our clients.<p>We deliver service design concepts, experiential prototypes and production-ready apps to transform our client’s businesses.<p>Despite being part of a large, multinational organization, MDL works more like a small startup company.<p><pre><code> Your role</code></pre>
=================<p>As Front-End Developer at MDL, you will work in small teams in a highly collaborative way, use the latest technologies and enjoy seeing the direct impact from your work.<p>You’ll create both rapid prototypes, usually in a couple of days to 3 weeks, as well as full-scale applications typically within 2 to 3 months, by working collaboratively and iteratively through design and development. You will need to deliver fully functioning web-based and mobile applications that meet the business goals and requirements of our clients. As a Front-End Developer at MDL you’ll contribute to the architecture across the technology stack, from databases to native apps.<p><pre><code> Do you have the passion and experience to:</code></pre>
=================================================<p>Build prototypes and products using agile development methodologies.
Build with Javascript MVC frameworks (e.g., Angular JS, Backbone, etc.)
Create responsive/adaptive applications for mobile devices using HTML5/CSS with familiarity in backend technologies. (e.g. Phonegap, Python, Objective-C, etc.)
Write and utilize RESTful API services and performance tuning applications.
Use relational and non-relational data stores in your applications. (e.g., MongoDB, CouchDB, Cassandra, etc.)<p><pre><code> In your work do you....?</code></pre>
===================================================<p>Demonstrate excitement about the impact of emerging / disruptive technologies.
Solve problems by processing complex information and presenting it clearly and simply.
Provide technical excellence (whilst adhering to Agile software engineering practices such as DRY, TDD, CI) and leadership/mentorship.
Want to unleash their inner self-starter and work in an environment that fosters entrepreneurial minds.
Play an active role in the community, i.e. speaking at conferences, blogging, contributing to open source projects, etc.<p>We will not compromise on quality, so please only request details if you set a high bar for yourself.<p>Drop us a line at [email protected] and say hello ;)</font></span><p><font size="1"><u><a href="reply?id=8576155&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543042" onclick="return vote(this)" href="vote?for=8543042&dir=up&by=jecjec&auth=df975198a7cd4475daae456efbc7ac2a5b6e3652&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543042"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=ninetax">ninetax</a> 8 days ago | <a href="item?id=8543042">link</a></span></div><br>
<span class="comment"><font color="#000000">The Climate Corporation (San Francisco, Seattle, Full time, INTERN/H1B) - <a href="http://climate.com/careers" rel="nofollow">http://climate.com/careers</a><p><pre><code> ===========================
====== What we do =========
===========================
</code></pre>
Our mission is to build great software for farmers.<p>We use a combination of weather monitoring, agronomic modeling, satillite imagery, and weather simulation to provide data and insights to those farmers.<p><pre><code> =================================
===== Who we’re looking for =====
=================================
</code></pre>
We're hiring full-time employees and interns across many teams.<p>Work is split across groups focusing on web applications for farmers and agents, risk and insurance policy management, internal platform and data services, and scientific modeling and research, with roles for:<p>1. Software Engineers, particularly anyone interested in building (i) entirely new, large-scale distributed data services for scientific computing (we use Clojure); and (ii) web applications (Clojure, Rails, Python, Javascript, and iOS) used by farmers to manage weather risk.<p>2. Quantitative researchers in statistics/ML, stochastic optimization, remote sensing, atmospheric physics, and agronomics. Our goal is to forecast statistical distributions of crop yield for any piece of arable land, synthesizing satellite images, digital elevation models, weather data, agricultural statistics, and geological surveys into multiscale models that underly our data services.<p>3. Experienced technical team leads, operations engineers, product managers, and designers to pull all this together into a compelling product. The scale and interdisciplinary nature of the work drive a lot of cross-collaboration within the company, supported by a pressing need to build durable solutions to some very hard and important problems.<p><pre><code> ===========================
====== Why I love it ======
===========================
– I think Climate is poised to make a huge impact on farming.
– I am surrounded by a group of super smart people that care about the work we are doing.
– I get to tackle challenging problems everyday.
</code></pre>
I am on the satillite imagery team and I am really excited about the work we've been doing, I am happy to talk in length about it over email at [email protected].<p><pre><code> ===========================
====== Other details ======
===========================
</code></pre>
– Competitive salary
– Excellent benefits
– Stocks
– Other crazy perks (massages!)<p>We also have something called sprintbicals where anyone can work on an independent project for some time (we are in the midst of redesigning this)<p>Here's the company site for the job postings
<a href="https://hire.jobvite.com/j?bj=o7B8Wfww&s=hackernews" rel="nofollow">https://hire.jobvite.com/j?bj=o7B8Wfww&s=hackernews</a><p>If you want to take the fast track, just shoot me an email at [email protected]. I am happy to answer questions, or put you in contact with people who can answer your questions.</font></span><p><font size="1"><u><a href="reply?id=8543042&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8544098" onclick="return vote(this)" href="vote?for=8544098&dir=up&by=jecjec&auth=2ac022a4d33746a554e3c2e7017118a0f26a23ad&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544098"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=curiousDog">curiousDog</a> 7 days ago | <a href="item?id=8544098">link</a></span></div><br>
<span class="comment"><font color="#000000">What is up with all the negative reviews on Glassdoor?</font></span><p><font size="1"><u><a href="reply?id=8544098&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="80"></td><td valign="top"><center><a id="up_8544238" onclick="return vote(this)" href="vote?for=8544238&dir=up&by=jecjec&auth=0d47a6e974902d70cd4cd00e0d6e8bb43e8ce820&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544238"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=ninetax">ninetax</a> 7 days ago | <a href="item?id=8544238">link</a></span></div><br>
<span class="comment"><font color="#000000">Some are half truths, some are bullshit, and some are right on point.<p>A lot of people's experiences are isolated to their teams. I haven't experienced any of the things in those reviews but I know some who have.<p>We are growing fast and with that comes it's own set of problems.<p>The COO mentioned in the reviews recently left FYI.<p>These statements are my own and my not reflect what my employer has to say about it.</font></span><p><font size="1"><u><a href="reply?id=8544238&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8543715" onclick="return vote(this)" href="vote?for=8543715&dir=up&by=jecjec&auth=b5d5818401d428b0fbbd9941eb6fadfb54891f0e&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543715"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=fractalsea">fractalsea</a> 8 days ago | <a href="item?id=8543715">link</a></span></div><br>
<span class="comment"><font color="#000000">Sounds interesting, but your link goes to a 404 page.</font></span><p><font size="1"><u><a href="reply?id=8543715&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="80"></td><td valign="top"><center><a id="up_8543732" onclick="return vote(this)" href="vote?for=8543732&dir=up&by=jecjec&auth=833b207c9708aca31f0ef762ddbdd13834784a57&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543732"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=ninetax">ninetax</a> 8 days ago | <a href="item?id=8543732">link</a></span></div><br>
<span class="comment"><font color="#000000">Oh dang, that's embarrassing. Here's the page with the current postings: <a href="http://www.climate-careers.com/job-search-results" rel="nofollow">http://www.climate-careers.com/job-search-results</a>.<p>But that doesn't have the HN tag on it, so I can't fast track applications made there. Emailing me is probably the way to go for now :/</font></span><p><font size="1"><u><a href="reply?id=8543732&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544342" onclick="return vote(this)" href="vote?for=8544342&dir=up&by=jecjec&auth=02d5a4bc7c8f1b07a2696037e7ca12e3b1a80c78&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544342"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=noobuser123"><font color="#3c963c">noobuser123</font></a> 7 days ago | <a href="item?id=8544342">link</a></span></div><br>
<span class="comment"><font color="#000000">Broad Institute of MIT and Harvard - Cambridge, MA - Full time<p>My group within the Broad, Computational Innovation Lab is hiring a coder to develop a new software/pipeline for genome assembly, annotation and analysis. The tech stack will be a mix of Python, Scala and various JS MVC framework. What's special about the position, IMHO is that our team has a direct working relationship with scientists in the lab (no biz-analysts in between), specifically supporting one lab where the mission is to develop novel genome sequencing techniques (e.g., pac-bio, nanopore sequencing) and another lab whose purpose is to sequence and analyze genomes of infectious disease pathogens (e.g., tuberculosis). So think no morning standup's, "tyranny of agile" but more an ad-hoc academic environment where you'll communicate & work with biologists, have an opportunity to learn both the wet-lab and in silico process of genome sequencing/assembly/annotation, go to all the talks and workshops for different research groups, have ownership over the architecting, coding and dev-ops.<p>So if you're interested in writing software without the management overhead of a traditional software org, be involved in Bioinformatics research, it might be a good opportunity for you to consider.<p>Organization-wise, the Broad is not a tech startup, but a genomics research institute that's half-way between industry and academia; computational biology is a big deal here and background of a lot the scientist-users.<p><a href="https://www2.apply2jobs.com/BroadInstitute/ProfExt/index.cfm?fuseaction=mExternal.showJob&RID=1506&CurrentPage=1" rel="nofollow">https://www2.apply2jobs.com/BroadInstitute/ProfExt/index.cfm...</a></font></span><p><font size="1"><u><a href="reply?id=8544342&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8545493" onclick="return vote(this)" href="vote?for=8545493&dir=up&by=jecjec&auth=eae669ed1f5af00b07ba63427bd9540434b35ec8&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8545493"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=makmanalp">makmanalp</a> 7 days ago | <a href="item?id=8545493">link</a></span></div><br>
<span class="comment"><font color="#000000">Harvard Center for International Development - Cambridge, MA Front end developer, onsite<p>================================<p>* What we do:<p>We take real world government data and research, and turn them into interactive data viz tools. The Atlas of Economic Complexity is our current online tool that lets you interactively visualize a country’s trade and explore growth opportunities for more than a hundred countries worldwide. There are also other National Atlas projects in the pipeline, one for Colombia and one for Mexico.
The idea is that countries provide us with their data and the Center provides them with economic policy advice based on our economic theories, and an interactive tool to explore their situation and make sound policy decisions at the regional level. If you're looking for a high-impact job, this is it!<p>================================<p>* What we want to do:<p>We want to focus on building features around this idea of storytelling with data (see example at the end), as well as re-do our UI and design to be cleaner and up to modern standards, and to add better visualization capabilities. We look at NYtimes / WaPo data driven articles with envy. We salivate when we see Tufte's work.
We need you, dear frontend engineer, to make all that a reality!<p>We use d3.js for the visualizations. We know that at least the visualization part would be ideally suited for a single page app, and we'd love to implement something along those lines with Angular / Backbone / etc. We want to rethink our designs and how the frontend works in general.<p>Especially with the new national projects with Colombia and Mexico, you'll have free rein over the creative process and the technological aspects of your work.<p>==================================<p>* Our stack:<p>We use python, django, mysql (hopefully postgres soon), elasticsearch, ansible for the back end. For the frontend, it's jquery / d3 for now. Everything we do is open source: <a href="https://github.com/cid-harvard" rel="nofollow">https://github.com/cid-harvard</a> and we use Github for bug/feature tracking.<p>==================================<p>* Work environment / goals:
Coming from the startup world, the work environment is pretty laid back, but everyone is expected to hold their own and get their work done without being micromanaged. No late nights and weekends, although I've been known to do that once in a blue moon because I felt like it.<p>We're a small engineering team (me and a data viz researcher, plus a new super talented designer), but we work with a large group of brilliant doctoral / postdoctoral researchers from diverse backgrounds like econ, public policy, physics, international development. I've been here only for a few months, but I've been given responsibility to fully overhaul and clean up the backend, which speaks towards the kind of autonomy you'll have.<p>I'm looking to build out our burgeoning team into a small but strong group that specializes in turning ideas into reality. We have great plans and dreams for the future of this site, and we need people to help. We'd love to hear more about you and see work samples if possible! To get in touch: mali underscore akmanalp at hks dot harvard dot edu.<p>=================================<p>* Demo of the current atlas:<p>An example of how the atlas is useful take this story here: <a href="http://www.nytimes.com/interactive/2014/03/21/world/europe/how-much-europe-depends-on-russian-energy.html" rel="nofollow">http://www.nytimes.com/interactive/2014/03/21/world/europe/h...</a><p>The EU recently placed sanctions sales of oil equipment, but not on oil imports. Why could this be? Almost 70% of russia's exports are petrol products:<p><a href="http://atlas.cid.harvard.edu/explore/tree_map/export/rus/all/show/2012/" rel="nofollow">http://atlas.cid.harvard.edu/explore/tree_map/export/rus/all...</a><p>And Russia exports the overwhelming majority of its petroleum products to Europe:<p><a href="http://atlas.cid.harvard.edu/explore/tree_map/export/rus/show/2709/2012/" rel="nofollow">http://atlas.cid.harvard.edu/explore/tree_map/export/rus/sho...</a> and
<a href="http://atlas.cid.harvard.edu/explore/tree_map/export/rus/show/2710/2012/" rel="nofollow">http://atlas.cid.harvard.edu/explore/tree_map/export/rus/sho...</a><p>The big blue chunk is europe, meaning a sanction would really hurt Russia. However, when you look at who else the EU could buy from, the situation is grim:<p><a href="http://atlas.cid.harvard.edu/explore/tree_map/net_export/show/all/2709/2012/" rel="nofollow">http://atlas.cid.harvard.edu/explore/tree_map/net_export/sho...</a><p>There’s practically no one who’s a real political ally that Europe could depend on, save for Norway. It’s interesting how it’s practically impossible to buy oil from a country that’s relatively stable and doing well on the HDI front. It’s worse if you consider the cost of transporting it, and how close Russia is:<p><a href="http://atlas.cid.harvard.edu/explore/map/net_export/show/all/2709/2012/" rel="nofollow">http://atlas.cid.harvard.edu/explore/map/net_export/show/all...</a><p>Which probably explains why EU hasn't placed sanctions on oil imports from Russia.</font></span><p><font size="1"><u><a href="reply?id=8545493&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8545517" onclick="return vote(this)" href="vote?for=8545517&dir=up&by=jecjec&auth=2821b3a1df1a9f823b98ef522ae66622e4c863fa&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8545517"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=siscia">siscia</a> 7 days ago | <a href="item?id=8545517">link</a></span></div><br>
<span class="comment"><font color="#000000">Sorry, I didn't understand...<p>You need help with the front end or the back end ?</font></span><p><font size="1"><u><a href="reply?id=8545517&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544429" onclick="return vote(this)" href="vote?for=8544429&dir=up&by=jecjec&auth=12672c95fbbb45cc971c9e51a613d177bfd5ac8e&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544429"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=sinak">sinak</a> 7 days ago | <a href="item?id=8544429">link</a></span></div><br>
<span class="comment"><font color="#000000">The Electronic Frontier Foundation - San Francisco - Full time - Multiple positions<p>Come and help us fight for an Internet free of surveillance and censorship. The EFF's tech team is expanding, and we're looking to hire strong frontend and backend engineers and sysadmins.<p>You'll be join a community of passionate people who are excited to be working on issues that we think are of paramount importance to the future of technology.<p>EFF's technology team implements EFF's activism campaigns, builds exciting new activism tools and creates new technologies to protect the Internet as a whole.<p>Here's a small sample of projects we've worked on in the last year:<p>- Worked with over 100 volunteer developers to crowdsource and populate contact-congress, an open dataset describing the contact forms of members of congress.<p>- Created and open-sourced congress-forms: a delivery mechanism for sending emails to congress based on the contact-congress dataset.<p>- Created a new (and soon-to-be open source) activism platform that’s currently live at act.eff.org.<p>- Built the sites Surveillance Self-Defense, DearFCC.org, The Day We Fight Back, Trolling Effects, Tor Challenge and countless others, which were visited by over 2 million people in 2014.<p>- Launched a preview version of our OpenWireless open source router firmware.<p>We're currently hiring a frontend designer/developer, a backend developer, and a technology generalist. The latter two jobs are listed on this page: <a href="https://www.eff.org/about/opportunities/jobs" rel="nofollow">https://www.eff.org/about/opportunities/jobs</a><p>But we’re also always open to hire exceptional candidates too. If you’re excited about our mission and our projects, take a moment and get in touch: [email protected]</font></span><p><font size="1"><u><a href="reply?id=8544429&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8555355" onclick="return vote(this)" href="vote?for=8555355&dir=up&by=jecjec&auth=07e56a31531bee89a83367e2f2ead0defb4ef791&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8555355"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=fapjacks">fapjacks</a> 5 days ago | <a href="item?id=8555355">link</a></span></div><br>
<span class="comment"><font color="#000000">Oh man. If only I were looking for a job! EFF <3</font></span><p><font size="1"><u><a href="reply?id=8555355&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8573545" onclick="return vote(this)" href="vote?for=8573545&dir=up&by=jecjec&auth=11875af5e0f81c53f831581a083fd1b9e2bcf537&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8573545"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=fh2210">fh2210</a> 2 days ago | <a href="item?id=8573545">link</a></span></div><br>
<span class="comment"><font color="#000000"><a href="http://3QAYJ.com" rel="nofollow">http://3QAYJ.com</a> looking for 1-2 REMOTE WEB DEV - Full time<p>- 1) What’s the best thing about your current job?<p>- 2) What’s the worst thing about your current job?<p>- 3) What things could you wish for to make your current work better?<p>These were the questions I asked my team in an email in June 2014. The intention was to use their answers to better understand and prepare a job posting in order to attract similar minded people to our company.<p>Their response however surprised me:<p>- "The best thing in my current job is free of implementation ways and time limits..."<p>- "Flexible work hours (and even days!). Ability to move to another place any time. Good team."<p>- "The best thing is freedom in ways to resolve the tasks. When I'm choosing tools, libraries or approaches I'm free to pick whatever will be the best for task. And not limited by some company policies as it was on previous jobs..."<p>- "The working flow standards... Company trusted politic... Team voice... The happy team... Strict and smart team lead..."<p>- "No hierarchy. Almost :) I feel we work not only for one person but for the company, moving this business forward - that's really inspiring."<p>Please review full answers here <a href="http://3QAYJ.com" rel="nofollow">http://3QAYJ.com</a><p>In my opinion their answers were better than any job posting I could have done. It inspired me to rethink the whole way we normally post a job. When looking for skilled likeminded people to join our team we shouldn’t make a job post; rather we should make a “company pitch”. Most job posts are dictating who you are and what you should do – a common sentence in a job post often goes like this: “you got a master degree in computer science and like to...” or “you will develop solution concepts by using...”. We don’t believe in such requirements. We don’t think of you as a work unit in a production line. Rather we seek talents and personalities whom we would want to invest in a relationship with. We firmly believe modern companies need to rethink the way in which they attract similar minded people. We must open our door and introduce our values; as this is the first step towards creating a bond. After all we are the team that want you to join us.<p>With that being said welcome to 3QAYJ.com (www.3QAYJ.com) – our company pitch project to attract you!<p>Our workflow is managed via<p>JIRA,CONFLUENCE<p>and all code submitting is handled through Github, pull request. On a daily basis we communicate via hipchat and each Monday we have a weekly meeting via skype to touch base. One of the outcomes from the 3QAYJ is our team summit. Starting from 2015 we will have a real life team summit meeting some place around the world financed by the company.<p>We are currently looking at expanding our development team with 1-2 backend developers.<p>Job description<p>Here is a list of some of the tools and technologize we currently use:<p>- Nginx<p>- git<p>- Capistrano<p>- compass (scss)<p>- coffeescript (a little bit)<p>We'd appreciate if you have experience with the above or you can study how to use it.<p>We appreciate if you have:<p>- skills in Magento development<p>- skills in web development in general<p>- skills or at least wants to get skills in mobile applications development (Android/iOS)<p>Good confirmations of your professionalism could be:<p>- your github account with contributions to open source projects<p>- any certificates (Magento MCD/MCDP, ZCE and so on)<p>- your stackoverflow account<p>If applying we would ask you to send us an example of code written by you and make a short pair programming session with one of our developers.<p>What we offer<p>- Long term full employment<p>- Flexible working hours<p>- Remote job - Work from your home<p>- Influence in all aspect of your work – freedom in ways to resolve tasks<p>- Respect your opinion/ support your own projects<p>- Stability and personal relationship<p>- Fully paid Team summit meeting each year.<p>Your Application<p>We hope you wish to join our team. Besides to technical ability we value personality a great deal. For that reason we would love from you to make a personal introduction in which you:<p>- Let us know what your passionate about (does not have to be relevant to programing);<p>- How, why and when you first started programming;<p>- Share some of your personal goals in life in general (in case you know).<p>Please submit your application with any links and code example to the following email [email protected] and please visit our site <a href="http://3QAYJ.com" rel="nofollow">http://3QAYJ.com</a> to learn more.<p>Thank you in advance</font></span><p><font size="1"><u><a href="reply?id=8573545&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543085" onclick="return vote(this)" href="vote?for=8543085&dir=up&by=jecjec&auth=098850ac92ae63cb0660fb082c18ef1f28abec86&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543085"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=ejdyksen">ejdyksen</a> 8 days ago | <a href="item?id=8543085">link</a></span></div><br>
<span class="comment"><font color="#000000">Mutually Human - Grand Rapids, Michigan<p><a href="http://www.mutuallyhuman.com/" rel="nofollow">http://www.mutuallyhuman.com/</a><p>---------------------------------------<p>We are a small team passionate about making people's lives better through software. We're hiring for full time positions as software developers and software designers at our office in Grand Rapids.<p>A little bit about us:<p><pre><code> - We write custom software of all shapes and sizes for clients all over the US.
- We aren't limited to any really specific set of technologies, which is a great
opportunity to learn. In the past year, I've worked with Python, Objective-C
(and Swift), Backbone.js (inside PhoneGap), Angular.js, QT Node.js, and
of course Ruby.
- We practice a sustainable pace. We recognize that we each have lives,
activities, and families outside of work. Late nights and > 40 hour weeks are
rare by design.
- We're agile, but not dogmatic about it. Our process evolves to suit our needs.
- We offer competitive salaries, health/vision/dental insurance, quarterly profit
sharing, retirement + match, weekly catered lunches, and a top-floor office
with snacks, guitars, and your choice of standing or sitting desks.
- We run a makerspace in our building (http://grmakers.com), which gives us
access to lots of cool stuff like a laser cutter and 3D printers.
</code></pre>
A little bit about Grand Rapids:<p><pre><code> - 2.5 hours from Chicago and Detroit, less than an hour to the beach.
- Lots of great beer. Founders Brewery (a mile from our office) has 3 beers in
the Beer Advocate top 15. HopCat is a “World Class” bar on BA.
Just look here: http://beeradvocate.com/beerfly/city/43
- Low cost of living. I bought a nice house with a mortgage payment
30% lower than the rent of my 1 bedroom apartment in Mountain View.
- A growing technology and startup community.
</code></pre>
A little bit about you:<p><pre><code> - You love making software, and you have a couple of years of experience doing it.
- You learn new stuff quickly. You’ve used a lot of technologies, but you’re not
afraid to use more. You have some experience with web or mobile technologies.
- You believe software is written for humans, not computers.
- You want to come into work every day and enjoy the people you work with.
</code></pre>
I'm a software developer on this awesome team. If you're interested, get in touch with me:<p>[email protected]</font></span><p><font size="1"><u><a href="reply?id=8543085&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8543719" onclick="return vote(this)" href="vote?for=8543719&dir=up&by=jecjec&auth=a8229879a6a9fce34161cd0e5401fbe6ff035ba8&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543719"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=joshcanhelp">joshcanhelp</a> 8 days ago | <a href="item?id=8543719">link</a></span></div><br>
<span class="comment"><font color="#000000">Do you discriminate against people without glasses?<p><a href="http://www.mutuallyhuman.com/team/" rel="nofollow">http://www.mutuallyhuman.com/team/</a><p>:)</font></span><p><font size="1"><u><a href="reply?id=8543719&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="80"></td><td valign="top"><center><a id="up_8543802" onclick="return vote(this)" href="vote?for=8543802&dir=up&by=jecjec&auth=5a5da87a3f7955cab58d8fed218fe7679c814495&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543802"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=unclesaamm">unclesaamm</a> 8 days ago | <a href="item?id=8543802">link</a></span></div><br>
<span class="comment"><font color="#000000">That page looks like wall decoration you might see at an optometrist's office</font></span><p><font size="1"><u><a href="reply?id=8543802&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="80"></td><td valign="top"><center><a id="up_8543934" onclick="return vote(this)" href="vote?for=8543934&dir=up&by=jecjec&auth=31d7da722d39e24f745ef91bca31bb2f1ac728e2&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543934"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=metaobject">metaobject</a> 7 days ago | <a href="item?id=8543934">link</a></span></div><br>
<span class="comment"><font color="#000000">Poor Robyn. She didn't get the memo.</font></span><p><font size="1"><u><a href="reply?id=8543934&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543604" onclick="return vote(this)" href="vote?for=8543604&dir=up&by=jecjec&auth=da138badb6ab2636f76aadab41771320f250b28c&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543604"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=jsaxton86">jsaxton86</a> 8 days ago | <a href="item?id=8543604">link</a></span></div><br>
<span class="comment"><font color="#000000">Has anyone had success with this lately? I once posted a description of the company I work for, stating interested users should apply online. I also offered to answer any questions people had via email, which was a mistake. I probably got a dozen resumes from users unable to follow simple directions, mostly from kids in India that were going to finish school in 1-2 years. I also got spam from a few firms looking to fill our positions.</font></span><p><font size="1"><u><a href="reply?id=8543604&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8559655" onclick="return vote(this)" href="vote?for=8559655&dir=up&by=jecjec&auth=d7fd78e68cb268f7d2a2e8e8acb4e4041d20189f&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8559655"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=freyil"><font color="#3c963c">freyil</font></a> 4 days ago | <a href="item?id=8559655">link</a></span></div><br>
<span class="comment"><font color="#000000">As an applicant, I landed an interview with Khan Academy and some other companies from these ads.<p>Although, the Khan Academy process involved many hours of mid-day Skype interviews, phone calls, and a relatively time-consuming take-home assignment followed by a curt thanks-but-no-thanks form letter and an encouragement that I volunteer for them. So ultimately not a success.<p>To be fair to Khan Academy, they seem to be part of a bigger trend towards increasingly time-consuming interview processes that span weeks or months. Start-up companies are in the enviable position of asking for higher investment from applicants, while not offering a higher return (perhaps the idea is that the possibility of landing the job should be its own reward -- but wouldn't this be mutually beneficial for both the applicant and the company?).<p>Or perhaps this is the logical extension of a community built on the idea of work-hard-first and (possibly-)get-compensated-later, or "long-term compensation" [0].<p>Not to say any of this is necessarily wrong or bad. Supply and demand will dictate what the job market can bear, and if a company is receiving a glut of talented applicants, it's their job to thin the herd the best way they know how.<p>[0] <a href="http://blog.samaltman.com/why-silicon-valley-works" rel="nofollow">http://blog.samaltman.com/why-silicon-valley-works</a></font></span><p><font size="1"><u><a href="reply?id=8559655&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8543936" onclick="return vote(this)" href="vote?for=8543936&dir=up&by=jecjec&auth=910730589dc689c550baea71bf0b5bd6ba9f0e82&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543936"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=TheMakeA">TheMakeA</a> 7 days ago | <a href="item?id=8543936">link</a></span></div><br>
<span class="comment"><font color="#000000">Honestly, I doubt anyone who posts a generic jobs@ or online resume black holes will have any more success than any other recruitment platform. It's a real shame, because the density of smart people on HN is much greater.<p>The key is probably knowing your audience. Personally, I gave up after I shot a few e-mails to jobs@ from here and never got a response. I imagine better hackers simply don't have the patience.</font></span><p><font size="1"><u><a href="reply?id=8543936&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8544155" onclick="return vote(this)" href="vote?for=8544155&dir=up&by=jecjec&auth=2583dfa196c5b5b38c1ea7a9d0db643e1af006cf&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544155"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=khwang">khwang</a> 7 days ago | <a href="item?id=8544155">link</a></span></div><br>
<span class="comment"><font color="#000000">I got my current job from one of these threads! It can work.</font></span><p><font size="1"><u><a href="reply?id=8544155&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8545291" onclick="return vote(this)" href="vote?for=8545291&dir=up&by=jecjec&auth=094c5517f14b48ff546a5e65ffc754589e74b046&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8545291"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=st8machine">st8machine</a> 7 days ago | <a href="item?id=8545291">link</a></span></div><br>
<span class="comment"><font color="#000000">As a student I've had 2 job offers from applying to companies here that mentioned interns.</font></span><p><font size="1"><u><a href="reply?id=8545291&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543924" onclick="return vote(this)" href="vote?for=8543924&dir=up&by=jecjec&auth=21809f49384d4c26407ed8ea1d87e2043884310d&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543924"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=olivercameron">olivercameron</a> 7 days ago | <a href="item?id=8543924">link</a></span></div><br>
<span class="comment"><font color="#000000">Udacity (<a href="http://udacity.com/jobs" rel="nofollow">http://udacity.com/jobs</a>) - Mountain View, CA - Remote Possible<p>At Udacity, our mission is to empower our students through education to advance themselves personally and professionally, and help them land their dream job in the tech industry.<p>We believe that education is no longer limited to four years or four walls, it’s a lifelong pursuit. Technology is advancing rapidly, and there is a growing skills gap between job-seekers and career opportunities that Udacity is dedicated to closing through education. To do this, we're rethinking how education is made and delivered to provide relevant, affordable and lifelong learning opportunities to students all over the world.<p>Earlier this year, we teamed- up with leading tech companies to develop a new kind of online curriculum and introduced Nanodegrees: industry credentials for today's jobs in technology.<p>Come join our team, and help us build the university of the future!<p>Currently looking for:<p>• Backend Engineers<p>• Front End Engineers<p>• Data Engineers<p>• Lead Designer<p>• Biz Dev Roles<p>• Student Services<p>• Course Developers<p>If you want to know what it's like to work here, please email me anytime at [email protected].</font></span><p><font size="1"><u><a href="reply?id=8543924&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8575447" onclick="return vote(this)" href="vote?for=8575447&dir=up&by=jecjec&auth=cf9d1ddb984addac745df8fb14ee7a58e1f4fc5b&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8575447"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=alexchantastic">alexchantastic</a> 1 day ago | <a href="item?id=8575447">link</a></span></div><br>
<span class="comment"><font color="#000000">X15 Software | <a href="http://x15soft.com" rel="nofollow">http://x15soft.com</a> | San Francisco, CA | Full time Front-end Developer (AngularJS, SASS, D3)<p>Please send resumes/questions to [email protected].<p><pre><code> About Us
=============================
</code></pre>
X15 Software is a revolutionary large-scale machine and log data management company. Our flagship product provides a highly scalable, open and modern platform that combines search and analytic query capabilities. With best-in-class developer productivity and the lowest total cost of ownership, X15 Software is the new global standard for enterprise-wide machine data efforts.<p>We’re looking for a talented and innovative front-end developer to help us build intuitive and elegant user interfaces for big data search, visualization, and exploration. Working with technologies like AngularJS, node, SASS, Foundation, D3, Atmosphere, and a sophisticated set of RESTful/real-time APIs, you’ll develop and enhance platform features, improve user experience, and prototype visualization interfaces that help our users manage and understand their big data.<p><pre><code> You are
=============================
</code></pre>
* A strong proponent of web standards, usability, and simplicity<p>* Interested in the latest developments in front-end technologies, standards, and tooling<p>* An advocate for clean, testable, reusable code<p>* Able to self-direct, take ownership of feature development, learn and adapt<p><pre><code> You'll get to
=============================
</code></pre>
* Collaborate with a small, talented team of designers and developers to build beautiful, fast, robust user interfaces with the latest technologies and techniques<p>* Influence architecture, tooling, technology stack, and product design<p>* Work in a relaxed, quality-focused environment with an internationally-distributed team of experts<p><pre><code> Skills & Requirements
=============================
</code></pre>
* Familiarity with modern, object-oriented development concepts and best practices<p>* Strong expertise in AngularJS development<p>* Comfort with version control systems (Git)<p>* Experience with OOCSS, SASS, CSS3<p>* Familiarity with Javascript visualization tools and libraries (D3, vega, Highcharts)<p>* Experience interacting with web services and RESTful APIs<p>* Local to SF Bay Area / Peninsula preferred</font></span><p><font size="1"><u><a href="reply?id=8575447&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543044" onclick="return vote(this)" href="vote?for=8543044&dir=up&by=jecjec&auth=1bfe4008ba588585a3e76d2e844e62b49e7524e8&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543044"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=andrewforee">andrewforee</a> 8 days ago | <a href="item?id=8543044">link</a></span></div><br>
<span class="comment"><font color="#000000">Salt Lake City, UT - Lucid Software (<a href="http://www.golucid.co" rel="nofollow">http://www.golucid.co</a>)<p>Lucid Software is building world class graphical applications in the browser and on mobile devices. Our first product, Lucidchart (<a href="http://www.lucidchart.com" rel="nofollow">http://www.lucidchart.com</a>), is an online diagramming application with 2M+ users. We recently launched our second product, Lucidpress (<a href="http://www.lucidpress.com" rel="nofollow">http://www.lucidpress.com</a>), which is an online layout and design application.<p>Lucid is a startup founded by Karl Sun, a former Google exec, and Ben Dilts, our CTO. We're profitable and rapidly growing in every dimension of the business and need people to join our team. For fun we raft river rapids on company retreats, have Friday BBQs, and eat lots of pizza. Talent and ability to learn are more important than specific skills.<p>BACKEND SOFTWARE ENGINEER (all experience levels) - Lucidchart and Lucidpress run with various decoupled services in a Linux environment using Scala, MongoDB, AWS, and MySQL. At Lucid your responsibilities would include enhancing existing services, building new services, integrating with 3rd party applications and ensuring services are highly available, secure, and scalable. Requirements: - Talent - BS degree Recommended experience: - Building large products / applications - Scala or Java - MySQL or other relational database - NoSQL databases - Cloud computing (AWS)<p>Apply here: <a href="https://hire.jobvite.com/j?aj=oa2cZfw7&s=Hacker_News" rel="nofollow">https://hire.jobvite.com/j?aj=oa2cZfw7&s=Hacker_News</a><p>FRONTEND SOFTWARE ENGINEER (all experience levels) - Lucidchart and Lucidpress are powered by one of the largest Javascript codebases on the Internet (about 250k lines of JS), optimized so that the user experience is indistinguishable from an installed native application. Come help us show the tech world what can be done on the web. Requirements: - Talent - BS degree Recommended experience: - Building large products / applications - Javascript - Google Closure compiler/library - CSS/HTML/DOM manipulation - jQuery - Native app development on Android and/or iOS<p>Apply here: <a href="https://hire.jobvite.com/j?aj=odrjZfwG&s=Hacker_News" rel="nofollow">https://hire.jobvite.com/j?aj=odrjZfwG&s=Hacker_News</a><p>*The application requires a current resume, cover letter, and an unofficial or official university transcript.</font></span><p><font size="1"><u><a href="reply?id=8543044&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543091" onclick="return vote(this)" href="vote?for=8543091&dir=up&by=jecjec&auth=f8334246778cd2b8f11627a9cc30e282d8bad97d&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543091"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=yegg">yegg</a> 8 days ago | <a href="item?id=8543091">link</a></span></div><br>
<span class="comment"><font color="#000000">DuckDuckGo (remote or local in Paoli, PA). If you're excited about what we're accomplishing, then check out our hiring page at <a href="https://dukgo.com/help/en_US/company/hiring" rel="nofollow">https://dukgo.com/help/en_US/company/hiring</a>
In particular, we're looking right now for:<p>- 1-2 Back-end (algo) engineers (we mainly use Perl, but Perl expertise is not required).<p>- 1 Front-end engineer (Javascript and/or CSS expertise required needed).<p>- 1-2 Operations engineers (Linux site reliability and/or Chef expertise needed).<p>- 1 Non-tech role working on community, BD, office admin, etc., (local to Paoli, PA).</font></span><p><font size="1"><u><a href="reply?id=8543091&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8577118" onclick="return vote(this)" href="vote?for=8577118&dir=up&by=jecjec&auth=204bd486744b6f6be7e44d2085628165d576a4f8&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8577118"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=jsfour">jsfour</a> 1 day ago | <a href="item?id=8577118">link</a></span></div><br>
<span class="comment"><font color="#000000">octavius labs : Los Angeles : Tech Lead : <a href="http://bit.ly/1GBhnwm" rel="nofollow">http://bit.ly/1GBhnwm</a> : Ruby on Rails/Node.js/Ember
Founded: 2014<p>Funding: Self Funded & In Revenue<p>Website: <a href="http://octaviuslabs.com" rel="nofollow">http://octaviuslabs.com</a><p>Company Focus: A product studio based on LA.<p>Compensation: Salary with equity<p>#### About Us:<p>At octavius we build SaaS products and assemble teams to support the products as they grow.<p>Businesses fail because they run out of cash, yet many companies are still founded without thinking about how, or if, the business will make money. These types of companies push forward in hope of getting acquired but this strategy isn’t sustainable. Businesses are not lottery tickets.<p>At octavius we are more interested in building sustainable businesses. We incubate ideas that can generate cash from day one, and our process of systematically approaching product development allows us to better understand risk. Once we have an accurate understanding of a market, products that have the best opportunity to succeed are spun out into their own companies to grow.
The partners of octavius are founders who have bootstrapped to sustainability or sold businesses in the marketing tech space.
We are currently based in a beautifully restored brick warehouse located in El Segundo’s just south of LAX.<p>#### Tech Lead Responsibilities:<p>The tech lead should think of development as a craft and see themselves as master craftsmen. They are primarily responsible for the development and maintenance of the products that we are incubating. Ideal candidates are full of ideas and are constantly looking for ways to improve themselves and the world around them. Candidates should also be able to lead a team of developers.<p>#### General Requirements:<p>* The belief that the only limitation on what is possible is ones imagination<p>* Open mind<p>* Self motivated<p>* A passion for learning<p>* The ability to “think on your feet”<p>* A willingness to solve problems with the best technology available<p>* Enjoys working on various projects<p>* Must operate effectively on a team<p>* Hustle<p>#### Specific Requirements:<p>* Clear written and oral communications skills<p>* 5+ Years experience writing production quality code<p>* Demonstrated experience working in multiple tech stacks ie Rails/Node/Ember<p>* Experience launching and managing AWS instances<p>* Experience recruiting and leading a team<p>* A CS degree or equivalent work experience<p>* SaaS experience is a plus<p>Email recruiting {at} octaviuslabs.com if interested</font></span><p><font size="1"><u><a href="reply?id=8577118&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8542940" onclick="return vote(this)" href="vote?for=8542940&dir=up&by=jecjec&auth=5285a7f1a84e5492613bcb134eb061eb4fb46f98&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8542940"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=cwhiten">cwhiten</a> 8 days ago | <a href="item?id=8542940">link</a></span></div><br>
<span class="comment"><font color="#000000">Solink - Ottawa, ON, Canada (Local, relocate) - <a href="http://solinkcorp.com/" rel="nofollow">http://solinkcorp.com/</a><p>Send resumes/questions to: [email protected]<p>———————<p>About us:<p>Solink is a video and data intelligence company based out of Ottawa, Canada. For over three years, Solink has developed a comprehensive video intelligence platform to address pressing issues in the areas of security, marketing, compliance and operations. The business applications developed by our team have been largely client driven to ensure relevance and usability. Solink leverages video analytics to refine and expedite contextual data from “Big Data” to aid decisions makers.<p>———————<p>About you:<p>- You like to code. You code for work or school and you code in your spare time.<p>- You have an amazing ability to mash different technologies together<p>- You believe in the best tool for the customer and the situation: you are comfortable working in a mixed tech environment, Windows Server, Linux, iOS, Android, cloud, on-premise, Java, C#, Ruby, etc<p>- All modesty aside, you are a pretty awesome coder in some kind of common language or framework<p>- You work smarter AND harder and you have a passion for learning and improvement<p>- You like tidy code. You understand the value of style and find commenting to be satisfying. It makes you angry when control and view logic mingle<p>- You are test-driven and you like to have a nice thick quilt of unit tests in order to sleep at night<p>- You use tools and frameworks. You write your own tools when necessary and your first instinct is to check and see how other people have already solved this problem.<p>- You like clarity; you are honest, realistic and you don’t mind pointing out the elephant in the room.<p>- You like people, you like working with people, and people like working with you.<p>———————<p>Bonus Points:<p>- Accepted answers on SO<p>- Contributed to a recognized OS project<p>- HTML5, MVC, RoR, CSS, JavaScript and JavaScript libraries: JQuery, D3.js, etc.<p>- IP cameras and Network video recorders,<p>- Video codecs and transcoding<p>- Amazon Web Services or other cloud-based development<p>- OpenCV or other image processing libraries<p>- Highly scalable, high-perfomance distributed computing<p>- ElasticSearch, Solr, Druid.io, Apache Storm, Hadoop, Logstash, Splunk</font></span><p><font size="1"><u><a href="reply?id=8542940&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544335" onclick="return vote(this)" href="vote?for=8544335&dir=up&by=jecjec&auth=d26748c57827d0f3bc3613a0f4aa1f05cc79b975&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544335"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=brettz">brettz</a> 7 days ago | <a href="item?id=8544335">link</a></span></div><br>
<span class="comment"><font color="#000000">Pornhub Network at Mindgeek<p>Location: Montreal, Canada (No remote)<p>If you are passionate about web technologies and love to push the boundaries of what is possible, MindGeek is the place for you. You will be working as part of a team within a fast-paced, fun, challenging and creative environment in order to achieve team-oriented goals.<p>I'm currently looking for a Product Manager to work on one of our highly trafficked websites. Must be OK with working on adult content. We have a great team and resources in a fun and exciting environment.<p>Email: [email protected]</font></span><p><font size="1"><u><a href="reply?id=8544335&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8571878" onclick="return vote(this)" href="vote?for=8571878&dir=up&by=jecjec&auth=af84aeee3f26c9288518213738b23d3858fe14a3&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8571878"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=maxneu">maxneu</a> 2 days ago | <a href="item?id=8571878">link</a></span></div><br>
<span class="comment"><font color="#000000">Upcoming (www.upcoming.nl) - Amsterdam, The Netherlands (No remote, but we'll relocate you) - Full Stack Software Engineer<p>===== About us =====<p>Upcoming is a Dutch 'listicle' website (a listicle is an article consisting of a list of funny/informational/sentimental/whatever stuff). We've been growing continuously since we launched last year, already reaching 10% of the Dutch population with zero € spent on marketing. We’re (an independent) part of Telegraaf Media Groep, one of the biggest publishers of The Netherlands.<p>===== Abour our tech stack =====<p>We use python in the backend (Flask, Celery+RabbitMQ), and manage the frontend with Jinja2, jQuery, LESS and Grunt; persistence is done with MySQL and Redis. The deployments are automated, in a Continuous Integration environment. Our backend is developed in-house, with state-of-the-art publishing related features such as:<p>- Monitoring of 1000's of rss feeds from news websites, in order to detect trending articles all around the globe.<p>- Advanced analysis of our own articles' metrics, for automatically promoting them among our publication channels (this is aimed at maximizing virality).<p>- (Bayesian) Headline and thumbnail A/B testing<p>- Highly scalable click-through-rate optimizer, presented in a workshop of the ACM Recommender Systems conference in Hong Kong last year.<p>Since we're part of a big media group, some of these tools are now being used by other teams, reaching tens of millions of users every day.<p>===== What we're looking for =====<p>- CS degree and/or relevant web experience<p>- Ideally, someone who has spent some time across the whole stack, but we will consider people who consider themselves “just” a frontend or backend developer.<p>- Pragmatism<p>- Python experience not mandatory - just show us that you’d be willing to learn and that you’re smart :)<p>===== What we offer =====<p>- A perfect balance between working on innovation projects and “regular” web development, both with short and iterative development cycles.<p>- The flexibility and dynamism of working in a startup, with the strong stability of being part of a big company.<p>- An international environment, with people from all over the world (UK, Italy, Romania, Argentina, Brazil, Iran, and more)<p>- Thorough relocation assistance, regardless of where you’re coming from<p>- A competitive salary<p>- 25 vacation days<p>- Amsterdam! You’ll be living in one of the most beautiful and cosmopolitan cities in the world.<p>If you’re interested, drop me a line: m.neustadt(at)tmg.nl</font></span><p><font size="1"><u><a href="reply?id=8571878&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543217" onclick="return vote(this)" href="vote?for=8543217&dir=up&by=jecjec&auth=5c950e26b4241da33d91f44c177e3dc6fb7b968b&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543217"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=propellerhat"><font color="#3c963c">propellerhat</font></a> 8 days ago | <a href="item?id=8543217">link</a></span></div><br>
<span class="comment"><font color="#000000">Information Security Consultant - Matasano Security (part of NCC Group)<p>New York - Sunnyvale - San Francisco - Seattle - Chicago - Austin<p>Full time consultants and interns.<p><a href="http://matasano.com/#overview" rel="nofollow">http://matasano.com/#overview</a><p><a href="https://us.nccgroup.com/" rel="nofollow">https://us.nccgroup.com/</a><p>We are always hiring. Matasano specializes in application security. We break web applications, desktop applications, mobile applications on all platforms, and hardware. We perform network penetration tests and security architecture reviews. Our consultants have a wide range of skills such as firmware, bootloaders, drivers and kernel modules all the way up to web applications using Node and everything in between. We release bleeding edge security research and speak at all major security conferences (BlackHat, ToorCon, ShmooCon, etc.).<p>We are looking for people who are passionate about information security. No prior consulting experience necessary. We also hire Summer interns each year in New York, Chicago, and Sunnyvale.<p>Please reach out to [email protected]</font></span><p><font size="1"><u><a href="reply?id=8543217&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543687" onclick="return vote(this)" href="vote?for=8543687&dir=up&by=jecjec&auth=5650e6c418fead6d9a9acbc951ded5d33f462215&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543687"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=retrodict">retrodict</a> 8 days ago | <a href="item?id=8543687">link</a></span></div><br>
<span class="comment"><font color="#000000">DigitalOcean - New York City & Remote - Full Time (<a href="https://www.digitalocean.com" rel="nofollow">https://www.digitalocean.com</a>)<p>DigitalOcean provides the simplest experience to launch and manage your server infrastructure online. We're looking for an experienced engineers who will support the ever growing challenges of running our infrastructure at scale. We are a small, nimble team and you should expect to work on all aspects of the product. <a href="https://careers.digitalocean.com/" rel="nofollow">https://careers.digitalocean.com/</a><p>Software Engineer - <a href="https://careers.digitalocean.com/careers/software-engineer/" rel="nofollow">https://careers.digitalocean.com/careers/software-engineer/</a><p>Ruby Engineer - <a href="https://careers.digitalocean.com/careers/ruby-engineer/" rel="nofollow">https://careers.digitalocean.com/careers/ruby-engineer/</a><p>Ruby Engineer, Community & Marketing - <a href="https://careers.digitalocean.com/careers/ruby-engineer-community-marketing/" rel="nofollow">https://careers.digitalocean.com/careers/ruby-engineer-commu...</a><p>Security Engineer - <a href="https://careers.digitalocean.com/careers/security-engineer/" rel="nofollow">https://careers.digitalocean.com/careers/security-engineer/</a><p>Network Engineer - <a href="https://careers.digitalocean.com/careers/network-engineer/" rel="nofollow">https://careers.digitalocean.com/careers/network-engineer/</a><p>Site Reliability Engineer - <a href="https://careers.digitalocean.com/careers/site-reliability-engineer/" rel="nofollow">https://careers.digitalocean.com/careers/site-reliability-en...</a></font></span><p><font size="1"><u><a href="reply?id=8543687&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8545351" onclick="return vote(this)" href="vote?for=8545351&dir=up&by=jecjec&auth=0ba867f6c41ec92219b46d77b98b3b953750ac81&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8545351"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=ddtruong17">ddtruong17</a> 7 days ago | <a href="item?id=8545351">link</a></span></div><br>
<span class="comment"><font color="#000000">Kaggle, Inc www.kaggle.com San Francisco +various<p>------- About Kaggle -------<p>Kaggle is best known as the world’s largest community of data scientists. Our community of around 200,000 data scientists compete to solve complex data problems. We’re changing the way the most important data-driven problems are solved.
We have branched out beyond our core business of machine learning competitions, to build end-to-end solutions in specific industries. Our first focus industry is energy, where we are working with Global 10 companies to make better decisions on where and how to drill for oil & gas. Our solutions take detailed geological and engineering data and help predict well performance. These solutions can minimize capital and environmental destruction by helping operators drill fewer uneconomic wells.
Kaggle is located in the heart of the SOMA. We are well-funded (Khosla Ventures, Index Ventures and Max Levchin). Our team includes coffee, beer wine and whisky connoisseurs, pastry chefs, ping pong players, kiteboarders and rollerbladers.<p>For all Kaggle career opportuxnities, please visit <a href="https://www.kaggle.com/careers" rel="nofollow">https://www.kaggle.com/careers</a><p>---------- Who We're Looking For -----------<p><i>Statisticians & Data Scientists to Focus on the Energy Industry</i><p>We have branched out behind our core data mining competititons, to build end-to-end solutions on an industry by industry basis. Our first industry is energy, where we're building solutions that can transform the world's largest industry.
In the energy sector, we've started with two basic solutions:<p><pre><code> * using detailed geological data to pick the best place to lease and drill for oil & gas;
* using detailed data on drilling practices to help operators produce efficiently.
</code></pre>
The machine learning and statistical challenges in energy have some interesting properties:<p><pre><code> * geospatial data
* mix of deep science and machine learning
* sample sizes are small and samples are highly correlated
* we care about explainability and insights
</code></pre>
Addressing these challenges requires layers upon layers of statistical machine learning models
We want to fully capture the uncertainties in our modeling at each layer, not just the point estimates.<p><i>Software Engineer</i><p>Help us combine software and machine learning to transform industries.
By leveraging insights we’ve learned from running challenging machine learning competitions that attracted best-in-class talent, we’re now building out end-to-end solutions on an industry by industry basis. We’re currently focused on energy, the world’s largest industry.
As a software developer at Kaggle, you’ll work with our team of developers and data scientists to build solutions that consumes vast amounts of raw data to produce insights that help companies make strategic decisions.<p><i>Client Relationship Manager</i><p>We’re looking for an experienced, multi-talented Client Relationship Manager with aptitude and interest in supporting the inbound sales pipeline for new projects. This role will: (1) onboard potential new clients through a process of email and phone conversations to understand those customers’ needs; and (2) support existing and new projects by providing excellent project coordination and customer service. The CRM role is a cornerstone member of our team who is responsible for connecting the client to Kaggle’s crowd community and enabling the best possible outcomes for each project, start to end.<p><i>Product Designer/Developer</i><p>As the product designer at Kaggle, you will work closely with the data scientists and developers on the Competitions team as well as supporting the creative needs of the energy solutions business. The competition platform is Kaggle’s primary presence on the Internet with an active user base that visits our web page to enter new competitions, interacts with each other on the forums, and learns data science through hands-on experience. As our first full-time product designer, you will have the rare and exciting opportunity to be the lead architect of the Kaggle web experience, as well as guiding our visual identity in marketing and other customer facing materials.<p>For questions, please contact us at [email protected] or visit our career page at <a href="https://www.kaggle.com/careers" rel="nofollow">https://www.kaggle.com/careers</a></font></span><p><font size="1"><u><a href="reply?id=8545351&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8566360" onclick="return vote(this)" href="vote?for=8566360&dir=up&by=jecjec&auth=2ed48ef78390dc035a44bb6c3efd12605f069ae5&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8566360"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=evaneykelen">evaneykelen</a> 3 days ago | <a href="item?id=8566360">link</a></span></div><br>
<span class="comment"><font color="#000000">Germany/Netherlands - REMOTE - Apply at <a href="http://nlcollect-bv.workable.com/jobs/7652" rel="nofollow">http://nlcollect-bv.workable.com/jobs/7652</a><p>ClubCollect has created a service for sports clubs and other organizations to make invoicing of club members a breeze. Invoicing, reminding, online payments: everything is processed via ClubCollect.<p>Since we're entering the German market we're looking for a developer who is proficient in German (speaking & writing). Reason: ability to discuss API interfaces with German developers of external accounting systems and perfecting the localization of ClubCollect.<p>We're a small team (just eight people), we love remote working but we also like to get together for beers and a great dinner.<p>ClubCollect is built in Ruby (+ Ruby on Rails) and JavaScript (+ jQuery).<p>We value simplicity, creative solutions, and the ability to get things done.<p>You will have the opportunity to contribute to all areas of our code base.<p>- B.S. in Computer Science or equivalent experience (proven ability matters more to us than degrees)
- Fluent in at least one dynamically-typed, object-oriented language (e.g. Ruby, Python)
- Several years experience with a modern web framework such as Rails or Django<p>@recruiters: please don't contact us, we're not interested.</font></span><p><font size="1"><u><a href="reply?id=8566360&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8542960" onclick="return vote(this)" href="vote?for=8542960&dir=up&by=jecjec&auth=43cc638d0b7961c3df5ae4af6f5196ae187315d6&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8542960"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=bostonpete">bostonpete</a> 8 days ago | <a href="item?id=8542960">link</a></span></div><br>
<span class="comment"><font color="#000000">Exa (<a href="http://exa.com" rel="nofollow">http://exa.com</a>) Burlington, MA (on 128 outside Boston) | Full-time | H1B welcome<p>We're a relatively small software company that develops simulation/analysis/design products which are used extensively for product design in a number of industries (e.g. automotive, aerospace, and motorsports to name a few). We have a few open positions in the SW team:<p>- I manage the preprocessor group here and we're looking to add a developer to help implement the next generation preprocessor (C++ development of a GUI product with 3D graphics using Qt on Windows & Linux). The job description lists a senior role with 5-7 years experience required, but I'd definitely be open to considering a more junior candidate:<p><a href="http://exa.com/senior-software-engineer---graphical-preprocessor-development-c--.html" rel="nofollow">http://exa.com/senior-software-engineer---graphical-preproce...</a><p>- Another manager here is putting together a team to build a new product to serve as a single high-level entry point that will help users manage the workflow involved with our various engineering software products. At the moment, I believe he's looking at more senior candidates who would be able to play a key role in architecture decisions and help to build the team moving forward.<p><a href="http://exa.com/senior-sotware-engineerssoftware-engineers---application-development-c---(new-product-team).html" rel="nofollow">http://exa.com/senior-sotware-engineerssoftware-engineers---...</a><p>We have other software positions listed on our website but these are the two that we're recruiting aggressively at the moment.</font></span><p><font size="1"><u><a href="reply?id=8542960&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8543409" onclick="return vote(this)" href="vote?for=8543409&dir=up&by=jecjec&auth=b321c7a2e46d7c6857b47ddb0191b8be01dd36bf&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543409"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=zerr">zerr</a> 8 days ago | <a href="item?id=8543409">link</a></span></div><br>
<span class="comment"><font color="#000000">Regarding H1B - are you sponsoring new ones, which probably means waiting for some months/year before first working day? (Not sure how is it going now with quotas...)<p>Also, how does the public data about H1B salaries at Exa correspond to present reality? (those numbers are quite low I mean, especially for someone to consider a relocation).</font></span><p><font size="1"><u><a href="reply?id=8543409&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8543070" onclick="return vote(this)" href="vote?for=8543070&dir=up&by=jecjec&auth=96fb28f4d57d754fe6d70496347e751a90d38f50&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543070"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=fourier"><font color="#3c963c">fourier</font></a> 8 days ago | <a href="item?id=8543070">link</a></span></div><br>
<span class="comment"><font color="#000000">Are you considering remote consultants for these positions?</font></span><p><font size="1"><u><a href="reply?id=8543070&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="80"></td><td valign="top"><center><a id="up_8543226" onclick="return vote(this)" href="vote?for=8543226&dir=up&by=jecjec&auth=09cd74e6e9501cccfbad15ff0487c4f7a6f5c84a&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543226"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=bostonpete">bostonpete</a> 8 days ago | <a href="item?id=8543226">link</a></span></div><br>
<span class="comment"><font color="#000000">No, I'm afraid not -- sorry.</font></span><p><font size="1"><u><a href="reply?id=8543226&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8546310" onclick="return vote(this)" href="vote?for=8546310&dir=up&by=jecjec&auth=c871c3a36ba3975072c2cf5d6d3dad91756c2735&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8546310"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=chrisbennet">chrisbennet</a> 7 days ago | <a href="item?id=8546310">link</a></span></div><br>
<span class="comment"><font color="#000000">As a data point; I interviewed with these folks a while back and I was impressed with how nice everyone I spoke to was.</font></span><p><font size="1"><u><a href="reply?id=8546310&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8563537" onclick="return vote(this)" href="vote?for=8563537&dir=up&by=jecjec&auth=115a1eb96b760cd432f10d950a1f45df542df285&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8563537"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=santiycr">santiycr</a> 3 days ago | <a href="item?id=8563537">link</a></span></div><br>
<span class="comment"><font color="#000000">Sauce Labs - San Francisco - Core Infrastructure Engineer<p>We're looking for backend hackers to help us scale our massive cloud of Windows, Mac and Linux virtual machines.
If you're, like me, bored by all the media sharing rails/django/express webapps out there and want to solve complex problems, like horizontally scaling a highly available backend service, shoot me an email at santi at saucelabs. We're open for INTERN and VISA... hell, even REMOTE if you're awesome enough!!<p>About Sauce:<p>Sauce Labs is a SAAS+E2E series C startup in the bay area. We provide an automated testing cloud service so other companies don't have to build their own Selenium or Appium grids. We pride ourselves about our values and transparency (<a href="https://saucelabs.com/our-values" rel="nofollow">https://saucelabs.com/our-values</a>). Oh, and a nice to have these days: we have a real business model!<p>About the Team:<p>Our CORE team is currently 6 people and we're looking to double it over the next year. We build a highly available service that runs customer Selenium tests real time using VMs. Most of the team is in SF, with some members in EU working on a re-location.<p>About our Stack:<p>Sauce Labs runs on a Python + Twisted stack and we're currently discussing technology changes to take it to the next level. We use KVM and VMWare for the vms, MySQL, Redis, RabbitMQ and other fine tools.</font></span><p><font size="1"><u><a href="reply?id=8563537&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543058" onclick="return vote(this)" href="vote?for=8543058&dir=up&by=jecjec&auth=fa62688b1f8f5a19ab707d3e020a70384c98c6ad&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543058"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=clarkevans">clarkevans</a> 8 days ago | <a href="item?id=8543058">link</a></span></div><br>
<span class="comment"><font color="#000000">Software Engineer at Prometheus Research (New Haven, CT & Telecommute)<p>Prometheus Research builds open source RexDB (<a href="http://www.rexdb.org" rel="nofollow">http://www.rexdb.org</a>) software, and delivers custom applications to help medical researchers organize complex data. We're an established organization based in New Haven, CT, that has most of its staff working remotely (even in New Haven).<p>We have two software development positions open at <a href="http://www.prometheusresearch.com/jobs/" rel="nofollow">http://www.prometheusresearch.com/jobs/</a> and we prefer candidates who live near New Haven, CT (must be on-site Wednesday and Thursday every week). We will consider strong candidates world-wide. Development tools we use:<p>* Linux/Docker for our development/deployment system
* PostgreSQL for our backend database, using HTSQL
* Python for server-side code, using RexDB platform
* Javascript for client, using Facebook's React
* reStructuredText/Sphinx for documentation<p>We need someone who has a passion for documentation and quality software; yet, understands that we're a consulting organization. We provide a mix of open source work and client-facing (usually proprietary) development. If you are interested, send email to [email protected] ; please indicate your location and ability to be on-site in New Haven at least 2 days per week.</font></span><p><font size="1"><u><a href="reply?id=8543058&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8574311" onclick="return vote(this)" href="vote?for=8574311&dir=up&by=jecjec&auth=0e176eb42bd701d10e4535912ba6d33f716ded0a&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8574311"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=dimitry12">dimitry12</a> 1 day ago | <a href="item?id=8574311">link</a></span></div><br>
<span class="comment"><font color="#000000">Company: <a href="http://www.unicity.com/usa/company/" rel="nofollow">http://www.unicity.com/usa/company/</a> - Unicity International located in Orem, UT.<p>Position: Sr Software Engineer. REMOTE and VISA are cool.<p>I'm Software Architect here and I'm looking for a person to complement my team of 2 other engineers. We build and use APIs to integrate modern web/mobile/native apps with legacy back-end systems (Cobol from 90's; C# from 00's). Those APIs are then consumed by external customers, contractors and internal separate web-team. Besides APIs we build and manage ESB to connect those legacy systems with each other.<p>My team does Continuous Delivery to respond to ever-changing priorities. Test-Driven Development gives us sanity and sleep at night.<p>Being big believers in SOA and EIP, most of our intra-team collaboration is about negotiating API contracts. Implementation of each service/component is mostly left to an individual developer.<p>Ideal candidate should feel comfortable with Microsoft stack (i.e. Windows servers, IIS, SqlServer, and C#) and be proficient with OSS products (e.g. Linux, PHP, Java, PostgreSQL, and MySQL).<p>If you are interested, please shoot me an email to [email protected]</font></span><p><font size="1"><u><a href="reply?id=8574311&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544921" onclick="return vote(this)" href="vote?for=8544921&dir=up&by=jecjec&auth=578e525cc933f8d4a4185f44015ab6397f01257c&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544921"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=helloshow">helloshow</a> 7 days ago | <a href="item?id=8544921">link</a></span></div><br>
<span class="comment"><font color="#000000">Product Manager
Fort Lauderdale, FL<p>Hello Show is a new real estate application that is transforming the way real estate agents communicate and schedule. The application has created an easy to use scheduling and showing process for all parties involved through a secure mobile messaging platform, property detail organizer, route planner, and an automated agent-to-agent scheduling system. The team has worked tirelessly with real estate agents to streamline and automate the current process of using endless paper, phone calls, emails, and texts to communicate. The result is an exceptional tool kit that is built for the way Realtors work.<p>On the verge of launching, we are funded and have already secured major contracts with customers. Responses and feedback have ranged between "How do I get this product right now?" to "This is absolutely amazing!" We are obsessed with the user experience and delighting our customers.<p>We are looking for a top-notch Product Manager who will lead the continuous and rapid development of the Hello Show platform. You will manage and lead all aspects of product research, product development, and user experience. You will interface with our remote development and design team, interview users, and work with our sales and marketing team to ensure the delivery of the highest quality product. Everything we do is an experiment, and you must be excited to challenge your assumptions and prove ideas with data.<p>You will be joining an amazing team: one of the top Realtors in South Florida, 2 of the top 100 Ruby on Rails contributors, a market research expert, a seasoned startup operations veteran, a world class-designer, and 3 additional senior engineers. Fortunately, the team needs to grow!<p>Responsibilities:<p>• Plan and lead the development of new features, bugs fixes, and product releases
• Develop deep empathy and understanding of our users and their experiences
• Conduct research interviews and user testing sessions to plan and iterate the application
• Translate research results into actionable items and product plans
• Ensure the highest quality of user experience through rigorous testing and product experimentation
• Become an expert in all aspects, trends, and competitors within the real estate tech industry
• Perform QA and customer support regarding issues, feedback, and product satisfaction
• Make our users incredibly productive and make them love our product
• This is a startup - you will have the opportunity to contribute to every aspect of the company!<p>Qualifications:<p>• Have an insane attention to detail
• Be a UX fanatic and be focused on always simplifying processes
• Have clear and effective communication skills
• Be self motivated, especially without a clear direction or objective
• Know when to outsource, and when to build internally
• Understand software development and project management methodologies
• Experience reading and writing contracts is a plus
• Experience with design or mockup tools is a plus (Sketch, Photoshop, Balsamiq, etc.)
• Understanding real estate transaction processes is a plus
• Must thrive under pressure and lead by example
• Competent in managing a complex product and leading a remote team
• Minimum 3 years project management experience of mobile/web applications
• Have a learner’s mindset and love developing new skills<p>To apply, send an email to team at helloshow.com with “Project Manager” in the subject.</font></span><p><font size="1"><u><a href="reply?id=8544921&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8545633" onclick="return vote(this)" href="vote?for=8545633&dir=up&by=jecjec&auth=b46ac9e5f610918a08c868fd916683c651703f63&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8545633"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=frabrunelle">frabrunelle</a> 7 days ago | <a href="item?id=8545633">link</a></span></div><br>
<span class="comment"><font color="#000000">MaidSafe - C++ 11/14 open source software engineer - Troon, Scotland<p>MaidSafe is currently looking for C++ open source software engineers based at our headquarters in Troon, Scotland. If you, or someone else you know fits the bill and would like to work at MaidSafe, please get in touch with us: [email protected]<p>Role<p>Can you imagine a new decentralised Internet, free from corporations selling your personal details and private information for their profit, where all data is secure, private and anonymous? What if this new network was comprised of the spare computing resources of the world’s Internet users and has already seen over three years of cutting edge C++ 11/14 source code written for it? What if the company building this new platform was based away from cramped, expensive London on Scotland’s tranquil, beautiful and rugged South West coast, yet with excellent transport links to major cities and just a few miles from an International airport?<p>The company implementing the replacement for much of the Internet’s services is called MaidSafe and they plan a public launch of the platform later this year. This new network has generated much interest from the world’s technology press.<p><a href="http://techcrunch.com/2014/07/23/maidsafe/" rel="nofollow">http://techcrunch.com/2014/07/23/maidsafe/</a><p>The Server Needs To Die To Save The Internet<p><a href="http://www.forbes.com/sites/kashmirhill/2014/04/08/beyond-bitcoin-crypto-ownership-companies-hope-youre-ready-to-decentralize-everything-on-the-internet/" rel="nofollow">http://www.forbes.com/sites/kashmirhill/2014/04/08/beyond-bi...</a><p>Beyond Bitcoin: Crypto-Ownership Companies Hope You're Ready To Decentralize Everything On The Internet<p>Welcome to the age of crypto-ownership, where any kind of data can be encrypted and managed by a decentralized network of computers.<p>MaidSafe recently raised over $8m from one of the first ever cryptocurrency-based rounds of financing. As the company approaches product launch, they are looking to strengthen their team with C++ engineers experienced in open source software to help nail bugs and add that final polish.
Your initial role will be to familiarise yourself with MaidSafe’s implementation libraries and once you are comfortable with the code, you will become a key part of MaidSafe’s core development team.
Please have a look at the quality of work for yourself at <a href="https://github.com/maidsafe" rel="nofollow">https://github.com/maidsafe</a>.
Leading Boost and ISO C++ committee members have contributed to the code; it is an exemplar of modern practice and is written exclusively in C++ 11! You may also find MaidSafe’s Continuous Integration testing dashboard of interest: <a href="http://dash.maidsafe.net/index.php?project=MaidSafe" rel="nofollow">http://dash.maidsafe.net/index.php?project=MaidSafe</a>.<p>Mandatory requirements:<p>- Based at MaidSafe’s HQ in Troon, Scotland, 5 miles from Glasgow Prestwick International Airport.<p>- At least 90 days where you sent a commit of C++ code to an open source code repository which we can verify.<p>- At least 180 days where you sent a commit of anything to an open source code repository which we can verify.<p>It would be great if you could supply us with a github.com or sourceforge.net or equivalent account for us to have a look through (the more the better).<p>Good to have:<p>- A proven track record of submitting quality bug reports to open source issue trackers, preferably with bug fixes. Some links to examples would be great.<p>- Proven CI configuration experience,preferably Jenkins though Travis and others are fine, although it would be even better if there is a place on the internet displaying evidence of your experience in this.<p>- Proven experience with unit testing frameworks, preferably Google Test although others would be fine too. It would be very useful to provide some links to test code that you have written.<p>- Proven experience with writing code for at least two of Microsoft Windows, Linux, Apple Mac OS X, Android, iOS or WinRT. MaidSafe code is expected to run on all of these. Again links to examples would be great.<p>- Proven experience with writing C++11/14 code, especially using the C++ 11/14 STL. Links to examples please!
- A presence on Stack Overflow, where you have asked or answered hard questions and been recognised by others for your answers.<p>- At least a minimum of experience writing C++ which works on Microsoft C++ compiler. MaidSafe code needs to work on Visual Studio 2013, so you would have to constrain your C++ to that feature set whilst awaiting Visual Studio 14 to be released.<p>Lovely to have<p>- Proven experience with code correctness checking tools such as valgrind, Purify, clang sanitisers and equivalents. Examples of where you have used them would be great.<p>- Proven experience with code peer review tools such as Gerrit or equivalents, with links to examples if possible<p>- Proven experience with CMAKE on both Windows and on POSIX, again with examples to links if possible<p>- Proven experience in writing and debugging multithreaded code, again any links where you wrote or debugged some multithreaded code would be very useful. In an interview, we would certainly ask for details on this as the MaidSafe code base is multithreaded.<p>Ideal to have (don’t worry if you don’t)<p>Proven experience in the Boost C++ libraries and C++ STL. Examples may include:<p>- History of posts to mailing lists.<p>- Stack Overflow answers.<p>- Books written on C++ theory or practice.<p>- Papers submitted to ISO C++ standards committees, preferably WG21.<p>- Your own code that has passed an open source community review (or even submitted for a review and was rejected). Presentations or lectures given at computer science related conferences. Links to the video of your talk would be superb.<p>- Academic papers on computer science theory or practice. Rejected
papers are welcome.<p>Working at MaidSafe<p>MaidSafe is a small and highly innovative open source technology company where your role is likely to be more varied than the highly specialised roles typical in a corporate employer. They are developing a decentralised and global computing platform that will fundamentally change how the Internet works for millions of users, delivering privacy, security and freedom for everyone. This role provides the opportunity to work for a cutting edge Open Source company with a big future, as well as the freedom to push your skills to the limit.<p>The location<p>MaidSafe are headquartered in Troon, on Scotland’s beautiful West Coast. Troon is a small and affluent town and has an excellent choice of independent bars, restaurants and shops, with first class transport links including a rail link and an international airport .<p>The area is a popular with families and is within easy reach of a number of excellent state and private schools, serving both primary and secondary students. There are also a number of Universities within easy reach and it is worth mentioning that University education is free of tuition fees for Scottish residents. Troon is well known for its large expanse of sandy beaches and those who prefer an active lifestyle will find first class golf, rugby, fishing, football and cycling on their doorstep. Located just 30 minutes from Glasgow, Scotland’s largest and most vibrant city, there is easy access to some of Europe’s best shopping and a lively nightlife.<p>Compensation<p>Being located in Scotland has advantages beyond the clean air and stunning scenery. Household expenditure is just 60% of that in London and average rental payments are 46% below the UK average. Similarly, mortgage payments are 17% below the UK average, while Scotland is estimated to have the 14th best standard of living anywhere in the world, based on GDP. It is also worth noting that the UK median gross annual income within the Information and Communication sector was just under £36,000 in 2012, the highest of all industries.<p>Further to a 3 month trial period, the salary at MaidSafe is £40k per annum. New employees will also become part of the employee benefit trust, an ownership scheme that currently distributes more than 25% of the company’s shares amongst a team of 15.<p>How to apply<p>Please supply MaidSafe with a list of URLs of evidence showing them why you would be a great hire, explaining the context of those URLs where necessary and the company will get back to you if we would like any additional information.</font></span><p><font size="1"><u><a href="reply?id=8545633&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8573430" onclick="return vote(this)" href="vote?for=8573430&dir=up&by=jecjec&auth=7ea7518d39e761aeaeb1b4556965b5ba6fb5bfdf&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8573430"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=manoa">manoa</a> 2 days ago | <a href="item?id=8573430">link</a></span></div><br>
<span class="comment"><font color="#000000">Hipmunk<p>San Francisco, CA - close to Caltrain<p>Experienced iOS, frontend specialists, and fullstack web.<p>We're always open to good backend and Android engineers as well.<p><a href="http://www.hipmunk.com/jobs" rel="nofollow">http://www.hipmunk.com/jobs</a><p>We're a high-standards group with a lot of pride in our products, code, and people. We understand consumer scale and data (Reddit co-founder & engineers) and aspire to build products that customers love. We've had success due to this, consistently getting 4-5 star reviews on app/play stores and net promoter scores at or above the best in the tech industry.<p>We're friends first and enable you to do your best work. Processes are light and trust is high. At 26 engineers we're not so big where you can't know everyone well and have an impact, but not so small where it's chaos and you don't have anyone to learn from. We value learning and growth (and not having bored people) and invest regular time in doing so. For example, every other Friday is open time for you to do stuff that helps you be a better engineer.<p>We're looking for folks that love all of the above and can help us raise our standards. You can email us at [email protected] if you're interested!</font></span><p><font size="1"><u><a href="reply?id=8573430&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543452" onclick="return vote(this)" href="vote?for=8543452&dir=up&by=jecjec&auth=48786d89ab2014de45a1452ef86e95446778d520&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543452"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=atto">atto</a> 8 days ago | <a href="item?id=8543452">link</a></span></div><br>
<span class="comment"><font color="#000000">Kifi (<a href="http://www.kifi.com/" rel="nofollow">http://www.kifi.com/</a>) - Mountain View, CA (H1B okay, prefer already in the area) - Front-end, mobile, designer, backend, search/information retrieval<p>—— About us ——<p>Kifi.com is a recommendations network, designed to help us outsmart information overload together. As Kifi automatically learns your interests and your friends’ interests, it helps you find and discover only the good stuff, from the right people at the right time -- anytime, anywhere. We're well funded and are growing quickly.<p>We use several fun technologies like Scala, Lucene, Akka, Play Framework, browser extensions, AngularJS, Gulp, etc.<p>—— Front-end Engineer ——<p>Build the product, bridging our backend to an excellent user experience. Day to day, you will work with product managers, designers, and other engineers to create a modern and easy-to-use product. You’ll strongly influence which technologies we use across our whole stack and how we incorporate them. We use AngularJS, gulp, etc.<p>• Highly proficient in JavaScript and HTML/CSS<p>• Well versed in HTTP semantics and web API design principles<p>• Good knowledge of at least one backend programming language<p>• Comfortable learning and using new web technologies to build rich applications (think WebSockets, MutationObservers, CSS Transforms, SVG …)<p>—— Mobile engineer ——<p>Design and build high quality, modern consumer mobile user experiences. Define and implement APIs (library and network) for mobile apps. Our mobile engineers should be comfortable working at all levels of the development stack (storage, server, multiple mobile platforms).<p>• Prior iOS or Android experience<p>• Passionate about user experience<p>—— Lead Designer ——<p>We’re looking for a talented designer to join our founding team. You will be working closely with our founders and our experienced team (previously from Google, Facebook and Linkedin). You will be responsible for all design aspects of our consumer product, UI/UX Design, mobile design, website design, and brand design.<p>• Passionate about understanding consumers needs and designing accordingly<p>• Loves designing for a variety of platforms and products (web, mobile, tablets, etc.)<p>• Know which details matter and when to push back and say “no.”<p>• Communicate your designs to the team with patience while being open to feedback<p>—— Machine Learning / Information Retrieval Engineer ——<p>Kifi is dealing with massive amounts of user events, analytics data, social graphs and web documents. You will be asked to design and build a new breed of Machine Learning and Information Retrieval systems that will be of large scale with tight throughput and latency requirements.<p>• Proficient in at least one JVM language and can easily pick up Scala<p>• Passion for elegant and efficient algorithms and data structures<p>• Experience with implementing high quality ML/IR systems<p>There's a few more positions listed at <a href="https://www.kifi.com/about/join_us" rel="nofollow">https://www.kifi.com/about/join_us</a>. If you're interested, the best contact address is [email protected]. If you have any questions or want to chat more about what we're working on, feel free to drop me a line directly at [email protected].</font></span><p><font size="1"><u><a href="reply?id=8543452&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543285" onclick="return vote(this)" href="vote?for=8543285&dir=up&by=jecjec&auth=282a588da943107315bd01358efdbd0611eda895&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543285"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=ehberger">ehberger</a> 8 days ago | <a href="item?id=8543285">link</a></span></div><br>
<span class="comment"><font color="#000000">Desmos - San Francisco, CA<p>-- About us --<p>Desmos builds great math software. If you love math, write great code, and care about education, then we want to meet you.
Check out a sample graph at <a href="https://www.desmos.com/calculator/bbhzdbudoy" rel="nofollow">https://www.desmos.com/calculator/bbhzdbudoy</a> if you haven't seen our calculator before.<p>-- Software Developer (calculator) --<p>The Desmos calculator lives entirely in the browser. It incorporates a realtime LaTeX WYSIWIG editor, includes a full compiler pipeline to interpret unstructured user math input and transform it into meaningful and efficiently-evaluable code, and makes extensive use of modern web technologies such as web workers and canvas rendering. The calculator core is modular and well-tested code which powers our free-to-use desktop, tablet, and mobile versions, used by millions of students, as well as driving our API, which many of the world's largest education companies use to power their graphing and math input. There's a lot to do to make the calculator faster, more powerful, more featureful and more beautiful, build out mobile apps, and continue to grow the calculator API.<p>We're not big into hard requirements, but a love of and interest in math is non-negotiable.<p>If this is the right job for you, you're probably also interested in numerical and geometric computation, compilers, code generation, performance optimization, API design, CAS implementation and graphics.<p>-- Software Developer (lessons) --<p>Desmos is redefining what online math content can look like by treating the creation of each lesson as software development. Each lesson we build has unique interactions, streams realtime data to other students and to the teacher dashboard, and has to work effectively across a wide range of devices. Basically, we're building a new app every few weeks, each one designed by our team of world-class educators and designers. If you're not excited by a never-ending stream of ready-to-build projects that will each make a significant impact on a specific area of math education, this is not the position for you.<p>We need to see a demonstrated ability to create high-quality interactive experiences rapidly, and a love of math and teaching.<p>Bonus points if you've produced and maintained code in a high-throughput / multi-product environment, developed complex single-page web apps, built complex touch interactions, or spent time as an educator.<p>-- Why Desmos --<p>Here's what it means to work at Desmos.<p><pre><code> * Great benefits: full medical and dental, catered lunch every day, unlimited vacation days whenever you need them.
* Productive environment: no mandatory meetings, bureaucracy, or artificial barriers. Full transparency and participation in company goals and direction.
* Competitive compensation: we offer substantial equity and competitive salary to every fulltime employee. We want everyone to feel both financially secure and deeply invested in the future of the company.
* Work-life balance: we value results over hours, and sustainable, long-term success over short-term wins.
</code></pre>
-- Apply --<p>If this sounds like you, send an email with resume to [email protected]</font></span><p><font size="1"><u><a href="reply?id=8543285&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8543367" onclick="return vote(this)" href="vote?for=8543367&dir=up&by=jecjec&auth=e6b1deb8b22a870c60d4149ea9cc3c312a1b5ecc&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543367"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=Caleb_Smith">Caleb_Smith</a> 8 days ago | <a href="item?id=8543367">link</a></span></div><br>
<span class="comment"><font color="#000000">Do you offer an internship program over the Summer?</font></span><p><font size="1"><u><a href="reply?id=8543367&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="80"></td><td valign="top"><center><a id="up_8551975" onclick="return vote(this)" href="vote?for=8551975&dir=up&by=jecjec&auth=1f0d97a436c5b1059c3e0f18c2723db7d4f4e8d3&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8551975"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=ehberger">ehberger</a> 6 days ago | <a href="item?id=8551975">link</a></span></div><br>
<span class="comment"><font color="#000000">No - we don't have any formal internship program, but we've brought interns in occasionally, so feel free to introduce yourself via [email protected]<p>When we've done that, we're generally looking for people who can contribute as an equal member of the team, and we don't have much in the way of formal support for interns, so we can provide a better experience for final-year internships than for first work experience situations.</font></span><p><font size="1"><u><a href="reply?id=8551975&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543158" onclick="return vote(this)" href="vote?for=8543158&dir=up&by=jecjec&auth=12bf13c7bd46e4f3ae719b979be73d0b5e737ea6&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543158"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=chrchr">chrchr</a> 8 days ago | <a href="item?id=8543158">link</a></span></div><br>
<span class="comment"><font color="#000000">LegitScript in Portland, OR and Dublin, Ireland<p>We make the online health product sector safer and more transparent for individuals and businesses. We analyze and report on rogue online pharmacies and dangerous health products. Our services include monitoring, investigative reports, online pharmacy certification, and health product classification. Our mission includes protecting consumers from fake cancer cures, cosmetics that contain mercury, "all natural" supplements that contain dangerous pharmaceuticals, and illegal online pharmacies that fake their certifications and sell prescription medications to anyone who asks. Our clients include Google, Microsoft, Visa, Twitter and the FDA.<p>Our team focuses on producing simple, reliable software through excellent developer testing practices and collaboration, including test driven development, pair programming, and continuous integration.<p>* You should be able to demonstrate ability in Ruby, Python or similar dynamic, object-oriented languages. We use Ruby.<p>* You have experience writing developer tests. We use rspec.<p>* You should be familiar with relational databases and SQL. We use MySQL.<p>* You should have experience with modern web frameworks, such as Rails, Django, Sinatra, or Flask. We use Rails.<p>* You should be able to work with Web technologies such as HTTP, HTML, JavaScript, CSS, jQuery, et cetera.<p>* You should be comfortable working with the Unix command line. Our production systems run Linux.<p>* You have a degree in computer science or equivalent experience. You should know a little about algorithms and data structures.<p>You can find out more about what we do on our website (<a href="http://www.legitscript.com/" rel="nofollow">http://www.legitscript.com/</a>) and our blog (<a href="http://blog.legitscript.com/" rel="nofollow">http://blog.legitscript.com/</a>). We were also recently featured in 37signals’ "Bootstrapped, Profitable and Proud" series (<a href="https://signalvnoise.com/posts/3612-bootstrapped-profitable-proud-legitscript" rel="nofollow">https://signalvnoise.com/posts/3612-bootstrapped-profitable-...</a>). The company is entirely self-funded and has been profitable since 2010. We offer a stable workplace with good benefits and regular pay increases. We believe in working at a sustainable pace with regular office hours.<p>Our spacious, modern Pearl District office is cubicle-free with plenty of natural light. We have sit/stand convertible desks. Many of us bike to work and we have indoor bike parking, as well as a parking or public transit benefit. There's an office dog. The office is a collaborative and fun work environment with no drama. Our friendly in-house barista serves complimentary beverages every morning, and every week we have a catered lunch or happy hour.<p>We offer a generous benefits package that includes a health plan, 401k with company contribution (available after 1 year). We offer full-time employees extra perks like company-paid massages, gift cards to local businesses, paid time of to volunteer, company sponsorship of your hobby, and group social outings!<p>Please apply! <a href="http://jobsco.re/1xL3tBE" rel="nofollow">http://jobsco.re/1xL3tBE</a></font></span><p><font size="1"><u><a href="reply?id=8543158&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8545166" onclick="return vote(this)" href="vote?for=8545166&dir=up&by=jecjec&auth=dd51ab5f31c7bd5b193caf8fbc289b12b0b278ac&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8545166"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=JayNeely">JayNeely</a> 7 days ago | <a href="item?id=8545166">link</a></span></div><br>
<span class="comment"><font color="#000000">Boston Globe Media - <a href="http://boston.com/digitaljobs/" rel="nofollow">http://boston.com/digitaljobs/</a> - Boston, MA<p>Our open roles in engineering are:<p>- Lead Software Engineer - BostonGlobe.com<p>- Lead Software Engineer - Digital Marketplaces (and an upcoming big data project)<p>- Video Web Developer<p>- Front End Developer<p>But we're also hiring for analytics, product management, design, marketing, and more.<p>A year ago John Henry bought the Boston Globe, and we're making big moves now within the world of news and media. We have the challenges and innovation-focused mindset of a startup, backed by the resources of an established company and the credibility of New England's most trusted brand.<p>We're hiring top-tier developers, product managers, UX designers, and content directors to build, brainstorm, and grow new products. If you want to help shape the future of journalism, check out our open jobs and see if one is right for you:<p><a href="http://boston.com/digitaljobs/" rel="nofollow">http://boston.com/digitaljobs/</a></font></span><p><font size="1"><u><a href="reply?id=8545166&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543940" onclick="return vote(this)" href="vote?for=8543940&dir=up&by=jecjec&auth=4d750f0d9dafa45d47441e7d503e77e638bd86e4&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543940"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=alexk">alexk</a> 7 days ago | <a href="item?id=8543940">link</a></span></div><br>
<span class="comment"><font color="#000000">Mailgun (ex-YC W11), <a href="http://www.mailgun.com" rel="nofollow">http://www.mailgun.com</a> Austin, Blacksburg, San Antonio or San Francisco!<p><pre><code> _________
|\ /|
| \ / |
| `...' |
|__/___\__|
</code></pre>
+++ Who we are +++<p>* Mailgun is The Email Service for Developers.<p>* We make it easy for developers to implement email into their software.<p>* We're ex-YC and were acquired by Rackspace in 2012 but remain an independent product.<p>* We move fast in a startup-like atmosphere but we have access to juicy hardware, large marketing muscle and world class data centers.<p>+++ Software Engineer +++<p>* Working on Mailgun sending pipeline.<p>* Scaling and tuning Cassandra clusters.<p>* Optimizing existing and writing new Python and Go code.<p>* Benchmarking and load testing.<p>* Improving Mailgun resilience and fault tolerance with better algorithms.<p>+++ Read more here +++<p><a href="https://github.com/mailgun/hiring" rel="nofollow">https://github.com/mailgun/hiring</a><p>To apply just shoot us an email: [email protected]</font></span><p><font size="1"><u><a href="reply?id=8543940&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8570799" onclick="return vote(this)" href="vote?for=8570799&dir=up&by=jecjec&auth=9c609f3d91e931b4b21a6ee70f714317ff59f731&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8570799"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=fasteddie">fasteddie</a> 2 days ago | <a href="item?id=8570799">link</a></span></div><br>
<span class="comment"><font color="#000000">SEGA / Three Rings Design - San Francisco, Madison, and Philadelphia<p>We are looking for engineers with mobile experience to work our new slate of games currently in development.<p>==Responsibilities==<p>Ownership of server components and client-side game features
Contribution to game design, reusable code projects<p>==Skills & Requirements==<p>2-4 years professional experience
Experience shipping games on iOS and Android
A broad understanding of major game systems – graphics, client/server, physics, etc.
Knowledge of Java, C# or similar languages
Familiarity with Unix environments and SQL (MySQL, Postgres)
Knowledge of good software engineering practices and a willingness to learn
A solid academic background, not necessarily in Software Engineering<p>==Bonus Points==<p>Experience with mobile 3D Graphics
Experience in Unity<p>==About Three Rings Design, Inc.==<p>Three Rings has expertise in MMO development and mobile games. We work in small teams of 5-8 engineers to make amazing things. We encourage autonomy and personal ownership.<p>We are a studio in the SEGA family, whose strong backing and commitment to quality allows us to continue to create innovative and exciting online and mobile games. We believe that good work gets done as part of a balanced life. We encourage new ideas and creativity. Our office is a fun, friendly place, complete with a fully stocked kitchen, a steampunk submarine and other geeky goodies. We live for games and are looking for people who share our passion.
Sound interesting? Send your resume and cover letter to [email protected]!<p>-Eddie</font></span><p><font size="1"><u><a href="reply?id=8570799&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543976" onclick="return vote(this)" href="vote?for=8543976&dir=up&by=jecjec&auth=1fdb34e5d5fbb802402edbb01af9b4ac882018ee&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543976"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=austinhallock">austinhallock</a> 7 days ago | <a href="item?id=8543976">link</a></span></div><br>
<span class="comment"><font color="#000000">Clay.io - <a href="http://clay.io" rel="nofollow">http://clay.io</a> - San Francisco, CA<p>Hiring Full-Stack Engineers. Shoot me an email: [email protected]<p><pre><code> ===================
What we're building
===================
</code></pre>
We're building Steam for casual mobile games - competing with the app stores to provide a better way to discover games on mobile.<p>The approach we're taking focuses on mobile web games - games people can access immediately without the added friction of installing them in an app store.<p><pre><code> ==============
Where we're at
==============
</code></pre>
Small team of 3, with large audience of 4,000,000+ users to push code to. <a href="https://github.com/claydotio/clay-mobile" rel="nofollow">https://github.com/claydotio/clay-mobile</a> for general idea of the quality of code we write.<p><pre><code> =========
Our Stack
=========
</code></pre>
Node.js, CoffeeScript, Docker, Mithril.js, Gulp, Ansible, MongoDB, MySQL, ...</font></span><p><font size="1"><u><a href="reply?id=8543976&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544479" onclick="return vote(this)" href="vote?for=8544479&dir=up&by=jecjec&auth=3638650c503b8ccfb8304f107a60e8a6aadd962c&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544479"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=jnenglish">jnenglish</a> 7 days ago | <a href="item?id=8544479">link</a></span></div><br>
<span class="comment"><font color="#000000">Inferess - San Francisco, CA (both roles allow: INTERN)<p>### About Us<p>We are a vibrant, young company with a mission to be the leading provider of of intelligent, market moving information for professionals and corporations, so that they can be pro-active and make smarter, faster and profitable decisions.<p>You are always flooded with trivial or redundant information, but often miss the one story you needed most. Inferess offers a solution.<p>Can floods in Thailand affect a semiconductor manufacturer in South Korea? Would it possibly affect a storage manufacturer in Silicon Valley? Not only will the users receive critical event updates about the company they are tracking, they will also receive pertinent news that will affect the companies they seek.<p>### Positions<p>Software Engineer, Backend
----------------------------------------
You will be focused on a wide range of backend projects powering some of the most important services such as Search, Data Mining and Graph Algorithms. We follow service-oriented architecture and Java, Scala are the main part of our stack. Successful candidate should have expertise in developing high volume, minimal latency web applications. Coding skills in Python are a plus.<p>- Strong Java and/or Scala experience
- Strong CS fundamentals, including good working knowledge of classic algorithms and data structures
- Experience with Hadoop/Hive/Pig is a big plus
- Exposure to architectural patterns of large, high-scale web applications
- Rigor in A/B testing, test coverage, and other best practices<p>Software Engineer, Search
----------------------------------------
You will be focussed on building the next generation of Search features and infrastructure, constantly striving towards Improving the quality of our search results and conversion rate, and tacking the challenges in contextual information discovery and personalization. Successful candidate must have a strong Java and/or Scala background, in-depth expertise in Lucene and real-world experience working with large, custom search systems.<p>- Real-world expertise with Information Retrieval, Machine Learning, Recommendation Systems
- Strong Java experience
- Experience with Hadoop/Hive/Cascading
- In-depth Lucene expertise
- Strong CS fundamentals, including good working knowledge of classic algorithms and data structures
- Rigor in A/B testing, automated testing, and other engineering best practices
- Exposure to architectural patterns of large, high-scale web applications<p>Read more at: <a href="http://inferess.com/jobs.html" rel="nofollow">http://inferess.com/jobs.html</a><p>Contact us at [email protected]</font></span><p><font size="1"><u><a href="reply?id=8544479&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8545195" onclick="return vote(this)" href="vote?for=8545195&dir=up&by=jecjec&auth=2c74da85181cc1aef3f6bdde9aed5195716ac8a8&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8545195"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=pwman">pwman</a> 7 days ago | <a href="item?id=8545195">link</a></span></div><br>
<span class="comment"><font color="#000000">LastPass - <a href="https://LastPass.com/jobs" rel="nofollow">https://LastPass.com/jobs</a> - Fairfax, VA (DC metro, Dunn Loring metro stop)<p>Our open tech roles are:<p><pre><code> - Software Engineer iOS
- Software Engineer OSX
- Junior Software Engineer
- Senior Software Engineer
- Front End Developer
</code></pre>
We're growing fast, and we're hiring in essentially all departments including support, sales, and more -- if you would enjoy making LastPass better please reach out!</font></span><p><font size="1"><u><a href="reply?id=8545195&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543962" onclick="return vote(this)" href="vote?for=8543962&dir=up&by=jecjec&auth=dedc7f5deca174987102e01367bb38f2cb76e7ba&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543962"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=capkutay">capkutay</a> 7 days ago | <a href="item?id=8543962">link</a></span></div><br>
<span class="comment"><font color="#000000">WebAction in Downtown Palo Alto - Full Time Hiring Front-End Developers and Platform Engineers - Remote OK<p>[email protected]<p>WebAction is a streaming analytics company based in the San Francisco Bay Area.<p>Our goal is to make real-time, predictive analytics simple. Every component of our platform is controlled by a web-based drag and drop app designer and/or a declarative, SQL-like language. This enables our customers to focus on rapidly solving their business challenges, rather than being consumed in building out big data infrastructure. As a culture, we love challenges and strive to improve our product everyday.<p>===Front-end/UI developer position===<p>With the power of the WebAction platform, our mission is to build new visual interaction models that combines real-time analytics and predictive computations. This means we want to streamline the process of bringing data into our platform, transforming it, visualizing it, and applying predictive models.<p>Our front-end stack includes HTML/CSS, JS/JQuery, Backbone, D3. Given that, all candidates should have 10+ years of Javascript experience and an MBA from a top school (just kidding).<p>If interested, feel free to reach out to me [email protected]<p>===Big Data Platform Engineers===<p>We value building out our software frameworks in house. This includes a real-time event processing engine (streaming engine similar to twitter storm), distributed query processing engine, and fault-tolerant clustering software. We've already hit some milestones including linear scalability and multi-node recovery. As a Platform Engineer, you will work on hitting NEW milestones in scalability and speed. Our stack is based on mostly based on java frameworks built in-house and some we leverage (like ZMQ for messaging). You should be interested in search and storage engines like cassandra, hbase, elasticsearch, messaging frameworks like kafka, flume, and event processing engines like storm and spark.<p>===More about WebAction===<p>Its founded by a team of Silicon Valley executives with multiple successful exits in the enterprise (our CEO has sold 1 company to Lockheed and 2 companies to Oracle). We've raised north of $11m since 2013 and our advisors/board have done amazing things like creating the Apple logo and founding one of the top VC firms in Silicon Valley. With every product release, we delight our customers and engage new ones at an ever-growing rate.<p>If this sounds interesting, shoot your resume to HR at [email protected]. If you have questions for me, feel free to send a message to [email protected]</font></span><p><font size="1"><u><a href="reply?id=8543962&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8566720" onclick="return vote(this)" href="vote?for=8566720&dir=up&by=jecjec&auth=32382a62faa723f035faa2ee02ca804b4bf28a20&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8566720"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=sian_OK">sian_OK</a> 3 days ago | <a href="item?id=8566720">link</a></span></div><br>
<span class="comment"><font color="#000000"> ======================================================<p>Cool Functional Tech Team | London, UK | Front and Back End roles
======================================================<p><pre><code> SCALA DEVELOPER
FRONT END DEVELOPER (HTML, CSS, JS)
</code></pre>
Entrepreneurial lifestyle company going through a stage of rapid growth and looking for a strong developers to join the ultra-techy team and work on 100% Greenfield work.<p>Java developers with an interest in Functional Programming considered for Scala role also.<p><pre><code> * Relaxed, dress down atmosphere and cool Central London HQ
* Awesome techy team getting quality code live quickly
* Work from home Fridays, relaxed core hours
</code></pre>
Role:<p>Looking for strong developers who relish technical challenges to join a start up currently taking the lifestyle and brands market by storm. You will take features through from concept to implementation, and love working with different technologies.<p>If you are fed up of slow-moving red tape culture where you can't get code live daily then this role is for you!<p>SCALA DEVELOPER:<p><pre><code> * Scala
* OR strong Java with personal Scala projects
* Ability to write unit and automation tests for your code
* Experience with the Agile development process
</code></pre>
FRONT END:<p><pre><code> * Strong HTML, CSS
* Javascript experience (we work with Angular, but don't mind if you haven't)
* Experience with modular CSS approach (i.e. OOCSS, SMACSS, etc)
* Implemented software designs
</code></pre>
Benefits:<p><pre><code> * Strong salary plus bonus and equity
* Shares in a company with huge trajectory
* Office in one of London's most iconic buildings
* Laid back working environment with quality team
</code></pre>
If you're looking to join London's coolest tech team, then please get in touch with: sian.robertson [at] oxfordknight.co.uk</font></span><p><font size="1"><u><a href="reply?id=8566720&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8551855" onclick="return vote(this)" href="vote?for=8551855&dir=up&by=jecjec&auth=a6ba03a33d26fc612cf236f34b6477bf4996b4cd&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8551855"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=nikhaldi">nikhaldi</a> 6 days ago | <a href="item?id=8551855">link</a></span></div><br>
<span class="comment"><font color="#000000">Placemeter, New York City - <a href="http://www.placemeter.com" rel="nofollow">http://www.placemeter.com</a><p>We are looking for Full-Stack Engineers (Python/Django) and Computer Vision Engineers (C++).<p>At Placemeter we use computer vision at a massive scale, on a large number of video feeds, to understand what is going in in the physical world in real time. We measure how busy places are, what people do, how fast cars go, and much more. We offer that data to developers, citizens, cities, and retailers, radically changing the way they interact with the physical world.<p>At the core we are a bunch of PhDs developing proprietary computer vision algorithms. Come join us if you're tired of product-driven social media and advertising startups and instead want to work in a truly technology-driven environment.<p>Full-Stack Engineers (<a href="https://jobs.lever.co/placemeter/0c7862ed-9a83-4c50-ba16-74bf9b38b493" rel="nofollow">https://jobs.lever.co/placemeter/0c7862ed-9a83-4c50-ba16-74b...</a>): Build web apps, services and APIs on a Python/Django/MySQL/Cassandra stack. We have hard challenges both in the frontend (think data visualization) and in the backend (we are generating a LOT of data).<p>Computer Vision Engineers (<a href="https://jobs.lever.co/placemeter/70be8dcf-e48e-4b9f-8c81-a06782930f39" rel="nofollow">https://jobs.lever.co/placemeter/70be8dcf-e48e-4b9f-8c81-a06...</a>): Develop the next generation of our real-time video processing algorithms which work at a scale that you'll encounter in few other places. Strong C++ skills required and a background in computer vision (MS or PhD) preferred.</font></span><p><font size="1"><u><a href="reply?id=8551855&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8542928" onclick="return vote(this)" href="vote?for=8542928&dir=up&by=jecjec&auth=4c5a2a66af7b2d2f5acd20ffd21b9f42fbae5183&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8542928"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=jhdavids8">jhdavids8</a> 8 days ago | <a href="item?id=8542928">link</a></span></div><br>
<span class="comment"><font color="#000000">Pathgather - NYC - Senior/Lead Frontend Engineer (pathgather.com)<p>Hello HN! We’re Pathgather, a Techstars NYC 2014 startup looking for a Senior Frontend Engineer, a Javascript expert that can come in and own one of the most engaging interfaces in the enterprise market today.<p>Our product is an enterprise learning platform that - unlike traditional learning systems - is one employees actually want to use. We’re solving a big problem felt by almost all large and fast-growing companies: how to continuously train and educate your workforce with modern content on a system built for today’s employee. More than 75% of all companies use a Learning Management System (LMS) in hopes to help with this problem, but their > 60% dissatisfaction rate shows these systems simply don’t work. We’re changing that.<p>We launched earlier this year and our product is already in use by tens of thousands of employees at some of the world’s most recognizable brands: Qualcomm and HBO, to name a couple (we’re also about to launch within one of the world’s largest companies). We’re a small team, but we’ve got investment capital in the bank, real revenue coming in the door, and are now looking for the right person who is ready to take ownership of our frontend.<p>What we’re looking for:<p>* Javascript/Coffeescript expertise<p>* Strong experience with AngularJS<p>* Mastery of CSS & HTML<p>* UX focus<p>* Design skills a huge bonus<p>* Ruby/Rails knowledge another bonus, but certainly supplemental<p>What we can offer:<p>* A (more than) competitive salary & equity<p>* Opportunities to contribute to the open source community. Every Friday, you have the opportunity to work on anything open source: you can contribute to existing projects, work on your own, or open source a part of our codebase. We’ve already open sourced our recommendation and prediction engine (<a href="https://github.com/Pathgather/predictor" rel="nofollow">https://github.com/Pathgather/predictor</a>) and would love to do more!<p>* An awesome team to work with, in an awesome location! We work in the Techstars NYC office with several of New York’s most promising startups.<p>* A chance to have a truly influential role at a company with an ambitious mission: to foster a culture of learning and continual improvement within every workforce through an engaging, rewarding, and collaborative learning platform.<p>If any of this sounds interesting or if you have some questions, please reach out to me at [email protected]. Thanks!</font></span><p><font size="1"><u><a href="reply?id=8542928&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544502" onclick="return vote(this)" href="vote?for=8544502&dir=up&by=jecjec&auth=e2146647883e691fe75a87621ef708f175acc2e0&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544502"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=frisco">frisco</a> 7 days ago | <a href="item?id=8544502">link</a></span></div><br>
<span class="comment"><font color="#000000">Transcriptic: Full-stack developer (emphasis on frontend)<p>Menlo Park, CA; <a href="https://www.transcriptic.com/" rel="nofollow">https://www.transcriptic.com/</a><p>Transcriptic is "Amazon Web Services" for the life sciences. Rather than carry out wet-lab experiments by hand, researchers can code up (or visually configure) their experimental protocols and then run them in Transcriptic's central, highly automated 'biocenter' in an on-demand way. Customers have no upfront capital costs and pay for only what they use. Life science research today is incredibly slow, error-prone, monotonous, and expensive with researchers spending many hours a day every day just moving small volumes of liquids from one place to another. We're building a long-term company to completely change the way life science research and development is done.<p>We're looking for a highly talented full-stack web developer. On top of our robotic work cells is a slew of internal services as well as a Rails app that acts as our lab information management system and customer-facing UI. Challenges range from building rich, interactive interfaces for composing protocols to presenting analytical data generated by the lab back to the user. We use d3, Backbone, CoffeeScript, and React today, but you'd be free to choose your own tools and libraries.<p>We're a rapidly growing startup (you'd be #19), well funded ($6M: Google Ventures, IA Ventures, Data Collective, AME Cloud, Founders Fund) and have customers at places like Harvard, MIT, Caltech, UCSF, and Stanford. You'd be able to work on interesting science and hard technology in a small, all technical team with lots of freedom and resources.<p>A biology background is preferred but not strictly necessary for outstanding people.<p>Recent coverage:<p>- <a href="http://www.theverge.com/2013/12/18/5216738/inside-transcriptic-the-secret-robot-lab-that's-shaking-up-science" rel="nofollow">http://www.theverge.com/2013/12/18/5216738/inside-transcript...</a><p>- <a href="http://techcrunch.com/2014/02/18/aws-for-life-science-with-4-1m-in-the-bank-transcriptic-wants-to-reinvent-scientific-research/" rel="nofollow">http://techcrunch.com/2014/02/18/aws-for-life-science-with-4...</a><p>team at transcriptic.com</font></span><p><font size="1"><u><a href="reply?id=8544502&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8544603" onclick="return vote(this)" href="vote?for=8544603&dir=up&by=jecjec&auth=6ffeaf5d2029433c05028dadfa0a00771e3c119c&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544603"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=gajomi">gajomi</a> 7 days ago | <a href="item?id=8544603">link</a></span></div><br>
<span class="comment"><font color="#000000">The service being offered at this company looks pretty interesting. The quick start example looks very reasonable (I didn't sign up to run, but I guess it must all work out). I was kind of confused though about finding and/or registering reagents and cell strains. How do you do this? It would be nice if there were another quick start example that completes some kind of standard growth assay for a verified bacterial strain (does Transcriptic have a strain library?) in one or two different media types. As a potential customer this is the sort of proof of concept example that I would want to see before pursuing anything further.</font></span><p><font size="1"><u><a href="reply?id=8544603&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="80"></td><td valign="top"><center><a id="up_8544620" onclick="return vote(this)" href="vote?for=8544620&dir=up&by=jecjec&auth=0d8d3db47beb91824566c13f69239e6cf97bcb46&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544620"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=frisco">frisco</a> 7 days ago | <a href="item?id=8544620">link</a></span></div><br>
<span class="comment"><font color="#000000">We do not have a strain library that's generally available across customers. That's organization-specific IP. Strains (which we'd call a type of "resource") are usually sent in by the customer, created from scratch (eg buy TOP10 cells and transform), or bought from a commercial vendor through us. Send us an email and we'd be happy to talk more! team@transcriptic will go to me and a few other people who can answer these questions.</font></span><p><font size="1"><u><a href="reply?id=8544620&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8564532" onclick="return vote(this)" href="vote?for=8564532&dir=up&by=jecjec&auth=280bff4bcc001b95a7db2b30f69d217434b90430&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8564532"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=hseikaly">hseikaly</a> 3 days ago | <a href="item?id=8564532">link</a></span></div><br>
<span class="comment"><font color="#000000">New York Times - NYC - iOS Developer<p>We are looking for some talented iOS developers to join our mobile team at the New York Times. If you are interested, submit your resume to [email protected]<p>Summary:<p>The New York Times started on paper. Then we moved to the web. And now we’re focused on mobile.<p>We are looking to grow the NYTimes mobile team to help bring our award-winning journalism to new platforms and technologies. As a software engineer on the iOS team responsible for our native iPhone and iPad apps, you’ll be responsible for pushing the envelope of technical innovation within our mobile products, and take a leading role in helping to shape the future of The New York Times. Be a part of the same team that was onstage at the Apple iPad product announcement keynote, blazing a trail within the mobile media ecosystem.<p>We are looking for engineers who take pride in writing reusable code with an emphasis on quality over quantity. The ideal candidate will be innovative — interested in applying new techniques and design patterns, but also fluent in current best practices and standards. We embrace the best open source, commercial and custom built software to help our development teams flourish.<p>As a part of our iOS team, you will enjoy a vibrant culture that promoted innovation nestled within an established and respected institution. Inside our new midtown building, you will find floor-to-ceiling windows, plenty of whiteboards, a sushi chef and a team with a sense of humor and a passion for developing products people love and beautiful software that powers them.<p>Some of our apps:<p>* NYTimes for iPhone - <a href="https://itunes.apple.com/us/app/nytimes-breaking-national/id284862083?mt=8" rel="nofollow">https://itunes.apple.com/us/app/nytimes-breaking-national/id...</a><p>* NYTNow - <a href="https://itunes.apple.com/us/app/nyt-now/id798993249?mt=8" rel="nofollow">https://itunes.apple.com/us/app/nyt-now/id798993249?mt=8</a><p>* NYT Cooking - <a href="https://itunes.apple.com/us/app/nyt-cooking-recipes-from-new/id911422904?mt=8" rel="nofollow">https://itunes.apple.com/us/app/nyt-cooking-recipes-from-new...</a></font></span><p><font size="1"><u><a href="reply?id=8564532&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543887" onclick="return vote(this)" href="vote?for=8543887&dir=up&by=jecjec&auth=f63f6e12c5136e7b641817431b4deac9f7c9e9d7&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543887"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=azth">azth</a> 8 days ago | <a href="item?id=8543887">link</a></span></div><br>
<span class="comment"><font color="#000000">Exabeam (<a href="http://exabeam.com" rel="nofollow">http://exabeam.com</a>) -- SAN MATEO, CA, Fulltime<p>Web Front-End Developer<p>-----------------------<p>You will be responsible for designing and implementing the user interface for a brand new data processing
system to detect advanced security threats using the latest stream processing and machine learning
techniques.<p>You’ll be architecting and implementing the user interface and middle tier for the first generation of our
service and you will be the foundation of our web engineering team. You will work with all parties in the
company to define and provide a powerful yet simple and intuitive user interface that will be one of the
key differentiators of the product.<p>You are a strong software engineer who is passionate about building elegant, simple, and stick user interfaces to delight customers. You care about producing clean, elegant, maintainable, robust, well-tested code; you enjoy collaborating with others to come up collectively with the best possible solution. You have experience with performance, scalability, and reliability issues of large 24x7 systems.<p>QUALIFICATIONS<p>--------------<p>* Solid programming experience designing and writing well organized, clean, and extensible code<p>* Experience with some modern front-end technologies that build Rich Internet Applications using JavaScript, CSS, HTML5<p>* Ideally experience using JQuery, backbone.js, underscore.js<p>* Appreciation for high quality user interfaces and interest in user interaction<p>* Self-motivated, detail-oriented and strong analytical / problem solving skills<p>* Bachelor's Degree in computer science or equivalent experience<p>About Exabeam<p>-------------<p>About Us: Exabeam is a big data security analytics company that is unlocking the potential of existing logs to fundamentally change the way cyberattacks are detected and greatly simplify security operations.<p>Our founding team consists of seasoned security and enterprise IT veterans from Imperva and Sumo Logic. We just recently completed a Series A round of $10M privately funded by Norwest Venture Partners, Aspect Ventures and Investor Shlomo Kramer (Founder of Check Point Software, Co-founder & CEO of Imperva, Founding Investor of Palo Alto Networks & Trusteer).<p>If you are interested, please send an email to [email protected]</font></span><p><font size="1"><u><a href="reply?id=8543887&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543096" onclick="return vote(this)" href="vote?for=8543096&dir=up&by=jecjec&auth=37f60ccbb2611a04d0162724ed4a5336ea9a109a&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543096"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=paulc">paulc</a> 8 days ago | <a href="item?id=8543096">link</a></span></div><br>
<span class="comment"><font color="#000000">LOCATION: NYC OR REMOTE<p>Hi, we're DailyBurn a fitness and nutrition company based in Midtown Manhattan. We'd like you to come join our multi-discipline engineering team to build software on a wide array of platforms and technologies.<p>We really are a fitness company, we have our own well equipped gym in the office and offer a gym membership budget for all employees.<p>Everyday we get messages from users sharing the changes they've made in their lives not every company can say the same. If fitness is an area of interest for you this is a great place to get involved in changing peoples lives.<p>We are currently hiring a Lead Backend Engineer and Senior Web Engineer. The Lead Backend position is only available to candidates in NYC or willing to relocate to NYC (we provide relocation help and compensation).<p>As a member of our Engineering team you'll get:<p>* Yearly conference and travel budget<p>* Your pick of development hardware<p>* Access to all the corporate benefits of IAC (DailyBurn is part of IAC)<p>* Monthly gym membership benefit<p>Our team is currently made up of 10 developers with a team of 2 working on iOS and the rest of our team focused on web and platform development.<p>The DailyBurn engineering team offers the chance to work on a wide range of different technologies. Our main web platform is built using Ruby on Rails, but we also work with node.js and golang on our backend systems.<p>We have client applications built for many of the major mobile and TV platforms (using Javascript, Objective-C, Java
and more) and you as a part of the team will have the opportunity to get involved in many of these different platforms.<p>We have built a number of production systems in the Go programming language and are investing in using it as systems language for our backend.<p>Lead Backend Engineer:<p>* Deep experience with Ruby on Rails or an equivalent web platform<p>* Experience leading development efforts for a team<p>* Experience architecting complex backend systems<p>* Experience with golang a plus<p>Senior Web Engineer:<p>* Experience with Ruby on Rails or an equivalent web platform<p>* Comfortable taking on any level of technical challenge<p>* Proven track record of shipping production software in rails or an equivalent web technology<p>* Experience with golang or React a plus<p>Reach out to me directly: [email protected]</font></span><p><font size="1"><u><a href="reply?id=8543096&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8542951" onclick="return vote(this)" href="vote?for=8542951&dir=up&by=jecjec&auth=eda58cfb567b1c6d7506e7d91e0ef5630bdc1aca&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8542951"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=vaxtrac">vaxtrac</a> 8 days ago | <a href="item?id=8542951">link</a></span></div><br>
<span class="comment"><font color="#000000">Software Generalist at VaxTrac (<a href="http://vaxtrac.com" rel="nofollow">http://vaxtrac.com</a>) | Washington, DC | Full-time<p>--------------------------------------------------------------------------------------------<p>Job Description: VaxTrac is looking for talented software engineers who share our passion for making a difference in the world. We build tools to improve the delivery of health care to those that need it most.<p>We are looking for those who:<p>+ Are committed to using their skills to generate real social impact.<p>+ Have an interest and passion for emerging technologies and novel use cases.<p>+ Thrive in loosely structured environments.<p>+ Share the conviction that we can make the world just a little bit better.<p>Roles and Responsibilities<p>+ Core design and development of applications for frontline immunization workers<p>+ Co-development of our core mobile application with partner organizations<p>+ Integration of custom applications with third-party frameworks<p>+ Basic quality assurance and documentation<p>+ Soliciting feedback and triaging bugs reported from the field<p>+ Secondary technical support of global program staff Skills and Requirements<p>+ Unparalleled, demonstrable programming skills<p>+ Full stack experience with an eye for UI and UX design<p>+ Finds ways to proactively contribute to all phases of development with limited supervision<p>+ Willingness to travel and spend time in remote corners of the globe<p>Bonus Points<p>+ Demonstrable expertise in Android development<p>+ Experience with Django, Pyramid or other web-based framework<p>+ Experience building for limited resource environments<p>+ Familiarity with front-end web development and Javascript<p>+ Practical experience with a NoSQL database<p>+ Exposure to CommCare or MOTECH APIs<p>+ Love of travel<p>VaxTrac is committed to creating a diverse environment and is proud to be an equal opportunity employer. All qualified applicants will receive consideration for employment without regard to race, color, religion, gender, gender identity or expression, sexual orientation, national origin, genetics, disability, age, or veteran status.<p>To apply for this position, please email your updated resume and cover letter as attachments to [email protected]. Selected candidates will be contacted for an initial interview. Thank you for your interest!</font></span><p><font size="1"><u><a href="reply?id=8542951&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8550776" onclick="return vote(this)" href="vote?for=8550776&dir=up&by=jecjec&auth=8f8498fb752114813ab02ffe55761aba22cd6283&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8550776"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=BWStearns">BWStearns</a> 6 days ago | <a href="item?id=8550776">link</a></span></div><br>
<span class="comment"><font color="#000000">Human Condition Safety (NYC, no remote)<p>Human Condition Safety (HCS) seeks a developer to work on using embedded systems and data analysis to radically improve industrial safety. We’re bringing data driven decision making and analytics to an industry that’s been around about as long as human civilization.<p>Given the breadth of the system, "Full Stack" is probably an understatement so we’re calling it a Full Stack+ until we come up with something better. Our system involves wearable devices, field deployed base stations and radios, cloud servers, standard browser front ends. It could possibly end up with Unity native frontends, feedback through the wearables, more sensors for inanimate objects, radio analysis, etc. We will be looking into bringing in additional data from existing APIs around the web as well as some more interesting places, i.e. let’s make a crane talk to our servers.<p>You will have the opportunity to work with a variety of databases, embedded systems, web, native, and embedded user-interfaces, and more. Clearly one developer is not going to know every language and technology we end up using from day one. This means that there will be a lot of learning on the job and plenty of room for influencing architecture and technology choices.<p>About the Environment<p>We have one developer (the guy writing this) and one hardware engineer (the CEO) at the moment so you will be joining a very early team. Our customers are companies and there are a bunch of wonderful folks working on the business side getting us very impressive partners and interesting sites to beta test and develop the product with.<p>We will be handling very high volumes of data very early on and so the quality threshold of certain parts will be higher than that of most early stage systems. Even though are moving fast we will also be building our processes and culture and we’re looking for someone who is excited to help us do that.<p>Responsibilities<p>Building and expanding our distributed service-oriented/API-driven architecture
Coding the wearable tech and base stations
Scaling our data collection capabilities
Helping build and expand our analytics and event engine
Many, many other things<p>Technical Skills/Minimum Requirements<p>The ideal candidate must meet the following minimum requirements:<p>You are fluent in Python, Ruby, or another scripting language. Ideally you are a polyglot.
We will be making web interfaces so of course JS/HTML/CSS skills are required.
You know or are not afraid to get to know C/other low level languages.
You have used relational databases, and at least have looked into some non-relational database. Column oriented database experience a plus!
You have used MVC frameworks before (Django/Rails/Laravel/etc), and have used at least one Javascript framework.
You enjoy writing clean readable code and don't mind getting rid of old code when it's the right thing to do.
You haven't used some_random_technology? Great! We'll likely be using a lot of that.
This means you don't mind reading docs and source code and learning quickly.
Version control is a must. We use Git.<p>Important Non-tech Factors<p>You live in NYC or would if the job is interesting enough.
An experimental mindset and a curiosity for all tech interesting.
Good communications skills and personal accountability are a must.
When things go wrong, tell people and fix them.
As the team expands we will do some light code-review to mitigate the bus-factor.
Experience working in a startup is a plus.<p>Technical Nice-to-Haves (not required in any sense but might come in handy/be interesting)<p>Working with/messing around with Unity or other gaming/3D engines.
Prior experience with Arduino/other hardware prototyping.
Experience with hardware/EE.
Familiarity with Machine Learning.<p>Don't hit all the bullet points? Apply anyways, it would be totally unreasonable to expect someone to have all of the above, we're really more concerned about finding smart devs who think this sounds like a really interesting project. Please include any portfolio site/github/etc. and send info to [email protected]</font></span><p><font size="1"><u><a href="reply?id=8550776&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543441" onclick="return vote(this)" href="vote?for=8543441&dir=up&by=jecjec&auth=b421cde3c0693b73fb248298b5549c9557c707be&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543441"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=jarmitage">jarmitage</a> 8 days ago | <a href="item?id=8543441">link</a></span></div><br>
<span class="comment"><font color="#000000">ROLI – London, UK & Shenzhen, China – Full Time – <a href="https://www.roli.com" rel="nofollow">https://www.roli.com</a><p>------------------------------<p>Available roles [1]:<p>Head of Finance<p>Product Manager (Synthesis)<p>Senior Software Engineer<p>Technical Project Manager<p>Production Manager (Shenzhen)<p>Graphic Designer<p>------------------------------<p>We are a design and technology startup based in Dalston, London. Founded in 2009 by Roland Lamb, our products increase the bandwidth of interaction between people and technology. The Seaboard GRAND is our first product and demonstrates our patent-pending SEA Interface technology. Praised by Hans Zimmer, it has been pre-ordered in over 30 countries and won the Design Museum's Product of the Year Award 2014. Our recent Series A of $12.8m [2] has just been followed by $3.7m with Horizons Ventures to scale production and build our presence across Asia [3].<p>We pride ourselves in making ROLI a great place to work and are looking for the right people to grow our team. If you are looking for a healthy and challenging working environment in a vibrant London startup, we have the perfect opportunity for you.<p>If you are interested, feel free to contact me directly at jack [at] roli [dot] com. Highlights include:<p>• Join a fast-growing team with an exceptionally diverse range of skills, interests and talents<p>• Participate in cutting-edge design and innovation that will change the way people physically interact with technology<p>• Take advantage of our in house recording studio, fully equipped kitchen and state-of-the-art design lab<p>• Enjoy a daily team vegetarian lunch and fresh bread baked daily in the office, limitless homemade GOLDnola and the outpourings of our juicer<p>[1] <a href="https://www.roli.com/careers" rel="nofollow">https://www.roli.com/careers</a><p>[2] <a href="http://blogs.wsj.com/venturecapital/2014/05/21/rolis-new-musical-keyboard-makes-fans-of-vcs-to-the-tune-of-12-8m/" rel="nofollow">http://blogs.wsj.com/venturecapital/2014/05/21/rolis-new-mus...</a><p>[3] <a href="https://www.pehub.com/2014/10/horizons-ventures-backs-roli/" rel="nofollow">https://www.pehub.com/2014/10/horizons-ventures-backs-roli/</a></font></span><p><font size="1"><u><a href="reply?id=8543441&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544416" onclick="return vote(this)" href="vote?for=8544416&dir=up&by=jecjec&auth=0f05a05b5e5a0ad8dd1a3fd3ef1f0a4c00d12f32&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544416"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=gnidan">gnidan</a> 7 days ago | <a href="item?id=8544416">link</a></span></div><br>
<span class="comment"><font color="#000000">The Pep Boys - Philadelphia, PA<p>Job Description<p>As part of our new, aggressive approach to our use of the web and its technologies, Pep Boys is now searching for a Senior Web Developer to join our growing team at our Corporate headquarters in Philadelphia, PA. As a member of this team, you will play a key role in developing our internet site – a key corporate objective. We are looking for a candidate that has a rich understanding of the web’s use with extensive experience developing eCommerce sites. As a Senior Web Developer, you will be designing and developing web pages for our site using J2EE as well as other technologies. The successful candidate will be skilled in creating and presenting technical and business solutions, and have the ability to work independently or within a group dynamic.<p>Job Requirements<p>- 3+ years of web development experience, particularly on eCommerce sites
- Effective understanding of Website information organization and navigation design
- Experience working in J2EE or other web development language
- Proficiency in HTML, JavaScript and CSS
- Proficiency in MySQL or other major databases
- Proficiency in UNIX / LINUX
- Must be able to work with multiple individuals and departments.<p>Strong knowledge of any of the following technologies is a plus<p>- Spring Framework – preferable version 3.0
- J2EE platform
- Alfresco Content Management System
- Apache Tomcat Web Server
- Web Services
- Java Server Pages
- Eclipse Development Environment
- Apache Ant
- Apache Maven 2
- Web Analytical, monitoring, and testing tools<p>Experience and Education<p>- 3+ years of web development
- Bachelor’s Degree Preferred but not required<p>Pep Boys Auto is the nation's leading automotive aftermarket retail and service chain. We continue to lead our industry with trusted, credible and helpful associates who focus their passion for cars on our customers and their needs. We are the automotive solutions provider of choice for the value-oriented customer. We offer a competitive salary and a comprehensive benefits package that includes medical, dental, vision, tuition reimbursement, and a 401(k).<p>If interested, please email my manager at [email protected].</font></span><p><font size="1"><u><a href="reply?id=8544416&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543813" onclick="return vote(this)" href="vote?for=8543813&dir=up&by=jecjec&auth=5f59c98cbd14aa123dc34b0191d3604885b4012b&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543813"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=mbesto">mbesto</a> 8 days ago | <a href="item?id=8543813">link</a></span></div><br>
<span class="comment"><font color="#000000">Versame | <a href="http://versame.com" rel="nofollow">http://versame.com</a> | San Franicsco Bay Area or Charlotte, NC area | Software (Mobile) Development Lead and Embedded (Firmware) Engineer<p>Versame is a well-funded seed-stage startup founded by three Stanford graduates and experienced entrepreneurs aiming to revolutionize childhood education. We are building a wearable device that measures the quantity and quality of parent-child interaction. Over 30 years of research shows that the number and quality of words spoken directly to a child is the single greatest predictor of educational success.<p>Compensation: Competitive salary + equity + benefits<p>Job 1 - Software (Mobile) Developer<p>Career Level: 4+ years working preferred<p>Education: CS degree preferred<p>* 3 + years experience in iOS -> Obj-C, CocoaTouch, UIKit, CoreData<p>* Knowledge of Agile Scrum, why it works, what happens when it doesn't and can coach both technical and non-technical people through the process<p>* Experience working with databases (e.g. SQL) and data infrastructure<p>* Familiar with RESTful web services<p>* Ability to effectively lead small agile and distributed teams<p>Job 2 - Embedded (Firmware) Engineer<p>Career Level: Graduate, post-graduate, 2+ years working or experience in embedded area preferred<p>Education: BSCS, BSCE, or BSEE. MSCS, MSCE, or MSEE preferred<p>* Develop firmware architecture for [32-bit ]MCU platform<p>* Design, develop, debug and test firmware for [32-bit] MCUs<p>* C/C++ language expertise (as related to resource-limited embedded systems) Experience with software Engineering processes and tools (i.e. - git, gcc) Successful design of Embedded System products<p>* Experience using RTOS's and related stacks and middleware<p>* Hands-on system bring-up, testing, and debugging skills<p>* Familiarity with power management, memory management, security and safety systems<p>* Experience with communication protocols; USB, RS232, Bluetooth (4.1)<p>* Team player with excellent communication skills<p>Please send to nicki [email protected] (please indicate in the subject whether you're applying for the firmware position or the software lead position)<p>NO RECRUITERS PLS</font></span><p><font size="1"><u><a href="reply?id=8543813&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543026" onclick="return vote(this)" href="vote?for=8543026&dir=up&by=jecjec&auth=212c8ca6d8cc5124681c6445af67c8ae083fb459&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543026"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=chollida1">chollida1</a> 8 days ago | <a href="item?id=8543026">link</a></span></div><br>
<span class="comment"><font color="#000000">Where: Toronto, Canada, no remote workers. We all sit on the trading floor.<p>Who: K2 and Associates. We're one of Canada's more successful hedge funds over the past 13 years.<p>We are building out our algorithmic trading infrastructure and you have a chance to get in at the ground floor.
Come help us turn our technology team from an integral part of how we do business into a profit center with its own PnL.
You are a developer who can take an academic paper and turn it into a working prototype because what you are designing won't have been done before.<p>You value correctness above all else because when you send 100,000 orders a day if you get 1% of them wrong, bad things will happen...<p>You are comfortable with F# or C++.<p>If you love a challenge please reach out to me at [email protected] or my email in my profile.</font></span><p><font size="1"><u><a href="reply?id=8543026&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8564077" onclick="return vote(this)" href="vote?for=8564077&dir=up&by=jecjec&auth=10fee8968a00ace55d6c92a130b837184b80de0d&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8564077"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=YelpEngineering"><font color="#3c963c">YelpEngineering</font></a> 3 days ago | <a href="item?id=8564077">link</a></span></div><br>
<span class="comment"><font color="#000000">Software Engineer - Infrastructure (San Francisco)<p>Yelp’s Infrastructure team designs, implements, and maintains scalable software architectures that are at the heart of our technology. We do everything from build performance monitoring tools, to design APIs and develop libraries.<p>Is building large scale distributed systems, debugging systems and optimizing network performance is a way of life for you? Does helping enable hundreds of engineers to safely and quickly deploy their features into production get you excited? While serving millions of active Yelp users? If so, come join the team that is the glue that connects Yelp’s feature teams to their underlying software infrastructure - in the data centers, up in the cloud, or anywhere in between.<p>You will
Design, build and deploy software systems that run 24/7 at increasing scale
Develop custom tools and automate processes to find answers to challenging questions and reveal the unknown
Write code, document, participate in code reviews, and mentor other engineers<p>Requirements
Strong knowledge of systems and application design, with an understanding of operational and reliability trade-offs
Solid foundation in data structures, algorithms and complexity analysis
Strong understanding of Linux or Unix-like operating systems
Solid understanding of fundamental protocols like TCP/IP, HTTP, DNS
Strong understanding of web technology
Fluency in Python, C, C++, Java, or a similar language
Ability to work well with and able to influence many personality types at all levels of the organization
Excellent written and interpersonal communication skills<p>Pluses
Experience building distributed systems
Experience at a large-scale consumer internet site
Experience with configuration a management tool (Puppet, Chef, Ansible, Salt, CFEngine), monitoring (Nagios, Sensu, Monit), metrics (Graphite, statsd)
Experience with AWS
Experience with web frameworks<p>Apply here: <a href="http://www.yelp.com/careers?jvi=oWxPZfw1,Job" rel="nofollow">http://www.yelp.com/careers?jvi=oWxPZfw1,Job</a></font></span><p><font size="1"><u><a href="reply?id=8564077&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544600" onclick="return vote(this)" href="vote?for=8544600&dir=up&by=jecjec&auth=3933b20e69251bc841eee93defd8e0748e1bee53&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544600"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=matm">matm</a> 7 days ago | <a href="item?id=8544600">link</a></span></div><br>
<span class="comment"><font color="#000000">Heap (YC W13) - Software Engineer - San Francisco or Remote<p><a href="https://heapanalytics.com/jobs" rel="nofollow">https://heapanalytics.com/jobs</a><p>=== What's Heap? ===<p>Heap is taking a new approach to web and iOS analytics: just capture everything. Whereas other analytics tools require you to define events upfront, Heap lets you run instant, retroactive analytics without writing code.<p>=== The Role ===<p>Your creativity and intelligence are much more important to us than your experience with our stack. We're eager to meet all types of engineers, regardless of where you live or what tools you use day-to-day.<p>We’d like to get to know you if:<p>* You enjoy teaching yourself whatever is necessary to build something.<p>* You plow through obstacles.<p>* You’ve written 10,000 lines of code that look really embarrassing in retrospect.<p>* You’ve written 10,000 lines of good code since then.<p>* You communicate ideas with clarity and precision.<p>* You make decisions with a preference for empiricism and measurement.<p>* You like fruit, sunshine, and bad jokes.<p>Our stack is Node + Redis + Postgres + Backbone + D3. Some things we're working on:<p>* Data capture. We’re integrating with more clients and frameworks, including Android, AngularJS, and Backbone.js, all with virtually no performance overhead or integration cost.<p>* Real-time infrastructure. We support an expressive set of queries that allow our users to slice and dice the data in arbitrary ways. The results need to come back with sub-second latencies and reflect up-to-the-minute data.<p>* Data visualization. Simple pre-generated graphs just don't cut it. There's an enormous number of ways to organize the data. Existing tools only scratch the surface.<p>Heap was in Y Combinator’s W13 batch. Soon after, we raised a $2M seed round from Ron Conway, Ram Shriram, Sam Altman, Garry Tan, Alexis Ohanian, Harj Taggar, and others.<p>We work in SF but are absolutely open to remote engineers. Email us at [email protected] with reasons as to why you'd make a great fit.</font></span><p><font size="1"><u><a href="reply?id=8544600&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543358" onclick="return vote(this)" href="vote?for=8543358&dir=up&by=jecjec&auth=38411cb920ced5c354362282ab1f2830a48f4ed7&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543358"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=jasonparekh">jasonparekh</a> 8 days ago | <a href="item?id=8543358">link</a></span></div><br>
<span class="comment"><font color="#000000">SalesWise - Atlanta [Atlanta Tech Village in Buckhead] - Fulltime, but interns OK.<p>Space: Sales is the singularly most important function of any Company. Many new products and platforms have been created to help sales organizations with these changes but sales reps and sales managers lack a compelling, easy to use, interface to organize, visualize, and share data about their prospects and sales performance.<p>Solution: We are building a sales platform that automatically interfaces and integrates with all backend sales systems and tools (CRM, Email, Calendar, Social, etc). Our initial product radically simplifies how sales reps organize and interact with the prospect/buyers It’s an elegantly-designed product adapted to let them efficiently sell to their prospects without the headaches of CRM entry or spreadsheets.<p>We’re an Atlanta startup looking for passionate hackers that love building amazing, technically-difficult products that make huge impact on people’s lives. We’re a small team with a strong background: a wildly successful serial entrepreneur that can’t stop and a passionate ex-Googler that lives on the forefront of tech.<p>You:
- Love the full stack. It’s OK if you don’t have chops in every technology that we’re using, but you should genuinely be eager about learning. Here’s what comprises our stack: AngularJS, Meteor, Go (aka Golang), IPython (data science).<p>- Look forward to building and owning huge parts of the product. You’ll be one of the first technical hires and there are a lot of exciting pieces to work on, lets chat and we can find the right fit for you.<p>- Love to get going -- have the mentality of a hacker and the quality of a pro.<p>- Yearn for the high rewards of an early stage startup. Lucky for you, not so much risk as we have a great comp plan lined up for you.<p>- Want to influence and grow the culture of a young company. The way we see it: We’re building something of immense value, let’s have fun doing it.<p>- Live in Atlanta, or can make the move.<p>- Are full-time, part-time or looking for an internship. If you’re a rockstar, we don’t care what your deal is, let’s get you on board!<p>Get in touch: [email protected]</font></span><p><font size="1"><u><a href="reply?id=8543358&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544487" onclick="return vote(this)" href="vote?for=8544487&dir=up&by=jecjec&auth=d3edfbe528aba3a4fb435d3e74ebe2d8bcee5e01&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544487"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=swampthing">swampthing</a> 7 days ago | <a href="item?id=8544487">link</a></span></div><br>
<span class="comment"><font color="#000000">Clerky - REMOTE - Software Engineer (Ruby on Rails, Javascript)<p>Help fix the legal industry!<p>The way legal transactions are done is filled with inefficiencies, which leads to ridiculously high legal fees. We're fixing this by building software that automates and streamlines the process.<p>We're profitable and growing. We launched a company formation service last year, and are now one of the most popular ways for high-growth technology startups to incorporate. Y Combinator and 500 Startups both use our software to handle their investment paperwork.<p>If you are interested in fixing the legal industry, this is arguably the best place to be (no hyperbole).<p>We use a lot of Ruby on Rails and Javascript, so familiarity with these technologies is a requirement. That said, we're not religious about any particular technology - we believe in using the right tool for a given problem (we also have services written in Scala and Go). We have extensive spec and feature coverage, and have everything hooked up to a continuous integration server.<p>This is a great fit for people who want to work:<p>... at a product-driven company bringing an old-fashioned industry into the future<p>... on a product that has a lot of usage and visibility in the startup community<p>... in a company that strongly values good software development practices<p>... at a financially sound company<p>... hard, with ownership and dedication (but sustainably)<p>... with flexible hours and competitive pay<p>... where you'll be a key early hire<p>Some hard requirements we have:<p>- An inability to write anything but clean, maintainable code.<p>- Bothered by code without test coverage.<p>- 5+ years of experience building software as part of a team with strong development practices<p>- 5+ years of experience with Rails and Javascript<p>We are not looking for consultants. This position is for full-time employment.<p>If all of this sounds good to you, please send (1) your resume and (2) a code sample that you're proud of to jobs at clerky.com.</font></span><p><font size="1"><u><a href="reply?id=8544487&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543408" onclick="return vote(this)" href="vote?for=8543408&dir=up&by=jecjec&auth=3d46295d46310456f648d196e9f17aa1b852fee9&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543408"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=shedd">shedd</a> 8 days ago | <a href="item?id=8543408">link</a></span></div><br>
<span class="comment"><font color="#000000">Zoomer (YC S14) – SAN FRANCISCO OR REMOTE<p>Zoomer is building a new take on food delivery - a platform to handle an extraordinarily high volume of concurrent deliveries from restaurants that already deliver (i.e. pizza, wings, sandwiches, etc.). We’re bringing much needed change to local high-volume delivery restaurants that are still doing delivery the way they’ve always done it. Our restaurants and their customers love the service, and our order volume is surging. You’ll make a real impact working to build and scale Zoomer as we continue to grow to new restaurants and territories.<p>We have amazing investors behind us, including Y Combinator (S14), First Round Capital, SV Angel, CrunchFund, Eric Ries, Gabriel Weinberg, the founder of DuckDuckGo and others. This is your opportunity to get in on the ground-floor - we’re making key hires to build our core team. You’ll have a ton of impact – lots of freedom to evolve our platform, stack, and apps. We follow strong dev practices, put an emphasis on testing, and deploy rapidly.<p>Help us build cutting-edge technical solutions to:<p><pre><code> - tough logistics problems, quickly routing orders to optimal drivers in near-real-time.
- on-demand prediction and forecasting models
- scalable compute and data infrastructure
- multiple mobile apps - for restaurants and drivers - on both iOS and Android
- range of complex real-time frontend interfaces
</code></pre>
Our stack: We have an AI backend service that handles order routing, multiple mobile applications – for our drivers and restaurants, and several Ruby on Rails applications for customer-facing/internal services. We’re using Angular.js and CoffeeScript on the frontend.<p>The roles we’re hiring for:<p><pre><code> - Ruby on Rails engineers
- UI/UX Designer
- Artificial Intelligence engineer
- Frontend engineer (Angular.js)
- Mobile (iOS and Android) engineers
</code></pre>
If this sounds interesting and you'd like to learn more, please apply here: <a href="https://jobs.lever.co/zoomer" rel="nofollow">https://jobs.lever.co/zoomer</a></font></span><p><font size="1"><u><a href="reply?id=8543408&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8542993" onclick="return vote(this)" href="vote?for=8542993&dir=up&by=jecjec&auth=0118dd5387cef80771da0f34d7670f91b1ce410d&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8542993"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=dalys">dalys</a> 8 days ago | <a href="item?id=8542993">link</a></span></div><br>
<span class="comment"><font color="#000000">Platform (python backend) engineers to Lifesum - Stockholm, Sweden - Full-time<p>Lifesum (formerly ShapeUp Club) is a Swedish digital health startup with the vision to make people healthier and happier by using applied psychology and technology. Founded in 2008 with headquarters in central Stockholm, the company is growing fast and was selected by Wired UK as one of Stockholm's 10 hottest startups.<p>To date, the Lifesum app has registered more than 7,3 million members, with 500,000 monthly active users and a growth rate of more than 10,000 new members per day.<p>We have big ambitions and are growing fast<p>Lifesum is looking for a product driven engineer, even with little documented experience. Our small team is international and diverse, so we are welcoming everyone. Focus will be on handling large amount of data in multiple formats, not all normalized, work with services integration (REST, OAuth, analytics, payment) and finally with algorithms for graphs (social, content relationship, ...), search and statistics.<p>Product-wise, you will be taking features from the idea stage to scalable production deployments. You will work on making highly scalable solutions, get feedback from analytics and monitoring tools and be able to refine and perfect your solution at each iteration<p>Tech-wise, our server code is written in Python (Django) and you will be exposed to distributed computing (scalable stack, queue-driven distributed processing), cloud hosting (Amazon), database optimization (MySQL, Redis, MongoDB), search solutions (Sphinx, ElasticSearch), test driven development, load testing, etc<p>You have some (professional or personal) experience with Django, Python (and bonus for Amazon Web Services and distributed systems) And you love building products and work for millions of users.<p>To read more go to <a href="http://jobs.lifesum.com/jobs/427" rel="nofollow">http://jobs.lifesum.com/jobs/427</a><p>--<p>I work as a Platform Engineer at Lifesum myself. Feel free to contact me personally and ask me anything [email protected] :) Or use the form in the url to apply.<p>Cheers!</font></span><p><font size="1"><u><a href="reply?id=8542993&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8543269" onclick="return vote(this)" href="vote?for=8543269&dir=up&by=jecjec&auth=150dee078c920b34e96c8f844624c7e4d9af4447&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543269"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=plaban123">plaban123</a> 8 days ago | <a href="item?id=8543269">link</a></span></div><br>
<span class="comment"><font color="#000000">Hey, will Lifesum sponsor visa for an international candidate?</font></span><p><font size="1"><u><a href="reply?id=8543269&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="80"></td><td valign="top"><center><a id="up_8543838" onclick="return vote(this)" href="vote?for=8543838&dir=up&by=jecjec&auth=33b2d072c9d6f5c3af8ee8e164c01cde778cb736&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543838"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=dalys">dalys</a> 8 days ago | <a href="item?id=8543838">link</a></span></div><br>
<span class="comment"><font color="#000000">I think we can help with that sort of stuff, but I don't have all the knowledge actually. Throw me an email if you'd like and I can get you in touch with our HR person.</font></span><p><font size="1"><u><a href="reply?id=8543838&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543550" onclick="return vote(this)" href="vote?for=8543550&dir=up&by=jecjec&auth=f45cef97e5eb9b8c6a1ba1a0e21352fdae04a9bc&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543550"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=gsastry">gsastry</a> 8 days ago | <a href="item?id=8543550">link</a></span></div><br>
<span class="comment"><font color="#000000">Iterable (<a href="https://www.iterable.com" rel="nofollow">https://www.iterable.com</a>) - San Francisco, CA
Come join Iterable. We are bringing the growth hacking tools that consumer Internet companies like Twitter/Facebook build internally to other e-businesses. We aim to build the best user growth engine on the planet. It's crazy how messaging and email usage are changing, but the technology and capabilities haven't caught up to the 21st century.<p>Our team of hackers and thinkers is from quant finance/Twitter/Google, (we built large parts of Twitter's growth systems). One of our top level goals is to build a uniquely fun and growth oriented company culture.
Knowledge sharing in any capacity is highly valued here -- are you interested in prediction markets or PGP encryption? Do you enjoy teaching posture techniques or purely functional data structures to others? We pair program, design together, and generally create a learn-and-teach environment here.<p>If you're interested in coming on board, you can help with some challenges we face:<p><pre><code> - Scale our messaging API
- Design and write performant, beautiful, asynchronous interfaces
- Write software to build machine learned user models
- Make data visualizations for our email and user data
- Design an immutable deployment infrastructure for our platform
</code></pre>
Some aspects of our culture that make us different:<p><pre><code> - We are all very focused on self improvement
- Our company has egalitarian and transparent values (work when you want, on what you want)
- We are chill and empathetic people
- The company is completely transparent
</code></pre>
Technologies you'll work with:<p><pre><code> - Scala
- ElasticSearch
- Postgres
- Redis
- AngularJS
- Play Framework
- RabbitMQ
</code></pre>
You'll get to work with us at our office at 5th and Market in San Francisco. If this sounds like an interesting and fun opportunity for you, please email me: girish at iterable.com</font></span><p><font size="1"><u><a href="reply?id=8543550&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8545438" onclick="return vote(this)" href="vote?for=8545438&dir=up&by=jecjec&auth=8f8a0600c702269966dbb998a42924afde17cad9&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8545438"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=azinman2">azinman2</a> 7 days ago | <a href="item?id=8545438">link</a></span></div><br>
<span class="comment"><font color="#000000"><p><pre><code> // .
// ,-. ,-,-. ,-. . ,-. . ,-. ,-. |
// |-' | | | | | | | | | ,-| |
// `-' ' ' ' |-' ' ' ' `-' `-^ `'
// |
// '
// Empirical - Downtown San Francisco (remote ok)
</code></pre>
We're a small team from the MIT Media Lab merging data science, communications, and visualization/UX. Our goal is to organize and summarize what's important in your digital life.<p>We've raised 1MM to date from Floodgate + Greylock + Ben Ling (FB/Google/Khosla) + Scott Belsky (née Behance, now Adobe), and are gearing up for launch of our new app.<p>We're looking for fellow engineers who have design taste that ideally are full-stack and whip smart; you get major bonus points for also having NLP/ML/visualization skills. Our stack is Scala+Postgres+Redis on the backend, a custom json-based document model (think Parse but nicer API), and iOS & Mac apps. Android/web will come after.<p>We've got what we believe to be the next great cloud offering that smashes down data silos and facilitates far easier collaboration than is done by anybody today. Oh and it all looks and feels oh-so-pretty. We like pretty.<p>Empirical is very focused on strong morals (our original team came from building tech for post-earthquake Haiti), dreaming big, open sourcing our work (still to come), seeking diversity (the CEO, me, is gay & Jewish for example), and frequent laughing.<p>Not much info on our site: <a href="http://empiric.al" rel="nofollow">http://empiric.al</a><p>My website for a taste of my work at MIT: <a href="http://azinman.com" rel="nofollow">http://azinman.com</a><p>Email: [email protected]</font></span><p><font size="1"><u><a href="reply?id=8545438&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8568602" onclick="return vote(this)" href="vote?for=8568602&dir=up&by=jecjec&auth=c9e32cbe254736683ebee26a060e77e03bb719ba&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8568602"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=Dejeanakay"><font color="#3c963c">Dejeanakay</font></a> 2 days ago | <a href="item?id=8568602">link</a></span></div><br>
<span class="comment"><font color="#000000">21CT - Austin, TX - You’re like us, relentlessly curious. At 21CT we create data analytics solutions to reward that curiosity.<p>We’re on a mission to use data analytics to create a better world, from providing better healthcare for those who need it by detecting and neutralizing healthcare fraud, to helping you keep your promise to your customers by identifying the attackers hiding in your network.<p>The data has the answers, you have the questions, we have the technology and people ready to help. Together we will find the answers faster with data analytics products designed for the way you think, look, and find.<p>Reward your curiosity now and learn more about who we are, what we do, how we do it, and if you are ready, be a part of our journey.<p>SEE OUR POSITIONS: <a href="http://www.21ct.com/about-us/careers/" rel="nofollow">http://www.21ct.com/about-us/careers/</a><p>WHAT WE ARE LOOKING FOR: DATA ENGINEERS, DEV/OPS ENGINEERS, SW DEVELOPERS<p>We have fantastic benefits and offer relocation to folks outside of Austin. We do require that you have the right to work in the US without visa sponsorship.<p>Reward your curiosity! Join us in saving taxpayer dollars!<p>Feel free to email me at: [email protected]<p>Cheers,
DeeDee Breaux
Sr. Technical Recruiter - 21CT</font></span><p><font size="1"><u><a href="reply?id=8568602&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543364" onclick="return vote(this)" href="vote?for=8543364&dir=up&by=jecjec&auth=873e4b2d4dbd65e96ab09b35477cbca9fe2480e0&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543364"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=arobbins">arobbins</a> 8 days ago | <a href="item?id=8543364">link</a></span></div><br>
<span class="comment"><font color="#000000">Factual - Los Angeles, San Francisco, Shanghai<p>Factual is currently hiring engineers and data lovers of all levels in the SF Bay Area, Los Angeles, and Shanghai.<p>Factual’s location platform enriches mobile location signals with definitive global data, enabling personalized and contextually relevant mobile experiences. Built from billions of inputs, the data is constantly updated by Factual’s real-time data stack. We were named one of "50 Disruptive Companies in 2013" by MIT Technology Review. We have a terrific team that is still fairly small and an incredible CEO who was previously the co-founder of Applied Semantics (which was bought by Google and became AdSense). Factual has venture funding from Andreessen-Horowitz and our partners/customers include Facebook, Yelp, Trulia, and Newsweek.<p>There are many challenging problems to work on at all layers of the stack: data cleaning and canonicalization, storage, deduping, serving, APIs, improving data using machine learning, etc. A great example is one of our most recent products, Geopulse Audience, which stands at the intersection of high quality places data and large scale analysis of user geo-data: <a href="http://www.factual.com/products/geopulse-audience" rel="nofollow">http://www.factual.com/products/geopulse-audience</a> . If you love data, Factual is the place to be. Our main criteria are that you're smart and get things done, but you'll get bonus points for experience with Clojure (<a href="http://www.factual.com/jobs/clojure" rel="nofollow">http://www.factual.com/jobs/clojure</a>), machine learning, NLP, algorithm design, or Hadoop.<p>You can email me personally at [email protected], or view our job postings and apply directly via Jobvite: Los Angeles/SF Bay Area Software engineer: <a href="http://hire.jobvite.com/j/?cj=oQR1Vfwn&s=Hackernews" rel="nofollow">http://hire.jobvite.com/j/?cj=oQR1Vfwn&s=Hackernews</a></font></span><p><font size="1"><u><a href="reply?id=8543364&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544285" onclick="return vote(this)" href="vote?for=8544285&dir=up&by=jecjec&auth=f8fe752b608b5d42de454df92ed1a4ab98e0f4f2&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544285"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=mikebabineau">mikebabineau</a> 7 days ago | <a href="item?id=8544285">link</a></span></div><br>
<span class="comment"><font color="#000000">The Factory - San Francisco, CA -- <a href="http://www.thefactory.com/" rel="nofollow">http://www.thefactory.com/</a><p>The Factory is changing the way companies are built. Backed by the founder of Skype and Rdio and led by Rdio's founding team, we're a product incubator without the burdens of outside influence, funding, or time constraints.<p>We are well-funded and have a small and exceptional team of twelve. We have a gorgeous office in SOMA. Salary is top-notch, as are the equity and benefits as an early member.<p>We're looking for highly experienced, entrepreneurially-minded builders to help:<p>* Dream up and build products<p>* Develop and perfect a common platform and pipeline<p>* Create open-source tools to help others launch products<p>Current positions:<p>* Senior Front End Engineer (<a href="http://www.thefactory.com/pdfs/sr_frontend.pdf" rel="nofollow">http://www.thefactory.com/pdfs/sr_frontend.pdf</a>)<p>* Senior Back End Engineer (opportunistic)<p>* Other roles (opportunistic)<p>You can read more about us here: <a href="http://gigaom.com/2013/06/21/the-factory-janus-friis-todd-berman/" rel="nofollow">http://gigaom.com/2013/06/21/the-factory-janus-friis-todd-be...</a><p>On the front end, we use reactive patterns for both web (ClojureScript) and mobile (Objective C).<p>On the back end, we have a message bus-oriented microservice architecture built in Scala and Go. Services are packaged as Docker containers and continuously deployed to a Mesos+Marathon cluster on AWS.<p>Other key tech includes Finagle, ZooKeeper, Exhibitor, Zipkin, Kestrel, Packer, CloudFormation, and Python. And our small team has already open sourced a few dozen projects: <a href="https://github.com/thefactory/" rel="nofollow">https://github.com/thefactory/</a><p>If you think this sounds like a fit, drop me a line: [email protected]</font></span><p><font size="1"><u><a href="reply?id=8544285&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543079" onclick="return vote(this)" href="vote?for=8543079&dir=up&by=jecjec&auth=e82f44eb08e179951c41f754d803a495d9a53cc6&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543079"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=daveoflynn">daveoflynn</a> 8 days ago | <a href="item?id=8543079">link</a></span></div><br>
<span class="comment"><font color="#000000">Paddington, London, or REMOTE within UK. VISA help available. (<a href="http://www.alchemytec.com" rel="nofollow">http://www.alchemytec.com</a>)<p>AlchemyTec is a team of about ten people building software to turn the labour supply market on its head, starting with the UK construction industry. We want to become the Xero of finding, hiring, and paying people. And we need help.<p>We're looking for a couple of modern-Java web developers. Ideally at least one will have an interest in levelling-up their front-end skills.<p>Our team has a diverse range of backgrounds, skillsets, and locations. We're happy to talk to remote folk, though for now, only as long as you're in the UK. We understand visas and right-to-work issues, so if you're new in London or wondering about how to get here and pick up a cool job, give us a shout.<p>Our stack, back to front:<p><pre><code> AWS
Docker + Puppet
MySQL
Dropwizard + Hibernate microservices for new stuff
Tomcat for legacy work
Jersey + Jackson for REST
Angular + jQuery
</code></pre>
Our tooling:<p><pre><code> git
maven (ick)
gulp + less + browserify
Vagrant
Bitbucket
Bamboo
JIRA
Hipchat
Google Docs
mural.ly
Confluence
</code></pre>
Developers do everything from work with product management and design, through coding, test, deployment, and production monitoring and troubleshooting.<p>The application process: If you have a portfolio of OSS work, send us a repo URL and a cover letter: [email protected]. If not, send us a CV with the cover letter. Absent a portfolio of work on a stack similar to ours, we'll ask you to do a fairly real-world coding test. We'll follow up with a couple of chats on Skype or in person depending on your location. Then we either like each other or we don't.<p>Warning: you may have to pretend you like dogs. Several members of the team are mildly obsessed.<p>Questions, comments, flames, etc: [email protected]</font></span><p><font size="1"><u><a href="reply?id=8543079&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8566163" onclick="return vote(this)" href="vote?for=8566163&dir=up&by=jecjec&auth=e9e43fd2d43f1930964947022684ec3ca5e3938d&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8566163"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=sridevizarin">sridevizarin</a> 3 days ago | <a href="item?id=8566163">link</a></span></div><br>
<span class="comment"><font color="#000000">Indix - Chennai, India | Job Title - Software Engineer<p>Indix is a product intelligence data science start-up. We are head quartered in Seattle and have our development based in Chennai. Indix is founded by Sanjay Parthasarathy, a veteran from Microsoft and we were recently in news for our Series A-1 funding of 9 million, post our Series A funding of 4.5 million in April last year.<p>INDIX == Trust,Challenge,Support,Fun<p>Indix, is building the world’s biggest product database to enable any app or website to become product-aware in an era of pervasive commerce. We think that in the future, all applications will be ‘product-aware’, just as applications today are ‘people’ and ‘location’ aware, and therefore every interaction in the physical and virtual world will be an opportunity to inform, educate and sell products.
Today, Indix's SaaS and Big Data product intelligence platform enables brands and retailers to explore, analyze, visualize, and act on the world’s product related information in real-time. Indix's extensive APIs give developers the tools to build limitless product-aware applications and services. Many of the world’s leading brands and retailers like Microsoft are already using the Indix platform to increase productivity, drive revenue and grow their brands.<p>For more info, please log onto www.indix.com and to know more about the job, <a href="http://www.indix.com/join_us#software_engineer" rel="nofollow">http://www.indix.com/join_us#software_engineer</a><p>Reach out to us at [email protected]</font></span><p><font size="1"><u><a href="reply?id=8566163&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544694" onclick="return vote(this)" href="vote?for=8544694&dir=up&by=jecjec&auth=ce2e30d1656b7c6634355e59f9f566b7ab230881&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544694"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=svec">svec</a> 7 days ago | <a href="item?id=8544694">link</a></span></div><br>
<span class="comment"><font color="#000000">iRobot (<a href="http://www.irobot.com" rel="nofollow">http://www.irobot.com</a>) - Bedford, MA (just outside of Boston, MA) and Pasadena, CA<p>Looking for great work-life balance at a job where you can say "I can't find my keyboard under all these robots!" ? Want a place with half-day Fridays during the summer so you can spend extra time with your family on Friday afternoons? Then iRobot might be the place for you.<p>We blend cutting-edge research and practical engineering to build useful and affordable robots.<p>We're looking for smart engineers who are easy to work with. You should probably think robots are cool, but a robotics background is NOT required. (I had no robotics background when I started at iRobot.)<p>iRobot is looking for software engineers and mechanical engineers.<p>Here are a few of our 20+ job openings:<p>* Embedded software engineers: We're hiring for "big embedded" (C++, Linux, and big cpus) and "small embedded" (C, bare-metal, small cpus). If you have good OO skills (C++, Java, etc.) but no "embedded" background that's okay too - shoot me an email and we'll chat.<p>* Java software engineers<p>* Linux kernel engineerings<p>* Software engineers for vision, navigation, and mapping<p>* Test engineers<p>* Mechanical engineers<p>* IT engineers<p>* UX/UI engineers<p>Check our jobs site for all positions: <a href="http://www.irobot.com/us/Company/Careers.aspx" rel="nofollow">http://www.irobot.com/us/Company/Careers.aspx</a><p>Email me directly if you'd like to know more: [email protected]<p>Please email even if you're not sure if you're a match; I'm always happy to talk to other HN'ers!<p>PS: We have hired people from these "Who is hiring?" posts, thanks to HN for this service/forum</font></span><p><font size="1"><u><a href="reply?id=8544694&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543547" onclick="return vote(this)" href="vote?for=8543547&dir=up&by=jecjec&auth=96756175368e5450c276ec60cceaebe6cc1c49fc&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543547"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=Symbol">Symbol</a> 8 days ago | <a href="item?id=8543547">link</a></span></div><br>
<span class="comment"><font color="#000000">Concord, MA USA (soon Cambridge, MA USA)
KAYAK Software Corporation<p>Mobile engineers, iOS<p>Hi all. Kayak is a world leader in travel search and our iOS app is #1 in the App Store. Help us keep it that way by building out exciting new features and relentlessly polishing our existing ones. You should have iOS and network experience along with a deep desire to grow and perfect your skill sets.
We have a very small team we are looking to grow, so talented juniors all the way to principal architects are welcome. We have a flat organization, give people tons of responsibility and autonomy, pay well, and enjoy lots of perks.<p>If this sounds good feel free to reach me directly at [email protected]</font></span><p><font size="1"><u><a href="reply?id=8543547&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8560238" onclick="return vote(this)" href="vote?for=8560238&dir=up&by=jecjec&auth=bff3d8574e6e6846f40c2bc4922ea368fead622c&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8560238"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=michaelhoffman">michaelhoffman</a> 4 days ago | <a href="item?id=8560238">link</a></span></div><br>
<span class="comment"><font color="#000000">Princess Margaret Cancer Centre: Postdoctoral fellowships in computational biology and machine learning - <a href="http://pmgenomics.ca/hoffmanlab/join/" rel="nofollow">http://pmgenomics.ca/hoffmanlab/join/</a><p>Toronto, ON<p>The Hoffman Lab at the Princess Margaret Cancer Centre and the University of Toronto, seeks new members for our team. We develop machine learning techniques to better understand chromatin biology. These models and algorithms transform high-dimensional functional genomics data into interpretable patterns and lead to new biological insight. A key focus of the lab is to train a new generation of computational biologists.<p>We seek postdoctoral fellows for several projects in computational genomics and machine learning. Selected projects include:<p>1. Integrating epigenomic and sequence data to better understand human gene regulation.<p>2. Creating models of transcription factor binding that allow us to predict the effects of perturbations.<p>3. Developing deep learning techniques to find novel behavior in multiple functional genomics datasets.<p><i>Required qualifications</i>: Doctorate in computational biology, computer science, electrical engineering, statistics, or physics, obtained within the last five years. Submitted first-author or joint first-author papers in genomics or machine learning research. Experience in scientific programming in a Unix environment.<p><i>Not required, but preferred qualifications</i>: Experience with epigenomics and graphical models. Published first-author papers in peer-reviewed journals or refereed conference proceedings. Experience programming in Python, R, C, and C++.<p><i>Benefits</i>: Effective 27 December 2014: Includes extended medical insurance, dental insurance, maternity benefits (15 weeks), parental benefits (additional 35 weeks), Canada Pension Plan contributions, and employment insurance.<p>We will consider candidates who need a VISA to work in Canada.<p><i>To apply</i>: We will accept applications until the position is filled. Please submit a CV, a PDF of your best paper, and the names, email addresses, and phone numbers of three references to the address at <a href="http://pmgenomics.ca/hoffmanlab/join/#postdoc" rel="nofollow">http://pmgenomics.ca/hoffmanlab/join/#postdoc</a></font></span><p><font size="1"><u><a href="reply?id=8560238&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544430" onclick="return vote(this)" href="vote?for=8544430&dir=up&by=jecjec&auth=f01d49a4ddf73807819db2cacf9cdc225d89e178&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544430"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=brendankemp"><font color="#3c963c">brendankemp</font></a> 7 days ago | <a href="item?id=8544430">link</a></span></div><br>
<span class="comment"><font color="#000000">WeSpire — Boston, MA
Senior Engineer<p>Hi there! We (WeSpire) are looking for a Senior Rails Engineer.<p>Guess What? That developer could be you!<p>If you've ever wanted to work with a world-class team on a brand new type of product that is being used for good in some of the biggest companies in the world, this could be your chance.<p>### What does WeSpire do?<p>WeSpire gets people to do things that matter, and measures the impact. We use behavior change models to design interactions that encourage people to act differently. Then we measure the delta in their actions, analyze the real-world impact, and display the information back to the user. We started in the sustainability space, and now work for many different applications, including volunteering, diversity, and happiness at work.<p>### What will I work on?<p>#### 1: Design Implementation<p>You will take designs from our product team, and turn them into working features.<p>You will work in one of two modes: prototype mode or production mode.<p>Sometimes, you will build code to last the next 4 years.<p>Sometimes you will build experiments to last the next 4 weeks.<p>You will know the difference between prototype mode and production mode and be comfortable working either way, because we are building solutions that are entirely new, and there isn't a ton of known art, so we end up figuring out many things from scratch! (This should excite you)<p>#### 2: Writing Code<p>When you are writing code you will understand how people will use it, and you will know how to make things intuitive for them. You will also know when to raise the alarm because a feature doesn't fully make sense and will confuse people.<p>Sometimes you will write every part of the feature, from CSS to JS to Ruby to SQL.<p>Sometimes you will split those responsibilities with a coworker.<p>Either way, you will be phenomenal at Ruby and SQL, good at JS, and at least passable at CSS.<p>#### 3: Writing Tests<p>You will write tests that will give you confidence about the behavior of your methods, of your objects, and of the system as a whole. From these tests, you will design code that is object-oriented, and interfaces between objects that are clear and reduce coupling. You will care about the readability, reusability, and performance of your code, and usually in that order.<p>#### 4: Working with Developers<p>You will:<p>* Work with developers who are similarly obsessed with good design and strong tests
* Care about your coworkers and be invested in their success as well as your own
* Be a leader in code quality while reviewing code, while mentoring other developers and defining best practices
* Re-architect major portions of our application, as we rapidly outgrow our current architecture
* Push the team to select the right technologies to meet our performance, maintenance, and code quality standards<p>### What technologies will I work with?<p>* Rails 4.1+
* Ruby 2.1+
* Postgres
* Redis
* Resque
* SASS
* Coffeescript
* jQuery
* HAML
* Git
* Github
* Heroku
* Slack<p>### OK, but will I actually like working at WeSpire?<p>We think so. If you like tackling difficult problems and working with smart people, you'll feel right at home here. On top of that, we work hard to make sure the company culture is strong and welcoming, and that the work arrangements are flexible enough to work for you.<p>Here are some of the things that we do:<p>* Work from home Fridays. Pretty much everyone in the company works from home. It saves emissions, which fits with our sustainability roots, and it's nice to have a day to work from your couch.
* Flexibility on working from home other days too. You will like working from the office, and interacting with your coworkers, but if you have to work from home some day, it's not a big deal.
* "Wine Wednesdays" to bring the entire company together over some drinks
* "Meat-free Mondays" with a chef-prepared vegetarian lunch for the whole company every Monday!
* The entire company does an outing together at least twice a year. Previous outings: a scavenger hunt through the streets of Boston and Cambridge, a boat trip to a Boston Harbor Island, and a trip to Hopsters to brew our company beers.
* Speaking of, we brewed our own company beers, a Belgian Quad and a Double IPA. They're not too shabby, if we do say so ourselves.<p>### Compensation<p>Cash comp paired with equity — we are looking for the best and will pay them accordingly. Health coverage and dental benefits, 401k plan. The opportunity for growth in a fast-paced progressive company is yours for the taking.<p>### To Apply<p>Please send a link to projects you are proud of, a resume or LinkedIn profile and your quick thoughts on what’s extremely interesting to you about using technology to inspire positive actions to kim [at] wespire [dot] com.</font></span><p><font size="1"><u><a href="reply?id=8544430&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8569211" onclick="return vote(this)" href="vote?for=8569211&dir=up&by=jecjec&auth=6fb6db15522608a2b3c053a1348c0d2d891bc050&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8569211"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=saucelabs">saucelabs</a> 2 days ago | <a href="item?id=8569211">link</a></span></div><br>
<span class="comment"><font color="#000000">Sauce Labs (San Francisco, CA)<p>About Sauce Labs:
We are a tight-knit team working to transform how software testing and development gets done. Our platform makes Selenium testing, JavaScript Unit testing, manual testing, and mobile application testing hassle-free. Sauce lets you test your mobile and desktop web apps instantly across 350+ OS/Browser platforms & debug easier with videos and screenshots.<p>We are currently looking for:<p><i>Core Developers<p></i>Software Developers (Full-Stack Web)<p><i>Software Developers (Mobile R&D)<p></i>Senior Software Developers (Core)<p><i>Senior Software Developers (Web Frontend)<p></i>Senior Software Developers (Web Backend)<p><i>System Administrators<p></i>Solution Architects<p>To learn more about Sauce Labs, please visit: <a href="https://saucelabs.com/" rel="nofollow">https://saucelabs.com/</a><p>If you're interested in joining Sauce, send us your resume at: <a href="http://hire.jobvite.com/CompanyJobs/Careers.aspx?c=qDz9Vfw0&s=StartupHire&nl=1&page=Jobs" rel="nofollow">http://hire.jobvite.com/CompanyJobs/Careers.aspx?c=qDz9Vfw0&...</a></font></span><p><font size="1"><u><a href="reply?id=8569211&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543393" onclick="return vote(this)" href="vote?for=8543393&dir=up&by=jecjec&auth=36c7e842e8be03be0d7dea01e584e63a81c19916&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543393"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=dh0913">dh0913</a> 8 days ago | <a href="item?id=8543393">link</a></span></div><br>
<span class="comment"><font color="#000000">Help.com - <a href="http://help.com" rel="nofollow">http://help.com</a> - Software Engineer - Austin, TX<p>Backed by $6 million in seed funding, Help.com's team of customer service and technology experts is setting out to build the next generation of customer service software. Our goal is to give companies the tools they need to delight their customers at enterprise scale. We want to disrupt the customer service software market by providing companies (and their customers) with tools that are powerful and simple to use.<p>At its core, Help.com is a technology company and we are looking for talented engineers at all levels to join our growing technical team in Austin (currently 6 people). Our technical stack consists of Node.js on the backend and Backbone on the front-end.<p>Skills we like to see:<p>* Proficiency in JavaScript and familiarity with common libraries
* Hands on Node.js experience is highly preferred
* Skilled in front-end development with HTML, CSS, and JavaScript.
* Unix/Linux basics
* Experience working through cross-browser compatibility issues
* Strong problem solving skills
* Experience working with Git<p>All of our positions are based in our office in downtown Austin. We offer competitive compensation (both cash and equity), an unlimited vacation policy, as well as fully paid medical benefits for eligible employees. We offer relocation within the US.<p>If you're interested, check out <a href="http://help.com/jobs" rel="nofollow">http://help.com/jobs</a>. More about what it's like to work with us can be found at <a href="http://help.com" rel="nofollow">http://help.com</a>.<p>We've hired people from HN before, so mention how you found out about us.<p>Feel free to email recruiting {at} help {dot} com with any questions.</font></span><p><font size="1"><u><a href="reply?id=8543393&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8553164" onclick="return vote(this)" href="vote?for=8553164&dir=up&by=jecjec&auth=54690b33f383c9e143c32ac2960d398fb32889ab&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8553164"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=_br">_br</a> 5 days ago | <a href="item?id=8553164">link</a></span></div><br>
<span class="comment"><font color="#000000">BloomReach - Mountain View, California<p>H1B, Intern, Full-time all welcome! Remote is possible.<p>Apply at <a href="http://bloomreach.com/careers" rel="nofollow">http://bloomreach.com/careers</a> or send an email to dGFsZW50QGJsb29tcmVhY2guY29t and mention Hacker News.<p>BloomReach helps online businesses get their high quality and relevant content found by their consumers. Our big data marketing applications provide personalized discovery to visitors between devices and across channels. We've raised $41M from Bain Capital, NEA and Lightspeed.<p>Our services just came in #9 in this year's Entrepreneur's 100 Brilliant Companies:
<a href="http://www.entrepreneur.com/article/233887" rel="nofollow">http://www.entrepreneur.com/article/233887</a>
Check them out at <a href="http://bloomreach.com/what-we-do/" rel="nofollow">http://bloomreach.com/what-we-do/</a><p>This past month has been REALLY EXCITING for us, marking a significant milestone in our company's 5 year history. First, we globally launched our third publicly available product, BloomReach Compass. Secondly, we've officially expanded to the UK! Here's some of the recent media coverage:<p>* <a href="http://startups.co.uk/why-is-this-41m-backed-silicon-valley-start-up-moving-to-the-uk/" rel="nofollow">http://startups.co.uk/why-is-this-41m-backed-silicon-valley-...</a><p>* <a href="http://www.forbes.com/sites/gregsatell/2014/10/12/the-future-of-marketing-combines-big-data-with-human-intuition/" rel="nofollow">http://www.forbes.com/sites/gregsatell/2014/10/12/the-future...</a><p>* <a href="http://venturebeat.com/2014/09/30/bloomreach-launches-compass-navigates-to-the-united-kingdom/" rel="nofollow">http://venturebeat.com/2014/09/30/bloomreach-launches-compas...</a><p>* <a href="http://www.mediapost.com/publications/article/235110/bloomreach-develops-predictive-content-analysis-e.html" rel="nofollow">http://www.mediapost.com/publications/article/235110/bloomre...</a><p>* <a href="http://www.zdnet.com/artificial-intelligence-in-your-shopping-basket-machine-learning-for-online-retailers-7000034309/" rel="nofollow">http://www.zdnet.com/artificial-intelligence-in-your-shoppin...</a><p>We have open positions in Engineering, Data Science, Talent Acquisition, Sales, Marketing, and Product and Engagement Management. If you don't find a position that interests you, fill out a generic application and let us know what you want to work on- we're just looking for smart, talented people to help us continue making BloomReach an amazing place to work.<p>For engineering positions, if you can also send at least one cool piece of code, or a link to something you’ve built, or a hack that you’re proud of, we’d love to see it!</font></span><p><font size="1"><u><a href="reply?id=8553164&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><img src="s.gif" height="1" width="14"></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=cairo140">cairo140</a> 4 days ago | <a href="item?id=8558358">link</a></span></div><br>
<span class="comment"><font color="#000000">WEB SOFTWARE ENGINEER • SAN FRANCISCO, CA<p>Email [email protected].<p>-----<p>ABOUT US<p>TATCHA is a young, innovative luxury beauty company based in San Francisco with a focus on E-Commerce excellence. We're growing our web team to build out the next generation of innovative features for our website and tech ecosystem to delight our customers all around the world.<p>-----<p>ABOUT OUR TECHNOLOGY<p>• Modern LAMP/PHP stack<p>• ExpressionEngine and Magento<p>• Grunt/Compass/SASS asset pipeline<p>• jQuery/Angular.js frontend<p>-----<p>ABOUT THE POSITION<p>TATCHA is a small and growing company, so you would be joining as a key member of the team, owning features from inception to deployment to maintenance, and being responsible for major parts of our web infrastructure.<p>On our web team, you would be deploying features to our customers on a daily basis. Here's an example of some of the challenges we're building for right now:<p>• Introducing live interactive audio and video skin consultations and checkout assistance in the browser.<p>• Building and iterating on beautiful interactive brand introduction web experiences on desktop and mobile.<p>• Revising our fragment and full-page caching structure to deliver static and catalog pages lightning fast.<p>-----<p>SKILLS AND REQUIREMENTS<p>• 2+ years of professional experience building websites and web apps<p>• Fluency in HTML/CSS/Javascript, ideally also in Bootstrap, jQuery, and Angular.js<p>• Familiarity with Grunt asset pipeline or comparable frontend frameworks (Sprockets, Rails, etc.)<p>• Experience with full LAMP stack or comparable (e.g., RoR) environment<p>• Proficiency in maintaining a modern webdev pipeline or willingness to learn; our pipeline includes scrum, Trello, git (BitBucket), Cloudflare, zero-downtime rollouts, and sync and setup scripts<p>-----<p>We're looking for creativity, intelligence, and initiative, and we care about that much more about that than experience with our specific stack. If you're interested in joining a fantastic team to own and build our next generation of web experiences, please write to us at [email protected].</font></span><p><font size="1"><u><a href="reply?id=8558358&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8545321" onclick="return vote(this)" href="vote?for=8545321&dir=up&by=jecjec&auth=1c136482882c0188e8db9c54fc14fbb51ec8775b&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8545321"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=kenrose">kenrose</a> 7 days ago | <a href="item?id=8545321">link</a></span></div><br>
<span class="comment"><font color="#000000">San Francisco, CA and Toronto - PagerDuty (YC '10)<p>At PagerDuty, we are building an alerting and incident tracking system to help IT operations groups detect and respond to issues. Startups, Fortune 500 companies, and everything in-between rely on us to alert them quickly when they have operational troubles. We've got interesting technical problems in spades, just closed our Series B, and are still very much a startup. We're hiring for pretty much everything, technical and non-technical alike.<p>We don't hire based on experience with a handful of tools. Instead, we want smart, capable, and experienced people who can learn our tools quickly (and suggest new ones!) as needed. Experience with our stack is just a bonus.<p>SAN FRANCISCO:<p>* Software Engineer<p>* Senior Software Engineer<p>* Principal Engineer<p>* Sr. Persistence Engineer (Cassandra)<p>* Mobile Applications Engineering Manager<p>* Engineering Manager - DevTools<p>* Sr. DevOps Engineer<p>* Sr. DevTools Engineer<p>* Sr. Program Manager<p>* Evangelist<p>* Marketing / Business Analyst<p>* Sr. Sales Operations Manager<p>* Customer Support Specialist<p>* Technical Support Engineer<p>* Sr. Manager of Website Marketing<p>TORONTO:<p>* Software Engineer<p>* Senior Software Engineer<p>* Principal Engineer<p>* Platform Engineering Manager<p>See the full list of job descriptions at <a href="http://www.pagerduty.com/jobs/" rel="nofollow">http://www.pagerduty.com/jobs/</a></font></span><p><font size="1"><u><a href="reply?id=8545321&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543278" onclick="return vote(this)" href="vote?for=8543278&dir=up&by=jecjec&auth=de3517368e917dc7b04e13a04451ab0414ee9fe7&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543278"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=jkoc"><font color="#3c963c">jkoc</font></a> 8 days ago | <a href="item?id=8543278">link</a></span></div><br>
<span class="comment"><font color="#000000">Pubfront - Copenhagen, Denmark<p>We develop a white-label platform for purchasing and reading/listening to ebooks and audiobooks. Currently licensed to clients in Denmark, Sweden and Norway, we're planning on expanding the platform to more countries.<p>Right now, we're looking for a <i>Junior Web Developer</i> with Python/Django and frontend experience to keep our platform rock-solid.<p>You will be responsible for tackling issues as they arise, including:<p><pre><code> - fixing issues reported in our bug queue
- communicating with our clients and investigating issues reported by them
- developing features and tweaks that help our clients scale sales and support
</code></pre>
You'll be working with our small team of developers and sales-people in the exciting <i>Founders House</i> workspace on Islands Brygge in Copenhagen, where food and drink are provided to fuel Pubfront and the 20+ other startups hacking away there.<p>Skillwise, we're looking for people who know<p><pre><code> - Python (must-have)
- Django (ideally, but experience with other web frameworks is also relevant)
- HTML, CSS & Javascript (must-have, but no ninja-level skills required)
- SASS & CoffeeScript/Backbone.js (ideally, but easy enough to get into)
</code></pre>
Want to work for an expanding startup in one of Copenhagen’s hippest workspaces? Eager to help deliver the smoothest ebook-reading experience to users around the world? Get in touch here: <a href="http://www.pubfront.com/jobs/" rel="nofollow">http://www.pubfront.com/jobs/</a></font></span><p><font size="1"><u><a href="reply?id=8543278&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543036" onclick="return vote(this)" href="vote?for=8543036&dir=up&by=jecjec&auth=8b4d24a291a66591e8e277095f34ab3564b26e7e&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543036"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=ndonnellan">ndonnellan</a> 8 days ago | <a href="item?id=8543036">link</a></span></div><br>
<span class="comment"><font color="#000000">Senior Software Developers - athenahealth - Austin, TX<p>Our goal is to bring order to the chaos of the U.S. healthcare system by harnessing the power of the cloud to modernize healthcare. We are advancing an industry whose technology is 20 – 30 years old and we need your help to do it!<p>The athenahealth Austin team is currently working on our latest products, athenaCoordinator and athenaClarity. athenaCoordinator and athenaClarity capitalize on the network effect of the cloud allowing exchange of information more fluidly than ever before.<p>We’re looking for Senior Software Developers who still want to code and work on challenging projects and if interested also want to work with more junior Developers and help them learn and advance their careers. We work with a mix of technologies but don’t hire developers based on your knowledge of a particular coding language. We believe any developer worth their salt can pick new stuff up in a matter of months. We're more interested in folks with raw talent and a burning desire to succeed.<p>athenahealth is headquartered out of Massachusetts and we are proud to have been part of the Austin technology community for nearly two years, with exciting new things coming this year. Athena Austin is a vibrant R&D focused office with great potential for growth. We’re excited to be moving downtown to the Seaholm Powerplant in late 2014 to continue the growth!<p>Read more at: <a href="http://www.athenahealth.com/careers/" rel="nofollow">http://www.athenahealth.com/careers/</a></font></span><p><font size="1"><u><a href="reply?id=8543036&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543020" onclick="return vote(this)" href="vote?for=8543020&dir=up&by=jecjec&auth=7d09c2dd3117184c71ea4485d01ed41466d9f841&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543020"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=hafabnew">hafabnew</a> 8 days ago | <a href="item?id=8543020">link</a></span></div><br>
<span class="comment"><font color="#000000">Thread.com (YC S12) - Software engineer who loves product (Python/Django) London, England.<p><a href="https://www.thread.com/jobs" rel="nofollow">https://www.thread.com/jobs</a><p>We're a startup trying to reinvent retail so men can dress well without being subject to the horrors of the high street or having to trawl through millions of items online. We do this using a combination of powerful algorithms and human stylists.<p>You'd be joining a small, highly technical team with a ton of startup experience (the founders have started and sold 2 companies before). You'll be one of the first technical hires and get to build and own huge parts of the product and work on the core algorithms.<p>One of our ancillary goals is to build one of the best engineering cultures anywhere, and we'd love you to help us do that. We launched in October and user and revenue numbers are scaling extremely quickly. We're backed by a collection of the top investors from London and Silicon Valley as well as Y Combinator.<p>We're especially interested in people who are interested in founding their own startup one day. We view working at Thread as a founder bootcamp where you'll learn about all parts of starting and growing a startup.<p>Want to learn more? Check out <a href="https://www.thread.com/jobs" rel="nofollow">https://www.thread.com/jobs</a> and you can see some of our code at <a href="http://dev.thread.com/" rel="nofollow">http://dev.thread.com/</a><p>Thanks!</font></span><p><font size="1"><u><a href="reply?id=8543020&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544340" onclick="return vote(this)" href="vote?for=8544340&dir=up&by=jecjec&auth=7906518a6dbabcc1b1cbf43a9273d8b30226794e&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544340"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=pashabitz">pashabitz</a> 7 days ago | <a href="item?id=8544340">link</a></span></div><br>
<span class="comment"><font color="#000000">TXN: We’re building a market research analytics tool for businesses based on consumer credit card transaction information (think “Nielsen for transactions”).<p>We’re well funded by great investors (A16Z, Homebrew, Bloomberg Beta, Slow Ventures and more) and are looking for our first engineering hires.<p>We use AWS for all of our development and production environments. Today, we use Scala, Node.js and MySQL but we’re always evaluating new tools that can help us build more awesome things.<p>We are hackers at heart - crazy about using technology to create something valuable.<p>Looking for full-stack software engineers. A lot of work around data and visualization.
I'm the co-founder and CTO, please email me to apply - [email protected]<p>More detailed job descriptions: <a href="http://txn.co/jobs/" rel="nofollow">http://txn.co/jobs/</a><p>Why join TXN?
- Be in the front seat building a company and product from scratch.<p>- We are a small team that believes in ownership. You’ll have a huge part in everything that we do and own your projects, not just be a small cog in the machine.<p>- Learning: we strongly believe in learning and personal development. We’re building a culture where everybody is encouraged and supported to learn and improve every day.<p>- Doing your best work every day: at TXN, we’ve decided to build something truly great. With everything we do, big and small, we’re striving to do something that we’ll be proud of.</font></span><p><font size="1"><u><a href="reply?id=8544340&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8552500" onclick="return vote(this)" href="vote?for=8552500&dir=up&by=jecjec&auth=878841d92001cfdbafda05a88bff19c03d873d29&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8552500"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=courtneypowell">courtneypowell</a> 5 days ago | <a href="item?id=8552500">link</a></span></div><br>
<span class="comment"><font color="#000000">Real HQ, Junior Controller, REMOTE<p>Real HQ is the company behind Agent Pronto <a href="https://agentpronto.com/" rel="nofollow">https://agentpronto.com/</a>. We help home buyers and sellers find awesome real estate agents in their area. We’re four years old and growing quickly.<p><i>What We Believe</i>
We started this business with inspiration from Seth Godin and 37signals. We keep our fires going with inspiration from Frank Chimero, The National, Louis CK, and Warren Buffett.<p>We also have some Clubhouse Rulez to help guide us in our work:<p>-We will be artists.
-We will asynchronously overshare.
-We will work hard, but we won’t work long.
-We will not create emergencies because we know that most often, they are created.
-We will make things beautiful and profitable. We will even make beautiful more profitable.
-We will speak to customers, partners and co-workers like a friend, not a corporate robot.
-We will make ourselves better so we can make the world better.
-And we will have a fucking blast doing it.<p><i>Work Anywhere</i>
We’re looking for people who live in the United States. Once hired, you’ll have the flexibility to work from anywhere. If working from home in your pajamas sounds like fun, give that a shot. Or you might be interested in checking out a coworking space in your area. You can even travel to exotic lands like Walla Walla, Keokuk, Cucamonga, or Seattle! Location is irrelevant as long as you do your job and you do it well.<p>If Real HQ had a home, it would probably be Austin, Texas. But we have folks who live in big cities like Kansas City, Chicago, and Portland and not-so-big cities like Bozeman, Lewis Center, and Erie. Some of us travel while we work. Ryan managed accounts and did yoga in a Berlin coworking space. Kym worked from a castle in San Juan. Peter pushed code from planes, trains, and a 2010 Hyundai Elantra.<p>Last year, our team got together for a weeklong retreat in the artfully-minded desert town of Marfa, TX. This year, we opted for the Rocky Mountains and headed to Boulder, CO.<p>Think You’re a Good Fit? Great, because we’re hiring! Available positions are listed below.<p>Click through to learn more about each role.<p><i></i>Junior Controller: <a href="http://realhq.com/jobs/junior-controller" rel="nofollow">http://realhq.com/jobs/junior-controller</a><p>Don’t see a role that’s a good fit? Get in touch with us anyway. We’re good at finding a place for smart, passionate people who are excited about what we’re doing and want to help us do it even better.<p><i></i>Add HackerNews to the subject line of any email you send us!</font></span><p><font size="1"><u><a href="reply?id=8552500&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8553797" onclick="return vote(this)" href="vote?for=8553797&dir=up&by=jecjec&auth=7c388a2b807c43a2e22ee848b01de40372597681&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8553797"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=lightningstorm">lightningstorm</a> 5 days ago | <a href="item?id=8553797">link</a></span></div><br>
<span class="comment"><font color="#000000">Good Eggs - San Francisco, CA, Full Stack Engineers<p><a href="http://www.goodeggs.com" rel="nofollow">http://www.goodeggs.com</a><p>=== About us ===<p>Good Eggs brings local, farm-fresh groceries right to your door! We are a technology focused company with a CTO who previously founded Carbon Five, an exceptional agile development shop. See our Engineering Blog and Github account:<p><a href="http://bites.goodeggs.com" rel="nofollow">http://bites.goodeggs.com</a><p><a href="https://github.com/goodeggs/" rel="nofollow">https://github.com/goodeggs/</a><p>We have a great mission (<a href="https://www.goodeggs.com/about/mission" rel="nofollow">https://www.goodeggs.com/about/mission</a>) - to grow and sustain local food systems worldwide - and everyone here is deeply committed to it. We started in 2011 and have over 200 employees across four cities (New York, New Orleans, Los Angeles and San Francisco). Our investors include Sequoia Capital, Harrison Metal, Baseline Ventures, Collaborative Fund and Westly Group, among others.<p>There are 16 of us on the engineering team and we’re actively growing. We’re building next-generation web and mobile applications with JavaScript across the stack, including Node.js, MongoDB, AngularJS, Backbone, CoffeeScript and a wealth of other tools from the rapidly-evolving JavaScript ecosystem. We employ the best practices of test-driven development, pair programming, and continuous deployment. We use the leading SASS providers - Heroku, AWS, Algolia (search), Mixpanel, Sendgrid, etc. We are happy to train the right person to work in this environment.<p>== Perks ===<p>* Medical Insurance with FSA/HSA options, vision, dental, etc.<p>* Super tasty lunches made on-site by our chefs using healthy and fresh ingredients (from our producers!)<p>* Amazing work/life balance and time-off policies<p>* Snacks<p>* Laptop<p>== About you ===<p>Ideal Candidates Will Have:<p>* Full-stack web application development experience in Ruby, Python, Java, or JavaScript<p>* Agile software development experience including automated testing and pair programming<p>* Demonstrable interest in learning and adopting new tools and techniques<p>More information:<p><a href="http://www.jobscore.com/jobs2/goodeggs/software-engineer/cQ_hd-0USr4Om7eJe4iefn" rel="nofollow">http://www.jobscore.com/jobs2/goodeggs/software-engineer/cQ_...</a><p>I joined the company recently, feel free to e-mail me: moshe(at)goodeggs.com</font></span><p><font size="1"><u><a href="reply?id=8553797&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8545735" onclick="return vote(this)" href="vote?for=8545735&dir=up&by=jecjec&auth=cfc660d9637fecea64246fb1cf4617b023afeebe&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8545735"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=rchiba">rchiba</a> 7 days ago | <a href="item?id=8545735">link</a></span></div><br>
<span class="comment"><font color="#000000">Tint (<a href="http://www.tintup.com" rel="nofollow">http://www.tintup.com</a>) — San Francisco (SOMA), CA - Full Time Looking for Full Stack Web Developers, Front End Developers, Back End Developers, Support, and Sales/Account Management<p>-----------------------<p>ABOUT TINT<p>Tint's mission is to help organizations drive deeper relationships with their customers through social media. We are a group of 18 engineers and customer happiness heroes with a profitable, sustainable business and a great working environment.<p>When we started in January 2014, we made $101K. Last month, we made $352K.<p>Simply put, we have too many customers, and too few quick minds.<p>Join us on this incredible journey to become a market leader in the social media display and aggregation space. We have plenty of interesting engineering challenges to conquer and relationships to nurture with big brands with endless opportunity for personal growth along the way. Some of the tech we work with: MySQL, Redis, Ruby on Rails, PHP, Marionette & Backbone.js<p>-----------------------<p>DETAILS<p>• on the positions available: <a href="https://jobs.lever.co/tint?lever-source=HN" rel="nofollow">https://jobs.lever.co/tint?lever-source=HN</a><p>• on Tint company culture: <a href="http://www.tintup.com/about" rel="nofollow">http://www.tintup.com/about</a><p>• on our incredible journey: <a href="http://www.tintup.com/blog/tint-year-in-review-2013/" rel="nofollow">http://www.tintup.com/blog/tint-year-in-review-2013/</a><p>• on our profit sharing: <a href="http://www.tintup.com/blog/restructuring-your-sales-commissions-teamwork-startup/" rel="nofollow">http://www.tintup.com/blog/restructuring-your-sales-commissi...</a><p>• on our startup role models: <a href="http://www.tintup.com/blog/startups-need-role-models-too/" rel="nofollow">http://www.tintup.com/blog/startups-need-role-models-too/</a><p>• on a few of our customers: <a href="https://www.flickr.com/photos/124773594@N04/sets/" rel="nofollow">https://www.flickr.com/photos/124773594@N04/sets/</a><p>-----------------------<p>BENEFITS (besides the competitive salary and equity...)<p>• Profit Sharing - We split 20% of all revenue made over 200k and distribute it evenly among the team.<p>• Team Transparency - We calculate compensation based on a formula that we all agree on. Cap table is made available to all employees. Business financials are known by all teammates.<p>• Personal Autonomy / Consensus Driven Culture - We foster consensus-driven rather than top-down decision making when it comes to important business decisions. From what features to build next to what furniture to buy for the office, we believe it's the fairest way of making decisions.<p>• Customer Driven Culture - We're very in-tune with our customers and they love us. For example, we decide what features to build based on surveys we send directly to customers. Check out this one ( <a href="http://bit.ly/1fc73kh" rel="nofollow">http://bit.ly/1fc73kh</a> ) that we sent out last year to decide what we would build this past quarter.<p>• Personal Development Stipend - A monthly stipend designed for self-improvement. Whether it's books, yoga classes, or a fitness tracker, we want our teammates to improve themselves.<p>• Catered Lunch Everyday - Yum!<p>APPLY HERE: <a href="https://jobs.lever.co/tint?lever-source=HN" rel="nofollow">https://jobs.lever.co/tint?lever-source=HN</a></font></span><p><font size="1"><u><a href="reply?id=8545735&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8554653" onclick="return vote(this)" href="vote?for=8554653&dir=up&by=jecjec&auth=7c3fb43ee0c64762abbaac438271bc344d326265&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8554653"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=maramaemartin">maramaemartin</a> 5 days ago | <a href="item?id=8554653">link</a></span></div><br>
<span class="comment"><font color="#000000">Emeryville, CA (SF Bay Area) - Senior Full Stack Engineer wanted for TubeMogul (www.tubemogul.com)<p>About Us: TubeMogul is an enterprise software company for digital branding. By reducing complexity, improving transparency and leveraging real-time data, our platform enables marketers to gain greater control of their digital video advertising spend and achieve their brand advertising objectives.<p>The Role: We're looking for a Senior Full Stack Engineer to join our engineering team. We have some redesigns and new features in the works, and we need your expertise to architect and lead implementation of these end to end. You'll design and develop analytics dashboards, optimize application performance and responsiveness, and help us grow our edge as an effective high-frequency trading platform for video advertising.<p>Our Ideal Candidate Has: * 3+ years of professional experience developing a web application in modern OO- languages and MVC frameworks * 2+ years developing web applications in PHP, and some demonstrated experience with PHP MVC frameworks. We work in Kohana and CodeIgniter, but if you've used Zend, Symfony, Laravel or others that's a great start. * Demonstrated experience developing features in JavaScript. If you've used tools like Node, Angular, Ember or Backbone we'd be thrilled! * Experience developing the full stack of a web application, including the front end.<p>Here's what we're offering:* Competitive salary, benefits, 401K and stock options that mean something (We went public in July 2014!) * Generous time off, including your birthday * Training and career development through TubeMogul Academy * High growth and momentum for rapid career advancement * Newly expanded, sunny office with a game room and a Zen room. * Hungry? We offer catered breakfast, fully stocked kitchen with drinks and snacks, and we occasionally cater lunch and dinner. * Coming from across the Bay? Our dedicated BART shuttle bus will get you to the office in no time.<p>How To Apply: * The Sourcery will be the first point of contact. * All applications receive a response. * All applications are kept strictly confidential. * To apply, please visit: <a href="http://www.thesourcery.com/jobs/799/applications/new" rel="nofollow">http://www.thesourcery.com/jobs/799/applications/new</a></font></span><p><font size="1"><u><a href="reply?id=8554653&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8564090" onclick="return vote(this)" href="vote?for=8564090&dir=up&by=jecjec&auth=eb91065594eed90b0bb1b21f301d9b4b173c7043&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8564090"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=YelpEngineering"><font color="#3c963c">YelpEngineering</font></a> 3 days ago | <a href="item?id=8564090">link</a></span></div><br>
<span class="comment"><font color="#000000">Engineering Manager @ Yelp<p>Yelp Engineering is filled with master jugglers, pro helicopter flyers, and expert coders, and we are looking for strong leaders to continue growing this talented team. Average team size is small and you will work in lock step with the product team to get features out the door quickly. To succeed, you must be passionate about Yelp, keep up with our daily release cycles, and maintain our useful, funny, cool culture during times of immense growth. It also doesn't hurt to impress us with your technical chops! Ready to take us from big to big time?<p>Responsibilities<p>Manage complex technical projects and a team of software engineers
Willing to roll up their sleeves and code alongside their team
Enjoy providing frequent and constructive feedback
Able to coach and mentor junior and new college graduates
Participate in the hiring process
Excellent typing ability in the presence of flying nerf darts<p>Requirements (and we mean it!)<p>Previous experience as a technical lead or manager
Agile development experience
Command of your favorite modern programming language: Python, Ruby, Java, Objective-C, C++, etc
Comfortable working in a Unix environment<p>Apply here - <a href="https://hire.jobvite.com/j?aj=oNOmWfwD&s=Hacker_News" rel="nofollow">https://hire.jobvite.com/j?aj=oNOmWfwD&s=Hacker_News</a></font></span><p><font size="1"><u><a href="reply?id=8564090&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544048" onclick="return vote(this)" href="vote?for=8544048&dir=up&by=jecjec&auth=98ca19b117628cb4674571717f536eada942fcdc&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544048"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=jasoncrawford">jasoncrawford</a> 7 days ago | <a href="item?id=8544048">link</a></span></div><br>
<span class="comment"><font color="#000000">Fieldbook | <a href="https://fieldbookapp.com" rel="nofollow">https://fieldbookapp.com</a> | San Mateo, CA | Software Engineer | Full time<p>Fieldbook is an information tool that lets you track and organize anything in simple data tables. It's for anyone who is frustrated with using a spreadsheet like a database – to track projects, sales leads, recruiting, or anything.<p>Demo video (3 minutes): <a href="https://fieldbookapp.com" rel="nofollow">https://fieldbookapp.com</a><p>Our mission is to allow anyone to create a database, just as easily as they can create a spreadsheet. To do this, we're rethinking what a tool for working with structured data should look like, from the ground up.<p>The founders are Jason Crawford (CEO) and Ben Bernard (CTO); both have strong technical backgrounds and leadership experience at companies including Amazon and Google. Fieldbook's investors include Pejman Mar Ventures, Mitch Kapor (Lotus), Steven Sinofsky (Microsoft) and Naval Ravikant (AngelList).<p>We are building an ownership culture where employees take pride in their work and put the customer first. If you are a versatile, full-stack engineer, there is a window of opportunity now to join us in making this vision a reality – and to have a big impact on the product and on the company itself.<p>Contact: Jason Crawford, [email protected]</font></span><p><font size="1"><u><a href="reply?id=8544048&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544510" onclick="return vote(this)" href="vote?for=8544510&dir=up&by=jecjec&auth=ab0eb00fb6a372897ec5bcd5f837582ac3459853&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544510"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=twymer">twymer</a> 7 days ago | <a href="item?id=8544510">link</a></span></div><br>
<span class="comment"><font color="#000000">Dimagi (www.dimagi.com) - Boston (technically Cambridge), MA and Cape Town, South Africa<p>Role: Software Engineer/Adventurer/Do-Gooder<p>Dimagi is a rapidly growing social enterprise based in Boston that develops and deploys open source health and logistics systems primarily for underserved communities in developing countries. At Dimagi, we take pride in our work and keep the big picture in mind. We’re an inclusive group that has diverse experiences and interesting stories and insight to our work around the world.<p>With Dimagi, you can work in a fun and stimulating environment, and have the chance to travel and explore. Most importantly, you will truly have the opportunity to make a difference in places that need it most. Dimagi's prioritization of global impact and employee growth and satisfaction makes Dimagi a continuously fresh, exciting, and genuine place to work, keeping us all honest about what we're in it for.<p>We're looking for talented programmers who want to generalize across the stack, or specialize in one area of our mobile (Android), web (Python, Django, CouchDB, Postgres), and front-end (KnockoutJS) platforms.<p>For more information, check out our careers page at <a href="http://www.dimagi.com/about/careers" rel="nofollow">http://www.dimagi.com/about/careers</a>.</font></span><p><font size="1"><u><a href="reply?id=8544510&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8554360" onclick="return vote(this)" href="vote?for=8554360&dir=up&by=jecjec&auth=355d4c5aa5e50236d53110cedeb75a69dad89bf5&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8554360"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=maramaemartin">maramaemartin</a> 5 days ago | <a href="item?id=8554360">link</a></span></div><br>
<span class="comment"><font color="#000000">San Francisco, CA - Full-Time Lead Dev Ops Engineer needed for MongoLab <a href="https://mongolab.com/welcome/" rel="nofollow">https://mongolab.com/welcome/</a><p>MongoLab is a fully-managed cloud database service featuring highly-available MongoDB databases, automated backups, web-based tools, 24/7 monitoring, and expert support. Developers absolutely love us because our Database-as-a-Service (DBaaS) allows them to focus their attention on product development instead of operations.<p>Who we're looking for:
We are looking for a Lead DevOps Engineer to take a major leadership role in managing our vast fleet of MongoDB deployments and making our users the happiest and most productive MongoDB developers on the planet.<p>You'll be responsible for:
* The uptime and reliability of our fleet of hundreds and thousands of databases on various cloud platforms
* The uptime and reliability of MongoLab's infrastructure
* Maintaining our Node.js and Python ops toolset for cloud and database operations
* Customer and community communications regarding our cloud service<p>Our ideal candidate:
* Has at least 2 years of experience handling technical operations for a SaaS or IaaS product
* Is exceedingly responsible, organized, detail-oriented, and would be regarded by peers as precise, careful, thoughtful, and "on it"
* Is extremely serious about data durability and availability
* Loves problem solving and is naturally inclined to provide unbelievable customer service
* Has programming experience, ideally in Python, Ruby, or Node, and experience using automation tools such as Chef or Puppet
* Has good working knowledge of Linux and experience configuring and deploying applications to AWS or equivalent<p>What we can offer you:
* Competitive salary, equity, health benefits, and 401k
* An environment that gives you the flexibility to seize moments of inspiration<p>How to apply: * The Sourcery will be the first point of contact. * All applications receive a response. * All applications are kept strictly confidential. * To apply, please visit: <a href="http://www.thesourcery.com/jobs/824/applications/new" rel="nofollow">http://www.thesourcery.com/jobs/824/applications/new</a></font></span><p><font size="1"><u><a href="reply?id=8554360&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544194" onclick="return vote(this)" href="vote?for=8544194&dir=up&by=jecjec&auth=d11c62d53fdf830036bff9843dcf1d345a1e321a&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544194"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=cwc22"><font color="#3c963c">cwc22</font></a> 7 days ago | <a href="item?id=8544194">link</a></span></div><br>
<span class="comment"><font color="#000000">Coho Data - { Vancouver, BC, Canada | Cambridge, UK | Bangalore, India }<p>We're building a high-performance scalable Enterprise Storage system.<p>We're a well-funded startup (a16z, ignition) with a strong Engineering culture and a growing team, a customer-proven product and sales ramping.<p>We hire very strong systems software developers. A number of our staff built the Xen hypervisor and we publish academic research, most recently at USENIX OSDI'14 and FAST'14.<p>Primarily a Linux shop.<p>Hottest position:
- Senior Director of Engineering, (This one is in Vancouver, BC)<p>Other roles:
- Storage Systems Hacker (C, git, python, bash)
- Senior Software Engineer with Networking skills (OpenFlow)
- Test Automation Development (our test system is ... awesome)
- Optimization and Profiling (C, valgrind)
- DevOps (debian, python, buildbot, git, bash)<p>Unsurprisingly, we highly value caffeine and beer.<p>If you're interested, there are more details are on our web site
<a href="http://www.cohodata.com/about-us#working-at-coho" rel="nofollow">http://www.cohodata.com/about-us#working-at-coho</a>
or linked-in:
<a href="https://www.linkedin.com/company/coho-data" rel="nofollow">https://www.linkedin.com/company/coho-data</a><p>and you can apply by email to: [email protected]</font></span><p><font size="1"><u><a href="reply?id=8544194&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8545720" onclick="return vote(this)" href="vote?for=8545720&dir=up&by=jecjec&auth=3c9423d00728c0a4d68d60594cc919eb924647f3&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8545720"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=greattypo">greattypo</a> 7 days ago | <a href="item?id=8545720">link</a></span></div><br>
<span class="comment"><font color="#000000">Classrooms look the same today as they did in the 1960s. Help us change that at Clever (YC S12)<p>There’s a lot of great educational software out there - think Oregon Trail, Math Blasters, and Carmen Sandiego - but teachers can’t use it in schools. Teachers would love to use programs like these, but synchronizing data between their school’s database and external software applications is a huge problem that results in wasted time at the start of class and frustrated, bored students… which leads to software being abandoned entirely. 80% of K-12 teachers would use more software in classes if getting students logged in weren’t such a hassle, and a quarter of all class time that’s supposed to be dedicated to software is wasted on logins alone.<p>Developers have a similar problem: they love clean APIs, but in the education industry, they haven’t had one. Most K-12 schools house their student data in ancient legacy databases that make integrations a nightmare. If you’re a five-person startup and you’ve built an app that revolutionizes the way third-graders learn fractions, there’s simply no way to get your product in front of students.<p>Clever (YC S12 - clever.com) is solving these problems by building a modern, developer-friendly API for schools… which we give them for free. Developers love being able to plug into schools without having to write a complex integration for every single district they’re working with, so they pay us for access to the platform. This business model has helped us grow quickly; we’re now in 1 in 5 schools in America (over 30,000 schools), and our product is used by millions of students every day.<p>Our goal is to become the education identity company. The first step in that direction is our Instant Login single sign-on platform: a universal login that allows students to access all of their learning applications in one place. (This is a big deal if you’ve ever seen a second-grader try to manage fifteen different usernames and passwords.)<p>Right now we’re a team of 40 people (17 engineers) based in downtown San Francisco. We’re looking for full-stack engineers who can hack in Node, Go, and Python (or are willing to learn), but more importantly, we’re looking for people who share our passion for improving education. If you’re interested, we’d love to hear from you.<p>Other stuff we like:
-Tech talks. Every other Tuesday, we do “Clever Talks” during lunch where one of us will give a presentation on anything he/she’s interested in. Recent talks have covered exoplanets, neuroscience, hacking big-company customer service interactions, and what’s wrong with American high school history education.
-Bughouse chess. We play pretty frequently, although not always with Magnus Carlsen: <a href="http://screencast.com/t/xD7umWfo" rel="nofollow">http://screencast.com/t/xD7umWfo</a>
-Picking up new skills. We offer unlimited Amazon credits for learning.<p>Check us out: <a href="https://clever.com/about/jobs" rel="nofollow">https://clever.com/about/jobs</a><p>At Clever, we want to work with the best people - applicants of all backgrounds and beliefs are welcome to come improve education with us. We're committed to making our office a safe and comfortable environment for all employees.</font></span><p><font size="1"><u><a href="reply?id=8545720&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8560591" onclick="return vote(this)" href="vote?for=8560591&dir=up&by=jecjec&auth=82d0ea933da279ed0b42c518d8956b308aa07f84&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8560591"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=djyoo">djyoo</a> 4 days ago | <a href="item?id=8560591">link</a></span></div><br>
<span class="comment"><font color="#000000">Goalbook - San Mateo, CA - <a href="https://goalbookapp.com" rel="nofollow">https://goalbookapp.com</a><p>Teaching is one of the most disempowered professions--50% of teachers will leave the profession within 5 years. Yet decades of research show that teachers are the single most import school based factor in student achievement.<p>Thousands of teachers around the country use our tools to design and teach lessons using research-based practices. We are empowering schools and districts solve one of the most difficult challenges in improving our education system: closing the gap between best practice and classroom practice.<p>We’re expanding our engineering team and looking for new team members who have worked across the web stack, are excited about collaborating across functional teams, and want to make an impact in the lives of educators.<p><i>Full Stack Engineer - Full Time (San Mateo, CA)</i><p>You’ll also be involved in all stages of the product development process: from conducting user interviews with teachers and administrators to educating our Partnerships and Success teams about new product features.<p><i>Back End and Dev Ops Engineer - Full Time (San Mateo, CA)</i><p>You’ll take the lead in ensuring that our products and internal tools are highly responsive and dependable, so that thousands of educators who rely on our tools trust us.<p>Email [email protected] if you’re interested, we’d love to get to know you! Check out our other open positions here: <a href="https://goalbookapp.com/careers" rel="nofollow">https://goalbookapp.com/careers</a></font></span><p><font size="1"><u><a href="reply?id=8560591&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543209" onclick="return vote(this)" href="vote?for=8543209&dir=up&by=jecjec&auth=e6b0af8b1310705dfab8b1d3d7cfb3125af9b14d&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543209"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=ashleyjohn">ashleyjohn</a> 8 days ago | <a href="item?id=8543209">link</a></span></div><br>
<span class="comment"><font color="#000000">Academia.edu<p>Mission Driven Startup in Downtown SF near the Montgomery BART Station<p>Backed by Khosla Ventures<p>Hiring Full Time Engineers<p>We are a lean team of 13 Engineers on a huge mission to open science. We are building a better platform for researchers because the current publication system is too slow, inefficient and costly. We are doing this using Rails, Coffeescript, Backbone, and PostgreSQL, all hosted on AWS.<p>According to EdTech Magazine, we are tech underdogs who are “key disruptors among open-access publishers.”<p><a href="http://www.edtechmagazine.com/higher/article/2014/06/open-access-journal-underdogs-take-aging-academic-publications" rel="nofollow">http://www.edtechmagazine.com/higher/article/2014/06/open-ac...</a><p>And we are viewed by Wired as “a key player in the movement toward open access scientific publishing.”<p><a href="http://www.wired.com/2014/07/incentivizing-peer-review-the-last-obstacle-for-open-access-science/" rel="nofollow">http://www.wired.com/2014/07/incentivizing-peer-review-the-l...</a><p>We have 14MM users who support our mission and we are growing 10% per month. We are financially backed with $17MM by top VCs including Khosla Ventures, True Ventures and Spark Capital.<p>Email [email protected] so we can set up a time to chat this week.</font></span><p><font size="1"><u><a href="reply?id=8543209&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8555282" onclick="return vote(this)" href="vote?for=8555282&dir=up&by=jecjec&auth=d6878572894bc4830957451143dedede6ae68ca3&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8555282"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=zaidos">zaidos</a> 5 days ago | <a href="item?id=8555282">link</a></span></div><br>
<span class="comment"><font color="#000000">Tastebud (<a href="http://www.tastebud.co" rel="nofollow">http://www.tastebud.co</a>) -- Chicago, IL<p>iOS / Android Mobile Software Engineers: Full-Time<p># About Us<p>Here at Tastebud, we are obsessed with creating mobile experiences that personalize the world around you. Through a combination of sophisticated algorithms and meaningful data, we're one of the first companies to create a personalized brick and mortar shopping experience. Best of all, we are profitable with a live product that is providing real results.<p># About the Team<p>We are an smart and experienced group of software engineers and data scientists. Whether it is understanding the dynamic and complex relationships around large data sets, designing the greatest mobile experiences, or building the best recommendation engine on the planet, we are strongly focused and determined on solving the most challenging problems.<p>We are currently building the next generation of mobile applications, all powered by our extensive experience in personalization. We understand the value in stable, established frameworks and patterns, but we aren't afraid to jump into new technologies when the opportunity rises. We enjoy great clean code, but understand that sometimes you need to hack something out. We are fans of open source and aim to contribute back when we can. We enjoy working with smart people who can get things done.<p># About You<p>You understand mobile. You have gone from idea to app store, quite possibly more than once. You know a great mobile-centric API when you see one, even better if you have designed one yourself. You understand the challenges that the app store brings and know how to work around them. You know how to iterate and build a product that delights our users. You enjoy the ability, freedom and encouragement to develop our mobile strategy.<p>We can offer a competitive salary, a great office in downtown Chicago, a flexible schedule, and a few cool office perks.<p>Interested? Send us a quick email about why you are the best person to lead our mobile products: [email protected]</font></span><p><font size="1"><u><a href="reply?id=8555282&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8542989" onclick="return vote(this)" href="vote?for=8542989&dir=up&by=jecjec&auth=37eb5b57397a6b8d2baedda118e6fad24c05d548&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8542989"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=petrosagg">petrosagg</a> 8 days ago | <a href="item?id=8542989">link</a></span></div><br>
<span class="comment"><font color="#000000">Resin.io - Remote - Full-time Site Reliability Engineer<p>About us<p>We are building a seamless code delivery platform for embedded devices (like the Raspberry Pi). Think of it as Heroku for the Internet of Things if you must. We've already ported Docker to ARM CPUs, launched the alpha version of our product are about to release our beta version during this month. We are a well funded company founded and led by developers and have a strong engineering-led culture. As long as there is progress, we are flexible with regard to location and work hours.<p>About you<p>We are looking for a Linux talent to work on our cloud deployment which is a constellation of Docker-ised services deployed on AWS. Besides strong Linux skills, familiarity with Docker will help a lot. Much of our codebase (on cloud and device) is in node.js so JavaScript skill is a plus. You will be responsible of our server infrastructure, making sure we have seamless code deployment across all of our services and responding to any incidents and emergencies that may arise.<p>The Process<p>Send us your CV (a pointer to source code online is a great plus). Those that pass a phone interview will receive a small but paid project as a test. If we like working with you and you like working with us, you'll be offered a full-time job.<p>Get in touch<p>send your CV to [email protected]</font></span><p><font size="1"><u><a href="reply?id=8542989&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8543168" onclick="return vote(this)" href="vote?for=8543168&dir=up&by=jecjec&auth=2271548adcb95ff23937d0840d82fa07cd045f93&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543168"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=smikhanov">smikhanov</a> 8 days ago | <a href="item?id=8543168">link</a></span></div><br>
<span class="comment"><font color="#000000">Are you affiliated with Resin application server in any way?</font></span><p><font size="1"><u><a href="reply?id=8543168&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="80"></td><td valign="top"><center><a id="up_8543428" onclick="return vote(this)" href="vote?for=8543428&dir=up&by=jecjec&auth=f5e3c323f86aa919d0c2abac67baba3f4082a92f&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543428"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=petrosagg">petrosagg</a> 8 days ago | <a href="item?id=8543428">link</a></span></div><br>
<span class="comment"><font color="#000000">I'm one of the co-founders</font></span><p><font size="1"><u><a href="reply?id=8543428&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="120"></td><td valign="top"><center><a id="up_8547632" onclick="return vote(this)" href="vote?for=8547632&dir=up&by=jecjec&auth=bd360ea5d7db0ce28d97a4778861f10e4f60493e&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8547632"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=smikhanov">smikhanov</a> 6 days ago | <a href="item?id=8547632">link</a></span></div><br>
<span class="comment"><font color="#000000">Of Resin.io or of Caucho (this is what I meant in my original question)?</font></span><p><font size="1"><u><a href="reply?id=8547632&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="160"></td><td valign="top"><center><a id="up_8547693" onclick="return vote(this)" href="vote?for=8547693&dir=up&by=jecjec&auth=ad9365073591859502e744a7f57d706f9036a5ed&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8547693"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=petrosagg">petrosagg</a> 6 days ago | <a href="item?id=8547693">link</a></span></div><br>
<span class="comment"><font color="#000000">Ah, I just realised what you meant. No, we're not affiliated in any way with the application server.</font></span><p><font size="1"><u><a href="reply?id=8547693&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8554404" onclick="return vote(this)" href="vote?for=8554404&dir=up&by=jecjec&auth=56d0a2079869784cca8d57a7a54d1f6231943c25&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8554404"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=maramaemartin">maramaemartin</a> 5 days ago | <a href="item?id=8554404">link</a></span></div><br>
<span class="comment"><font color="#000000">San Francisco, CA - Full-Time Dev Ops Engineer Needed for iMatchative <a href="http://imatchative.com" rel="nofollow">http://imatchative.com</a><p>We're iMatchative and we've built a state of the art, two sided, cloud-based network that helps investors and funds alike find stickier, more satisfying investments with innovative algorithms, behavioral and traditional statistics and analysis. We've called our product ALTX and it's connecting the right investor to the right fund.<p>We're looking for an experienced and talented Dev Ops engineer to join our growing engineering team. As our first hire in this area you'll architect and own all configuration management, deployments and help us provision servers for our platform.<p>We've partnered with an outside Ops provider since our product went live, and you'll continue to partner with them as you also grow your own operations team.<p>Here are some challenges you'll help us solve: * Migrate our entire infrastructure to Amazon EC2, manage and deploy our new Vagrant development environments. * Collaborate daily with engineering, QA and Product Managers to plan, deliver and manage our services for efficient deployment and maximum uptime. * Own backups, restores, upgrades and all monitoring for our product.<p>Our Ideal Candidate Has: * 2+ years of professional Dev Ops experience using managed cloud services like AWS. * Some professional experience with continuous integration servers and systems Bamboo and Jenkins, and automation tools Chef and Puppet. * Experience scripting in Python or Ruby and a deep understanding of Git. * Experience serving in a rotating on-call as part of an engineering team.<p>What We Can Offer You: * Competitive salaries, comprehensive health/vision/dental benefits, 401K plan, equity, and much more.<p>How To Apply: * The Sourcery will be the first point of contact. * All applications receive a response and are kept strictly confidential. * Apply here: <a href="http://www.thesourcery.com/jobs/803/applications/new" rel="nofollow">http://www.thesourcery.com/jobs/803/applications/new</a></font></span><p><font size="1"><u><a href="reply?id=8554404&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8556671" onclick="return vote(this)" href="vote?for=8556671&dir=up&by=jecjec&auth=0bc2f16f9ae9a7128a94cf7b7f9444344be7c14e&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8556671"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=bostik">bostik</a> 5 days ago | <a href="item?id=8556671">link</a></span></div><br>
<span class="comment"><font color="#000000">Smarkets, London, UK. Sorry, no remote.<p>We're always looking for generalist, python-happy software engineers. If you know, or want to learn erlang, even better.<p>Smarkets is a modern betting exchange with significantly lower transaction fees than the competition. We're a well-funded company with a small, agile development team, and our platform has handled over £600 million of bets since launching in 2010. Smarkets has been featured in publications such as Wired, The Wall Street Journal and TechCrunch and was recently selected as part of the Startups 100.<p>We are taking on the big players in the betting industry with the lean startup playbook. We think the commission charged by such players is too high, spelling for opportunity to do better.<p>We're building a reliable, low-latency, highly concurrent betting exchange based on trading exchange designs. We're also building a fast, modern web interface to allow for a smoother experience. Servicing our users is top priority. Whether you want to work on the trading exchange or the frontend, you'll be solving real and challenging problems - from scaling to optimising python to handling near real-time design constraints.<p>The Smarkets platform is written predominantly on Python and Erlang, and relies heavily on asynchronous programming techniques. We use REST where we can. Life at Smarkets circles around version control, configuration management and automated testing. We can, and do, deploy to production several times a day.<p>Our software stack is built around Linux, Vagrant, Flask, Eventlet, Postgres, RabbitMQ, Git and Chef - but we are not resistant to change as needed.<p>To see all our jobs, visit: <a href="http://info.smarkets.com/about/jobs/" rel="nofollow">http://info.smarkets.com/about/jobs/</a></font></span><p><font size="1"><u><a href="reply?id=8556671&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543118" onclick="return vote(this)" href="vote?for=8543118&dir=up&by=jecjec&auth=58d03da535dd1a28339ae6a77b6810b0d8b20654&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543118"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=nathanwdavis">nathanwdavis</a> 8 days ago | <a href="item?id=8543118">link</a></span></div><br>
<span class="comment"><font color="#000000">Haven in Indianapolis/Fishers, IN - <a href="http://www.joinhaven.com/" rel="nofollow">http://www.joinhaven.com/</a><p>About Haven:
At Haven, we believe home ownership should be a lot better. We are building a free, intuitive mobile app and website that equips homeowners with predictive technology to help them become better homeowners, by learning and anticipating a home’s needs while saving time and money. Haven sends reminders to users when it’s time to make an update, recommends licensed, insured service professionals, accepts payment, and serves as a digital organizer of receipts and records, without the user ever leaving the app. It gives confidence and peace of mind to homeowners by helping them to be responsible and proactive in home maintenance decisions. We're venture-funded, growing, and looking to disrupt the home services space.<p>We are looking for a talented Fullstack Developer, Visual Designer, and iOS/Android Developers.
See <a href="http://haven.bamboohr.com/jobs/" rel="nofollow">http://haven.bamboohr.com/jobs/</a> for details<p>A little about our technology:
- Backend: Node.js/Express for API, MongoDB, various other tooling
- Frontend: Angularjs web app, iOS/Android apps
- Design: Mobile first, everyone participates</font></span><p><font size="1"><u><a href="reply?id=8543118&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8548438" onclick="return vote(this)" href="vote?for=8548438&dir=up&by=jecjec&auth=1dccb60f426e817fb188de9d8c1b986355e19c5d&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8548438"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=Cyranix">Cyranix</a> 6 days ago | <a href="item?id=8548438">link</a></span></div><br>
<span class="comment"><font color="#000000">Although not stated in the OP here, they're apparently considering REMOTE for the right candidate (according to the Bamboo posting).</font></span><p><font size="1"><u><a href="reply?id=8548438&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="80"></td><td valign="top"><center><a id="up_8549039" onclick="return vote(this)" href="vote?for=8549039&dir=up&by=jecjec&auth=24fcbf93b537be548fa96f3e9ec15b0067190045&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8549039"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=nathanwdavis">nathanwdavis</a> 6 days ago | <a href="item?id=8549039">link</a></span></div><br>
<span class="comment"><font color="#000000">That is true. For the right candidate, that is an option.</font></span><p><font size="1"><u><a href="reply?id=8549039&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="120"></td><td valign="top"><center><a id="up_8566313" onclick="return vote(this)" href="vote?for=8566313&dir=up&by=jecjec&auth=0c09c3531561b3f5af4fb4c1b54994dd1172bb78&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8566313"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=_gordee">_gordee</a> 3 days ago | <a href="item?id=8566313">link</a></span></div><br>
<span class="comment"><font color="#000000">Should we apply through the link, or can we send an email directly to you?</font></span><p><font size="1"><u><a href="reply?id=8566313&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543657" onclick="return vote(this)" href="vote?for=8543657&dir=up&by=jecjec&auth=b22d4643a8c0457ed2c6e1194bd9c0282e870b10&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543657"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=pensieri">pensieri</a> 8 days ago | <a href="item?id=8543657">link</a></span></div><br>
<span class="comment"><font color="#000000">Expensify-San Francisco, CA-Fulltime, Programmer Extraordinaire<p>Hey there! Allow us to introduce ourselves. We are Expensify and we do "expense reports that don't suck!" (Google "expensify" to read more.) We're getting crushed under an ever-growing pile of super awesome work, and I need one bright soul to help us dig our way out. I can guarantee you fun, an amazing opportunity to learn, and the siren's call of distant riches. But only if you are all of the following:<p>- An incredibly hard worker, even when it's not so fun. There is a ton of work to do, and a lot of it downright sucks. After all — we do the sucky work so our customers won't need to. I need you to buck up and grind through server logs, user emails, source code, and bug reports, without complaint or supervision, and come back asking for more.<p>- A cool person to be with. Not a crazy party animal, just someone we can trust, rely upon, hang out with, bounce ideas off of, and generally interact with in a positive way, both personally and professionally. In fact, this is one of the most stringent requirements we have: would you be fun to hang out with day and night on some remote, exotic beach? This isn't a rhetorical question, either: every year we take the company overseas for a month (on your own dime, sorry) and work incredibly hard while having a ton of fun. We've done Thailand, Mexico, India, Turkey, Croatia and the Philippines. We just got back from Portugal...where do you want to go next?<p>- Super talented, in a general way. We're going to throw a ton of work at you of every possible sort, and you need that magic skill of being able to figure it out even if you have no idea where to start. On any given day you might bounce between super low-level coding, super high-level technical support, marketing-driven data-mining, updating our user documentation, inventing/designing/building some new feature, etc. This is not a code monkey job — you're going to be a full participant in the process, and you need to bring your own unique blend of skills to the table.<p>- Specifically talented in a programming way. You can instantly visualize solutions to problems big and small. Your code is always clean, well commented, has good nomenclature and indentation. You can switch on a dime between C++, PHP, Bash, Cron, HTML, CSS, JavaScript, jQuery, Dwoo, SQL — not because you know them all, but because you're the sort of person who can just pick it up and figure it out. If you're this sort of person, you'll know what I mean. If not, then this position isn't for you.<p>And there are a bunch more, but odds are if you got this far, nothing I can do would stop you from applying. That's a problem because while I know you are awesome, it's actually really hard and time consuming to find you in the midst of the literally hundreds of other applications I get from everyone else. So this is where I'm going to ask my first favor: can you make it really easy and obvious how great you are, so I don't accidentally overlook you?<p>There are probably many ways to do that. But the easiest way to do that is to check out we.are.expensify.com and send in an application(which you can find at <a href="http://we.are.expensify.com/apply" rel="nofollow">http://we.are.expensify.com/apply</a>). We are excited to hear from you!</font></span><p><font size="1"><u><a href="reply?id=8543657&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8544784" onclick="return vote(this)" href="vote?for=8544784&dir=up&by=jecjec&auth=fac057d5d8f4d55a840a064986a9a2d574bf4cb1&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544784"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=cllns">cllns</a> 7 days ago | <a href="item?id=8544784">link</a></span></div><br>
<span class="comment"><font color="#000000">> every year we take the company overseas for a month (on your own dime, sorry) and work incredibly hard while having a ton of fun.<p>"On your own dime" sounds terrible. Is it optional?</font></span><p><font size="1"><u><a href="reply?id=8544784&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="80"></td><td valign="top"><center><a id="up_8544947" onclick="return vote(this)" href="vote?for=8544947&dir=up&by=jecjec&auth=2ffed5b54440a607d10afef732782d0b689b0404&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544947"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=kbar13">kbar13</a> 7 days ago | <a href="item?id=8544947">link</a></span></div><br>
<span class="comment"><font color="#000000">it's terribly ironic that a company that facilitates reimbursements doesn't reimburse for travel on behalf of the company :P</font></span><p><font size="1"><u><a href="reply?id=8544947&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="120"></td><td valign="top"><center><a id="up_8552571" onclick="return vote(this)" href="vote?for=8552571&dir=up&by=jecjec&auth=d8405f214e84c8d2a802a5eb96c9400bb182d95b&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8552571"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=quinthar">quinthar</a> 5 days ago | <a href="item?id=8552571">link</a></span></div><br>
<span class="comment"><font color="#000000">Heh, as mentioned, the trip is optional. And to clarify, we do cover airfare and some lodging -- but people have wildly different preferences when it comes to food and lodging overall (eg, some people prefer to splurge on one and skimp on the other) so we just try to pay well and allow people to make their own decisions as to how to spend it. More information is here:<p><a href="http://blog.expensify.com/2013/10/25/ceo-friday-how-to-take-your-whole-company-overseas-and-live-to-tell-the-tale/" rel="nofollow">http://blog.expensify.com/2013/10/25/ceo-friday-how-to-take-...</a></font></span><p><font size="1"><u><a href="reply?id=8552571&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="80"></td><td valign="top"><center><a id="up_8545625" onclick="return vote(this)" href="vote?for=8545625&dir=up&by=jecjec&auth=3385e2beda12b8781bf03e07a506224f12fb69c4&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8545625"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=Blackthorn">Blackthorn</a> 7 days ago | <a href="item?id=8545625">link</a></span></div><br>
<span class="comment"><font color="#000000">Might as well just hang out a sign that says "we only hire single men in their 20s".</font></span><p><font size="1"><u><a href="reply?id=8545625&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="120"></td><td valign="top"><center><a id="up_8552829" onclick="return vote(this)" href="vote?for=8552829&dir=up&by=jecjec&auth=e6745b92b33ab33466605f28fca4fadb47b1c583&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8552829"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=quinthar">quinthar</a> 5 days ago | <a href="item?id=8552829">link</a></span></div><br>
<span class="comment"><font color="#000000">Actually, 3 of us will be fathers in the next 60 days.</font></span><p><font size="1"><u><a href="reply?id=8552829&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="80"></td><td valign="top"><center><a id="up_8549108" onclick="return vote(this)" href="vote?for=8549108&dir=up&by=jecjec&auth=c96a2872b4bead0dbfac4c54903de2f43bc42a0c&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8549108"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=bohnej">bohnej</a> 6 days ago | <a href="item?id=8549108">link</a></span></div><br>
<span class="comment"><font color="#000000">It's optional.</font></span><p><font size="1"><u><a href="reply?id=8549108&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="80"></td><td valign="top"><center><a id="up_8545952" onclick="return vote(this)" href="vote?for=8545952&dir=up&by=jecjec&auth=40222c6a28e83255e502611ba230e55f8e0cf20c&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8545952"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=7Figures2Commas">7Figures2Commas</a> 7 days ago | <a href="item?id=8545952">link</a></span></div><br>
<span class="comment"><font color="#000000">If this position is actually for a full-time employee in San Francisco and the travel is <i>required</i> of the employee, which it sounds like it is ("every year we take the company overseas for a month (on your own dime, sorry) <i>and work incredibly hard</i>..."), Expensify might want to speak with a competent employment attorney about California Labor Code section 2802 sooner than later.</font></span><p><font size="1"><u><a href="reply?id=8545952&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="120"></td><td valign="top"><center><a id="up_8552742" onclick="return vote(this)" href="vote?for=8552742&dir=up&by=jecjec&auth=8cf33096a71520879ca694982a717d909db38056&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8552742"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=joanatello">joanatello</a> 5 days ago | <a href="item?id=8552742">link</a></span></div><br>
<span class="comment"><font color="#000000">Not sure why everyone is so anti-travel here - the offshore perk is what initially drew me to Expensify (what other company in the world pays you to travel??) and after going on it this past month, I can say without a doubt it's a really amazing opportunity - if you don't believe me check this out <a href="http://www.businessinsider.com/expensify-thailand-railay-beach-month-abroad-2012-12?op=1" rel="nofollow">http://www.businessinsider.com/expensify-thailand-railay-bea...</a>.<p>For those of you who don't like travel, you can go for as much or as little as you want (i.e. none at all). In addition to being in a place you've never been, it's a great way to get to know everyone in the company on a different level and hang out with people you might not necessarily work with on a day-to-day basis.<p>To each their own, but there are other aspects of our company that make it worth joining as well, and it shouldn't be overlooked if you don't like traveling!</font></span><p><font size="1"><u><a href="reply?id=8552742&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8554302" onclick="return vote(this)" href="vote?for=8554302&dir=up&by=jecjec&auth=deef9a8fe01310eee63bd2aca7d0be4a145db410&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8554302"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=maramaemartin">maramaemartin</a> 5 days ago | <a href="item?id=8554302">link</a></span></div><br>
<span class="comment"><font color="#000000">San Francisco, CA - Full-Time MongoDB Database Administrator needed for MongoLab <a href="https://mongolab.com/welcome/" rel="nofollow">https://mongolab.com/welcome/</a><p>MongoLab is a fully-managed cloud database service featuring highly-available MongoDB databases, automated backups, web-based tools, 24/7 monitoring, and expert support. Developers absolutely love us because our Database-as-a-Service (DBaaS) allows them to focus their attention on product development instead of operations.<p>We are looking for a DBA to help us manage our vast fleet of MongoDB deployments, and to help make our customers the happiest and most productive MongoDB developers on the planet.<p>You'll work on awesome things including: * Managing and monitoring a fleet of hundreds and thousands of databases * Managing large multi-terabyte sharded MongoDB clusters * Prototyping MongoLab on new cloud providers * Helping customers with difficult performance and data modeling problems * Writing about MongoDB deployment best practices (in docs and our blog)<p>Our ideal candidate: * Has 3+ years of professional experience as a SQL DBA or a MongoDB DBA. (We'd be thrilled to see MongoDB experience but it's totally not required). * Has some experience with MySQL or PostgreSQL, or familiarity with MongoDB * Has some experience with Linux or UNIX. * Has experience with troubleshooting and being on call. Like many roles in our engineering team, this position includes being on call for approximately two 24-hour periods a week
Here's what we can offer you: * Competitive salary, equity, and health benefits * Tons of leadership opportunities as you grow with our company * An environment that gives you the flexibility to seize moments of inspiration<p>How to apply: * The Sourcery will be the first point of contact. * All applications receive a response. * All applications are kept strictly confidential. * To apply, <a href="http://www.thesourcery.com/jobs/817/applications/new" rel="nofollow">http://www.thesourcery.com/jobs/817/applications/new</a></font></span><p><font size="1"><u><a href="reply?id=8554302&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544036" onclick="return vote(this)" href="vote?for=8544036&dir=up&by=jecjec&auth=292a9412260e2c270bac4b308aad0893239ec6ae&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544036"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=omarish">omarish</a> 7 days ago | <a href="item?id=8544036">link</a></span></div><br>
<span class="comment"><font color="#000000">DV01 in New York & San Francisco - Hiring Full Time Ruby / Javascript Hackers:<p>tl;dr: [email protected]<p><pre><code> === What We Do ===
</code></pre>
We're building web-based software that helps large investors explore and understand marketplace lending platforms (like LendingClub and Prosper) as well as broader fixed income markets (US Treasuries, ABS, MBS, CMBS, a <i>$38 trillion market</i> in the US alone).<p><pre><code> === Two Open Positions ===
</code></pre>
1. Backend engineer: Ruby & Postgres. Connect with all the data sources and make fast analytics software.<p>2. Front-end: Angular / JS / Rails. Make amazing user experiences that investors use to inform billion-dollar trades.<p>That said, we're still pretty early so happy to talk to anybody good.<p><pre><code> === Benefits ===
</code></pre>
* You'll be employee #1 so you'll be making a huge & lasting impact every day, both on the product and on our company culture.
* Competitive, market-rate salary.
* Full Health Benefits.<p>More information here: <a href="https://gist.github.com/omarish/d93014351ad17154f7ad" rel="nofollow">https://gist.github.com/omarish/d93014351ad17154f7ad</a><p>[email protected].</font></span><p><font size="1"><u><a href="reply?id=8544036&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8545203" onclick="return vote(this)" href="vote?for=8545203&dir=up&by=jecjec&auth=82b6bc4a6df0d4f0dace8902c31d6e1cccb6cbed&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8545203"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=grydstedt">grydstedt</a> 7 days ago | <a href="item?id=8545203">link</a></span></div><br>
<span class="comment"><font color="#000000">Verbling - YC Summer 2011 (San Francisco, CA) <a href="https://verbling.com" rel="nofollow">https://verbling.com</a><p>We're building the next generation language learning platform with video. Currently have exponential growth and need to grow engineering team asap.<p>Our current openings:<p>* Javascript Full Stack Engineer - we're building the next generation realtime educational platform using Backbone, Node.js, WebRTC, NoSQL.<p>* Lead Designer - looking for someone to own our design across all platforms (web, mobile, others).<p>* iOS Engineer - build our mobile and tablet offering with realtime video.<p>* Check out all jobs at www.verbling.com/jobs<p>About the company:<p>- Small team located in SOMA, San Francisco<p>- Awesome perks and benefits.<p>- Well funded (DFJ, YC, Sam Altman)<p>- YCombinator S11<p>Technologies we use:<p>- WebRTC, Backbone.js, Require.js, Angular.js, React, D3, SASS/LESS<p>- Node.js, MongoDB, Redis, PubNub<p>- We use Docker and Chef on AWS for infrastructure and CircleCI for testing/CI.<p>Send your resume to [email protected] or direct mail to me (CTO) at [email protected].</font></span><p><font size="1"><u><a href="reply?id=8545203&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8555498" onclick="return vote(this)" href="vote?for=8555498&dir=up&by=jecjec&auth=8bf40fb96355b2d0e9a76ade8822ff74541980dc&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8555498"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=bjelkeman-again">bjelkeman-again</a> 5 days ago | <a href="item?id=8555498">link</a></span></div><br>
<span class="comment"><font color="#000000">Akvo Foundation <a href="http://akvo.org" rel="nofollow">http://akvo.org</a> – Helsinki/Stockholm/Amsterdam/London<p>Ui Designer / Developer<p>If you are a UI designer / developer with startup experience wanting to contribute to make the world better, please read on!
We are seeking a skilled, self-motivated, pro-active and energetic UI developer / designer with data visualisation sense. Reporting to the lead designer, your primary responsibility will be to create and ensure a consistent, usable, and beautiful UI throughout our software platform, which includes web applications, desktop applications and mobile / tablet applications.
You have to be able to adapt to a fast changing environment where multi-tasking is a must. You will be required to design and develop functional user interfaces as well as keeping the brand consistent across the organisation and a range of different products. (Core and mandatory skills: WordPress, HTML, SASS, CSS, JQUERY)<p>Being part of a continuously growing team is essential to maintain and improve the quality of our work.
Akvo creates and runs open source internet and mobile services that make it easy to bring international development work online. We focus on project and programme dashboards, reporting, monitoring, evaluation and making data easier to share. Headquartered in Amsterdam, Akvo is a non-profit foundation that works with more than a thousand organisations around the world.
This is a full time position and a team work, so you will be required to be available during normal office hours.<p>We are looking for someone to be based in Helsinki (primary), Stockholm or Amsterdam. You must have a work permit already to work in one of these locations.
Please send your CV along with a cover letter to [email protected].
Looking forward to hearing from you.</font></span><p><font size="1"><u><a href="reply?id=8555498&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543004" onclick="return vote(this)" href="vote?for=8543004&dir=up&by=jecjec&auth=9d5df5a426d2444498f254f2b4810d3fea3df64a&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543004"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=clarkevans">clarkevans</a> 8 days ago | <a href="item?id=8543004">link</a></span></div><br>
<span class="comment"><font color="#000000">Operations Engineer at Prometheus Research (U.S. Telecommute)<p>Prometheus Research builds open source RexDB (<a href="http://www.rexdb.org" rel="nofollow">http://www.rexdb.org</a>) software to help medical researchers organize complex data. We're an established organization based in New Haven, CT, that has most of its staff working remotely. I work from my home in Chicago, for example.<p>We're looking for someone to join our system administration team to help us with systems automation, networking, monitoring, and managing challenges of secure hosting. This is a full-time work-from-home telecommute position, that offers flexible hours, and full benefits. Specific tools include:<p>* Linux for our development and production servers
* Ansible for most of our system configuration
* Docker for application packaging
* Python for application and automation software
* PostgreSQL for application databases
* ovirt/kvm for virtual machine management
* reStructuredText/Sphinx for documentation<p>We need someone who really understands networking, security, and has a talent for communication and documentation. Thanks in advance for dropping us a note at [email protected] - Clark</font></span><p><font size="1"><u><a href="reply?id=8543004&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8545664" onclick="return vote(this)" href="vote?for=8545664&dir=up&by=jecjec&auth=31c507c270300d95d45fb67ea8ae1aeb2040957f&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8545664"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=conorgil145">conorgil145</a> 7 days ago | <a href="item?id=8545664">link</a></span></div><br>
<span class="comment"><font color="#000000">Virtru | <a href="https://virtru.com/how-it-works" rel="nofollow">https://virtru.com/how-it-works</a> | Washington, D.C. | Fulltime | Javascript fullstack, Android, iOS, .NET<p>== Who we are ==<p>Everyone has a right to keep their digital content private and secure. We founded Virtru because we believe that exercising that right should be easy and convenient.<p>Virtru allows you to send end-to-end encrypted email using your existing email address and email provider with the flip of a switch.<p>Our browser extension for Chrome and Firefox allows you to send and receive encrypted email directly from Gmail, Yahoo, and Outlook.com. Our Android and iOS mobile apps and Outlook desktop plugin work with any provider that uses IMAP.<p>Our full time team of 16 is currently 50% engineers. We value automated testing, readable/maintainable code, documentation, and code reviews. We run in 2 week sprints and dedicate about 20% of total capacity to things the dev team thinks are important (technical debt, refactors, exploring a new technology, etc) while the rest goes to feature development and addressing bugs.<p>We are well capitalized with investments from Bessemer Venture Partners [0] and private investors.<p>== Current positions ==<p>- Full stack NodeJS/Javascript developer. Our backend runs on NodeJS (with dabbles of Python), our frontend uses Angular and Backbone (looking to consolidate!), and our browser extensions use our internal javascript framework to run in Chrome and Firefox.<p>- Android developer<p>- iOS/Mac OS developer<p>- .NET developer to support our Outlook desktop plugin<p>I work on the backend, so I can provide some details on that role. Our client facing API services are built on Express.js. We run in the AWS cloud and are looking for someone with deep experience deploying/maintaining services/infrastructure who can also help add new functionality to the application layer.<p>Some things we play with on the backend: NodeJS, ExpressJS, passport, AWS (EC2, SQS, ElastiCache), Packer, Salt Stack, ELK stack (Elasticsearch, Logstash, Kibana), HAProxy.<p>Some more information is listed here: <a href="https://www.virtru.com/careers" rel="nofollow">https://www.virtru.com/careers</a>.<p>== Get in touch ==<p>If you care about privacy and are interested in creating security products at a company which thinks that user experience is a first class citizen, please get in touch! Send a secure email (using Virtru!) to [email protected] with subject “HN who is hiring response” and tell us what interests you about Virtru. It would be great if you can provide some sample code that we can check out (github, bitbucket, etc).<p>If you have any questions, I’ll monitor this thread and/or you can email me directly (email in profile).<p>[0] <a href="http://www.bvp.com/portfolio/virtru" rel="nofollow">http://www.bvp.com/portfolio/virtru</a></font></span><p><font size="1"><u><a href="reply?id=8545664&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543324" onclick="return vote(this)" href="vote?for=8543324&dir=up&by=jecjec&auth=08fc5021a5d3ac99f63dfc58a0003fe232934dd4&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543324"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=JangoSteve">JangoSteve</a> 8 days ago | <a href="item?id=8543324">link</a></span></div><br>
<span class="comment"><font color="#000000">Alfa Jango - Ann Arbor / Detroit, MI - Ruby, JavaScript, both front-end and back-end developers - full-time - REMOTE or local<p>We build startups, all day, every day. We are our startups' technical co-founder, acting as their CTO and development team. We help everyone from new founders who have an idea and aren't sure what to do next, to founders who have already raised money, have a product and are looking for a more experienced team to help out or take over the technology (one of our clients even went through YCombinator).<p>Several of our startups are doing very well and we need to add someone to the team to help us grow. A couple have won large competitions this year, a few are raising funding (in addition to the several that have already raised funding) amidst initial traction.<p>One of our startups also just got acquired by Edmunds.com!<p><a href="http://www.edmunds.com/car-news/edmundscom-acquires-carcode-sms-to-help-shoppers-dealers.html" rel="nofollow">http://www.edmunds.com/car-news/edmundscom-acquires-carcode-...</a><p>---<p>We've recently grown to a small team of 6, and are now looking to bring on two more developers. We do most of our work using Ruby, JavaScript, HTML5, CSS, and other open web technologies (CoffeeScript, SASS, and more). We're looking for intermediate to senior level developers for at least one (or preferably both) of next two positions (and maybe some interns or beginner-level developers immediately after that).<p>---<p>We also work on a lot on open-source. For example, I maintain the Rails jquery-ujs [2] and jquery-rails [3] libraries; Scott is a maintainer of the Kandan open-source chat app [4]; and we just launched Dynatable.js [5] back in December, which has now overtaken Datatables in popularity on Github; and we have several other projects in the works as well [6]. Our open-source projects have over 8,000 combined stars on Github so far.<p>We also each have our own side-projects we work on as well, including our company status dashboard (built on Node) which pulls from all of our internal applications in real-time to show how we're doing that week, an application which helps you record and save your important voicemails forever, and several others.<p>If working on startups and open-source sounds like a lot of fun to you, then you might be a good fit :-) If you're ready to become an integral part of a startup building startups, let us know.<p>Check us out (<a href="http://www.alfajango.com" rel="nofollow">http://www.alfajango.com</a>), and reach out to us at [email protected].<p>[1] <a href="https://github.com/rails/jquery-ujs" rel="nofollow">https://github.com/rails/jquery-ujs</a><p>[2] <a href="http://rubygems.org/gems/jquery-rails" rel="nofollow">http://rubygems.org/gems/jquery-rails</a><p>[3] <a href="https://github.com/kandanapp/kandan" rel="nofollow">https://github.com/kandanapp/kandan</a><p>[4] <a href="http://www.dynatable.com/" rel="nofollow">http://www.dynatable.com/</a><p>[5] <a href="http://os.alfajango.com/" rel="nofollow">http://os.alfajango.com/</a></font></span><p><font size="1"><u><a href="reply?id=8543324&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8574538" onclick="return vote(this)" href="vote?for=8574538&dir=up&by=jecjec&auth=80f1082f5f2376db7830d1c4467463a933e24da2&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8574538"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=ericbogs">ericbogs</a> 1 day ago | <a href="item?id=8574538">link</a></span></div><br>
<span class="comment"><font color="#000000">Hinge<p>New York, NY<p>iOS, Android, DevOps/Infra, Data Scientist, QA Lead<p>Be part of a small but rapidly growing, tier 1 VC-backed startup, and work on the dating app that all of your friends are using.<p><a href="http://angel.co/hinge/jobs" rel="nofollow">http://angel.co/hinge/jobs</a>
<a href="http://team.hinge.co" rel="nofollow">http://team.hinge.co</a></font></span><p><font size="1"><u><a href="reply?id=8574538&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544168" onclick="return vote(this)" href="vote?for=8544168&dir=up&by=jecjec&auth=4400cc851e34e24fe624067a7cd715980ae89da7&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544168"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=mburst">mburst</a> 7 days ago | <a href="item?id=8544168">link</a></span></div><br>
<span class="comment"><font color="#000000">Imgur - San Francisco, CA - Desktop && Mobile Engineers (<a href="http://imgur.com/jobs" rel="nofollow">http://imgur.com/jobs</a>)<p>Imgur is an image community that creates, consumes and shares tomorrow's viral images, today. Millions of images are uploaded each day to Imgur, where they are distilled by the Imgurian community into a stream of the Internet's best images and viewed billions of times. From an engineering perspective we have tons of awesome at scale problems you won't find in many other places.<p>We're a small team of about 30 people with about half being engineers/designers. Our current stack is PHP, Go, and Javascript (ReactJS). We're also hiring Android and iOS engineers. Our benefits include:<p>* 100% Health, Vision, Dental<p>* 401k matching<p>* Relocation stipend<p>* Catered lunches<p>* Budget to build out your dream computer/desk<p>If you're interested in talking about one of the positions feel to email me at max@you know where.com or head over to <a href="http://imgur.com/jobs" rel="nofollow">http://imgur.com/jobs</a> and apply there.</font></span><p><font size="1"><u><a href="reply?id=8544168&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8542976" onclick="return vote(this)" href="vote?for=8542976&dir=up&by=jecjec&auth=d6d32ee612019841ecd4c0d79024fb561af52771&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8542976"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=alexose">alexose</a> 8 days ago | <a href="item?id=8542976">link</a></span></div><br>
<span class="comment"><font color="#000000">UI Engineer - Crimson Hexagon - Boston<p>We use machine learning techniques to make sense of a vast reservoir of social data. As one of the few companies with direct access to the Twitter Firehose as well as the full Facebook and Google+ APIs, we face unique UI problems that you'll help solve with your keen sense of design and attention to detail. You'll be architecting new features and workflows that our customers will use to pull valuable insight out of hundreds of billions of social media posts.<p>There's no precedent for a lot of what we do. Familiarity with modern JavaScript frameworks is a plus, but not a requisite-- We value your ability to think laterally, collaborate, communicate, and execute above everything. We like people who have a background in freelancing. We also like people who come to programming via nontraditional means.<p>Top pay, top benefits, located in Boston's Seaport district. We're big enough not to be a monoculture, but small enough not to be a corporate cult.<p>Email me (alex at crimsonhexagon dot com) or check out our hiring page: <a href="http://goo.gl/oSIY3o" rel="nofollow">http://goo.gl/oSIY3o</a></font></span><p><font size="1"><u><a href="reply?id=8542976&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543357" onclick="return vote(this)" href="vote?for=8543357&dir=up&by=jecjec&auth=17b639db7d885d936da8fcc2774d2c5d755624d5&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543357"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=mateodelnorte">mateodelnorte</a> 8 days ago | <a href="item?id=8543357">link</a></span></div><br>
<span class="comment"><font color="#000000">NYC. Superstar, OpenSource Loving Engineer w/ Node.js experience at Electronifie<p><a href="http://bit.ly/13rU1dp" rel="nofollow">http://bit.ly/13rU1dp</a><p>We're building the world's first corporate bond trading platform in Node.js. Why is that interesting? Turns out the corporate bond market is a 10 Trillion dollar market that still works like it did in 1978, with traders calling each other up on the phone. Modernization that happened in equities never made it to the bond market. All the biggest players are calling for new solutions (<a href="http://bit.ly/1tLXFZq" rel="nofollow">http://bit.ly/1tLXFZq</a>) and that's exactly what we're building. The incumbents in this space are big, slow moving, enterprises with six to twelve month release cycles and a fear of Open Source software. We push out updates and new features within days and are releasing our own tools back to the community.<p>Want to solve amazingly exciting problems with a small team of very experienced engineers? Want to help disrupt FinTech by leveraging OpenSource tools and running circles around the competition?<p>Come join us.</font></span><p><font size="1"><u><a href="reply?id=8543357&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8564231" onclick="return vote(this)" href="vote?for=8564231&dir=up&by=jecjec&auth=013620c124c81eb2e9ac182d1650822043e9c0a1&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8564231"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=RaizlabsTalent">RaizlabsTalent</a> 3 days ago | <a href="item?id=8564231">link</a></span></div><br>
<span class="comment"><font color="#000000">Raizlabs - <a href="http://raizlabs.com" rel="nofollow">http://raizlabs.com</a> - Boston, MA and Oakland, CA<p>Mobile Strategy, Design, and Development<p>What you'll do at Raizlabs:<p>Do more than code. Raizlabs is seeking experienced mobile developers (iOS and Android), Web Developers (RoR, Angular, etc.), and user experience/user interface (UX/UI) designers to engineer beautiful apps and influence product direction for startups and big brands like Virgin, Bloomingdale’s, Localytics, RunKeeper, Rue La La, Care.com, and HubSpot. We’ve worked in a diverse array of fields ranging from education to medical wearables and are always playing with novel technologies.<p>You’ll be working with enthusiastic and supportive peers in a trust-based work environment. In fact, you’ll be helping to keep it that way.<p>Sounds like fun, right?<p>Check out our openings and apply: <a href="http://raizlabs.com/company/jobs/" rel="nofollow">http://raizlabs.com/company/jobs/</a> or email me directly with questions: [email protected]</font></span><p><font size="1"><u><a href="reply?id=8564231&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8542979" onclick="return vote(this)" href="vote?for=8542979&dir=up&by=jecjec&auth=03d967b457feb602ec4cf95ba3339496be6b763c&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8542979"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=choult">choult</a> 8 days ago | <a href="item?id=8542979">link</a></span></div><br>
<span class="comment"><font color="#000000">DataSift (<a href="http://datasift.com" rel="nofollow">http://datasift.com</a>) Reading, UK (engineering/product); San Francisco/New York (sales engineers/pre-sales)<p>DataSift, the world's leading supplier of social data - we're now the only independent provider of the Twitter firehose and archive, for example - is growing like mad. We're after engineers and devops of numerous descriptions (PHP, C++, Scala, Node, Python, Java) to add to our world class team in Reading, UK as well as technical sales and account managers in the US and in Europe.<p>Our stack includes (in no particular order):<p>* Hadoop * Scala * C++ * PHP * NodeJS * Python * ZeroMQ * Kafka * Redis * Go<p>For more information on any engineering jobs, drop me a line on [email protected] - I'm personally after a full stack front end engineer with PHP/JS - and I'll do my best to answer.<p>UK positions: <a href="http://jobvite.com/m?3hWXMgwH" rel="nofollow">http://jobvite.com/m?3hWXMgwH</a>
US positions: <a href="http://jobvite.com/m?3zXXMgw0" rel="nofollow">http://jobvite.com/m?3zXXMgw0</a></font></span><p><font size="1"><u><a href="reply?id=8542979&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8550743" onclick="return vote(this)" href="vote?for=8550743&dir=up&by=jecjec&auth=be2b2d98e5cfcbdca9499a71164347a125f96e6c&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8550743"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=mapdock">mapdock</a> 6 days ago | <a href="item?id=8550743">link</a></span></div><br>
<span class="comment"><font color="#000000">Grow (Norfolk, Virginia USA) - A leading digital agency with a focus on innovation and creative technology - Front and back end developer roles (2 openings)<p>We’re a team of close-knit creatives, technologists, strategists, and producers whose skills are matched only by our dedication. Our hard work put us on the map, and our commitment to creative innovation keeps us there.<p>Grow is currently hiring to fill two positions, one for a skilled mid/senior-level front end developer accomplished in HTML/CSS/JavaScript and excited about new technologies and challenges. Our project-driven environment keeps the work fresh, and we're committed to building the very best creative and technical workflow possible around progressive open source tools. Recent projects that demonstrate our typical output can be seen on our site at <a href="http://www.thisisgrow.com" rel="nofollow">http://www.thisisgrow.com</a>.<p>We're also looking for a person at a senior level to develop back-end solutions for our data-driven executions in web, mobile, and emerging technology. This includes API development, custom content management, front-end integration, image/video rendering, and other complex builds.<p>Both positions are full-time employee roles at our office in Norfolk, Virginia.<p>=== About Grow ===
Amazing clients and an inspiring environment come standard, but the best part is finding yourself among a close-knit group of about 30 incredibly talented and motivated colleagues. We’re part of a community of like-minded people in the Norfolk / Virginia Beach area who spend our time creating great work and building culture around us—with lovely beaches, urban amenities, and family-friendly opportunities throughout the region. A wealth of company benefits include health, dental, matching 401k, disability, paid vacation and holidays, paid training, and more.<p>See our work and our surroundings at www.thisisgrow.com. Qualified applicants should e-mail [email protected], including work history and relevant portfolio links.</font></span><p><font size="1"><u><a href="reply?id=8550743&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8545424" onclick="return vote(this)" href="vote?for=8545424&dir=up&by=jecjec&auth=c77611f1cc7a18bb19bb84d45bff141b793184a3&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8545424"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=ncbk12">ncbk12</a> 7 days ago | <a href="item?id=8545424">link</a></span></div><br>
<span class="comment"><font color="#000000">COLUMBUS, OHIO – Full Stack Engineer w/Ruby on Rails Focus<p>====
QUICK INTRO
====<p>NextChapter (<a href="http://www.nextchapterbk.com/" rel="nofollow">http://www.nextchapterbk.com/</a>) is seeking Ruby on Rails / Angular.js developer to join the team and help us push the product to the finish-line! If you want to be part of a startup that's right on the cusp of launching, without the risk associated with starting from scratch or working completely on your own, this might be just the right fit.<p>We have a working product with attorneys signed up and ready to start paying. With a clear path to revenue, pre-orders from current beta testers and a founding team full of ambition & tenacity, NextChapter is ready to take this bootstrapping startup to cash flow positive within months, with your help.<p><i></i>* If interested, email janine(at)nextchapterbk(dot)com with an intro and resume. <i></i>*<p>====
DESIRED SKILLS
====<p>Our ideal candidates will have the following skills:<p><pre><code> • Ruby 2.X
• Rails 4.X
• Postgresql
• Javascript
• Coffeescript
• Angular.js
• or other Javascript MVC frameworks
</code></pre>
====
ADDITIONAL EXPERTISE
====<p><pre><code> • GitHub experience working with others in a team to fork & pull
• Experience with Balsamiq mockups and Trello for project management
• A firm grasp of object oriented analysis and design
• Startup experience a plus
</code></pre>
=====
ABOUT THE COMPANY
=====<p>NextChapter is a legal startup helping attorneys prepare bankruptcy documents online. "Turbotax for Lawyers"<p>Bankruptcy is not a fun thing to go through but there are 1.5M bankruptcies filed each year. These individuals are paying attorneys a flat fee of $1,500 to do the work, but NextChapter is taking the pain away from both the debtor and the attorney. They do this by making the TurboTax of bankruptcy software, streamlining the process of filing a 75-page form to using an intuitive online system.<p>NextChapter saves the average attorney 50 hours & $12,000 per month by offering per-case pricing, cloud-based access and most importantly, an intuitive navigation platform.<p>Check us out online:<p><pre><code> • Website: http://www.nextchapterbk.com/
• Twitter: https://twitter.com/NextChapterBK
• AngelList: https://angel.co/nextchapter/jobs/
• Facebook: https://www.facebook.com/NextChapterBK
</code></pre>
Read an article written by founder, Janine Holsinger on the Legal Startup market and posted on popular legal blog, Lawyerist - <a href="http://lawyerist.com/74528/legal-startups/" rel="nofollow">http://lawyerist.com/74528/legal-startups/</a></font></span><p><font size="1"><u><a href="reply?id=8545424&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8542965" onclick="return vote(this)" href="vote?for=8542965&dir=up&by=jecjec&auth=5757f1131f4a55c91b940eb4b28ac006f6927e5a&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8542965"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=chrisduesing">chrisduesing</a> 8 days ago | <a href="item?id=8542965">link</a></span></div><br>
<span class="comment"><font color="#000000">Senior RoR Developer - Mercaris - Chicago, IL<p>Mercaris provides data reports and auctions for Organic and non-GMO crops to help farmers, food manufacturers and retailers bring healthier products to market and meet skyrocketing consumer demand. We recently closed a $2.5M series A funding round and are looking to expand our team.<p>We are looking for a mid/senior level Ruby on Rails developer to join our team and contribute significantly to the codebase and the company. Salary will be commensurate with experience. Benefits include fully covered medical, 401k with 3% match, and equity. The position is located in downtown Chicago, IL.<p>Your Skills and Experience:<p>5+ years of development experience, with a substantial amount of experience developing Ruby on Rails web apps. HTML, CSS and Javascript skills are of course fundamental as well.<p>An interest in mentoring and teaching other developers.<p>Assisting in putting best practices, processes and frameworks in place that help scale the development process as the team grows.<p>Send any questions or resumes for consideration to chris.duesing at mercariscompany.com.</font></span><p><font size="1"><u><a href="reply?id=8542965&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8556280" onclick="return vote(this)" href="vote?for=8556280&dir=up&by=jecjec&auth=90299e7ce70e460e0571d5424361c84eff9fe705&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8556280"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=sridevizarin">sridevizarin</a> 5 days ago | <a href="item?id=8556280">link</a></span></div><br>
<span class="comment"><font color="#000000">Indix - Chennai | Job Title - Software Engineer<p>Indix is a product intelligence data science start-up. We are head quartered in Seattle and have our development based in Chennai. Indix is founded by Sanjay Parthasarathy, a veteran from Microsoft and we were recently in news for our Series A-1 funding of 9 million, post our Series A funding of 4.5 million in April last year.<p>INDIX == Trust,Challenge,Support,Fun<p>Indix, is building the world’s biggest product database to enable any app or website to become product-aware in an era of pervasive commerce. We think that in the future, all applications will be ‘product-aware’, just as applications today are ‘people’ and ‘location’ aware, and therefore every interaction in the physical and virtual world will be an opportunity to inform, educate and sell products.<p>Today, Indix's SaaS and Big Data product intelligence platform enables brands and retailers to explore, analyze, visualize, and act on the world’s product related information in real-time. Indix's extensive APIs give developers the tools to build limitless product-aware applications and services. Many of the world’s leading brands and retailers like Microsoft are already using the Indix platform to increase productivity, drive revenue and grow their brands.<p>For more info, please log onto www.indix.com and to know more about the job, <a href="http://www.indix.com/join_us#software_engineer" rel="nofollow">http://www.indix.com/join_us#software_engineer</a><p>Reach out to us at [email protected]</font></span><p><font size="1"><u><a href="reply?id=8556280&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543105" onclick="return vote(this)" href="vote?for=8543105&dir=up&by=jecjec&auth=d29c81d7b64c83c71991483f4d33aeafd1cef513&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543105"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=asanwal">asanwal</a> 8 days ago | <a href="item?id=8543105">link</a></span></div><br>
<span class="comment"><font color="#000000">NYC --- CB Insights (www.cbinsights.com)<p>We're looking for many positions (<a href="http://www.cbinsights.com/jobs" rel="nofollow">http://www.cbinsights.com/jobs</a>). A few are listed below:<p>- Full Stack Dev - <a href="http://cbi.vc/1wQCbtc" rel="nofollow">http://cbi.vc/1wQCbtc</a><p>- Tech Industry Analyst - a Nate Silver of Tech - <a href="http://cbi.vc/1wQCcxj" rel="nofollow">http://cbi.vc/1wQCcxj</a><p>- Digital Marketing Analyst - <a href="http://cbi.vc/1tLLZFO" rel="nofollow">http://cbi.vc/1tLLZFO</a><p>- Inside Sales - <a href="http://cbi.vc/1tLLVGi" rel="nofollow">http://cbi.vc/1tLLVGi</a><p>We're revenue-funded (no angels, VCs) doing millions in revenue. Received a grant from the National Science Foundation but otherwise growing out of cashflow.<p>We're using data to predict emerging technology trends, breakout private companies and corporate strategy.<p>Hard problems, awesome team, real company. Would love to talk. My email is in my profile or email [email protected]</font></span><p><font size="1"><u><a href="reply?id=8543105&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543861" onclick="return vote(this)" href="vote?for=8543861&dir=up&by=jecjec&auth=3eb1521202fcd2878c30153fd2fcfd1c394ff9f0&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543861"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=boyd">boyd</a> 8 days ago | <a href="item?id=8543861">link</a></span></div><br>
<span class="comment"><font color="#000000">One Codex (YC S14) – Genomic search and data platform. San Francisco, CA (<a href="https://www.onecodex.com" rel="nofollow">https://www.onecodex.com</a>).<p>==============<p>==== About Us ====<p>==============<p>We’re a software and biology start-up building a global data backbone and search platform for genomics – an essential piece of infrastructure for a world in which we increasingly understand health, disease, and our environment by transforming biology into data. Our first application area is pathogen detection – working with doctors, epidemiologists, and public health officials to identify and characterize the bacteria and viruses that threaten our health. And already, we’ve attracted users at many of the top public health and research organizations across the globe.<p>===============<p>==== About You ====<p>===============<p>We’re looking for talented software engineers to help us build towards our vision for a global genomics data network and enable widespread <i>in</i> <i>silico</i> diagnostics. Specifically, we’re interested in folks with a passion for and depth of experience in one or more of the following areas:<p>1) Full Stack Engineering: We will be building everything from developer-facing APIs to easy-to-use end applications for doctors and public health officials. You care about everything from elegant APIs to compelling data visualizations. Python experience preferred (we currently use Flask for our web backend).<p>2) Distributed Systems: We’re building systems for organizing and indexing billions to trillions of genomic fingerprints across the entire tree of life. You’re passionate about data structures, efficient computational solutions, and distributed systems (and don’t mind the occasional bit twiddling). We’ve built some cool initial tech in C, Nimrod, and Python (probabilistic data structures, Docker pipelines for reliably running bioinformatics workflows, etc.), and are excited about the extensive greenfield opportunities here.<p>3) Genomics / Computational Biology: We are tackling hard problems at the intersection of microbiology, genomics, statistics, and computer science. You have research experience or another strong connection to these fields, understand current bioinformatics tools and approaches (and their limits), and have worked extensively with next-generation sequencing data. Ideally, you also have some intuitions and strong hypotheses about how bioinformatics tools can scale for petabyte-sized reference sets.<p>===<p>You’ll be one of our earliest hires and directly shape our technology choices, product, and business. If you’re interesting in working on large-scale data challenges of both scientific and societal importance, please send us a note at [email protected] or reach out to me directly at [email protected].</font></span><p><font size="1"><u><a href="reply?id=8543861&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544497" onclick="return vote(this)" href="vote?for=8544497&dir=up&by=jecjec&auth=5017f6843ac95e3cd80e63045ffe27fabe7bfd8a&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544497"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=sb_ba">sb_ba</a> 7 days ago | <a href="item?id=8544497">link</a></span></div><br>
<span class="comment"><font color="#000000">Blue Apron (New York, NY) - Fulltime<p>Blue Apron (<a href="http://www.blueapron.com" rel="nofollow">http://www.blueapron.com</a>) is an NYC-based startup delivering original recipes and premium, seasonal ingredients needed to prepare them, in exactly the right proportions. We've raised $58M from First Round Capital, Bessemer Venture Partners, and Stripes Group [1]. Last year, Forbes named us one of the hottest startups of 2013 and we've only continued our rapid growth in 2014 [2].<p>Our engineering team creates software to manage the forecasting, purchasing, preparation, and shipment of new fresh ingredients every week, delivering over 800,000 meals nationwide monthly.<p>The nature of our business carries with it unique supply chain and logistical challenges that require purpose-built solutions and data analysis.<p>Current stack: Ruby, Rails, Ember, PostgreSQL, RSpec, Haml, Sass<p>We're hiring:<p>- Frontend Developers: HTML, CSS, JavaScript - <a href="http://www.blueapron.com/pages/jobs?gh_jid=14848" rel="nofollow">http://www.blueapron.com/pages/jobs?gh_jid=14848</a><p>- Software Engineers: Ruby, Rails, Ember (would be really awesome but not required) - <a href="http://www.blueapron.com/pages/jobs?gh_jid=11091" rel="nofollow">http://www.blueapron.com/pages/jobs?gh_jid=11091</a><p>- Site Reliability Engineer: This person will design a high availability, distributed AWS architecture to serve our customers, fulfillment centers, and e-commerce operation. (Chef, Puppet, Ruby or Python exp. is a plus) - <a href="http://www.blueapron.com/pages/jobs?gh_jid=25367" rel="nofollow">http://www.blueapron.com/pages/jobs?gh_jid=25367</a><p>About you:<p>- You've taken features or products from concept to completion and have experience working with production web applications.<p>- You communicate your ideas clearly, and are capable of designing and implementing complex, scalable solutions.<p>- You are always learning and are excited at the prospect of mastering new technologies and techniques.<p>We offer health, dental, and vision insurance, a flexible vacation policy, and competitive salary and equity. To apply, visit our site (blueapron.com/jobs) and drop an application; it only takes about 60 seconds.<p>[1]<a href="http://blogs.wsj.com/venturecapital/2014/04/30/blue-apron-raises-50m-to-deliver-do-it-yourself-meal-kits-recipes/" rel="nofollow">http://blogs.wsj.com/venturecapital/2014/04/30/blue-apron-ra...</a>
[2] <a href="http://www.forbes.com/pictures/emjl45himd/blue-apron-4/" rel="nofollow">http://www.forbes.com/pictures/emjl45himd/blue-apron-4/</a></font></span><p><font size="1"><u><a href="reply?id=8544497&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543752" onclick="return vote(this)" href="vote?for=8543752&dir=up&by=jecjec&auth=35b1cef6a7346e62b8412941ec03ff4de7f88a33&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543752"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=bitcrusher">bitcrusher</a> 8 days ago | <a href="item?id=8543752">link</a></span></div><br>
<span class="comment"><font color="#000000">FlareWorks - <a href="http://www.flareworks.co" rel="nofollow">http://www.flareworks.co</a> - San Francisco, CA. Bay Area Only
Interested in changing the world? Neither are we! But we are interested in having fun and building cool software.<p>FlareWorks is a visual messaging startup headquartered in San Francisco, California. Our mission is to build a platform for contextual, visual communication between family and friends that is easier and simpler than Texting. In short - "Kill Text". Our company’s visual messaging service —called Flares— uses visual cues, instead of text, to provide communication shortcuts between friends and family. We're a seed funded, early stage startup, so this is an opportunity to get in on the ground floor. You would be engineer number 3. We're looking for Android developers to help us take our mobile application and platform to the next level. Our mobile apps are the face of the organization and, as such, you’ll be on the front lines of creating an application and experience that has the potential to be used by millions of people every day. We're currently in the Apple app store and are now looking to expand into Android/Google Play. Our app was featured as the "best new app" by Apple the first week it was released and we have consistently received great press for our MVP.<p>Our Stack:
* Node for our API.
* Erlang/Elixir for our platform.<p>What we offer:
* We're not fans of 9-5 with a lunch break. Work when you want, where you want. Results matter. "Seat Time" does not.
* Unlimited PTO. Take the time off you need, when you need it. We don't offer prizes for 'attendance'.
* 5K equipment budget. Buy what you want; After a year with us, it's yours to keep.
* Company outings. We like to get out and do things as a team. Lunches, dinners, games, volunteering, concerts. We're always on the lookout for things to do.
* A real voice. We want to know what you think. If you have an idea or think something isn't working, we want to hear about it. Your voice counts.
* Generous options and an actual competitive salary (no low-balling + options bait and switch here ).<p>What we're looking for:
* Android and iOS engineers.
* UX and visual design chops.
* Meticulous attention to details.
* Android:
* Animation and the hardware accelerated rendering pipeline as well as OpenGL ES.
* Location, Content and Media SDK experience.
* iOS:
* Core Graphics, Core Animation, Core Data, Core Location
* Comfort with rapid iteration and real-time team collaboration.
* Excited about and eager to use Swift.<p>If this sounds like a good fit for you, email us ( [email protected] ) and we'll talk.</font></span><p><font size="1"><u><a href="reply?id=8543752&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543551" onclick="return vote(this)" href="vote?for=8543551&dir=up&by=jecjec&auth=b1f0ee40b4f98f1bad56d701521a99bf289ce460&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543551"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=fuelfive">fuelfive</a> 8 days ago | <a href="item?id=8543551">link</a></span></div><br>
<span class="comment"><font color="#000000">Vicarious - Silicon Valley, CA.<p><pre><code> /\ \
/ \ \
/ /\ \ \
/ / /\ \ \
/ / /__\_\ \
/ / /________\
\/___________|
</code></pre>
Our long term goal is to build machines that exceed human intelligence. We are passionate about changing the world with science and software, and we are looking for exceptional people to join us in that mission.<p>Available roles:<p><pre><code> - Machine Learning Researcher
- Computer Vision Researcher
- Software Engineer
- DevOps
- Systems Administrator.
</code></pre>
We have raised ~$70M in funding and are not constrained by publication, grant applications, or product development cycles. At Vicarious, there is room to develop new approaches that would otherwise not be supported in academia or industry. In the long term, our work will push forward the AI and robotics revolutions.<p>Learn more: <a href="http://vicarious.com/" rel="nofollow">http://vicarious.com/</a></font></span><p><font size="1"><u><a href="reply?id=8543551&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8545371" onclick="return vote(this)" href="vote?for=8545371&dir=up&by=jecjec&auth=550a1de6a65d602209f3e51910801c2b792cb95c&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8545371"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=fchollet">fchollet</a> 7 days ago | <a href="item?id=8545371">link</a></span></div><br>
<span class="comment"><font color="#000000">> Our long term goal is to build machines that exceed human intelligence.<p>I remember reading back in 2012 (or was it 2011?) that you projected to have a human-level vision system by 2015 and a strong AI by 2018. How far along are you?<p>I think it would be much easier for you to recruit world-class ML/AI people if there was a public window into what you are doing and what results you are getting. Similar to the very impressive papers that DeepMind has been releasing.<p>A single paper showing impressive research would do much more for your ability to recruit top talent than grand mission statements and PR hype.</font></span><p><font size="1"><u><a href="reply?id=8545371&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8544595" onclick="return vote(this)" href="vote?for=8544595&dir=up&by=jecjec&auth=12743c7670aaf07bf0f1be1b2e82d4004c5a0511&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544595"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=S4M">S4M</a> 7 days ago | <a href="item?id=8544595">link</a></span></div><br>
<span class="comment"><font color="#000000">Don't take it in a wrong way, but I checked your web page, and while it looks very impressive, I have no idea how you guys are making money. Would it be OK for you to explain a bit?</font></span><p><font size="1"><u><a href="reply?id=8544595&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8544409" onclick="return vote(this)" href="vote?for=8544409&dir=up&by=jecjec&auth=ea9949b74e79b3e568f94dc0af2e01c4b1a65bb2&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544409"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=iandanforth">iandanforth</a> 7 days ago | <a href="item?id=8544409">link</a></span></div><br>
<span class="comment"><font color="#000000">Do you actively work with robots today?</font></span><p><font size="1"><u><a href="reply?id=8544409&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8568052" onclick="return vote(this)" href="vote?for=8568052&dir=up&by=jecjec&auth=a3b81d05dfc1dfd55de89fc2ab7fa420ad3efba1&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8568052"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=JuliaLam">JuliaLam</a> 3 days ago | <a href="item?id=8568052">link</a></span></div><br>
<span class="comment"><font color="#000000">Enchanted Labs - (San Francisco, CA) - Ex-Facebook co-founders.<p>Enchanted Labs is a funded, early stage, travel startup co-founded by two ex-Facebookers. We’re working on an innovative trip technology and looking for a backend/fullstack engineer to join our small team on the ground level.<p>-----
SEEKING: Back End/Fullstack Engineer<p>Looking for someone who knows NLP, machine learning, or hardcore algorithms. We have a practical application that you would find pretty interesting.<p>-----JOB DETAILS AT: <a href="http://jobs.enchantedlabs.com" rel="nofollow">http://jobs.enchantedlabs.com</a><p>Or feel free to shoot me a line at [email protected].</font></span><p><font size="1"><u><a href="reply?id=8568052&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8547163" onclick="return vote(this)" href="vote?for=8547163&dir=up&by=jecjec&auth=2b4662a838699e1702d6c68e2212a98be3c0bc2c&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8547163"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=woodhull">woodhull</a> 7 days ago | <a href="item?id=8547163">link</a></span></div><br>
<span class="comment"><font color="#000000">ControlShift Labs - Remote Team (Global). Ruby/Rails or DevOps - Freelance Contractor or Full Time.
<a href="http://www.controlshiftlabs.com/" rel="nofollow">http://www.controlshiftlabs.com/</a><p>What we do:<p>We build a set of software tools that online advocacy organizations use to scale their work and make it more participatory. We're excited about supporting a shift in how advocacy organizations are using the internet to organize -- and building tools that empower ordinary activists in extraordinary ways.<p>We're a small team of software engineers and online organizers with several decades of combined experience in the advocacy sector, including at Organizing for America, ActBlue, CREDO, MoveOn.org, and Purpose. Our deep organizing and technology background, coupled with a close interest in our partners’ campaigns and goals, lets us develop tools that are particularly effective in facilitating effective grassroots organizing and building strong and participatory organizations. We have a deep commitment to progressive social change around the world that infuses our work.<p>We're profitable.<p>Tech:<p>We're pragmatic about the technologies we use in our work but at the moment our stack includes ruby, rails, rspec, postgres, redis, sass and haml. We practice test driven development, hold daily team stand-ups via Google Hangout, and use an agile inspired process.<p>At the moment we're looking for help with two roles:<p>- A dev ops contractor to help us fully automate our infrastructure using chef / aws / cloudformation / packer / vagrant / etc.<p>- Contract or full-time Ruby/Rails developers to help us with product feature development.<p>We offer the opportunity to do work that matters (with amazing social change organizations) with a flexible work environment and fair market compensation.<p>You must be comfortable working remotely (we meet up 2-3 times a year) and communicating in written and verbal English.<p>Emails us at [email protected] with your CV, a github profile and a pointer to some code that you've written that you are particularly proud of, and why you'd like to work with us.<p>Thanks!<p>Nathan</font></span><p><font size="1"><u><a href="reply?id=8547163&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543845" onclick="return vote(this)" href="vote?for=8543845&dir=up&by=jecjec&auth=bc86f952cb2e541c15049675082dd59a8deb50ca&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543845"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=blakeweb">blakeweb</a> 8 days ago | <a href="item?id=8543845">link</a></span></div><br>
<span class="comment"><font color="#000000">Senior Python Data Scientist and Python Engineer - Recursion Pharmaceuticals<p>Question for you: What's the most challenging, most impactful set of data problems you could be working on?<p>We’re a small and fast-growing biotech startup with an amazing set of advisors including the Broad’s Anne Carpenter, and we're using high throughput genetic perturbation experiments in human cells, automated image segmentation and quantitation of hundreds of features for every cell, and machine learning and statistics to find new treatments for rare genetic diseases faster than anyone has previously thought possible. There are more than 5,000 rare genetic diseases, in total affecting millions of Americans, and only a handful are treatable. We aim to find treatments for 100 of them in the next 10 years.<p>We’re looking for exceptional computational scientists to help lead our analysis efforts, with the following criteria:<p>- Several years of experience in statistics, machine learning, and software development solving problems using lots of data, preferably using python’s scientific stack; seeing the world through the lens of statistics and modeling; thorough understanding of fundamentals of machine learning such as cross-validation and learning curves, plus an ability to explore new types of data independently and get an effective guess as to what sorts of models and assumptions make sense as a starting point.<p>- A track record of outstanding projects, publications, or presentations that demonstrate successful application of the above talents.<p>- Motivation to tackle some of the most challenging data problems around, to work with other sharp and highly-motivated individuals with diverse backgrounds, and to make lots of patients’ lives dramatically better.<p>- Some biology background is helpful; intellectual curiosity and motivation to learn is critical.<p>- Key tools and skills (not all required): python, machine learning, sklearn, ipython, data science, pandas, interactive analysis, linux fluency, bioinformatics (definitely not required)<p>More details and how to reach us: <a href="http://www.recursionpharma.com/lead-python-data-scientist.html" rel="nofollow">http://www.recursionpharma.com/lead-python-data-scientist.ht...</a><p>More openings including software engineering roles: <a href="http://www.recursionpharma.com/careers.html" rel="nofollow">http://www.recursionpharma.com/careers.html</a><p>Recursion Pharmaceuticals is based in Research Park at the edge of the mountains overlooking Salt Lake City, Utah. Gorgeous hiking/running/biking is just out our back door, and it's half an hour to 5 top ski resorts.</font></span><p><font size="1"><u><a href="reply?id=8543845&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8545412" onclick="return vote(this)" href="vote?for=8545412&dir=up&by=jecjec&auth=5cd14208d462a31dfbd1813bc022675265b14025&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8545412"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=ogennadi">ogennadi</a> 7 days ago | <a href="item?id=8545412">link</a></span></div><br>
<span class="comment"><font color="#000000">Are any of the positions remote-friendly?</font></span><p><font size="1"><u><a href="reply?id=8545412&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8554077" onclick="return vote(this)" href="vote?for=8554077&dir=up&by=jecjec&auth=609431b935186cc6de6d7ab3d10838aacb2c6d40&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8554077"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=mandoescamilla">mandoescamilla</a> 5 days ago | <a href="item?id=8554077">link</a></span></div><br>
<span class="comment"><font color="#000000">Union Metrics - <a href="http://unionmetrics.com" rel="nofollow">http://unionmetrics.com</a> - San Francisco, CA and Austin, TX<p>We are a fast-growing, profitable startup building powerful social media analytics software. Every day our systems process more than 130 million social events and deliver analytics for thousands of paying customers.<p>We have three open engineering positions:<p>* Data Engineer (Austin, TX)<p>We need an engineer who wants nothing more than to wrangle massive amounts of data. Do you love to build on top of open source technologies like Hadoop and Cassandra using hundreds of servers? Do you enjoy working in a polyglot environment with plenty of variety? If you're passionate about building the infrastructure to process, analyze, and store hundreds of millions of events every day, then we want to talk to you.<p>Responsibilities:<p><pre><code> * Implement stream processing pipelines to handle hundreds millions of messages and events daily with Java and Ruby
* Use open source tools and data stores to analyze and store billions of data points
* Build workflows to make data accessible to end users
</code></pre>
You can find more info about these positions at <a href="https://unionmetrics.com/company/careers" rel="nofollow">https://unionmetrics.com/company/careers</a> and you can find out more about <i>us</i> at <a href="https://unionmetrics.com/company/about/" rel="nofollow">https://unionmetrics.com/company/about/</a>.<p>I'm a member of the engineering team and I'd be happy to answer any questions about us or the positions: [email protected].</font></span><p><font size="1"><u><a href="reply?id=8554077&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544494" onclick="return vote(this)" href="vote?for=8544494&dir=up&by=jecjec&auth=9a5a32600392d50d19e35d68431ab0187143c759&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544494"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=matlock">matlock</a> 7 days ago | <a href="item?id=8544494">link</a></span></div><br>
<span class="comment"><font color="#000000">Codeship - Boston, MA or Vienna, Austria<p>At Codeship we build a continuous Deployment service. Our mission is to make software teams more productive by helping them to release early, often and safe. We're building for the builders.<p>We've been in production release for several years, have thousands of developers using the service and are growing rapidly. We've closed our Series A earlier this year.<p>We're looking for Rails Developers, SysAdmins/DevOps, designers and frontend developers who love building tools for other developers.<p>Read more about us on our Jobs Page: <a href="https://codeship.io/jobs And" rel="nofollow">https://codeship.io/jobs And</a> how we work in our Blogposts: <a href="http://blog.codeship.io/category/the-codeship-workflow" rel="nofollow">http://blog.codeship.io/category/the-codeship-workflow</a><p>Send me an email to [email protected]. You'll like it here!</font></span><p><font size="1"><u><a href="reply?id=8544494&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8549033" onclick="return vote(this)" href="vote?for=8549033&dir=up&by=jecjec&auth=a64447679cd6c11ff6b4306dd13d579063cf4a96&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8549033"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=Gyffindor"><font color="#3c963c">Gyffindor</font></a> 6 days ago | <a href="item?id=8549033">link</a></span></div><br>
<span class="comment"><font color="#000000">Gata Labs Inc - Toronto, ON. Looking for Full Stack Devs, Android/iOS Devs - Able to work at our office in Downtown Toronto (at least 2-3 days/week). More Info: <a href="https://www.gatalabs.com/careers" rel="nofollow">https://www.gatalabs.com/careers</a><p>-- Who We Are --<p>Gata Labs is a Toronto based Platform-as-a-service (PaaS) company aiming to change the way consumers and businesses interact. With deep backgrounds in the localized technology space, Gata Labs builds mobile based solutions for the service industry and their clients.<p>-- Who you Are --<p>- You have enough expertise in your area (2-4 years experience) to hit the ground running fast and contribute to our codebase
- Eager to learn about new technologies and go beyond your current experience
- You are passionate about the future of your field
- You work hard, and stay humble
- Completely Optional: You are a Beast at Ping Pong (Obligatory post: <a href="https://twitter.com/Uberflip/status/525278007229837312/photo/1" rel="nofollow">https://twitter.com/Uberflip/status/525278007229837312/photo...</a>)<p>-- The Positions --<p>- Full Stack Developer: Responsible for development and infrastructure of Gata Labs' web technologies. Must be familiar with MEAN stack development (Javascript, Node.js, HTML5 & CSS3, Angular.js, CofeeScript)<p>- Android Developer - Responsible for the development, testing, and deployment of new application features on our Android products. Strong knowledge of Java for Android and familiarity with developing native Android Apps<p>- iOS Developer - Responsible for the development, testing, and deployment of new application features on our iOS products. Experience developing iOS Apps. Using one or more of Java, Objective C/Xcode, JavaScript, HTML5.<p>-- How to Apply --<p>Send us your Resume/Cover Letter and a Portfolio of past projects to [email protected]. Please see our website (www.gatalabs.com) for more information</font></span><p><font size="1"><u><a href="reply?id=8549033&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543066" onclick="return vote(this)" href="vote?for=8543066&dir=up&by=jecjec&auth=06fce09f4b10091b312e1e4836bfa55c72b8c3d0&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543066"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=uwemaurer">uwemaurer</a> 8 days ago | <a href="item?id=8543066">link</a></span></div><br>
<span class="comment"><font color="#000000">Software Engineer Java/Android - in Zürich, Switzerland or Utrecht, the Netherlands (full time, no remote)<p><a href="http://www.apptornado.com/jobs-software-engineer" rel="nofollow">http://www.apptornado.com/jobs-software-engineer</a><p>We are a startup company founded by two former Google engineers. We develop AppBrain, a leading platform for Android app discovery and app promotion. We run a worldwide app promotion network called AppBrain AppLift. We work with thousands of advertisers and developers around the world to promote and monetize their apps. ( <a href="http://www.appbrain.com/info/monetize" rel="nofollow">http://www.appbrain.com/info/monetize</a> )<p>We have ambitious plans for the future and are growing our teams in Zürich, Switzerland and Utrecht, the Netherlands<p>Please see here for more job openings in our company: <a href="http://www.apptornado.com/jobs" rel="nofollow">http://www.apptornado.com/jobs</a></font></span><p><font size="1"><u><a href="reply?id=8543066&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8551184" onclick="return vote(this)" href="vote?for=8551184&dir=up&by=jecjec&auth=77024edcb9e430769df4729033a9c7fbc8dacb59&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8551184"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=noahbrier">noahbrier</a> 6 days ago | <a href="item?id=8551184">link</a></span></div><br>
<span class="comment"><font color="#000000">New York, NY. Full time. We're looking for jr & sr python engineers, jr & sr frontend (js/backbone) engineers + jr. & sr. android & iOS engineers.<p>As you can tell from the job openings, Percolate is a very quickly growing SAAS company in NYC. We are building a platform that helps companies manage all their marketing. We recently raised a $24 million Series B lead by Sequoia. We're looking for backend (all levels), frontend engineers (we run backbone.js alongside our RESTful API), mobile (iOS + android) and infrastructure/devsops (cfengine + AWS).<p>Here's thirteen reasons why you should come work here: (1) Our goal is to build the best engineering team in NYC (2) Every employee gets salary + equity (3) As we get bigger, you will be able to focus on what you are good at (4) We are all different and we love it (5) GPL compliant company (6) You choose your workstation (7) You choose your tools (8) No worries, free your mind: NY salary + medical + dental (9) No vacation policy (we don't count the # of days you take in a year) (10) Company invests in you: Fly to PyCon and other conferences (11) We prefer quality over quantity: Focus on clean code and test coverage (12) Your voice will be heard (13) We just got a cold-brew coffee keg for the summer<p>Lots more info about us at our new about pages: <a href="http://percolate.com/about" rel="nofollow">http://percolate.com/about</a> If you're interested email us at [email protected] or apply at <a href="http://percolate.com/about/jobs/" rel="nofollow">http://percolate.com/about/jobs/</a> If you have any questions you can email me (I'm co-founder and CEO) directly at [email protected]. Thanks.</font></span><p><font size="1"><u><a href="reply?id=8551184&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8554857" onclick="return vote(this)" href="vote?for=8554857&dir=up&by=jecjec&auth=c5d2c70bfbbae967d5b27f0d1d7c54357610d88e&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8554857"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=thethimble">thethimble</a> 5 days ago | <a href="item?id=8554857">link</a></span></div><br>
<span class="comment"><font color="#000000">GoGuardian - Los Angeles, CA (Hermosa Beach) - <a href="https://goguardian.com" rel="nofollow">https://goguardian.com</a><p>We're building analytics for Chromebooks for Education! Chromebooks in EDU has been an insanely hot market (72% compound annual growth). We're the first to market with a solution that helps schools understand how their fleet of devices is being used. We've got a small market share now, but have great product-market fit and a great sales pipeline (10% week/week growth).<p>Engineering-wise, we're ingesting tens of millions of events per day from hundreds of thousands of devices. We're in the process of rebuilding our entire event ingestion pipeline (going from PHP+MySQL to Kinesis+Node/KCL+Cassandra+Solr). We've got a team of three engineers (including myself). We're all responsible for everything (frontend, backend, database, deployments, everything). We're looking for someone who wants to make tremendous impact in the organization - making key engineering decision that will impact the company for years to come. We're looking for killer frontend and backend people as well as data scientists (we've got a goldmine of usage data that we haven't run any non-trivial analytics on).<p>We're Pre-Series-A and profitable! We're in the process of raising an A round which will enable us to scale up. If you're interested in an early stage startup that's positioned well for stable growth, please reach out!<p>Hit us up at [email protected]</font></span><p><font size="1"><u><a href="reply?id=8554857&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543565" onclick="return vote(this)" href="vote?for=8543565&dir=up&by=jecjec&auth=487a4f7766089c609c9796b2e9e6b49edc354486&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543565"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=tqn">tqn</a> 8 days ago | <a href="item?id=8543565">link</a></span></div><br>
<span class="comment"><font color="#000000">Luxe - San Francisco, CA - <a href="http://www.luxevalet.com" rel="nofollow">http://www.luxevalet.com</a> - Full Time - Various<p>Hey HN!<p>I'm excited to share the opportunities available at our quickly growing startup. Check out our recent press:<p>CNBC: <a href="http://video.cnbc.com/gallery/?video=3000326377&play=1" rel="nofollow">http://video.cnbc.com/gallery/?video=3000326377&play=1</a><p>WSJ: <a href="http://blogs.wsj.com/digits/2014/10/23/new-valet-app-luxe-eases-parking-nightmares/" rel="nofollow">http://blogs.wsj.com/digits/2014/10/23/new-valet-app-luxe-ea...</a><p>TC: <a href="http://techcrunch.com/2014/10/23/luxe-aims-to-solve-san-franciscans-parking-woes/" rel="nofollow">http://techcrunch.com/2014/10/23/luxe-aims-to-solve-san-fran...</a><p>NPR: <a href="http://www.marketplace.org/topics/tech/parking-valet-demand#.VEqX8M2ERhs.twitter" rel="nofollow">http://www.marketplace.org/topics/tech/parking-valet-demand#...</a><p>To get a real feel for our business, we invite you to try out our service, currently available in SF. Simply email me at thai [at] luxevalet [dot] com and I'll set you up with some free credit.<p>Luxe: A Parking Spot in Your Pocket<p>Luxe removes the pain out of parking through its on-demand valet service. With our mobile app, a driver can request one of our many trained valets to meet her at her destination and park her car. When the customer needs her car back, she can simply use the app to let the valet know and the valet will return it wherever the customer needs it. Our vision is to make circling the block for parking a thing of the past.<p>About The Team<p>The founding team hails from leadership positions at Google, Zynga, Ducati and Tesla. We've assembled an ever-expanding core team of 17, whose diverse backgrounds include the U.S. Marines, Code for America and YC. What unites us is our shared passion for solving complex problems and a commitment to creating a work environment, based on mutual respect for one another.<p>Opportunities: We're currently hiring for the following roles:<p>1) iOS Engineer<p>2) Data Scientist<p>3) Marketing Specialist<p>4) Executive Assistant/Generalist<p>5) Other - We're always looking to meet talented and hungry individuals. If you think you'd be a good fit, let us know.<p>Ready to apply or learn more? Drop us a note at [email protected] with "HN" in the subject line. We promise to get back to you!<p>Thanks,<p>Thai<p>BD @Luxe</font></span><p><font size="1"><u><a href="reply?id=8543565&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8545934" onclick="return vote(this)" href="vote?for=8545934&dir=up&by=jecjec&auth=ad3cc65c3bd6e7aff97767b364b268826ccbb04f&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8545934"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=the_gigi">the_gigi</a> 7 days ago | <a href="item?id=8545934">link</a></span></div><br>
<span class="comment"><font color="#000000">Aclima - <a href="http://www.aclima.io" rel="nofollow">http://www.aclima.io</a> - San Francisco, CA<p>==========<p>Aclima is an early-stage company based in San Francisco that designs and deploys distributed, large-scale sensor networks to empower people with actionable environmental quality data. Our end-to-end solutions collect, process and analyze real-time streaming data from thousands of sensors, enabling a level of environmental awareness that has never been possible before. We believe our technologies can redefine the way we imagine and manage our buildings, communities, and cities, helping us improve our collective well-being. We are looking for passionate engineers to help build, scale, and improve our platform. We have no required list of skills or years of experience. Instead, we’re looking for engineers who are smart and get things done. Our engineering culture values rapid iteration, continuous improvement, and as much automation as is sensible. We work in a relaxed, purpose-driven atmosphere with flexible hours and competitive perks.<p>Positions open:<p>* Full-time Backend Engineer Our stack includes: Python, Git, MariaDB, Cassandra, Nginx, NSQ, Redis, Ansible - solid understanding of functional programming languages, distributed systems<p>* Full-time Frontend Developer - solid understanding of core JavaScript, HTML5 and CSS3 - experience building well-structured web applications - a passion for user-driven interaction design and delightful user experiences - excitement about data visualization, mobile design, and responsive design<p>* Full-time UI/UX Designer - At least 2-3 years of experience who has heavy UX chops and expertise in CSS-based design, peppered with JavaScript-based interaction design/development. - Someone who is excited and passionate about data visualization, mobile design, and responsive design and has strong opinions about all three.<p>* Full-time DevOps Engineer - some experience writing shell and Python scripts - Debian/Ubuntu, Jenkins, Locust, JMeter, Google Cloud/AWS, Ansible experience a plus<p>==========<p>If you’re up for the challenge, contact us: [email protected]<p>Apply directly: <a href="http://boards.greenhouse.io/aclima" rel="nofollow">http://boards.greenhouse.io/aclima</a></font></span><p><font size="1"><u><a href="reply?id=8545934&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544055" onclick="return vote(this)" href="vote?for=8544055&dir=up&by=jecjec&auth=7f0c337199a59c2eae44f00310622a50548d4a89&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544055"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=minichate">minichate</a> 7 days ago | <a href="item?id=8544055">link</a></span></div><br>
<span class="comment"><font color="#000000">FreshBooks - Toronto, Canada - Software Developer (Full Stack)
<a href="http://www.freshbooks.com/jobs/" rel="nofollow">http://www.freshbooks.com/jobs/</a><p>FreshBooks is seeking skilled full stack developers who have experience with web application frameworks and JavaScript frameworks as well as client-side performance optimization. With us, you will help build brand new features and update existing ones in our consumer-facing cloud accounting application. We build a product that helps our users earn their living and we’re proud of that. If you’re committed to great work and great teamwork, and are constantly looking for ways to improve the systems you’re responsible for, we’re dying to meet you.<p>Right now, we’re hiring all the way from junior developers to the architect level. No matter your level of experience, if it’s a natural fit, we have a place for you to shine and grow.<p>We are versatile...<p>Most of our software is written in PHP, Python, and JavaScript. We also use tools and technologies like Ember.js, RabbitMQ, Redis, Elasticsearch, Puppet, and Jenkins CI. We believe in using the best tool for the job (while maintaining a slight bias toward the tools the team knows the best). While we value experience with the tools above, we know that smart developers are great learners, too.<p>We collaborate...<p>We work in an open environment; no cubicles or offices. We closely follow Agile Scrum and rely on collaboration for success. We also collaborate across the office; regular hackoffs are a part of our culture. Developers join forces with coworkers across the company to pitch and prototype projects that improve our product, our culture, or are just plain fun.<p>We ship...<p>Shipping is at the forefront of our engineering practice. We rely on continuous integration and use automated testing to ensure our product is always shippable.<p>We value our people...<p>We recognize and reward ingenious work. We all have real lives, and respect their balance. We all have a voice that is heard throughout the company. We always make time for fun, and have one of the most unique, employee-led cultures out there. Join the FreshBooks choir or a class in the gym, organize a gaming night, teach a dev lunch and learn, or use a paid volunteer day to share your skills with the community.<p>Salaries are competitive and compensation packages include stake in the company.<p><a href="http://www.freshbooks.com/jobs/" rel="nofollow">http://www.freshbooks.com/jobs/</a></font></span><p><font size="1"><u><a href="reply?id=8544055&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8546581" onclick="return vote(this)" href="vote?for=8546581&dir=up&by=jecjec&auth=5d86eaa9e9b7170536e1addf7cd7cac66714560f&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8546581"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=kmano8">kmano8</a> 7 days ago | <a href="item?id=8546581">link</a></span></div><br>
<span class="comment"><font color="#000000">Monetate - Conshohocken, PA (Philly suburbs) [REMOTE or ONSITE] - Will help with relocation to Philadelphia; also remote (Americas timezones preferred, must speak English) Monetate helps digital marketers make their content more relevant. We turn data into action on our clients' sites by doing real-time data analysis and DOM manipulation to put the right experience in front of their users. We’re looking for engineers who want to do highly visible work on great brands and solve tough problems with great coworkers.<p>What we're looking for:<p>- People who like to ship - we're focused on building and shipping great products - if you like to see your work in production quickly you'll see it here. We ship often (every two weeks), and iterate.<p>- Problem solvers who like to code - we take things apart, figure out how they work, then build software to solve our users' problems.<p>- People who like hard challenges - we have great problems across our products - huge data sets, UX, 3rd party Javascript, high volume / low latency APIs - we have no shortage of fun problems to work on.<p>About us:<p>- Founded in 2008<p>- Respect - it's our core value. We have a great team built on trust, and we work well together. Our vacation policy is the same as Netflix (we don't have one). Our technical project teams are self-organizing and have full authority over (as well as responsibility for) the problems they work on.<p>- Open source - Google Closure, Python, AngularJS, Javascript, Pandas, Redis, Hadoop, Mahout, Solr and Lucene - we're open source across our stack<p>- Funded by First Round Capital and OpenView<p>- Market rate salaries<p>We've hired great people from HN before, and we're looking for people not positions. We have people who have joined the team with no background in our primary languages and people from non-traditional backgrounds. Check out our blog at <a href="http://engineering.monetate.com/" rel="nofollow">http://engineering.monetate.com/</a> Send me a message if you have questions or want to apply: karl at monetate dot com</font></span><p><font size="1"><u><a href="reply?id=8546581&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8549574" onclick="return vote(this)" href="vote?for=8549574&dir=up&by=jecjec&auth=c8ce2945d4a9afa099261ae9da1fa562f5bc9f04&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8549574"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=Clairesheng">Clairesheng</a> 6 days ago | <a href="item?id=8549574">link</a></span></div><br>
<span class="comment"><font color="#000000">One of our offices: Shanghai, China<p>We build products at the intersection of technology around data. Lots of data visualization, big data and infrastructure.<p>We work with large organizations on challenging problems (the World Bank, the United Nations, CNN) OR on our own products (mostly developer tools, things like <a href="http://devo.ps" rel="nofollow">http://devo.ps</a> or <a href="http://octokan.com" rel="nofollow">http://octokan.com</a>).<p>We are a multicultural team with French, American, British, Chinese, Korean, Dutch and Finnish colleagues. We are about to settle a third office in Berlin and are looking at remote hiring in Spain and Seoul.<p>We work a lot with Javascript (node.js, AngularJS), Python, occasionally Go and Erlang. Lots of single page apps, APIs and infrastructure automation.<p>We are looking for full-time or interns:<p>- Developers; front-end (HTML5 + Compass + AngularJS), backend (node.js, Python), ops (Python, Go).<p>- Designers; you have design chops, understand technology (HTML/CSS...) and do more than nice pictures (content strategy, color theory, ...).<p>- Strategist; you can quickly immerse yourself in a new field of knowledge, have a knack for data and are quick at recognizing patterns. You are a jack-of-all-trades that can think a solution and get it shipped, either alone or with a team.<p>- Marketing; you have what it takes to grow a brand or product online and understand how to leverage online and offline tools to get there.<p>- Business Development; if you are in Washington DC, Berlin or Paris, understand enough of our space and would like to help us grow our services, shoot us an email.<p>Drop me a line at [email protected], or go to <a href="http://wiredcraft.com/careers.html" rel="nofollow">http://wiredcraft.com/careers.html</a></font></span><p><font size="1"><u><a href="reply?id=8549574&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543879" onclick="return vote(this)" href="vote?for=8543879&dir=up&by=jecjec&auth=7e8d3a38e55a45c2176b011d3266e715bf864691&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543879"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=samuelbrin">samuelbrin</a> 8 days ago | <a href="item?id=8543879">link</a></span></div><br>
<span class="comment"><font color="#000000">Robinhood -- <a href="https://www.robinhood.com" rel="nofollow">https://www.robinhood.com</a> -- Palo Alto, CA ([email protected])<p>Robinhood started with a simple idea: using technology, we can re-think the way financial services operate. We cut out the fat that makes other financial services costly — legacy technology, hundreds of storefront locations, and paper-based accounting. And as a result, we radically reduce costs. Our team members have a diverse set of academic and industry experiences from Stanford, MIT, Caltech, Pixar, Oracle, ETrade, Bungie and Facebook.<p>* iOS Engineer - We’re looking for an experienced iOS engineer to help build the Robinhood iOS app, for both iPhone and iPad. This is truly a next-generation trading app that takes advantage of all the newest iOS 7 and 8 features, while featuring a highly custom UI.<p>* Android Engineer - We’re looking for an experienced Android engineer to lead development of the Robinhood Android app. You will build a highly custom user experience while staying consistent with design guidelines for the upcoming L release. An ideal candidate will have excellent product sense, extensive experience dealing with device fragmentation, and knowledge of retrofit, volley, or similar network communication libraries.<p>* Web Engineer - We are seeking an experienced frontend web engineer to help build the Robinhood web app, for both desktop and mobile. The product features real-time, live-updating data and context-dependent interfaces, so you’ll be building a very rich client-side web application.<p>* Backend Engineer - Robinhood is looking for an experienced backend engineer to help build our brokerage web API. This includes systems such as market data, trading, accounting, authentication, and security. An ideal candidate would have previous experience designing RESTful APIs and the backend systems that implement them.<p>* Senior Release Engineer - Robinhood is looking for an experienced release engineer to develop systems and processes to deploy and monitor our brokerage software. Technologies that we use include AWS, SaltStack, Python, Django, Redis, and PostgreSQL. Experience with SaltStack or comparable alternative (Chef, Puppet, Ansible, etc) preferred. DevOps for those Ctrl+F'ing for keywords.<p>Please send all inquiries/resumes to [email protected]<p>Robinhood Markets, Inc and its affiliates are equal opportunity employers.</font></span><p><font size="1"><u><a href="reply?id=8543879&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8543898" onclick="return vote(this)" href="vote?for=8543898&dir=up&by=jecjec&auth=204c1ee52cb03b6e9d7d5b9abfdfeb435483445d&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543898"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=justhw">justhw</a> 7 days ago | <a href="item?id=8543898">link</a></span></div><br>
<span class="comment"><font color="#000000">We gave you our email when you launched and never heard back. What is up? Or did you setup a fake landing page to gauge interest and then started on the idea? Curious.</font></span><p><font size="1"><u><a href="reply?id=8543898&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="80"></td><td valign="top"><center><a id="up_8544626" onclick="return vote(this)" href="vote?for=8544626&dir=up&by=jecjec&auth=be1464a0712011b21e55b809d733daf51ccb0136&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544626"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=samuelbrin">samuelbrin</a> 7 days ago | <a href="item?id=8544626">link</a></span></div><br>
<span class="comment"><font color="#000000">Public launch is early '15. We are in private beta right now and getting great feedback from our users. You should have received a confirmation email with a link to your place in the wait list. Please let me know if that wasn't the case, thanks for your feedback!</font></span><p><font size="1"><u><a href="reply?id=8544626&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544748" onclick="return vote(this)" href="vote?for=8544748&dir=up&by=jecjec&auth=508ea2bc924bc480044f8348cbda30d33274a15f&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544748"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=tair">tair</a> 7 days ago | <a href="item?id=8544748">link</a></span></div><br>
<span class="comment"><font color="#000000">Ruby developer * REMOTE * Deveo * <a href="https://deveo.com" rel="nofollow">https://deveo.com</a><p>We're looking for a talented, experienced, full-time Ruby developer to help us with design, implementation and testing of core Deveo product.<p>Here is who we are looking for:<p>You’re the type of person who is passionate about creating simple and practical solutions that are efficient and pleasant to use. You're a coder, enthusiast, mentor, and tech evangelist. You are also an ambitious person with analytical skills, who is ready to take initiatives, but also listens to others. We also expect you to understand the principles of DevOps, enjoy creating developer tools, and willing to learn new technologies.<p>An ideal candidate will have:<p>* Strong Ruby programming skills<p>* Created Rails, Sinatra, and Ruby CLI applications<p>* Experience in deploying Ruby applications<p>* Solid knowledge of SQL and NoSQL databases<p>* Experience building simple, well-designed APIs<p>* Optimized performance of Ruby applications<p>* Tested with Rspec, Test::Unit, Capybara<p>* Working knowledge of C<p>* Familiarity with Linux operating systems<p>* Worked remotely in distributed team<p>* Strong written and communication skills<p>Bonus points for:<p>* Experience building real-time applications and APIs<p>* Open source contributions<p>* Past startup experience<p>* Familiarity with Node.js<p>Interested?<p>We offer possibilities for career progression in the company. You will have an opportunity to make a difference in an innovative bootstrapping tech startup. You will be able to work from anywhere and anytime, as long as you can make some of your working time overlap with business hours in the GMT+3 time zone. Read more about our working culture and hiring process at <a href="https://coderwall.com/team/deveo" rel="nofollow">https://coderwall.com/team/deveo</a>.<p>The perfect candidate has a passion for craft and a resume to back it up. Please send us links to your works, Github, Blog or any other resources you are proud of. Also, please attach a cover letter telling about yourself and why do you want to work for Deveo.<p>Apply for this job
<a href="https://deveo.workable.com/jobs/23629/candidates/new" rel="nofollow">https://deveo.workable.com/jobs/23629/candidates/new</a></font></span><p><font size="1"><u><a href="reply?id=8544748&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543017" onclick="return vote(this)" href="vote?for=8543017&dir=up&by=jecjec&auth=5bb9f18d48d1a78e25e9a807d0e0139458cb4d8c&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543017"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=bowmanb">bowmanb</a> 8 days ago | <a href="item?id=8543017">link</a></span></div><br>
<span class="comment"><font color="#000000">Backend Developer - Canopy Apps - New York, NY<p>Canopy helps 30 million people in the US who do not speak English to gain access to better healthcare. We are winners of awards from the National Institutes of Health and the City of New York to tackle this problem.<p>Join us as the 3rd developer and 7th employee in our NYC office.<p>Some of your first projects will include:<p>* building a system to open access to our large library of medical phrases translated into 15 languages<p>* building a system to crowdsource high quality content from our users to help grow this library<p>* building a system to aggregate data and facilitate data analysis<p>You will influence the technologies we choose to power our backend.<p>Work is onsite in our NYC office, with flexible work from home benefits. Compensation is based on experience, with equity in company available.<p>If you're interested, please email [email protected].</font></span><p><font size="1"><u><a href="reply?id=8543017&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8551434" onclick="return vote(this)" href="vote?for=8551434&dir=up&by=jecjec&auth=5743b83d7204f2ee005a7291fda15ef04af68631&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8551434"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=BMarkmann">BMarkmann</a> 6 days ago | <a href="item?id=8551434">link</a></span></div><br>
<span class="comment"><font color="#000000">Counterpoint Consulting (<a href="http://c20g.com/" rel="nofollow">http://c20g.com/</a>)
Location: Vienna, VA (near Washington, DC)<p>Counterpoint creates sustainable competitive advantage for our clients through business and workforce automation solutions. We create software which lets machines deal with administrivia while enabling people to focus on the parts of their work that matter most.<p>We are looking to hire new software developers and consultants who are passionate about technology, who relish the opportunity to work in a dynamic, small company culture and who have a strong entrepreneurial spirit.<p>Associate Consultant:<p>Experience Level: 0-3 yrs<p>JOB RESPONSIBILITIES:<p>Work directly with our customers to translate business needs into technical solutions
Analyze business problems
Work independently or cooperatively within software development teams<p>REQUIREMENTS:<p>* Demonstrated record of excellence inside and outside of the classroom
* Software development experience or interest in pursuing a career in technology<p>(Senior) Consultant<p>Experience Level: 3-6 yrs<p>NON-TECHNICAL JOB RESPONSIBILITIES:<p>* Work directly with our customers to translate business needs into technical solutions
* Analyze business problems
* Work independently or cooperatively within software development teams<p>TECHNICAL EXPERIENCE REQUIREMENTS:<p>* Java, Java Web Frameworks and / or .NET professional development experience
* Web Development Technologies and Libraries (HTML, JS, CSS, jQuery)
* Relational Databases & SQL
* BPM development experience (esp. Appian, Cordys, Metastorm, Activiti)</font></span><p><font size="1"><u><a href="reply?id=8551434&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8553683" onclick="return vote(this)" href="vote?for=8553683&dir=up&by=jecjec&auth=bf492b04fac53e842314b3c2abcaf5ae701f97d4&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8553683"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=OpenDrapery">OpenDrapery</a> 5 days ago | <a href="item?id=8553683">link</a></span></div><br>
<span class="comment"><font color="#000000">I hope the term 'Administrivia' was intentional.</font></span><p><font size="1"><u><a href="reply?id=8553683&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8555077" onclick="return vote(this)" href="vote?for=8555077&dir=up&by=jecjec&auth=d5b4e4b98ec78fb645985fc96dc0c3b7f43ffec0&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8555077"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=bgriggs1">bgriggs1</a> 5 days ago | <a href="item?id=8555077">link</a></span></div><br>
<span class="comment"><font color="#000000">Knack - <a href="http://knackhq.com" rel="nofollow">http://knackhq.com</a> - REMOTE
Knack makes it easy for anyone to build online database apps.
We're growing rapidly and looking for a lead developer, AWS systems engineers, and front end designer/developer:
<a href="http://knackhq.com/jobs" rel="nofollow">http://knackhq.com/jobs</a>
We're focused on building a profitable long-term business with a product our customers love.
We can’t compete with Google on start-up perks, but we can more than compete if you’re looking to sink you teeth in and have a major impact:
* Impact: we’re expecting anyone that joins to come in and have a major impact. We’re small enough that every customer interaction, every marketing spend, every line of code has an over-sized impact.
* Equity: we don’t need hired-guns, we need team members. We want to share our long-term vision and success, and make sure you have equity in that journey.
* Autonomy: we don’t look for specific roles, we look for good fits. You’ll be able to contribute with your strengths and determine the projects you want to drive forward.
* Flexibility: supporting our chosen lifestyles is major part of our success equation. Join a remote team and create your own hours. Work how and where you want to.
* Culture: we work hard, but also don’t take ourselves too seriously and make sure we have a great time along the way.</font></span><p><font size="1"><u><a href="reply?id=8555077&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8546212" onclick="return vote(this)" href="vote?for=8546212&dir=up&by=jecjec&auth=ef170e2523fd454ae69a7b5c854815167a5e0ad4&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8546212"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=tianyicui">tianyicui</a> 7 days ago | <a href="item?id=8546212">link</a></span></div><br>
<span class="comment"><font color="#000000">Jane Street - New York City, London, Hong Kong - Software Developer (Functinoal Programming)<p>(I personally work at the Hong Kong office. Feel free to get in touch via [email protected] if you have any questions.)<p>Jane Street is a technology-focused proprietary trading firm. We are looking to hire great software developers with an interest in functional programming. OCaml, a statically typed functional programming with similarities to Haskell, Erlang, F# and SML, is our language of choice. We’ve got the largest team of OCaml developers in any industrial setting, and probably the world’s largest OCaml codebase. We use OCaml for running our entire business, supporting everything from research to systems administration to trading systems. If you’re interested in seeing how functional programming plays out in the real world, there’s no better place.<p>The atmosphere is informal and intellectual. There is a focus on education, and people learn about software and trading, both through formal classes and on the job. The work is challenging, and you get to see the practical impact of your efforts in quick and dramatic terms. Jane Street is also small enough that people have the freedom to get involved in many different areas of the business. Compensation is highly competitive, and there’s a lot of room for growth.<p>You can learn more about Jane Street and our technology from our main site, janestreet.com. You can also look at a a talk given at CMU about why Jane Street uses functional programming (<a href="http://ocaml.janestreet.com/?q=node/61" rel="nofollow">http://ocaml.janestreet.com/?q=node/61</a>) and our programming blog (<a href="http://ocaml.janestreet.com" rel="nofollow">http://ocaml.janestreet.com</a>)<p>(More in <a href="http://careers.stackoverflow.com/jobs?searchTerm=jane+street" rel="nofollow">http://careers.stackoverflow.com/jobs?searchTerm=jane+street</a> and <a href="https://www.janestreet.com/join-jane-street/" rel="nofollow">https://www.janestreet.com/join-jane-street/</a>)</font></span><p><font size="1"><u><a href="reply?id=8546212&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543077" onclick="return vote(this)" href="vote?for=8543077&dir=up&by=jecjec&auth=9e2213565d2781d582d0155063c8ac8f8de929a5&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543077"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=johnnyg">johnnyg</a> 8 days ago | <a href="item?id=8543077">link</a></span></div><br>
<span class="comment"><font color="#000000">Houston, TX - Senior Code Base Quality Developer - Full Time<p>CPAP.com sells CPAP equipment for the treatment of Sleep Apnea. We help people breathe.<p>We are a LAMP stack shop rolling out and integrating git and jenkins to our code base and work flows.<p>We are more broadly wish to have dedicated positions focused on code base refactor, re-organization and cleanliness in the pursuit of coder happiness.<p>If you have done this before in another organization and can help us avoid common pitfalls and false starts, we would like to speak to you.<p>About Us: <a href="http://www.cpap.com/cpap-web-employees.php" rel="nofollow">http://www.cpap.com/cpap-web-employees.php</a><p>About Me: <a href="http://www.cpap.com/about/johnnygoodman" rel="nofollow">http://www.cpap.com/about/johnnygoodman</a><p>To talk further and fizzbuzz johnny .dot goodman @at cpap dot. com</font></span><p><font size="1"><u><a href="reply?id=8543077&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544257" onclick="return vote(this)" href="vote?for=8544257&dir=up&by=jecjec&auth=cf69a5e3308279063b5f9412ef71670a90bd4cb4&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544257"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=snowmaker">snowmaker</a> 7 days ago | <a href="item?id=8544257">link</a></span></div><br>
<span class="comment"><font color="#000000">Scribd (YC '06), San Francisco - VISA, FULL-TIME, and INTERN are all welcome<p>Scribd ("Netflix for eBooks", top 100 website, 50 people) is hiring talented hackers of all kinds to help us build the library of the 21st century.<p>We've hired EIGHT full-time people and TONS of interns from these "Who is Hiring" threads ... it really works!<p>We're looking for people who want to work with:<p>* Ruby on Rails (we're the #2 largest rails site, after Twitter)<p>* Javascript (well, we use Coffeescript)<p>* iOS OR Android (we're a top 10 eBook app with more reviews than Wikipedia, with a small mobile team)<p>* Machine Learning / data mining / recommendations - think Netflix prize, but for books!<p>* Big data and web infrastructure - we're big users of hive, impala, and hadoop<p>* Product manager and design (UI or UX) roles too<p>* Internships: junior standing or above for all areas of engineering. We hire several interns every summer and year-round.<p>That said, we care way more about your personality and general hacking skills then what languages you've used so far, so if you haven't used these but want to break into mobile or web development, this could be a good opportunity for you. We've hired people from these threads with everywhere from 0 to 10 years of experience.<p>We're profitable, very well funded and have a really fun office environment (go-karts + a rock climbing wall!). Scribd alumni have gone on to found 4 other YCombinator companies, more than from any other startup. We think this says something about the kind of people that we like to hire, and we love hiring people with entrepreneur and startup ambitions. We are also always looking for international people interested in moving to the US and can help you secure a visa.<p>You can read more about our "Netflix for Books" service here <a href="http://wrd.cm/1dJquzz" rel="nofollow">http://wrd.cm/1dJquzz</a> or check out our tech blog at <a href="http://coding.scribd.com" rel="nofollow">http://coding.scribd.com</a><p>More info is at <a href="http://www.scribd.com/jobs" rel="nofollow">http://www.scribd.com/jobs</a>, but as a HN user, feel free to apply directly by emailing me at jared at scribd.com.</font></span><p><font size="1"><u><a href="reply?id=8544257&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8544537" onclick="return vote(this)" href="vote?for=8544537&dir=up&by=jecjec&auth=d5421a5f69fdf3fb99373a2fdc54d57878b6a57b&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544537"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=sid6376">sid6376</a> 7 days ago | <a href="item?id=8544537">link</a></span></div><br>
<span class="comment"><font color="#000000">I sent you an email but did not hear back from you.</font></span><p><font size="1"><u><a href="reply?id=8544537&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543528" onclick="return vote(this)" href="vote?for=8543528&dir=up&by=jecjec&auth=4fe7014943d7bf3e901754f550c10d6f0b6554f9&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543528"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=alexthornton">alexthornton</a> 8 days ago | <a href="item?id=8543528">link</a></span></div><br>
<span class="comment"><font color="#000000">Senior Front End Software Engineer
Locus Energy (locusenergy.com): San Francisco, CA<p>Locus Energy builds software to help manage and optimize solar PV systems.<p>About you: You love building slick user-facing apps. You’re passionate about sustainable energy and want to play a part of pushing our society in that direction. Nothing would excite you more than wedding your engineering prowess with your dreams of clean, green energy. The screen is your easel as you paint delightful UX and data visualizations using HTML, CSS and JavaScript. You’re fluent in RESTful APIs and JSON. You write a failing test before fixing a bug. You are thoughtful, curious and ask questions when you don’t understand. You take ownership of your responsibilities and see them through to the entire development lifecycle from design to maintenance.<p>About us: We’re dedicated to the proliferation of sustainable energy solutions. To that end, we build software to monitor, analyze and manage the performance of tens of thousands of solar power systems. We’re a mature startup with a close-knit team that is greater than the sum of its parts. Our organization is mature enough to offer some structure while still leaving plenty of opportunities to make your mark. We’re not perfect but constantly improving. We value folks who offer a new perspective and play nicely with others.<p>Job Responsibilities:
- Design and build dynamic end-user interfaces (including data visualization), using Javascript, CSS & HTML
- Be a key part of the software development process, designing scalable front end systems, and working together with an existing development team
- Provide input on emerging software technologies that the company could incorporate into the overall plan<p>Skills & Requirements:
- Expertise in JavaScript, HTML5, CSS3, and general web technologies
- Expert in Angular.js. Knowledge of other JavaScript frameworks is a plus.
- Experience with RESTful APIs
- Knowledge of current W3C standards
- Having a github or bitbucket for review
- Nice to have:
-- Experience working with server-side technologies (e.g., Spring MVC, Django)
-- JavaScript unit testing experience
-- Knowledge of JavaScript engine internals and/or performance tuning
-- Experience with SASS or LESS
UI/UX design and experience<p>Contact [email protected] to apply.</font></span><p><font size="1"><u><a href="reply?id=8543528&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8545420" onclick="return vote(this)" href="vote?for=8545420&dir=up&by=jecjec&auth=be490cc28860f8bc3a58242f22174873d8dfa17c&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8545420"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=JimboOmega">JimboOmega</a> 7 days ago | <a href="item?id=8545420">link</a></span></div><br>
<span class="comment"><font color="#000000">Passare - San Francisco
Software Engineer
Thoughtful Leadership<p>Are you a thoughtful software engineer who enjoys working on agile, effective projects? Do you have an entrepreneurial streak coupled with a commitment to hitting your benchmarks? Do you want to work with a prolific team? If your mind set matches ours, we want to talk to you!<p>About Us<p>Passare is a funded early stage startup. We seek engineers to grow our software team on an exciting, green-field project to deliver an industry-changing B2B application, followed by a B2C ‘social’ component that will affect the legacy of peoples’ lives. Applying Agile development practices, coupled with Ruby-on-Rails, and using the best tools available, we are quickly building a great product and a great team.<p>About You<p>We’re interested in finding the right person. It’s better to find someone with the right attitude and aptitude; we’ll invest in your skills if it’s not a perfect match. We expect a positive attitude towards difficult challenges, whether code or schedule based. You must be self-motivated, enjoy working in a team environment, and love building something that will change things in a positive way.<p>Required Skills / Experience<p>• 2+ years professional experience, preferably at an early stage company
• Enough experience with Ruby on Rails so you can hit the ground running
• Experience with one or more applications in a production environment with real customers
• Working knowledge of agile development practices • Understanding of the basics: OO software, Linux, SQL, NoSQL, and basic sysadmin skills
• Experience with one or more cloud computing platforms
• Excellent communication skills, both written and verbal
• A computer science degree or equivalent experience
Bonus – One of the following
• Delivery of one or more mobile apps, for iOS or Android
• Knowledge of database scaling • Web analytics experience
Benefits<p>• Competitive compensation plan including equity
• Great location in San Francisco’s financial district with easy access to BART
• Medical and dental benefits<p>This is a full time, salaried position.
Contact [email protected]</font></span><p><font size="1"><u><a href="reply?id=8545420&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543457" onclick="return vote(this)" href="vote?for=8543457&dir=up&by=jecjec&auth=1594d88038e651768ff989c26869261b34e37cc1&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543457"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=jennifer_scroll"><font color="#3c963c">jennifer_scroll</font></a> 8 days ago | <a href="item?id=8543457">link</a></span></div><br>
<span class="comment"><font color="#000000">Head of Technology - F/T | Scroll Media, Inc. | Mumbai, India
-----------------------------------------<p>Help power the next generation of publishing by joining Scroll Media, a venture-backed digital media company focused on the intersection of editorial and technology. Our first offering is a digitally-native news publication, <a href="http://scroll.in/" rel="nofollow">http://scroll.in/</a>, which brings readers top political and cultural news in an elegant, responsive newsfeed.<p>Next up in the pipeline are a series of products that use robust algos and stunning design to efficiently create publications on niche topics like entrepreneurship, healthcare, design, and more! You can learn more about our core tech here (<a href="http://blog.scroll.in/tech/" rel="nofollow">http://blog.scroll.in/tech/</a>) and our machine learning projects here (<a href="http://blog.scroll.in/scroll-machine/" rel="nofollow">http://blog.scroll.in/scroll-machine/</a>).<p><i>What we're looking for</i>
The Head of Technology will lead the planning, engineering, and execution of Scroll’s product development plan. S/he will drive the conceptualization and day-to-day management of simultaneous products, analytics, and a small (but growing) team of engineers. S/he is responsible for delivering finished products that meet design and development timelines, performance, quality and cost specifications.<p>Ideal candidate should demonstrate the following:
• The ability to contribute to, drive, and deliver on the company’s product roadmap
• Fluency in Python, JavaScript; AngularJS a major plus
• Capacity to dissect long-term plans into manageable tasks, and delegating those tasks based on skill matching
• Excellent communication skills and ability to interact with all levels of engineers
• 5+ years of experience building, directing, and motivating teams of engineers
• A bachelor’s degree in engineering, computer science, or related field<p><i>Who we are</i>
We are a tiny team of enthusiastic newshounds, culturists, and tech aficionados. Our team consists of a serial entrepreneur, a book author, alums from MIT, Harvard, McKinsey, The Wall Street Journal, Yahoo, ex-editors from reputed Indian newspapers and people with great experience building multiple startups.</font></span><p><font size="1"><u><a href="reply?id=8543457&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544223" onclick="return vote(this)" href="vote?for=8544223&dir=up&by=jecjec&auth=d6d321cd53f8aa2055aaee8f7b7d3221b633ed55&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544223"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=Synergyse">Synergyse</a> 7 days ago | <a href="item?id=8544223">link</a></span></div><br>
<span class="comment"><font color="#000000">Synergyse // Fullstack Software Engineer // Toronto, Canada // Local or Remote // Fulltime // <a href="http://synergyse.com" rel="nofollow">http://synergyse.com</a><p><a href="https://careers.stackoverflow.com/jobs/61050/fullstack-software-engineer-synergyse" rel="nofollow">https://careers.stackoverflow.com/jobs/61050/fullstack-softw...</a><p>Synergyse creates highly interactive and measurable training. We started by teaching everyone how to use Google Apps proficiently and it worked really well. We are working on hard problems in big data, HTML5, media delivery and real time technology. Our backend technology and web runs on the Google App Engine. Our frontend uses the Chrome Extension, jQuery, Google Closure. We use some of the latest technologies across the board!<p>Synergyse is based in Toronto and we managed to be profitable within a couple of months of starting it. Our clients tend to be in the enterprise and education world, but our technology is consumer facing and fun. It’s the best of both worlds. We are seeking a highly talented Software Engineer who's able to take on and deliver important parts of the software to users.<p>Why you should join us<p>• Ability to define product and engineering as one of our first hires<p>• Work with a highly motivated and talented founding team
Be a part of a business that has a good business model, good revenue stream, and makes flagship technology<p>• Flexible and casual work environment with opportunity to work remotely<p>• Competitive compensation ($100k-$200k), equity (0.5%-1.5%) and full benefits<p>What we’re looking for<p>• Software Engineer with a full-stack experience<p>• Experience with cloud technologies (GAE, AWS, or Azure)<p>• Experience with Javascript (experience with Chrome Extensions is a plus)<p>• Ability to solve difficult technical problems<p>• Ability to lead and run projects<p>• Degree in Computer Science or equivalent, or 4+ years of professional engineering experience<p><a href="https://careers.stackoverflow.com/jobs/61050/fullstack-software-engineer-synergyse" rel="nofollow">https://careers.stackoverflow.com/jobs/61050/fullstack-softw...</a></font></span><p><font size="1"><u><a href="reply?id=8544223&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8570383" onclick="return vote(this)" href="vote?for=8570383&dir=up&by=jecjec&auth=329ae72fa1fa9f34ee0687003027445f9bd4d131&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8570383"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=bkovacev">bkovacev</a> 2 days ago | <a href="item?id=8570383">link</a></span></div><br>
<span class="comment"><font color="#000000">How long is the selection process? I have applied, but have not gotten a reply yet.</font></span><p><font size="1"><u><a href="reply?id=8570383&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8556596" onclick="return vote(this)" href="vote?for=8556596&dir=up&by=jecjec&auth=a5db72780e2c4891d33ec61f4853f33f5f7d12f0&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8556596"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=gsiener">gsiener</a> 5 days ago | <a href="item?id=8556596">link</a></span></div><br>
<span class="comment"><font color="#000000">Pivotal Labs - New York, Chicago, Seattle, Los Angeles, London, Toronto
Job Title: Senior Product Manager (Consultant)<p>Pivotal Labs now offers Product Management services to our clients. We serve as interim product managers for clients who are looking to build successful products quickly. We work closely with founders, entrepreneurs, designers, engineers, and customers to ensure the right product is defined, prioritized, and built.<p>Responsibilities:<p>- Partner with clients to understand client goals and product vision
- Collaborate with the developers and designers to prioritize, plan, and deliver working software
- Enable clients to practice agile development and lean methodologies
- Help improve the product practice at Pivotal Labs<p>Desired Skills & Experience:
- Ability to work collaboratively with others
- Ability to navigate complex decision making
- Strong leadership and communication skills
- Previous success working with an agile development team
- Experience with defining and prioritizing product features
- Background in design or software development a plus<p>I'm the Director of Product Management at Labs -- send me a cover letter/resume at [email protected]</font></span><p><font size="1"><u><a href="reply?id=8556596&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543630" onclick="return vote(this)" href="vote?for=8543630&dir=up&by=jecjec&auth=6b204507a34eb21b6c52889e7c8f8096f8132fac&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543630"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=sqs">sqs</a> 8 days ago | <a href="item?id=8543630">link</a></span></div><br>
<span class="comment"><font color="#000000">✱ Sourcegraph - San Francisco (SoMa, 2nd & Howard) - Full-time<p>Sourcegraph is building a collaboration app for programmers and dev teams, with intelligent code search, review, and analysis at its core. Google, Facebook, and Microsoft devs already rely on internal tools similar to Sourcegraph, and we’re bringing them to every other company and programmer in the world. Thousands of developers each week use Sourcegraph for code search, review, and usage examples at <a href="http://sourcegraph.com" rel="nofollow">http://sourcegraph.com</a>.<p>Just like GitHub, Sourcegraph is always free for open source. But we’re starting to work with a hundreds-long waiting list of customers who have signed up to use Sourcegraph on their internal company codebases (which is how we’ll make money).<p>We’re looking for outstanding generalist engineers who will help build all parts of Sourcegraph: the distributed build workers (Go+Docker), the web app and API (Go+React+PostgreSQL), the git/hg data store (<a href="https://sourcegraph.com/github.com/sourcegraph/vcsstore" rel="nofollow">https://sourcegraph.com/github.com/sourcegraph/vcsstore</a>), and our source code analysis engine (open source for Java/Go/Python/Ruby/JavaScript at <a href="https://srclib.org/" rel="nofollow">https://srclib.org/</a>).<p>You’ll join our team of 4 (ex-Stanford/Google/Palantir/top creative agency/Hacker School) at our spacious, sunny office in SoMa (SF) and work in a culture that values respect, our users, high-quality products, clean code, good tests, frequent deploys, and open-source code. We’re well funded, have a mandatory vacation policy, cater all meals, offer generous comp with equity, and provide lots of other great benefits.<p>We think that someday, virtually all developers and teams will be using Sourcegraph for code search and review. Try it out at <a href="https://sourcegraph.com" rel="nofollow">https://sourcegraph.com</a>, and join us to make it happen: [email protected] (more info at <a href="http://themuse.com/companies/sourcegraph" rel="nofollow">http://themuse.com/companies/sourcegraph</a>).<p>- Quinn (co-founder, [email protected])</font></span><p><font size="1"><u><a href="reply?id=8543630&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8563596" onclick="return vote(this)" href="vote?for=8563596&dir=up&by=jecjec&auth=cb2f9279127a5b3743a95ec7f935b157e5b47ff8&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8563596"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=annalewis7">annalewis7</a> 3 days ago | <a href="item?id=8563596">link</a></span></div><br>
<span class="comment"><font color="#000000">Viget - Durham, NC and Boulder, CO - Rails Developer INTERN<p>As a software development intern, you'll develop web applications using Ruby and the Rails framework. You'll build and launch several applications, starting with a simple blog and culminating with your own custom creation. You'll embrace test-driven development—that is, writing tests for all functionality before writing the code itself. You'll join in monthly developer meetings, hack nights, and pair programming. You'll take part in meetings with our clients to see how development expectations are defined for projects from the outset. Throughout the summer, you'll meet weekly with our Senior Developers to discuss your progress.<p>Learn More and Apply: viget.com/internships<p>Viget is an Equal Opportunity Employer.</font></span><p><font size="1"><u><a href="reply?id=8563596&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8554462" onclick="return vote(this)" href="vote?for=8554462&dir=up&by=jecjec&auth=ae013e36e077cce81461c5f7525b9d480374c109&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8554462"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=soundandfeury">soundandfeury</a> 5 days ago | <a href="item?id=8554462">link</a></span></div><br>
<span class="comment"><font color="#000000">Location: Atlanta, GA<p>Company: Experience ( <a href="http://www.expapp.com/" rel="nofollow">http://www.expapp.com/</a> )<p>Looking for devs of all shapes and sizes.<p>We are a group of ~40 sports and music fans that believe every fan at a live event should feel like a VIP. We currently work with over 160 sports teams and concert venues to bring amazing experiences to fans across the country. Our passion is building fantastic (and award winning<i></i>) products that both fans and teams love.<p>We have some big and interesting technical problems in front of us. How do you determine the market price for an upgrade such that you maximize both the number of fans moved and the revenue generated per game? How do you predict who will and will not attend the game and allow for fluid seating at an event?<p>Some technologies we use: Groovy/Grails, PostgreSql, Redis, BackboneJS, etc. Experience with any of these is not required. We believe a good dev can pick up tools as necessary. We move fast, and we love new challenges and finding the right solution for them.
Contact me directly at: matt [at] expapp.com<p><i></i> Sports Business Journal - Best In Technology (<a href="http://www.sportsbusinessdaily.com/SB-Blogs/On-The-Ground/2014/05/0521-Technology.aspx" rel="nofollow">http://www.sportsbusinessdaily.com/SB-Blogs/On-The-Ground/20...</a>)</font></span><p><font size="1"><u><a href="reply?id=8554462&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8558621" onclick="return vote(this)" href="vote?for=8558621&dir=up&by=jecjec&auth=53530eeb7a5010e09d23584da64462a2e907f550&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8558621"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=DLarsen">DLarsen</a> 4 days ago | <a href="item?id=8558621">link</a></span></div><br>
<span class="comment"><font color="#000000">Connexity - Camarillo, CA (Los Angeles area)<p>We're hunting for a Rails Developer to continue to build out our online advertising platform. We work at a scale where seemingly "small" improvements can have a big impact. In the last 24 hours, we served over 60 million impressions and processed over 6 billion total transactions.<p>You'd take ownership of the Rails app, which is the primary means of managing hundreds of campaigns running through our platform. This role is a great way to learn advertising tech as well as other tools. You'd get exposure to Redis, Hbase, PostgreSQL, and Scala. In other words, this isn't just a boring, run-of-the-mill CRUD app.<p>Our team is sharp and works well together. While we enjoy perks such as paid lunch and unlimited vacation, the culture of our team recognizes and respects the importance of your non-work life. Also, Ventura county is a pretty nice place to live/work.<p>Unless you prefer to start with a HR-oriented chat, you can reach me (a senior dev on the team) at [email protected]. Informal inquiries are great.</font></span><p><font size="1"><u><a href="reply?id=8558621&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8551955" onclick="return vote(this)" href="vote?for=8551955&dir=up&by=jecjec&auth=11abe48a94f32f7e178b77a8392335cc1946917d&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8551955"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=darrenkopp">darrenkopp</a> 6 days ago | <a href="item?id=8551955">link</a></span></div><br>
<span class="comment"><font color="#000000">DevResults (<a href="http://devresults.com" rel="nofollow">http://devresults.com</a>) Location: Washington, DC + Remote<p>DevResults makes international development, grant-making, humanitarian assistance, and disaster relief programs more effective. It's a web-based tool for monitoring & evaluation, mapping, project management, and collaboration.<p>REQUIREMENTS:<p>* You've spent at least a couple of years building web applications using ASP.NET, jQuery and SQL Server.<p>* You love to write code, and you can also work directly with customers. You're a self-starter who's able to work independently. You don't mind working really, really hard.<p>* Although you won’t necessarily travel much in the long term, you’ll may need to do some international travel in order to meet our real-world users.<p>Full Details: <a href="http://devresults.com/en/p/jobs" rel="nofollow">http://devresults.com/en/p/jobs</a><p>If possible it'd be great if you would apply via StackOverflow Careers since it's easier to manage (<a href="http://careers.stackoverflow.com/jobs/72264/growing-profitable-startup-seeks-net-sql-devresults" rel="nofollow">http://careers.stackoverflow.com/jobs/72264/growing-profitab...</a>) but you can also email me directly at [email protected]. Feel free to mention that you came from who's hiring when posting via StackOverflow Careers as well.</font></span><p><font size="1"><u><a href="reply?id=8551955&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8554179" onclick="return vote(this)" href="vote?for=8554179&dir=up&by=jecjec&auth=9e57ed937fa068e4bf0cc5f1122648bf59c0fea4&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8554179"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=Theranos">Theranos</a> 5 days ago | <a href="item?id=8554179">link</a></span></div><br>
<span class="comment"><font color="#000000">Theranos - Palo Alto<p>Visit a lab for a Doctor’s appointment recently? Two vials of blood is a lot isn't it? Theranos is looking to completely redefine healthcare by solving speed and accuracy issues of current lab testing by combining SW engineering and life sciences using 1/1000 less blood than what is typically drawn today; our process have results in Doctors’ hands in as little as 2 hours allowing them to provide significantly more accurate treatments in a timely manner.<p><a href="http://www.healthcaredive.com/news/theranos-the-new-lab-diagnostics-firm-that-has-walgreens-attention/275424/" rel="nofollow">http://www.healthcaredive.com/news/theranos-the-new-lab-diag...</a><p>An advanced stage startup, Theranos primary stack is .Net - We are looking for engineers who want to make a positive impact in healthcare. Also looking for embedded, Senior iOS & Android developers.<p>VISA & Relo assistance (for those already in the US) - Sorry No remote – No International Relocation.<p>What’s it like working @ Theranos? <a href="http://vimeo.com/107759726" rel="nofollow">http://vimeo.com/107759726</a><p>For more about each position: <a href="http://www.theranos.com/careers/software-development" rel="nofollow">http://www.theranos.com/careers/software-development</a><p>email michaelw at theranos dot com</font></span><p><font size="1"><u><a href="reply?id=8554179&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544049" onclick="return vote(this)" href="vote?for=8544049&dir=up&by=jecjec&auth=b8354e73b1d55e916097ddfddde50814af022329&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544049"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=martinshen">martinshen</a> 7 days ago | <a href="item?id=8544049">link</a></span></div><br>
<span class="comment"><font color="#000000">UpOut - SoMA, San Francisco - Full Time Python and PHP<p>Would love to chat and see if there's a good fit. Email at [email protected] or call my cell at 415 404 5650 (don't call me after 8pm PST please).<p>UpOut helps people get out more. Our main monetization is Insiders ("Netflix for Events"). For just $20/month our thousands of customers get unlimited pairs of tickets to try new things each month like unique musicals, breakthrough concerts, cooking classes, sake tastings and if they don't like any of the options, they can choose movie tickets instead.<p>We have double digit month over month growth, real revenue and have very recently brought on some of the valley's top VCs. We're hiring engineer #3 and #4 to help us scale up services and get started on some big data projects.<p>Our service is built on PHP, MySQL, Apache, Nginx, Python, Elasticsearch, Java, Memcached and Go. We’re hosted on AWS (EC2, RDS etc.) and use Github.<p>== Python Engineer ==<p><a href="http://upout.theresumator.com/apply/SAhv8F/Python-Engineer.html" rel="nofollow">http://upout.theresumator.com/apply/SAhv8F/Python-Engineer.h...</a><p>· 4+ years software development experience developing server-side applications.<p>· Professional experience with Python of at least 2 years (If you don’t have experience with Python, please be willing to learn them and have professional experience of at least 1 year with either Java, C or C++)<p>· Knowledge of SQL, and experience working with and writing high performance code optimized for transactional SQL databases.<p>== PHP Engineer ==<p><a href="http://upout.theresumator.com/apply/rEy1lM/PHP-Engineer.html" rel="nofollow">http://upout.theresumator.com/apply/rEy1lM/PHP-Engineer.html</a><p>· 3 years software development experience developing server-side applications.<p>· Extensive knowledge of SQL, and experience working with and writing high performance code optimized for transactional SQL databases.<p>· Professional experience with PHP of at least 2 years<p>=====================<p>Let me know if you have any questions: [email protected] or 415 404 5650</font></span><p><font size="1"><u><a href="reply?id=8544049&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8545701" onclick="return vote(this)" href="vote?for=8545701&dir=up&by=jecjec&auth=4c8b0841a373621ece60e1d9290014857ded4e03&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8545701"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=conversica">conversica</a> 7 days ago | <a href="item?id=8545701">link</a></span></div><br>
<span class="comment"><font color="#000000">Conversica - Bellingham, WA -
<a href="https://conversica.com" rel="nofollow">https://conversica.com</a><p>We use artificial intelligence to help businesses efficiently find new customers and nurture existing ones. Our software turns qualitative customer feedback into quantitative data that our clients can act on. We have an international presence with clients in the Automotive, Insurance, Finance, Mortgage, and Education industries. We pay competitive salaries and 100% of salaried employees' health insurance, have 401(k) matching, and offer daily catered meals.<p>TEST ENGINEER - Work with product development at all stages in order to promote product quality. This includes the development of processes for review of various components, testing procedures, testing systems, automated testing, cross-platform testing, determining performance requirements and confirming requirements have been met. <a href="https://www.linkedin.com/jobs2/view/25374773" rel="nofollow">https://www.linkedin.com/jobs2/view/25374773</a><p>SYSTEMS ADMINISTRATOR - Responsible for enhancing and maintaining our server and network infrastructure to achieve business and technical goals. Will work closely with system architects and developers to create new services, maintain existing ones, and perform complex troubleshooting when problems arise. <a href="https://www.linkedin.com/jobs2/view/25373686" rel="nofollow">https://www.linkedin.com/jobs2/view/25373686</a><p>INFORMATION SECURITY ENGINEER - Maintain and enforce company-wide security policies, review and recommend strategies for implementing policies, coordinate security training and awareness, coordinate responses to actual or suspected breaches. Responsible for ensuring the confidentiality, integrity and availability of company data. <a href="https://www.linkedin.com/jobs2/view/25373642" rel="nofollow">https://www.linkedin.com/jobs2/view/25373642</a></font></span><p><font size="1"><u><a href="reply?id=8545701&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543192" onclick="return vote(this)" href="vote?for=8543192&dir=up&by=jecjec&auth=c2deebf5463ad3b45399f9a6b6cc8981718ddfac&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543192"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=bbeck">bbeck</a> 8 days ago | <a href="item?id=8543192">link</a></span></div><br>
<span class="comment"><font color="#000000">Main Street Hub // Austin, TX // email: [email protected]<p>We are looking for a few awesome software engineers to join our small but growing R&D team in downtown Austin. Within engineering we are a passionate group of people who are extremely interested in building the software that helps our customers around the country thrive in their local communities. We’re a really small team (currently 8 people) so you’ll have plenty of say around how we develop software going forward.<p>We are currently in the process of modernizing our software platform to be more modular and truly data driven. Our goal is to use data to make sure that we provide the right content to the right consumer at the right time. We’re building our internal API using REST based services implemented in Java, and while our front end is currently implemented in PHP, that may change in the future.<p>Some of the technologies that we’re using: Dropwizard, Swagger, Flyway, CodeIgniter, Phake, Guzzle.
All new engineers get company provided downtown parking, flexible work hours, 100% of their health insurance premiums paid for by the company, the ability to build their own work computer, and access to our kitchen with plenty of drinks and snacks.<p>Sorry, we’re looking for individuals only. No recruiters or agencies please. In addition we’re looking for full-time employees who are already in Austin, TX or willing to relocate.<p>—<p>About Us:<p>Founded in 2010, Main Street Hub is the CRM for Local. We offer an integrated social, web, and email marketing solution designed to help merchants get more customers and keep them coming back by spreading word of mouth, extending their customer service, managing their online reputation, and leveraging the Main Street Hub’s merchant network.<p>Main Street Hub was recently named #73 on the Inc. 500 list (<a href="http://www.inc.com/profile/main-street-hub" rel="nofollow">http://www.inc.com/profile/main-street-hub</a>) of America’s fastest growing companies and the 2nd fastest growing company in Austin.<p>Please see our website (<a href="http://www.mainstreethub.com" rel="nofollow">http://www.mainstreethub.com</a>) for more information.</font></span><p><font size="1"><u><a href="reply?id=8543192&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543645" onclick="return vote(this)" href="vote?for=8543645&dir=up&by=jecjec&auth=9f5a74fb15b04a51e45afe818a9021af875afbf9&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543645"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=ILIKEPONIES">ILIKEPONIES</a> 8 days ago | <a href="item?id=8543645">link</a></span></div><br>
<span class="comment"><font color="#000000">————— underdog.io ——— Soho, NYC ——— <a href="https://www.underdog.io" rel="nofollow">https://www.underdog.io</a> —————<p>We’re (<a href="https://www.underdog.io" rel="nofollow">https://www.underdog.io</a>) looking to make our first hire, a Lead Software Engineer, in New York City.<p>Today, we're is a curated two-sided marketplace for talent. We help growing startups hire amazing people across all verticals at a fraction of the cost of traditional recruiting firms. We started underdog.io because we experienced the pain of hiring first-hand, having worked at top-notch startups in NYC.<p>We're currently live in NYC, but we've had serious requests to open in 10 other cities. While the plan is to scale the recruiting piece quickly, the bigger vision is not as focused on recruiting. We're moving towards building a defensible network between companies.<p>In the interest of full transparency, it's a big job with lots of positives and negatives.<p>The Good:<p>• Traction (<a href="https://medium.com/@joshuagoldstein/our-first-four-months-building-underdog-io-904dd9831644" rel="nofollow">https://medium.com/@joshuagoldstein/our-first-four-months-bu...</a>) after a few months.<p>• Proven business model - we're making significant money every month. In fact, we're making enough to pay market rate, and we haven't raised money yet.<p>• Chance to get common stock in a bootstrapped startup = big upside.<p>• Full technical autonomy. We've built our internal CMS and tools with Python/Flask, PostgreSQL, Elastic Search, S3, etc. but you're in charge of choosing the technologies going forward.<p>• Work out of Founder Collective's space in SoHo.<p>• Work with great freelance designers and advisors.<p>The Bad:<p>• Less structure and certainty than a funded startup.<p>• Only full-time developer until we build an engineering team.<p>Email [email protected] to apply.<p>Sorry, we can't sponsor visa candidates.<p>Keywords: New York, NYC, Developer, Dev, Python, Flask, PostgreSQL, Elastic Search, S3, <a href="https://www.underdog.io/" rel="nofollow">https://www.underdog.io/</a></font></span><p><font size="1"><u><a href="reply?id=8543645&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543089" onclick="return vote(this)" href="vote?for=8543089&dir=up&by=jecjec&auth=21770229ca48f88ff4ba8fab42f20d8d92c34206&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543089"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=geori">geori</a> 8 days ago | <a href="item?id=8543089">link</a></span></div><br>
<span class="comment"><font color="#000000">LOCATION - JACKSON, MS or REMOTE<p>We're a small agile team that gives our engineers a ton of freedom and responsibility in developing apps, which include a messaging product and a social intelligence product. We are very open about communication and even the most junior engineer has a voice. EdgeTheory is an Angular.js shop and our backend runs in Ruby (Sinatra).<p>[Front End Engineer]<p>Skills we're looking for<p>* JavaScript Frameworks (Angular, Ember, Backbone)<p>* CSS compiler knowledge (Sass, LESS)<p>* Responsive Design (Twitter Bootstrap, Bourbon Neat, etc)<p>* Experience with a version control system<p>Bonus Points<p>* Strong design sense and excellent taste<p>* Rails - know your templates (ERB, HAML, etc)<p>* Visualization Experience (d3.js, etc)<p>Interested? Send us an email at [email protected]</font></span><p><font size="1"><u><a href="reply?id=8543089&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8545767" onclick="return vote(this)" href="vote?for=8545767&dir=up&by=jecjec&auth=1a8e7ae224d2b9ad0f57fc47de5f4e09fc39f123&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8545767"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=brandonthejames">brandonthejames</a> 7 days ago | <a href="item?id=8545767">link</a></span></div><br>
<span class="comment"><font color="#000000">99Gamers.com (Mountain View, CA) – <a href="https://www.99gamers.com" rel="nofollow">https://www.99gamers.com</a><p>Open positions: iOS Engineer, Full Stack PHP Developer - Full-time<p>----------------------------------------------------<p>Based in Mountain View, 99Gamers is changing the way we trade video games. To take 99Gamers to the next level we are looking for a developers who want to join our team.<p>----------------------------------------------------<p>About 99Gamers<p>Born off a Reddit post, 99Gamers is a trusted community marketplace for gamers to buy and sell video games. With more than 118,000 members, $1,100,000 worth of games sold and 44,000 games available to buy, 99Gamers is the easiest way for gamers to get the most value out of their video games. 99Gamers is currently taking part in 500 Startups' Batch 11. Check out our videos on YouTube.<p>----------------------------------------------------<p>Join a small, quickly growing startup working to push the marketplace space forward. You’ll help us get there. We’re looking for engineers/hackers who can learn/grow with the company on the go. Being apart of a small team, you will have ownership and responsibility for product development.<p>You should place a very high personal value on culture. We’re looking for a mellow coder with an insane work ethic. At 99Gamers, you’ll make a huge impact. You’ll be responsible for creating tools that will help shape our growing community.<p>We’re looking for people who love the internet & gaming as much as we do.<p>----------------------------------------------------<p>We're also looking for a product designer and community manager. See more about the positions here: <a href="http://goo.gl/qC13Y0" rel="nofollow">http://goo.gl/qC13Y0</a><p>If interested, send a resume along with a brief note about why you think you’d be a good fit at 99Gamers to [email protected]. If you have any questions, feel free to ask.</font></span><p><font size="1"><u><a href="reply?id=8545767&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544751" onclick="return vote(this)" href="vote?for=8544751&dir=up&by=jecjec&auth=288e328ddc51851380e88a5b1fe0e95d52b28168&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544751"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=BGCivis">BGCivis</a> 7 days ago | <a href="item?id=8544751">link</a></span></div><br>
<span class="comment"><font color="#000000">Chicago, IL - Full-Time and Intern - Civis Analytics<p>Civis Analytics: Building a Data-Driven World.<p>We create technologies that empower organizations to unlock the truth hiding in their own data—transforming them into smart organizations that are ready to thrive.<p>While our history is rooted in political campaign targeting, we’re now partnering with intelligent organizations in healthcare, media, education, and a range of other domains. We’re also building cloud-based products to do data science better.<p>We are a community of engineers, data scientists, and statisticians, and are looking to add to our growing team. We are smart, fun, and a little bit weird. Does this sound like you?<p>We are hiring for a number of positions, including:<p><i></i>DevOps Engineer: <a href="https://jobs.lever.co/civisanalytics/37da1808-395e-4071-a890-e7b9e747dab8" rel="nofollow">https://jobs.lever.co/civisanalytics/37da1808-395e-4071-a890...</a><p><i></i>Front End Engineer: <a href="https://jobs.lever.co/civisanalytics/1df0a4c2-a481-413d-9388-24b794a08da1" rel="nofollow">https://jobs.lever.co/civisanalytics/1df0a4c2-a481-413d-9388...</a><p><i></i>Software Engineer: <a href="https://jobs.lever.co/civisanalytics/75984a40-d4e2-4873-b4c8-8effd3939310" rel="nofollow">https://jobs.lever.co/civisanalytics/75984a40-d4e2-4873-b4c8...</a><p><i></i>Vice President of Product: <a href="https://jobs.lever.co/civisanalytics/169dd5ae-c3db-4ed5-91bc-53dde8b570f4" rel="nofollow">https://jobs.lever.co/civisanalytics/169dd5ae-c3db-4ed5-91bc...</a><p><i></i>Software Engineer Internship: <a href="https://jobs.lever.co/civisanalytics/3f32fc1f-647e-435b-b06d-ccc82c2b24e0" rel="nofollow">https://jobs.lever.co/civisanalytics/3f32fc1f-647e-435b-b06d...</a><p>View all of our open positions at: <a href="https://civisanalytics.com/careers" rel="nofollow">https://civisanalytics.com/careers</a><p><a href="https://civisanalytics.com" rel="nofollow">https://civisanalytics.com</a></font></span><p><font size="1"><u><a href="reply?id=8544751&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544144" onclick="return vote(this)" href="vote?for=8544144&dir=up&by=jecjec&auth=c27524ad05bf3dd4cc721ea8fec01b9b082a0239&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544144"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=brendan_gill">brendan_gill</a> 7 days ago | <a href="item?id=8544144">link</a></span></div><br>
<span class="comment"><font color="#000000">OpenSignal - London, UK (Full time, permanent)<p>At OpenSignal we're using mobile apps to tap into the smart phones we're all carrying around with us to build up global crowdsourced sensor networks. Our first sensor network is for wireless signal [1] where we are building a global database on the coverage and performance of wireless networks (both mobile + WiFi) on a scale that has never before been possible. Our second sensor network is WeatherSignal [2], which uses the barometers, thermometers and hygrometers on smart phones to crowdsource weather data and we have already published a scientific paper [3] showing the potential of this approach. If the concept of crowdsourced sensor networks appeals to you too then please get in touch. We are hiring for all manner of different roles right not (backend, frontend, UX/UI & data science) but most of all we are just looking for smart, like minded people rather than people with specific, existing skills. We also recently raised our $4million series A [4] from Qualcomm Ventures, O'Reilly Alphatech Ventures & Passion Capital so are growing fast.<p>More info: <a href="http://opensignal.com/jobs/" rel="nofollow">http://opensignal.com/jobs/</a>
Email us: [email protected]<p>[1] OpenSignal App: <a href="https://play.google.com/store/apps/details?id=com.staircase3.opensignal" rel="nofollow">https://play.google.com/store/apps/details?id=com.staircase3...</a><p>[2] WeatherSignal App: <a href="https://play.google.com/store/apps/details?id=com.opensignal.weathersignal" rel="nofollow">https://play.google.com/store/apps/details?id=com.opensignal...</a><p>[3] Battery Temperature/Weather correlation: <a href="http://opensignal.com/reports/battery-temperature-weather/" rel="nofollow">http://opensignal.com/reports/battery-temperature-weather/</a><p>[4] OpenSignal Series A: <a href="http://techcrunch.com/2014/08/05/opensignal-series-a/" rel="nofollow">http://techcrunch.com/2014/08/05/opensignal-series-a/</a></font></span><p><font size="1"><u><a href="reply?id=8544144&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8546660" onclick="return vote(this)" href="vote?for=8546660&dir=up&by=jecjec&auth=1ddf42770382ed2877676092a172b1219433f0a8&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8546660"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=bootstraponline">bootstraponline</a> 7 days ago | <a href="item?id=8546660">link</a></span></div><br>
<span class="comment"><font color="#000000">Senior QA Engineer - Automation (Python) - (Remote or Boston, MA)<p>About This Role<p>This role participates in an enterprise-wide software quality assurance function that drives SQA automation, and promotes the adoption and sharing of best practices across multiple business units that are engaged in software development. This role reports at our Boston office or remote.<p>Responsibilities<p>The successful candidate will work with business units to create automation and promote the sharing and adoption of best practices.To accomplish this, the Engineer will engage in a variety of functions:<p>- Build automated tests for backend (HTTP API), and web applications.<p>- Develop and execute detailed test cases and automated test scripts.<p>- Participate in tool selection and creation of an automated test framework.<p>- Establish automated functional and regression testing procedures.<p>- Assist in defining Quality Assurance policies and process improvements.<p>- Mentor QA team members in automated testing and best practices.<p>Experience & Expertise<p>- Minimum three years experience as an automation engineer.<p>- Strong experience with Selenium, Python, py.test, python-requests, mitmproxy and other open-source tools.<p>- Experience testing HTTP APIs (JSON, Unix shell), and with Jenkins, Git, Docker.<p>- Excellent analytical, organizational, and problem-solving skills.<p>- Ability to set priorities and multi-task in a fast-paced environment.<p>- Excellent written, verbal and interpersonal communication skills; and<p>- Ability to successfully work independently and in a team environment, build peer-to-peer relationships; typically work with several departments in the organization.<p>Application Info<p>To apply, email your resume to [email protected]<p>Country<p>United States</font></span><p><font size="1"><u><a href="reply?id=8546660&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8548093" onclick="return vote(this)" href="vote?for=8548093&dir=up&by=jecjec&auth=2642c6578b788377cbfdc6986af72a7d0c666c5b&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8548093"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=fortpoint">fortpoint</a> 6 days ago | <a href="item?id=8548093">link</a></span></div><br>
<span class="comment"><font color="#000000">Linkable Networks - <a href="http://www.linkablenetworks.com" rel="nofollow">http://www.linkablenetworks.com</a> - Boston, MA (office is in Fort Point Channel Neighborhood)<p>* Company Summary<p>Linkable Networks is a digital media company that bridges the gap between consumer purchases and advertising by enabling brands to link product discounts and special offers directly to consumers’ existing credit/debit cards via Linkable Networks’ gateway to financial institutions.<p>Off-line sales still make up over 90% of retail business in the U.S. We're using our integrations into the transaction rails of the three largest card networks to complete the chain of attribution from offer presentment to brick-and-mortar purchase.<p>* Technology Stack<p>Core Stack : { Java, Spring, Sharded mySql, Terracotta, RabbitMQ }<p>Mobile : { iOS, Android }<p>* Additional Info<p>We're wired into the three largest card networks: Visa, Mastercard and Amex. We have a broad range of customers from grocery giant SuperValu where we're deployed with a first of its kind card-linked SKU offer solution to FanBank where we help enable community based Loyalty programs.<p>We run an agile shop with 64 successful sprints under our belts. Our process has been improved over the 4 years we've been running it so that we deliver on time and without drama. Our engineers don't sit in meetings they build solutions.<p>We're looking for solid Java engineers to join our team and help us build out the next level of capabilties on our platform.<p>If this sounds interesting, please shoot me an email at [email protected]</font></span><p><font size="1"><u><a href="reply?id=8548093&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544314" onclick="return vote(this)" href="vote?for=8544314&dir=up&by=jecjec&auth=0030a3ff15dbd9e02eed6dd589498562730a9a61&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544314"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=meritt">meritt</a> 7 days ago | <a href="item?id=8544314">link</a></span></div><br>
<span class="comment"><font color="#000000">Savvr - Portland, OR - Full-Time<p>Savvr provides large-scale data collection, analysis, and research for institutional investors. We're self-funded and profitable. We're looking to add more engineers to our team. We do a wide variety of things so a generalist is more likely to succeed than a specialist. Rather than list specific requirements, I'll just list the areas of experience and technologies we currently utilize on a daily basis.<p>* PHP - 5.5, modern code-base, back-end development, daemon processes, distributed workers<p>* MySQL - Medium-to-advanced SQL techniques, proper normalization, tuning configuration for efficiency. We work with PostgreSQL as well.<p>* Data-warehousing Understanding large datastores, star-schemas, fact-dimensions, pros/cons of a RDBMS versus a document-storage engine, Hadoop, columnar databases, etc -- all good things to know.<p>* Redis - Acts as a job broker & message queue for our platform<p>* AWS - We utilize a number of AWS services (ec2, route 53, s3, rds, vpc, etc)<p>* Web/Mobile - We really dig into how the web and APIs (soap, xml, rest, json, etc) operate on a technical level. Mobile data is just as important. Understanding the role and specifics around things like: http, ssl/tls, iphone, android, mitm, reverse-engineering are all important.<p>* Excel - The investment world loves Microsoft Excel and having a very solid understanding of XLSX, auto-generation of spreadsheets, dynamic data-source integrations is important.<p>* Automation/testing We run a 24x7 platform and need to be confident things are running smoothly at all times.<p>I understand this is quite a laundry-list of technical skills, and so if you feel you're strong in a few or more of these areas, we'd love to talk to you. We provide a competitive salary and benefits. We're a small company and starting our physical footprint here in Portland (we've been 100% remote for the past three years) so we can collaborate better.<p>[email protected]</font></span><p><font size="1"><u><a href="reply?id=8544314&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8547601" onclick="return vote(this)" href="vote?for=8547601&dir=up&by=jecjec&auth=32052e38e0ed7553103f4a5193332a84b050d99a&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8547601"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=xiongww"><font color="#3c963c">xiongww</font></a> 6 days ago | <a href="item?id=8547601">link</a></span></div><br>
<span class="comment"><font color="#000000">== San Diego, CA | Part-time, internship, full time | UI/X designer, iOS/Android/Web developer, Full-stack engineer ==<p>== About Whova (<a href="http://whova.com" rel="nofollow">http://whova.com</a>) ==<p>Whova is a fast-growing mobile and big data startup backed by National Science Foundation SBIR Program, Venture Capital and seasoned angel investors from Silicon Valley. Whova mobile app brings big data analytics to help event organizers build successful events and attendees network efficiently with each other.<p>To deliver the best product experience to users, we are looking for talented people who enjoy fast paced development and are passionate about entrepreneurship to join our exciting venture. If you are looking for a unique career opportunity to learn, grow, and have fun, consider joining Whova!<p>== Current available positions at Whova ==<p>- UI/UX designer
- Android/iOS mobile developer
- Software engineer
- Marketing/Sales managers/directors<p>== Why joining us? ==<p>- We are a group of passionate startup veterans, inventors, technologists, and explorers
- We are well funded by leading silicon valley angel investors and VCs
- We have competitive equity and salary packages available
- Full health/dental/vision coverage
- A chance to be an early member of a fast-growing team
- We are located in the America’s Finest City: San Diego, CA<p>== Contact ==<p>More details about the positions can be found in <a href="http://whova.com/jobs/" rel="nofollow">http://whova.com/jobs/</a>. If you have any questions, please don’t hesitate to send us an email: [email protected].</font></span><p><font size="1"><u><a href="reply?id=8547601&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544989" onclick="return vote(this)" href="vote?for=8544989&dir=up&by=jecjec&auth=d99a28e0fc428664b28e30a09c10207b31bd5a1e&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544989"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=kiyoto">kiyoto</a> 7 days ago | <a href="item?id=8544989">link</a></span></div><br>
<span class="comment"><font color="#000000">Treasure Data - Mountain View, CA <a href="http://www.treasuredata.com/careers" rel="nofollow">http://www.treasuredata.com/careers</a><p>We are looking for two positions:<p>1. LOCAL Product manager.<p>2. REMOTE/LOCAL Open source engineer: I lead the open source team at Treasure Data where we primarily work on Fluentd (www.fluentd.org). In particular, we are looking for someone who knows systems programming/middleware well. Familiarity with Go or Ruby a plus.<p>Email me at [email protected]. For the product manager role, please send me 1) your resume 2) a paragraph describing why a company needs a product manager.<p>For the open source engineer role, please send me your GitHub handle.</font></span><p><font size="1"><u><a href="reply?id=8544989&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544889" onclick="return vote(this)" href="vote?for=8544889&dir=up&by=jecjec&auth=11e065f2b9debc6228129a56544ddb01fe7c0175&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544889"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=JJMalina">JJMalina</a> 7 days ago | <a href="item?id=8544889">link</a></span></div><br>
<span class="comment"><font color="#000000">ChatID (New York, NY) <a href="http://chatid.com" rel="nofollow">http://chatid.com</a><p>We're building a quickly growing platform for brands and consumers to directly communicate via chat across any website and on any device.<p>Our current openings:<p>* Frontend Engineer - we're building real-time communication interfaces for mobile and desktop web using Backbone.js, XMPP, and BOSH<p>* Client Services Engineer - work with frontend and client services to help technically support new and existing clients<p>* Data Engineer - help us build a data pipeline and analytics service to give our clients insights into chat and consumer behavior on retailers. (this one isn't listed yet but if you're familiar w/ Python and skilled in SQL, and NoSQL, please reach out to us)<p>* You can see all of our open positions at <a href="https://chatid.gethired.com/" rel="nofollow">https://chatid.gethired.com/</a><p>About the company:<p>- We're 15 people mostly based in NYC, but also SF and Austin<p>- NYC office is in Flatiron between Union Square and Madison Square<p>- Newegg.com recently awarded us a 2014 Eggie award for "Best Marketing Platform"<p>- We like contributing to open source <a href="https://github.com/chatid" rel="nofollow">https://github.com/chatid</a><p>Technologies we use:<p>- Lua and Prosody [<a href="https://prosody.im/" rel="nofollow">https://prosody.im/</a>] an open source XMPP server started by two of our cofounders, one of which is a member of the XMPP council<p>- CoffeeScript, Backbone.js, Require.js, Angular.js, D3, SASS/LESS<p>- Python, Flask, PostgreSQL, InfluxDB, RabbitMQ<p>- Chef for infrastructure automation, but we're working on switching over to using Ansible and Docker<p>Sound interesting? Send us an email at [email protected] and feel free to reach out to me if you have any questions: [email protected]</font></span><p><font size="1"><u><a href="reply?id=8544889&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543588" onclick="return vote(this)" href="vote?for=8543588&dir=up&by=jecjec&auth=19dd854c3dd23ad14dff4a7210a5e9bc0e2a33be&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543588"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=oms1005">oms1005</a> 8 days ago | <a href="item?id=8543588">link</a></span></div><br>
<span class="comment"><font color="#000000">Watsi (YC W13, San Francisco, <a href="https://watsi.org" rel="nofollow">https://watsi.org</a>) is a non-profit that enables anyone to directly fund life-changing healthcare for people around the world. We’re a team of developers, designers, doctors, and marketers who believe that everyone, everywhere deserves access to healthcare. We move fast, take risks, and come to work every day excited about building an organization that matters more than we do.<p>The engineering team is small, but with big responsibilities, as we’re building a platform that connects donors directly with patients around the world. We’re all full-stack engineers who believe in end-to-end ownership of products, as we manage anything from rows in databases to pixels on the screen. We believe in testing everything from code to design and aspire to create the best experience for all of Watsi’s users. Our stack is Rails, Backbone.js, SCSS, Postgres, Redis, Sidekiq, Heroku, RSpec, and Jasmine.<p>About the job<p>This is an internship for summer 2015
You will be working in fast-paced environment building the future of healthcare
We’re a small group, so you’ll be interacting with everyone, not just engineers
This is an opportunity to work on interesting challenges and solve problems pertaining to tons of medical data<p>About you<p>+ You’re a product-focused generalist who wants to use your skills to bring healthcare to the world
+ You’re able to work on a small team and own projects throughout the summer
+ You take feedback well and put the product and the users first
+ You provide good feedback on ongoing projects
+ You can work on developing beautiful applications<p>Requirements
+ Experience with Ruby and Ruby on Rails, Javascript, relational databases, and front-end tools such as templating languages and SCSS
+ Be located, or willing to move to the Bay Area during summer 2015<p>If interested, please send whatever you have (resume, linkedin, github, website, etc.) to:<p>[email protected]<p>Thanks!
-Oscar ([email protected])</font></span><p><font size="1"><u><a href="reply?id=8543588&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543661" onclick="return vote(this)" href="vote?for=8543661&dir=up&by=jecjec&auth=427e077d59e3dae4d6127b282fc283964a1f4133&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543661"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=EmilLondon">EmilLondon</a> 8 days ago | <a href="item?id=8543661">link</a></span></div><br>
<span class="comment"><font color="#000000">CITYMAPPER (LONDON, UK). <a href="https://citymapper.com" rel="nofollow">https://citymapper.com</a> Full time software engineers in London. OK to relocate exceptional candidates.
Recent HN post! (help us solve the problems mentioned) Citymapper is what happens when you understand user experience<a href="https://news.ycombinator.com/item?id=8238260" rel="nofollow">https://news.ycombinator.com/item?id=8238260</a>
We're building one of the most important apps on mobile, an urban transport app built on the back of open data, to help navigate and use cities. We're a VC-backed startup (Balderton, Index, Greylock, Connect) based in London with a team with backgrounds from Google, academia and startups.
We're looking for great people first and foremost, but especially the following roles:
- Routing. We're reinventing getting from A to B in the world of mobile, multi modal and real-time data.
- Infrastructure engineer. Be responsible for our platform in the cloud, shape the tool chain, and ensure that the moving parts of our system can communicate, so that we can expand to all the cities in the world.
- Android and iOS developers. We're reimagining mobile interfaces and developing all the features that we dream about. You care about the "little big details" and know the grotty implementation details required to make things work across a range of devices and future platforms.
- Data pipeline/data science/analytics. We're building an omnivorous transport data processor that fuses together loads of data sources, and a psychic city brain.
- Software engineers. We're looking for great engineers to solve a range of other big problems, including search, data analysis, natural language processing. We use a lot of Python, and some C and Java.
If interested, please contact me at [email protected] or apply at <a href="https://citymapper.com/jobs" rel="nofollow">https://citymapper.com/jobs</a>.</font></span><p><font size="1"><u><a href="reply?id=8543661&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543284" onclick="return vote(this)" href="vote?for=8543284&dir=up&by=jecjec&auth=74859d9032e52b938b07bdbbe679a2c48d7d430e&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543284"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=diego">diego</a> 8 days ago | <a href="item?id=8543284">link</a></span></div><br>
<span class="comment"><font color="#000000">Factual - Los Angeles, San Francisco, Shanghai<p>Factual is currently hiring engineers and data lovers of all levels in the SF Bay Area, Los Angeles, and Shanghai.<p>Factual’s location platform enriches mobile location signals with definitive global data, enabling personalized and contextually relevant mobile experiences. Built from billions of inputs, the data is constantly updated by Factual’s real-time data stack. We were named one of "50 Disruptive Companies in 2013" by MIT Technology Review. We have a terrific team that is still fairly small and an incredible CEO who was previously the co-founder of Applied Semantics (which was bought by Google and became AdSense). Factual has venture funding from Andreessen-Horowitz and our partners/customers include Facebook, Yelp, Trulia, and Newsweek.<p>There are many challenging problems to work on at all layers of the stack: data cleaning and canonicalization, storage, deduping, serving, APIs, improving data using machine learning, etc. A great example is one of our most recent products, Geopulse Audience, which stands at the intersection of high quality places data and large scale analysis of user geo-data: <a href="http://www.factual.com/products/geopulse-audience" rel="nofollow">http://www.factual.com/products/geopulse-audience</a> . If you love data, Factual is the place to be. Our main criteria are that you're smart and get things done, but you'll get bonus points for experience with Clojure (<a href="http://www.factual.com/jobs/clojure" rel="nofollow">http://www.factual.com/jobs/clojure</a>), machine learning, NLP, algorithm design, or Hadoop.<p>If interested, email me (my username here at factual.com).<p>Here's a typical job description from Jobvite:<p><a href="http://hire.jobvite.com/CompanyJobs/Careers.aspx?nl=1&k=Job&j=oQR1Vfwn&s=Hackernews" rel="nofollow">http://hire.jobvite.com/CompanyJobs/Careers.aspx?nl=1&k=Job&...</a></font></span><p><font size="1"><u><a href="reply?id=8543284&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543788" onclick="return vote(this)" href="vote?for=8543788&dir=up&by=jecjec&auth=5f0a2d51bd1b1a1e6110af01773dfacbc239fb7a&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543788"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=fheisler">fheisler</a> 8 days ago | <a href="item?id=8543788">link</a></span></div><br>
<span class="comment"><font color="#000000">TrackMaven | Software Engineer | Washington, DC (will help with relocation)<p>Django/AngularJS/Coffeescript/Elasticsearch/AWS/D3/NLTK/...!<p>See our engineering blog at <a href="http://engineroom.trackmaven.com" rel="nofollow">http://engineroom.trackmaven.com</a><p>TrackMaven is dedicated to making the lives of marketers easier, more productive, and more effective. Your work will have a huge impact on a product helping shape the marketing efforts of major brands.<p>As a Software Maven, you will:<p>- Participate in the full development process (daily engineering stand-up, product planning, story estimation, code review)<p>- Learn and quickly integrate new technologies on the fly<p>- Collaborate with the rest of the product team to explore new features and concepts<p>- Assist the customer success team to ensure a good customer experience on our platform<p>- Promote best practices in software engineering<p>- Take ownership of your contributions and be able to manage your time efficiently<p>- Always be seeking out new ways to improve our product<p>- Work on new and interesting problems every day<p>To hit the ground running, you’ll need:<p>- A solid knowledge of Python and Django<p>- Significant experience with JavaScript (we use CoffeeScript)<p>- Experience working in teams with source control (GitHub)<p>- The ability to stay focused on the big picture while tackling complex problems<p>- A silly and fun personality<p>It would be great if you also have:<p>- A working knowledge of AngularJS (very strong plus!)<p>- Experience with hosting full web apps (we use AWS, Linode, etc.)<p>- Experience with Agile software development<p>- A background in basic data science concepts<p>- Experience scaling web applications<p>- Portfolio demonstrating relevant past projects<p>- Active in the open-source community<p>To apply: <a href="http://trackmaven.com/careers" rel="nofollow">http://trackmaven.com/careers</a></font></span><p><font size="1"><u><a href="reply?id=8543788&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543641" onclick="return vote(this)" href="vote?for=8543641&dir=up&by=jecjec&auth=aeaccc731fccb77a9101552a45136e8b308d7cf7&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543641"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=arach">arach</a> 8 days ago | <a href="item?id=8543641">link</a></span></div><br>
<span class="comment"><font color="#000000">Primary Kids (primary.com) - New York, NY<p>Hi, we’re Primary, a prelaunch vertically integrated ecommerce company that will change how parents shop for their children’s clothes. We are looking for a talented and experienced engineer to join our founding engineering team. Our founders were key executives at Quidsi, the ecommerce company behind Diapers.com that was acquired by Amazon for $545M. Our Creative Director has launched several successful online brands and I was most recently CTO at Lot18 where I lead the engineering team behind Lot18.com and later launched TastingRoom.com, the first technology enabled personalized wine club. TastingRoom went from 0-10M$/yr in less than a year and was built from scratch using Flask.<p>At Primary, we're building our website using Spree's Ruby On Rails ecommerce framework. I'm loving the framework so far and our stack is going to be really fun to work with. As we grow, I'd like us to be polyglot but for now this is awesome. We're not just building another ecommerce website with better design, we're going to rethink every aspect of how a company in our space operates and think smart, simple with technology at the heart of everything we do.<p>I'd love to hire someone who loves working on frontend technology but would obviously also be happy with a more fullstack engineer. I don't believe in putting people in a box (frontend/backend/etc). Right now, I am mostly focused on hiring someone awesome who can be a good foundation for the kind of team I want to build. You would be on the founding engineering team and work closely with a really smart and friendly team. We are going to build something big here.<p>Some of the things I love about this company are that we value design, we're scrappy even though we raised a significant seed round from top seed level investors and we have well defined values as a team.<p>Say hi - I'm the CTO email me at [email protected]</font></span><p><font size="1"><u><a href="reply?id=8543641&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8545979" onclick="return vote(this)" href="vote?for=8545979&dir=up&by=jecjec&auth=a9532ec176948c748808f98efc74ad2bf0ce7936&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8545979"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=antoviaque">antoviaque</a> 7 days ago | <a href="item?id=8545979">link</a></span></div><br>
<span class="comment"><font color="#000000">Open edX -- REMOTE (Worldwide), OpenCraft<p>Consultancy specialized on the edX project, and hiring to handle increasing demand. edX is a free software project, used by various universities and companies to run online courses. See edx.org, class.stanford.edu, france-universite-numerique-mooc.fr for examples of edX instances.<p>It's a large Python/Django codebase, with good code standards and architecture (a lot of the edX engineers come from MIT). You would work on different clients contracts using the platform. The clients list/references include Harvard, edX themselves, the French government, and various startups & universities currently running their own instances, or looking to create one. Tasks are varied, from developing custom features for specific courses (XBlocks), customizing instances, developing generic platform features, deploying instances, working on both client/server sides, etc.<p>A large part of your work would be published as free software (edX is released under the AGPL license, which requires clients to release modifications under the same license), and you would also contribute to the free software project, pushing some of your developments upstream through pull requests, contributing features, documentation or help on mailing-lists.<p>You would be able to work remotely from where you want, as long as you have a good internet connexion. : )<p>Stack: Python/Django, Ansible, AWS, Debian/Ubuntu, JS, HTML/CSS, MySQL, MongoDB<p>Applying: Email [email protected] with: your github account, a short explanation of why the role interests you (no formal cover letter, please :) ) and a list of links to free software contributions you have made.</font></span><p><font size="1"><u><a href="reply?id=8545979&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543518" onclick="return vote(this)" href="vote?for=8543518&dir=up&by=jecjec&auth=c6589035252aa43b445ebcc772b3fb5f23472ad6&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543518"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=iis_zephyr">iis_zephyr</a> 8 days ago | <a href="item?id=8543518">link</a></span></div><br>
<span class="comment"><font color="#000000">South Lake Tahoe (Zephyr Cove, NV)<p>Informa Investment Solutions, Inc. is seeking a senior developer to join our web applications team at our office on the shores of Lake Tahoe. If you love designing and building modern, responsive web applications that make it easy for business users to run sophisticated investment analysis software, we would like to talk to you. We’re an established company with actual paying customers and we want to make our little corner of the world a better place for our users.<p>We use standards-based HTML, JavaScript and CSS, along with state of the art technologies – Canvas, SVG, RequireJS, Backbone, Marionette, and LESS – to build cross-browser interfaces and advanced data visualizations. The backend is a mixture of C#, Java, C++ because we believe in using the right tool for the job, and we are regularly evaluating our tools to ensure that. Our development process is agile and we release our web products approximately once a month.<p>Our offices are a five minute walk from the Nevada shore of Lake Tahoe and Heavenly ski resort is a fifteen minute drive from the office. As a developer you’ll also get your own private office and even though we mostly develop on Windows, all our developers have Mac hardware. We prefer to hire generalists who are as curious and excited about technology as we are. All of us enjoy learning new technologies and tools; we have a small team and each developer should be able to work on every aspect of the system.<p>To get a feel for one of our software products, please visit zephyrondemand.com and click Try Zephyr Analytics.<p>Please note: this is a full-time position in our Zephyr Cove office. Remote work will be considered based on experience, but total travel time to the Zephyr office can be no longer than 3 hours. If you're interested, please email matt.motherway -at- informais.com (and put “Hacker News” in the subject). Thank you.</font></span><p><font size="1"><u><a href="reply?id=8543518&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8545306" onclick="return vote(this)" href="vote?for=8545306&dir=up&by=jecjec&auth=276737f36ed1213ef0d50057cd08007ee93fa98d&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8545306"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=jontonsoup">jontonsoup</a> 7 days ago | <a href="item?id=8545306">link</a></span></div><br>
<span class="comment"><font color="#000000">Skilledup Academy (New York)- Senior Ruby Developer<p>TL;DR:<p>We’re looking for a Senior Ruby Developer to help us build a mentored online education platform to get people their first job in a new career. You are a coder, a system designer, and a mentor. More than that, the Senior Ruby Developer is a crucial, respected contributor to a startup team that is playing to win. Our code is pristine. We are nice.<p>We are looking for 2+ years of professional rails experience. Our website is at academy.skilledup.com.<p>Our Beliefs:<p>§ Education changes the world: We're an education company at heart. We care about the growth of our learners and our employees. We have investment days on Fridays to research the competition, learn new skills, and do things that get us closer to our vision.<p>§ Sustainable Code: We practice BDD. Our code is pristine and we're proud of the work we produce. We have over 95% test coverage, but we focus on writing the right kinds of tests.<p>§ Lean: We don't build things we don't need. We iterate quickly on what we learn.<p>§ Cross-Functional Teams: Our team is composed of generalists. There is no "wall" to throw things over. We aren’t fans of the "assembly line" model of development.<p>§ Flat Organization: We believe good ideas come from anyone in the crowd. In that sense, we are a flat organization.<p>§ Design First: We really care about UX and design, and bring 3 to 5 users in every week for user testing so that we stay close to our users. We first design wide, then design deep.<p>Tools include: Ruby on Rails, Postgres, Heroku, RSpec, Factory Girl, CoffeeScript, Konacha & Mocha, Trello, GitHub, git rebase -i, CodeClimate, Gemnasium, and CircleCI.</font></span><p><font size="1"><u><a href="reply?id=8545306&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543247" onclick="return vote(this)" href="vote?for=8543247&dir=up&by=jecjec&auth=c89f25b95ae0b3f82af13a0b0c470f26d6770465&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543247"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=Bahamut">Bahamut</a> 8 days ago | <a href="item?id=8543247">link</a></span></div><br>
<span class="comment"><font color="#000000">Location: Palo Alto, CA<p>Hey, I'm a senior frontend engineer at Jiff, a health & wellness company focused on improving the well-being of people. We are located in downtown Palo Alto, less than 5 blocks away from the Palo Alto Caltrain station.<p>We sport benefits including unlimited vacation, paid trips to conferences, catered lunches on Fridays and oodles of snacks & drinks & coffee, periodic team lunches, 15" Macbook Pro Retina w/ 27" Apple Cinema display (or gear of your choice), and noise canceling headphones (or headphones of your choice)<p>We are looking for a senior UI/UX engineer to work with our world class frontend engineers, including three contributors to Angular.js & various other open source libraries, with an eye for the future. We are willing to relocate the right candidate.<p>In particular, we are looking for primarily someone stellar at styling with CSS quickly & well, and excellent working with teams and across teams.<p>Not necessary but bonus points for JavaScript expertise, Angular, d3.js and/or CSS3 animation/tranformation experience<p>To give an idea of our frontend stack, we are currently using:<p><pre><code> - LESS, d3.js, lodash
- Angular.js, Ionic
- Node.js, Grunt, Cordova, Karma/Protractor (testing)
</code></pre>
We have an eye for potentially moving to these technologies in the near future (or soon):<p><pre><code> - ES6 (soon)
- Sails.js & PostGreSQL
- Angular 2.0/Web Components (via Polymer)/React
</code></pre>
If you are interested, you can apply via <a href="http://www.jobscore.com/jobs2/jiff/senior-web-developer/cG_hhu-aCr46DViGakhP3Q" rel="nofollow">http://www.jobscore.com/jobs2/jiff/senior-web-developer/cG_h...</a> or email me at wesley [at] jiff.com .<p>Please no recruiter or other non-candidate emails.</font></span><p><font size="1"><u><a href="reply?id=8543247&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543743" onclick="return vote(this)" href="vote?for=8543743&dir=up&by=jecjec&auth=d59ff61bf01fe7e87f9d3fbcd6b6002e50c5403d&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543743"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=sparkman55">sparkman55</a> 8 days ago | <a href="item?id=8543743">link</a></span></div><br>
<span class="comment"><font color="#000000">Rinse - www.rinse.com - Design District, San Francisco, CA<p>Rinse is a technology-enabled dry cleaning and laundry delivery service. We've been growing our service at an exponential rate for the past year, and our customers love us! We have a number of open positions, and have hired a significant portion of our team via Hacker News.<p>Rinse is hiring a Software Engineer to develop our functionality across the stack. We have hybrid mobile apps for both Android and iOS for our customers AND our drivers. We also have sophisticated web-based tools for our customer service team, internal operations staff, and vendors. Laundry is a surprisingly-complex logistical process, and so our customer-facing software is just the tip of the iceberg. We're solving problems like the Traveling Salesman and image classification, too. Our tech stack is approximately HTML5 / Backbone.js / Django / Python / Postgres / Heroku / Ubuntu, but we're a tiny tech team, so any newcomer will be able to shape architecture.<p>We're also hiring for a "Special Operations Associate" which is someone who may not have unique technical ability, but who has great aptitude and a willingness to work hard to improve our business. Analytical capability and attention to detail are important skills for this person. Bonus points for someone with an Industrial Engineering or Process Engineering background. This position is great for an ambitious hustler looking to join a "rocket ship" startup. Obviously, this position presents a significant growth opportunity.<p>Any applicant who we interview will receive $25 in free Rinse credit! If you live in San Francisco, give us a try!<p>Interested? I'd be happy to answer any questions at [email protected].</font></span><p><font size="1"><u><a href="reply?id=8543743&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543002" onclick="return vote(this)" href="vote?for=8543002&dir=up&by=jecjec&auth=f7bd944a43b3eb67b3b406bec25c5f1e5ed34a90&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543002"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=drpancake">drpancake</a> 8 days ago | <a href="item?id=8543002">link</a></span></div><br>
<span class="comment"><font color="#000000">CTO, Tradewave — <a href="https://tradewave.net" rel="nofollow">https://tradewave.net</a> — London<p>We're building an algorithmic trading platform for cryptocurrencies. You write your trading strategy in Python, backtest it against our historical data, then run it live on any of the major exchanges. All in the browser.<p>Come and experience what it's like to be in on the ground floor at a promising tech startup. We're only a few months old, backed up some of the best investors in the crypto space, and already generating revenue.<p>More information: <a href="https://tradewave.net/jobs/" rel="nofollow">https://tradewave.net/jobs/</a></font></span><p><font size="1"><u><a href="reply?id=8543002&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8552468" onclick="return vote(this)" href="vote?for=8552468&dir=up&by=jecjec&auth=25dfdd26ebf5614b6c190fe1e4a9cec98fba452b&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8552468"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=clieu1">clieu1</a> 5 days ago | <a href="item?id=8552468">link</a></span></div><br>
<span class="comment"><font color="#000000">San Francisco, San Jose, or Seattle - New College Grads, Visa, and all levels - www.clustrix.com<p>Clustrix is taking on the lofty goal of horizontally scaling a relational SQL database. We are looking for smart and motivated developers of all levels to help us take our database to the next level. We are looking to fill positions in:
* Software Development (must be comfortable in C, prior database experience desirable but not necessary)
* Software Quality (Python, test automation and experience in distributed systems or databases)
* Technical Writer<p>Here are some things that make Clustrix a great place to work:
1. Our team is small, so you get to own significant projects and contribute in a big way to the product.
2. We have a lot of interesting problems to work on, in a variety of areas.
3. Our customers love us. We help them do things they could never do with their legacy SQL databases.
4. We are passionate about making our software work better and faster.<p>More info available here: <a href="http://www.clustrix.com/company/careers/openings/" rel="nofollow">http://www.clustrix.com/company/careers/openings/</a></font></span><p><font size="1"><u><a href="reply?id=8552468&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8554471" onclick="return vote(this)" href="vote?for=8554471&dir=up&by=jecjec&auth=2773e17bdcf8f41cf27b731358e76916e4f3b1b0&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8554471"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=mattnguyen">mattnguyen</a> 5 days ago | <a href="item?id=8554471">link</a></span></div><br>
<span class="comment"><font color="#000000">San Francisco, CA - <a href="http://www.checkmate.io/careers" rel="nofollow">http://www.checkmate.io/careers</a> - Please apply on the site<p>Checkmate powers mobile check-in technology and a platform to manage guest experience for hotels. Our management team consists of early team members at Kayak, Jetsetter, and Yelp. Feel free to take a look at our job board and apply on the site, but here are some roles we're specifically looking to fill out:<p>* Lead Software Engineer - <a href="http://www.checkmate.io/?jobs=lead-engineer" rel="nofollow">http://www.checkmate.io/?jobs=lead-engineer</a><p>* Software Engineer (Front-End) - <a href="http://www.checkmate.io/?jobs=software-engineer-front-end" rel="nofollow">http://www.checkmate.io/?jobs=software-engineer-front-end</a><p>* Software Engineer (Generalist) - <a href="http://www.checkmate.io/?jobs=ruby-developer" rel="nofollow">http://www.checkmate.io/?jobs=ruby-developer</a><p>Our technology stack includes Ruby, Rails, EmberJS, Go, PostgreSQL, Redis, Heroku, and AWS.</font></span><p><font size="1"><u><a href="reply?id=8554471&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543167" onclick="return vote(this)" href="vote?for=8543167&dir=up&by=jecjec&auth=17e60914671da08484949146ccee4bd213dedb34&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543167"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=waseems">waseems</a> 8 days ago | <a href="item?id=8543167">link</a></span></div><br>
<span class="comment"><font color="#000000">Fast growing startup looking for Ruby-on-Rails engineer (for our Rotterdam/Netherlands office)
------<p>Fileboard is a fast-moving technology startup based in Silicon Valley and the Netherlands. We are innovating and disrupting the sales domain. Backed by some of the best known investors in the USA, the company is on a hyper growth path. Founded in 2011, Fileboard launched its platform over a year ago and since then has acquired some high profile customers (both small and big).<p>For our Rotterdam office we are looking for a RoR engineer to help build and take our product to the next level. You'll be part of a small but highly effective product team that likes to roll up their sleeves and get stuff done.<p>Who are you:
---<p>* Entrepreneurial mindset<p>* Team player with a winners mentality<p>* Always learning, trying out new technologies<p>* Proven experience building and scaling web apps<p>* Customer focused and genuinely want to help people
You get things done<p>* (tired of all those boring enterprise software projects)<p>What do we offer:
---<p>* A great adventure in startup land and a peek into Silicon Valley lifestyle<p>* Awesome working environment to grow and learn<p>* Entrepreneurial team with previous exits (and failures) under their belt<p>* Much room to steer the direction of the product and architecture<p>* Unlimited vacation days<p>* Oh yeah... a competitive salary and stock options<p>Bonus points:
---<p>* Did your own startup and failed<p>* Experience with Node.JS / MongoDB / Redis<p>* Frontend experience with Ember.JS<p>* Can do or want to learn iOS/Android development<p>Interested?
---<p>Shoot us an email hello at fileboard.com with your resume and github account.<p>Recruiter?
---<p>Please don't waste our time... thank you.</font></span><p><font size="1"><u><a href="reply?id=8543167&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543797" onclick="return vote(this)" href="vote?for=8543797&dir=up&by=jecjec&auth=57ccc8465fa05de984b84258de5effdbc113e401&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543797"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=pandamcbonesaw">pandamcbonesaw</a> 8 days ago | <a href="item?id=8543797">link</a></span></div><br>
<span class="comment"><font color="#000000">Ayasdi - Menlo Park, CA - Fulltime, Frontend Engineer / UI Developer<p>-- the pitch --<p>Ayasdi uses a pioneering approach to automatically discover insights from complex data. Founded in 2008 after a decade of research at Stanford, DARPA, and NSF, Ayasdi uses Topological Data Analysis (TDA) to unify best-of-breed machine learning approaches into a common framework without the need to write algorithms, queries or models. We’re building a platform to solve some of the world’s most complex data problems, are well funded by top-tier VCs and have a passionate team with a great culture.<p>-- position info --<p>As a frontend engineer at Ayasdi you will develop data analysis and visualization apps on top of TDA. You will work to solve challenging UI/UX problems related to analyzing and visualizing massive datasets. Our stack is simple and sweet: Node, Backbone, D3 & Zepto. For more info, we hosted a d3.js meetup a few months ago:
<a href="https://www.youtube.com/watch?v=fDvgMRNG1Yg" rel="nofollow">https://www.youtube.com/watch?v=fDvgMRNG1Yg</a><p>-- requirements --<p>• Familiarity with client/server apps and MVC design patterns<p>• Proficiency with HTML/CSS/Javascript, D3, and/or Backbone<p>• Familiarity with machine learning, statistics, or data visualization is a big plus<p>• BA/BS degree in CS or EE; MS/PhD a plus<p>-- contact --<p>I'm on the frontend engineering team, but we are also hiring compute and backend engineers.<p>Feel free to send me an email if you want to know more: [email protected]<p>Or head over to our careers page: <a href="http://www.ayasdi.com/company/careers/" rel="nofollow">http://www.ayasdi.com/company/careers/</a></font></span><p><font size="1"><u><a href="reply?id=8543797&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543382" onclick="return vote(this)" href="vote?for=8543382&dir=up&by=jecjec&auth=70f4f8448f6ec18b9de5c8f27fec56d71dbc73e6&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543382"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=rprovey"><font color="#3c963c">rprovey</font></a> 8 days ago | <a href="item?id=8543382">link</a></span></div><br>
<span class="comment"><font color="#000000">SeeClickFix - New Haven, CT<p>SeeClickFix is a communications platform for citizens to report non-emergency issues, and governments to track, manage, and reply--ultimately making communities better through transparency, collaboration, and cooperation.<p>Full Stack Ruby / Rails Developer<p>We're looking for candidates to join our core platform Rails team. You'll be part of a only-as-big-as-it-needs-to-be Engineering team with a passion for learning, individual growth and overall team excellence.<p>You'll help us refine our understanding of Agile and how best to apply it within the Engineering team and company at large.<p>The majority of our development is done paired and revolves around Ruby 2.*, Rails, RSpec, Ember.js, Postgres, PostGIS, Redis, memcached, Resque, NewRelic, CodeClimate, Travis & Git/hub.<p>You'll be part of a engineering team committed to being world class and in turn building a platform of similar measure.<p>What We Are Looking For<p>- Strong Knowledge of Ruby programming language<p>- Strong Knowledge of Rails frameworks<p>- Exceptional software engineering knowledge; OO Design Principles<p>- Experience in test first development and pair programming a plus<p>- Experience in web front-end development a plus; JavaScript, client-side MVC frameworks<p>- Experience deploying to cloud environments a plus<p>- Strong communication skills and interest in a pair-programming environment<p>- Passion for growing your skills, tackling interesting work and challenging problems<p>This listing is for a full-time position at our office in downtown New Haven.<p>You can email me personally at [email protected], or review and apply to this and other positions at talent.seeclickfix.com.</font></span><p><font size="1"><u><a href="reply?id=8543382&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8550628" onclick="return vote(this)" href="vote?for=8550628&dir=up&by=jecjec&auth=7631227671c903802c77d471406dc585869da97f&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8550628"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=davidshariff">davidshariff</a> 6 days ago | <a href="item?id=8550628">link</a></span></div><br>
<span class="comment"><font color="#000000">Yahoo! (London, UK) - Build products that become a daily habit for millions of users and partners<p>Our engineers build web applications for some of the most trafficked sites in world, organizing the world’s information for millions of people every day. You will be joining a team of world-class engineers trying to solve some of the hardest problems on the web, building next-generation contextual, personal and socially relevant experiences. If you want an opportunity to make a big impact on a high volume production product, this is the place to be.<p>We are looking to hire both front-end and back-end engineers, from graduates through to seniors.<p>☆☆☆ About EMEA Search ☆☆☆<p>★ Use a variety of languages and technologies to make an impact<p>★ Develop software that powers experiences on smartphone, tablet, and desktop<p>★ Collaborate with and learn from designers, product managers, engineers, and executives<p>★ Create technically excellent software iteratively using Agile methods<p>★ Drive growth in audience, engagement, and revenue globally<p>☆☆☆ How to apply? ☆☆☆<p>★ If you're interested or want to learn more? Email me with a copy of your CV at [email protected]</font></span><p><font size="1"><u><a href="reply?id=8550628&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544347" onclick="return vote(this)" href="vote?for=8544347&dir=up&by=jecjec&auth=b08fa68c2da21f082f7d617bcbbbdaaa6e993099&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544347"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=blo">blo</a> 7 days ago | <a href="item?id=8544347">link</a></span></div><br>
<span class="comment"><font color="#000000">Vurb - San Francisco, CA - <a href="http://vurb.com" rel="nofollow">http://vurb.com</a><p>We won TC Disrupt NYC and have raised over $10M with a small team - <a href="http://techcrunch.com/2014/08/07/the-rebundling" rel="nofollow">http://techcrunch.com/2014/08/07/the-rebundling</a><p>Vurb is evolving search and sharing on web and mobile. Rather than windows/tabs or jumping from app to app, we're a platform bringing services together and delivering a cohesive experience in one place - an app you'll use every day.<p>Investors include Max Levchin, Drew Houston (Dropbox), Naval Ravikant (AngelList), CrunchFund, Redpoint Ventures, and many others.<p>Why me? Apply if you want to join a small team that is rapidly growing, take on significant responsibility and ship rapidly. This is a hard problem with the potential to improve how we do things on the Internet. We're based in downtown SF and are moving to a shiny new office soon!<p>Full-time opportunities (interview on-site, H1B transfers OK)<p>* Full-stack Engineer - generalist opportunities across the stack: backend, frontend, APIs, devops. We use a lot of JavaScript / node.js<p>* Sr. Mobile Engineer - iOS / Android engineers (2 years+ experience)<p>* Search / Data Scientist / Data Engineer - search, classification, ranking, ML, graphs, data crawling/processing, entity de-duplication. Search experience strongly desired. CS degree required.<p>* Product Designer - we love reviewing portfolios / Dribbble<p>* Marketing and Growth Lead - experience marketing consumer products? let's talk<p>[email protected] | angel.co/vurb</font></span><p><font size="1"><u><a href="reply?id=8544347&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544962" onclick="return vote(this)" href="vote?for=8544962&dir=up&by=jecjec&auth=e41930eed2e7fe5ecc4333ee1dd25237e46ce80c&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544962"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=jakestein">jakestein</a> 7 days ago | <a href="item?id=8544962">link</a></span></div><br>
<span class="comment"><font color="#000000">RJMetrics - Philadelphia, PA <a href="http://rjmetrics.com/jobs" rel="nofollow">http://rjmetrics.com/jobs</a><p>We're hiring for software engineers, devops, analysts, designers, business development, sales, and account management.
Some more about us:<p>At RJMetrics, we inspire and empower data-driven people with powerful hosted software. Hundreds of high-growth e-commerce and software as a service businesses use our analytics platform to collaborate and make smarter decisions using data.
RJMetrics is backed by some of the most successful technology investors in New York and Silicon Valley, but we are Philly born and raised. We are located in the heart of Center City Philadelphia in convenient proximity to all major rail lines.<p>We are a growing team tackling big problems:
- We want to transform large datasets more efficiently
- We want to push the envelope of possibility for in-browser data visualizations
- We want to make complex data questions easy for anyone to understand
- While we currently work with tools like PHP, Clojure, AngularJS, MySQL and Hadoop, we are looking for candidates who can identify the best tools for a given job and quickly adapt. Prior experience with these technologies is not a requirement.<p>The life and responsibilities of an RJMetrics developer include:
- Source control using git
- Continuous integration and deployment via our one-click build-and-deploy system
- Milestone and issue tracking with github and Trello
- A commitment to preventing tech debt and tackling the root causes of issues
- Comfortable working conditions and access to the best tools money can buy</font></span><p><font size="1"><u><a href="reply?id=8544962&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8554401" onclick="return vote(this)" href="vote?for=8554401&dir=up&by=jecjec&auth=fe18e4c6a2a6d8e8f5f0274c78d3e5adeec6a9fa&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8554401"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=ssk2">ssk2</a> 5 days ago | <a href="item?id=8554401">link</a></span></div><br>
<span class="comment"><font color="#000000">Mesosphere - <a href="https://mesosphere.com/jobs" rel="nofollow">https://mesosphere.com/jobs</a> - San Francisco, CA
INTERN, VISA<p>We're a fast growing and well funded distributed systems / enterprise tech / infrastructure startup in San Francisco. We provide tools and services around the Apache Mesos project, a cluster scheduler that currently runs tens of thousands of nodes in production at Twitter.<p>Currently recruiting engineers heavily across the stack, from front-end (Rails, Python, Javascript) to back-end (Python, Go, Scala) to core (C++).<p>We're significant contributors to open source and are one of the main committers to Apache Mesos, as well as other popular projects like Chronos and Marathon.<p>Our customers run huge numbers of compute nodes, so if you're excited by the prospect of your code running at immense scale, get in touch.<p>Full-time hires and summer 2015 interns welcome. Please apply via our jobs page for full-time positions or email [email protected] for an internship.</font></span><p><font size="1"><u><a href="reply?id=8554401&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8554717" onclick="return vote(this)" href="vote?for=8554717&dir=up&by=jecjec&auth=32c686ba8775a55cab31d47fca9e1e9768a720d0&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8554717"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=maramaemartin">maramaemartin</a> 5 days ago | <a href="item?id=8554717">link</a></span></div><br>
<span class="comment"><font color="#000000">COURSE HERO - REDWOOD CITY, CA - FT<p>We're looking for Associate and Senior level Software Engineers!<p>Course Hero is creating a platform where students and experts can share and access great academic content they need to succeed at any time, from anywhere. Today, millions of students take advantage of our educational resources including study guides, flashcards and tutors.
We believe that improved access to knowledge enriches lives and increases future opportunities. Technology is revolutionizing the way we learn, and we're committed to providing individualized support to students everywhere to help them expand their academic knowledge and professional skills.<p>Jr. SWE: <a href="http://www.thesourcery.com/jobs/792/applications/new" rel="nofollow">http://www.thesourcery.com/jobs/792/applications/new</a><p>Sr. SWE:
<a href="http://www.thesourcery.com/jobs/793/applications/new" rel="nofollow">http://www.thesourcery.com/jobs/793/applications/new</a></font></span><p><font size="1"><u><a href="reply?id=8554717&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8563611" onclick="return vote(this)" href="vote?for=8563611&dir=up&by=jecjec&auth=25ecb269ae33c353dcbf4fbb2f6a0ae63b2806c7&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8563611"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=annalewis7">annalewis7</a> 3 days ago | <a href="item?id=8563611">link</a></span></div><br>
<span class="comment"><font color="#000000">Viget -- Durham, NC; Boulder, CO; DC area -- Front-End Developer INTERN<p>As a Front-End Developer Intern, you'll spend your summer working alongside our designers and developers. You'll meticulously build out design compositions into HTML/CSS for integration into backend systems. You'll join client meetings to experience client presentations and design consultations. You'll meet regularly with your Advisor to discuss your progress, and you'll participate in monthly team discussions.<p>Learn More and Apply: viget.com/internships<p>Viget is an Equal Opportunity Employer.</font></span><p><font size="1"><u><a href="reply?id=8563611&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543249" onclick="return vote(this)" href="vote?for=8543249&dir=up&by=jecjec&auth=ef4aaed2e37219cfa3b54981cc6f08c70fd09767&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543249"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=biomimic">biomimic</a> 8 days ago | <a href="item?id=8543249">link</a></span></div><br>
<span class="comment"><font color="#000000">Berkeley, CA | Richmond, CA<p>Familiarity with 2 or more of the following:<p>- Genomics
- Bioinformatics
- Python<p>Internships are also available.<p>On a global basis and in aggregate, wet lab experiments in human biology produce one of the most important forms of data known to mankind, especially when it relates to genes, proteins, genomic pathways and environmental factors that can improve human health and extend human lifespan. We are a start-up with a focus on Life Sciences in the area of advanced big data analytics connected to human health and extending lifespan. Currently our platform, GenoPharm©, and solutions are free to academic institutions.<p>One of our immediate goals includes enabling an exhaustive exploration of all known and unknown relationships between age-related genes, proteins, compounds, pathways etc. associated to human longevity backed by the experimental findings of our own and those of our collaborators. For example, see a few of our data visualization projects here displaying pathway-to-pathway, pathway-to-gene/protein hidden relationships and interactions.<p>Based on a patented (#7,987,191) platform, our system includes advanced and proprietary big data analytics, products, tools and interactive dynamic data visualizations for the purpose of uncovering hidden relationships between age-related genes, DNA repair genes, proteins, biological processes, molecular compounds, plant compounds (phytochemicals), enzymes, genomic pathways, micro and macro environment that connect to extending human healthspan and lifespan.<p><a href="http://genopharmix.com" rel="nofollow">http://genopharmix.com</a><p>@genopharmix<p>[email protected]</font></span><p><font size="1"><u><a href="reply?id=8543249&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543856" onclick="return vote(this)" href="vote?for=8543856&dir=up&by=jecjec&auth=54b6fec1885969e33c3d947ae6d7732c897b24d7&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543856"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=jonbischke">jonbischke</a> 8 days ago | <a href="item?id=8543856">link</a></span></div><br>
<span class="comment"><font color="#000000">Entelo - San Francisco (SOMA), CA - Full-time - <a href="http://www.entelo.com/" rel="nofollow">http://www.entelo.com/</a><p>Entelo's mission is to help companies build great teams by allowing them to search for talented people regardless of where they represent themselves on the web. With over 400 million indexed social profiles, Entelo provides a powerful search tool that predicts which candidates are more likely to look for new opportunities and provides collaborative tools to help recruiters and hiring managers recruit more efficiently.<p>We're helping 160+ companies with their hiring needs including fast-growth companies such as Facebook, Salesforce, Github and Lyft.<p>We're particularly grateful to the Hacker News community as a couple of our recent engineering hires have come through HN and have been absolutely wonderful to work with.<p>Our Tech Stack: Ruby, Scala, Rails, MySQL, Mongo, Redis, Elasticsearch<p>Some of our perks include a strong commitment to training and development, $300 headphone allowance, 100% coverage of employee health care premiums, 1:1 matching for donations to non-profits, catered lunches and free in-office bike tune-ups (our co-founder worked at a bike shop in a past life!).<p>We're looking for sharp, collaborative full-stack rubyists, data engineers and devops engineers here in San Francisco. Please see our careers page for more info <a href="https://www.entelo.com/careers" rel="nofollow">https://www.entelo.com/careers</a><p>I'm the founder and you can email me directly at jon at entelo dot com if you're interested in working with us at Entelo.</font></span><p><font size="1"><u><a href="reply?id=8543856&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8545028" onclick="return vote(this)" href="vote?for=8545028&dir=up&by=jecjec&auth=a90199ad1b3ff0c92da8b4048625722ebbedfa88&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8545028"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=PhantomPhreak">PhantomPhreak</a> 7 days ago | <a href="item?id=8545028">link</a></span></div><br>
<span class="comment"><font color="#000000">Counterparty - REMOTE - <a href="http://counterparty.io" rel="nofollow">http://counterparty.io</a><p>Counterparty is a freely licensed and open-source platform for peer-to-peer finance that lives on the Bitcoin blockchain. The network has been live since January, and it has seen over 90k transactions since then.[1] Overstock.com recently announced that it would be building the world's first SEC-regulated stock market for cryptosecurities on our platform.[2]<p>The non-profit Counterparty Foundation is hiring a developer to join a team of two (myself and one other) dedicated to further developing the Counterparty Protocol and software ecosystem (e.g. wallet software, block explorers). Experience with Python is strongly preferred, as much of the work will be with the protocol's reference implementation, counterpartyd.[3]<p>It goes without saying, this is an unconventional position requiring a great deal of independence, self-direction and creativity.<p>Contact: [email protected]<p>Web Wallet: <a href="https://counterwallet.io" rel="nofollow">https://counterwallet.io</a><p>[1] - <a href="https://blockscan.com" rel="nofollow">https://blockscan.com</a><p>[2] - <a href="http://www.coindesk.com/overstock-hires-counterparty-developers-build-cryptosecurity-stock-exchange/" rel="nofollow">http://www.coindesk.com/overstock-hires-counterparty-develop...</a><p>[3] - <a href="https://github.com/CounterpartyXCP/counterpartyd" rel="nofollow">https://github.com/CounterpartyXCP/counterpartyd</a></font></span><p><font size="1"><u><a href="reply?id=8545028&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543214" onclick="return vote(this)" href="vote?for=8543214&dir=up&by=jecjec&auth=1141f3736d655aca2c21848adc1fad4113885695&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543214"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=sethbannon">sethbannon</a> 8 days ago | <a href="item?id=8543214">link</a></span></div><br>
<span class="comment"><font color="#000000">Not Your Typical CTO Position - Amicus (YC S12) Is Hiring<p>This is not your typical CTO position. You’ll be joining a social good startup that is just recovering from a near death moment. Read about it here: <a href="http://sethbannon.com/mistakes-you-should-never-make" rel="nofollow">http://sethbannon.com/mistakes-you-should-never-make</a><p>If you find these sorts of challenges interesting and you want to join a mission-driven company, read on.<p>-- About Us --<p>Amicus is a social good startup based in NYC that is building the tools people need to organize around the causes they care about. We currently power digital organizing efforts for some of the world’s largest nonprofits, and have recently opened up our tools to companies as well.<p>Amicus is hiring a CTO to lead our development efforts and build out a dev team.<p>-- About you --<p>+ You have a proven track record leading technology teams
+ You’re product-centric and feel responsibility over the what you build
+ You enjoy leading, mentoring, and managing
+ You’ve been through the startup fires
+ You want to build an organization, not just a product<p>-- Required Skills --<p>+ Expertise in Rails, MongoDB, Javascript
+ Strong knowledge of AWS ecosystem
+ Solid knowledge of Chef
+ Proven ability to jump into a new project without much guidance<p>-- Required Experience --<p>+ Strong DevOps experience (we use Chef and multi-threaded Rails on jRuby)
+ Experience architecting, building, and deploying SOA apps
+ Proven ability to work with a legacy code base<p>If you’re interested, email a link to your github along with a bit about why you’re a good fit to [email protected]. New York City.</font></span><p><font size="1"><u><a href="reply?id=8543214&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8544015" onclick="return vote(this)" href="vote?for=8544015&dir=up&by=jecjec&auth=9bb56551b31ef38153721f47b6b241dcc3f4e67f&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544015"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=mmelin">mmelin</a> 7 days ago | <a href="item?id=8544015">link</a></span></div><br>
<span class="comment"><font color="#000000">Tictail - Growth Engineer - New York, NY (Fulltime, on site)<p>If you are excited about the thought of helping hundreds of thousands of small businesses across the globe succeed through your product, engineering and data skills, we should talk. We're establishing the Tictail growth team in New York. We think growth is one of the most creative and exciting things you can work on as an engineer, but it can be used for both good and evil. We try to do good.<p>Read more here: <a href="http://tic.tl/1wXXnhm" rel="nofollow">http://tic.tl/1wXXnhm</a><p>Or email me: martin+hn (at) tictail.com</font></span><p><font size="1"><u><a href="reply?id=8544015&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8544547" onclick="return vote(this)" href="vote?for=8544547&dir=up&by=jecjec&auth=eff05bdd8db9ace31efe0ddd359663f4c6b0abc2&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8544547"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=HeyLaughingBoy">HeyLaughingBoy</a> 7 days ago | <a href="item?id=8544547">link</a></span></div><br>
<span class="comment"><font color="#000000">Nothing in this post or at the linked site explains what the hell your company does!</font></span><p><font size="1"><u><a href="reply?id=8544547&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543612" onclick="return vote(this)" href="vote?for=8543612&dir=up&by=jecjec&auth=56d17ef008485f66f71c33c759fe376677db581d&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543612"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=robg">robg</a> 8 days ago | <a href="item?id=8543612">link</a></span></div><br>
<span class="comment"><font color="#000000">From principles of neuroscience, we're building the phase shift in wearable computers - optimizing how you feel every minute of every day for health, productivity, and happiness.<p>FULL-TIME in Boston: Since we see data quality as the foremost goal from sensors to servers, we're hiring for multiplatform experience - embedded firmware, mobile operating systems, and full stack.<p>A background in data science unites the team. My background grew from fMRI and our technologies are designed as a time series neuroimage for your life.<p>Say [email protected]. We are most impressed by things you've built.</font></span><p><font size="1"><u><a href="reply?id=8543612&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8555129" onclick="return vote(this)" href="vote?for=8555129&dir=up&by=jecjec&auth=94e69fe61738c16515675f706cdef7a998cc783f&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8555129"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=florianf"><font color="#3c963c">florianf</font></a> 5 days ago | <a href="item?id=8555129">link</a></span></div><br>
<span class="comment"><font color="#000000">Broadcom - Irvine, CA - Linux kernel engineer<p>Broadcom is looking for full-time software engineer candidates specializing in embedded Linux and bootloader development. Focus areas include:
- Board bringup and driver support for set-top box and cable modem chipsets
- Debugging silicon/board/OS issues and postmortem analysis
- ARM and MIPS system-level programming
- Helping to develop and verify new CPU and peripheral designs
- Linux networking and network offload
- Power management
- Performance analysis and system architecture
- Security isolation via hypervisors, LXC, HW restrictions, etc.
- Building and maintaining an embedded Linux distribution
- Working with upstream maintainers to develop new features and fix bugs<p><a href="http://jobs.broadcom.com/job/Irvine-Sr_-LinuxBootloader-Software-Systems-Engineer-CA-92602/228700600/" rel="nofollow">http://jobs.broadcom.com/job/Irvine-Sr_-LinuxBootloader-Soft...</a></font></span><p><font size="1"><u><a href="reply?id=8555129&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8548588" onclick="return vote(this)" href="vote?for=8548588&dir=up&by=jecjec&auth=665f1cb8592b9d7be5750a1a71664d147410e6ee&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8548588"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=salar">salar</a> 6 days ago | <a href="item?id=8548588">link</a></span></div><br>
<span class="comment"><font color="#000000">Amsterdam, the Netherlands. No remote work – must be willing to work at our Amsterdam office.<p>Silk [1] is looking for a Haskell, TypeScript and Javascript Engineers: <a href="https://jobs.silk.co/" rel="nofollow">https://jobs.silk.co/</a><p>We're building a product that makes it easy for people to publish data online, in a way that makes their data easy to query, visualize and share.<p>On a deeper level, by creating a platform for users that has native support for structured data, we're bringing the semantic web (i.e. machine readable data) to the masses.<p>We're working on many interesting and challenging problems, with a custom-built Haskell graph-database on the back-end and a cutting-edge Functional Reactive client-side framework in Javascript on the front-end [2]. Silk is well-funded by top-tier VCs (NEA and Atomico) and we're located in the city center of Amsterdam.<p>For more info & open positions: <a href="https://jobs.silk.co/" rel="nofollow">https://jobs.silk.co/</a><p>[1] <a href="https://www.silk.co/" rel="nofollow">https://www.silk.co/</a><p>[2] See <a href="http://engineering.silk.co/" rel="nofollow">http://engineering.silk.co/</a> for examples.</font></span><p><font size="1"><u><a href="reply?id=8548588&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543975" onclick="return vote(this)" href="vote?for=8543975&dir=up&by=jecjec&auth=5e0600e32bd990c5f1f32a2d066eda38097b4516&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543975"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=Equiet">Equiet</a> 7 days ago | <a href="item?id=8543975">link</a></span></div><br>
<span class="comment"><font color="#000000">Unite - Los Angeles - Fulltime or Interns<p>We're a stealthy startup looking for engineers to join our small highly skilled team based in Los Angeles. We are building a global data marketplace, with a focus on advertising industry. We are growing incredibly fast — our servers handle 2000 requests per second and serve more than 500 million users.<p>We are looking for experienced front-end developers and full-stack engineers. We use Angular/ES6 on the front end, and Java/Cassandra/Kafka/Storm on the back end.<p>Feel free to ping me anytime at [email protected].</font></span><p><font size="1"><u><a href="reply?id=8543975&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8545086" onclick="return vote(this)" href="vote?for=8545086&dir=up&by=jecjec&auth=a7226a48aa41bb3c8a44ca7aa35db4440fdcfc9a&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8545086"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=tharshan09">tharshan09</a> 7 days ago | <a href="item?id=8545086">link</a></span></div><br>
<span class="comment"><font color="#000000">BroadConnect - Downtown Toronto, Canada - Graduate/Co-Op/Full-Time<p>We are hiring full stack engineers (DevOps experience is greatly valued)<p>About Us<p>The parent company is a telecom provider with offices and subsidiaries in Canada, USA and UK. Our software engineering group functions more or less as a startup of the parent company, addressing specific pain points in the telecoms industry. We apply lessons and tactics from the fast the fast moving consumer web to bring great UI/UX to the enterprise space.<p>We are small engineering team looking to expand rapidly by hiring smart people. Our focus is on keeping up with best practices and staying DRY. We strive to create a great culture where learning is just as important as “doing” (i.e. grunt work).<p>About You<p>You are software engineer with a desire to improve yourself. You enjoy working on challenging tasks but also knows that some grunt work needs to be done from time to time. You are ideally a full stack engineer who is as comfortable with the frontend as the backend. You enjoy reading up on best practises and keeping with the fast past world of web development. You should strive to write production ready code (DRY), but would be willing to go back to refactor when you feel it's necessary.<p>Technology Stack<p>- Python/Django<p>- AngularJS<p>- Redis<p>- Postgres<p>You will get to work with us in the heart of downtown Toronto on University Avenue. If this sounds interesting, please contact me: [email protected]</font></span><p><font size="1"><u><a href="reply?id=8545086&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8555806" onclick="return vote(this)" href="vote?for=8555806&dir=up&by=jecjec&auth=18283e522c037585885b56604dba493976e31465&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8555806"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=vaughnd">vaughnd</a> 5 days ago | <a href="item?id=8555806">link</a></span></div><br>
<span class="comment"><font color="#000000">WizeNoze - Amsterdam, Netherlands. <a href="http://wizenoze.com" rel="nofollow">http://wizenoze.com</a><p>Job Title: AngularJS front-end developer<p>We're a natural language processing startup focused on creating and adapting content for children. We're building editing tools to adapt content to different reading levels; search engine with age-specific UI/UX and results; and lots of algorithms for classifying, summarizing, etc. content automatically.<p>We need someone who can tame this complexity with user-friendly, responsive web apps talking to the json api backend our scientists and developers are building.<p>Check out the full job posting: <a href="http://careers.stackoverflow.com/jobs/72093/angularjs-front-end-developer-for-natural-wizenoze" rel="nofollow">http://careers.stackoverflow.com/jobs/72093/angularjs-front-...</a></font></span><p><font size="1"><u><a href="reply?id=8555806&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8556811" onclick="return vote(this)" href="vote?for=8556811&dir=up&by=jecjec&auth=c0a767f392b760914bea5d1215ccee5afaa6687d&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8556811"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=vaughnd">vaughnd</a> 5 days ago | <a href="item?id=8556811">link</a></span></div><br>
<span class="comment"><font color="#000000">Forgot to mention that we're open to fully remote work as long as you're close to the UTC+1 timezone.</font></span><p><font size="1"><u><a href="reply?id=8556811&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543811" onclick="return vote(this)" href="vote?for=8543811&dir=up&by=jecjec&auth=edf1b660e9a62f9ec490d82ba9261bc416db18bd&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543811"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=georgespencer">georgespencer</a> 8 days ago | <a href="item?id=8543811">link</a></span></div><br>
<span class="comment"><font color="#000000">Rentify | London | Visa possible<p>Rentify is always hiring talented software engineers to join our team.<p>We're c. 50 people based across two sites in the UK, and we believe that estate agents don't have a right to exist in 2014. We also believe fees should be lower for landlords and tenants alike, and that technology should improve the lives of everyone in the rental sector.<p>So far we've transacted with over 160,000 landlords and just over a million tenants.<p>We are a Rails shop and we believe in TDD + the best solution winning the day, rather than the loudest voice. We favour engineers who focus on shipping and who have a track record of simplifying, cutting corners, and knowing when it's a good thing to accrue some technical debt.<p>Our office in London is right next door to Barbican tube station. It's dual facing so there's lots of natural sunlight, and we have a bar, soft drinks and snacks, a bunch of breakout spaces, video games, and all that sort of thing. We pay market + stock options, and have a strong culture, which I'd broadly characterise as hard-working, fun, and informal.<p>We're recruiting for all experience levels: some combination of Ruby, Rails, and JavaScript is required, but mainly we want a strong work ethic and a winning personality. We're especially keen to hear from women who are in the junior - midweight bracket.<p>If you've had a bad experience using an estate agent, then come and help us create a future without them. Email me on [email protected] or our CTO, David, on [email protected].</font></span><p><font size="1"><u><a href="reply?id=8543811&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8550851" onclick="return vote(this)" href="vote?for=8550851&dir=up&by=jecjec&auth=5180bba88eae965bdf69958693d26864abbedfb5&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8550851"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=jpwagner">jpwagner</a> 6 days ago | <a href="item?id=8550851">link</a></span></div><br>
<span class="comment"><font color="#000000">Trill - Boston / Cambridge MA -- <a href="http://trill.me/" rel="nofollow">http://trill.me/</a><p>Trill helps you find local live shows (currently in its pilot city of Boston) and everything that happens on a stage (music, theater, comedy, dance, etc).<p>We are super early stage, seed funded, and focused on the following 3 value props: (1) provide a very complete db of live shows (2) provide value to event venues and producers by getting them access to data about their audience (3) allow for a complete integration of event discovery/one-click-buy/transportation from your phone.<p>We are looking for a few awesome contributors:<p>(1) We need a UI development expert: bootstrap3, handlebars, javascript wizardry.<p>(2) We need a growth hacker with a focus on inbound marketing.<p>(3) We are quickly growing and would love to talk to people interested in our vision with any assortment of amazing abilities (django/python-related a plus!)<p>Please reach out to [email protected] or to me personally at <my-hn-username> [at] trill [dot] me</font></span><p><font size="1"><u><a href="reply?id=8550851&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543270" onclick="return vote(this)" href="vote?for=8543270&dir=up&by=jecjec&auth=f4278e60775a499f3bb69e3a5238a7461bc4cadd&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543270"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=scottaj2">scottaj2</a> 8 days ago | <a href="item?id=8543270">link</a></span></div><br>
<span class="comment"><font color="#000000">Atomic Object - Developers and Designers - Detroit, Ann Arbor, Grand Rapids MI (atomicobject.com)
The Right Fit: We don't care so much about your specific technology background. We're much more interested to know that you learn quickly, are disciplined in your work, and have already demonstrated interest and aptitude by having become proficient in a variety of languages and tools. We look for people who are passionate about development, who program in their free time, who are continually uncovering new things, and who enjoy sharing them.<p>A Variety of Technologies: At Atomic, it's not uncommon for someone to move from developing a new web site in Ruby to creating an internal application in .NET to building a mobile application in Objective-C or Java. We're passionate about quality and owning our clients' mission, so we select the best tools for the job.<p>A Broader Mindset: Atomic is a consultancy. As such, you'll be empowered and expected to interact directly with clients every day. You'll need to become comfortable and effective at understanding and discussing business goals, budgets, and timelines with clients. Additionally, you'll help market our services in a variety of ways including presenting at conferences, contributing to our shared company blog, networking within our client's organizations and among your peers, and expending your creative energies in ways we will not attempt to predict.<p>Interested in working for us? Send us an email to get the conversation started. We'd love to talk with you. [email protected]</font></span><p><font size="1"><u><a href="reply?id=8543270&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8543442" onclick="return vote(this)" href="vote?for=8543442&dir=up&by=jecjec&auth=8db3cdab02901eecd101f78b4c1f978543e03fe5&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543442"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=greenjellybean"><font color="#3c963c">greenjellybean</font></a> 8 days ago | <a href="item?id=8543442">link</a></span></div><br>
<span class="comment"><font color="#000000">Slightly off-topic but I've been to a few meetups hosted at the Ann Arbor office and have really enjoyed them! It's always great to see companies contribute to the development scene, thanks!</font></span><p><font size="1"><u><a href="reply?id=8543442&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543164" onclick="return vote(this)" href="vote?for=8543164&dir=up&by=jecjec&auth=b788f6babc60eb422523b3583beccbdf56c6e23c&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543164"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=yesimahuman">yesimahuman</a> 8 days ago | <a href="item?id=8543164">link</a></span></div><br>
<span class="comment"><font color="#000000">Location: Madison, WI or remote<p>The Ionic (<a href="http://ionicframework.com/" rel="nofollow">http://ionicframework.com/</a>) team is looking for great devs to help web developers build the future of mobile apps.<p>Right now we are looking for two positions: an Ionic Core Developer, and a Backend dev.<p>Core developers will be working on our open source SDK (<a href="https://github.com/driftyco/ionic" rel="nofollow">https://github.com/driftyco/ionic</a>), and should have a strong JS background (experience with AngularJS and cordova is a plus). Bonus points for having native development experience. Ionic is one of the top ~50 most popular open source projects on GitHub (and growing quickly!), and already over 220,000 apps have been built on the platform in 2014.<p>As a backend dev, you'll be helping us build out the business model behind the open source SDK. We have some big plans to take advantage of taboos around Hybrid development and build the most compelling mobile development stack in the world. Imagine the future of mobile apps running all on Ionic backend services. This is where we are going.<p>About us:<p>We're a funded team of 14 primarily based in Madison but with employees around the country. We're the people behind Codiqa and Jetstrap (<a href="http://codiqa.com/" rel="nofollow">http://codiqa.com/</a> <a href="http://jetstrap.com/" rel="nofollow">http://jetstrap.com/</a>) and are proud to have served close to 1M developers in our lifetime.<p>If interested, email [email protected].</font></span><p><font size="1"><u><a href="reply?id=8543164&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8549735" onclick="return vote(this)" href="vote?for=8549735&dir=up&by=jecjec&auth=b7f0c4de6abf504a115581b8c68310ae86d575e6&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8549735"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=jjnvdm">jjnvdm</a> 6 days ago | <a href="item?id=8549735">link</a></span></div><br>
<span class="comment"><font color="#000000">Amazon EC2 In Cape Town is Hiring!<p>---<p>Did you know that Amazon EC2 was created in the beautiful city of Cape Town, South Africa?<p>Did you know that the Cape Town Development Center owns and develops several of the core EC2 software services?<p>Are you passionate about software development and building systems that are changing the global computing landscape?<p>Then you should know that we are hiring. We have many positions available, including software engineers, technical managers and systems engineers. You can browse the available positions and their descriptions at the Cape Town Development Center website: <a href="http://www.adccpt.com/" rel="nofollow">http://www.adccpt.com/</a><p>I am a technical manager for the EC2 Instance Control Plane group. We build highly available and durable distributed systems that have to scale like crazy. You are welcome to contact me directly at jacovdm at amazon.com, or apply via the website. If you apply via the website and you want your CV routed to me, please indicate that with your application.<p>Regards, Jaco van der Merwe, Software Development Manager, Amazon EC2</font></span><p><font size="1"><u><a href="reply?id=8549735&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8553643" onclick="return vote(this)" href="vote?for=8553643&dir=up&by=jecjec&auth=6ea8f2e3fad71a0fed80d8775e0b81118a695783&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8553643"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=sidjoshi">sidjoshi</a> 5 days ago | <a href="item?id=8553643">link</a></span></div><br>
<span class="comment"><font color="#000000">Seattle, WA (H1B transfers are ok, no remote)<p>Are you a foodie and a rockstar developer?
Are you interested in gaining valuable domain knowledge in the Restaurants and Local food industry while solving tough technical problems at scale?<p>The Restaurants team in Amazon is hiring SDEs! We work on a platform that enables customers to order food from local restaurants with the convenience and selection of Amazon.<p>We are a close knit group of 4 SDEs, looking for new colleagues to build out new features to our Restaurant Takeout platform.<p>We are mostly full-stack, but are also open to devs who have specific interests.
Technologies we work on: Java, Rails, DynamoDB, SQS, SWF, Postgres on RDS, PostGIS, Angular.<p>Please send your resumes to sidjoshi at amazon dot com.<p>The "formal" job descriptions are located here: <a href="http://www.amazon.jobs/team/amazon-local#jobresults" rel="nofollow">http://www.amazon.jobs/team/amazon-local#jobresults</a></font></span><p><font size="1"><u><a href="reply?id=8553643&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543910" onclick="return vote(this)" href="vote?for=8543910&dir=up&by=jecjec&auth=034e7edd048ae9d000fe6ac03a1dd5da01c3299b&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543910"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=astralship"><font color="#3c963c">astralship</font></a> 7 days ago | <a href="item?id=8543910">link</a></span></div><br>
<span class="comment"><font color="#000000"><a href="http://astraldynamics.co.uk/" rel="nofollow">http://astraldynamics.co.uk/</a><p>we're hiring web developers. Must know some JS, but other than this we're not too fussy on experience. (though someone who knows AngularJS would be great).<p>we just got our first major contract to produce a mobile app for the local health board. Funded for 2 years by the UK innovation agency and the health board have been blown away by our approach, i we think we have a product.<p>We're looking for someone who is interested in moving to Gwynedd, North West Wales,UK (accomodation on landing can be arranged) and joining our group. You could be a junior webdev, or have more experience. We on the edge of the Snowdonia National Park, not far from Bangor.<p>Without being immodest I think we're pretty innovative. We're building our HQ inside a disused Methodist chapel with a Pirateship theme. And particularly interested in culture change, sustainability, "cybernetic" working...<p>(ps: if youre really keen an interesting in backend systems integration (HL7 messaging) drop us a line too.<p>our current website is not much to look at because we've been flat out securing the current project, but we are a credible outfit.<p>We're partnered with <a href="http://cognitive-edge.com" rel="nofollow">http://cognitive-edge.com</a> who are global thought leaders in Complex Adaptive Systems.<p>if youre looking for an adventure, drop us a line.<p>[email protected]
@liamkurmos</font></span><p><font size="1"><u><a href="reply?id=8543910&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543260" onclick="return vote(this)" href="vote?for=8543260&dir=up&by=jecjec&auth=afa88dd0a10bd1d89de0a10e5a73293ceb575e96&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543260"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=dwiel">dwiel</a> 8 days ago | <a href="item?id=8543260">link</a></span></div><br>
<span class="comment"><font color="#000000">Location: Durham, NC - <a href="https://plotwatt.com" rel="nofollow">https://plotwatt.com</a><p>PlotWatt helps reduce humanity's energy consumption. We do this by monitoring the energy that a building is using in real-time, analyzing the results, and messaging our customers about exactly how to save money and understand the operations of the building. We can detect sick appliances and warn you before they break. We can help you understand how your building is being used. We can help you reduce your energy bill.<p>We're all very excited that we get to reduce humanity's energy consumption every day.<p>We use Rails for all of our customer facing web services. We use python for all of our analytics and machine learning. We're hosted on AWS and do continuous deployment for most of our code base.<p>We're looking for a Lead Backend Web Engineer. You will be lead architect of our Rails app. We have a residential dashboard, a restaurant dashboard and internal analytics and tools for our customer experience team. You'll make client side/front end changes to our mobile app and backbone desktop app. No graphics design experience necessary, though it definitely doesn't hurt.<p>We're also interested in junior developers looking to learn about any/all of our stack. You'll have the opportunity to learn client-side rich web app architecture, back-end web architecture, cutting edge machine learning and cloud infrastructure.<p>If you're interested get a hold of me at [email protected]</font></span><p><font size="1"><u><a href="reply?id=8543260&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="0"></td><td valign="top"><center><a id="up_8543697" onclick="return vote(this)" href="vote?for=8543697&dir=up&by=jecjec&auth=97fa704ac87865c6c38332036ababcde9771afa1&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8543697"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=rvivek">rvivek</a> 8 days ago | <a href="item?id=8543697">link</a></span></div><br>
<span class="comment"><font color="#000000">Mountain View & India - <a href="https://www.hackerrank.com" rel="nofollow">https://www.hackerrank.com</a> - Full time - all<p>Hey HN,<p>I'm Vivek, one of the founders of hackerrank. We're on a mission to make the world flat - the only thing that matters is your skill and not which school/company/country you're in. The utopian state is a platform to hone your skills in a fun/engaging way and connect with the right opportunities anywhere in the world.. through meritocracy. We're building that at hackerrank, a skill graph.<p>growth:<p>We've been growing super fast in the last 9 months, almost at 100% Q-o-Q in revenue and 40% m-o-m in MAU of hackers. Our customers use the platform both for hosting an interesting contest(eg: hackerrank.com/addepar) in the public community & to streamline their recruiting process.<p>customers:<p>we're signing up customers in a lot of different domains - financial services (bloomberg, morgan stanley) healthcare, tech, etc. software is eating the world. An interesting trivia: every private $B valued company in silicon valley is our customer.<p>culture:<p>The people who work at hackerrank are intense, ambitious & yet humble. I'm pretty sure at least 70% of them will start their own company as their next step.<p>We're hiring for all roles (<a href="https://www.hackerrank.com/careers);" rel="nofollow">https://www.hackerrank.com/careers);</a> You can apply through the website or directly e-mail me: vivek@</font></span><p><font size="1"><u><a href="reply?id=8543697&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32">reply</a></u></font></td></tr></table></td></tr><tr><td><table border="0"><tr><td><img src="s.gif" height="1" width="40"></td><td valign="top"><center><a id="up_8569568" onclick="return vote(this)" href="vote?for=8569568&dir=up&by=jecjec&auth=9c538fb541414c15837128e0df9eeeb0e43f8e3f&whence=%69%74%65%6d%3f%69%64%3d%38%35%34%32%38%39%32"><div class="votearrow" title="upvote"></div></a><span id="down_8569568"></span></center></td><td class="default"><div style="margin-top:2px; margin-bottom:-10px; "><span class="comhead"><a href="user?id=fnaticshank">fnaticshank</a> 2 days ago | <a href="item?id=8569568">link</a></span></div><br>