[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y ] [Search | Free Show | Home]

>be me >have interview >whiteboard rolls out >"hey

This is a blue board which means that it's for everybody (Safe For Work content only). If you see any adult content, please report it.

Thread replies: 34
Thread images: 1

>be me
>have interview
>whiteboard rolls out
>"hey anon could you please write down fizzbuzz"
>"sure"
>fuck yeah this is my oportunity!
>write down fizzbuzz in x86 asm
>20 minutes later
>"woah anon, don't you think this is a bit over the top?"
>"well no, this is the most efficient fizzbuzz you can get."
>don't get the job
FUCK YOU /G/
I'LL NEVER LISTEN TO YOU FUCKTARDS AGAIN ;_;
>>
>>62076676
>be me
>have to give an interview
>we're just looking for a data entry / coffee monkey
>"hey anon could you please write down fizzbuzz"
>just wanted him to literally write the word fizzbuzz
>he spergs out and starts writing some computer code, foaming at the mouth and sweating at the pits
>tell him "woah anon, don't you think this is a bit over the top?"
>he says "well no, this is the most efficient fizzbuzz you can get."
>tell him ill contact him if he gets the position
>throw half of the resumes in my stack into the trash because I don't want unlucky people working for me
>>
>>62076676
>premature optimization

There's your problem.
Write human readable code next time fampai.
>>
>>62076728
Fuck you. It wasnt premature. I invested fuckin days to learn that shit by heart.
>>
>>62076783
was it even a job where you need to write assembly? it sounds like it based on their reaction.
if not, then don't question why they didn't hire you.
>>
>>62076783
>What is premature optimization
>>
>>62076676
>be me
>>62076698
>be me
fuck off back to plebbit. both of you.
>>
>>62076698
>throw half of the resumes in my stack into the trash because I don't want unlucky people working for me

I kek evri time
>>
>>62076676
>>
>>62076783
Most stupid thing ever. So what if they are asking anything else in x86? Could you do it? It's x86 requiered for the job in the first place?
>>
Interview thread? Need to vent, just happened

>Get a call for from a recruiter
>Asking me some customer service questions
>Asks me how i dealt with a difficult customer
>Say i haven't
>Bitch says i'm lying, i've been working for 5 years at X, there's no way i haven't
>Says to me, she can't send me to interview because my answers are bad
>Try to tell her it's true, most of my shifts start before the store closes so i don't deal with many people
>Asks me if i want some questions e-mailed to me and want to try again in half hour
>Say no
>Asks why
>Tell her because she already said she wouldn't consider me for a interview
>Tells me i need to fix my attitude
>Tells me i haven't got the interview and hangs up

What the fuck was wrong with this bitch.
>>
>>62082932
well, she was right and you're likely autistic
>>
>>62076676
>be you
>suck dicks
>>
>>62077767
how did you od that
>>
>>62082932
power over you
>>
>>62082954
Only thing she was right about was some of my answers being bad. How the hell do you tell someone they're lying. and she kept insisting it as well. What the hell was her end game with that.
>>
>>62076676
>Not using template metaclass programming for fizzbuzz

Look at how the masterrace does it:
#include <iostream>
#include <cxxabi.h>

struct fizz;
struct buzz;
struct fizz_buzz;

template <int Number>
struct num : public std::integral_constant<int, Number> { };

template <typename...Types>
struct list { };

template <template <typename> class Function, typename TypeList>
struct map;

template <template <typename> class Function, typename...Types>
struct map<Function, list<Types...>> {
using type = list<typename Function<Types>::type...>;
};
template <typename Number, bool Fizz = (Number::value%3)==0, bool Buzz = (Number::value%5)==0>
struct fb_impl {
using type = Number;
};
template <int Number>
struct fb_impl<num<Number>, true, true> {
using type = fizz_buzz;
};
template <int Number>
struct fb_impl<num<Number>, true, false> {
using type = fizz;
};
template <int Number>
struct fb_impl<num<Number>, false, true> {
using type = buzz;
};
template <typename Number>
using fb = fb_impl<Number>;

template <typename Type, typename TypeList>
struct cons;

template <typename Type, typename...Types>
struct cons<Type, list<Types...>> {
using type = list<Type, Types...>;
};
template <int First, int Last, template <int> class Type>
struct generate {
using type = typename cons<Type<First>, typename generate<First + 1, Last, Type>::type>::type;
};
template <int Number, template <int> class Type>
struct generate<Number, Number, Type> {
using type = list<>;
};
template <typename Type>
const char *demangled_type_name() {
int status;
return abi::__cxa_demangle(typeid(Type).name(), 0, 0, &status);
}
template <typename TypeList>
void print_type_list() {
using list_type = TypeList;
std::cout << demangled_type_name<list_type>() << std::endl;
}
int main(int argc, const char * argv[]) {
using numbers_list = typename generate<1, 256, num>::type;
using fizz_buzz_list = typename map<fb, numbers_list>::type;
print_type_list<fizz_buzz_list>();
return 0;
}
>>
>>62076676
>>62076676
>go in for job interview
>see whiteboard
>they ask me to do fizzbuzz
>I get out my Sharpie
>write out
>get the job

heh....nothing perssonel.....kid
>>
>>62083311
I don't have any idea how is this expected to work but I'd kindly suggest you to end your existence.
>>
>>62083349
go and compile it
>>
>>62083378
>>62083349
>>62083311
My bad, this was the version I meant to post:
https://pastebin.com/X4jzhmfK

Unfortunately too long to paste (but it works)
>>
>>62083378
dear god why did you even do this
>>
>getting interviewed by a woman
must be a shit job if they hire women
>>
>>62083403
for the lulz
>>
>>62083412
Thank you anon, now I feel suicidal because of your code.
>>
>>62083143
>he can't blacktext
>>
>>62076676
I would never hire anyone who can do puzzles with code

waste of time. if you know "fizzbuzz" you have been educated stupid.
>>
>>62083459
>if you know basic mathematical and logical operators you've been educated stupid

How's life in HR treating you?
>>
>>62083486
sorry you're dumb. you've watsed time. it's like common core jewshit at this point. you're stupid
>>
>>62083251
Probably a retard that felt she had solid judgement in everything.
>>
>>62082932
haha retailcuck

here's my story

>sanfran startup contacts me for an interview
>have a ~15 minute chat with a recruiter and he says i'll need to do a technical phone screen
>he emails me asking for my available dates next week
>respond instantly
>no response for a week, assume they didn't actually like me
>a couple weeks later they email me again asking when my availability is the next few days
>they actually schedule me an interview this time
>leave work and go sit in my car for the phone call
>guy calls me and says we'll chat for 30 minutes, then do a coding problem
>"uhh i don't have a computer. you guys didn't mention coding in the email."
>"oh you're right sorry. we'll just do the talking portion and maybe we'll reschedule for a coding interview."
>next day they email me to schedule coding part
>after it's all scheduled i realize it was scheduled during the eclipse
>email them saying i need to reschedule
>no response
>guy calls me at the scheduled time and i explain that i need to reschedule
>next day company emails me again asking my availability the next 2 days
>another guy emails me apologizing for how unorganized they have been asking when i'm available again
>tell them both when i'm available, tell them about how they contacted me twice about this
>no response still now, days later
>apparently they're flying engineers to my city for in-person interviews next week but i've heard nothing
>i assume they just moved on from me but i have a feeling they'll contact me last minute asking for an in-person interview

don't know if i even wanna work for a company like this.
>>
>>62083459
>>62083504
Everybody look at this dumb nigger
>>
>>62083578
typical state of HR/headhunters worldwide.
I have been in 3 countries in europe so far (as in: actually lived there, not just vacations) and it the same everywhere.

HR and headhunters just attracts the worst of the worst noskill morons.
>>
>>62083641
this is the worst i've ever seen by far. first time i've dealt with a san fran company though.
Thread posts: 34
Thread images: 1


[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y] [Search | Top | Home]

I'm aware that Imgur.com will stop allowing adult images since 15th of May. I'm taking actions to backup as much data as possible.
Read more on this topic here - https://archived.moe/talk/thread/1694/


If you need a post removed click on it's [Report] button and follow the instruction.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com.
If you like this website please support us by donating with Bitcoins at 16mKtbZiwW52BLkibtCr8jUg2KVUMTxVQ5
All trademarks and copyrights on this page are owned by their respective parties.
Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.
This is a 4chan archive - all of the content originated from that site.
This means that RandomArchive shows their content, archived.
If you need information for a Poster - contact them.