-
Notifications
You must be signed in to change notification settings - Fork 0
/
Full_stack.csv
We can't make this file beautiful and searchable because it's too large.
9159 lines (8328 loc) · 899 KB
/
Full_stack.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
Job Title,Salary Estimate,Rating,Company Name,Location,Industry,Sector,Job Description
Full Stack Designer (SWEIII) - Remote - U.S.,$135.00,4.4,Outbound.com,Remote,"Industry
Architectural & Engineering Services","Construction, Repair & Maintenance Services","About Outbound
Outbound.com is positioned to become the leader in outbound sales and marketing automation. Based in Tampa Florida, Outbound’s co-founders are seasoned executives who have experience building, launching and successfully exiting workflow automation platforms. Additionally we are backed by several of the largest VC firms in Tampa including Tampa Bay Ventures.
We are just getting started and this is your opportunity to get in early on the next potential Unicorn.
About the Role
As a Full Stack Designer (SWE III) with our product engineering team you will be responsible for designing and implementing the UX and UI for the Outbound.com platform based on the brand guidelines established by product marketing. This team is responsible for launching the Outbound.com marketplace as well as our workflow automation platform.
Qualifications
7 years of professional work experience
Experience working in a fast-paced, dynamic environment preferably a VC backed startup or other high-innovation, high speed experience.
Ability to design and implement simple, reusable and performant solutions to complex interactions over deeply related and nested data structures.
Familiarity with a rapid prototyping tool such as Figma, Adobe XD, Sketch (Figma Preferred)
Design, implement a reusable component library in React that can be used by other developers to rapidly build additional pages and experiences
As a Full Stack Designer on the team you will contribute by:
Being the go-to person for UX, UI, accessibility and other design related decisions.
Being the go-to person for styling best practices. You should have an opinion on pre-processors and how css is written and organized in the project.
Implementing a component library in react and Typescript that breaks down your designs into reusable pieces that other (less design focused) developers can use to implement high quality user experiences without a heavy design sprint.
Designing and implementing core customer experiences around workflow building, document templating, data filtering and search, reporting and additional other experiences. We are building a platform from the ground up and this role will be the primary designer.
Participate in product discovery by designing in house solutions or incorporating third party solutions that can accelerate our timelines such as MUI, Froala, etc.
Maintain Storybook stories for the component library
Contribute to high quality code by writing unit tests and complying with static code scanning quality metrics.
Review PRs in Github and give feedback on design, styling and component usage and approve any design related changes. (Automated by Storybook)
Additional Information
This role will receive a competitive salary based on location, benefits and equity.
Note: Outbound benefit, compensation and equity programs are subject to eligibility requirements and other terms of the applicable plan or program.
Salary Range
Salary ranges from 120 - 150 depending on equity, experience and location"
"Analyst II, Full Stack",-1,-1,Affirm,Remote,-1,-1,"Affirm is reinventing credit to make it more honest and friendly, giving consumers the flexibility to buy now and pay later without any hidden fees or compounding interest.
The Credit team works cross-functionally with Machine Learning, Product, Engineering, Capital Markets, and Commercial teams to responsibly manage the risk profile of the business. We're looking for a thoughtful, driven individual who wants to learn, grow, and solve hard problems.
The team's mandate is to enable sustainable growth while closely managing the profitability and resilience of our portfolio. As Affirm continues on an exciting growth trajectory, thinking through credit strategies for new initiatives and products, shaping ongoing testing and experimentation, and being ready for navigating through any exogenous changes will be important problems to tackle.
This role requires extensive use of data analytics to derive insights and develop credit strategies. It also requires a lot of cross-functional partnership. Working with the Machine Learning and Engineering team to develop new underwriting models, with the Product teams to develop new products and features, with the Merchant Pricing team to value different merchants, with the Finance team to help facilitate discussions with debt and equity investors are some parts of the role.
Come join us in our mission to change consumer finance through better data and technology, lower costs, and increased transparency while providing the best customer experience!
What you'll do
Leverage experimentation and advanced data analytics to derive insights. Dissect complex data and translate it into actionable strategies to help optimize credit underwriting
Determine and optimize user limit assignments, ensuring they are set optimally to balance risk and growth, driving healthy user engagement
Play a pivotal role in optimizing the portfolio, managing risk and ensuring the health and profitability of credit offerings
Design and implement inclusive credit strategies by leveraging alternative data, expanding credit to more users while managing the risk strategically
Partner with Machine Learning and Engineering teams on building effective credit risk capabilities
What we look for
2-4 years of work experience as a data analyst/data scientist (consumer credit risk management strongly preferred but not required)
Curious and passionate to learn new things and think outside the box
Extensive experience with SQL and Python, or other scripting languages. Experience with Spark is a plus
Ability to collaborate and influence across different teams in the organization
Pay Grade - USA29
Employees new to Affirm or promoted into a new role, typically begin in the min to mid range.
USA base pay range (CA, WA, NY, NJ, CT) per year:
Min: $138,800
Mid: $173,500
Max: $208,200
USA base pay range (all other U.S. states) per year:
Min: $124,900
Mid: $156,100
Max: $187,300
#LI-Remote
Affirm is proud to be a remote-first company! The majority of our roles are remote and you can work almost anywhere within the country of employment. Affirmers in proximal roles have the flexibility to work remotely, but will occasionally be required to work out of their assigned Affirm office. A limited number of roles remain office-based due to the nature of their job responsibilities.
We have a simple and transparent remote-first grade-based compensation structure. Offer amounts within the range are based on a number of factors including but not limited to job-related skills, experience, and relevant education or training. Across the broader organization, certain roles are eligible for equity awards upon hire, promotion, tenure milestones and for performance.
We're extremely proud to offer competitive benefits that are anchored to our core value of people come first. Some key highlights of our benefits package include:
Health care coverage - Affirm covers all premiums for all levels of coverage for you and your dependents
Flexible Spending Wallets - generous stipends for spending on Technology, Food, various Lifestyle needs, and family forming expenses
Time off - competitive vacation and holiday schedules allowing you to take time off to rest and recharge
ESPP - An employee stock purchase plan enabling you to buy shares of Affirm at a discount
We believe It's On Us to provide an inclusive interview experience for all, including people with disabilities. We are happy to provide reasonable accommodations to candidates in need of individualized support during the hiring process.
By clicking ""Submit Application,"" you acknowledge that you have read the Affirm Employment Privacy Policy for applicants within the United States, the EU Employee Notice Regarding Use of Personal Data (Poland) for applicants applying from Poland, the EU Employee Notice Regarding Use of Personal Data (Spain) for applicants applying from Spain, or the Affirm U.K. Limited Employee Notice Regarding Use of Personal Data for applicants applying from the United Kingdom, and hereby freely and unambiguously give informed consent to the collection, processing, use, and storage of your personal information as described therein."
Full Stack Engineer II,"$112,500",4.7,Yes Energy,"Boulder, CO","Industry
Software Development",Information Technology,"Full Stack Software Engineer II
Yes Energy, LLC
Join the Market Leader in Electric Power Trading Solutions
The electrical grid is the largest and most complicated machine ever built. Yes Energy’s industry leading electric power trading analytics software provides real time visibility into the massive amount of data that is generated by the North American electrical grid every day. Our unique and innovative view of the data informs real time trading decisions that keep utility prices low and the grid up and running. It’s both challenging work and work with a purpose.
Be a part of our successful, growing business.
We are seeking to fill one full time Software Engineer position immediately in our Chicago, IL office.
Impact Statement
In the Engineering group we are accelerating the product vision by building solutions in a fun, collaborative, efficient and adaptive team. As an Engineer you will collaborate with leaders in technology, data, and energy to build solutions and tools for handling the highly complex problems posed by the evolving power grid. You will also work directly on projects to integrate systems and serve energy data to customers. We are curious people who take pride in our work, value high-quality communication, and strive to continuously improve.
You would be a great fit if you…
Want to design and implement complex, yet intuitive, ways to query, visualize, and analyze large data sets – We love our customers and we love to give them a high-quality user experience
Enjoy working with engineers across experience levels using leadership, mentorship, and followership skills – We have a culture of learning and constantly invest in each other’s growth
Have a testing mindset and want to help promote and lead our ongoing journey towards continuous testing – We believe in building quality in from the beginning
Are a curious person who likes to learn new things and dive into challenging problems – We can get pretty nerdy about our industry, and it is constantly evolving!
Are seeking a collaborative, cross-functional team who uses agile software development methodologies – We believe that comradery and collaboration make us better
What you will do with us…
Develop, test, deploy, and maintain scalable, reliable systems using the full stack.
Work closely with operations and infrastructure to build and scale services.
Participate in all phases of the product life cycle: requirements analysis, design, development, deployment, and support.
Embrace Agile development methodologies and practices.
Contribute actively to implementation and architecture discussions, collaborating with the team.
Support fellow engineers through peer code reviews and constructive discussions.
We do ask that you have…
4-7 years of experience working as a software engineer.
Solid experience with front-end technologies like ReactJS, JavaScript, and HTML.
Proficiency in back-end languages, especially Java, and web servers like Tomcat.
Extensive experience designing, building, and consuming REST APIs.
Familiarity with data integration and ETL tools.
Working knowledge of relational databases (MySQL, Oracle) and NoSQL databases (ElasticSearch, MongoDB, Redis, etc.). Experience with Oracle PL/SQL is a plus.
Understanding of modern authorization mechanisms, such as JSON Web Token (JWT).
Passion for optimizing system performance and scalability.
Familiarity with Agile development methodologies.
Excellent communication and teamwork skills. Passion for sharing knowledge with the rest of your team, building shared tooling, and directly helping customers.
Self-directed and comfortable supporting the needs of multiple teams, systems, and products.
Continual learner, engaged in professional development.
You will stand out if you have…
Proven expertise in leading large-scale projects and driving innovative solutions.
Experience or interest in mentoring and supporting fellow team members.
Have experience with TDD and/or continuous testing
Have a desire to learn the energy industry or experience in equities/commodities trading
Keywords
React, Redux, JavaScript, Java, Spring, SQL, REST API, Application Developer, Data Engineer, Single Page Applications, Data Visualization, UX, DX, Agile, TDD / Test-Driven Development.
About Yes Energy
Overview
Yes Energy delivers real-time market data and electric power trading decision solutions. Over 1,000 market participants use Yes Energy solutions daily. The business is a leader in all aspects of information content collection and management, as well as in developing and delivering data and market analytics solutions. Since its inception in 2008 Yes Energy has become a trusted and respected supplier of innovative and reliable solutions focused on the needs of power market analysts, traders and trade managers. Yes Energy has a team of just over 100 amazing professionals located in Boulder, CO (HQ), Boston, MA and Chicago, IL.
Culture
At Yes Energy we care about saying “Yes” to customers. We like to listen and learn, and develop our solutions in line with our customers’ needs. We think about customers as business partners and when we help them to be more successful … we are more successful too.
Around the office our culture is driven by some pretty fundamental values that we’re proud of:
We love innovation and solving tough challenges;
We are “high standards people” who combine passion and pride with hard work and rewards of all kinds- in an ethic that is consistent across the company;
We’re team-focused with a flat hierarchy- we work in small teams on well-defined projects that directly impact the success of the business;
We play to the strengths and experience of each person, while each of us also works along a continuum of roles adjacent to our focus area. This presents a challenge of maintaining a broad set of skills as well as an opportunity to learn and contribute in many ways;
We are constantly growing. Professional development happens every day and every year.
Compensation and Benefits
We offer strongly competitive salaries and real bonuses that are achievable and that you can impact. Our benefits package is also very competitive and it includes medical insurance, 401K Plan with matching, flexible vacation and flexible work schedules. Investment in both formal and informal professional development is encouraged and funded by Yes Energy.
Base Compensation Range: $100,000 - 125,000"
Full Stack Developer,-1,-1,Amivero,United States,-1,-1,"Description:
The Amivero Team
Amivero’s team of IT professionals delivers digital services that elevate the federal government; whether national security or improved government services. Our human-centered, data-driven approach is focused on truly understanding the environment and the challenge, and reimagining with our customer how outcomes can be achieved.
Our team of technologists leverage modern, agile methods to design and develop equitable, accessible, and innovative data and software services that impact hundreds of millions of people.
As a member of the Amivero team you will use your empathy for a customer’s situation, your passion for service, your energy for solutioning, and your bias towards action to bring modernization to very important, mission-critical, and public service government IT systems..
Special Requirements
US Citizenship Required to obtain CBP clearance
Bachelor’s Degree +12yrs of experience
What Your Day Might Include...
Support a complex program to provide development and operations and maintenance for critical systems on a mission-critical program supporting the Passenger Systems Program Directorate (PSPD) Interface and Support Processes division within Customs and Border Protection (CBP).
In this hands-on position, you will work collaboratively to architect, design, build, deliver, and enhance highly available, scalable, real-time systems.
You will exercise your judgment in determining and recommending the best designs based on customer business objectives, timelines, and other resource constraints.
You will participate in all aspects of the software development lifecycle of a mission critical product including scope and work estimation, architecture and design, coding and unit testing.
Support all aspects of software development (designing, coding, testing, debugging, and maintaining products).
Must be a self-starter with the ability to work independently with minimal supervision.
Interface with software developers, analysts, and other project team members using Agile SCRUM methodology and SAFe to deliver features that enhance system capabilities and facilitate CBP’s mission.
Translate customer needs into user stories and deliver working capabilities at the conclusion of each sprint.
Mentor other software developers on product team to enhance their skills.
Participate and/or lead sprint demonstrations and facilitate implementation of agreed upon ideas identified at retrospectives.
Work with others on product teams to develop solutions to hard problems that are impeding progress.
Effectively communicate technical challenges, options considered, and the recommended solution.
Requirements:
You'll Bring These Qualifications...
Software development experience should include many of the following technologies: Oracle, SQL, Java, HTML5/JavaScript, Frameworks: Angular, React, Spring MVC, Struts, JSF, Weblogic, OpenShift Container Platform (OCP) JDBC, MyBATIS, Hibernate Spring, Spring Boot
Experience with one or more of the following system-to-system interfaces: Web Services both SOAP and REST, IBM MQ, Kafka, S/FTP
Experience with DevOps frameworks and proficiency using the following common DevOps tools at a minimum: Confluence & Jira o GitLab o Jenkins, SonarQube, JUnit
Knowledge of software design patterns.
Demonstrated experience working with other developers to jointly design and implement solutions to challenging problems impeding the progress of the product team.
Demonstrated experience facilitating changes in processes to improve team efficiency.
Strong written and verbal communication skills.
Proficiency with MS Office Products (Word, Excel, Visio, & PowerPoint).
EOE/M/F/VET/DISABLED
All qualified applicants will receive consideration without regard to race, color, religion, gender, sexual orientation, gender identity or expression, national origin, age, disability, genetic information, marital status, amnesty, or status as a covered veteran in accordance with applicable federal, state and local laws. Amivero complies with applicable state and local laws governing non-discrimination in employment in every location in which the company has facilities."
Full Stack Developer- GCP,$82.00,3.3,"Stefanini, Inc","Dearborn, MI","Industry
Enterprise Software & Network Solutions",Information Technology,"Stefanini Group is hiring!
Stefanini is looking for Full Stack Developer- GCP, Location: Dearborn, MI (Hybrid)
For quick apply, please reach out Gaurav Bhagat / Phone: 248-263-5240 /Email: Gaurav.bhagat@stefanini.com
Open to W2 candidates only!
Project Description:
Looking for a full-stack Software Engineer focused on delivering software leveraging Java and Python based on proven Lean/Agile methods, utilizing the GCP environment/toolset.
Knowledge of Big Data tools and techniques is a plus.
The Software Engineer will work in a small, cross-functional, and co-located team.
The Software Engineer will collaborate directly and continuously with business partners, product managers and designers, and will release early and often. Position Responsibilities:
Work hands-on with the team and other stakeholders to deliver quality software products that meet our customer's requirements and needs.
Help business partners understand our iterative development approach and focus on delivering a Minimum Viable Product (MVP) through careful and deliberate prioritization.
Skills Required:
Overall 3-5 years of work experience in delivering customer facing products
Minimum 2 years of strong development experience in at least one of the following technologies: Java or Python on a Public Cloud Platform
Exceptional software engineering knowledge; OO Design Principles
Capable full-stack developer comfortable building Java and/or Python applications
Knowledge of Google Cloud Technologies (Cloud Run, DataProc, BigQuery)
Basic understanding of Big Data and potential use cases.
Strong desire to learn new skills and apply to solve business problems/opportunities.
Skills Preferred:
Angular is the preferred front-end technology, but this position will be primarily back-end at the beginning.
***Listed salary ranges may vary based on experience, qualifications, and local market. Also, some positions may include bonuses or other incentives***
Stefanini takes pride in hiring top talent and developing relationships with our future employees. Our talent acquisition teams will never make an offer of employment without having a phone conversation with you. Those face-to-face conversations will involve a description of the job for which you have applied. We also speak with you about the process including interviews and job offers.
About Stefanini Group
The Stefanini Group is a global provider of offshore, onshore and near shore outsourcing, IT digital consulting, systems integration, application, and strategic staffing services to Fortune 1000 enterprises around the world. Our presence is in countries like the Americas, Europe, Africa, and Asia, and more than four hundred clients across a broad spectrum of markets, including financial services, manufacturing, telecommunications, chemical services, technology, public sector, and utilities. Stefanini is a CMM level 5, IT consulting company with a global presence. We are CMM Level 5 company."
Full-Stack Engineer,"$140,000",4.6,Spyglass Software,"Brooklyn, NY","Industry
--",--,"Join our pioneering team as a Full-Stack Engineer in Brooklyn, New York, and play a key role in building the first-ever security platform for data teams!
Description
Full-Stack Engineer
Location: Brooklyn, New York City (in-office)
Spyglass website | LinkedIn Page
️ Why work with us
Spyglass is building the first security platform for data teams.
We are looking for an entrepreneurial founding engineer with ideally 3-years plus of software engineering experience. This is an amazing opportunity to work side by side as a founding member of a venture backed company and change how data teams manage security.
We've raised $2.5M in pre-seed from Notation Capital, 8-Bit Capital, CoFound Partners and V1.VC with deep team expertise in enterprise software and security.
What you’ll work on
You will take a pivotal role in building a cloud based security platform alongside our CTO, CEO, and existing customers. We are working with data engineering teams iterating on the most advanced ways to deliver a purpose built security experience for their needs.
You will have a hand in everything from prioritizing features, to defining the architecture, to selecting the tech stack. As we scale, you will have opportunities to explore various technical and managerial roles.
In addition, you’ll have the opportunity to work across our entire SaaS offering, from our frontend Svelte app to our backend Node.js server, our CI/CD integrations, and recommendations (machine learning) products.
✅ Requirements
Strong knowledge of software development principles.
Strong problem-solving skills and ability to work independently in a fast-paced environment.
Demonstrated ability to quickly learn new technologies, and enthusiasm to contribute at all levels of the stack as needed.
Helpful but not required: Experience with Typescript, Postgres, GCP or Svelte.
Interest in security, machine learning, or developer tools is a plus!
What we look for
High-potential, raw talent.
Curiosity, mischief, and intensity.
History of building useful things.
Compensation
Our compensation packages are based on a wide array of factors including your unique skill set, years of experience, and preferred total compensation ratio between salary and equity.
We’re based in Brooklyn and prefer someone in New York who wants to work in person. We believe that face-to-face interactions foster more effective communication and help to build camaraderie, all things that are important to us as an early startup.
We offer healthcare, a stipend for work equipment, and plan on implementing other perks as we achieve our milestones as a business.
$120k - $160k salary range + significant equity.
Interview process
30 minute call with Co-founder & CEO to discuss background, experience, career goals, and answer questions
1-2 hour take home technical assessment building a basic application
30 minutes with Co-founder & CTO
2-3 hour onsite technical interview in Brooklyn with Co-founder & CTO (onsite in New York, location TBD)
Reference checks
Offer extended
️ Who You’ll Work With
I’m Nick, co-founder and CEO of Spyglass. I’ve spent the last decade building devops and developer tooling companies as the first GTM hire at both Edge Delta (observability) and Harness (CI/CD). I have a passion for working with engineering teams to solve complex and impactful problems at the enterprise scale. I enjoy road biking, playing with my dog and obsessing over my daily macronutrient ratios.
I’m Tyler, co-founder and CTO of Spyglass. I love building software infrastructure, security, and developer tools, and I’m super excited about what we’re building at Spyglass: security on autopilot for data teams. I have years of experience at startups (Fast) to big tech (Uber), but there’s always more to learn. In my free time, I enjoy making electronic music, playing chess, cooking, and gaming.
Salary
$120,000 - $160,000 per year"
Full Stack Software Development Engineer - UI Platform,"$158,250",4.2,Workday,"Pleasanton, CA","Industry
Enterprise Software & Network Solutions",Information Technology,"Your work days are brighter here.
At Workday, it all began with a conversation over breakfast. When our founders met at a sunny California diner, they came up with an idea to revolutionize the enterprise software market. And when we began to rise, one thing that really set us apart was our culture. A culture which was driven by our value of putting our people first. And ever since, the happiness, development, and contribution of every Workmate is central to who we are. Our Workmates believe a healthy employee-centric, collaborative culture is the essential mix of ingredients for success in business. That’s why we look after our people, communities and the planet while still being profitable. Feel encouraged to shine, however that manifests: you don’t need to hide who you are. You can feel the energy and the passion, it's what makes us unique. Inspired to make a brighter work day for all and transform with us to the next stage of our growth journey? Bring your brightest version of you and have a brighter work day here.
About the Team
The UI Platform Interoperability team builds intuitive APIs, works on front-end component libraries, and creates critical application infrastructure that will scale to support the needs of UI product development teams at Workday. Our team of engineers are working on evolving our technology platform and making it easier for other engineers to develop applications at scale. Come join our team!
About the Role
We are looking for someone to help build and scale a new platform to solve challenging problems as part of the overall UI Platform team. This work enables teams across Workday to rapidly build UIs and leverage our platform services to deliver a differentiated user experience.
The ideal candidate is someone who enjoys working on Platform tools, enjoys developing software for other developers and enjoys working with frontend technologies.
Responsibilities
Collaborate with peers on technical design, work estimation and implementation of new functionality
Write and maintain solid, robust, efficient and maintainable code using frameworks and tools, including Java, Spring, Redis, Git, Gradle, Typescript & React
Write reliable unit, integration, and system level tests that will run on our CD pipeline
Build proofs of concept to help steer the development approach for features
Understand and promote industry standard methodology
Mentor and learn from other team members through pairing, code reviews, knowledge shares, hackathons, etc.
About You
Basic Qualifications
3+ years of work experience as a Software Engineer
3+ years work experience in front-end web development, implementing component-based UI architectures
Other Qualifications
You are a flexible engineer with the ability and willingness to work across the full UI Platform stack
You have a proven track record of delivering high quality software
You are open-minded, curious and motivated by solving impactful problems as part of a high performing team
You see software development as a team activity, and thrive in a highly collaborative, agile culture where you’re always teaching and learning
You have a strong desire to learn and continuously improve your craft
Workday Pay Transparency Statement
The annualized base salary ranges for the primary location and any additional locations are listed below. Workday pay ranges vary based on work location. As a part of the total compensation package, this role may be eligible for the Workday Bonus Plan or a role-specific commission/bonus, as well as annual refresh stock grants. Recruiters can share more detail during the hiring process. Each candidate’s compensation offer will be based on multiple factors including, but not limited to, geography, experience, skills, job duties, and business need, among other things. For more information regarding Workday’s comprehensive benefits, please
click here
.
Primary Location: USA.CA.Pleasanton
Primary Location Base Pay Range: $136,000 USD - $204,000 USD
Additional US Location(s) Base Pay Range: $112,500 USD - $204,000 USD
Our Approach to Flexible Work
With Flex Work, we’re combining the best of both worlds: in-person time and remote. Our approach enables our teams to deepen connections, maintain a strong community, and do their best work. We know that flexibility can take shape in many ways, so rather than a number of required days in-office each week, we simply spend at least half (50%) of our time each quarter in the office or in the field with our customers, prospects, and partners (depending on role). This means you'll have the freedom to create a flexible schedule that caters to your business, team, and personal needs, while being intentional to make the most of time spent together. Those in our remote ""home office"" roles also have the opportunity to come together in our offices for important moments that matter.
Pursuant to applicable Fair Chance law, Workday will consider for employment qualified applicants with arrest and conviction records.
Workday is an Equal Opportunity Employer including individuals with disabilities and protected veterans.
Are you being referred to one of our roles? If so, ask your connection at Workday about our Employee Referral process!"
Full Stack Engineer,"$120,000",3.7,Nelnet,Remote,"Industry
Banking & Lending",Financial Services,"Nelnet is a diversified and innovative company committed to enriching lives through the power of service as a student loan servicer, professional services company, consumer loan originator and servicer, payments processor, renewable energy solutions, and K-12 and higher education expert. For over 40 years, Nelnet has been serving its customers, associates, and communities.
The perks of working at Nelnet go beyond our benefits package. When you join the Nelnet team, you're part of a community invested in the success of each individual. That support comes through in our work, as we are united by our mission of creating opportunities for people where they live, learn, and work.
You’ll be part of a multi-disciplinary, agile application development team tasked with modernizing an enterprise government system
Job Responsibilities:
Mobbing and pairing with your team to design, code, test, debug, deploy and document software in an agile environment
Working with your team, supporting agile engineering practices such as delivering small narrow slices of functionality, Test Driven Development, Continuous Integration/Continuous Deployment, and Infrastructure as Code
Working with UX/UI Designers, DevSecOps Engineers, Full Stack Software Engineers, Data Engineers and Data Analysts to modernize a 50 year old legacy system
Tackle a wide variety of technical problems
Exercise your full tool-belt of skills and experience
Pay Range for this position is - $115,000 - $125,000
EDUCATION:
Bachelor’s Degree in Computer Science, a related field or relevant work experience
EXPERIENCE:
Minimum 5 years of experience in software development with strong skills in at least three key competency.
COMPETENCIES – SKILLS/KNOWLEDGE/ABILITIES:
Self-motivated with strong communication and collaboration skills
Agile software development experience
Advance knowledge and experience with .NET and, React, required
Experience building service oriented APIs
Experience with Google Cloud Platform or AWS cloud computing
Experience building applications that integrate application logging, monitoring and alerting
Experience modernizing legacy mainframe systems desired
Experience solving complex problems and implementing solutions for performance and scalability
Our benefits package includes medical, dental, vision, HSA and FSA, generous earned time off, 401K/student loan repayment, life insurance & AD&D insurance, employee assistance program, employee stock purchase program, tuition reimbursement, performance-based incentive pay, short- and long-term disability, and a robust wellness program. Click here to learn more about our benefits:
LINK
.
Nelnet is an Equal Opportunity Employer, complies with Executive Order 11246, and takes affirmative action to ensure that qualified applicants are employed, and that employees are treated during employment, without regard to race, color, religion/creed, national origin, gender, or sex, marital status, age, disability, use of a guide dog or service animal, sexual orientation, military/veteran status, or any other status protected by Federal or State law or local ordinance.
Qualified individuals with disabilities who require reasonable accommodations in order to apply or compete for positions at Nelnet may request such accommodations by contacting Corporate Recruiting at 402-486-5725 or
corporaterecruiting@nelnet.net
.
Nelnet is a Drug Free and Tobacco Free Workplace."
Full Stack Python Developer,-1,-1,BlueInk,Remote,-1,-1,"About the Job
BlueInk is a fast-growing SaaS company building next-generation eSignature software. We are looking for a mid-level or senior full-stack web developer to join our growing development team.
As a full-stack developer on the BlueInk development team, you will:
Make an impact as an integral part of our development team
Have autonomy to creatively solve software challenges
Work in a fun, fast-paced, professional and respectful environment
Have support from other passionate developers
Face challenging problems, learn new skills and master new technologies
Be compensated well, and have opportunities for growth and advancement
Follow agile methodologies and work in a CI environment focused on software-development best practices.
Your day-to-day tasks might include writing Django / Python backend code to power new features, implementing user interfaces with React / HTML5 / CSS, planning the implementation of new features with the team, or any of the other many tasks required to bring software to life.
About You:
In addition to the technical requirements listed below, we are seeking candidates with:
A demonstrated history of building high-quality, production web applications
A strong motivation to build software that people love to use, and which positively impacts businesses and consumers
Pride in code quality, and an appreciation for the art and craft of writing software
Passion for web development
A keen eye for detail, especially in regards to user interfaces
Our Technology Stack Includes
Django / Python (Django REST Framework)
Java
PostgreSQL /Redis
Javascript / ReactJS (Webpack, Redux, Styled Components, Jest)
HTML / CSS
Git, JIRA, Docker, AWS
Skills & Requirements
The ideal candidate is an experienced full-stack web developer with a solid foundation in Python / Django and excellent front-end skills spanning HTML5, CSS & Javascript.
Required Skills
Django / Python (3+ years)
Javascript (3+ years),
ReactJS (1+ years)
HTML5 / CSS expertise
A firm grasp of JavaScript and its nuances, including ES6+ syntax.
Knowledge of functional or object-oriented programming.
Ability to write well-documented, clean code.
Experience with automated testing suites, like Jest or Mocha.
Demonstrated history of building high-quality, production web applications and working with RESTful APIs.
Nice-to-have Skills
Proficiency in one of these additional programming languages: Java, Objective C, C#, C, C++
Experience with unit-testing frameworks, automated testing
Experience with AWS, Heroku, CI / CD tools
Additional Javascript framework experience: AngularJS, Vue, or similar
About BlueInk
BlueInk is a fast-growing SAAS company that creates eSignature software products. We help our clients embrace greater transparency, security and efficiency in their document review and eSignature processes. We are based in Scottsdale, AZ."
"Full Stack Python/Django Engineer (Remote, US)",-1,2.0,Loveseat,"Austin, TX","Industry
--",--,"WHO WE ARE
Loveseat.com is on a mission to eliminate all waste from the supply chain in the home goods space - e.g. furniture, decor, appliances, etc. We are a consumer-first marketplace giving returned & overstocked goods a second chance to find a consumer who wants to save 70% off retail on a near-perfect item.
Loveseat is growing fast and is fresh off a Series A round led by Bessemer Venture Partners. We are seeking an Engineering Manager to join our team and take the company to the next level!
WHAT YOU WILL DO
Working directly with Loveseat's CTO & Co-founder, this critical member of our team will have a unique opportunity to contribute to and shape the technical product of a rapidly growing marketplace startup. This position is for a technically well-rounded individual with direct experience in using the Python/Django framework to build and ship web applications.
You'll have an important role in the launch of new features, architecting our infrastructure for scale, and the execution of our roadmap. The current engineering team is small but growing, so you'll have an important job in helping shape the future of the engineering department. This position is 100% remote but must be U.S.-based.
This role will:
Lead the current engineering team and provide guidance on additional engineering hires as company scales.
Own the technical development timeline across 3 proprietary products including consumer-facing website, internal admin website, and internal mobile application.
Translate roadmap-level features to project boards and work with the team to ensure successful completion.
Monitor infrastructure for a high-volume auction-based business and maintain enough resources for rapid audience and geographical growth.
Cross-collaborate with G&A, Warehouse, and Merchandising teams for immediate troubleshooting and long term strategic planning to support growth and scaling.
WHO YOU ARE
2+ years full stack software engineering experience
Experienced with Django, Python, HTML, CSS, Javascript, PostgresQL ** REQUIRED **
Devops experience in Heroku a plus
Startup experience preferred
Able to quickly reverse engineer solutions to problems with a proactive approach to problem solving
A software development mindset that embraces rapid iteration over rigid process
Self-starter who thrives in an environment with personal freedom and latitude on how to achieve results
WHAT WE DO
Loveseat Online Auctions was founded in 2020 and operates a managed marketplace for returned and other distressed inventory in the home goods (furniture, decor, etc.) space from major retailers and vendors. Everything is sold at auction with most items starting at just $10. Think: TJMaxx meets eBay. Fulfillment is done locally via Loveseat's network of warehouses in major metro areas.
The customer proposition is simple: score amazing deals on great stuff for your home in a fun and (slightly addictive) gamified shopping experience."
Full Stack Software Engineer,-1,-1,Vityl,Remote,-1,-1,"At Vityl, we are building employee engagement software designed to foster a foundational culture of belonging and drive stronger business performance. We inspire real change through customized goals and nudges based on a workplace's unique challenges and each employee’s unique needs.
You belong with us. Vityl is looking for a Fullstack Software Engineer to join our team.
We are looking for software engineers who enjoy the challenge of building products from zero to one. We value folks who are thoughtful, great communicators and can use those traits to help us navigate the complexity of building the right thing at the right time. This role is fully remote.
What you’ll do:
Be one of the founding members of our Engineering Team.
Design, build and maintain UIs, APIs and services that power the Vityl experience.
Collaborate cross functionally to build new features from ideation to production.
Debug and support the existing product.
Maintain high engineering standards for system design, code quality, and communication.
Leverage your experience to help define new and innovative ways to use data to build better product experiences.
Help shape the culture and processes of the engineering team.
What makes you Vityl:
Experience building consumer facing products.
You should be familiar with using modern web technologies to build well-architected services with great APIs.
We program primarily in Python and Typescript, but if you have experience working with any modern web framework, you could be a great fit.
Experience working in an environment with continuous integration and continuous deployment, along with logging and monitoring a production environment.
We’re seeking developers with a minimum of 4 years of full-time professional experience.
Relevant practical experience or Bachelor's degree in an engineering field.
We welcome applications from more experienced engineers as well and will adjust responsibilities and compensation accordingly.
What we offer:
Fully remote
Competitive compensation and equity
Health insurance
Fully remote position that is flexible on location and timezone
The experience building a product with true impact on the workplace"
Full Stack Developers,-1,-1,Ko-fi,United States,-1,-1,"Job Posted
February 9, 2022 3:13 PM
Location
Remote
Europe/Asia Timezones
Status
Open
Strictly no agencies or recruiters please! We only want to hear from applicants directly.
What’s Ko-fi?
Ko-fi is the go-to platform for indie creators to make money doing what they love.
So far Ko-fi Creators have earned $200 Million from Donations, Memberships and sales of products and Commissions. We grew over 60% in 2022.
We started in 2012, before the “Creator Economy” was even a thing. Now, millions of people visit the service that has helped fund hundreds of thousands of creators.
Learn more about Ko-fi with:
This Recap of 2022
This Interview with a co-founder
These latest Tweets
Things you’ll do
Work directly with Nigel, Ko-fi’s original founder and the rest of the product team. Learn and teach each other while doing your best work and building a platform to help creators across the globe to do what they love.
Develop new core features. From innovative payment technologies, to supporter management features and mobile apps. You will be leading high-impact projects at the heart of Ko-fi.
Integrate with the best consumer technologies. Integrate Ko-fi with streaming tools, social sites and website building software.
Ship every week. You’ll have access to the full code base to improve the product and see your work in the hands of millions of users.
Who we’re looking for
You are self motivated and eager to ship your best work.
You must have a strong development background with at least four years of real-world experience in C# ASP.NET MVC.
You’ve developed clean and maintainable, ideally consumer-facing .NET projects deployed at scale.
You aren’t afraid of the front end. You’re happy to dive into the front end on a regular basis and you already have a thorough demonstrable knowledge of HTML, CSS, JavaScript and frontend frameworks.
You’re good at prioritising. You are always looking for ways to make a product better while also taking a considered approach to priorities to ensure the right things get worked on.
You're resourceful. You ‘pull’ the information and guidance you need rather than waiting for it to be ‘pushed’ to you. You seek new and innovative ways of improving the product, the team and the way we do things without waiting to be told what to do or how to do it.
You ship. You have a bias towards action, and you will be eager to deploy your work. You test enough to be confident, but you don’t procrastinate.
Extra Credit. You’re a creator of some kind yourself.
The tech stack
We use new technologies wherever it makes sense, but the core stack is:
C# .NET MVC
SQL Server, Entity Framework
Azure
HTML , JavaScript, CSS
Benefits
Work remotely. Developers are currently located in UK, Belgium and Thailand so you will spend most of your time working remotely. If you want to work from a co-working space, we’ll cover that too.
Flexibility. We have two meetings per week, but other than that work when and where you’re most productive.
Competitive compensation. Depending upon demonstrable experience.
Bonuses. Get regular bonuses for significant contributions and when the company does well.
Share Options. Opportunity to earn a slice of Ko-fi after 6 months.
Training Budget. We will fund relevant training to help you be better at what you do.
Your Work is Seen by Millions. Do the best, most rewarding work of your life and have it seen by millions.
Choose Your Own Kit. Pick the tools you need to do great work.
Paid Leave. 25 days + National Holidays paid time off.
How to apply
Does this role sound like a good fit?
Step 1. Please complete this simple form including links to recent work and relevant experience.
Step 2. If we like your application we will reply back within a week to invite you to an informal intro video chat where you’ll meet one of the founders, talk about the role, your background, aspirations and projects you’ve worked on.
Step 3. If both parties think there is a good fit then we’ll send you a short challenge relevant to the job and remunerate you for your time.
Step 4. Offer terms finalised and welcome aboard!"
Full Stack Developer,"$138,800",4.2,Nutanix,"San Jose, CA","Industry
Enterprise Software & Network Solutions",Information Technology,"Full Stack Developer
San Jose, CA and Durham, NC
Hungry, Humble, Honest, with Heart.
The Opportunity
As a Full Stack Developer at Nutanix, you will be leading a team responsible for developing the Subscription and Billing Platform for our enterprise customers. Your role will be crucial in ensuring a seamless experience for our customers and supporting Nutanix's mission of providing innovative solutions. What sets this role apart is the opportunity to work within a dynamic and innovative SaaS Engineering organization, building high-performing and scalable applications. Showcasing your experience in developing similar applications will be key to your success in this role.
Information Technology at Nutanix
The Nutanix SaaS Engineering team is a sizable and distributed team that works across the US, EMEA, and APAC regions. As part of this team, you will have the opportunity to contribute to our dynamic and innovative SaaS Engineering organization at Nutanix. What sets us apart is our dedication to delivering high-quality products and our commitment to staying at the forefront of technology advancements.
Your Role
Lead a team responsible for developing the Subscription and Billing Platform for Nutanix enterprise customers.
Translate requirements and user stories into detailed design specifications and write high-quality code.
Integrate with third-party billing, CRM, and payment systems using RESTful APIs.
Troubleshoot and resolve issues in both production and non-production environments.
Collaborate closely with Lead engineers, Product team, QA, and business teams to deliver high-quality features.
What You Will Bring
You should have a strong background in Software Engineering and Cloud, including distributed systems and at least 2 years of industry experience.
A Bachelor's or Master's degree in Computer Science or a related field is required.
Proficiency in full-stack JavaScript and familiarity with React.js, Sails.js, Node.js, or other JavaScript frameworks is necessary.
You should possess strong web application technology experience, including HTML/CSS, JavaScript, and Java, as well as knowledge of web standards like HTML5.
Experience with SQL/NoSQL databases, particularly PostgreSQL and MongoDB, including stored procedures, functions, and triggers, is important. Familiarity with SAML, web Single Sign-on (SSO), OAuth, and related authentication/authorization technologies is also desired. Experience with developing and managing cloud-computing environments like Amazon EC2, Azure, or GCP is a plus.
About the Team
Meet Harish Kumar Golla
Joined Nutanix 12/17/2014 & came to Nutanix for making a change within the organization
Techno Manager background with almost 18 years of exp. Managed multi- million dollar programs, worked at large firms such as Cisco and NXP/Philips semiconductors.
Biggest professional win – Built Nutanix SaaS engineering team – India, Nutanix from the ground up (Started from 0). Hired 50+ engineers over past 9 years.
Who they’re hoping to find in this search – A solid technical leader that can be a good mentor, thought leader and e2e product owner. Have interest and keen in growing technical/manager path.
What the Team Says
Quote 1 - “Nutanix team members provide constant support and helping me grow and it has been really great working with everyone in this team.”
Quote 2 - “I work with some of the best people at Nutanix and the work is always interesting and challenging.”
The pay range for this position at commencement of employment is expected to be between USD $ 92800 and USD $ 184800 per year.
However, base pay offered may vary depending on multiple individualized factors, including market location, job-related knowledge, skills, and experience. The total compensation package for this position may also include other elements, including a sign-on bonus, restricted stock units, and discretionary awards in addition to a full range of medical, financial, and/or other benefits (including 401(k) eligibility and various paid time off benefits, such as vacation, sick time, and parental leave), dependent on the position offered. Details of participation in these benefit plans will be provided if an employee receives an offer of employment.
If hired, employee will be in an “at-will position” and the Company reserves the right to modify base salary (as well as any other discretionary payment or compensation program) at any time, including for reasons related to individual performance, Company or individual department/team performance, and market factors.
Need to promote this job?
Generate optimized social media posts and emails for this job, powered by HireBrain AI ™ ."
Full Stack Engineer,"$150,500",4.0,Mill,"San Bruno, CA","Industry
Other Retail Stores",Retail & Wholesale,"Mill is all about answering a simple question: how can we prevent waste? Less waste can save time, money, energy, maybe even our planet. And there's no better place to start than food. Food waste is one of the most solvable climate problems facing us today. Plus, our trash really stinks. It's gross, heavy, and our least favorite chore. At Mill we are striving to build a better environment for all, as we take on climate and kitchen change.
Role Description:
As one of the first members of the team, you will have greenfield opportunities to design and build technology supporting our first product and service offering from scratch. Mill is seeking engineers with excellent technical judgment who are as comfortable building new features as optimizing infrastructure. An ideal candidate will bring a broad set of technical and problem solving skills and relish opportunities to learn and solve novel problems.
You will have the opportunity to work on every stage of product development, from initial design to implementation to scaling. You will work closely with UX designers, product managers, and testers to devise elegant user experiences and bring our team's long term vision to life! While we are looking for developers comfortable with both backend and frontend development, we'd still love to chat if you lean heavily to one side or the other!
As an important member of the team, you will help build out best practices and procedures and influence our growing company's culture and team. An ideal candidate loves proactively seeking out problems and devising creative solutions, regardless of technology. We also hope you are as excited about working on sustainability as we are!
Responsibilities:
Work on front-end, user-facing web applications to support our website and internal portals
Work cross-functionally with product managers and other engineers to design, implement, launch, and operate infrastructure to support our first product and service offering
Effectively work in a fast-paced start-up environment with ambiguous product direction: distill product requirements and technical designs into engineering tasks; support experiments and incorporate learnings into future iterations
Prototype, design, and implement end-to-end applications
Proactively identify needs for internal automation, tools, and infrastructure to deliver user-friendly, reliable solutions
Design for scalability, performance, and robustness
Minimum Qualifications:
B.S. in Computer Science or related field
At least 3 years experience in software development
Expertise in JavaScript
Expertise with at least one modern web application framework, especially Vue or Svelte
Ability to work with data schema, data modeling, and data visualization
Strong cross-functional and technical collaboration skills
Comfortable communicating technical design choices
Preferred Qualifications:
Familiarity with AWS suite of cloud services
A background in (or eye for) design
Experience shipping consumer facing products and scaling while maintaining quality
Experience integrating analytics and advertising systems
Experience working with real time streaming data systems and data warehouses
Security and privacy experience, especially as it pertains to customer data
Experience working with IOT devices
Broad set of skills, with experience jumping into new problems and learning quickly!
Love for breathing life into small ideas with quick and dirty prototypes
The estimated base salary range for this position is $138k to $163k, which does not include the value of benefits or a potential equity grant. A wide range of factors are considered in making compensation decisions, including but not limited to skill sets, market conditions, experience and training, licensure and certifications, and business and organizational needs. At Mill, it is not typical for an individual to be hired at or near the top of the range for their role."
Full Stack Engineer - Capital One Software (Remote),-1,-1,Capital One,Remote,-1,-1,"Locations: US Remote, United States of America
Full Stack Engineer - Capital One Software (Remote)
Capital One has been a pioneer through our tech journey as the first large bank to go all in on the public cloud, while operating in a complex and highly regulated business environment. We have built out a large engineering organization, moved to the cloud, re-architected our applications and data platforms, and embraced machine learning at scale. Our AI/ML capabilities are now at the forefront of what’s possible in banking. (e.g., Capital One Eno).
Our teams have built and battle tested new capabilities to meet those needs. We’ve open sourced several of the software tools we built (e.g., Cloud Custodian, Hygieia) and forged new partnerships with other digital leaders (e.g., Microsoft, MSFT).
Through this journey, we've developed a suite of internal solutions uniquely designed to meet the challenges of a digital-first, cloud-first business at scale. We also recognize that many other businesses are facing similar data management needs as they accelerate their cloud and data journeys, and are exploring how best to bring some of the tools to market as enterprise B2B software solutions.
Capital One Software is seeking a Full Stack Software Engineer who is passionate about marrying innovation with emerging technologies. As a Capital One Full Stack Software Engineer, you’ll have the opportunity to be on the forefront of driving a major transformation within Capital One.
What You’ll Do:
Collaborate with and across Agile teams to design, develop, test, implement, and support technical solutions in full-stack development tools and technologies
Share your passion for staying on top of tech trends, experimenting with and learning new technologies, participating in internal & external technology communities, mentoring other members of the engineering community
Collaborate with digital product managers, and deliver robust cloud-based solutions that drive powerful experiences to help millions of Americans achieve financial empowerment
Utilize programming languages like JavaScript, Java, HTML/CSS, TypeScript, SQL, Python, and Go, Open Source RDBMS and NoSQL databases, Container Orchestration services including Docker and Kubernetes, and a variety of AWS tools and services
Basic Qualifications:
Bachelor’s Degree
At least 2 years of experience in software engineering (Internship experience does not apply)
Preferred Qualifications:
3+ years of experience in at least one of the following: JavaScript/TypeScript, Java, Python, or Go/Golang
2+ years of experience with React/Angular 2+, Spring/Spring Boot, or other open source frameworks
1+ years of experience with AWS, GCP, Microsoft Azure, or another cloud service
2+ years of experience in Agile practices
At this time, Capital One will not sponsor a new applicant for employment authorization for this position.
The minimum and maximum full-time annual salaries for this role are listed below, by location. Please note that this salary information is solely for candidates hired to perform work within one of these locations, and refers to the amount Capital One is willing to pay at the time of this posting. Salaries for part-time roles will be prorated based upon the agreed upon number of hours to be regularly worked.
Remote (Regardless of Location): $112,900 - $128,800 for Software Engineer
Candidates hired to work in other locations will be subject to the pay range associated with that location, and the actual annualized salary amount offered to any candidate at the time of hire will be reflected solely in the candidate’s offer letter.
Capital One offers a comprehensive, competitive, and inclusive set of health, financial and other benefits that support your total well-being. Learn more at the Capital One Careers website. Eligibility varies based on full or part-time status, exempt or non-exempt status, and management level.
This role is expected to accept applications for a minimum of 5 business days.
No agencies please. Capital One is an equal opportunity employer committed to diversity and inclusion in the workplace. All qualified applicants will receive consideration for employment without regard to sex (including pregnancy, childbirth or related medical conditions), race, color, age, national origin, religion, disability, genetic information, marital status, sexual orientation, gender identity, gender reassignment, citizenship, immigration status, protected veteran status, or any other basis prohibited under applicable federal, state or local law. Capital One promotes a drug-free workplace. Capital One will consider for employment qualified applicants with a criminal history in a manner consistent with the requirements of applicable laws regarding criminal background inquiries, including, to the extent applicable, Article 23-A of the New York Correction Law; San Francisco, California Police Code Article 49, Sections 4901-4920; New York City’s Fair Chance Act; Philadelphia’s Fair Criminal Records Screening Act; and other applicable federal, state, and local laws and regulations regarding criminal background inquiries.
If you have visited our website in search of information on employment opportunities or to apply for a position, and you require an accommodation, please contact Capital One Recruiting at 1-800-304-9102 or via email at RecruitingAccommodation@capitalone.com. All information you provide will be kept confidential and will be used only to the extent required to provide needed reasonable accommodations.
For technical support or questions about Capital One's recruiting process, please send an email to Careers@capitalone.com
Capital One does not provide, endorse nor guarantee and is not liable for third-party products, services, educational tools or other information available through this site.
Capital One Financial is made up of several different entities. Please note that any position posted in Canada is for Capital One Canada, any position posted in the United Kingdom is for Capital One Europe and any position posted in the Philippines is for Capital One Philippines Service Corp. (COPSSC)."
Full Stack .NET Developer - Healthcare Data Fabric Platform,"$127,500",3.2,MedeAnalytics,Remote,"Industry
Enterprise Software & Network Solutions",Information Technology,"MedeAnalytics is a leader in healthcare analytics, providing innovative solutions that enable measurable impact for healthcare payers and providers. With the most advanced data orchestration in healthcare, payers and providers count on us to deliver actionable insights that improve financial, operational, and clinical outcomes. To date, we’ve helped uncover millions of dollars in savings annually.
Mede Analytics is seeking a highly skilled and motivated Full Stack .NET Developer with expertise in .NET, C#, front-end languages and libraries (JavaScript, TypeScript, React), and a strong understanding of healthcare data management. The ideal candidate will have experience with MDX, SQL queries, Star Schemas, MOLAP, AWS, Micro Services, Kubernetes, EKS, DevOps, Document DB, Redshift, Snowflake, Vertica, SQL Server, and Azure. You will work in a collaborative environment with cross-functional teams to deliver high-quality, scalable, and reliable solutions.
Essential Duties and Responsibilities:
Full Stack Development: Design, develop, and maintain web applications using .NET, C#, JavaScript/TypeScript, React, and other relevant technologies. This includes both front-end and back-end development tasks.
Database Integration: Develop and optimize database schemas, queries, and stored procedures for efficient data retrieval and storage. Proficiency in SQL queries; MDX is a plus.
UI/UX Design: Collaborate with the design team to create responsive and user-friendly interfaces that enhance user experience and ensure accessibility standards are met.
Integration and API Development: Implement RESTful APIs and integration points to connect various data sources and systems, ensuring seamless data flow within the healthcare data fabric platform.
Security and Compliance: Implement security best practices and compliance standards (e.g., HIPAA) to safeguard sensitive healthcare data.
Testing and Quality Assurance: Write unit and integration tests to ensure the reliability and quality of the software and participate in code reviews to maintain code quality and standards.
Performance Optimization: Identify and resolve performance bottlenecks to ensure the healthcare data fabric platform operates efficiently and handles large data volumes.
Documentation: Create and maintain technical documentation, including system architecture, coding standards, and user guides.
Collaboration: Work closely with cross-functional teams, including data scientists, data analysts, and healthcare experts, to understand requirements and deliver solutions that address specific healthcare data challenges.
Deployment and Scalability: Utilize AWS services, Micro Services, Kubernetes, EKS, and DevOps practices to deploy and scale the application effectively.
Data Warehousing: Work with data warehousing solutions such as Redshift, Snowflake, SQL Server, and Azure for data storage and analytics.
This job description reflects management’s assignment of essential functions. Nothing in this job description restricts management’s right to assign or reassign duties and responsibilities to this job at any time.
Education, Experience, and Required Qualifications:
Bachelor’s degree in computer science, Software Engineering, or a related field.
Proven experience in Full Stack development with expertise in .NET, JavaScript/TypeScript, React, and relevant technologies.
Familiarity with healthcare data and related standards (e.g., HL7, FHIR, HIPAA) is a plus.
Strong knowledge of database systems, SQL, and data modeling.
Proficiency in source code version control systems (e.g., Git).
Experience with Agile/Scrum development methodologies.
Strong problem-solving and communication skills.
Ability to work both independently and collaboratively within a team.
Experience with containerization and orchestration tools (e.g., Docker, Kubernetes).
Knowledge of cloud platforms (e.g., AWS, Azure) and serverless computing.
Previous work on data analytics or data warehousing projects.
Benefits Include:
Great Medical, Dental, Vision benefits - Effective on the first of the month after your start
Company paid Basic Life & AD&D Insurance, STD/LTD
ROBUST Employee Assistance Program (EAP)
401k with Company Match
9 paid holidays AND 3 floating holidays = 12 total!
Paid Time Off (PTO) Accrual
Employee Referral Bonus
Professional Development
and more!
MedeAnalytics believes in fair and equitable pay. A reasonable estimate of the base salary range for this role is $100,000 – $155,000 USD. Please note that actual salaries may vary within the range, or be above or below the range, based on factors including, but not limited to, education, training, relevant experience, professional achievements/qualifications, business need and location.
Mede/Analytics is an Equal Opportunity/Affirmative Action Employer. All qualified applicants will receive consideration for employment without regard to race, color, religion, sex, national origin, disability, age or protected veteran status.
MedeAnalytics does not utilize any outside vendors/agencies. Please no unsolicited phone calls or invites.
At MedeAnalytics we deeply value each and every one of our committed, inspired and passionate employees. If you're looking to make an impact doing work that matters, you're in the right place. Help us shape the future of healthcare by joining #TeamMede."
Full-Stack Developer,-1,4.2,Northeastern University,"Boston, MA","Industry
Colleges & Universities",Education,"About the Opportunity
Northeastern’s Marketing department is looking for a Full-Stack Developer, focused on the front-end, to produce scalable software solutions. You’ll be part of a cross-functional team that’s responsible for the full software development life cycle, from conception to deployment.
As a Full-Stack Developer, you should be comfortable with both front-end and back-end coding languages, development frameworks and third-party libraries. You should also be a proactive, solutions-oriented team player, reporting to the Director of Digital Experience.
Experience in higher education is not needed, nor is it desired.
This position is based on the Boston campus with the option of one remote day per week.
Qualifications
Great understanding of front-end technologies, including HTML5, CSS3, React, JavaScript, jQuery
Experience building user interfaces for websites and/or web applications
Ability to convert comprehensive layout and wireframes into working HTML pages
Knowledge of how to interact with RESTful APIs and formats (JSON, XML)
Comfortable writing Sass
Proficient understanding of code versioning tools such as Git
Strong understanding of PHP back-end development
Experience building components for Gutenberg
A comprehensive portfolio that demonstrates intuitive and compelling work
Self-starter with a track record of delivering quality work under deadlines
Extraordinary attention to details and craftsmanship
Pride in your work, but not tied to ego
Natural collaborator with excellent interpersonal skills
Ability to work with and help other developers on the team on their projects
Portfolio items that can be reviewed
Bachelor’s Degree
Requirements
2+ years of experience working with WordPress
Proven experience as a Full-Stack Developer or similar role
Familiarity with the Gutenberg framework
Knowledge of multiple front-end languages and libraries (e.g. HTML/ CSS, JavaScript, XML, jQuery)
Knowledge of multiple back-end languages (e.g. C#, Java, Python) and JavaScript frameworks (e.g. Angular, React, Node.js)
Familiarity with databases (e.g. MySQL, MongoDB), web servers (e.g. Apache) and UI/UX design
Excellent communication and teamwork skills
Great attention to detail
Organizational skills
An analytical mind
Familiar with Agile methodologies
Key Responsibilities
Work with development teams and product managers to ideate software solutions
Design client-side and server-side architecture
Build the front-end of applications through appealing visual design
Develop and manage well-functioning databases and applications
Write effective APIs
Test software to ensure responsiveness and efficiency
Troubleshoot, debug and upgrade software
Create security and data protection settings
Build features and components with a mobile responsive design
Write technical documentation
Work with data scientists and analysts to improve software
Participating in the design and creation of scalable software
Writing clean, functional code on the front- and back-end
Testing and fixing bugs or other coding issues
Position Type
Information Technology
Additional Information
Northeastern University considers factors such as candidate work experience, education and skills when extending an offer.
Northeastern has a comprehensive benefits package for benefit eligible employees. This includes medical, vision, dental, paid time off, tuition assistance, wellness & life, retirement- as well as commuting & transportation. Visit
https://hr.northeastern.edu/benefits/
for more information.
Northeastern University is an equal opportunity employer, seeking to recruit and support a broadly diverse community of faculty and staff. Northeastern values and celebrates diversity in all its forms and strives to foster an inclusive culture built on respect that affirms inter-group relations and builds cohesion.
All qualified applicants are encouraged to apply and will receive consideration for employment without regard to race, religion, color, national origin, age, sex, sexual orientation, disability status, or any other characteristic protected by applicable law.
To learn more about Northeastern University’s commitment and support of diversity and inclusion, please see
www.northeastern.edu/diversity
."
Full Stack Typescript Developer (Node/React),-1,-1,Bayer,"Ankeny, IA",-1,-1,"Ankeny, IA, United States (On-site)
Contract (12 months)
Published 13 days ago
Continuous Integration tools
JavaScript
Relational database design
JSON API development
SQL Query Development
developer
Node/React
Verbal and Written Communication skills
TypeScript
Git/GitHub
Full Stack Typescript Developer (Node/React)
Work in a fast-paced R&D environment
Create webpages using Typescript, Node, and React to interact with automated machinery
Design databases, SQL queries, and JSON APIs
Provide feedback in the product design and specification process
A wide degree of creativity and latitude is expected
Responsible for code development, debugging, analyzing test results, implementation, support, and enhancement of automated system software programs used in agricultural research.
Required Qualifications
This developer position is located on-site in Ankeny, IA
Minimum of 5 years' experience in a programming field, database design, or server administration
Proficient in programming JavaScript/Typescript with 2+ years experience
Proficient in SQL Query Development, Relational Database Design
Proficient in JSON API development
Requires a bachelor's degree in computer science or similar bachelor's degree
Strong verbal and written communication skills
Preferred
Git source control experience
GitHub Actions automation
Docker
Continuous Integration tools
BAY1JP00020451"
Full stack Developer,-1,-1,Luzon Technologies,United States,-1,-1,"Job Description:
We are looking for a full-stack developer for our client in Washington D.C. Qualifying candidates are encouraged to submit their resumes to smriti@luzontech.com
Position: Full stack Developer
Location: Washington D.C. (Hybrid)
Experience: 12 years+
Contract
Work from home not available Travel not required
Job Description
Job Description:
We are looking for a full-stack developer for our client in Washington D.C. Qualifying candidates are encouraged to submit their resumes to smriti@luzontech.com
Position: Full stack Developer
Location: Washington D.C. (Hybrid)
Experience: 12 years+
To apply for this job email your details to smriti@luzontech.com
Required Skills:
Net/.Net Core
Azure Cloud
Azure DevOps
React"
Sr. Full Stack Engineer (Remote),"$172,500",4.0,Roo,"San Francisco, CA","Industry
HR Consulting",Human Resources & Staffing,"About Roo
Happy vets make for happy pets.
Roo is on a mission to create a world of increased opportunity, professional empowerment, and improved animal care for animal hospitals and veterinarian professionals. By connecting hospitals in need with professionals with a new groundbreaking platform, our goal is to optimize hospital talent staffing and improve quality of life for veterinarians, all while giving pets a chance to have access to safe, high-quality care.
Over the next decade, Roo will unlock millions in economic opportunities, improve quality of life for tens of thousands of veterinarians, and facilitate millions of hours of pet care. We've been growing tremendously since launching in early 2019 and now seeing even more traction as we scale up fast.
What We Do
Roo (www.roo.vet) has created the first B2B labor marketplace in animal healthcare that connects veterinary professionals with hospitals through innovative technology, with opportunities to expand and offer more opportunities for both our demand & supply of users.
Our dynamic platform enables hospitals to fulfill personnel needs in real time, while allowing high-quality veterinary professionals to secure work at the click of a button. Beyond the platform, Roo represents a growing opportunity to help hospitals meet all-things staffing, and a growing community of resilient vet industry professionals who value flexibility and work-life balance, in addition to providing the best possible outcomes for clients and their pets.
Our aim is to combine experienced healthcare expertise with Silicon Valley talent to shake up this industry and change the way veterinarians and hospitals work!
About the Role
We are seeking a highly skilled and experienced Senior Full Stack Software Engineer to join our expanding team. In this role, you will play a crucial part in supporting Roo during an exciting phase of growth by developing new features using cutting-edge front-end, back-end, and mobile native technologies. Your primary focus will be on enhancing our SaaS offering in the veterinary marketplace.
As a Senior Full Stack Software Engineer, you will have the opportunity to work remotely, with occasional travel to San Francisco for cross-functional events or meetings as needed.
Your Responsibilities
Collaborate with the team to design, develop, and implement new features for the Roo platform
Utilize the latest web front-end and back-end technologies to build scalable and efficient solutions
Contribute code to our React Native mobile application
Ensure code quality through testing, code reviews, and best practices
Participate in architectural discussions and contribute ideas for system improvement
Collaborate with cross-functional teams, including product managers and designers, to translate business requirements into technical solutions
Stay updated on emerging technologies and industry trends to continually improve our platform
Qualifications
Minimum of 5 years of hands-on experience developing web applications within a dynamic and fast-paced product team environment
Strong understanding of software development principles, design patterns, and best practices
Expertise in web front-end technologies such as HTML5, CSS3, and JavaScript frameworks (e.g., React, Angular, or Vue.js)
Expertise in back-end technologies such as Node.js, Python, or Java
Experience with React Native and mobile native technologies is a plus
Experience with cloud platforms (e.g., AWS, Azure, or Google Cloud) is a plus
Excellent problem-solving and analytical skills
Strong communication and collaboration abilities
Bachelor's degree in Computer Science, Software Engineering, or a related field (or equivalent experience)
About You
Highly self-driven with a passion to solve problems and research solutions
Extremely agile & flexible, since we are evolving continually
Very collaborative with other team members within & across teams and US/international cities, demonstrates empathy
Trustworthy with impeccable integrity, authenticity, and high ethical standards
Great attention to details
Can do positive attitude
We have diverse, passionate & driven team members from a variety of backgrounds. For permanent, full time employees, we offer:
Accelerated growth & learning potential
Compensation: $145,000-$200,000; commensurate with experience and location
Stipends for home office setup, continuing education, and monthly wellness
Comprehensive health benefits to fit your needs with base medical plan covered at 100% with optional
premium buy up plans.
401K
Unlimited Paid Time Off
Paid Maternity/Paternity and reproductive care leave
Gifts on your birthday & anniversary
Opportunity for domestic travel, including for regional team building events
Overall, you would be part of a mission-driven company that will significantly empower the lives of all veterinary professionals and the health of the overall animal industry that seeks massive innovation.
We believe in diversity of experience and background, and understand that your individual experience may not check every box. We still encourage you to apply even if you are not confident in every expectation listed.
Ready to join the Roo-volution?!"
"Technical Support Engineer (Remote, USA)","$168,000",3.9,Grafana Labs,Remote,"Industry
Computer Hardware Development",Information Technology,"As a Support Engineer, you'll be a member of the fast-growing Customer Experience team, and be responsible for providing specialized support for Grafana Labs customers. You'll support the entire observability stack, from front-end Grafana panels to metrics, logs, and traces. In this role, you’ll also get hands-on experience with a multitude of unique open source projects providing extensive learning opportunities within our Cloud, Enterprise, and Open Source offerings.
Responsibilities:
Debugging customer issues by attempting to replicate in lab environments (AWS, Azure, GCP, Kubernetes, Docker/containers, and dozens of test data sources)
Utilizing SSO/SAML experience to help customers in securing their Grafana instances
Evaluating errors or discrepancies within customer dashboard panels and determining root cause
Reviewing configuration files and recommending best practices (Debug logs, JSON, YAML)
Troubleshooting connectivity to various data sources and plugins
Opening Github issues and partnering with software developers in order to solve issues, address bug fixes, or report security vulnerabilities
Assessing performance issues with queries, visualizations, and alerting (PromQL, LogQL)
Manage customer cases by providing timely and accurate information via phone, video meetings, email, ticketing, and chat
Contribute to internal knowledge base and share information about technical issues within your team
Gather and share customer feedback with Product, Sales, and Customer Success teams
Provide training to new and existing team members and help with the onboarding process for new customers
Requirements:
3+ Years of experience in a Support Engineer role
Located in a PST or MST Timezone
A background knowledge of any of the following fields is desired: Observability, cloud systems administration, containerization, devops, logs, metrics, tracing, kubernetes and general enterprise open source technology
You must be proficient in the troubleshooting process and have strong researching skills
We’re looking for people who can go all the way to root-cause analysis as they become more familiar with the products/technologies
Solid experience with CRM software, help desk software and remote support tools
Experience delivering client-focussed solutions to customer needs
In the United States, the Base compensation range for this role is $153,000 - $183,000. Actual compensation may vary based on level, experience, and skillset as assessed in the interview process. Benefits include equity, bonus (if applicable) and other benefits listed here.
About Grafana Labs: There are more than 950,000 active installations of Grafana around the globe, monitoring everything from beehives to climate change in the Alps. The instantly recognizable dashboards have been spotted everywhere from a NASA launch and Minecraft HQ to Wimbledon and the Tour de France. Grafana Labs also helps companies including Bloomberg, JPMorgan Chase, and eBay manage their observability strategies with full-stack offerings that can be run fully managed with Grafana Cloud, or self-managed with Grafana Enterprise Stack. The Grafana stack has grown to include four other open source projects, Grafana Loki (for logs), Grafana Tempo (for traces), Grafana Mimir (for metrics), and Grafana OnCall (for on-call management).
Benefits: For more information about the perks and benefits of working at Grafana, please check out our careers page.
Equal Opportunity Employer: At Grafana Labs we’re building a company where a diverse mix of talented people want to come, stay, and do their best work. We know that our company runs on the hard work and the dedication of our passionate and creative employees. If you're excited about this role but your experience doesn’t align perfectly with every qualification in the job description, we encourage you to apply anyways.
We will recruit, train, compensate and promote regardless of race, religion, colour, national origin, gender, disability, age, veteran status, and all the other fascinating characteristics that make us different and unique. We believe that equality and diversity builds a strong organisation and we’re working hard to make sure that’s the foundation of our organisation as we grow.
For information about how your personal data is used once you’ve applied to a job, check out our privacy policy."
Full Stack Developer,"$122,500",3.6,"SoundThinking, Inc.",New Jersey,"Industry
Software Development",Information Technology,"TechnoLogic is looking for a Software Developer to help build and maintain complex applications for incident and resource tracking, case management on web and mobile platforms. This role requires strong technical and collaboration skills, and knowledge of a range of older web development tech stacks and Java versions. We are looking for someone who is, self-motivated and results-oriented, has good problem-solving skills, and is comfortable in a fast-paced changeable environment.
Essential Duties/Responsibilities
Maintain quality and ensure responsiveness of applications.
Collaborate with the rest of the engineering team to design and launch new features.
Maintain code integrity and organization.
Minimum Qualifications
Bachelor’s degree in computer science or equivalent development experience
3+ years of experience of Java using the following technologies is required: Java/JEE, HTML, JavaScript, Oracle, SQL, JSP, JSTL, HTML5, JavaScript, CSS3, XML Struts, Spring
Experience with older versions of Java
Experience with Java Web Frameworks
Experience with application servers like Tomcat and WebLogic
Good software design understanding
Great attention to detail
Effective oral and written communication skills
SoundThinking provides equal employment opportunities (EEO) 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, SoundThinking 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.
SoundThinking expressly prohibits any form of workplace harassment based on race, color, religion, gender, sexual orientation, gender identity or expression, national origin, age, genetic information, disability, or veteran status. Improper interference with the ability of SoundThinking’s employees to perform their job duties may result in discipline up to and including discharge. If you are an individual with a disability and require a reasonable accommodation to complete any part of the application process, or are limited in the ability or unable to access or use this online application process and need an alternative method for applying, you may contact SoundThinking at +1.510.794.3183 or careers@soundthinking.com for assistance.
The above salary range is based on a good faith estimate made at the time of publication and may be modified in the future. The pay offered to a candidate may vary within this range depending on factors such as education, experience, and geographic location."
"Full Stack Shopify Developer (Full Time, Remote, Global)","$90,000",3.3,Riess Group,Remote,"Industry
--",--,"We’re Riess Group – a Shopify Plus Agency that’s been designing and developing stunning websites and web apps since 2007. We're a fully remote team of 30+ hardworking and talented individuals spanning 15+ countries. We are hiring for a Full Stack Shopify Developer full time position.
Our ideal candidate has solid Shopify frontend and backend experience; is an expert with PHP, Laravel, MySQL, Liquid, HTML, CSS, JS, and Git; and has excellent written English skills. Major bonus points for Vue experience.
In this role, you will:
Develop excellent frontend and backend code
Understanding project requirements with minimal assistance
Researching and integrating with third party APIs
Develop Shopify themes from scratch as well as modify existing themes
Build and modify Laravel applications
Benefits:
Set your own workspace. Every position at Riess Group is remote – giving you the freedom to work from home, your favorite coffee shop, or the beach! You're also welcome to work from one of our beautiful offices in Paris or Waco, Texas.
Generous PTO annually
Competitive pay
No overtime culture
We strongly encourage applications from Indigenous peoples, racialized people, people with disabilities, people from gender and sexually diverse communities and/or people with intersectional identities.
Expected pay range: $60,000 - $115,000 / year depending on experience
Candidates in France or Brazil should apply through those postings (see riessgroup.recruitee.com)
Required
3+ years overall development experience
2+ years strong Laravel experience
2+ years strong Shopify experience
Excellent debugging and troubleshooting skills
Excellent written communication skills
Proven attention to detail
Bonus Points
Vue experience
Agency experience
Shopify experience"
Remote Full-stack JS Developer,-1,4.7,Scopic,"Rutland, MA","Industry
Enterprise Software & Network Solutions",Information Technology,"Scopic is seeking a Full-stack JavaScript Developer with advanced JavaScript skills to join our team of 250+ professionals across 50 countries. The successful applicant will work with a team of talented PMs, developers, designers, and QAs to provide solutions and for industry-leading applications.
Requirements:
3+ years of software development experience both backend and frontend
2+ years of hands-on experience with modern frameworks (Angular, React, Vue.js...) and a good grasp of architectural styles and implementation patterns
Knowledge of web sockets, particularly socket.io
Proficiency in JavaScript is required and Node.js for the backend
Experience with TypeScript
Experience with build systems and tooling
Good knowledge and hands-on experience with HTML5/CSS
Knoweledge of at least one major *NIX platform (Linux, macOS, FreeBSD, etc.)
Familiarity with Backbone & Marionette.js
Proficient in Git
Proactive and willing to learn new stuff
Bachelor degree or equivalent experience
The secret ingredients that make us special:
Your growth is our growth. We invest in your future with paid training and other professional opportunities.
We’re industry innovators at the forefront of change. Equipped with the latest technologies and a team of knowledgeable colleagues by your side, you’ll embrace new and interesting challenges.
Your location. Your schedule — Pick your time-zone, choose your preferred hours, and work from the place where you feel most at home.
Flexibility and freedom are in our DNA! As long as you have a stable internet connection and the drive to thrive, you can travel and work from anywhere you like.
A workload you can rely on. We’ll set you enough tasks to keep that mind busy! At Scopic, we’ll ensure you always have a consistent flow of engaging, challenging work to do.
Recognition and reward. We acknowledge diligence and hard work through annual pay increases for good performance.
Down to business!
Rate Range: Negotiable depending on your skills, experience and your performance during our recruiting process.
This is a full-time position.
Direct communication with the client may be needed.
Our values:
Scopic offers equal opportunity. We value diversity and do not discriminate on the basis of race, religion, color, marital status, national origin, gender, veteran status, sexual orientation, age, or disability status.
Have the skills, the drive, and the passion to join the Scopic family?
Apply today to join our growing team of remote professionals from around the world.
Attention Job Seekers: Please be aware that scammers may be fraudulently using our company's name in hiring scams. To ensure your safety, all legitimate communication regarding job opportunities from our company will only come from email addresses ending with @scopicsoftware.com or @scopicsoftware.hire.trakstar.com. Please exercise caution and report any suspicious activity to our official channels."
Full Stack Developer,-1,-1,Tantus Technologies,Maryland,-1,-1,"Overview:
Tantus Technologies, Inc. (Tantus) - recognized by the Washington Post as a Top Workplace - is seeking a Full Stack Developer with focus on Artificial Intelligence/Machine Learning/NLP to help Tantus build solutions for our customers that enable them to extract value from their data. Experience with Python/React needed.
**This position allows 100% remote work. **
What You'll Do:
Modify and maintain core processing software written in Python and deployed in AWS (Amazon Web Services)
Update and maintain and AWS environment and related configurations.
Design, build, and/or deliver AI/ML/NLP models and components that solve real-world business problems, while working in collaboration with development team.
Solve complex problems by writing and testing application code, developing and validating models, and automating tests and deployment.
Collaborate as part of a cross-functional Agile team to create and enhance software that enables state-of-the-art big data and applications.
Required Knowledge and Skills:
Bachelor’s or Master’s degree in computer science, engineering, or related field.
1-2 years experience in the following programming languages – Python, C++, React.
1-2 years experience with AWS serverless platforms (Glue, Lambda, Step Functions)
Previous experience performing both front-end and back-end software development.
Ability to communicate technical findings to non-technical audiences.
API development.
Abilities:
Excellent communication, organization, and analytical skills.
Nice to Haves:
Experience in AI/ML/NLP domain is a plus.
Use programming languages like Python, Scala, or Java."
Full Stack Developer,-1,-1,Global Information Technology,Remote,-1,-1,"Job Title: Full Stack Developer
Job Location: Remote
Job Type: Contract
Job Description:
Computer Science degree or equivalent
Solid understanding of algorithms and data structures
Proven experience contributing to development of high performance systems
3+ years of professional software development experience
2+ years of programming experience with Java and JavaScript
Proven experience working with Spring/Spring Boot/Spring Data ecosystem
Proven experience working with React.js
Proven experience working with modern SQL/NoSQL databases