-
Notifications
You must be signed in to change notification settings - Fork 0
/
experiences.csv
We can't make this file beautiful and searchable because it's too large.
6566 lines (6135 loc) · 807 KB
/
experiences.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
title,company,location,description,id,from,to,Country
Software Engineer,Google,Greater New York City Area,,https://www.linkedin.com/in/dacheng-liu-b6551580/,2019-12-01,2020-07-01,United States
Site Reliability Engineer,Google,Greater New York City Area,,https://www.linkedin.com/in/dacheng-liu-b6551580/,2017-11-01,2019-11-01,United States
Site Reliability Engineer,Google,"Mountain View, CA + New York, NY",,https://www.linkedin.com/in/dacheng-liu-b6551580/,2017-03-01,2017-10-01,United States
Software Engineering Intern,Cisco,"Cisco Building 23, 560 McCarthy Blvd Milpitas, CA 95035","Core Software Group (CSG): Play a crucial role in driving next-gen software innovations including cloud, mobile, desktop or security spaces. Build applications that make technology accessible to people on a variety of devices. Imagine, design, and create solutions to transform how we work, live, learn and play.
My Project: Smart Dashboard for Switch Testing of Cisco Enterprise Networking Group. Build a website for querying, analyzing, and updating switch integration testing information at various granularities. The main purpose is to facilitate the team's testing procedure to shorten the product release cycles. It also provides analysis to help the team to optimize the testing procedure and use cases.
…
see more",https://www.linkedin.com/in/dacheng-liu-b6551580/,2016-05-01,2016-08-01,United States
Research Assistant,Wuhan University,"Wuhan, Hubei, China","Research Topic:
1. Information Extraction in Patent Literature; (Published on APWeb 2014, 1st author)
2. Optimizing a distributed file system for a database system based on object-deputy model;
3. Applying fully homomorphic encryption in a cloud database; (1st prize in National Collegiate Information Security Contest)
Other works that facilitates the lab's research, including data visualization, paper discussions, etc.
…
see more",https://www.linkedin.com/in/dacheng-liu-b6551580/,2013-07-01,2015-05-01,China
Research Assistant,University of Manitoba,"Winnipeg, Manitoba, Canada"," Learned frequent pattern mining, uncertain data mining, probabilistic data mining, stream mining, and subgraph mining, and implemented frequent pattern mining algorithms including FP-growth, Eclat, VIPER, and H-Mine.
Extended a social network mining algorithm called Pop-growth to stream mining, and then improved this algorithm for better precision and performance.
Developed an algorithm based on frequent pattern mining to optimize friend recommendations in social networks.
Supplemented experiments and proving for 2 papers submitted to ICDM 2014.
…
see more",https://www.linkedin.com/in/dacheng-liu-b6551580/,2014-07-01,2014-09-01,Canada
Software Engineer,Google,Greater Seattle Area,,https://www.linkedin.com/in/damoniqueblake/,2018-06-01,2020-07-01,United States
Software Engineering Resident,Google,Greater Seattle Area,,https://www.linkedin.com/in/damoniqueblake/,2017-07-01,2018-06-01,United States
iOS Developer Intern,Penji,Greater Seattle Area,"- Working remotely to develop version 2 of Penji's iOS app
- Programming in Swift and using the Calabash testing framework
- Gaining experience using Parse Server and Firebase",https://www.linkedin.com/in/damoniqueblake/,2016-12-01,2018-03-01,United States
Software Engineer Internship,Target,Greater Minneapolis-St. Paul Area,"- Helped to build internal web application for the Global Transportation Team that will help save
the company $40 million a year
- Utilized Chef and Jenkins and programmed in AngularJS and Java",https://www.linkedin.com/in/damoniqueblake/,2016-06-01,2016-08-01,United States
Student Research Assistant,OSU Cognitive Systems Lab,"Columbus, Ohio","- Tutored Graduate Civil Engineering student in C# programming
- Assisted in various programming tasks in C#, Java, and VBA",https://www.linkedin.com/in/damoniqueblake/,2016-03-01,2016-08-01,United States
Student Web Developer,OSU Student Life,"Columbus, Ohio","- Helped maintain Ohio State University’s various websites utilizing C#, .NET framework, and SQL databases",https://www.linkedin.com/in/damoniqueblake/,2015-09-01,2015-12-01,United States
"Software Engineer, Site Reliability Engineering",Google,San Francisco,,https://www.linkedin.com/in/carina-claassen/,2018-08-01,2020-07-01,United States
SDE Intern,Amazon,Seattle,"• Designed & implemented service on AWS serverless architecture to process shipping rate data for non-enterprise trucking carriers
• Designed database with unified rate model and included rollbacks and failure handling
• Reduced rate upload times to production from 1-2 weeks to minutes/hours",https://www.linkedin.com/in/carina-claassen/,2017-05-01,2017-08-01,United States
Software Engineering Intern,Salesforce,San Francisco Bay Area,• Designed and implemented a python marketplace framework for an automation testing platform running on AWS to add functionality for internal users,https://www.linkedin.com/in/carina-claassen/,2016-08-01,2016-12-01,United States
Peer Leader (Resident Assistant),Georgia Institute of Technology,"Atlanta, GA",• Cultivated an inclusive community environment to stimulate intellectual and social growth of 250+ residents at Georgia Tech,https://www.linkedin.com/in/carina-claassen/,2015-08-01,2016-05-01,United States
Industrial Engineering Co-op,UPS Supply Chain Solutions,"Alpharetta, GA","• Provided analytical support for two UPS healthcare distribution centers, with a focus on labor-saving initiatives that reduce operational costs by $20,000 anually",https://www.linkedin.com/in/carina-claassen/,2015-05-01,2015-08-01,United States
Rock Climbing Coach,Stone Summit Climbing & Fitness Center,"Atlanta, GA",• Coached multiple rock climbing teams with ~20 kids aged 6-15,https://www.linkedin.com/in/carina-claassen/,2011-05-01,2015-05-01,United States
Software Engineer,Google,Greater Los Angeles Area,Ads Data Hub,https://www.linkedin.com/in/linfongi/,2018-08-01,2020-07-01,United States
Software Engineer,"Snapchat, Inc.",Greater Los Angeles Area,,https://www.linkedin.com/in/linfongi/,2016-07-01,2018-03-01,United States
Senior Software Engineer,Veritone Media,"Newport Beach, CA",,https://www.linkedin.com/in/linfongi/,2015-07-01,2016-07-01,United States
Application Developer,SpaceX,Greater Los Angeles Area,"via ixStrata, Inc",https://www.linkedin.com/in/linfongi/,2013-06-01,2014-09-01,United States
Software Engineer,SKM System Analysis,Greater Los Angeles Area,"1. Power System software development.
2. WPF based desktop application.
3. Legacy code translation (from MFC/C++ to WPF/C#)",https://www.linkedin.com/in/linfongi/,2012-04-01,2013-05-01,United States
Software Engineer,DC International,Dallas/Fort Worth Area,"1. Develop B2C web sites on IIS7 with ASP.NET, LINQ, and C# in the backend.
2. Script DOM elements with JQuery on the front-end to handle UI events and validate forms.
3. Integrate web analytics tools including Google Analytics and Adobe SiteCatalyst.
4. Sync content between live web site and spare site with Windows DFS and Subversion.
5. Create email campaigns with well client css compatibility.
6. Manage SEO keywords and metadata.
…
see more",https://www.linkedin.com/in/linfongi/,2010-10-01,2012-03-01,United States
Researcher,ITRI,Greater Los Angeles Area,"1. Embedded invisible watermark in Mpeg4 videos to prevent them from illegal distributions.
2. Adopted DirectShow to facilitate video decoding, watermark embedment, and video encoding.
3. DRM study, digital watermark implementation on various formats of audio and video.",https://www.linkedin.com/in/linfongi/,2004-05-01,2004-08-01,United States
Software Engineer,Google,San Francisco Bay Area,,https://www.linkedin.com/in/sheena-mohan-23996292/,2019-04-01,2020-07-01,United States
Software Engineer,Intel Corporation,United States,,https://www.linkedin.com/in/sheena-mohan-23996292/,2018-06-01,2019-03-01,United States
Software Engineer Intern,Intel Corporation,"5000 W Chandler Blvd, Chandler, AZ 85226","• Reducing the latency involved in user space to kernel space translation to interact with SSDs using Storage Performance Development Kit (SPDK)
• Performance Analysis of the NAND and the Optane SSDs",https://www.linkedin.com/in/sheena-mohan-23996292/,2017-09-01,2018-05-01,United States
Firmware Graduate Intern,Intel Corporation,"1900 Prairie City Rd, Folsom, CA","• Porting and merging the methods of 3D-NAND and 3D-XP drives in a single testing framework to
enable portability across different Intel SSD products using python.
• Testing and debugging the drive functionalities to meet the product requirements.",https://www.linkedin.com/in/sheena-mohan-23996292/,2017-05-01,2017-08-01,United States
Software Development Engineer,IndusTeqsite Pvt Ltd,"SIPCOT IT Park Off Rajiv Gandhi Salai (OMR) Siruseri, Chenna","• Developed device drivers in C on Xenomia2.6 platform for PCI, cPCI Relay and Digital I/O boards
• Designed front end applications on Qt and Visual Studio for testing device drivers
• Ported, compiled and tested OpenGL Application from Linux to DEOS RTOS",https://www.linkedin.com/in/sheena-mohan-23996292/,2015-09-01,2016-04-01,United States
Summer Intern,Siemens,"Sathak Centre, No 4, Mahatma Gandhi Road, Nungambakkam, Chennai, 600034",Performed Industrial control operations with s7-300 PLC (Programmable Logic Controller) using Step7 software and also developed a Human Machine Interface (HMI) using WinCC.,https://www.linkedin.com/in/sheena-mohan-23996292/,2014-06-01,,United States
In plant Trainee,IndusTeqsite Pvt Ltd,"SIPCOT IT Park Off Rajiv Gandhi Salai (OMR) Siruseri, Chenna","Learned Quality assurance using instruments like LCR meter, testing using Automatic TestEquipment (ATE), Surface Mount Technology (SMT) production and Environmental test procedures.",https://www.linkedin.com/in/sheena-mohan-23996292/,2013-06-01,,United States
Staff Software Engineer,Google,Mountain View,,https://www.linkedin.com/in/hanqingliu/,2013-03-01,2020-07-01,United States
Software Development Engineer Intern,Amazon,Greater Seattle Area,,https://www.linkedin.com/in/hanqingliu/,2012-05-01,2012-08-01,United States
Software Engineer,Google,"Mountain View, California",Natural Language Understanding for Google Assistant.,https://www.linkedin.com/in/chenjingyes/,2017-02-01,2020-07-01,United States
Graduate Research Assistant,Carnegie Mellon University,Greater Pittsburgh Area,"Advisor: Jamie Callan
Research Topics: Information Retrieval, Knowledge Graph, Deep Leaning.",https://www.linkedin.com/in/chenjingyes/,2015-08-01,2017-01-01,United States
Teaching Assistant,Carnegie Mellon University - School of Computer Science - Language Technologies Institute,"Oxford, United Kingdom",,https://www.linkedin.com/in/chenjingyes/,2016-08-01,2016-12-01,United Kingdom
Software Engineering Intern,Google,"Mountain View, CA",Research on Question Answering - knowledge representation with seq2seq neural networks.,https://www.linkedin.com/in/chenjingyes/,2016-05-01,2016-08-01,United States
Undergraduate Research Assistant,Nanjing University,"Nanjing, Jiangsu, China",Research topics: natural language processing and text mining problems.,https://www.linkedin.com/in/chenjingyes/,2013-09-01,2015-07-01,China
Natural Science Exchange,University of Oxford,"Oxford, United Kingdom",Numerical analysis for physics problems.,https://www.linkedin.com/in/chenjingyes/,2014-07-01,2014-09-01,United Kingdom
Software Engineer,Google,"Mountain View, CA","Spend most of my time literally pushing buttons, trying to make sense of things and figuring out why my code doesn't work.
xkcd.com/722",https://www.linkedin.com/in/sonph/,2016-02-01,2020-07-01,United States
Big Data Engineer Intern,AT&T,"Plano, TX",Worked on visualization of big geospatial data.,https://www.linkedin.com/in/sonph/,2015-09-01,2015-12-01,United States
Software Engineer Intern,Intuit,"Plano, TX","Built a system of client workers, a central server with a web frontend to capture and visualize network communication between production servers to help with the application deployment process and network security.",https://www.linkedin.com/in/sonph/,2015-05-01,2015-08-01,United States
Software Developer Intern,CompuMatrice,"Dallas, TX","• Implemented additional features and fixed bugs for the existing frontend codebase of a commercial platform for healthcare providers using AngularJS;
• Designed and implemented a package for getting and persisting data from web services via rest/json for the company’s Android app;",https://www.linkedin.com/in/sonph/,2014-08-01,2015-05-01,United States
Discrete Math Mentor,University of Texas at Dallas,"Richardson, TX","Answered questions, helped with homework problems and provided weekly/exam review sessions for all students taking Discrete Math, Data Structures and Algorithms, and Computer Architecture courses.",https://www.linkedin.com/in/sonph/,2013-02-01,2014-05-01,United States
Software Engineer,Google,"Seattle, WA","Cloud Platform - Billing
Formerly:
Chrome - Media",https://www.linkedin.com/in/apacible/,2014-09-01,2020-07-01,United States
Software Engineer Intern,Facebook,"Seattle, WA",Messenger - VoIP/Video Calling,https://www.linkedin.com/in/apacible/,2013-06-01,2013-09-01,United States
Amazon Student Representative,Amazon,"Seattle, WA",Support the Amazon University Recruiting team as a student liaison for the University of Washington.,https://www.linkedin.com/in/apacible/,2012-08-01,2013-06-01,United States
Software Development Engineer Intern,Amazon,"Seattle, WA",Kindle - Kindle for Android/Kindle Fire,https://www.linkedin.com/in/apacible/,2012-06-01,2012-08-01,United States
Catalyst Tools Consultant,University of Washington IT,"Seattle, WA",,https://www.linkedin.com/in/apacible/,2011-01-01,2012-05-01,United States
Software Development Engineer Intern,Amazon,"Seattle, WA",Webstore - Ordering and Your Account,https://www.linkedin.com/in/apacible/,2011-06-01,2011-09-01,United States
Software Engineer,Google,Greater Seattle Area,Google Cloud - GCE Performance,https://www.linkedin.com/in/waylonhuang/,2018-10-01,2020-07-01,United States
Android and iOS Developer,Dev,Greater Seattle Area,"I work on my personal projects and develop mobile applications for the Android and iOS platforms.
https://play.google.com/store/apps/developer?id=Waylon+Huang
http://waylonhuang.weebly.com/
…
see more",https://www.linkedin.com/in/waylonhuang/,2012-01-01,2020-07-01,United States
Graduate Research Assistant,University of Washington,Greater Seattle Area,"Worked on the Randoop project in the Programming Languages & Software Engineering group under Professor Michael Ernst. Randoop is an automatic unit test generator for Java.
https://github.com/randoop/randoop",https://www.linkedin.com/in/waylonhuang/,2017-09-01,2018-06-01,United States
Teaching Assistant,University of Washington,Greater Seattle Area,"Taught weekly sections, held office hours to answer student questions, responded to student questions on the class Piazza message board, graded homework and exams, wrote worksheet questions.
Classes taught:
• CSE 333 instructed by Justin Hsia. https://courses.cs.washington.edu/courses/cse333
• CSE 351 instructed by Mark Wyse. https://courses.cs.washington.edu/courses/cse351
• CSE 331 instructed by Kevin Zatloukal. https://courses.cs.washington.edu/courses/cse331
• CSE 341 instructed by Dan Grossman. https://courses.cs.washington.edu/courses/cse341
• CSE 410 instructed by Justin Hsia. https://courses.cs.washington.edu/courses/cse410
• CSE 351 instructed by Justin Hsia. https://courses.cs.washington.edu/courses/cse351
…
see more",https://www.linkedin.com/in/waylonhuang/,2016-09-01,2018-06-01,United States
Undergraduate Research Assistant,University of Washington,"Seattle, WA","Working on the Randoop project in the Programming Languages & Software Engineering group under Dr. Michael Ernst and Dr. Benjamin Keller. Randoop is an automatic unit test generator for Java.
Competed in FSE Student Research Competition 2016 in Seattle, WA with accepted paper on Randoop http://dl.acm.org/citation.cfm?id=2983977
…
see more",https://www.linkedin.com/in/waylonhuang/,2016-04-01,2017-06-01,United States
TDP-ET Student Intern,AT&T,"Bothell, WA","Technology Development Program - Emerging Technologies
Worked with the intern team to develop a dynamic, mobile-responsive website for Heroes on the Water, a nonprofit organization that arranges kayak-fishing trips for veterans. The technologies that we used included MongoDB, Express, AngularJS, and Node.Js. The project was a nationwide competition within AT&T and our team placed third overall. Our project also won Most Innovative and Best Video.
I also worked on the Dialtone Migration Project. The Dialtone server cluster centralizes the collection of information related to geography, phone numbers, modems, and XIP gateways, and automates the processing and publication of this data in a wide variety of forms. We migrated the Dialtone code base, written in C/C++ and running on Windows Server 2003, to be Linux compatible. I was assigned 30 out of 155 source files that needed to be compiled into executable files. Challenges involved translating Windows API calls to Linux calls. Common themes included socket, file, Makefile, and TCP/IP programming.
https://github.com/huangwaylon/Heroes-on-the-Water-Website
…
see more",https://www.linkedin.com/in/waylonhuang/,2016-06-01,2016-08-01,United States
Software Engineer III,Google Full-time,"Seattle, Washington, United States",,https://www.linkedin.com/in/zhouz2/,2020-05-01,2020-07-01,United States
Software Engineer,Groupon,"Seattle, Washington",,https://www.linkedin.com/in/zhouz2/,2019-10-01,2020-05-01,United States
Software Development Engineer,Groupon,"Seattle, Washington","- Maintain and build data ETL pipelines that calculate, sometimes directly publish bids for thousands of ad campaigns for several partners
- Maintain the API endpoint that serves bid to other internal systems
- Full-stack development to improve a web UI that offers business the transparency they need to understand the status of automated bidding, and allows operations to adjust bidding parameters
- Adapting a machine learning based xgboost model used for bidding to the existing system
- Spearheaded the effort in the team to improve upon GitHub workflow, CI adaption, and test coverage
…
see more",https://www.linkedin.com/in/zhouz2/,2018-07-01,2019-10-01,United States
Software Development Engineer Intern,Groupon,"Palo Alto, CA","- Implemented a fallback to WebView for legacy OS versions while maintaining good user experience
- Proposed and added “auto squash and merge” webhook to help phase out the practice of squash-and-force-pushing before merging
- Developed NodeJS backend for a Facebook chatbot which parses user search terms using Wit.ai and returns relevant deal cards
…
see more",https://www.linkedin.com/in/zhouz2/,2017-05-01,2017-08-01,United States
Software Development Engineer Intern,Groupon,Chicago,"- Implemented a performance experiment where images are loaded with low quality first, then replaced with high-quality version on page load
- Implemented a performance experiment where a blank template is loaded first, then populated with real page data on page load",https://www.linkedin.com/in/zhouz2/,2016-05-01,2016-08-01,United States
Internship,光合新知,"Beijing City, China","- Studied web programming basics and MEAN stack by working on weekly projects with a partner
- Created a single page MEAN application that can retrieve JSON data via RESTful API and access Baidu Map API to display map and offer direction",https://www.linkedin.com/in/zhouz2/,2014-08-01,2015-01-01,China
Software Engineer,Google,"Kirkland, Washington",,https://www.linkedin.com/in/yaqi-ji-533826107/,2020-02-01,2020-07-01,United States
Software Engineering Intern,Google,San Francisco Bay Area,,https://www.linkedin.com/in/yaqi-ji-533826107/,2019-05-01,2019-08-01,United States
Engineering Practicum Intern,Google,San Francisco Bay Area,,https://www.linkedin.com/in/yaqi-ji-533826107/,2018-05-01,2018-08-01,United States
Software Development Intern,Olio City,Greater St. Louis Area,,https://www.linkedin.com/in/yaqi-ji-533826107/,2017-06-01,2017-08-01,United States
Software Engineer,Google,San Francisco Bay Area,,https://www.linkedin.com/in/egor-i-7452ab46/,2016-04-01,2020-07-01,United States
Software Engineer,Telegraph Hill Program Initiatives Inc,San Francisco Bay Area,,https://www.linkedin.com/in/egor-i-7452ab46/,2015-11-01,2016-04-01,United States
Senior Java Developer,Google via EPAM Systems,Mountain View,,https://www.linkedin.com/in/egor-i-7452ab46/,2014-09-01,2015-11-01,United States
Senior Java Developer,Google via EPAM Systems,"Minsk, Belarus",,https://www.linkedin.com/in/egor-i-7452ab46/,2010-12-01,2014-09-01,Belarus
Java Developer,"Telegraph Hill Program Initiatives, Inc.",San Francisco Bay Area,,https://www.linkedin.com/in/egor-i-7452ab46/,2013-09-01,2014-05-01,United States
Software Engineer Technical Lead,Google Full-time,Mountain View,"- NLP for Google Assistant
Google Machine Learning Ninja: Deep Learning, Natural Language Understanding
- Conversational platform for Google Assistant Ecosystem
- Display and Video Ads Infra (Indexing, Serving and Ranking)",https://www.linkedin.com/in/taoyucmu/,2015-03-01,2020-07-01,United States
SDE Intern,Amazon Web Services,Greater Seattle Area,"Contributed to develop a Search Platform for AWS Infrastructure using Solr/Lucene, DynamoDB and Antlr.",https://www.linkedin.com/in/taoyucmu/,2014-05-01,2014-08-01,United States
Teaching Assistant,Carnegie Mellon University,Greater Pittsburgh Area,"Teaching Assistant for course 15619 Cloud Computing, SCS, CMU",https://www.linkedin.com/in/taoyucmu/,2014-01-01,2014-05-01,United States
Research Intern,Alibaba.com,Hangzhou,Designed and developed a Commodity Recommender System with Interactive visualization based on collaborative filtering algorithms and D3,https://www.linkedin.com/in/taoyucmu/,2013-07-01,2013-09-01,United States
Software Engineer,IBM,"Shanghai City, China","Worked as a SAP developer of Program Zhejiang Tobacco Company ERP System built on J2EE platform, my responsibility is to add new features for automating manual processes and new trading solutions.",https://www.linkedin.com/in/taoyucmu/,2012-09-01,2013-01-01,China
CEO,E-Card Technology Inc,Greater Pittsburgh Area,"- Developed a software system TaoBusinessCard, which helps stores on taobao.com market goods on Mobile Internet using the technique of Recommend System. The product has 9188 users already.
- 1th Prize, 8th National College Entrepreneurship and Innovation Competition (Top 15/1025)",https://www.linkedin.com/in/taoyucmu/,2011-12-01,2012-12-01,United States
Software Engineer,Google,United States,,https://www.linkedin.com/in/urvashi-tiwari-a6a49155/,2016-08-01,2020-07-01,United States
Sr Developer,Black Knight Financial Services,United States,"Analyzing new requirement document, designing, prototyping and developing applications
Perform requirement analysis and create component design documents.
Developing Set up and Application for mortgage using VC++ and Python.
Designed and developed object oriented frameworks comprised of VC++ and Python.
Written Scripts in Python to test the product and automate the test cases
Designed database tables, view structures, used MYSQL as query language to retrieve data for the configuration of application.
Set up and Application unit and integration testing root cause analysis, fixing issues found during testing.
…
see more",https://www.linkedin.com/in/urvashi-tiwari-a6a49155/,2015-09-01,2016-07-01,United States
Senior Software Developer,Giesecke & Devrient,United States,"Detailed study of third party specification, comprehension of user requirement specification, analyzing business needs.
Designed and developed validation applications for SMS handling at SIM level using Python and C++.
Written Scripts in Python to test the product.
Owner of a complete application module named WIB-Wireless Internet Browser.
Designed and developed object oriented frameworks comprised of C++ classes that serve as chassis for developing test ware for SIM cards.
Conceptualized, designed and implemented Objected oriented solutions for test ware for various SIM applications that includes browser, plug-ins, end customer applications.
Tested the product using SIM cards, Omnikey Card Reader, CCR5.
Extensive study and application of design principles and patterns to provide dynamic and extensible solutions.
Experience with multisite source management using, Clear Case, Unified Chain Modeling (UCM). Knowledge of UCM VOBs, projects, integration streams, child streams. Experience with creation of snapshot and dynamic views. Handled comparing, merging and labeling sources individually.
Requirement Analysis, Multiproduct Test Development along with Integration.
Experience with hard deadlines and ensuring timely delivery of work requests.
…
see more",https://www.linkedin.com/in/urvashi-tiwari-a6a49155/,2013-07-01,2015-09-01,United States
Software Engineer,Wipro Technologies,United States,"• Set up the lab for VPN tunnel establishment, configuring Cisco, Juniper and Nortel gateways and used multiple devices such as Routers, Switches, various models of Avaya VOIP phones.
• Implemented the phones to work in Virtual Private Network using Protocols IKE (for key exchange using Diffie-Hellman algorithm), IPSec to provide authentication and encryption of IP packets.
• Implemented packet traversing using protocols TCP/IP, UDP and transfer of file was done using protocol FTP.
• Message queues, shared memory, semaphores and mutex were used as inter process communication and synchronization mechanisms.
• Worked on the functional implementation of GUI of different screens of many models of Avaya VOIP Phones includes H323 press button and touch screen phones, which includes password protected start up screens, user authentication, tunnel failure screens, sleep mode, editing screens, contact, call log, WIB, SCEP interrupt and event record for certificate renewal attempts.
• Designed and developed GUI of the various screens using C++, Python in UNIX and Vxworks environment. Used C++ STL containers like Maps, Vectors and List to manage multi-access control from different user-interfaces.
• Used Singleton, Factory, Adapter and Observer design patterns in the development to provide extensive solutions.
• Debugging of applications using GNU, gdb and serial Debugger.
• Developed internal schedule, implementation and quality plan for the feature development in Agile Methodology.
• Prepared unit test, integration test plans and performed unit and integration testing for respective modules.
• Used UNIX Shell Scripting and Python scripting to write sanity test cases.
• Fixed the issues during System Verification and field issues, performed root cause analysis over core dump files using GNU gdb and fixed the issues. Resolved many memory leak issues.
• Once the project entered SV stage then responsible for fixing MRs reported by SV Team.
…
see more",https://www.linkedin.com/in/urvashi-tiwari-a6a49155/,2010-06-01,2013-07-01,United States
Project Engineer,Wipro Technologies,United States,,https://www.linkedin.com/in/urvashi-tiwari-a6a49155/,2008-01-01,2010-05-01,United States
Software Engineer,Google Full-time,"Sunnyvale, California, United States",,https://www.linkedin.com/in/yiming-liu-458381119/,2020-05-01,2020-07-01,United States
Member of the Technical Staff,VMware,Palo Alto,,https://www.linkedin.com/in/yiming-liu-458381119/,2018-07-01,2020-05-01,United States
Research Assistant,Carnegie Mellon University,Mountain View,"As a full-time summer research intern to assist with a research project at the intersection of machine learning and privacy.
Project Description:
Deep learning is the state-of-art machine learning technique that is widely used for applications such as speech processing and image processing. In smart homes, a large amount of raw sensor data, including very sensitive video and audio are continuously recorded and processed by deep learning. For example, Amazon Echo collects user’s audio and recognizes voice commands via deep learning. These applications are privacy intrusive yet useful. Is there a way to get the utility of the sensor data without violating user privacy? In this project, we utilize the deep learning’s multiple-layer structure to distribute the computation on both local computing nodes and remote servers. Furthermore, we explore the space to optimize our layer distribution by training the main model and the attacker model jointly. We achieve the goal to produce good performance for data utility and preserve data privacy by making it difficult for attackers to recover the sensor data.
…
see more",https://www.linkedin.com/in/yiming-liu-458381119/,2017-06-01,2017-10-01,United States
Software Engineer Intern,Alibaba Group,Guang zhou,,https://www.linkedin.com/in/yiming-liu-458381119/,2016-07-01,2016-10-01,United States
Research Assistant,Sun Yat-sen University,"Guangzhou, Guangdong, China","As the research assistant of Big Data Dissemination Laboratory, I was responsible for the development of data crawler system and text mining software.",https://www.linkedin.com/in/yiming-liu-458381119/,2015-06-01,2016-03-01,China
Software Engineer,Google,"Mountain View, California",Google Search,https://www.linkedin.com/in/hainingfeng/,2019-07-01,2020-07-01,United States
Graduate Student Research Assistant,Information Sciences Institute,"Los Angeles, CA","The HLT program, Alexa Graduate Fellowship, advisor is Prof. Nanyun, Peng.
Worked on NLP project - Amazon
Story Generation system - website: http://cwc-story.isi.edu/
Paper Accepted by NAACL 2019.
…
see more",https://www.linkedin.com/in/hainingfeng/,2018-09-01,2019-04-01,United States
Software Engineer Internship,ServiceNow,"San Diego, CA","Worked in Vulnerability Response - Security Operations Team
- Developed Setup Assistant of Vulnerability Response(VR) based on React and ServiceNow’s platform through REST API.
- Wrote Unit tests based on Selenium WebDriver and JUnit and deployed to Jenkins.
- Wrote scripts to generate large volume data following normal distribution and business rules, used for Performance Analysis of VR.
- Enabled Bootstrap frontend and visualized data using JavaScript libraries Echarts and Datatables.
…
see more",https://www.linkedin.com/in/hainingfeng/,2018-05-01,2018-08-01,United States
Research Assistant,Beijing University of Posts and Telecommunications,"Beijing City, China","Research Assistant in Institute of Network
Research direction was combining Natural Language Processing with Deep Learning.
Realized a Question Answering System:
- Put forward a question classification algorithm combining Naive Bayesian and Support Vector Machine.
- Achieved the function of answering common questions about campus life by collecting corpus data and training the algorithm.
…
see more",https://www.linkedin.com/in/hainingfeng/,2015-08-01,2016-06-01,China
Software Engineer,Google,San Francisco Bay Area,,https://www.linkedin.com/in/neha-das-636b863a/,2019-10-01,2020-07-01,United States
"Software Engineer, Aruba OS Infra Team","Aruba, a Hewlett Packard Enterprise company",San Francisco Bay Area,"• Worked on design, implementation, integration of software for Aruba's high-performance WLAN controller platforms in C
• Involved in development of infrastructure software components - shared memory, networking protocols, distributed data store, monitoring - that allow efficient data interchange between application processes within a system or across a cluster
…
see more",https://www.linkedin.com/in/neha-das-636b863a/,2018-06-01,2019-10-01,United States
Software Engineer Intern,"Aruba, a Hewlett Packard Enterprise company",Santa Clara,"AMON for NextGen Apps - WLAN InfraOS Team
AMON is an Aruba proprietary protocol for data export of state changes, status updates and statistics from WLAN Infrastructure to Visibility and Analytics components in the Aruba ecosystem.
• Implemented Native Google Protobuf support to facilitate the data export of Aruba AMON messages to Aruba Cloud Central
• Designed and developed new APIs in C and integrated them with existing AMON library and applications to invoke Protobuf encoding and decoding routines
• Developed a Wireshark Plugin dissector in C for Aruba’s AMON protocol to create a custom AMON Plugin and Wireshark installer for Windows and Linux which is currently in use across teams
• Prepared a Wireshark Developer and User Guide for AMON to document the process and to ensure maintainability for new additions
…
see more",https://www.linkedin.com/in/neha-das-636b863a/,2017-05-01,2017-08-01,United States
Member of Technical Staff,Netskope,"Bengaluru Area, India","• Developed XML signatures and performed Security research of SaaS apps for Netskope’s cloud security product
• Deep packet analysis and reverse engineering of HTTP/HTTPS traffic for policy enforcement
• Achieved a pass rate of upto 98% for Google Apps across all platforms for activity detection and Data Leakage Prevention
• Researched the integration of 3rd Party APIs of Google with Netskope’s solution to provide Access Management
• Used Python to scrape webpages to generate login URLs with multi-threading and analysed the network traffic data stored in MongoDB with R to ascertain user behaviour
• Configured Scumblr (Netflix tool for detecting app changes) using Ruby on Rails to get updates regarding priority cloud apps on the web from Google search, Twitter, Facebook etc
…
see more",https://www.linkedin.com/in/neha-das-636b863a/,2014-06-01,2016-07-01,India
Intern,JDA Software,Bangalore,"• Developed an Automation tool using AutoIt and Windows Batch scripting for Patching of JDA’s Enterprise Planning Mid-Tier Servers, which reduced the scheduling cost to 1/100 and consolidated 140 jobs into one
• Implemented Automatic Reporting of SLA Compliance metrics for Retail Team Dashboard using PL/SQL
• Designed and developed a Web application to list out JDA's EP Hardware Inventory details such as Server Backup and Hardware Specifications using HTML and Javascript
…
see more",https://www.linkedin.com/in/neha-das-636b863a/,2013-07-01,2013-12-01,United States
Intern,Texmaco Limited,San Francisco Bay Area,"• Analyzed the complete manufacturing process followed at the Automated Steel Foundry, and studied the PLC system and other instrumentation used in foundry processes
• Gathered data from the industry records and made an analysis on the daily production per shift",https://www.linkedin.com/in/neha-das-636b863a/,2012-05-01,2012-07-01,United States
Software Engineer,Google Full-time,Greater New York City Area,Google Ads,https://www.linkedin.com/in/anthonybcruz/,2020-03-01,2020-07-01,United States
Full Stack Engineer,Goldman Sachs,"New York, New York","- Built the front-end for an internal monitor tool using TypeScript, Angular 7, HTML, SASS, and AngularCLI
- Wrote the back-end authentication architecture using proprietary REST API’s and Java and Vert.x
- Consolidated all common tooling applications to a single wep application that improved developer productivity
- Collaborated with Core Engineering to leverage an open source analytics platform for real time monitoring
- Wrote a back-end yaml configuration resource that interacted with existing API’s using Java and Springboot
- Helped automate the transformation of configuration files to meet the new API standards
…
see more",https://www.linkedin.com/in/anthonybcruz/,2017-08-01,2020-03-01,United States
Technology Analyst Intern,Goldman Sachs,Greater New York City Area,Incoming Summer Technology Analyst for GSAM,https://www.linkedin.com/in/anthonybcruz/,2017-05-01,2017-08-01,United States
Research Assistant,Brown Robotics: Humans to Robots Laboratory,"Providence, Rhode Island Area","- Worked on grasping problems meant to help advance the process of commercializing robots
- Implemented learning algorithms using TensorFlow on Baxter robots
- Assisted on a project that involved real time classifying and grasping of various spoons and forks",https://www.linkedin.com/in/anthonybcruz/,2016-09-01,2018-05-01,United States
Student Advocate for Diversity and Inclusion,Brown University,"Providence, Rhode Island Area","-Collaborated with underrepresented minority groups in order to improve the department
-Organized events to foster communication between students and staff
-Created graphs using department data to show the current condition of the CS classes",https://www.linkedin.com/in/anthonybcruz/,2016-02-01,2018-05-01,United States
Undergraduate Teaching Assistant,Brown University,"Providence, Rhode Island Area",Design UTA during the Spring 2017 semester for CS1320: Creating Modern Web Applications,https://www.linkedin.com/in/anthonybcruz/,2016-12-01,2017-05-01,United States
Math 90 Grader,Brown University,"Providence, RI","- Organized grades of students
- Maintained a direct line of communication between professors and TA's
- Returned assignments on a weekly manner
- Asked to grade for two semesters",https://www.linkedin.com/in/anthonybcruz/,2015-09-01,2016-05-01,United States
Intramural Flag Football Ref,Brown University,"Providence, Rhode Island Area",Officiate football games.,https://www.linkedin.com/in/anthonybcruz/,2015-04-01,2016-02-01,United States
Early Bird Camp,Twitter,San Francisco Bay Area,"-Cooperated with the Twitter android development team to create a shippable app in a week
-Crafted the backend using Java and Parse database, on Android Studio
-Awarded with the Best Quality Award because our app was fully functional",https://www.linkedin.com/in/anthonybcruz/,2016-06-01,,United States
Software Engineer,Google,"Manhattan, NY",,https://www.linkedin.com/in/sghelm/,2016-09-01,2020-07-01,United States
Software Engineer Internship,Google,"Boston, MA","Developed and tested a new user interface for the Hotel Booking site on mobile
Worked with designers to improve the wireframes and visual designs
Implemented and tested the user interface (Java, GWT, Soy, CSS)
Added logging metrics, launched the product and presented to senior management",https://www.linkedin.com/in/sghelm/,2015-05-01,2015-08-01,United States
Engineering Practicum Intern,Google,"New York, New York","Implemented the front-end of a prototype of a new Google Search feature (HTML, CSS, Java)",https://www.linkedin.com/in/sghelm/,2014-05-01,2014-08-01,United States
Software Intern,Motorola Solutions,Greater Chicago Area,"• Participated in all aspects of System Test using the Agile Methodology for a public safety product that integrates real time video, voice, mapping and data
• Composed and executed test cases based on given acceptance criteria and reported the results using Microsoft Test Manager
• Scripted automated test cases using WinAutomation
• Worked with development located in India and Utah to reproduce and troubleshoot defects using tools such as Debug Diag
• Participated in Bug scrubs and meetings with architects, managers, testers and developers
• Demonstrated the product to Motorola employees including engineers, business and senior management at an internal company showcase of emerging products
…
see more",https://www.linkedin.com/in/sghelm/,2013-05-01,2013-08-01,United States
Software Engineer,Google,Mountain View,,https://www.linkedin.com/in/jinming-yu-219891a0/,2018-02-01,2020-07-01,United States
Software Engineer Internship,Google,"Mountain View, California","• Worked in Personal Search team in Google which powers Search Private Data across apps on Android.
• Introduced chips to help users navigate within the product. It was great success as an intern project and they plan to push into production.
• Did big refactor to unify all existing filters in UI and Serving to greatly simplify the serving logic.
…
see more",https://www.linkedin.com/in/jinming-yu-219891a0/,2017-05-01,2017-08-01,United States
Software Development Advisor,SecureWorks,Greater Atlanta Area,"• Worked on a web portal using Scala and Lift web framework. Wrote restful services and corresponding UI elements, and migrated data from legacy schemas to new schemas with MySql.",https://www.linkedin.com/in/jinming-yu-219891a0/,2017-01-01,2017-05-01,United States
Undergraduate Research Assistant,Ubicomp Lab at Georgia Tech,Atlanta,• Currently building a frontend Android platform and writing algorithms to process sensor data in CampusLife project directed by Gregory Abowd,https://www.linkedin.com/in/jinming-yu-219891a0/,2016-08-01,2016-12-01,United States
Software Development Associate Engineer,SecureWorks,Atlanta,"• Added new functionalities to web pages, retrieved data from server and displayed properly using Less.js and
Bootstrap
• Wrote RESTful web services implementing Spring Framework, with numerous MySQL accesses involved
…
see more",https://www.linkedin.com/in/jinming-yu-219891a0/,2016-05-01,2016-08-01,United States
Android Developer Intern,Alii Healthcare,"75 5th Street, Atlanta, Georgia","• Android development establishing a video connection between users and ER doctors
• Using Pusher API, Stripe API, and Opentok Platform, the application allows users to register, sign in, start and end the video call, and send user feedback to the server.",https://www.linkedin.com/in/jinming-yu-219891a0/,2015-05-01,2016-04-01,Georgia
Software Development Senior Advisor,SecureWorks,Atlanta,"• Wrote both service and UI automation tests with Selenium and Junit tests to test the functionalities of a web
portal
• Improved code efficiency and simplified the architecture of the web portal by refactoring functions and
classes
…
see more",https://www.linkedin.com/in/jinming-yu-219891a0/,2015-08-01,2015-12-01,United States
Undergraduate Research Assistant,Contextual Computing Group at Georgia Tech,Atlanta,"• Worked under Thad Starner and looked for relationships between chewing energy levels and food types
• Wrote algorithms in Python to extract data from experiments and plot spectrograms with matplotlib",https://www.linkedin.com/in/jinming-yu-219891a0/,2015-05-01,2015-08-01,United States
Web Administrator,AdeptDC co.,美国 大亚特兰大地区,"• Made the AdeptDC website mobile friendly using Bootstrap (https://github.com/JinmingYu/AdeptDC- Website)
• Rendered menu bar and forms, etc. in the website to different layouts as the size of the window changes",https://www.linkedin.com/in/jinming-yu-219891a0/,2015-03-01,2015-08-01,United States
Software Engineer,Google Full-time,"Mountain View, California",Building for the next billion users :),https://www.linkedin.com/in/arunmanickam/,2019-06-01,2020-07-01,United States
Software Engineer - Coop,PayPal,"Scottsdale, Arizona","• Designed and Developed a full stack web application for Paypal SRE organization - to track product changes and generate change records.
• Experience with Python, Angular, Express.js, Node.js, Java (Spring Boot/Maven) and Mongo
• Implemented SSO with 2FA into the full stack web application
• Created builds using Jenkins to bundle and deploy the application
• Solid foundation in algorithms, system design and design patterns
…
see more",https://www.linkedin.com/in/arunmanickam/,2018-08-01,2019-06-01,United States
Software Engineer - Graduate Intern(Summer),PayPal,"Scottsdale, Arizona","Technologies: Node.js, AngularJs, Java, Python and MongoDB",https://www.linkedin.com/in/arunmanickam/,2018-05-01,2018-08-01,United States
Business Intelligence Developer,Ira A. Fulton Schools of Engineering at Arizona State University,"Phoenix, Arizona Area","Technologies: C# .NET, Python, MS BI Suite, Splunk and Tableau",https://www.linkedin.com/in/arunmanickam/,2017-11-01,2018-08-01,United States
Software Development Engineer II (Norton),Symantec,Chennai,"Technologies: C# .NET, MVC/ASP.NET, React, Razor, Python, Java, Cassandra and REST APIs
Full Stack Product Developer in an Agile Scrum Team - Norton Engineering
• Developed a coherent framework - Pingo, to unify all Norton applications into a single system in micro-deployable plugin architecture, thereby critically enhanced Norton product utilization and augmented business value with cost reduction analysis.
• Implemented Norton device management and orders plugin in the Pingo framework using React and Razor.
• Designed and developed a cloud-hosted solution, CHIP, to onboard and integrate Symantec partners in Mongo.
• Built an automated unit and functional testing framework to achieve test stability triangle and incorporated TDD in all projects.
• Designed and fabricated a unified Continuous Integration environment for the multiple plugins using Jenkins and thereby minimized development/deployment effort.
…
see more",https://www.linkedin.com/in/arunmanickam/,2015-06-01,2017-07-01,United States
Research Assistant,Centre for Technology Development and Transfer (CTDT) - Anna University,"Chennai Area, India","- Funded Research Assitant in the Centre for Technology Development and Transfer - Student Research Wing of Anna University.
- Researched on various domains such as Cloud Security, Mobile Computing and Distributed DataBase Systems.
- Designed and Implemented an Academic Management system, a novel secure cloud entity manageable via the web and mobile applications.
- Accolades: Best Project Award '2014
…
see more",https://www.linkedin.com/in/arunmanickam/,2013-07-01,2014-08-01,India
Research Intern - Centre for Development of Advanced Computing,CDAC,"Bangalore, India","- Worked as a Reseach Intern in Centre for Development of Advanced Computing (CDAC), R&D Supercomputing Lab of Dept. Electronics and Information Technology, Government of India, under the tutelage of Senior Scientist Dr. Balaji Rajendran.
• Developed the core user classification hierarchy in an academic networking application, Seekha, to network and share information based on the defined user categorization and abstraction levels.
• Devised an alert management feature to notify users about their subscribed conferences, training, and other vital information.
…
see more",https://www.linkedin.com/in/arunmanickam/,2013-05-01,2013-07-01,India
Software Engineer,Google,San Francisco Bay Area,full stack software engineer,https://www.linkedin.com/in/chengxue-qian-968a217a/,2016-02-01,2020-07-01,United States
"Co-founder, Product Designer and Software Developer",Ownity Inc.,New York City,"• Proposed a startup-oriented social networking service “Seahawks” for Chinese youth entrepreneur domestic and abroad;
• Designed the function, framework and the layout of the website for desktop, mobile tablet and cell-phones users;
• Determined the requirement specification, designed multiple data tables for MySQL database;
• Designed and built the website framework using Tomcat Server and AWS Elastic Beanstalk in Eclipse;
• Developed a fully responsive website front-end for all-size devices based on Bootstrap using JavaScript, CSS and HTML;
• Fulfilled various joint tests with back-end developer; optimized and improved the performances and the functions.
…
see more",https://www.linkedin.com/in/chengxue-qian-968a217a/,2014-10-01,2015-08-01,United States
Software & Hardware Design Intern at Dept. Flight Control,Commercial Aircraft Corporation of China Ltd,"Shanghai City, China","• Verified, categorized and summarized dead code in C++/C and their code coverage analysis provided by the SW/HW supplier to give SW/HW requirement designers and group leader a deep insight into the dead code elimination process;
• Translated Plan for Hardware Aspects of Certification for Remote Electronic Unit (125 pages in total) from English to Chinese to offer SW/HW requirement designers and group leader a comprehensive understanding of the document.
…
see more",https://www.linkedin.com/in/chengxue-qian-968a217a/,2014-06-01,2014-08-01,China
Senior Software Engineer,Google,San Francisco Bay Area,,https://www.linkedin.com/in/jasperll/,2019-06-01,2020-07-01,United States
Senior Software Engineer,LinkedIn,San Francisco Bay Area,,https://www.linkedin.com/in/jasperll/,2016-09-01,2019-06-01,United States
Software Engineer,LinkedIn,San Francisco Bay Area,,https://www.linkedin.com/in/jasperll/,2015-05-01,2016-09-01,United States
Data Engineer,Electronic Arts (EA),San Francisco Bay Area,,https://www.linkedin.com/in/jasperll/,2014-02-01,2015-04-01,United States
Software Engineering Intern,Electronic Arts,"Redwood City, CA",,https://www.linkedin.com/in/jasperll/,2013-06-01,2013-09-01,United States
Research Assistant,Tsinghua University,"Beijing City, China",,https://www.linkedin.com/in/jasperll/,2011-03-01,2012-06-01,China
Data Analyst Intern,Hulu,"Beijing City, China",,https://www.linkedin.com/in/jasperll/,2011-06-01,2011-09-01,China
CEO / Founder / Head Coach,CodeBreakers,Greater New York City Area,"CodeBreakers is a fully-online mentorship program that helps students and experienced software engineers get jobs at FAANG companies. The kicker, you don't pay anything unless you get a job paying at least 80k. Here's how we do it.
- Opportunity to get 1:1 coaching from experienced FAANG engineers.
- We've placed over 30 candidates already
- The average student through our program comes out making 165k.
- Online curriculum to help you prepare for the infamous whiteboard interview.
- Mock interviews with engineers who interview at FAANG companies.
- Training for how to recruit, negotiate and building the best resume possible.
- Access to a network of recruiters to ensure you get interviews at all the top tech companies
- Collaborate with the CodeBreakers community of 60+ others also preparing for interviews.
…
see more",https://www.linkedin.com/in/darek-johnson-9766175b/,2019-01-01,2020-07-01,United States
Software Engineer,Google Full-time,"New York, NY",Unifying the world's data into a single storage semantic to improve data-consistency and reduce redundancy.,https://www.linkedin.com/in/darek-johnson-9766175b/,2018-07-01,2020-07-01,United States
Serial Entrepreneur / CTO,Various Startups Self-employed,Greater Philadelphia Area,"Manaweb Extensions - Web platform for bloggers to make their own chrome extension
Edgar USA - E-commerce company that partnered with manufacturers to sell American goods through online portal.
Manaweb Events - Wordpress for building community event applications. Used for events like TedTalks, ComicCon, Academic conferences, and other special interest conventions.
…
see more",https://www.linkedin.com/in/darek-johnson-9766175b/,2017-01-01,2018-07-01,United States
Assistant Trader,"Susquehanna International Group, LLP (SIG)",Greater Philadelphia Area,,https://www.linkedin.com/in/darek-johnson-9766175b/,2016-07-01,2016-12-01,United States
Investment Banking Analyst,Citi,New York,,https://www.linkedin.com/in/darek-johnson-9766175b/,2015-06-01,2015-08-01,United States
Technology and Software Development Intern,U.S. Bank,Greater Philadelphia Area,Worked in a group of 5 interns to design and implement a new intranet and collaboration platform for U.S. Bank.,https://www.linkedin.com/in/darek-johnson-9766175b/,2013-06-01,2014-06-01,United States
Quantitative Finance Analyst,U.S. Bank,Greater Philadelphia Area,"Statistical analysis of big data using R
Performed cluster analysis on bond time-series in an effort to identify market trends
Operational risk model analysis, including stress testing worst-case scenarios using ORX database",https://www.linkedin.com/in/darek-johnson-9766175b/,2013-12-01,2014-01-01,United States
Scientific Researcher,University of Minnesota,"Minneapolis, MN",Analyzed methods of controlling farnesylated proteins focusing on photolysis of protecting groups.,https://www.linkedin.com/in/darek-johnson-9766175b/,2011-07-01,2012-08-01,United States
Software Engineer,Google,Mountain View,,https://www.linkedin.com/in/antarikshbothale/,2018-02-01,2020-07-01,United States
Member of Technical Staff,BloomReach,Mountain View,,https://www.linkedin.com/in/antarikshbothale/,2014-11-01,2018-02-01,United States
Research Scientist Intern,Amazon,Greater Seattle Area,"1. Created a model to find hierarchical structure in unsupervised fashion from raw query data received from Amazon’s analytics portal; proposed model achieves significant improvement over current system
2. Developed high precision machine-learning and rule-based models for categorizing books in the Kindle catalog; tested model over 160K books, achieving 10x improvement in tagging and 4x improvement in readership coverage.
…
see more",https://www.linkedin.com/in/antarikshbothale/,2014-06-01,2014-09-01,United States
Business Analyst,A.T. Kearney,Mumbai,,https://www.linkedin.com/in/antarikshbothale/,2012-08-01,2013-08-01,United States
Software Engineer,Google,Greater Los Angeles Area,,https://www.linkedin.com/in/erinjenlin/,2019-06-01,2020-07-01,United States
Forward Deployed Engineer,Palantir Technologies,Greater New York City Area,,https://www.linkedin.com/in/erinjenlin/,2018-08-01,2019-04-01,United States
Forward Deployed Engineer,Palantir Technologies,"London, England, United Kingdom",,https://www.linkedin.com/in/erinjenlin/,2018-03-01,2018-08-01,United Kingdom
Instructional Aide,University of Michigan,"Ann Arbor, MI","EECS 280: Programming and Introductory Data Structures
EECS 388: Introduction to Computer Security",https://www.linkedin.com/in/erinjenlin/,2016-01-01,2017-12-01,United States
Resident Advisor,University of Michigan,"Ann Arbor, MI",,https://www.linkedin.com/in/erinjenlin/,2015-05-01,2017-12-01,United States
Research Assistant,University of Michigan,"Ann Arbor, MI",https://dl.acm.org/citation.cfm?id=3196494.3196498,https://www.linkedin.com/in/erinjenlin/,2016-09-01,2017-05-01,United States
Engineering Tour Guide,University of Michigan,"Ann Arbor, MI",,https://www.linkedin.com/in/erinjenlin/,2015-05-01,2015-12-01,United States
Summer Analyst,Goldman Sachs,Greater New York City Area,Technology Division,https://www.linkedin.com/in/erinjenlin/,2017-05-01,2017-08-01,United States
Software Engineering Intern,Thomson Reuters,"Ann Arbor, MI",,https://www.linkedin.com/in/erinjenlin/,2016-05-01,2016-08-01,United States
Software Engineer,Google,India,,https://www.linkedin.com/in/garimap/,2011-07-01,2020-07-01,India
Senior Software Engineer,Google,"New York, New York",,https://www.linkedin.com/in/supraja2610/,2019-06-01,2020-07-01,United States
Software Engineer,Facebook,Greater New York City Area,"Lead Engineer on enterprise marketing customer journey platform.
Built a consolidated marketing platform that segments, prioritizes, throttles and takes users through personalized marketing journeys.
Designed a data store to track real time events and create conditional marketing flows based on user actions.
…
see more",https://www.linkedin.com/in/supraja2610/,2018-03-01,2019-05-01,United States
Data Engineer,Facebook,Greater New York City Area,"Designed and built an online platform to build custom sales presentations by picking content from internal tools and exporting them to a PowerPoint deck within seconds.
Built a web tool to help sales teams understand what ads resonate with audience and how to create better ads. Performance tuned a 11TB dataset resulting in 75% of queries executing within 3s. Designed a combination database architecture after evaluating multiple databases
Built an internal website for flagging ad policy violations using datasets in a Spark cluster backed by flash storage.
…
see more",https://www.linkedin.com/in/supraja2610/,2016-01-01,2018-03-01,United States
Cofounder,CollegeOracle,Singapore,"Cofounded a technology start up aimed at helping India students find the right college for undergraduate education.
Funded under StarHub i3 - VaSCo Grant",https://www.linkedin.com/in/supraja2610/,2014-05-01,2015-08-01,Singapore
Teaching Assistant,National University of Singapore,Singapore,"CS1010 Programming Methodology - Introductory Programming in C
Duties: Leading discussion sessions, mentoring students in programming concepts.",https://www.linkedin.com/in/supraja2610/,2014-08-01,2014-12-01,Singapore
Technical Analyst Intern,Goldman Sachs,Singapore,"Commodity Trading and Sales Technology. Front office technology team.
Automated risk analysis of commodities trading platform - Slang (Goldman Sachs’ proprietary language)
Tasked to analyze the risk analysis module to suggest improvements and implement a system to replace the legacy system.
Improved the performance of the risk analysis system from 10 minutes to 4 seconds. Reduced false risk alerts.
Successfully identified several stakeholders across the global team, and presented to the MD of FICC for release approval.
…
see more",https://www.linkedin.com/in/supraja2610/,2014-05-01,2014-07-01,Singapore
Software Engineer,Google,New York,,https://www.linkedin.com/in/ruoming-pang-bb77a5/,2006-07-01,2020-07-01,United States
Software Engineer,Google,San Francisco Bay Area,,https://www.linkedin.com/in/yuan-bian-53ab29127/,2019-08-01,2020-07-01,United States
Software Engineer,Google Full-time,Greater Boston Area,,https://www.linkedin.com/in/dongqing-xiao-70290980/,2019-12-01,2020-07-01,United States
Research Scientist,Facebook,Greater Boston Area,,https://www.linkedin.com/in/dongqing-xiao-70290980/,2018-04-01,2019-12-01,United States
Teaching Assistant,Worcester Polytechnic Institute,FL 316,"CS3431 DataBase System
CS3133 Foundation of Computer Science
CS2223 Introduction To Algorithms",https://www.linkedin.com/in/dongqing-xiao-70290980/,2013-01-01,2017-05-01,United States
Research Assistant,Worcester Polytechnic Institute,FL 316,"Working with Mohamed Eltabakh in the Project"" A Scalable Annotation MS on Relational Database"".
• Implemenation of annotation proapgation system based on PostgreSQL.
• Extending executor for supporting annotation summarization propagation.
• Reduce object rendering time by 66% by implementing summary-aware strategy.
…
see more",https://www.linkedin.com/in/dongqing-xiao-70290980/,2013-08-01,2013-12-01,United States
Summer Intern,VMware,"Palo Alto, California, USA",,https://www.linkedin.com/in/dongqing-xiao-70290980/,2015-05-01,2015-08-01,United States
Software Engineer,Google,San Francisco Bay Area,"Google Play Home Page Personalization Tech Lead
I actively work on designing and building machine learning systems/algorithms for Play recommendations and home page personalization.",https://www.linkedin.com/in/levent-koc-38ab6810/,2014-07-01,2020-07-01,United States
Software Engineer,Google,San Francisco Bay Area,Google Display Network Infrastructure / Privacy,https://www.linkedin.com/in/levent-koc-38ab6810/,2012-01-01,2014-07-01,United States
Teaching Assistant,University of Wisconsin-Madison,"Madison, WI",,https://www.linkedin.com/in/levent-koc-38ab6810/,2011-09-01,2011-12-01,United States
Software Engineering Intern,Google,San Francisco Bay Area,,https://www.linkedin.com/in/levent-koc-38ab6810/,2011-06-01,2011-08-01,United States
Research Assistant,University of Wisconsin-Madison,"Madison, WI",,https://www.linkedin.com/in/levent-koc-38ab6810/,2010-01-01,2011-05-01,United States
Teaching Assistant,University of Wisconsin-Madison,"Madison, WI",,https://www.linkedin.com/in/levent-koc-38ab6810/,2009-09-01,2009-12-01,United States
Summer Intern,Vienna University of Technology,San Francisco Bay Area,,https://www.linkedin.com/in/levent-koc-38ab6810/,2008-06-01,2008-09-01,United States
Software Engineer,Google,Mountain View,,https://www.linkedin.com/in/xiaoyehuang/,2019-09-01,2020-07-01,United States
Software Engineer,Google,"Tokyo, Japan",,https://www.linkedin.com/in/xiaoyehuang/,2018-06-01,2019-09-01,Japan
Software Engineer,Google,Mountain View,,https://www.linkedin.com/in/xiaoyehuang/,2017-06-01,2018-06-01,United States
Graduate Teaching Assistant,Georgia Institute of Technology,Greater Atlanta Area,Teaching Assistant for graduate level course CSE6220: High Performance Computing,https://www.linkedin.com/in/xiaoyehuang/,2017-01-01,2017-05-01,United States
Software Engineer Intern,Google,"Mountain View, California",Worked in SearchAds-Ads Quality team.,https://www.linkedin.com/in/xiaoyehuang/,2016-08-01,2016-12-01,United States
Data Engineer Intern,Lucidworks,San Francisco Bay Area,"Worked on open source project searchhub, covering front end, machine learning and searching.",https://www.linkedin.com/in/xiaoyehuang/,2016-05-01,2016-08-01,United States
Software Engineer,Google,Greater New York City Area,- Member of Applied Cryptography Research team,https://www.linkedin.com/in/kevin-yeo-a2a52847/,2016-08-01,2020-07-01,United States
Software Engineering Intern,Noom Inc.,Greater New York City Area,"- Built password reset system allowing users to change their password securely
- Contributed to development of pilot data reporting system
- Performed various tasks improving the Android and iOS mobile applications",https://www.linkedin.com/in/kevin-yeo-a2a52847/,2015-04-01,2015-08-01,United States
Software Engineering Intern,Facebook,Greater New York City Area,"- Member of Feed Ranking team
- Developed feed query replay pipeline to gather feature data and meta-feature statistics
- Automated searching a subset of feature universe for features with positive indicators
- Improved internal tool by improving rendering speed and creating more data slicing options",https://www.linkedin.com/in/kevin-yeo-a2a52847/,2014-05-01,2014-08-01,United States
Program Manager Intern,Microsoft,Greater Seattle Area,"- Member of Business Intelligence team within Microsoft Malware Protection Center
- Developed machine learning infrastructure prototype to classify malware infection vectors
- Contributed to various public reports informing users on malware trends and attacks",https://www.linkedin.com/in/kevin-yeo-a2a52847/,2013-08-01,2013-12-01,United States
Software Engineering Intern,Google,Greater New York City Area,"- Member of Security and Cryptography Research team
- Developed prototype of Encrypted BigQuery client",https://www.linkedin.com/in/kevin-yeo-a2a52847/,2013-01-01,2013-04-01,United States
Software Engineer,Google,San Francisco Bay Area,,https://www.linkedin.com/in/monica-hegde-88021579/,2017-03-01,2020-07-01,United States
Software Engineer Internship,Arista Networks,Santa Clara,"Tools and Infrastructure, Mentor: Eric Ellenoff
Designed and implemented a solution to query and parse the internal database to display package build progress to engineers across the organization",https://www.linkedin.com/in/monica-hegde-88021579/,2016-06-01,2016-09-01,United States
Member of Technical Staff,Oracle India Pvt. Ltd,"Bengaluru Area, India",Automatic Storage Management (ASM) development,https://www.linkedin.com/in/monica-hegde-88021579/,2014-06-01,2015-08-01,India
Software Development Engineer - Intern,Microsoft,"Hyderabad Area, India",Microsoft Office development.,https://www.linkedin.com/in/monica-hegde-88021579/,2013-05-01,2013-07-01,India
Intern,ISAC Global,Bangalore,,https://www.linkedin.com/in/monica-hegde-88021579/,2012-05-01,2012-07-01,United States
Software Engineer,Google,San Francisco Bay Area,Google Cloud,https://www.linkedin.com/in/bharos92/,2019-05-01,2020-07-01,United States
Apache Hive Committer,The Apache Software Foundation,San Francisco Bay Area,"Working on different modules of Hive. Contributed to Hive-On-Spark, Beeline, Hiveserver2, Metastore.",https://www.linkedin.com/in/bharos92/,2018-12-01,2019-05-01,United States
Software Developer,Cloudera,San Francisco Bay Area,"Apache Committer for Hive and contributor for Impala.
Worked on database internals, mainly on areas like metadata management, solving multi-cluster scalability challenges and various performance improvements.",https://www.linkedin.com/in/bharos92/,2018-02-01,2019-05-01,United States
Teaching Assistant,Stony Brook University,Stony Brook,CSE-308 Software Engineering,https://www.linkedin.com/in/bharos92/,2017-09-01,2017-12-01,United States
Graduate Assistant,Stony Brook University,"Stony Brook, New York",Web Development,https://www.linkedin.com/in/bharos92/,2016-12-01,2017-12-01,United States
Software Developer Internship,Amazon,Seattle,"Notifications team – Creating interactive push notification with rich-templates. Added Android support for rich notifications and templates for Amazon Photo-on-delivery. Includes creation of rich push template in Freemarker, implementation of retry logic on failure, adding REST services for data aggregation to render image – Java, Freemarker, Android",https://www.linkedin.com/in/bharos92/,2017-05-01,2017-08-01,United States
Software Engineer,Google,San Francisco Bay Area,,https://www.linkedin.com/in/shiyuan-sylvia-fang-9a595481/,2016-11-01,2020-07-01,United States
Software / Data Engineer,Baidu USA,San Francisco Bay Area,"April 2016 - October 2016
· Design and build models to predict obstacle behavior for autonomous driving vehicles.
· Build data processing pipeline.
· Implement online prediction framework.
October 2014 - March 2016
· Work on healthcare and O2O (online to offline) related project with terabytes of data.
· Build data processing pipeline and models.
· Visualize and analyze and data by utilizing Tableau and webapps.
…
see more",https://www.linkedin.com/in/shiyuan-sylvia-fang-9a595481/,2014-10-01,2016-10-01,United States
Software Engineer,Google,"New York, New York",,https://www.linkedin.com/in/robynsilber/,2019-02-01,2020-07-01,United States
Board Member,Autism Speaks,"Washington, District Of Columbia",Self-advocate,https://www.linkedin.com/in/robynsilber/,2018-03-01,2020-07-01,United States
Full Stack Developer,Enovational,"Washington, District Of Columbia",,https://www.linkedin.com/in/robynsilber/,2018-05-01,2019-01-01,United States
Software Engineer Intern,Floreo,"Washington, District Of Columbia",Android development,https://www.linkedin.com/in/robynsilber/,2018-02-01,2018-04-01,United States
Private Tutor,Private Tutoring in Java Programming and Computer Science,"Washington, District Of Columbia",,https://www.linkedin.com/in/robynsilber/,2015-09-01,2015-10-01,United States
Intern,"Akira Technologies, Inc",Washington D.C. Metro Area,Software Development and Usability Testing,https://www.linkedin.com/in/robynsilber/,2015-05-01,2015-10-01,United States
Agent,New York Life Insurance Company,"Vienna, VA",,https://www.linkedin.com/in/robynsilber/,2012-06-01,2014-02-01,United States
Summer Salesperson,Vector Marketing,"Levittown, NY",,https://www.linkedin.com/in/robynsilber/,2008-07-01,2008-08-01,United States
Intern,District Office of Sen. Charles E. Schumer,"Melville, NY",,https://www.linkedin.com/in/robynsilber/,2007-08-01,2008-04-01,United States
Software Engineer,"X, the moonshot factory","Mountain View, CA","Tech lead of solution engineers, working on computational agriculture using AI, robotics, cloud & edge computing, combining advanced technologies, products and business strategies to solve big problems and create value propositions.",https://www.linkedin.com/in/cnjieyang/,2017-07-01,2020-07-01,United States
Software Engineer,"Google, Research and Machine Intelligence","Mountain View, CA","Machine Learning, Data Mining, Information Extraction, Language Understanding, User Modeling and Personalization. Ran TensorFlow models on PB level data on a weekly basis.",https://www.linkedin.com/in/cnjieyang/,2012-06-01,2017-07-01,United States
Senior Research Engineer,Yahoo! Labs,"Santa Clara, CA","I involved in multiple research projects at Yahoo!, and used technologies of Data Mining, Machine Learning, User Understanding, Anti-Abuse, Social Networks, and Hadoop on massive datasets.
- Anti-Fraud: developed advanced machin learned anti-fraud models which help a major Asian E-commerce website to reduce the fraud rate of by 50% and reduce spending on a buyer protection program by 70%. We published 2 academic papers in CIKM and WWW. We also won a Yahoo! superstar team award, which is the highest achievement in the company.
- User reputation and expertise: developed user reputation and expertise models which helps many Yahoo! properties to find the valuable contributors and fight the spammers and abusers. We published 1 paper in KDD and 1 paper in SIGIR.
- Customer engagement and segmentation: why some users get more engaged and the other are less engaged? How to analyze their pattern and predict their future engagement? What is the reason for the change? I study those problem based on massive user activity data and build engagement and segmentation model to answer those questions.
- Social networks and influence inferring: people share articles to their friends on social channels like Facebook, Twitter. I study the problem how to find the influential users and construct the affective social networks and interests networks based on the user interaction data.
…
see more",https://www.linkedin.com/in/cnjieyang/,2010-08-01,2012-06-01,United States
Senior Software Engineer,Loomia,"San Francisco, CA","I'm working on recommendation engines and information filtering systems.
- Lead the development in machine learning algorithms, data analysis and visualization, reporting and business intelligence
- Increased the company's revenue about 20% by improving product quality and fixing hidden bugs
- Solved a number of serious performance issues and reduced the system response time from hours to seconds, and improve the throughput of some services more than 10 times
- Designed and constructed a data warehouse and internal search engine from scratch
- Developed websites for management and real-time reporting using a MVC framework (Pylons)
- Introduced Non-Relational database (MongoDB) to improve scalability
- Solved the problem of searching and recommending Chinese and Japanese articles
…
see more",https://www.linkedin.com/in/cnjieyang/,2008-12-01,2010-07-01,United States
Senior Software Engineer,BitTorrent Inc.,"Sichuan University, Chengdu, Sichuan, China","Working on BitTorrent DNA Project for P2P Video Streaming
- Developed Peer-to-Peer (P2P) based online video streaming systems
- Implemented a real-time Flash video format decoder and integrated it into the streaming server
…
see more",https://www.linkedin.com/in/cnjieyang/,2008-10-01,2008-11-01,China
Research Assistant and Scientific Programmer,Delft University of Technology,"Sichuan University, Chengdu, Sichuan, China","Research Assistant & Scientific Programmer, Delft University of Technology, the Netherlands
- Developed open source software, scientific programs, simulators, libraries, user interfaces, databases and toolkits for various research projects
- Researched on distributed recommender systems, mainly focusing on Bayesian inference, statistical modeling and semantic based collaborative filtering algorithms
- Developed several language models for tag-based and social-based information retrieval and filtering systems, and wrote a distributed crawler which crawled almost the whole YouTube, Flickr, Delicious and CiteULike websites for the experimental datasets
- Designed and implemented an epidemic-based P2P protocol to construct semantic overlays in Tribler, a file sharing and video streaming software downloaded over one million times
…
see more",https://www.linkedin.com/in/cnjieyang/,2005-08-01,2008-07-01,China
Co-founder and Coach,"ACM Team, Sichuan University","Sichuan University, Chengdu, Sichuan, China","I don't know how many days and nights I spent on ACM/ICPC programming contests when I was an undergraduate student in China, and I really enjoyed it! The latest (or earliest) contest we attended was 3am. I'm proud of being one of the founders and leaders of this team. Nowadays more and more excellent students in my mother university are joining and being trained for the contests.
…
see more",https://www.linkedin.com/in/cnjieyang/,2001-02-01,2003-07-01,China
Co-founder,Miracle Studio,"Sichuan University, Chengdu, Sichuan, China","We established a tech studio in campus and I was the first president. We named it Miracle Studio because we were young and believed miracles! (actually it is a combination of Microsoft and Oracle :). It was a group of enthusiastic students who were full of passion for computer science and technologies. Although miracles didn't happen to us very often, we had lots of fun together and had learnt a lot, such as discussing latest computer technologies, creating website (Lighteyes.net), meeting for brain storms, programming, traveling, and so on. It was a precious memory in our campus life for all of us, and all of us maintain a life-long friendship.
…
see more",https://www.linkedin.com/in/cnjieyang/,2000-04-01,2002-07-01,China
Software Engineer,Google,San Francisco Bay Area,"Google Play, Analytics Team",https://www.linkedin.com/in/paulaksp/,2017-03-01,2020-07-01,United States
Undergraduate Research Intern,Stanford Computer Graphics Laboratory,"Stanford, California",,https://www.linkedin.com/in/paulaksp/,2014-04-01,2014-12-01,United States
Software Engineer,YouTube,San Francisco Bay Area,,https://www.linkedin.com/in/nishkala-jayasimha/,2018-09-01,2020-07-01,United States
Data Scientist at Innovation Center Silicon Valley,SAP,"Palo Alto, California",,https://www.linkedin.com/in/nishkala-jayasimha/,2017-04-01,2018-09-01,United States
Data Scientist | Silicon Valley Next Talent Program,SAP,Palo Alto,,https://www.linkedin.com/in/nishkala-jayasimha/,2016-07-01,2017-04-01,United States
Data Engineering Intern,Tala,Santa Monica,"Constructed a scalable data infrastructure by utilizing MongoDB, Yii and PHP.
Implemented a datapipeline to perform ETL functionalities using Hive, Amazon EMR, datapipeline, S3 and Amazon Redshift.",https://www.linkedin.com/in/nishkala-jayasimha/,2016-01-01,2016-05-01,United States
SDE Intern,Amazon,"Seattle, Washington",Implemented an innovative delivery method for electronic gift cards in Java.,https://www.linkedin.com/in/nishkala-jayasimha/,2015-06-01,2015-08-01,United States
SDE Intern,Microsoft India Development Center,Bangalore,Improved the code coverage metrics by developing scripts in Windows PowerShell and SQL,https://www.linkedin.com/in/nishkala-jayasimha/,2013-06-01,2013-07-01,United States
Intern,Student Nokia Developer,"Bengaluru, India","Developed a J2ME game application called “Jump Well”. The aim of the game was to get a frog out of a well, by jumping on the various planks available. It was developed using the game canvas of J2ME with touch-screen features.",https://www.linkedin.com/in/nishkala-jayasimha/,2012-06-01,2012-07-01,India
Intern,"Shreyas Integrated Systems Pvt Ltd.,",Santa Monica,,https://www.linkedin.com/in/nishkala-jayasimha/,2011-06-01,2011-08-01,United States
Software Engineer,Google,San Francisco Bay Area,Working with the Video Search team on solving computer vision problems and developing machine learning infrastructure tools.,https://www.linkedin.com/in/luke-yang-bb4908189/,2016-07-01,2020-07-01,United States
Software Development Engineer,Amazon,San Francisco Bay Area,Developed end-to-end platform which manages full Big Data stack for predictive analysis. Our novel platform is able to process petabytes of data and provide capabilities for efficient data processing at scale (for both experimentation and production cases). The result of our work benefits millions of customers worldwide.,https://www.linkedin.com/in/luke-yang-bb4908189/,2014-09-01,2017-06-01,United States
Software Programmer - internship,Facebook,San Francisco Bay Area,Forget the negative press and get Facebooked,https://www.linkedin.com/in/luke-yang-bb4908189/,2014-06-01,2014-08-01,United States
CEO / Founder / Head Coach,CodeBreakers,Greater New York City Area,"CodeBreakers is a fully-online mentorship program that helps students and experienced software engineers get jobs at FAANG companies. The kicker, you don't pay anything unless you get a job paying at least 80k. Here's how we do it.
- Opportunity to get 1:1 coaching from experienced FAANG engineers.
- We've placed over 30 candidates already
- The average student through our program comes out making 165k.
- Online curriculum to help you prepare for the infamous whiteboard interview.
- Mock interviews with engineers who interview at FAANG companies.
- Training for how to recruit, negotiate and building the best resume possible.
- Access to a network of recruiters to ensure you get interviews at all the top tech companies
- Collaborate with the CodeBreakers community of 60+ others also preparing for interviews.
…
see more",https://www.linkedin.com/in/darek-johnson-9766175b/,2019-01-01,2020-07-01,United States
Software Engineer,Google Full-time,"New York, NY",Unifying the world's data into a single storage semantic to improve data-consistency and reduce redundancy.,https://www.linkedin.com/in/darek-johnson-9766175b/,2018-07-01,2020-07-01,United States
Serial Entrepreneur / CTO,Various Startups Self-employed,Greater Philadelphia Area,"Manaweb Extensions - Web platform for bloggers to make their own chrome extension
Edgar USA - E-commerce company that partnered with manufacturers to sell American goods through online portal.
Manaweb Events - Wordpress for building community event applications. Used for events like TedTalks, ComicCon, Academic conferences, and other special interest conventions.
…
see more",https://www.linkedin.com/in/darek-johnson-9766175b/,2017-01-01,2018-07-01,United States
Assistant Trader,"Susquehanna International Group, LLP (SIG)",Greater Philadelphia Area,,https://www.linkedin.com/in/darek-johnson-9766175b/,2016-07-01,2016-12-01,United States
Investment Banking Analyst,Citi,New York,,https://www.linkedin.com/in/darek-johnson-9766175b/,2015-06-01,2015-08-01,United States
Technology and Software Development Intern,U.S. Bank,Greater Philadelphia Area,Worked in a group of 5 interns to design and implement a new intranet and collaboration platform for U.S. Bank.,https://www.linkedin.com/in/darek-johnson-9766175b/,2013-06-01,2014-06-01,United States
Quantitative Finance Analyst,U.S. Bank,Greater Philadelphia Area,"Statistical analysis of big data using R
Performed cluster analysis on bond time-series in an effort to identify market trends
Operational risk model analysis, including stress testing worst-case scenarios using ORX database",https://www.linkedin.com/in/darek-johnson-9766175b/,2013-12-01,2014-01-01,United States
Scientific Researcher,University of Minnesota,"Minneapolis, MN",Analyzed methods of controlling farnesylated proteins focusing on photolysis of protecting groups.,https://www.linkedin.com/in/darek-johnson-9766175b/,2011-07-01,2012-08-01,United States
Program Manager,Africode Org,Greater New York City Area,"Africode [africode.org] is a non-profit organization that supports and mentors African students studying technology-related courses. These include (but are not limited to) Computer Science, Computer Engineering, Information Science, Electrical Engineering, etc. Through Africode, we pair students with mentors employed in their field, help them to find and prepare for internship interviews and other opportunities.",https://www.linkedin.com/in/ajuna/,2019-07-01,2020-07-01,United States
Software Engineer,Google,Greater New York City Area,,https://www.linkedin.com/in/ajuna/,2019-01-01,2020-07-01,United States
Site Reliability Engineer,Google,Greater New York City Area,,https://www.linkedin.com/in/ajuna/,2017-07-01,2019-01-01,United States
Services Coordinator,Grinnell College Student Government Association,"Grinnell, Iowa","• Chair Services and Student Programming Committees
• Direct students to community service opportunities and projects
• Assist student groups in finding funds for group events and service projects
• Organize campus events for students related to service such as FogFast and Blood Drives
• Approve and support student groups on campus
…
see more",https://www.linkedin.com/in/ajuna/,2016-12-01,2017-06-01,United States
Director and Administrative Outreach,Grinnell AppDev,"Grinnell, IA","• Lead a team of 15 developers and 7 designers in creating iOS and Android apps for 500+ users
• Organize and upkeep team finances by managing our $50,000 yearly budget and managing payroll",https://www.linkedin.com/in/ajuna/,2014-12-01,2017-04-01,United States
Software Engineering Intern,Google,Greater Los Angeles Area,"• Created tool that translates existing queries to MySql in order to move on-disk data processing to server
• Refactored related codebase and workflow to use new tool and add command line functionalities",https://www.linkedin.com/in/ajuna/,2016-05-01,2016-08-01,United States
Software Engineer,Google,"mountain view, CA",,https://www.linkedin.com/in/shiyu-long-10013a8b/,2017-09-01,2020-07-01,United States
software engineer,ipsy,San mateo,,https://www.linkedin.com/in/shiyu-long-10013a8b/,2016-03-01,2017-05-01,United States
Full Stack Developer Intern,Ingenico Mobile Solutions,"Woburn, MA, USA","As a member of a small agile full stack engineer team for a mobile payment system:
- Maintained customer web portal with customizable branding using Spring Framework
- Designed and implemented the sanity check features for the merchant and administrator portals and reduced data error by more than 25%
- Maintained external facing Restful web service API and internal API for android and iOS
Keywords: java, jsp, javascript, jquery, rest, spring framework, maven, git, sql, mac os, osgi, agile
…
see more",https://www.linkedin.com/in/shiyu-long-10013a8b/,2014-05-01,2014-12-01,United States
Research Assistant,Beihang University Artificial Intelligence Laboratory,"Beijing City, China","- Developed a web crawler software using Java to extract data from webpages into customized format for analysis
- Designed and Implemented a structure-based page similarity data mining algorithm to find a collection of similar webpages, generate a template and extract crucial data",https://www.linkedin.com/in/shiyu-long-10013a8b/,2010-06-01,2011-05-01,China
Software Engineer,Google,San Francisco Bay Area,,https://www.linkedin.com/in/ufuk-sengul-03135232/,2017-11-01,2020-07-01,United States
Software Engineer II,Microsoft,"Sunnyvale, CA","Part of team building EMS Intune product which is a mobile device management solution to manage and secure devices. Responsibilities involve building backend(microservices, Service Fabric, c#), frontend(Azure Portal SDK, Typescript, Knockout), Graph APIs, telemetry instrumentation , extracting insights from terabytes of data and managing deployment cycles of the features we ship.
- Worked on shipping Intune experience in O365 Admin portal to target small-to-medium businesses. Designed and implemented frontend and backend by using technologies like Angular, Asp.Net and Typescript. Primary languages were Javascript and C#. Also worked on instrumenting telemetry, extracting insights in map-reduce infra, customer interaction to fix issues.
- Worked on shipping easier Intune onboarding experience in Azure Admin portal to increase customer engagement . With that work 50% more tenants started creating Intune policy in their first month. Built frontend and backend as part of that work. Instrumented telemetry and extracted insights to better address issues and make insightful future decisions. Used Azure ServiceFabric backend, APIs exposed through Microsoft Graph . FrontEnd is Knockout and TypeScript.
…
see more",https://www.linkedin.com/in/ufuk-sengul-03135232/,2016-06-01,2017-11-01,United States
Software Engineer II,Microsoft,"Sunnyvale, CA","Worked in RemoteFX team, helped building virtual GPU to hardware accelerate VMs running on top of Hyper-V stack. Already shipped in Windows 10 as part of client Hyper-V and in Windows Server 2016 Preview releases. Also worked on Partitionable GPU project from day one. Contributed to design and implemented all the powershell cmdlets to make it work.
RemoteFX Team: (Remote Desktop Services for Hyper-V using C/C++ and C#)
- Developed backward/forward compatibility support for RemoteFX VMs
- Developed Generation 2 VM support in VDI that was one of the most asked feature in VDI
- Implemented GPU filtering and unblocked RemoteFX in Windows 10 client hybrid GPU scenarios
- Modernized RemoteFX Hyper-V UX (WMI, PowerShell, UI) with new features for ease of use in Windows 10 client scenarios
- Developed test tools that helped save time in installation and testing for RemoteFX VMs
- Contributed to shipping Windows 10 and Windows Server 2016 Preview
pGPU Team: (Partitionable GPU management on Hyper-V server, WMI, Powershell, C++, C#)
- Contributed to design of the feature
- Designed and implemented powershell cmdlets
…
see more",https://www.linkedin.com/in/ufuk-sengul-03135232/,2012-11-01,2016-05-01,United States
Software Engineer,Netas,"Istanbul, Turkey",Software Engineer in VOIP Communications. Specifically developed IPv6 features.,https://www.linkedin.com/in/ufuk-sengul-03135232/,2012-01-01,2012-10-01,Turkey
Software Engineer,Google,San Francisco Bay Area,,https://www.linkedin.com/in/baishen-xu-11a61a64/,2014-07-01,2020-07-01,United States
Research Assistant,University of Michigan,"Ann Arbor, MI",Work with Professor Georg Essl on the urMus mobile application. See http://urmus.eecs.umich.edu/ for more information.,https://www.linkedin.com/in/baishen-xu-11a61a64/,2013-09-01,2013-12-01,United States
Software Engineering Intern,BlackRock,Greater New York City Area,"Work on several different projects including a Java server, a C++ application optimization and also an iOS application.",https://www.linkedin.com/in/baishen-xu-11a61a64/,2013-05-01,2013-08-01,United States
Grader for EECS department,University of Michigan,Ann Arbor,"Grade projects, quizzes and exam papers for a Java programming course.",https://www.linkedin.com/in/baishen-xu-11a61a64/,2013-01-01,2013-05-01,United States
Teaching Assistant,Shanghai Jiao Tong University,"Shanghai City, China","Hold recitation classes, office hours and grade assignments and exams for a honor mathematics course.",https://www.linkedin.com/in/baishen-xu-11a61a64/,2012-05-01,2012-08-01,China
Intern,"Shanghai Posts & Telecommunications Technology Co., Ltd.","Shanghai City, China",Work in the 3G development department. Learn about programming and electric engineering basics.,https://www.linkedin.com/in/baishen-xu-11a61a64/,2009-07-01,2009-08-01,China
Software Engineer,Google Full-time,San Francisco Bay Area,"Storage solutions for Kubernetes, GKE and Anthos.
In the past: Worked on IO offloading projects.",https://www.linkedin.com/in/jayasekhar/,2018-07-01,2020-07-01,United States
Senior Principal Software Engineer,Dell EMC,San Francisco Bay Area,"Data Domain File System development and cloud technologies.
• Software Architect/Lead:
Responsible for overall architecture and delivery of next-gen DataDomain product in the public
clouds. Tech-lead across multiple cross-functional teams leading the design, development,
performance, user experience in several core modules. Successfully launched the product
including early alpha/beta programs with enterprise customers.
• Lead and consultant for the storage layer software: responsible for the roadmap and
development in the storage layout, log-structured filesystem and data-invulnerability.
• Led storage migration project that involved major re-architecture in the storage layout.
Significantly contributed to the performance improvements and data upgrade software.
• Designed and implemented several major features in the filesystem including SSD device failure tolerance, filesystems based on cloud object storage.
• Filed several patents in the filesystem/storage areas
…
see more",https://www.linkedin.com/in/jayasekhar/,2012-04-01,2018-07-01,United States
Senior Specialist Engineer/Tech Lead,Hewlett Packard Enterprise,San Francisco Bay Area,"• File system, Kernel, Memory Manager development on NonStop platform.
• File system development on Linux/HPUx platform.
• Submitted papers in technical conferences.
• Patent disclosures in Kernel, memory management area.",https://www.linkedin.com/in/jayasekhar/,2004-05-01,2012-03-01,United States
Software Engineer,YouTube,San Bruno,,https://www.linkedin.com/in/kimberly-zheng-75b03b82/,2018-10-01,2020-07-01,United States
Software Development Engineer,Amazon Web Services,Greater Seattle Area,,https://www.linkedin.com/in/kimberly-zheng-75b03b82/,2016-06-01,2018-10-01,United States
Software Engineer,Google Full-time,"Mountain View, California",Working towards improving the Shopping Order Quality.,https://www.linkedin.com/in/saumyapriya/,2019-07-01,2020-07-01,United States
Machine Learning Intern,PayPal,San Francisco Bay Area,"Developed a machine learning model using clustering and correlation for the Consolidation Of Alerts capable of finding the TCB root cause by constructing a DAG between services.
Decreased the average time to detect the source of failure from hours to minutes with an 87% accuracy in result.",https://www.linkedin.com/in/saumyapriya/,2018-05-01,2018-08-01,United States
Intern,Wells Fargo,"Bengaluru Area, India","• Automated the process of extracting the list of defaulters from the data bases of borrowers using Spring Batch framework in JAVA. The batch jobs run on a Windows Servers and are setup using AutoSYS.
• It extracts data for creation of approval and denial letters using Apache POI APIs on the System of records based on ORACLE. The software categorizes and suggests the modified loan plans to the defaulters using various internal Waterfall models.
…
see more",https://www.linkedin.com/in/saumyapriya/,2017-01-01,2017-06-01,India
Software Developer Internship,CareerMate,"Noida Area, India","• Developed a Resume Information extraction model using feature extraction to find the most relevant resumes for a job description. It uses GATE to focus on semantic rather than syntactic parsing and is capable of handling document types in .pdf, .txt, .doc and .docx by the use of Apache Tika in JAVA.
• Online Mock Test - Developed a database of questionnaire for Online Mock Test using SQL.
…
see more",https://www.linkedin.com/in/saumyapriya/,2016-06-01,2016-08-01,India
Software Developer Intern,CreativeTabs,Remotely,"• Designed, developed and tested an Android Application for the blog where the user can bookmark, share or download articles, change theme and contact admin. Added feature to suggest an article and follow a user.
• Added features in the existing official Android app of the company.
• A primary contributor to the official blog ( HackersStreet) having more than 20,000 followers.
…
see more",https://www.linkedin.com/in/saumyapriya/,2014-07-01,2015-05-01,United States
Software Engineer,Google,"Mountain View, California",,https://www.linkedin.com/in/bowenygoogle/,2017-07-01,2020-07-01,United States
Graduate Teaching Assistant,Carnegie Mellon University Silicon Valley,San Francisco Bay Area,"Teaching Assistant for course Software Architecture and Design (18-653), offered by the Department of Electrical and Computer Engineering;",https://www.linkedin.com/in/bowenygoogle/,2017-01-01,2017-05-01,United States
Graduate Teaching Assistant,Carnegie Mellon University Silicon Valley,San Francisco Bay Area,"Teaching Assistant for course Foundation of Software Engineering (18-652), offered by the Department of Electrical and Computer Engineering;",https://www.linkedin.com/in/bowenygoogle/,2016-08-01,2016-12-01,United States
Software Engineering Intern,Apple,San Francisco Bay Area,,https://www.linkedin.com/in/bowenygoogle/,2016-05-01,2016-08-01,United States
Graduate Student Researcher,UC Berkeley,San Francisco Bay Area,,https://www.linkedin.com/in/bowenygoogle/,2014-08-01,2015-12-01,United States
Software Engineer,Google,Mountain View,,https://www.linkedin.com/in/wei-lin-zhao-02802786/,2016-08-01,2020-07-01,United States
Software Engineer,Centrify Corporation,Santa Clara,,https://www.linkedin.com/in/wei-lin-zhao-02802786/,2016-01-01,2016-07-01,United States
Frontend Developer,TCL Corporation,San Francisco Bay Area,,https://www.linkedin.com/in/wei-lin-zhao-02802786/,2015-04-01,2015-12-01,United States
Graduate Student Assistant,San Jose State University,Mountain View,Assisted with various tasks around teaching assessment.,https://www.linkedin.com/in/wei-lin-zhao-02802786/,2014-09-01,2014-12-01,United States
Software Engineer,Google Full-time,"Mountain View, California, United States",,https://www.linkedin.com/in/guoyuzhi/,2020-06-01,2020-07-01,United States
Graduate Teaching Assistant,Georgia Institute of Technology,"Atlanta, Georgia, United States","CSE6010: Computational Problem Solving
CSE6140: CSE Algorithms
CSE6242: Data and Visual Analytics",https://www.linkedin.com/in/guoyuzhi/,2017-08-01,2020-05-01,Georgia
Graduate Research Assistant,Georgia Institute of Technology,"Atlanta, Georgia, United States","Research on data visual analytics, computational data analysis, and software development.",https://www.linkedin.com/in/guoyuzhi/,2017-01-01,2020-05-01,Georgia
Software Engineer Intern,Google Internship,"Mountain View, California, United States",Geo - Geo Enterprise,https://www.linkedin.com/in/guoyuzhi/,2019-05-01,2019-08-01,United States
Software Engineer Intern,Google Internship,"Sunnyvale, California, United States",Cloud - Cloud Infrastruction,https://www.linkedin.com/in/guoyuzhi/,2018-05-01,2018-08-01,United States
Structural Engineer,ENGQUEST Inc.,Greater Atlanta Area,,https://www.linkedin.com/in/guoyuzhi/,2014-05-01,2015-11-01,United States
Research Assistant,Tongji University Apprenticeship,"Shanghai, China",,https://www.linkedin.com/in/guoyuzhi/,2012-10-01,2013-01-01,China
Software Engineer,Google,"Mountain View, California",,https://www.linkedin.com/in/chenlq/,2020-03-01,2020-07-01,United States
Teaching Assistant,Carnegie Mellon University - School of Computer Science - Institute for Software Research,"Mountain View, California",17-683 Data Structures for Application Programmers,https://www.linkedin.com/in/chenlq/,2019-03-01,2019-12-01,United States
SDE Intern,Amazon,Greater Seattle Area,Classification & Policy Platform - AI team,https://www.linkedin.com/in/chenlq/,2019-05-01,2019-08-01,United States
Data Analyst Intern,Lenovo,"Beijing City, China",,https://www.linkedin.com/in/chenlq/,2017-09-01,2017-12-01,China
Software Engineer,Google,"Kirkland, WA",,https://www.linkedin.com/in/sevgi-yasar-5b60185/,2015-05-01,2020-07-01,United States
Software Developer,Microsoft,"Redmond, WA","XBox SmartGlass Platform, Windows Services
Development of multi-platform device-to-device communication APIs and OS services using AllJoyn
Development of XBox SmartGlass Platform SDK (for JavaScript, native C++, Java, Objective C) used to build custom companion apps for XBox to run on the following platforms: Win32, WinRT, WinPhone, Android, iOS
1. Development of sockets, http clients like platform objects for the following platforms: iOS, Android, WinPhone, WinRT, Win32.
Technical Environment: C++11 with STL, MS Visual Studio 2012, C#, XCode, Objective-C, Eclipse, Java, ADT, NDK, ATL, WRT libraries, posix libraries, clang and gcc compilers, scons build system, AllJoyn library, Win-Plat emulators, Android emulators, iOS platform emulators
Microsoft Bing-Ads, Bellevue, WA, USA
Microsoft Pegasus and Object Store Distributed DBs, Delivery Engine Infrastructure
1. Worked on the development of in-memory distributed DBs for Bing-Ads Delivery Engine Infrastructure team, in particular Pegasus and Object Store.
2. Worked with MS-SQL server for Bing-Ads middleware development (for storing company, customer, and ad related information).
3. Developed test frameworks, data factories, and stored procedures/co-processors for high-performance NoSQL elastic databases and SQL-based relational databases.
4. Worked on the design of data partitioning and replication schemes in the context of online services running on the cloud.
5. Worked on the internationalization of Bing-Ads framework.
6. Testing of serialization formats for cross-platform communication.
7. Testing of log generation across Bing-Ads components.
8. Deployment and debugging support for online services.
Technical Environment: MS Visual Studio 2010, C++, C#, Cosmos, MSTest, Windows 2000, MS Visual Studio, MS SharePoint, MS SQL server
…
see more",https://www.linkedin.com/in/sevgi-yasar-5b60185/,2011-03-01,2014-08-01,United States
Technical Team Leader,Corvitro Bilisim,"Redmond, WA","1. MC Next Generation Adaptation Project :
Redesign & Implementation of existing Decoding modules to a new delivery system.
a. Modelling a Decoding framework.
b. Redesign of Decoding system to a model driven architecture.
c. Ontology development for Decoding system.
- Technical Environment: C++, 64-bit programming, MS Visual Studio 2010, Windows Server 2008 R2, Protege
…
see more",https://www.linkedin.com/in/sevgi-yasar-5b60185/,2010-02-01,2011-02-01,United States
Senior Software Engineer,Siemens SIS SWP,"Redmond, WA","- Monitoring Center Project:
1. Decoder Project :
Analysis and decoding of network, multimedia-session protocols:
a. NNTP, SMTP, POP3 with respect to related most recent RFCs.
b. HTTP : analysis and decoding of well-known webmail providers, web navigations, file transfers, IMs over HTTP.
c. Pspi Project: Captured network data delivery Interface for Decoder.
d. Proposed solution preparation and initial effot estimation of various network protocols and sub-projects.
2. Tango Project :
a. Analysis on Customer needs, collaborate with engineering and management on prioritization of fixes/features.
b. On-site support for Decoder Project
c. Resolving complex technical issues, providing regular updates, delegate to peers.
3. HTTP-Viewer Project: Display of HTTP network traffic related massive intercept data.
4. MM Handling Project:
a. Analysis and decoding of multimedia video streams in IM applications.
b. Analysis and production of multimedia containers, AVI, WAV, ASF.
5. Using and implementing Design Patterns in architectural and detailed desing phases.
6. Process definition for CMMI certification. Experienced in software engineering and CMMI process.
Technical Environment: C++, MS Visual Studio 6.0, COM-like Plug-in Architecture, C#, MS .Net 2008, DirectX experience, TCP/IP, XML based local system configuration, Windows 2000, MS Visual Studio, Case Tools (ClearQuest, ClearCase, Rose Enterprise), Microsoft Visio
…
see more",https://www.linkedin.com/in/sevgi-yasar-5b60185/,2005-07-01,2010-01-01,United States
Software Engineer,Aydin Yazilim,"Redmond, WA","- SmartDeck Avionics Project:
1. Embedded OpenGL API Test & Reverse Engineering Design.
2. Requiement and coverage analysis of OpenGL API functions.
3. Experienced in CMMI-Level 3 process and Safety critical systems
- Catering Software: Design of API functions, testing with test case implementations with C++.
- Technical Environment: MS Visual Studio 6.0, doxygenC#, MFC
…
see more",https://www.linkedin.com/in/sevgi-yasar-5b60185/,2004-06-01,2005-06-01,United States
Software Engineer,Google Full-time,"Mountain View, California",Working towards improving the Shopping Order Quality.,https://www.linkedin.com/in/saumyapriya/,2019-07-01,2020-07-01,United States
Machine Learning Intern,PayPal,San Francisco Bay Area,"Developed a machine learning model using clustering and correlation for the Consolidation Of Alerts capable of finding the TCB root cause by constructing a DAG between services.
Decreased the average time to detect the source of failure from hours to minutes with an 87% accuracy in result.",https://www.linkedin.com/in/saumyapriya/,2018-05-01,2018-08-01,United States
Intern,Wells Fargo,"Bengaluru Area, India","• Automated the process of extracting the list of defaulters from the data bases of borrowers using Spring Batch framework in JAVA. The batch jobs run on a Windows Servers and are setup using AutoSYS.
• It extracts data for creation of approval and denial letters using Apache POI APIs on the System of records based on ORACLE. The software categorizes and suggests the modified loan plans to the defaulters using various internal Waterfall models.
…
see more",https://www.linkedin.com/in/saumyapriya/,2017-01-01,2017-06-01,India
Software Developer Internship,CareerMate,"Noida Area, India","• Developed a Resume Information extraction model using feature extraction to find the most relevant resumes for a job description. It uses GATE to focus on semantic rather than syntactic parsing and is capable of handling document types in .pdf, .txt, .doc and .docx by the use of Apache Tika in JAVA.
• Online Mock Test - Developed a database of questionnaire for Online Mock Test using SQL.
…
see more",https://www.linkedin.com/in/saumyapriya/,2016-06-01,2016-08-01,India
Software Developer Intern,CreativeTabs,Remotely,"• Designed, developed and tested an Android Application for the blog where the user can bookmark, share or download articles, change theme and contact admin. Added feature to suggest an article and follow a user.
• Added features in the existing official Android app of the company.
• A primary contributor to the official blog ( HackersStreet) having more than 20,000 followers.
…
see more",https://www.linkedin.com/in/saumyapriya/,2014-07-01,2015-05-01,United States
Software Engineer,Google,"Mountain View, California",,https://www.linkedin.com/in/cliff-young-1b1a2/,2013-07-01,2020-07-01,United States
"Research Scientist, and Member of the Technical Staff",D. E. Shaw Research,"Mountain View, California","Designed, architected, and built major hardware and software components of Anton, a specialpurpose, massively parallel supercomputer for molecular dynamics (MD). Anton has remained 30 times faster than all other platforms at MD during its first four years of operation. Anton’s speed comes from codesign that spans hardware, software, and algorithms, focusing on minimizing the latency of a single time step. I played a major role in creating Anton’s overall architecture and in designing many of Anton’s systems, including:
● Codesigning Anton’s “Flexible Subsystem”, which handles all generalpurpose tasks.
● Suggesting the fusion of two existing hardware accelerators to produce the “highthroughput interaction subsystem” that is Anton’s main specialpurpose hardware unit.
● Proposing, evaluating, and programming the main computational cores of the Flexible Subsystem. I designed the ISA for these cores, using a simulator and timing model that I built to explore architectural, microarchitectural, and ISA tradeoffs. I also built the optimizing assembler (which performs instruction scheduling and register allocation) with which these cores are programmed.
● Replacing the proposed FFT hardware subsystem with software, saving die area while improving overall system performance.
● Modeling, simulating, and directing optimization of Anton’s performance, which exceeded our design-time estimates.
● Managing the software simulation team and later the embedded code development team.
With Josh Fisher and Paolo Faraboschi of HP Labs, wrote “Embedded Computing: A VLIW Approach to Architecture, Compilers, and Tools”, published by MorganKaufmann in 2004.
…
see more",https://www.linkedin.com/in/cliff-young-1b1a2/,2003-07-01,2013-07-01,United States
Member of Technical Staff,Bell Laboratories,"Mountain View, California",,https://www.linkedin.com/in/cliff-young-1b1a2/,1997-12-01,2003-05-01,United States
Management Associate,Bank of America (formerly Security Pacific Automation Company),"Mountain View, California",,https://www.linkedin.com/in/cliff-young-1b1a2/,1989-01-01,1992-01-01,United States
Software Engineer,Google Full-time,"Mountain View, California, United States",,https://www.linkedin.com/in/lnoria/,2020-03-01,2020-07-01,United States
Data Engineer,Tesla Full-time,"Palo Alto, California",,https://www.linkedin.com/in/lnoria/,2019-10-01,2020-03-01,United States
Software Development Specialist,Centro Nacional de Metrología Full-time,"Queretaro, Querétaro, Mexico",,https://www.linkedin.com/in/lnoria/,2019-07-01,2019-09-01,Mexico
Software Engineer Intern,Microsoft Full-time,"London, United Kingdom",,https://www.linkedin.com/in/lnoria/,2019-03-01,2019-07-01,United Kingdom
Software Developer,Centro Nacional de Metrologia Full-time,"Querétaro Area, Mexico",,https://www.linkedin.com/in/lnoria/,2018-09-01,2019-03-01,Mexico
Software Engineer Intern,Google Full-time,"Mountain View, California",,https://www.linkedin.com/in/lnoria/,2018-03-01,2018-07-01,United States
Mechanical Design Engineer,Dassault Systèmes Apprenticeship,"Queretaro, Querétaro, Mexico",SolidWorks Mechanical Designer,https://www.linkedin.com/in/lnoria/,2017-06-01,2017-08-01,Mexico
Food Server,McDonald's Part-time,"Queretaro, Querétaro, Mexico",My first job,https://www.linkedin.com/in/lnoria/,2012-06-01,2012-08-01,Mexico
Software Engineer,Google,Greater Boston Area,In the Google Brain team working at the intersection of machine learning and visualization.,https://www.linkedin.com/in/dsmilkov/,2014-09-01,2020-07-01,United States
Graduate Student,MIT,Greater Boston Area,"Data analysis, statistics, visualization",https://www.linkedin.com/in/dsmilkov/,2012-09-01,2014-06-01,United States
Researcher,Macedonian Academy for Sciences and Arts,Greater Boston Area,"Working with prof. Ljupco Kocarev in the field of Network Science.
FP-7, SUMO - Super modeling by combining imperfect models (combing climate models)
FP-6, Diagnosing vulnerability, emergent phenomena, and volatility in man-made networks",https://www.linkedin.com/in/dsmilkov/,2009-09-01,2012-09-01,United States
Research Co-op,IBM,IBM Silicon Valley Laboratory,"IBM Research (T.J. Watson Research Center, NY). Worked on routing algorithms for P2P multi-party videoconferencing.",https://www.linkedin.com/in/dsmilkov/,2010-01-01,2010-09-01,United States
Intern,Netcetera,Greater Boston Area,Software engineering,https://www.linkedin.com/in/dsmilkov/,2008-07-01,2008-09-01,United States
Software Engineer,Google,San Francisco Bay Area,,https://www.linkedin.com/in/ho-jenny-sn/,2019-08-01,2020-07-01,United States
Engineering Resident,Google,San Francisco Bay Area,,https://www.linkedin.com/in/ho-jenny-sn/,2018-09-01,2019-08-01,United States
Software Development Engineer Intern,Amazon,Greater Seattle Area,"- Design and implement a data analysis portal to evaluate customer interactions with new features on Amazon Silk using the Spring framework and Amazon Redshift data warehouse technologies
- Restructure table schemas for more efficient SQL queries",https://www.linkedin.com/in/ho-jenny-sn/,2017-09-01,2017-12-01,United States
Accelerator Intern,ZX Ventures,Greater New York City Area,"- Identified and validated market problems, solution and business model for staff management and revenue in global bars
- Conducted field analyses and used feedback to implement a platform for bars to make data driven business decisions
- Developed and integrated a mobile web application with Aloha and Lavu POS systems using MEAN stack technologies
…
see more",https://www.linkedin.com/in/ho-jenny-sn/,2017-06-01,2017-08-01,United States
President | Technology and Outreach Chair,Haiti Clean Stove Project,University of Illinois at Urbana - Champaign,"- Conducted a comparative analysis by prototyping, testing and documenting 7 different stove models to reduce gas emissions for an efficient and clean burning stove to distribute in Haiti
- Collaborated with CUBE Consulting to develop an international business plan for sustainable and self-managed jobs
- Partnered with UNOPS and el Fuego del Sol to form a recycling system to incorporate unwanted paper as fuel stove
- Facilitated on-site training and testing to ensure the safety of associated workers in Haiti
…
see more",https://www.linkedin.com/in/ho-jenny-sn/,2015-08-01,2017-08-01,United States
Undergraduate Research Assistant,University of Illinois at Urbana-Champaign,"Champaign, Illinois, United States","- Improved courses by studying and applying the top students’ ability to master key concepts to the course structure
- Performed regression analysis and extracted key performance indicators of student study behavior for 3 classes using Python
- Created graphs and visualized trends to better understand students’ homework submission data
…
see more",https://www.linkedin.com/in/ho-jenny-sn/,2016-05-01,2017-01-01,United States
Ecommerce/Disruptive Growth Opportunity Intern,ZX Ventures,New York City,"- Analyzed and calculated the customer lifetime value for mobile phone consumers using pandas
- Produced and managed the creation of Amazon A+ Enhanced Marketing Content pages for the top 7 ecommerce brands
- Organized a new routine approach to create content pages future ecommerce brands
…
see more",https://www.linkedin.com/in/ho-jenny-sn/,2016-06-01,2016-08-01,United States
Undergraduate Student Researcher,University of Illinois at Urbana-Champaign,University of Illinois at Urbana Champaign,"- Designed an optimization model combining the behaviors of renewable energies to find a reliable and economically sustaining substitute for fossil fuels using MATLAB
- Studied the long term performance of wind farms, solar power plants and thermal energy storage to maximize efficiency",https://www.linkedin.com/in/ho-jenny-sn/,2015-08-01,2016-03-01,United States
Bud Analytics Lab Intern,Anheuser-Busch,"Urbana-Champaign, Illinois Area","- Filtered and clustered 5 years of nationwide sales data of all Anheuser-Busch products using SQL
- Developed a time series model to forecast the optimal product lineup in stores based on products trends using R",https://www.linkedin.com/in/ho-jenny-sn/,2015-06-01,2015-08-01,United States
Software Engineer,Google,"Bengaluru Area, India",,https://www.linkedin.com/in/kidiyoor/,2016-11-01,2020-07-01,India
Software Engineer,Apigee (APIC),"Bengaluru Area, India",,https://www.linkedin.com/in/kidiyoor/,2016-08-01,2016-11-01,India
Intern,Apigee (APIC),bangalore,"- Automation in deployment using kubernetes
- Develop a cloud based platform which provides loadtesting as service, using kubernetes for infra",https://www.linkedin.com/in/kidiyoor/,2016-01-01,2016-06-01,United States
Internship,DataXu,"Bengaluru Area, India","Worked with DevOps team to build a tool which helps in creating distributed (Skytap or AWS cloud and locally) test environment for the company Application, from scratch, this helps the developer to reduce the turnaround time during development phase and also reduce the cost ($) paid for cloud service. Anisble and Vagrant were the key tools.",https://www.linkedin.com/in/kidiyoor/,2015-06-01,2015-07-01,India
Nokia big data,Cloud computing and big data,Bangalore,Research center for Cloud and Big Data.,https://www.linkedin.com/in/kidiyoor/,2014-08-01,2015-05-01,United States
Software Engineer,Google,San Francisco Bay Area,,https://www.linkedin.com/in/baishen-xu-11a61a64/,2014-07-01,2020-07-01,United States
Research Assistant,University of Michigan,"Ann Arbor, MI",Work with Professor Georg Essl on the urMus mobile application. See http://urmus.eecs.umich.edu/ for more information.,https://www.linkedin.com/in/baishen-xu-11a61a64/,2013-09-01,2013-12-01,United States
Software Engineering Intern,BlackRock,Greater New York City Area,"Work on several different projects including a Java server, a C++ application optimization and also an iOS application.",https://www.linkedin.com/in/baishen-xu-11a61a64/,2013-05-01,2013-08-01,United States
Grader for EECS department,University of Michigan,Ann Arbor,"Grade projects, quizzes and exam papers for a Java programming course.",https://www.linkedin.com/in/baishen-xu-11a61a64/,2013-01-01,2013-05-01,United States
Teaching Assistant,Shanghai Jiao Tong University,"Shanghai City, China","Hold recitation classes, office hours and grade assignments and exams for a honor mathematics course.",https://www.linkedin.com/in/baishen-xu-11a61a64/,2012-05-01,2012-08-01,China
Intern,"Shanghai Posts & Telecommunications Technology Co., Ltd.","Shanghai City, China",Work in the 3G development department. Learn about programming and electric engineering basics.,https://www.linkedin.com/in/baishen-xu-11a61a64/,2009-07-01,2009-08-01,China
Software Engineer,Google,Mountain View,,https://www.linkedin.com/in/wenjie-wu-3766038a/,2018-09-01,2020-07-01,United States
Firmware Development Engineer,PMC-Sierra is now Microsemi,Sunnyvale,,https://www.linkedin.com/in/wenjie-wu-3766038a/,2015-06-01,2017-11-01,United States
Intern,Broadcom Corporation,"Irvine, CA",,https://www.linkedin.com/in/wenjie-wu-3766038a/,2014-03-01,2014-09-01,United States
Software Engineer,Google,Remote,,https://www.linkedin.com/in/calingribble/,2020-05-01,2020-07-01,United States
Software Engineer,Airbnb,"San Francisco, California","Financial Fraud
- Heuristics and machine learning models for defense against chargebacks
- Migration of Ruby on Rails monolith to Java & Scala microservices
- Java, Scala, Ruby on Rails, Python",https://www.linkedin.com/in/calingribble/,2017-09-01,2019-09-01,United States
Software Engineer,MongoDB,"New York, New York","Monitoring
- Data visualizations for Cloud Manager and Atlas
- Javascript with Backbone & D3, Java",https://www.linkedin.com/in/calingribble/,2015-10-01,2017-08-01,United States
Software Engineer,BLiNQ Media,"Atlanta, Georgia","Blinq Ad Manager 2.0
- Greenfield development of an advertising campaign management tool
- Javascript with Angular, Ruby on Rails",https://www.linkedin.com/in/calingribble/,2014-05-01,2015-07-01,Georgia
Software Engineer,Google,San Francisco Bay Area,"Google Cloud Platform, Kubernetes",https://www.linkedin.com/in/yanhui-li/,2017-03-01,2020-07-01,United States
Software Development Engineer Intern,Amazon Web Services,Greater Seattle Area,"AWS Infrastructure, Systems and Network Engineering team",https://www.linkedin.com/in/yanhui-li/,2016-05-01,2016-08-01,United States
"Software Engineer Intern, Business Intelligence Department",NetEase Games,"Guangzhou, Guangdong, China","· Took in charge of the early data processing, to filter and correct massive amounts of real-time log generated in game systems
· Using Java and MapReduce to filter out the nonstandard logs on the Hadoop distributed file system
· Designed a scheme using XML to check the key-value pairs according to the log format rules
…
see more",https://www.linkedin.com/in/yanhui-li/,2014-10-01,2015-01-01,China
"Business Intelligence Engineer Intern, E-Commerce Platform",Global Market Group,"Guangzhou, Guangdong, China","· Queried data using Oracle, according to the business requirements of the international operating department
· Developed a web page using Oracle Apex to import the resulting data sets of SQL queries",https://www.linkedin.com/in/yanhui-li/,2014-07-01,2014-09-01,China
Software Engineer,Google,New York City Metropolitan Area,,https://www.linkedin.com/in/yueqi-wang/,2020-02-01,2020-07-01,United States
"Student Researcher, Center for Theoretical Neuroscience",Columbia University in the City of New York,New York City Metropolitan Area,Spike Sorting using the Neural Clustering Process -- a deep learning framework for probabilistic clustering of neural spikes. (https://openreview.net/forum?id=Byg1E7KIIr),https://www.linkedin.com/in/yueqi-wang/,2019-01-01,2019-12-01,United States
"Course Assistant, Department of Computer Science",Columbia University in the City of New York,New York City Metropolitan Area,"COMS 4995 Deep Learning (Spring 2019)
COMS 4731 Computer Vision (Fall 2019)",https://www.linkedin.com/in/yueqi-wang/,2019-01-01,2019-12-01,United States
Software Engineer Intern,Google,New York City Metropolitan Area,Natural language assistant for intelligent query of corporate entity data.,https://www.linkedin.com/in/yueqi-wang/,2019-05-01,2019-08-01,United States
"PhD Research Assistant, Neuroscience PhD Program",University of Utah,Greater Salt Lake City Area,Neuroscience research and computational analysis of human brain development.,https://www.linkedin.com/in/yueqi-wang/,2012-05-01,2018-08-01,United States
"Student Researcher, Institute of Biophysics",Chinese Academy of Sciences,"Beijing City, China",,https://www.linkedin.com/in/yueqi-wang/,2010-01-01,2011-07-01,China
"Student Researcher, Department of Biology",University of Utah,Greater Salt Lake City Area,,https://www.linkedin.com/in/yueqi-wang/,2010-07-01,2010-09-01,United States
Tech Lead / Messaging Pillar Lead,Google,Greater Seattle Area,Duo - Video message,https://www.linkedin.com/in/huibai/,2018-08-01,2020-07-01,United States
Software Engineer,Google,Greater Seattle Area,,https://www.linkedin.com/in/huibai/,2016-06-01,2018-06-01,United States
Software Development Engineer II,Amazon,Greater Seattle Area,Prime Platform,https://www.linkedin.com/in/huibai/,2016-01-01,2016-07-01,United States
Software Development Engineer,Amazon,Greater Seattle Area,"Working on the Prime Auto-Targeting team. Focusing on machine learning engineering including big data development, Elastic Map Reduce, Elastic Machine Learning and related AWS techniques.",https://www.linkedin.com/in/huibai/,2014-03-01,2016-01-01,United States
Software Development Engineer Intern,Amazon,Greater Seattle Area,"I work at Prime-Platform team, I accomplished two individual project. One is to apply parallelism technique for data retrieval, and data visualization, this project is infrastructure related; The second is machine learning related, I minHash algorithm to find similarities between texts, and also apply different clustering algorithm for text clustering. After these two projects, I'm now doing research relating to auto-targeting, aiming to provide auto personalization for prime users.
…
see more",https://www.linkedin.com/in/huibai/,2013-05-01,2013-08-01,United States
Research Assistant,Center for Computational Learning System of Columbia,United States,"-- Conducted research relating to machine learning using matlab.
Dublin, Irish
(9. 2009 – 2012.7)
-- Applied the developed machine learning algorithm to help New York Public Library classify history articles based on the information extracted online.
-- Designed and developed a website, on which the annotators could be able to classify articles manually, in order to test the accuracy of our algorithm, mainly using JSP, based on Vaadin.
…
see more",https://www.linkedin.com/in/huibai/,2012-09-01,2012-12-01,United States
Data Analyst Intern,Dachen Investment Company,"Shanghai City, China","--- Extract data from existing file, store data into database with specific form, and maintained database.",https://www.linkedin.com/in/huibai/,2012-03-01,2012-06-01,China
Software Developer Intern,eBay,China,"-- Designed and implemented a mobile application using Java Script on Accelerator for users to upload
video for their items on both iOS and Android OS, with the project idea highly praised.
-- Developed automatic tools to control and maintain remote servers.",https://www.linkedin.com/in/huibai/,2011-05-01,2012-02-01,China
SDET Intern,Dazhong Dianping,"Shanghai City, China","-- Performed teste on products, developed automatic testing cases using Sodium.",https://www.linkedin.com/in/huibai/,2011-03-01,2011-05-01,China
Software Engineer,Google Full-time,"Mountain View, California",,https://www.linkedin.com/in/sahitya-potluri/,2020-02-01,2020-07-01,United States
Machine Learning Intern,Quora,Mountain View,,https://www.linkedin.com/in/sahitya-potluri/,2019-05-01,2019-08-01,United States
Lead Engineer,Samsung Electronics,"Bengaluru Area, India",Developed a context-aware personal assistant that understands and extracts events from text conversations.,https://www.linkedin.com/in/sahitya-potluri/,2015-07-01,2018-08-01,India
Software Development Intern,Amazon,"Bengaluru Area, India",Improved the response time of a request from an Amazon Website by ~50% using multi-threading techniques. Implemented features for order cancellation and customer detail search.,https://www.linkedin.com/in/sahitya-potluri/,2013-05-01,2013-07-01,India
Software Development Intern,Azuyo Software Research and Development Private Limited,"Bengaluru Area, India","Developed an iOS game application, Go4Gold (approved in Apple App Store), which simulates various Olympic games using Cocos2D engine and gesture recognition.",https://www.linkedin.com/in/sahitya-potluri/,2012-05-01,2012-07-01,India
Software Engineer,Google,"Mountain View, CA","* Technical Lead Manager (TLM) - Google Analytics Intelligence (October 2018 - Present)
- Leading four teams of engineers and data scientist on various machine learning powered efforts in Google Analytics.
- The projects include TFX based machine learning, natural language powered search experience, and statistics based data mining.
* Software Engineer (Lead), Google Analytics Backend (December 2016 - October 2018)
- Decided to switch tracks and see if I can contribute to backend side.
- As senior member of the team responsible for designing and driving the backend forward to help Google Analytics.
- Collaborate across teams and functions to improve product, frameworks, and velocity
* Tech Lead Manager, Google Analytics Frontend (September 2013 - December 2016)
- I managed a frontend team of 25 engineers at Google.
- Helped the team launch many features and several major versions of the product and frontend framework
- My responsibilities include technical and product vision, recruiting, collaboration and communication with cross functional teams including product, UX, testing, SRE as well as BE and midtier.
* Tech lead/Individual SWE (September 2007 - September 2013)
- Prior to becoming TLM I was TL and Software Engineer on one of frontend teams as Google.
- My primary coding skills include Java and Javascript
- My focus for several years was on improving testing and release cycles for our group.
- Under my leadership testing and releases both improved significantly.
- I also delivered several major features on the product
…
see more",https://www.linkedin.com/in/snehal-thakkar-b354557b/,2007-09-01,2020-07-01,United States
Oracle Developer/Intern,Scitex Digital Printing,"Mountain View, CA","- Develop reports and forms in Oracle ERP system
- Areas of focus included Accounts Receivables, Inventory, Forecasting, Bill of materials, and purchasing.
- Became Oracel certified developer",https://www.linkedin.com/in/snehal-thakkar-b354557b/,1997-09-01,1999-12-01,United States
Software Engineer,Google,"Mountain View, California",Google Photos,https://www.linkedin.com/in/amberzh/,2019-02-01,2020-07-01,United States
Software Engineer Intern,Face Plus Plus,"Beijing City, China",Worked on the City Brain team to build a service that employed the face recognition algorithm to match each face captured by the cameras to person profiles for criminal investigation.,https://www.linkedin.com/in/amberzh/,2018-05-01,2018-07-01,China
Software Engineer,Google Full-time,San Francisco Bay Area,,https://www.linkedin.com/in/fangfei-zhou-11b1b928/,2020-04-01,2020-07-01,United States
Software Engineer,Facebook Full-time,"Cambridge, MA","Continuous Deployment
Distributed system
Content delivery network
Women@FacebookBoston lead",https://www.linkedin.com/in/fangfei-zhou-11b1b928/,2016-01-01,2020-04-01,United States
Member of Technical Staff,Riverbed Technology,"Cambridge, MA","SteelCentral NetProfiler Core team
Led researching and reconstructing the NetProfiler system to accommodate IPv6 netflows
Independently completed customer features that enable NetProfiler to analyze the traffic
patterns throughout Autonomous Systems; monitor and visualize system service status
Demonstrated leadership capabilities through mentoring new hires as well as spearheading key features
…
see more",https://www.linkedin.com/in/fangfei-zhou-11b1b928/,2013-07-01,2015-12-01,United States
Senior Software Engineer,EMC,"Hopkinton, Ma","Server Flash Product, R&D
Took the lead in developing Network Management Daemon which manages Infiniband cards and monitors Ethernet, Infiniband and Roce traffic (C++, Perl, iSCSI, iSER, Infiniband, Roce)
Improved the work efficiency of QE team by developing an automatic testing framework for XtremSF cards on Windows, Linux and ESXi (Java)
…
see more",https://www.linkedin.com/in/fangfei-zhou-11b1b928/,2012-07-01,2013-07-01,United States
Platform Engineer Intern,Akamai Technologies,"Cambridge, MA","Mapping group, Cambridge
-Verified the algorithms working for name server mapping is adaptable for end user mapping, by conducting experimental research and analyzing the statistics (Perl, Shell scripts and SQL)
-Discovered the accuracy of router geographic location records by analyzing traceroute data from Akamai network regions (C++)
-discovered the correlation between CIDR blocks and name server load (C++, Python)