Open Side Menu Go to the Top
Register
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** ** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD **

01-21-2017 , 02:29 PM
Yeah I guess it's the latter. My output is insight. R is just the tool I choose to use the most.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-21-2017 , 02:41 PM
Quote:
Originally Posted by muttiah
Just lol pseudocode. I would not hire someone who can't write real code in some language. It's a red flag that person has no experience and vastly oversold their skills (resume) to get an interview
I think the opposite. A person who quickly shows mastery of the problem to be solved (while not bothering with specific IMPLEMENTATION issues) is someone you want to hire. It would be EXTREMELY RARE that a person would exist who would know the solution in pseudocode, but who wouldn't have a damn clue about any coding.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-21-2017 , 03:11 PM
Sometimes this thread says the craziest things.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-21-2017 , 04:47 PM
Quote:
Originally Posted by MadTiger
I think the opposite. A person who quickly shows mastery of the problem to be solved (while not bothering with specific IMPLEMENTATION issues) is someone you want to hire. It would be EXTREMELY RARE that a person would exist who would know the solution in pseudocode, but who wouldn't have a damn clue about any coding.
I could not disagree more. Ive seen what you're calling rare multiple times. Especially people with masters degree or higher.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-21-2017 , 04:50 PM
Quote:
Originally Posted by muttiah
Just lol pseudocode. I would not hire someone who can't write real code in some language.
Okay, but then put them in front of an IDE or something and not writing on a damn whiteboard.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-21-2017 , 05:21 PM
It may all by syntax, but if you don't know the specific syntax they want and just know the steps you are an architect not a developer.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-21-2017 , 07:16 PM
Quote:
Originally Posted by plexiq
Nobody suggested you should hire someone who can't write real code. We were actively discouraged from using real syntax in a whiteboard setting when presenting exercises at university and i thought the reasoning wasn't unreasonable. Apparently this is still a thing (see Victor's experience).

Unrelated, some random vacation project i wrote:
Quarto AI (Fun little board game, although writing this kind of ruined it for me.)
This seems like a problem with academia. I've never seen a preference for pseudocode in industry. I've never seen the value of pseudocode, unless you're writing like a theoretical algorithms textbook and want to reach the largest audience. Ruby and Python for example, are more concise and clean than random pseudocode invented by a professor.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-21-2017 , 07:16 PM
Quote:
Originally Posted by goofyballer
Okay, but then put them in front of an IDE or something and not writing on a damn whiteboard.
We use coderpad. But I don't see the problem with whiteboard for simple questions (I'm talking most interview questions, which are less than 20 lines of actual code)
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-21-2017 , 07:18 PM
Quote:
Originally Posted by Benholio
If someone breezes through whiteboard problems in pseudocode, I'm not going to be that worried about whether they can write code in a real language.
Do you specifically ask them to go through the question in pseudocode first? Why repeat the problem twice? After rough design and examples, I ask candidates to jump to real code.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-21-2017 , 09:35 PM
Anyone done headless browser automation in .NET? I've tried Selenium and NHtmlUnit and am rapidly getting infuriated by both.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-21-2017 , 09:42 PM
Quote:
Originally Posted by muttiah
This seems like a problem with academia. I've never seen a preference for pseudocode in industry. I've never seen the value of pseudocode, unless you're writing like a theoretical algorithms textbook and want to reach the largest audience. Ruby and Python for example, are more concise and clean than random pseudocode invented by a professor.
We used to use psuedocode all the time when we were developing in 8-bit assembler.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-22-2017 , 03:02 AM
Quote:
Originally Posted by codeartisan
We used to use psuedocode all the time when we were developing in 8-bit assembler.
seems to be reinforcing the previous quote

honestly for web dev, you should definitely be able to real code the modern languages (python, ruby, js)

if you're coding every day, should be super straightforward solving whiteboard problems
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-22-2017 , 06:03 AM
Quote:
Originally Posted by ChrisV
Anyone done headless browser automation in .NET? I've tried Selenium and NHtmlUnit and am rapidly getting infuriated by both.
I had similar experience with headless chrome running Protractor. So painful.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-22-2017 , 07:22 AM
With Selenium, the problem is that it's a port from Java. If you automate IE or Chrome or Firefox it all works natively beautifully. But if you want to use the headless browser, because of something something their devs don't want certain .NET dependencies blah blah, you instead have to run a Selenium remote execution server locally. In Java. That makes the whole project not portable and just generally horrible.

The problem with NHtmlUnit is also that it's a port from Java. The exact problems are too complicated to get into.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-22-2017 , 12:49 PM
Quote:
Originally Posted by muttiah
I've never seen the value of pseudocode, unless you're writing like a theoretical algorithms textbook and want to reach the largest audience. Ruby and Python for example, are more concise and clean than random pseudocode invented by a professor.
I get the arguments for sticking close to real syntax for job interviews, but how could pseudocode possibly be less concise than a real language? You take whatever language you think is most suitable as basis, skim away syntax that doesn't add to human readability, and then use natural language and/or mathematical notations where it's useful. If the result is less concise then you did something wrong.

I find pseudocode extremely useful for algorithm planning or when thinking through stuff away from the screen.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-22-2017 , 02:11 PM
You guys argue about the most aspie stuff sometimes. Seriously, you just discuss the algorithm with the person and then say "Do you want me to write real code now?". Done. Thats literally it, you talk to a human to see what they want
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-22-2017 , 02:12 PM
Quote:
bla bla bla pseudocode...
jesus, are we still beating that dead horse?
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-22-2017 , 03:34 PM
Quote:
Originally Posted by Wolfram
jesus, are we still beating that dead horse?
While (Internet)
Horse.beat()
Hitler.compare()
Meme.Create()
;
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-22-2017 , 08:42 PM
Could you please stop using semicolons.

Thanks.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-22-2017 , 10:40 PM
I think that post needs braces around the actions in the while loop or else it might have a bug. What language is this, anyway??
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-23-2017 , 11:14 AM
Quote:
Originally Posted by goofyballer
I think that post needs braces around the actions in the while loop or else it might have a bug. What language is this, anyway??
LOL

TwoPlusTwoMadTigerProgrammingSubforum Pseudocode 1.0
Code:
for i=1 to infinity
       argue(stuff)
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-23-2017 , 07:28 PM
Quote:
Originally Posted by Barrin6
Update: Got the call that I got rejected for Software Engineer role and but google is willing to interview for Software Engineering in Tools and Infrastructure. But that means 2 more phone interviews over google doc. DJFL;KAFEJF;AIHF;ADFJA;LKDJ GAH
Had my 2 phone interviews sometime 2 weeks ago. Got the update today that I was rejected . Oh well, the interview process continues on.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-23-2017 , 07:52 PM
Quote:
Originally Posted by Barrin6
Had my 2 phone interviews sometime 2 weeks ago. Got the update today that I was rejected . Oh well, the interview process continues on.
I just had a phone interview where he started off by saying the position was already gone but he wanted to build a contact base with me for future openings. How would others have handled that? I basically had to listen to him sell the company for 20 mins even though there was no opening
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-23-2017 , 09:19 PM
I think its a matter of if you care about the company enough that you'd consider them in the future. If yes, sure have the conversation. If not, I'm ending the conversation right then and there (politely, of course).
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-23-2017 , 10:00 PM
I didnt know anything about the company really, so I figured Id at least listen, but it was kind of cringey selling of their core values and such
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote

      
m