Your First Coding Job #softwaredeveloper #coding #programming #computerscience

preview_player
Показать описание

Рекомендации по теме
Комментарии
Автор

Gotta be feared of Jake if he uses assembly for web 😂

master_of_ice
Автор

And somehow Jake is still a web developer...

SKM_KB
Автор

Plot twist: the new guy's preferred language is binary..

mukherjeejeet
Автор

and jake can show up in sweats everyday and never get fired because he is god to the company

casedem
Автор

I Image he would speak something like print(“How was your day”)

scorpdude
Автор

Should be happy to have somebody like that on your team

videowatcher
Автор

And his code is unmaintainable
Only him knows the code

pham
Автор

This channel is so great. I wanna meet jake. I used to work in the devslopes parking lot when uber first launched. I signed up drivers for the uber driver platform in that parking lot. Thats where my coding journey began back in 2016. Now im a full stack javascript dev. Shout out for the inspiration although couldnt afford the devlopes program i came across devslopes channel 8 years later.

nicklancaster
Автор

Actually I met the nicest person I ever knew on my first job, he was a mid level senior and he was extremely supportive and helpful ❤

MoustafaAscoura
Автор

Linux User has to be the biggest flex among all.

spoofer
Автор

Having Jake review my PRs as a junior dev is a wild ride

justsayin
Автор

Yk a real mf when there is assembly in his bio.
Like dammmnnn son.

punisherash
Автор

; Data segment
section .data
message db "Hello, world!", 10 ; String with newline character

; Code segment
section .text
global _start

_start:
; Move message address to register eax
mov eax, message

; Call operating system function to print string
mov ebx, 4 ; System call for writing (write)
mov ecx, 1 ; File descriptor (stdout)
mov edx, eax ; Message address in eax
mov esi, 13 ; Message length (13 bytes)
int 0x80 ; Interrupt for system calls

; Exit program
mov eax, 1 ; System call for exiting (exit)
mov ebx, 0 ; Exit code (0 for success)
int 0x80
This is hello world

shortschannelgaming
Автор

Literally me- except the age, linux, leetcode, and assembly part. And my name is not jake

projackson
Автор

bro can decide the fate of IT Industry

i_zoru
Автор

Me: "Hi, nice to meet you, Jake"
Jake: "beep beep.. boop boop.."

ovalemulti
Автор

Here comes the black hat to destroy all 😂😂😂

nomadicnatureasmr
Автор

And jake is the one that keeps creating utility classes all around the project

JoséEduardoRamos-fj
Автор

I met a guy who had written in his Resume
"Fluent in Machine Language" 💀 💀

HiroX
Автор

Jake, the goat 😂😂.I never understand why programming in assembly is so terrifying.
There are places where it's the only thing you can do. So many tiny things and life saving devices need assembly. Moreover it's simple eoectronic language : " write this to mem, read that to register, add register 'a' with 'b', simple, you can ask the processor to do really riny things yet the result is complex behavior.

goldnoob