-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathjobs.csv
We can't make this file beautiful and searchable because it's too large.
9754 lines (8043 loc) · 743 KB
/
jobs.csv
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
,Unnamed: 0,Job Title,Salary Estimate,Job Description,Rating,Company Name,Location,Headquarters,Size,Founded,Type of ownership,Industry,Sector,Revenue,Competitors,keyword
0,0,"['principal', 'ux', 'designer', 'physical', 'product']",$159K-$299K (Glassdoor est.),"At Sonos we want to create the ultimate listening experience for our customers and know that it starts by listening to each other. As part of the Sonos team, youll collaborate with people of all styles, skill sets, and backgrounds to realize our vision while fostering a community where everyone feels included and empowered to do to the best work of their lives.
Sonos is looking for a Principal UX Designer to join our Core Platform UX team. In this role, you will work as a critical part of the team that delivers a secure, connected and immersive sound platform to enable innovative listening experiences on Sonos Hardware. Driving and executing against the roadmap and company strategy, you will work closely with partners across hardware and software to bring new products and sound experiences to market.* Embrace the system: Go deep to understand the technical landscape of the Sonos system and identify opportunities to deliver the best experience possible in leveraging and extending the Sonos platform while aligning with critical strategic objectives.
Partner and organize: Partner within UX and across hardware and software disciplines to identify what work should be done when and why; supporting existing processes in place, adapting to the needs of a particular program, and innovating on new ways for all of us to work more effectively and achieve great outcomes.
Lead: As a senior member of the team, you will lead by example when it comes to collaboration, organization, innovation and connecting the dots between a single program and the broader Sonos experience. Your experience will position you to lead large, complex programs which may or may not have other UX designers involved in the day to day. You have the ability to drive a complex program on your own, and the experience to lead other designers when the opportunity exists.
You will engage early and upstream in program incubations, where you will navigate program and experience ambiguity to identify critical experience opportunities and craft a vision for the path forward. You will be able to articulate, visualize, and share this experience vision with program and company leaders.
You will work creatively and collaboratively in honing the vision and detail for product experiences, identifying solutions that embrace the complexity that exists at the intersection of hardware and software. You will experiment, prototype, test and refine ideas that support that vision and the broader experience goals of Sonos.
You will embrace and drive all of the nitty gritty details that are needed to bring a program and product experience to market and will be expected to partner across a wide set of teams in hardware and software to make it happen.
As a senior member of the team, you will contribute meaningfully to the culture of UX at Sonos, bringing experience, inspiration, and invigoration to a team that is in the business of doing big things.* You have designed, shipped, and matured complex product experiences that are both pleasurable and easy to use
You have experience owning large, complex, and often specialized projects
Bachelors degree in a related discipline, such as user experience design, industrial design, HCI, user interface design, graphic design
12+ years of experience in user experience design, preferably with at least some in the IoT or software for hardware space
Deep experience working with software engineers in the Agile process and delivering the detailed specification work needed for complex experiences that balance technical limitations and experience opportunities
Experience and appetite to engage with the tools needed to get the job done, including Figma, Sketch, Zeplin, Abstract, Framer, Flinto, JIRA and Confluence.
Appetite for finding new ways to prototype hardware and software experiences to get at the crux of key problems, mitigate risk, and identify the best experience possible early within a program.
A current portfolio available for viewing demonstrating the detailed work needed to ship products.",4.1,"Sonos, Inc.
4.1","San Francisco, CA",-1,1001 to 5000 Employees,2002,Company - Public,Consumer Products Manufacturing,Manufacturing,$500 million to $1 billion (USD),-1,"ux,designer"
1,1,"['ux', 'ui', 'designer']",$159K-$299K (Glassdoor est.),"#TeamNextdoor
Nextdoor is the neighborhood hub for you, your neighbors and the broader local community. Nextdoor's purpose is to cultivate a kinder world where everyone has a neighborhood they can rely on.
Building connections in the real world is a universal human need. That truth, and the reality that neighborhoods are one of the most important and useful communities in our lives have been guiding principles for Nextdoor. Today, neighbors rely on Nextdoor in neighborhoods around the world in the United States, the United Kingdom, Germany, France, the Netherlands, Italy, Spain, Sweden, Denmark, Australia and Canada, with many more to come.
Meet your Future Neighbors
As a Design Lead at Nextdoor, you'll design digital experiences that empower neighbors to build stronger communities, manage a small team and transform how people connect and engage with their local area. In this role, you'll define and deliver new experiences across multiple platforms as well as work cross-functionally to shape the future of the Nextdoor product as we continue to grow.
The Impact You'll Make
We are in the midst of a redesign, and you will have the opportunity to partner and lead the team responsible for changing the tone and tenor of conversations on Nextdoor. If you're civically minded, curious about community design, want the challenge of fast-paced growth, the satisfaction of seeing your design work come to life, and the pride in helping grow a world-class design team, this is the place for you. Please include a link to your portfolio in addition to your resume and cover letter.
You'll envision, design, and ship delightful, user-centered, cross-platform experiences that build the fabric of local communities around the globe.
You'll be involved in all aspects of the product development for a major product area; from strategy, research, prototyping, concept to interaction design, to final QA and code tweaks right before launch.
You'll participate in cross-functional brainstorms, discussions, design reviews and interesting and inspiring design team activities.
What You'll Bring to The House
8-10 years demonstrated experience shipping great mobile products in an agile environment.
3 years demonstrated experience leading and managing teams
Comfort working across the product development spectrum: strategy, ideation, concept work, pixel-level details, and front-end development and implementation.
Fluency with both mobile and responsive web design principles and best practices.
A strong visual design sense and ability to design within, and help define, visual guidelines.
Ability to create rich interactive prototypes with Framer, Origami, or Principle
Familiarity with HTML, CSS, JavaScript, Swift, Java, or Xcode
You're deeply curious about how to empower neighbors to strengthen their communities, and about what makes neighborhoods tick around the globe as we expand our footprint.
BONUS: liberal arts degree and prior experience in urban design
At Nextdoor, we empower our employees to build stronger local communities. To create a platform where all feel welcome, we want our workforce to reflect the diversity of the customers we seek to serve. We encourage everyone interested in our purpose to apply. We do not discriminate on the basis of race, gender, religion, sexual orientation, age, or any other trait that unfairly targets a group of people. In accordance with the San Francisco Fair Chance Ordinance, we always consider qualified applicants with arrest and conviction records.",4.1,"Nextdoor
4.1","San Francisco, CA",-1,201 to 500 Employees,2010,Company - Private,Internet,Information Technology,Unknown / Non-Applicable,-1,"ux,designer"
2,2,"['ui', 'ux', 'architect', 'designer']",$159K-$299K (Glassdoor est.),"Description: *
SPODIO is a data-driven sports content provider that develops sportsbook, fantasy sports, and match prediction products. We are currently looking for an experienced UX Architect to fill an urgent role in our San Francisco office. This will be a key role within our newly formed Design Team that will partner closely with fellow subject matter experts to fully reimagine the company’s flagship sportsbook offering. You will be responsible for every aspect of the user experience - the overall flow of the screens, the fields and what information is presented, the actions and interactions that are provided, and the visualizations of the data. In addition, you will identify new opportunities, create and test your design concepts, and ultimately deliver a best-of-breed product to market. If this sounds interesting and you have a deep passion for sports, we would love to hear from you.
Responsibilities:
Work closely with Product Managers and others to define product requirement and specifications for proposed web and mobile initiatives.
Create wireframes, storyboards, and user flows that promote usability and accommodating technical needs in addition to potential source code constraints.
Relentlessly simplify and distill complex processes into intuitive and elegant UIs.
Translate functional objectives into detailed specifications.
Develop personas to facilitate feature design process.
Lead cross-functional design sessions between the Design Team and Business Partners.
Collaborate and share your expertise with other Designers, Product Managers, Engineers, and stakeholders alike.
Qualifications:
A Bachelor’s degree in a design related field or working experience of the equivalent.
5+ years of design experience with an in-depth understanding of fantasy sports, sportsbook, trading, stock, or financial products.
A portfolio of work that demonstrates your ability to create effective user-centered design solutions.
Experience designing native applications for both iOS and android.
Working knowledge of industry standard design software (i.e Sketch, Figma, Adobe CS, Invision, or other UX related tools).
Knowledge of latest UX trends, techniques, and technology.
Keen and exceptional attention to detail with the ability to work both autonomously and as part of a team.
Excellent verbal and written communication skills, with able to clearly articulate your design methodology clearly and persuasively across different audiences and varying levels of the organization
Bilingual in Korean and English preferred, but not mandatory.
Compensation & Benefits:
Competitive salary
Health Insurance for you and your dependents
401(k) retirement plan with company matching up to 4% of employee salary.
Flexible PTO, sick days, and parental leave.
Free drinks and snacks.
MacBook or iMac
Job Type: Full-time
Pay: $120,000.00 - $130,000.00 per year
Benefits:
401(k)
Dental Insurance
Health Insurance
Paid Time Off
Vision Insurance
Schedule:
Monday to Friday
Location:
San Francisco, CA 94105 (Required)
Work authorization:
United States (Required)
Work Location:
One location
This Company Describes Its Culture as:
Detail-oriented -- quality and precision-focused
Innovative -- innovative and risk-taking
Outcome-oriented -- results-focused with strong performance culture
People-oriented -- supportive and fairness-focused
Team-oriented -- cooperative and collaborative
Work Remotely:
Temporarily due to COVID-19",-1.0,Spodio Group,"San Francisco, CA",-1,1 to 50 Employees,-1,Company - Private,-1,-1,Less than $1 million (USD),-1,"ux,designer"
3,8,"['freelance', 'ui', 'ux', 'designer']",$159K-$299K (Glassdoor est.),"SUMMARY OF POSITION
The UI/UX Designer is an integral member of the Creative Department (who collaborates closely with the Technology + Production teams), primarily responsible for crafting unique, captivating and intuitive visual designs for a variety of digital experiences and interfaces. The Visual UI/UXDesigner is a storyteller and problem solver who proposes creative solutions, drives the design phase and infuses innovative thinking into every stage of the creative process. The Visual UI/UX Designer will collaborate with cross-functional teams and external partners to bring fun and immersive digital experiential projects to life.
DESIRED SKILLS AND EXPERIENCE
EDUCATION
Bachelor's Degree in Graphic Design, UI/ UX design, Product Design, or similar discipline.
EXPERIENCE
4-10 years of experience as a UI/UX Designer, interaction designer, or similar role
Strong portfolio of creative work to demonstrate design for digital applications, mobile/web or interactive design work.
ESSENTIAL KNOWLEDGE, SKILLS AND ABILITIES
Expertise in Adobe CC (Photoshop, Illustrator, InDesign, etc.), proficiency required.
Experience in design prototyping tools (Adobe XD, Sketch, Figma, etc.)
Experience designing responsive websites, apps and digital products.
Experience designing for various platforms (mobile, web, broadcast, VR/AR, touchscreen, etc.).
Working knowledge of HTML, CSS, JavaScript is preferred, but not required.
Ability to communicate digital solutions and user journeys to a variety of audiences (internal, client, vendor, etc.) to ensure understanding and buy in.
Ability to collaborate and contribute to client deliverables including working in collaborative decks with the project team (Google Slides, Keynote, Powerpoint, etc.).
Experience providing art direction to graphic + motion designers that helps elevate the work.
Excellent communication + presentation skills that continuously add value to internal and external conversations, vendor relationships and pitches.",3.6,"On Board Entertainmet
3.6","San Francisco, CA",-1,51 to 200 Employees,1995,Company - Private,Advertising & Marketing,Business Services,$50 to $100 million (USD),-1,"ux,designer"
4,9,"['jr', 'ux', 'designer']",$159K-$299K (Glassdoor est.),"WHO WE ARE:
Founded in 2012, BirdEye is headquartered in Silicon Valley and led by alumni from Google, Amazon, and Yahoo. In 2019, BirdEye was ranked #1 in Online Reputation Management and #60 in the “100 Best Software Companies” in the world by G2 Crowd. BirdEye is backed by Salesforce founder Marc Benioff, Yahoo co-founder Jerry Yang, Trinity Ventures and World Innovation Lab.
BirdEye is the leading customer experience management and business reputation platform, reimagining the way reviews are used to better understand customers, improve operations and increase revenue. With BirdEye, companies can put customers at the core of every business decision, turning feedback into insights, insights into action, and customer happiness into revenue.
To learn more, please visit: https://birdeye.com
WHAT YOU’LL DO:
You will join a forward-thinking creative team who understands the pulse of current design trends. You will act as the user's advocate when developing creative solutions to complex workflows. ""Design"" and ""Customer delight"" is embedded in every step of our product cycle. BirdEye has a design first approach that brings consumer grade design and web scale engineering together to create amazing user experiences.Come join our exciting team as we redefine Customer Experience Management. Rapid iteration, collaboration, and passion is how we drive innovation within BirdEye.
Responsibilities
Collaborate daily with UX Designers, Product Managers and Engineers
Design and craft pixel-perfect interfaces with a high attention to detail
Create detailed UI specifications
Expand upon existing template designs, UI components, and style guidelines
Design with an awareness and understanding of browser sizes, device capabilities, and product functionality
Work closely with your developers to ensure your designs are built to your specifications
Requirements
BS in Human-Computer Interaction or related field or work experience as a designer
Body of design work demonstrating strong design process, and interaction and visual design skills
Experience with design tools like Sketch, Zeplin, Flinto, Principle, Marvel, InVision, etc.
Strong grasp of modern app design patterns
Impeccable attention to detail
A great attitude and desire to work in a team environment
Benefits
WHY YOU’LL JOIN US:
As relentless innovators, we make excellence a habit. We know that building beautiful things means shattering walls, so we’re bold, scrappy, and love a good challenge. We’re obsessed with our customers. We put their happiness at the center of every decision, and we view our customers’ weaknesses and successes as our own.
Working at BirdEye means being part of a tight-knit family that helps you succeed and loves to celebrate with you. We find strength in diversity and inclusion, so we strive to find different points of view and expect everyone to represent their authentic self at all times.
Benefits
A competitive salary
A rich benefits package including medical, dental, and vision
401(k) plan
Stocked kitchen complete with coffee, snacks, and catered lunch every Friday
Monthly team building activities
Abundant opportunities that come with a dynamic and fast-growing organization!",4.5,"BirdEye
4.5","Palo Alto, CA",-1,201 to 500 Employees,2012,Company - Private,Internet,Information Technology,$25 to $50 million (USD),-1,"ux,designer"
5,11,"['staff', 'ux', 'visual', 'designer']",$159K-$299K (Glassdoor est.),"About the Job:
Illumina Experience Design (XD) is seeking a talented UX Visual Designer to join our growing team of user experience designers as we build best-in-class customer experiences across all Illumina software offerings. You will have the opportunity to blend business strategy and creative design to drive the future state of our product’s form and behavior in collaboration with the leadership team, design leads, and product teams. You will work alongside our brand team to translate the Illumina brand into the core product design experience enriching products through brand expression and a coherent experience across product touchpoints. You will own the creation of visually compelling UI screens, graphics, illustrations, design documentation and presentations to meet business needs and delight the audience.
All About You
Responsibilities:
Design and generate compelling visual concepts for digital UI, labeling, video storytelling, motion design and brand expression.
Design and style beautiful, useful, and usable icons.
Design attractive functional presentations, assets and slides that can wow the audience.
Collaborate closely with product designers, human factors specialists, user researchers, interaction designers, engineers, product managers and brand specialists to create compelling solutions that respond to unmet user needs.
Develop and organize detailed visual designs, written visual specifications with skill and efficacy for design project needs.
Communicate design ideas through strong ideation, sketching and illustrations skills.
Create beautiful visuals and design briefs to convey design solutions to leadership and product teams.
Bring a creative eye and craftsmanship in brand and communications design to the product teams.
Develop and deliver progress reports, requirements, documentation and presentations.
Demonstrate and promote the importance of good design and brand values.
Successfully advocate for appropriate design solutions across disciplines and stakeholders.
All listed tasks and responsibilities are deemed as essential functions to this position; however, business conditions may require reasonable accommodations for additional task and responsibilities.
Requirements:
Master of Arts in Multimedia, Experiential Graphic Design, Fine Arts or equivalent degree or professional experience.
7+ years of recent and relevant UX Visual Design experience.
Experience working at a design consultancy or agency is preferred
Demonstrated experience working across a variety of digital mediums from creating compelling UI screens for desktop, web, and mobile, to creating animations, videos, and presentations that bring innovative concepts to life.
Solid experience in video storytelling, icon and labeling design.
Proven experience and understanding of the value of color, typography, iconography and motion as it applies to digital product design.
Solid understanding of how to establish scale and contrast, balance and visual hierarchy across a design.
Experience designing for accessibility and familiarity with Section 508 and WCAG standards.
Advanced ideation skills, design thinking and a solution-based user experience perspective.
Fluency in an array of design and animation tools such as Sketch and Adobe Creative Suite.
Fluency in the human-centered design process from qualitative research and synthesis to ideation, prototyping, and implementation.
Design research experience and interaction design capabilities are a plus.
Knowledge of the product development process and ability to communicate well with engineering teams.
Excellent written and verbal communication skills.
Ability to present to the executive leadership team.
Background working for Medical devices, Life Science, or Healthcare Industries is a plus.
Must have a diverse portfolio that showcases a thoughtful creative process covering a range of mediums, UI design, icons and illustrations, labeling, video and motion design.
Illumina believes that everyone has the ability to make an impact, and we are proud to be an equal opportunity employer committed to providing employment opportunity regardless of sex, race, creed, color, gender, religion, marital status, domestic partner status, age, national origin or ancestry, physical or mental disability, medical condition, sexual orientation, pregnancy, military or veteran status, citizenship status, and genetic information.
Illumina believes that everyone has the ability to make an impact, and we are proud to be an equal opportunity employer committed to providing employment opportunity regardless of sex, race, creed, color, gender, religion, marital status, domestic partner status, age, national origin or ancestry, physical or mental disability, medical condition, sexual orientation, pregnancy, military or veteran status, citizenship status, and genetic information. If you require accommodation to complete the application or interview process, please contact [email protected]. To learn more, visit: https://www.dol.gov/ofccp/regs/compliance/posters/pdf/eeopost.pdf",4.0,"Illumina, Inc.
4.0","Foster City, CA",-1,5001 to 10000 Employees,1998,Company - Public,Biotech & Pharmaceuticals,Biotech & Pharmaceuticals,$2 to $5 billion (USD),-1,"ux,designer"
6,12,"['ux', 'designer']",$159K-$299K (Glassdoor est.),"We are seeking an outstanding UX Designer who excels in web design and in application of the design process. Candidates should have a clear understanding of the various phases of a design process, different design methods and when to apply them. For this position, majority of your time will be focused on hands-on interface design.
The ideal candidate will be expert at cross browser compatibility, responsive design, visual styling and be able to own a design from concept to final output. Candidate will be responsible for designing project specific UX solutions and developing simple, intuitive workflows and working on aesthetically pleasing visual styling.
This is a great time to join ON24 and the Design department here. We have exciting products that provide great value to our customers and there are key opportunities to enhance the UX and influence our design vision.
Role:
Participate in Design discussions, product roadmap strategy and identify Design process to be applied
Usability evaluation, ideation, wireframing, prototyping
Visual styling, (spec and icons/logo creation)
User studies
Qualification:
Bachelor’s degree in Design/HCI
Software: Sketch, Adobe Illustrator, Adobe Photoshop, etc.
Understanding of current web design trends, desktop/ tablet/ mobile website trends, responsive design
ON24 is proud to be an equal employment opportunities (EEO) workplace to all employees and applicants for employment without regard to race, color, religion, sex, national origin, age, disability or genetics. In addition to federal law requirements, ON24 complies with applicable state and local laws governing nondiscrimination in employment in every location in which the company has facilities. This policy applies to all terms and conditions of employment, including recruiting, hiring, placement, promotion, termination, layoff, recall, transfer, leaves of absence, compensation and training.
Pursuant to the San Francisco Fair Chance Ordinance, ON24 will consider for employment qualified applicants with arrest and conviction records.",3.6,"ON24, Inc.
3.6","San Francisco, CA",-1,201 to 500 Employees,1998,Company - Private,Computer Hardware & Software,Information Technology,$100 to $500 million (USD),-1,"ux,designer"
7,13,"['ui', 'ux', 'designer']",$159K-$299K (Glassdoor est.),"Enjoy working in a fast-paced environment delivering innovation that blends technology and services to help move careers forward? Randstad RiseSmart is hiring two UI/UX Designers to join our Product Development team. Join one of the worlds leading talent mobility firms as we invent the future of work and help make an impact on a persons life through their career transition.
This position will report to the Director of Product and will be based at our downtown San Jose, CA headquarters.
About The Job
The UI/UX Designer will work closely with product managers, engineers, internal operating teams and other designers to ensure our products are beautiful, functional and efficient. With a global footprint exceeding 80+ countries, the UI/UX Designer will be integral to the design of solutions that follow global best practice.
What You Will Do
Gather and evaluate user requirements in collaboration with developers, product managers and engineers to lead design projects from ideation to delivery
Identify and troubleshoot UX problems; conduct user testing and research efforts to obtain qualitative and quantitative data to inform product direction
Communicate designs through detailed wireframes, user flows, and prototypes
Develop and deliver beautiful, hi-fidelity visual design mockups and specs
Work cross-functionally with designers, engineers, product managers, and stakeholders
Collaborate with global teams, translation teams and web developers to assist in launching new regional sites; roll out updated website content affecting multiple geographies and languages
Skills You Will Need
5+ years of experience as a User Experience or Interaction Designer
Have a strong portfolio of work samples showcasing UX design work & process
Strong experience with end-to-end product design, from ideation development to the final product
Able to carry on usability studies & user research, analyze results, and present findings
Have cross-platform design experiences (Web, Android, iOS, emails)
Proficient in Sketch and prototyping tools
Familiar with HTML, CSS and JavaScript
Ability to receive (and deliver) constructive, knowledgeable, and accurate feedback in a team setting
Strong communication and inter-personal skills. Ability to work across teams with geographically remote team members
Motivated, independent self-starter with the ability to lean and adapt
Attention to detail (pixel perfect), organizational skills and focus on quality of work
Understanding Agile Methodologies would be preferred
About Randstad RiseSmart
At Randstad RiseSmart, were in the business of changing lives. With a lean and fast start-up mentality and the stability and backing of our multinational parent company, Randstad, Randstad RiseSmart has disrupted the outplacement industry and leads in technology-enabled career transition services. And, ultimately our results speak for themselves: we have received enormous industry recognition, including Gartners Most Innovative Company, the Nations Best and Brightest Companies to Work For, Fortunes 100 Best Companies for Women, and Deloitte Fast 500 recognized as one of North Americas fastest growing technology companies. To learn more, visit www.randstadrisesmart.com.
What's In It For You?
Competitive compensation, comprehensive health benefits, 401k (with match!), and stock purchase plan
Excellent work environment with an award-winning culture, Best Places to Work, Great Rated, Fortunes 100 Best Companies for Women, and check out our Glassdoor Rating of 4.0!
Opportunity to grow and contribute to Randstad RiseSmart's continued success in a highly visible role
Randstad RiseSmart is proud to be an equal opportunity employer.",4.4,"RiseSmart, Inc.
4.4","San Jose, CA",-1,201 to 500 Employees,2007,Company - Private,Enterprise Software & Network Solutions,Information Technology,Unknown / Non-Applicable,-1,"ux,designer"
8,15,"['ux', 'designer']",$159K-$299K (Glassdoor est.),"What makes us Epic?
At the core of Epic’s success are talented, passionate people. Epic prides itself on creating a collaborative, welcoming, and creative environment. Whether it’s building award-winning games or crafting engine technology that enables others to make visually stunning interactive experiences, we’re always innovating.
Being Epic means being a part of a team that continually strives to do right by our community and users. We’re constantly innovating to raise the bar of engine and game development.
Like what you hear? Come be a part of something Epic.
What you’ll do
Epic Games is looking for talented UX Designers, working across multiple projects such as Houseparty, Rocket League, and the Unreal Engine. In this position, you will have a role in designing features and UI screens by generating wireframes, documentation, and prototypes. You will then work with engineers and artists to ship these features to millions of users. The ideal candidate across the board would have expertise in user-centered design, an understanding of effective Game, Mobile, and Engine systems, as well as experience in game, mobile, or DCC UX/UI design.
In these roles, you will
Translate goals and constraints into compelling user-facing features
Creating wireframes, interactive prototypes, and documentation that clearly convey ideas
Present and pitch designs to product managers and developers
Work alongside engineers, artists, and UX researchers to develop features
Advocate for goals and UX problem resolution between teams
Work collaboratively across multiple teams to create consistency
What we’re looking for
Expert ability to create wireframes and prototypes
Skilled in Sketch, Axure, Indigo Studio, InVision, Figma or other prototyping and mockup tools
Familiar with Photoshop/Illustrator or other art tools
Strong knowledge of UX design processes
Excellent written and verbal communication skills
Ability to see features through to completion and rapidly modify design as information changes
Online portfolio demonstrating user-centered design solutions with strong visual direction and interaction design
You’re user-focused, passionate, scrappy, solutions-focused, and innovative. These traits equal success at Epic and influence everything we do
Team specific asks
Epic Social (Houseparty)
Successfully designed UI/UX features that were implemented into a top 100 mobile title
Demonstrated ability to implement UI widgets and features in a game engine
Understands the principles of game system design
Engine
Successfully designed UI features that were implemented for a digital content creation tool, or any tool that complements development for a game engine.
Psyonix/Rocket League
Understanding of AGILE (Specifically SCRUM) principles
Please submit your resume with a portfolio and we’ll be in touch soon!",3.7,"Epic Games
3.7","San Francisco, CA",-1,1001 to 5000 Employees,1991,Company - Private,Video Games,Media,Unknown / Non-Applicable,-1,"ux,designer"
9,17,"['ui', 'ux', 'designer', 'entry', 'level', '-', 'pathrise', 'recruiting', 'partners']",$159K-$299K (Glassdoor est.),"What is Pathrise Recruiting Partners?
Pathrise Recruiting Partners connects top candidates to top employers. We use the same tactics and connections that we’ve used to place 300+ candidates to also bridge the connection between great candidates and top employers and recruitment firms. By applying to this position you gain access to a streamlined application process. This puts your resume right into the recruiting teams of our partners who are actively seeking candidates like you. To read more visit pathrise.com/pathrise-recruiting-partners
Job Description
Our partners are looking for entry level UI/UX Designers. These roles will often involve working directly with the user experience of a given company's existing core products as well as building and researching opportunities to launch new features. These opportunities are great for someone who is looking to build a foundation for a career in UI/UX Design and join a team that will support their future professional growth.
All jobs have a full remote option as well as in person.
What you'll do
Ideating, scoping, and prioritizing new product features that are high value
Working closely with growth to build optimal marketing and branding materials
Conducting user research to shape product roadmaps
Leveraging data to inform product enhancements and new features
Requirements
Passionate about education and career development
0-2 years experience developing in HTML/CSS and Javascript
0-2 years of experience in industry as a Product Designer or in a related field
Experience with user research
A strong portfolio that showcases strong design sense and frontend engineering
This role is part of our Pathrise Recruiting Partners program. Submitting this application will allow your profile to be reviewed by our network of hiring partners. To read more about how this all works as well as more information about our partners please visit pathrise.com/pathrise-recruiting-partners",4.9,"Pathrise
4.9","San Francisco, CA",-1,1 to 50 Employees,2017,Company - Private,Education Training Services,Education,$1 to $5 million (USD),-1,"ux,designer"
10,18,"['ui', 'ux', 'designer']",$159K-$299K (Glassdoor est.),"Imagine it's 1985. There you are, a designer. Something called GUI just became a thing and you have to design apps for it. Wouldn't that be an exciting place to be?
We are at a similar place at Padlet. We are building an entirely new way to express your thoughts: something more visual and tactile than everything before it. You will create all-new design paradigms, something others will rip off.
A problem we recently solved — building the easiest, most beautiful mapmaker on the Internet (padl.et/map).
ABOUT PADLET
We are building more beautiful and fun alternatives to traditional documents. They're less of a pain-in-the-ass to create, and a lot less waterboard-y to view. Think Microsoft Office, but not as soul crushing.
Over ten million people use Padlet, making it one of the largest sites in the world. The company is profitable and well-funded. Our office is in the beautiful Presidio of San Francisco where the air is pure and the grass, tender.
We've gotten this far with just nine people. Some special people at this company.
GOOD TIME TO JOIN
Our design ""team"" is one person. You can move as fast as you want. Plus, given our tremendous traction, your very first strokes will be seen by millions. This combination is rare and quite satisfying.",-1.0,"Wallwisher, Inc.","San Francisco, CA",-1,1 to 50 Employees,-1,Company - Private,-1,-1,Unknown / Non-Applicable,-1,"ux,designer"
11,19,"['sr.', 'ux', 'designer', '-', 'p2p']",$118K-$220K (Glassdoor est.),"Responsibilities:
Contribute to outstanding experiences and results, working collaboratively within a cross-disciplinary team that includes UX, visual design and content.
Leverage your talent for UX and Design Thinking to contribute to holistic experiences that solve for user needs and business goals.
Support the execution of customer inquiries, helping to conduct sessions, analyze feedback and identify needs and insights.
Participate in design discussions and collaborative sessions with teams and stakeholders, offering and providing feedback on concepts and ideas to inform or evolve PayPal experience.
Deliver high fidelity schematics, workflows, interaction storyboards, and design deliverables that guide creative, content, and development efforts.
Be a productive and additive teammate, actively helping leaders and peers to raise the bar while also capitalizing on ideas from others.
Selectively present designs and work to teams and stakeholders, working with UX leaders to articulate and rationalize decisions.
Accurately estimate your workload, providing team leads with the insight they need to manage and plan a prioritized backlog.
Contribute to PayPal’s UX discipline and community, adopting core approaches and tools, sharing feedback and insights, and engaging your peers actively and productively.
Maintain an awareness of industry and UX trends .
Requirements:
Bachelor's Degree in Human Factors Engineering, HCI, or equivalent project/portfolio experience.
5+ years experience working in a dynamic UX practice.
Working knowledge of Mobile, Tablet and Desktop design constraints and patterns. Experience with at least two form factors and platforms preferred.
Some experience with user research, including user interviews, needs analysis and using findings to inform experience capability priorities.
Some experience with archetypes, profiles, personas, scenarios or other user centered design artifacts.
Working knowledge of technology mediums, including a familiarity with some of Web 2.0, CSS3, HTML5, Obj C,etc. Awareness of relative strengths of technologies.
Familiarity with adaptive and responsive techniques.
Some experience working collaboratively with development teams in the iteration and definition of a design approach.
Able to operate execute on direction with limited oversight.
Strong verbal and writing skills, ability to tell a story around an experience or solution.
Deep experience with at least some core UX design and implementation tools (Visio, Omnigraffle, Adobe CS, Invision, Axure, etc.).
Job_Description_Summary: As a PayPal UX designer you’re a position player who makes things real. You directly contribute to the creation of our business and consumer product experiences across different channels and platforms, working under the mentorship and guidance of senior UX leaders and managers. You draw on your evolving and growing knowledge of the UX lifecycle (discovery, user research, iterative design and testing) to help ensure we’re delivering innovative solutions that address customer needs and business goals seamlessly, consistently and rapidly.
Who we are: Fueled by a fundamental belief that having access to financial services creates opportunity, PayPal (NASDAQ: PYPL) is committed to democratizing financial services and empowering people and businesses to join and thrive in the global economy. Our open digital payments platform gives PayPal’s 286 million active account holders the confidence to connect and transact in new and powerful ways, whether they are online, on a mobile device, in an app, or in person. Through a combination of technological innovation and strategic partnerships, PayPal creates better ways to manage and move money, and offers choice and flexibility when sending payments, paying or getting paid. Available in more than 200 markets around the world, the PayPal platform, including Braintree, Venmo and Xoom enables consumers and merchants to receive money in more than 100 currencies, withdraw funds in 56 currencies and hold balances in their PayPal accounts in 25 currencies.
We're a purpose-driven company whose beliefs are the foundation for how we conduct business every day. We hold ourselves to our One Team Behaviors which demand that we hold the highest ethical standards, to empower an open and diverse workplace, and strive to treat everyone who is touched by our business with dignity and respect. Our employees challenge the status quo, ask questions, and find solutions. We want to break down barriers to financial empowerment. Join us as we change the way the world defines financial freedom.
PayPal provides equal employment opportunity (EEO) to all persons regardless of age, color, national origin, citizenship status, physical or mental disability, race, religion, creed, gender, sex, pregnancy, sexual orientation, gender identity and/or expression, genetic information, marital status, status with regard to public assistance, veteran status, or any other characteristic protected by federal, state or local law. In addition, PayPal will provide reasonable accommodations for qualified individuals with disabilities.",3.9,"PayPal, Inc.
3.9","San Jose, CA",-1,10000+ Employees,1998,Company - Public,Internet,Information Technology,$10+ billion (USD),-1,"ux,designer"
12,23,"['ui', 'ux', 'designer', 'mobile', '&', 'web']",$118K-$220K (Glassdoor est.),"RESPONSIBILITIES
Handle the user experience of a product line end to end
Initiate, brainstorm, and ship projects
Work closely with Product Managers, Fellow Designers, and Engineering teams
Articulate design decisions in individual and group critiques
Participate in peer review discussions
Facilitate design research sessions and sprints
Foster a culture of design at Miles
REQUIREMENTS
Extensive experience designing usable, engaging, and beautiful customer experiences for iPhone, iPad, Android, and the web
2+ years experience that includes visual, UX, and interaction design
Should have shipped features end to end at large scale
Excellent proficiency with Sketch and Adobe Creative Suite
Solid understanding of Design Process, Design Research, and state-of-the-art design guidelines
You're more concerned with the 'why' than the 'how'
Excellent written and verbal communication skills
Attention to detail
Bachelor's degree, or equivalent experience, required
BONUS IF
Masters Degree
Has worked on both B2B and B2C products with diverse domain expertise
Worked on a successful product that has touched millions of consumers
Previous startup experience
Willing to hustle",1.8,"ConnectIQ Labs Inc.
1.8","San Francisco, CA",-1,1 to 50 Employees,2016,Company - Private,Internet,Information Technology,Unknown / Non-Applicable,-1,"ux,designer"
13,26,"['ux', 'designer']",$118K-$220K (Glassdoor est.),"UX Designer
San Francisco
The Role
UpCodes is looking for our first design hire to help us define and execute on features fulfilling our mission of making building code compliance easier for architects, engineering, and contractors.
Our ideal candidate is a seasoned designer who’s looking to take on significant strategic responsibilities alongside day-to-day design tasks. In this role, reporting to the CEO, you’ll be responsible for shaping not only the design of individual features, but also our design system and user research program. Usability and overall design quality are two of the things that help set UpCodes apart from competitors and you’ll be a key part of maintaining and extending our advantage.
Our design philosophy revolves around minimalism and simplicity. You will drive these principles forward and evolve them with the current and future product offering.
Responsibilities
Lead feature UX/UI design with a user-focused, iterative design process. See through execution as part of an integrated team.
Own the overall user experience, developing conceptual frameworks and design systems to protect and enhance it.
Collaborate with Product to integrate data and user feedback into our roadmap.
Establish and run a regular user research program to evaluate and generate ideas.
Collaborate with marketing on design of our website, and other marketing touchpoints.
You must have:
At least 6 years of experience as a UX designer, with at least 2 in early-stage start-ups.
Experience designing for SaaS.
Self-motivated with good time management. Ability to work independently and as part of a team within a structured, fast-paced development process.
Ability to clearly explain design concepts, decisions, and processes to non-designers. You’ll be our first hire in the department and we hope to learn a lot from you!
Passion for the craft and a curiosity about emerging perspectives, techniques, and tools.
Bias towards action. You are constantly iterating to find out what does and doesn’t work.
Previous experience managing a team or mentoring junior colleagues will be a plus.",-1.0,UpCodes,"San Francisco, CA",-1,1 to 50 Employees,2016,Company - Private,Construction,"Construction, Repair & Maintenance",Unknown / Non-Applicable,-1,"ux,designer"
14,27,"['ux', 'designer', '-', 'payments']",$118K-$220K (Glassdoor est.),"Who we are
Fueled by a fundamental belief that having access to financial services creates opportunity, PayPal (NASDAQ: PYPL) is committed to democratizing financial services and empowering people and businesses to join and thrive in the global economy. Our open digital payments platform gives PayPal’s 305 million active account holders the confidence to connect and transact in new and powerful ways, whether they are online, on a mobile device, in an app, or in person. Through a combination of technological innovation and strategic partnerships, PayPal creates better ways to manage and move money, and offers choice and flexibility when sending payments, paying or getting paid. Available in more than 200 markets around the world, the PayPal platform, including Braintree, Venmo and Xoom, enables consumers and merchants to receive money in more than 100 currencies, withdraw funds in 56 currencies and hold balances in their PayPal accounts in 25 currencies.
When applying for a job you are required to create an account, if you have already created an account - click Sign In.
Creating an account will allow you to follow the progress of your applications. Our system does have some requirements that will help us process your application, below are some guidelines for creation of your account:
Provide full legal First Name/Family Name – this is important for us to ensure our future hires have the right system set up.
Please Capitalize first letter of your First and Last Name.
Please avoid using fully capitalized text for your First and/or Last Name.
NOTE: If your name is hyphenated or has multiple capitalization, please use the same format as your government ID.
Job Description Summary:
As a member of the User Experience Design team at PayPal, you will create meaningful and cohesive end-to-end experiences through a deep understanding of our customers and exceptional design execution. You will collaborate with product and technology teams to build the next generation of financial service products by bringing the customer to the forefront in everything we do.
You are an all-around designer with both interaction and visual design skills. You will thrive in a fast-paced work environment that requires strong problem-solving skills and independent self-direction, coupled with an aptitude for team collaboration and open communication. You should have a passion for empathizing with the needs and behaviors of our customers and our business and how to solve for them through design.
Job Description:
Responsibilities:
Partners with design, engineering, design systems and product management team members in the execution and delivery of PayPal’s products and services, using a customer-focused, iterative design process.
Contributes to the creation of Creates high-quality deliverables on a work stream with minimal oversight and guidance, managing his/her work to your work on a schedule.
Present a broad set of potential designs for any project.
Participate in design discussions and collaborative sessions with teams and stakeholders, offering and providing feedback on concepts and ideas to inform or evolve PayPal experience.
Leverages and fosters the use of established UX techniques, templates, presentations and assets in the creation of UX analysis, solutions and materials.
Contribute to PayPal’s UX discipline and community, adopting core approaches and tools, sharing feedback and insights and engaging your peers actively and productively.
Requirements:
3+ years experience.
Bachelors or Master Degree in the study of design including one of the following; Design, Information Architecture, Human Factors or equivalent project/portfolio experience.
Sound understanding of UX methodology and lifecycle across significant channels and platforms.
Customer-focused, with experience using design research methods to uncover customer insights.
Effectively operates within an iterative design team, managing UX responsibilities against defined milestones.
Knowledge of essential channels and platforms, with experience in desktop and mobile solution design.
Has a general awareness of technology mediums (i.e.e.g., JavaScript, HTML/CSS) including differences between them.
Subsidiary:
PayPal
Travel Percent:
0
Primary Location:
San Jose, California, United States of America
Additional Locations:
We're a purpose-driven company whose beliefs are the foundation for how we conduct business every day. We hold ourselves to our One Team Behaviors which demand that we hold the highest ethical standards, to empower an open and diverse workplace, and strive to treat everyone who is touched by our business with dignity and respect. Our employees challenge the status quo, ask questions, and find solutions. We want to break down barriers to financial empowerment. Join us as we change the way the world defines financial freedom.
PayPal provides equal employment opportunity (EEO) to all persons regardless of age, color, national origin, citizenship status, physical or mental disability, race, religion, creed, gender, sex, pregnancy, sexual orientation, gender identity and/or expression, genetic information, marital status, status with regard to public assistance, veteran status, or any other characteristic protected by federal, state or local law. In addition, PayPal will provide reasonable accommodations for qualified individuals with disabilities. If you are unable to submit an application because of incompatible assistive technology or a disability, please contact us at [email protected].",3.9,"PayPal, Inc.
3.9","San Jose, CA",-1,10000+ Employees,1998,Company - Public,Internet,Information Technology,$10+ billion (USD),-1,"ux,designer"
15,28,"['visual', 'ux', 'designer']",$118K-$220K (Glassdoor est.),"Visual UX Designer
Job Description:
UX Designer,
At Micro Focus, everything we do is based on a simple idea: The fastest way to get results is to build on what you have. Our software solutions enable organizations to do just that. Secure and scalable, with analytics built in, they bridge the gap between existing and emerging ITfast-tracking digital transformations across DevOps, Hybrid IT, Security, and Predictive Analytics. In the race to innovate, Micro Focus customers have the clear advantage.
Our portfolio spans the following areas:
DevOps | IT Operations| Cloud | Security | Info Governance | Big Data, Machine Learning, & Analytics
About the Role
Our ideal candidate has a track record of designing flows and wireframes with a strong bias towards user-centric design. The ability to focus in a fast-paced with Product Managers, Engineers, and Designers in an agile environment. The UX Designer is responsible for researching, creating and developing concepts and specifications that optimize the structure and behavior of screen- based, software solutions for the mutual benefit of both user and business. Work within this job family falls into three major categories:
(1) enhancements- changes to original design and extensions to existing programs.
(2) new Visual Design and UX designs
(3) strategic interaction and interface design new or improved Ix design language, user interface style guides, design archetypes, reusable design assets, etc.
The UX Designer
Leads multiple project teams of designers and internal and outsourced partners responsible for all stages of UI design and development for a portfolio of complex products and platforms, including design architecture, language, validation, and specifications.
Manages and expands relationships with internal and outsourced partners on UI design and development. Reviews and evaluates designs and project activities for compliance with UI design and development guidelines and standards; provides tangible feedback to improve product quality and UI design.
Develop high level mockups, and prototypes to effectively communicate design ideas.
Ability to sketch high-level and detailed ideas individually and during working sessions.
Work closely with immediate team of Product Managers, Marketing Managers, Developers and Content Strategist.
Leverage available insights including market analysis, customer feedback, site metrics, and usability findings in all design activities.
Consider all parts of the experience, from copy to animations to business model, when designing
Provides domain-specific expertise and overall Visual design leadership and perspective to cross- organization projects, programs, and activities.
Drives innovation and integration of new technologies and design language into projects and activities in the Visual design organization.
Provides guidance and mentoring to less- experienced staff members.
Education and Experience Required:
Bachelor's or Master's degree in User Interface Design, Graphic Design, or equivalent.
At least 3-5 years experience.
Knowledge and Skills:
Broad experience with application of design theories, principles, and concepts to a portfolio of multiple information technology and consumer products and services designs.
Excellent analytical and problem-solving skills.
Broad understanding and experience in designing and implementing research and data collection plans for interactive and interface design testing and acceptance.
Reviewing and evaluating designs for alignment with overall product architecture; recommending and implementing changes to designs and technology to improve product quality and overall interactive and interface design.
Excellent written and verbal communication skills; mastery in English and local language.
Ability to effectively communicate interactive and interface design data, design proposals and product specifications and negotiate options at senior management levels.
Excellent skills in creative design tools (Proficiency with Adobe Creative Cloud, Bohemian Sketch, and prototyping tools, such as InVision, Framer, Webflow or HTML/CSS/JS ).
To Apply
Please include a link to your portfolio in addition to your resume. Submissions without a portfolio will not be considered.
If you want to be part of what's next and find out more about our available opportunities, visit Micro Focus Careers.
#LI-SD1
#DiceSD
Job:
Engineering
Micro Focus is proud to be an Equal Opportunity Employer. Prospective employees will receive consideration without discrimination because of race, colour, religion, creed, gender, national origin, age, disability, marital or veteran status, sexual orientation, genetic information, citizenship or any other legally protected status",3.3,"Micro Focus International plc
3.3","Santa Clara, CA",-1,10000+ Employees,1976,Company - Public,Computer Hardware & Software,Information Technology,$2 to $5 billion (USD),-1,"ux,designer"
16,30,"['ux', 'designer', '-', 'tiktok', 'monetization']",$118K-$220K (Glassdoor est.),"UX Designer - TikTok Monetization
Mountain ViewDesign - Interaction designExperienced
Responsibilities
1. Gather, evaluate, and conduct user requirements and competitor analysis;
Participate throughout the product design process – creating user flows, design high-fidelity user interface and prototypes;
Conduct usability testing and research, deliver meaningful insights from data-rich sources;
Identify and troubleshoot UX problems based on qualitative data and feedbacks;
Work with User researchers, Product Managers, Engineers, and other UX Designers in a fast-paced, rapidly changing environment.
Qualifications
1. 3+ years of experience working as a UX Designer on products;
Bachelor's degree in Design (e.g. interaction, graphic, visual), HCI, CS, or a related field or equivalent practical experience;
Proficient in various interactive and visual design software and familiar with the official design specifications of Web, iOS and Android;
Attach great importance to details, pursuing pixel-level perfection, and loving human-computer interaction and user insight;
Have product thinking and good user empathy, and be able to participate in user research, interactive design, design prototype development, etc;
Ability to work and contribute in a highly technical and metrics-driven environment;
Have project experience in successfully commercialized products, experienced in designing toB end tools is preferred;
Proficient in Chinese, international working experience is preferred.
Apply
Share to",3.8,"TikTok
3.8","Mountain View, CA",-1,1001 to 5000 Employees,2016,Company - Private,Internet,Information Technology,Unknown / Non-Applicable,-1,"ux,designer"
17,31,"['ux', 'designer']",$118K-$220K (Glassdoor est.),"UX Designer
Company Overview
Fuze is changing the way people connect and interact using our innovative visual collaboration software as a service enabling the enterprise and mobile professional with the ability to share and collaborate on any content from and to any device. With HD video and crystal clear audio that delivers two times the clarity of a standard phone call, it is just like meeting face to face. Our intuitive and powerful solution for visual communication and content collaboration is easy to use and provides a great experience that allows you to connect from any device, at any time from anywhere in the world.
About You
You create beautiful and compelling interactive experiences, and take responsibility for the full design life-cycle. You use your intuition and insights from user research to explore and present innovative and pragmatic design solutions. You have lots of great ideas and love iterating based on critical feedback. In this role you will be ideating with the product team, developing original design concepts, bringing best practices to an evolving design process, and providing engineers with the resources and documentation they need to realize designs across web and native platforms, desktop, tablet, and mobile form factors.
Responsibilities
Design user-centric workflows and experiences that are incredibly simple and beautiful
Work closely with fellow designers, product managers, and engineers by giving and soliciting feedback in order to continually improve our product and process
Improve the usability of our product by incorporating user research methods that guide the design, development, and refinement of our work
Create design presentations and specifications that are supported by well-crafted, strategically sound, carefully detailed design executions
Requirements
A solid portfolio of successful mobile and web-based projects
Strong interaction design, visual design, and prototyping skills
A strong understanding of use cases, user flows and information architecture
A knack for bending the Adobe Creative Suite (and/or Sketch) to your will
User-centric approach to designing products
The belief that collaboration makes for a better product and culture
Minimum of 3 years of experience in UX/UI or product design
AAP/EEO STATEMENT
Fuze provides equal employment opportunity without regard to race, color, religion, sex, national origin, ancestry, citizenship, sexual orientation, age, disability, or status as a disabled veteran, recently separated veteran, Armed Forces Service Medal veteran, or other protected veteran, marital status, familial status, age, handicap or disability, genetic predisposition or carrier status, uniformed service status or any other characteristic protected by applicable law.",3.6,"Fuze
3.6","San Francisco, CA",-1,501 to 1000 Employees,2006,Company - Private,Enterprise Software & Network Solutions,Information Technology,$100 to $500 million (USD),-1,"ux,designer"
18,33,"['ux', 'designer']",$118K-$220K (Glassdoor est.),"UX Designer
Equinix is one of the fastest growing data center companies, growing connectivity between clients worldwide. That’s why we're always looking for creative and forward thinking people who can help us achieve our goal of global interconnection. With 200 data centers in over 24 countries spanning across 5 continents, we are home to the Cloud, supporting over 1000 Cloud and IT services companies that are directly engaged in technological innovation and development. We are passionate about further evolving the specific areas of software development, software and network architecture, network operations and complex cloud and application solutions.
At Equinix, we make the internet work faster, better, and more reliably. We hire talented people who thrive on solving hard problems and give them opportunities to hone new skills, try new approaches, and grow in new directions. Our culture is at the heart of our success and it’s our authentic, humble, gritty people who build The Magic of Equinix. We share a real passion for winning and put the customer at the center of everything we do.
Job Summary: User Experience Designers lead tactical efforts to improve a website's and/or application's user interface and interaction design patterns, in order to increase user engagement and ease of use. They may generally employ skills across multiple disciplines including visual design, interaction design, user research, and prototyping.
Responsibilities
Plans and administers quantitative and qualitative user research projects
Assists in selection of user research methodologies to optimize data collection
Interacts with stakeholders to determine requirements and set expectations
Builds user scenarios and stories to coordinate with other teams
Leads user research sessions
Analyzes research results to inform design and development
Produces UX deliverables for user focus groups and data collection
Leverages and consumes user research data in the creation of UX deliverables
Designs organization and categorization of schemas within an information system
Develops navigation structures to support proper wayfinding
Ensures navigational consistency across multiple complementary sites and/or applications
Structures and classifies sites and applications to help people find and manage information
Designs an information space to facilitate task completion and intuitive access to content Interaction Design
Develops a range of UX deliverables, including task flows, information architecture (IA) diagrams, design studies, wireframes, and high-fidelity interface mockups
Leads, presents, defends and articulates design work in design reviews with colleagues and stakeholders
Executes interaction design as a part of a multi-disciplinary team
Researches interaction design trends
Works cross-functionally to develop design language consistent with user needs and brand identity
Designs and delivers visual mockups, layouts, and specifications for a site/application's look and feel (color, craft, typography, etc.)
Contributes to design specifications and style guides, and produces new sections when necessary
Collaborates with development teams to ensure specifications are understood and implemented
Applies critical thinking to a variety of complex user problems, taking into account user needs, business objectives and technical constraints
Determines need for prototyping efforts, based on functional complexity and requirement specifics
Designs and produces visual and/or interaction design components for use in clickable UI walkthroughs or code prototypes
Socializes prototypes via design reviews or 1:1 usability sessions
Qualifications
5+ years experience preferred
Bachelor's degree preferred
Equinix is an equal opportunity employer. All applicants will receive consideration for employment without regard to race, religion, color, national origin, sex, sexual orientation, gender identity, age, status as a protected veteran, or status as a qualified individual with disability.",4.0,"Equinix, Inc.
4.0","Sunnyvale, CA",-1,5001 to 10000 Employees,1998,Company - Public,Enterprise Software & Network Solutions,Information Technology,$5 to $10 billion (USD),-1,"ux,designer"
19,34,"['ui', 'ux', 'designer', 'internship']",$118K-$220K (Glassdoor est.),"Join us to reshape the future of chronic disease management! iHealth Labs introduced the first smartphone-connected blood pressure monitor in the world. Since then, iHealth Labs has become a global leader in digital health technology, offering a line of award-winning mobile health devices and comprehensive chronic disease management solutions. Our mission is to connect patient care at the doctor’s office with an individual's daily life at home and provide real-time support to empower people with chronic conditions to live healthier. We are hiring a UI/UX Designer intern to join our team to create intuitive interactions between our products and end users.
**Must have a personal website or portfolio on application**
Responsibilities:
Work with experienced designers to create compelling interactive experiences.
Perform user research and develop product wireframes and high fidelity user interface for both websites and mobile applications.
Work with the product and marketing teams to gain insights into business objectives and develop graphic design solutions, posters, brochures, etc.
Qualification and Skills:
Bachelor or Master student (or graduate) in Human-Computer Interaction, UI/UX design, Motion design, or a related design/behavioral science discipline.
Be able to accomplish work using Sketch, Invison, and Adobe Suite.
Prior experience or project work in UI/UX Design.
Self-motivated and able to prioritize and multi-task with constant moving parts.
Communicate effectively with the team and be able to collaborate with engineers and stakeholders.",3.4,"iHealth Lab Inc.
3.4","Sunnyvale, CA",-1,51 to 200 Employees,2010,Company - Private,Health Care Services & Hospitals,Health Care,Unknown / Non-Applicable,-1,"ux,designer"
20,35,"['ux', 'ui', 'designer', 'intern']",$118K-$220K (Glassdoor est.),"Opptin is creating a safer, quicker, online world for everyone. Through our proximity-based technology, we can turn any business or place into the infrastructure for its own personal and encrypted network. We aim to create a secure, simple way for people to network, find potential jobs, improve school efficiency, and even provide quicker access to life-saving medical test results. Website: https://www.opptin.com/internship Opptin is searching for potential team members with experience in coding, design, and architecture. Any schedule works, but must be able to attend MOST meetings that are given adequate notice for. General Responsibilities:
Attend regular meetings with team members, whether online or in-person
Complete all tasks assigned to you on time
Be able to work in a group with others
Update the rest of the team on your progress via discord
Be open to sharing your ideas with the rest of the team
Requirements:
Brainstorm UX solutions and work on interactive and interface design of the OpptIn product
End-to-end design for desktop and mobile UI to help maintain design assets for mobile and desktop UIs of the product, including working with wireframing and prototyping
Collaborate with the UX/UI team and developers to coordinate designs and communicate through implementation
Experience with graphic design
Photoshop experience preferred
Job Type: Internship
Pay: $0.00 per year
Work Location:
Fully Remote
Benefits:
None
Schedule:
Monday to Friday
Company's website:
opptin.com
Work Remotely:
Yes",-1.0,Opptin Internship,"San Francisco, CA",-1,1 to 50 Employees,-1,Company - Private,-1,-1,Less than $1 million (USD),-1,"ux,designer"
21,37,"['ux', '', '', 'product', 'designer']",$118K-$220K (Glassdoor est.),"We are looking to bring on a UX / Product Designer to start immediately for a6 month contract, with the opportunity for extension. This position will begin fully remote through the end of summer (potentially longer) then will transition onsite in San Francisco so the ideal candidate should be local. We are looking for somebody who is well rounded in UX capabilities or somebody from a product design background designing end-to-end products.
We are looking for an UX/UI Hybrid candidate as this is not a developer role. In order to qualify for this role, you should be fluent in design & prototyping apps: Sketch, Invision, Principle and/or other prototyping software. You must have a portfolio to showcase these skills as well!
We are looking for a UX/UI Designer who will bring innovation, creativity and spunk to our team. It is important to us this person has the energy and desire to help bring our fashion to the future while maintaining the integrity of our brand’s past. We are also looking for someone that has strong visual skills being part of a brand like ours, we are looking to really elevate the look and feel of the site.
- Minimum of 3+ years of product/user experience design experience in delivering great designs that met key metrics and was customer centric
Strong knowledge and experience with driving and applying user-centered design processes while working collaboratively with customers, along with cross-functional teams including engineering, product management, and user research. Seasoned in Agile development processes
Proficient in a variety of methods to convey ideas and concepts (e.g. storyboards, wireframes, prototypes, etc)
Proven track record in setting a vision for great customer experiences, inspiring others to get behind the vision, and ultimately delivering products and services that are known for their delightful experience and ease of use",4.5,"Vitamin Talent
4.5","San Francisco, CA",-1,201 to 500 Employees,2011,Company - Private,Advertising & Marketing,Business Services,$100 to $500 million (USD),-1,"ux,designer"
22,39,"['ui', 'ux', 'designer']",$118K-$220K (Glassdoor est.),"UI/UX Designer
Mountain ViewDesign - Multi-media DesignExperienced
Responsibilities
TikTok is the leading destination for short-form mobile video. Our mission is to inspire creativity and bring joy. TikTok has global offices including Los Angeles, New York, London, Paris, Berlin, Dubai, Mumbai, Singapore, Jakarta, Seoul, and Tokyo.
TikTok is seeking a full-time UI/UX Designer who will contribute to the design team with improving our apps to easy-to-use products for our users and supporting R&D prototype in our creative MTV office. The ideal candidate embraces challenge and growth, desires to learn new technologies, thrives in a team environment, and possesses a confident, passionate, self-driven attitude. This role centers around creating fun, engaging UI artwork and user experiences for interactive technologies with a team of motivated and innovative artists and engineers.
Responsibilities
Gather, evaluate, and conduct user requirements and competitor analysis
Brainstorm with creative team and illustrate design ideas of user interface elements
Develop and maintain existing cross-functional partnerships across several teams, regions, and disciplines.
Determine information architecture and create sitemaps
Create prototypes and wireframes that clearly illustrate how apps function
Conduct usability testing and research. Deliver meaningful insights from data-rich sources.
Identify and troubleshoot UX problems based on qualitative data and feedback
Adhere to style standards on fonts, shapes, colors and images
Qualifications
- 4+ years of experience as an UI-UX Designer or related position
UI design portfolio which illustrates interaction design principles
Advanced knowledge of industry standard tools
UI animation experience and awareness
Understand and the ability to translate brand identity and objectives into digital experiences
Excellent interpersonal and communication skills, and ability to design and articulate the concepts in a clear, concise manner
Good time management skills and creative situational awareness ability
Detail oriented. Ability to deliver a polished product with strong attention to detail
Critical thinker, problem solver and user-centric mindset
Must be dependable, positive, and open-minded
Bonus Qualifications
Experience working with international partners at different time zones
Understanding of the landscape and new developments in new media, tech and/or entertainment industry
Experience working in a fast-changing, hands-on work environment
Apply
Share to",3.8,"TikTok
3.8","Mountain View, CA",-1,1001 to 5000 Employees,2016,Company - Private,Internet,Information Technology,Unknown / Non-Applicable,-1,"ux,designer"
23,41,"['ui', 'ux', 'designer']",$118K-$220K (Glassdoor est.),"WHO WE ARE:
Founded in 2012, BirdEye is headquartered in Silicon Valley and led by alumni from Google, Amazon, and Yahoo. In 2019, BirdEye was ranked #1 in Online Reputation Management and #60 in the “100 Best Software Companies” in the world by G2 Crowd. BirdEye is backed by Salesforce founder Marc Benioff, Yahoo co-founder Jerry Yang, Trinity Ventures and World Innovation Lab.
BirdEye is the leading customer experience management and business reputation platform, reimagining the way reviews are used to better understand customers, improve operations and increase revenue. With BirdEye, companies can put customers at the core of every business decision, turning feedback into insights, insights into action, and customer happiness into revenue.
To learn more, please visit: https://birdeye.com
WHAT YOU’LL DO:
Join BirdEye as we redefine Customer Experience Management for our customers. You will be integrally involved with modern design aesthetic and be a part of a creative, fast paced and intellectually stimulating Design team in Palo Alto, California. Our team moves fast and believes that the best way to make delightful experiences is to find the perfect nexus of brand, customer and technology.
The design and growth team works across most projects at BirdEye —from our brand voice and websites to events, web and mobile products, and even printed publications. And since BirdEye's main audience is other businesses who wants to deliver great customer experience, we agonize over and take pride in crafting user-friendly and user-focused experiences.
BirdEye has a design first approach that brings consumer grade design and web scale engineering together to create amazing user experiences. Our team members combine great visual sense with a deep understanding of the subtle nuance that makes a complex product feel simple and intuitive.
Responsibilities
Engage with product management, engineering, business stakeholders and third-party vendors to understand requirements and achieve goals
Translate abstract ideas and requirements into tangible and beautiful design deliverables
Design and craft pixel-perfect interfaces with a high attention to detail
Support User Experience strategy and innovation
Advocate for changes, refinements, and ongoing improvements
Expand upon existing UI components, and style guidelines
Design with an awareness and understanding of browser sizes, device capabilities, and product functionality
Work closely with developers to ensure your designs are built to your specifications
Requirements
BS in Human-Computer Interaction or related field or work experience as a designer
Must have a modern design aesthetic and pay attention to every detail and every pixel.
Body of design work demonstrating strong design process, and interaction and visual design skills.
Experience with design tools like Sketch, Zeplin, Flinto, Principle, Marvel, InVision, etc.
Strong grasp of modern app design patterns
Impeccable attention to detail
A great attitude and desire to work in a team environment
Benefits
WHY YOU’LL JOIN US:
As relentless innovators, we make excellence a habit. We know that building beautiful things means shattering walls, so we’re bold, scrappy, and love a good challenge. We’re obsessed with our customers. We put their happiness at the center of every decision, and we view our customers’ weaknesses and successes as our own.
Working at BirdEye means being part of a tight-knit family that helps you succeed and loves to celebrate with you. We find strength in diversity and inclusion, so we strive to find different points of view and expect everyone to represent their authentic self at all times.
Benefits
A competitive salary
A rich benefits package including medical, dental, and vision
401(k) plan
Stocked kitchen complete with coffee, snacks, and catered lunch every Friday
Monthly team building activities
Abundant opportunities that come with a dynamic and fast-growing organization!",4.5,"BirdEye
4.5","Palo Alto, CA",-1,201 to 500 Employees,2012,Company - Private,Internet,Information Technology,$25 to $50 million (USD),-1,"ux,designer"
24,42,"['ux', 'designer', 'ii']",$118K-$220K (Glassdoor est.),"Position Overview:
This position will leverage human-centered design to rapidly research, design and prototype new digital experiences across the Sutter Health system. Responsible for qualitative and quantitative user research, conceptualization, synthesis, prototyping, design, project management, and success metrics for multiple projects with diverse stakeholder groups.
Responsible for leading human-centered qualitative and quantitative research to understand current user workflows in place at Sutter hospitals and doctor's offices (from the patient, provider and care team perspectives), as well as the human journey outside of the healthcare system. Responsible for synthesizing information to clearly communicate user needs, business needs, insights, human needs and opportunity areas, and working with interdisciplinary teams and diverse internal and external stakeholder groups and partners to rapidly build and develop new prototypes and products. Lead project teams and facilitate stakeholder groups through the design process, and outline key success metrics to measure and communicate outcomes on desirability, feasibility, and viability.
This position will leverage knowledge of UX design, design research, design prototyping, innovation, technology, and business strategy, as well as an understanding of internal innovation or demonstrated ability to navigate a large complex organization. Collaborate with an interdisciplinary team that includes other designers, researchers, project managers, business designers, and engineers. Coach non-designers on the design process, and facilitate workshops with diverse groups across the organization.
Qualifications:
Education
Bachelor's degree in design, business, healthcare, other related field or equivalent education/experience required.
Experience
4+ years Design experience.
Strong portfolio highlighting UX design,
design research/strategy, conceptualization and visualization,
synthesis/insights, prototyping, success metrics, and project management.
Proven results designing and implementing new product offerings, whether in a
consulting, startup, or internal innovation capacity.
4+ years Healthcare experience. Experience is ideally in a patient-facing or provider-facing capacity required.
Skills and Knowledge
Has deep understanding of UX design,
design research (both generative and usability), synthesis and insight
development, design and business strategy, prototyping in a variety of mediums,
and creating plans for measuring outcomes.
Advanced skills in Digital UX
Able to engage multiple stakeholders and
integrate innovation, design, and technology into viable solutions.
Ideally has knowledge of healthcare structures,
stakeholders, regulations, constraints, challenges, trends, incentives,
technology and opportunities.
An understanding of hospital and clinical
processes is preferred, or demonstrated ability to navigate a large complex
organization.
Can lead interdisciplinary project teams of
designers, project managers and front-line clinical providers in creating new
or redesigning current products
Success in identifying, testing and implementing
efficient and effective solutions that improve the patient experience, provide
time/cost savings and incorporate human-centered design across Sutter Healths
care continuum.
Success in designing feedback mechanisms to
measure outcomes on project viability, desirability, and feasibility.
Organization: Sutter Health System Office
Employee Status: Regular
Benefits: Yes
Position Status: Exempt
Union: No
Job Shift: Day
Shift Hours: 8 Hour Shift
Days of the Week Scheduled: Monday-Friday
Weekend Requirements: Other
Schedule: Full Time
Hrs Per 2wk Pay Period: 80",3.9,"Sutter Health
3.9","San Francisco, CA",-1,10000+ Employees,1981,Nonprofit Organization,Health Care Services & Hospitals,Health Care,$5 to $10 billion (USD),-1,"ux,designer"
25,43,"['ux', 'designer']",$111K-$166K (Glassdoor est.),"Hub (joinhub.com) is searching for a UX Designer who will provide the compelling, intuitive, easy experience that improve the lives of millions of working professionals who want to get ahead together in like-minded communities.
As a lead user experience designer, you will be responsible for innovating and designing exceptional user experiences while working collaboratively with product managers, product marketing, and engineering. You will lead design and work with other designers if necessary to execute the highest quality UX design and process as part of the product team. We believe in quality personas so you should be able to provide input on personas to complete the full user experience process.
You should have an entrepreneurial spirit and also be an innovator to push great UX forward across the team. You don’t mind testing the product prototype or designs, or the finished feature, to a small group of customers to ensure that your ideas are validated by our target market.
In addition to excellent interaction and visual design skills, you should have experience partnering with product managers and business leaders to influence consumer design projects that put the user first. Your portfolio should reflect this experience. You should have knowledge of a variety of UX process techniques and be willing to experiment with others. You should have a joyful, articulate passion for UX, and have experience collaborating with other designers and team members.
Responsibilities
Develop user experience design concepts, wireframes, mockups, prototypes, usage scenarios, task analysis, specifications, and other UX design deliverables for some of Hub’s highest priority initiatives.
Create user experiences that go beyond usability to meet the ever-increasing expectations of our consumers.
Be a leader and an innovator on the Hub Design Team.
Participate in the product definition process with the Product Manager, Engineering Manager, and User Research. Drive clarification of the user tasks and objectives.
Provide User Research to craft user testing prototypes and protocols in support of ongoing user testing.
Develop expert-level knowledge of competitive and complementary products and bring new ideas to the team.
Have good understanding of current design patterns and guidelines for both mobile and web and be able to create a coherent cross device experience.
Own the Hub style guide and brand guidelines with VP of Marketing.
Ensure that visual design mockups are consistent with Hub style and brand guidelines.
Attention to detail, project communication, negotiating and meeting deliverable dates are key skills for our startup.
Create metrics that show user success.
Experience translating business requirement documents into designs and mock-ups
Complete UX skill set: workshop facilitation, identifying customer problem statements, problem discovery, solution generation, concept creation, wireframing, testing, synthesis, iteration, prototyping, heuristic evaluation, competitive analysis, customer journey mapping, applying design systems and producing deliverables for development.
Job Qualifications
7+ years as a User Experience Designer, creating excellent experiences that delight the customer.
Experience driving design standards in startup organizations.
Ability to evaluate our current experience and improve our value to consumers by creating end-to-end customer journey maps.
High degree of creativity and ‘let’s do this’ problem solving.
Ability to think and design holistically to create a cohesive and coherent product experience.
Excellent understanding of fundamental design principles and human interaction principles.
Experience with gamification of content (i.e. experience designing leaderboards, badges, achievements and progress, etc.).
Excellent conceptual, visual and analytical skills.
Excellent organizational and communication skills.
Relentless attention to detail and consistent deliver.
Ability to collaborate with and influence the larger team.
Bachelors or Masters Degree in the study of design including one of the following; Design, Information Architecture, Human Factors or equivalent project/portfolio experience.
Proficiency in UX Design tools such as Sketch, Abstract, Adobe Creative Suite (Photoshop, Illustrator) or similar tools to create user interfaces.
Willing and able to meet with the team in Mountain View, California.
Preferred
Experience designing consumer-facing products with market traction.
Experience with responsive designs for desktop-to-mobile products.
Demonstrate a portfolio that includes the above requirements.
Have worked in a growing startup as the lead UX/designer.
Learn more about our MVP of Hub by signing on to joinhub.com (may we suggest you join the Creative hub?). We will ask what your initial thoughts are and approach to organizing UX for the next stage.
Hub is a gamified marketplace for professional achievement, which rewards users and opens opportunities for networking with like-minded people. Hub encourages both on and offline interaction to build trusted relationships and networks using blockchain data and social reputation currency.",-1.0,Hub,"Mountain View, CA",-1,1 to 50 Employees,2017,Company - Private,Internet,Information Technology,Unknown / Non-Applicable,-1,"ux,designer"
26,0,"['sr.', 'data', 'scientist']",$108K-$169K (Glassdoor est.),"The Commercial Lines BI team at Woodruff Sawyer is a newly founded capability to enhance the organizations capacity in providing data-backed insights to its clients seeking P&C and liability insurance. The members of this team will work closely with the VP of Commercial Lines Business Intelligence and other enterprise stakeholders to develop and roll out analytics solutions. A successful candidate will apply data science methodologies, actuarial methods, knowledge of insurance, and the latest technological tools to create reusable business intelligence assets.
What you will be doing:
With limited guidance from the leaders, managers, or project leads:
Primarily collects, prepares and analyzes data from various sources.
Executes formal exploratory data analysis for data science projects.
Develops re-usable templates and reports for the review and feedback by other team members.
Prepares analysis summaries and provides to the colleagues and leaders.
Conducts data research and presents findings.
Identifies areas of more in-depth analysis and builds prototypes for IT implementation.
Required Qualifications:
A graduate degree in any of the quantitative disciplines, e.g., Actuarial Science, Math, Engineering, Stats, Finance, or a related discipline.
Knowledge of basic data science algorithms demonstrable through internships, coursework, or a combination.
2+ years of experience in visual analysis packages such as Tableau / Power BI.
2+ years of experience in programming using Python or R.
Skilled in developing presentations in PowerPoint or equivalent.
2+ years of work experience in an insurance or FINTECH environment as a data scientist or BI analyst. (4+ for an undergraduate).
Knowledge of common insurance terminologies. A couple of actuarial exams is a plus.
What you'll be getting from us:
The opportunity to work with sharp, motivated co-workers in a collaborative and entrepreneurial team
A flexible work schedule
A fun office in vibrant downtown San Francisco
Security for your future: Employee Stock Option Program (ESOP), 401K with company match and profit sharing
Medical, Dental and Vision benefits for employees and families (including domestic partners)
Life Insurance, short term and long-term disability benefits
Paid vacation, holiday and sick days
Tuition reimbursement
Access to an Employee Assistance Program
Fun company and team outings",3.9,"Woodruff-Sawyer & Co.
3.9","San Francisco, CA",-1,201 to 500 Employees,1918,Company - Private,Insurance Agencies & Brokerages,Insurance,$100 to $500 million (USD),-1,"data,scientist"
27,1,"['lead', 'data', 'scientist']",$108K-$169K (Glassdoor est.),"Our mission is to make the best mental health tools radically accessible for everyone.
We are pioneers in building personalized digital mental health tools to help millions of people with mental health difficulties. We are building a suite of regulated, prescription only digital therapeutics as well as a sophisticated delivery platform capable of responding to the lived experience of our users.
Our tools are powered by the latest research in NLP and ML, use scientifically proven techniques from Cognitive Behavior Therapy, and are based on 10 years of intervention science at Stanford University. Our founder has an international reputation in Digital Mental Health intervention development. And our Chairman is Andrew Ng; and Dan Jurafsky is a member of our advisory board, both globally recognized leaders in AI/NLP.
There has never been a better time to use your data science skills for good. Given the recent acceleration in infrastructure to allow for the meaningful adoption of DTx, our strong product reputation and existing relationships within health systems, Woebot is in a period of explosive growth. We are looking for a product-minded data scientist to continue to create value for our users, customers, and execute on our IP strategy.
What you will do:
As a leader in the Product team, you will work cross-departmentally with clinical and engineering team members to build machine learning and AI algorithms that are the core of Woebot's intelligence. There are four areas we want you to own and drive:
Drive An Insights & Analytics Culture
You will help create data analysis and analytics pipelines that improve not only the underlying ML algorithms but also the product and the user's experience.
You will lead a team of Analysts and be responsible for good data driven hygiene, including the creation, redesign, and maintenance of analytics dashboards and BI tools such as BigQuery, Google Data Studio, or Tableau.
You will also advise on data labeling strategy so that Woebot's conversational engine is continuously improved and informs changes in features, content, and UX.
Improve User Personalization:
Woebot exchanges 4.7 M messages with our users every week. You will create & lead a data-driven personalization strategy for this audience.
We consider personalization to be key for developing a relationship over time while delivering precision interventions, that is; the right method to the right person at the right time.
Contribute To Evidence:
In the next 6 months, you'll help Woebot develop evidence & trends to demonstrate the value of our highest priority products.
You're helping answer the most pressing questions in the mental health field around engagement, dose, and treatment outcomes.
In partnership with our Clinical team and academic partners, we expect you to contribute to our pipeline of peer-reviewed published research.
In addition to some platform-related pieces, you will lead publication in Data Science and HCI research.
What Your First 90 Days Could Look Like
By Day 30 - Assess the lay of the landscape & team - and make suggestions around in house analytic tools, dashboard and strategies.
By Day 60 - understand the roadmap with our founder and reverse engineer our tailored interventions. Deliver a prioritized list of roadmap items.
By Day 90 - Submit your first publication. Execute on a plan for improving user outcomes with our analytics and ML.
Role Specific Competencies:
PhD in Data Analysis or ML/AI or computational field with 8-10+ years of applied experience
Knowledge of one or more modern ML/NLP frameworks, such as PyTorch, Tensorflow, or Keras
Track Record of publishing in peer reviewed academic literature
You've led and managed other analysts and data scientists.
Strong written and verbal communication skills
What you will add to our culture:
Strong work-ethic: Works hard to get a job done.
Proactive & flexible: Able to hit the ground running, takes responsibility for finding a way to get the job done.
Empathic: Place a high value on user-experience, are a team player motivated to help others be successful.
High standards: Applies high standards toward everything.
Humble: You want to learn and grow in the role, and are open to feedback on how to do that.
What we offer:
Competitive Salary
Stock Options
Flexible PTO
Health, Dental & Vision
Healthy Snacks & Meals
Woebot is an equal opportunity employer and we deeply value diversity at our company. We do not discriminate on the basis of race, religion, color, national origin, gender, sexual orientation, age, marital status, veteran status, or disability status.",4.1,"Woebot Labs Inc
4.1","San Francisco, CA",-1,1 to 50 Employees,2017,Company - Private,Computer Hardware & Software,Information Technology,Unknown / Non-Applicable,-1,"data,scientist"
28,19,"['principal', 'data', 'scientist']",$108K-$169K (Glassdoor est.),"About Figure
At Figure, we're on a mission to transform financial services through blockchain, bringing speed, efficiency and savings to both consumers and institutions.
Accomplishing this kind of transformation requires building really big things. And we understand that building big requires a creative, team oriented and supportive environment where everyone can do their absolute best work. The Figure team is comprised of incredibly driven, innovative, collaborative and curious people who love architecting and building from scratch. Everyone at the company is encouraged to be an individual contributor but also a team collaborator.
We value team members who bring an entrepreneurial mindset to every task and will embrace our culture of innovation. Every day at Figure is a journey in continuous learning yet a daily focus on getting work done that makes a difference.
This is an opportunity to work with a team of proven leaders who have already created billions of dollars in value in the Fintech space. Join us!
About the Role
Each member of the Data team plays an integral part of what we are building at Figure. We rely on advanced techniques in machine learning, cloud platforms and big data to drive decisions across the organization. If you are interested in working with an impressive team of Data pros who collaborate and challenge each other, and want to solve interesting problems to propel the company's growth, apply now!
What You'll Do
Develop custom models and algorithms to apply to large datasets, as well as, processes for monitoring and analyzing their performance.
Mine and analyze data from different resources, and use predictive modeling to increase and optimize customer experiences, customer acquisition, underwriting and other business outcomes.
Assess the effectiveness and accuracy of new data sources and data gathering techniques.
Work with stakeholders throughout the organization to identify opportunities for leveraging data to drive business decisions.
Understand and apply proper risk framework to your analysis and modeling.
Collaborate cross functionally to implement models and monitor outcomes.
What We Look For
8+ years of hands on Data Science experience building Models and partnering with stakeholders to make business decisions
Credit and Risk modeling experience in consumer finance
Strong problem solving skills with an emphasis on translating real-life problems into a concrete model development strategy. Blend academic rigor with a sense of pragmatism for rapidly prototyping and delivering solutions.
Experienced in using Python for analysis and modeling (TensorFlow is a big plus)
Experience applying a wide range of statistical techniques to large data sets, and understanding their real-world advantages/drawbacks.
Experience using web services (AWS, GCP), and distributed data/computing tools (Spark, Map/Reduce, Hadoop, Hive, etc.)
Excellent cross-functional communication skills.
Ability to thrive in a fast-paced environment.
Benefits To You
Competitive salary based on experience and skills
Firm-wide performance based bonus
Competitive stock options package as an early member of the team
A flexible paid time off and vacation policy
Comprehensive health, vision, dental insurance
Company FSA, 401k, work from home benefits
And much more to come!
Figure will not sponsor work visas for this position. In compliance with federal law, all persons hired will be required to verify identity and eligibility to work in the United States and to complete the required employment eligibility verification form upon hire.",4.3,"Figure Technologies Inc
4.3","San Francisco, CA",-1,201 to 500 Employees,2018,Company - Private,Lending,Finance,Unknown / Non-Applicable,-1,"data,scientist"
29,21,"['data', 'scientist', 'ii', 'machine', 'learning']",$135K-$215K (Glassdoor est.),"Coursera is a leading online learning platform for higher education, where 64 million learners from around the world come to learn skills of the future. More than 200 of the world’s top universities and industry educators partner with Coursera to offer courses, Specializations, certificates, and degree programs. 2,500 companies trust the company’s enterprise platform Coursera for Business to transform their talent. Coursera for Government equips government employees and citizens with in-demand skills to build a competitive workforce. Coursera for Campus empowers any university to offer high-quality, job-relevant online education to students, alumni, faculty, and staff. Coursera is backed by leading investors that include Kleiner Perkins, New Enterprise Associates, Learn Capital, and SEEK Group.
At Coursera, our Data Science team is helping to build the future of education through data-powered products and data-driven decisions. In Machine Learning, we define, develop, and launch the models and algorithms that power content discovery, personalized learning, and machine-assisted teaching and grading. In Decision Science, we drive product and business strategy through measurement, experimentation, and causal inference. We believe the next generation of teaching and learning should be personalized, accessible, and efficient. With our scale, data, technology, and talent, Coursera and its Data Science team are positioned to make that vision a reality.
We are looking for a creative and collaborative Data Scientist with strong experience in cloud services. In this role, you will own Coursera’s search experience while helping scale Coursera’s ML systems. Our ideal candidate possesses a strong statistical and computational skillset, is collaborative and impact-driven, and shares our passion for education.
Your responsibilities:
Ideate, prototype, and productionize ML solutions to improve Coursera’s search engine and discovery experience
Design, deploy and scale end-to-end machine learning / deep learning pipelines and models with AWS cloud services
Extend existing ML libraries and frameworks