• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 19:36
CEST 01:36
KST 08:36
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
TL.net Map Contest #21: Voting3[ASL20] Ro4 Preview: Descent7Team TLMC #5: Winners Announced!3[ASL20] Ro8 Preview Pt2: Holding On9Maestros of the Game: Live Finals Preview (RO4)5
Community News
Weekly Cups (Oct 6-12): Four star herO65.0.15 Patch Balance Hotfix (2025-10-8)71Weekly Cups (Sept 29-Oct 5): MaxPax triples up3PartinG joins SteamerZone, returns to SC2 competition325.0.15 Balance Patch Notes (Live version)119
StarCraft 2
General
Ladder Impersonation (only maybe) 5.0.15 Patch Balance Hotfix (2025-10-8) The New Patch Killed Mech! TL.net Map Contest #21: Voting Weekly Cups (Oct 6-12): Four star herO
Tourneys
Master Swan Open (Global Bronze-Master 2) Tenacious Turtle Tussle WardiTV Mondays SC2's Safe House 2 - October 18 & 19 Sparkling Tuna Cup - Weekly Open Tournament
Strategy
Custom Maps
External Content
Mutation # 495 Rest In Peace Mutation # 494 Unstable Environment Mutation # 493 Quick Killers Mutation # 492 Get Out More
Brood War
General
[ASL20] Ro4 Preview: Descent BSL Season 21 BW caster Sayle ASL20 General Discussion BGH Auto Balance -> http://bghmmr.eu/
Tourneys
[ASL20] Semifinal B [ASL20] Semifinal A [Megathread] Daily Proleagues [ASL20] Ro8 Day 4
Strategy
Current Meta BW - ajfirecracker Strategy & Training Siegecraft - a new perspective TvZ Theorycraft - Improving on State of the Art
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread ZeroSpace Megathread Dawn of War IV Path of Exile
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
SPIRED by.ASL Mafia {211640} TL Mafia Community Thread
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread Men's Fashion Thread Sex and weight loss
Fan Clubs
The herO Fan Club! The Happy Fan Club!
Media & Entertainment
Anime Discussion Thread [Manga] One Piece Movie Discussion!
Sports
2024 - 2026 Football Thread Formula 1 Discussion MLB/Baseball 2023 NBA General Discussion TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Recent Gifted Posts
Blogs
Inbreeding: Why Do We Do It…
Peanutsc
From Tilt to Ragequit:The Ps…
TrAiDoS
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2243 users

At Microsoft - Page 8

Blogs > Triscuit
Post a Reply
Prev 1 6 7 8 9 10 Next All
Tenks
Profile Joined April 2010
United States3104 Posts
November 11 2011 04:54 GMT
#141
Grats on the job offer but being a tester for ~3 years was horribly boring and unexciting. I couldn't wait to get out of that department (not Microsoft.)
Wat
RedDeckWins
Profile Joined December 2010
United States123 Posts
November 11 2011 05:49 GMT
#142
The quality of the testing jobs at Microsoft is quite varied. If you are in the right group at Microsoft, it is exciting and fulfilling. However for many groups being a tester is pretty meh. I happened to be in a meh group for a tester and left after 4 years. I enjoy being a developer in my new job much more.
kirdie
Profile Blog Joined December 2010
Germany221 Posts
Last Edited: 2011-11-11 07:57:54
November 11 2011 07:57 GMT
#143
I didn't understand the O(nlogn) question about the binary tree. Aren't binary trees always sorted?
Then you just perform a LMR (left middle right) search on the tree and you get the numbers sorted ascending, as long as the tree is moderately balanced (which should be the average case).
If you don't have the tree to begin with but just the numbers you can just use the first one as root node and then add left if smaller than root, right if bigger than root and recursively for the subtrees or am I missing something?
Is the problem that this has O(nlogn) average case but O(n^2) worst case? But then I'm not sure if such a solution exists easily for binary trees...
Snipinpanda
Profile Blog Joined October 2007
United States1227 Posts
Last Edited: 2011-11-11 08:14:53
November 11 2011 08:13 GMT
#144
On November 11 2011 16:57 kirdie wrote:
I didn't understand the O(nlogn) question about the binary tree. Aren't binary trees always sorted?
Then you just perform a LMR (left middle right) search on the tree and you get the numbers sorted ascending, as long as the tree is moderately balanced (which should be the average case).
If you don't have the tree to begin with but just the numbers you can just use the first one as root node and then add left if smaller than root, right if bigger than root and recursively for the subtrees or am I missing something?
Is the problem that this has O(nlogn) average case but O(n^2) worst case? But then I'm not sure if such a solution exists easily for binary trees...


The definition of a binary tree is that each node has at most 2 childs.and that it is a tree(No cycles). Aside from that there are no other constraints.

You're thinking of a binary search tree. If it was a BST then it's already sorted and it has O(n) case always. With any sort of traversal you're going to be visiting a node at most 3 times, which is a constant factor of the n nodes that are in the tree.
emsy
Profile Joined May 2011
Australia34 Posts
November 11 2011 09:45 GMT
#145
Great to hear you got an offer, was totally rooting for you! GMH that when I graduate I'll be able to find a good job
klo8
Profile Joined August 2010
Austria1960 Posts
Last Edited: 2011-11-11 11:52:10
November 11 2011 11:51 GMT
#146
On November 11 2011 16:57 kirdie wrote:
I didn't understand the O(nlogn) question about the binary tree. Aren't binary trees always sorted?
Then you just perform a LMR (left middle right) search on the tree and you get the numbers sorted ascending, as long as the tree is moderately balanced (which should be the average case).
If you don't have the tree to begin with but just the numbers you can just use the first one as root node and then add left if smaller than root, right if bigger than root and recursively for the subtrees or am I missing something?
Is the problem that this has O(nlogn) average case but O(n^2) worst case? But then I'm not sure if such a solution exists easily for binary trees...

No, a binary tree by itself is just a binary tree. What you are thinking about is a binary search tree, which has the neat property of "go left, numbers get smaller, go right, numbers get bigger".

Edit: crap, beaten. :D
This post is clearly not a hurr, as you can see from the graph, the durr never intersects with the derp.
exog
Profile Joined April 2010
Norway279 Posts
November 11 2011 12:25 GMT
#147
So whats ur salary?
Kelsin
Profile Blog Joined August 2010
United States253 Posts
November 11 2011 13:33 GMT
#148
Congrats man, that's very cool.
Snuggles
Profile Blog Joined May 2010
United States1865 Posts
November 11 2011 14:39 GMT
#149
So many interviews, man it really is an intimidating thing to try to work for these big name companies. I also want to work for google as well, I'm looking forward to a blog about google =)
Haegr9599
Profile Joined April 2011
United States210 Posts
November 11 2011 15:32 GMT
#150
5 freaking stars man, that was a great read and very informative
I choose my friends for their good looks, my acquaintances for their good characters, and my enemies for their intellects. A man cannot be too careful in the choice of his enemies
Cambium
Profile Blog Joined June 2004
United States16368 Posts
Last Edited: 2011-11-11 15:41:26
November 11 2011 15:33 GMT
#151
GL with Google. I think MSFT and Google are very different companies and you should really pick the company and team (very important) that you are most comfortable with.

On November 11 2011 14:49 RedDeckWins wrote:
The quality of the testing jobs at Microsoft is quite varied. If you are in the right group at Microsoft, it is exciting and fulfilling. However for many groups being a tester is pretty meh. I happened to be in a meh group for a tester and left after 4 years. I enjoy being a developer in my new job much more.


The team thing is definitely true. My GF worked as a PM intern and she really disliked it, and never went back. I have another friend who worked as a PM intern on Bing, and he loved it and is now working there full time.

During the interview, they will *always* tell you how SDE, SDET and PM are pretty much equivalent, I don't think this is true at all. Speaking with my friends who actually work there, I do think SDET is the lower tier of the three, with PM and SDE being similar. I think you get paid 5k less as SDET as well.

I personally wouldn't take an SDET job, since I prefer to develop something that has an impact, rather than something that ensures some other thing developed by some other people has an impact.

(I originally applied for PM, after my first round of interview, they told me I would be more suitable for SDE; but then I interviewed for SDET on campus for some reason; and I had an extra round of phone interview for SDE)
When you want something, all the universe conspires in helping you to achieve it.
OnYourWifi
Profile Joined January 2011
United States13 Posts
November 11 2011 17:04 GMT
#152
Saw your dinner invite on the Starcraft 2 list, but couldn't make it out.

Grats on the offer though!
Insane
Profile Blog Joined November 2003
United States4991 Posts
November 11 2011 18:07 GMT
#153
On November 12 2011 00:33 Cambium wrote:
GL with Google. I think MSFT and Google are very different companies and you should really pick the company and team (very important) that you are most comfortable with.

Show nested quote +
On November 11 2011 14:49 RedDeckWins wrote:
The quality of the testing jobs at Microsoft is quite varied. If you are in the right group at Microsoft, it is exciting and fulfilling. However for many groups being a tester is pretty meh. I happened to be in a meh group for a tester and left after 4 years. I enjoy being a developer in my new job much more.


The team thing is definitely true. My GF worked as a PM intern and she really disliked it, and never went back. I have another friend who worked as a PM intern on Bing, and he loved it and is now working there full time.

During the interview, they will *always* tell you how SDE, SDET and PM are pretty much equivalent, I don't think this is true at all. Speaking with my friends who actually work there, I do think SDET is the lower tier of the three, with PM and SDE being similar. I think you get paid 5k less as SDET as well.

I personally wouldn't take an SDET job, since I prefer to develop something that has an impact, rather than something that ensures some other thing developed by some other people has an impact.

(I originally applied for PM, after my first round of interview, they told me I would be more suitable for SDE; but then I interviewed for SDET on campus for some reason; and I had an extra round of phone interview for SDE)

They're not going to tell you that PM and the other two are equivalent because they're really not . I do personally think being a PM intern is a bit harder than being an intern of the other two roles, because as a PM you're kind of expected to drive a feature, as opposed to just doing more what you're told as the other roles (as an intern I mean). It's a bit harder to come in as an intern and be the proactive take charge that you need to be.

That said, I'm not a PM, nor was I ever a PM intern so that's just my take as an SDE.

I don't think the starting salary for SDET is lower, and you are indeed supposed to be doing an SDE job, except you are developing test code / infrastructure. It really does vary from team to team .


Your interviewing experience sounds kind of messed up with all the different roles though Cambium lol.
RedDeckWins
Profile Joined December 2010
United States123 Posts
November 11 2011 18:36 GMT
#154
On November 12 2011 00:33 Cambium wrote:
GL with Google. I think MSFT and Google are very different companies and you should really pick the company and team (very important) that you are most comfortable with.

Show nested quote +
On November 11 2011 14:49 RedDeckWins wrote:
The quality of the testing jobs at Microsoft is quite varied. If you are in the right group at Microsoft, it is exciting and fulfilling. However for many groups being a tester is pretty meh. I happened to be in a meh group for a tester and left after 4 years. I enjoy being a developer in my new job much more.


The team thing is definitely true. My GF worked as a PM intern and she really disliked it, and never went back. I have another friend who worked as a PM intern on Bing, and he loved it and is now working there full time.

During the interview, they will *always* tell you how SDE, SDET and PM are pretty much equivalent, I don't think this is true at all. Speaking with my friends who actually work there, I do think SDET is the lower tier of the three, with PM and SDE being similar. I think you get paid 5k less as SDET as well.

I personally wouldn't take an SDET job, since I prefer to develop something that has an impact, rather than something that ensures some other thing developed by some other people has an impact.

(I originally applied for PM, after my first round of interview, they told me I would be more suitable for SDE; but then I interviewed for SDET on campus for some reason; and I had an extra round of phone interview for SDE)


Again it depends on the group you are in with regards to the tiers. In my group it was Dev, Test, then PM since we had a bunch of shitty PMs that couldn't program at all and didn't really know how the product worked.

All disciplines start at the same salary for the most part. The longer you stay is where the salary differentiation starts to come in as Devs and PMs will start to get larger raises.

The one good thing about being in test is it is easier to differentiate yourself from your peers. For example I was given a 25k stock bonus (separate from regular bonus) after 1 year, whereas some of my peers in Dev who I would consider better engineers than me did not receive such a bonus.
Okiesmokie
Profile Joined May 2010
Canada379 Posts
November 11 2011 19:56 GMT
#155
On November 11 2011 04:29 Perfect wrote:
Now I know some people will say, well you could just figure out the algorithm and you have the password. Which is true of advanced Scripters, but to scrub IT tech they won’t figure it out. Not to mention that you could put your Blank spaces and Tabs ANYwhere (between words, at the beginning of code) and build it that way, which would be much more complicated but very secure.

I'm not sure about your definition of very secure, but any method of storing a password in plaintext (be it readable letters, or binary representation) is far from secure
ReaperX
Profile Blog Joined January 2011
Hong Kong1758 Posts
November 11 2011 21:46 GMT
#156
Awesome stuff, I hope you take Microsoft! :D
Artosis : Clide. idrA : Shut up.
euroboy
Profile Joined September 2010
Sweden536 Posts
November 11 2011 21:50 GMT
#157
Wow grats man. You sound like a highly skilled CS
Triscuit
Profile Blog Joined April 2010
United States722 Posts
November 12 2011 00:28 GMT
#158
Hey guys, just a quick update. I've got a lot of stuff going on right now so it's tough for me to respond to a lot of posts. I will check through here later and respond to any specific questions.

I would like to say that my interview with Google is actually this upcoming Monday. I just got all the travel information stuff worked out. I know Google is maybe a little more secretive about their process than Microsoft, so I shot my recruiter an e-mail to verify that it would be okay to write a blog about it.

I don't want to fuck up my chances by posting something I shouldn't and potentially violating the NDA they're having me sign, although I'm not sure if the NDA even pertains to the process, it is more previous employee confidentiality, but I can't read legalese very well so I'll have to go back over it a few times to really "get" it.

Regardless, thanks everyone for all your support. This was an incredibly surprising amount of exposure for me, and I'm glad to be able to help those of you who are already, or will be in the job market. Or at the very least present a halfway entertaining story. <3 <3
ftd.rain
Profile Joined December 2010
United Kingdom539 Posts
November 12 2011 02:10 GMT
#159
On November 12 2011 09:28 Triscuit wrote:
Hey guys, just a quick update. I've got a lot of stuff going on right now so it's tough for me to respond to a lot of posts. I will check through here later and respond to any specific questions.

I would like to say that my interview with Google is actually this upcoming Monday. I just got all the travel information stuff worked out. I know Google is maybe a little more secretive about their process than Microsoft, so I shot my recruiter an e-mail to verify that it would be okay to write a blog about it.

I don't want to fuck up my chances by posting something I shouldn't and potentially violating the NDA they're having me sign, although I'm not sure if the NDA even pertains to the process, it is more previous employee confidentiality, but I can't read legalese very well so I'll have to go back over it a few times to really "get" it.

Regardless, thanks everyone for all your support. This was an incredibly surprising amount of exposure for me, and I'm glad to be able to help those of you who are already, or will be in the job market. Or at the very least present a halfway entertaining story. <3 <3

Pretty entertaining for anyone that has anything even slightly related to CS going on.
Wolf
Profile Blog Joined April 2010
Korea (South)3290 Posts
November 12 2011 03:26 GMT
#160
Awesome read. Thanks for sharing the experience. Looks like your hard work is paying off!
Commentatorhttp://twitter.com/proxywolf
TL+ Member
Prev 1 6 7 8 9 10 Next All
Please log in or register to reply.
Live Events Refresh
Next event in 24m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
PiGStarcraft538
SteadfastSC 143
CosmosSc2 18
ROOTCatZ 16
Nathanias 8
StarCraft: Brood War
Calm 1751
Artosis 585
Larva 472
Mini 243
Counter-Strike
fl0m169
Super Smash Bros
PPMD30
Other Games
summit1g6235
Grubby3098
FrodaN720
Day[9].tv289
Skadoodle242
C9.Mang0234
Maynarde173
Pyrionflax109
Chillindude13
fpsfer 1
Organizations
Other Games
gamesdonequick546
BasetradeTV35
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 17 non-featured ]
StarCraft 2
• davetesta62
• Hupsaiya 56
• sooper7s
• Migwel
• AfreecaTV YouTube
• LaughNgamezSOOP
• intothetv
• IndyKCrew
• Kozan
StarCraft: Brood War
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• WagamamaTV693
Other Games
• imaqtpie1544
• Scarra842
• Shiphtur323
• Day9tv289
Upcoming Events
PiGosaur Monday
24m
OSC
23h 24m
The PondCast
1d 10h
OSC
1d 12h
Wardi Open
2 days
CranKy Ducklings
3 days
Safe House 2
3 days
Sparkling Tuna Cup
4 days
Safe House 2
4 days
Liquipedia Results

Completed

Acropolis #4 - TS2
WardiTV TLMC #15
HCC Europe

Ongoing

BSL 21 Points
ASL Season 20
CSL 2025 AUTUMN (S18)
C-Race Season 1
IPSL Winter 2025-26
EC S1
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025

Upcoming

SC4ALL: Brood War
BSL Season 21
BSL 21 Team A
RSL Offline Finals
RSL Revival: Season 3
Stellar Fest
SC4ALL: StarCraft II
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.