lying paid off on the resume

StuffedFrog

StuffedFrog

Kraken
Joined
Jul 25, 2019
Posts
4,756
Reputation
4,046
one hundred thousand dollars btw on site but im gonna talk about going remote
 

Attachments

  • Screenshot 2022-07-11 at 18.06.15.jpg
    Screenshot 2022-07-11 at 18.06.15.jpg
    80.3 KB · Views: 0
  • +1
Reactions: Chadeep, Meteor21, Erik-Jón and 2 others
i got offers from meta ibm and amazon now
 
  • Woah
  • +1
Reactions: Deleted member 19103 and Pumanator
  • +1
Reactions: PubertyMaxxer, Erik-Jón and Sexually Disabled
applied on indeed this is the email they sent me to talk to them
what are your quaifications. did you go to uni for computer science or anything?
 
  • So Sad
Reactions: Deleted member 13787
  • JFL
  • Love it
Reactions: EverythingMaxxer, ShowerMaxxing, TITUS and 1 other person
lied about my resume been studying comp sci by myself using a collection of videos
Damn. How long did it take you to self-learn the concepts for this job? I'm not in CS I'm in uni but in another program and wanna self-learn coding
 
  • So Sad
Reactions: Deleted member 13787
Damn. How long did it take you to self-learn the concepts for this job? I'm not in CS I'm in uni but in another program and wanna self-learn coding
im still learning been about 3 to 4 months as long as you get to a level where you can understand leet code questions your good im still learning though
 
  • +1
  • Love it
Reactions: Stoicism0 and Deleted member 15004
im still learning been about 3 to 4 months as long as you get to a level where you can understand leet code questions your good im still learning though
Wow, you've been doing this shit for 3-4 months and you're already ready concept and knowledge wise for a 100k developer position:oops:

what resources have you used and if you don't mind, how long do you expend on learning this stuff in a week/day ??
 
  • So Sad
Reactions: Deleted member 13787
Wow, you've been doing this shit for 3-4 months and you're already ready concept and knowledge wise for a 100k developer position:oops:

what resources have you used and if you don't mind, how long do you expend on learning this stuff in a week/day ??
freecodecamp
books using the content table and then watching videos on the chapters
codebats to work your way to harder questions
leetcode the harder coding questions should be done after codebats
 
  • +1
Reactions: Deleted member 20618 and Stoicism0
freecodecamp
books using the content table and then watching videos on the chapters
codebats to work your way to harder questions
leetcode the harder coding questions should be done after codebats
i really like the videos on freecodecamp youtube where alvintheprogrammner is teaching them
 
Wow, you've been doing this shit for 3-4 months and you're already ready concept and knowledge wise for a 100k developer position:oops:

what resources have you used and if you don't mind, how long do you expend on learning this stuff in a week/day ??
gonna make a guide though
 
1st day on the job

please code in python


>>> # Six roulette wheel spins (weighted sampling with replacement)
>>> choices(['red', 'black', 'green'], [18, 18, 2], k=6)
['red', 'green', 'black', 'black', 'red', 'black']

>>> # Deal 20 cards without replacement from a deck
>>> # of 52 playing cards, and determine the proportion of cards
>>> # with a ten-value: ten, jack, queen, or king.
>>> dealt = sample(['tens', 'low cards'], counts=[16, 36], k=20)
>>> dealt.count('tens') / 20
0.15

>>> # Estimate the probability of getting 5 or more heads from 7 spins
>>> # of a biased coin that settles on heads 60% of the time.
>>> def trial():
... return choices('HT', cum_weights=(0.60, 1.00), k=7).count('H') >= 5
...
>>> sum(trial() for i in range(10_000)) / 10_000
0.4169

>>> # Probability of the median of 5 samples being in middle two quartiles
>>> def trial():
... return 2_500 <= sorted(choices(range(10_000), k=5))[2] < 7_500
...
>>> sum(trial() for i in range(10_000)) / 10_000
0.7958
 
1st day on the job

please code in python


>>> # Six roulette wheel spins (weighted sampling with replacement)
>>> choices(['red', 'black', 'green'], [18, 18, 2], k=6)
['red', 'green', 'black', 'black', 'red', 'black']

>>> # Deal 20 cards without replacement from a deck
>>> # of 52 playing cards, and determine the proportion of cards
>>> # with a ten-value: ten, jack, queen, or king.
>>> dealt = sample(['tens', 'low cards'], counts=[16, 36], k=20)
>>> dealt.count('tens') / 20
0.15

>>> # Estimate the probability of getting 5 or more heads from 7 spins
>>> # of a biased coin that settles on heads 60% of the time.
>>> def trial():
... return choices('HT', cum_weights=(0.60, 1.00), k=7).count('H') >= 5
...
>>> sum(trial() for i in range(10_000)) / 10_000
0.4169

>>> # Probability of the median of 5 samples being in middle two quartiles
>>> def trial():
... return 2_500 <= sorted(choices(range(10_000), k=5))[2] < 7_500
...
>>> sum(trial() for i in range(10_000)) / 10_000
0.7958
you never heard of github copilot
 
  • JFL
Reactions: Deleted member 7725

Similar threads

Acridax
Replies
21
Views
328
Acridax
Acridax
ChadL1te
Replies
14
Views
328
RealSurgerymax
RealSurgerymax
0S4MA
Replies
38
Views
397
0S4MA
0S4MA
ChadL1te
Replies
34
Views
332
truecel12
T

Users who are viewing this thread

Back
Top