Dustin McCraw
Software Engineer
Computer Programmer
Developer
Hacker
Code is a set of instructions that
tells the computer what to do.
global _start
section .text
_start:
; write(1, message, 13)
mov rax, 1
mov rdi, 1
mov rsi, message
mov rdx, 13
syscall
; exit(0)
mov eax, 60
xor rdi, rdi
syscall
message:
db "Hello, World", 10
Code is written in a language.
Why are there so many?
Imagine saying "Hello" in both
English and Spanish.
The idea of "Hello" is the same in both languages, it's just the wording that's different.
echo "Hello World"
PRINT "Hello, world!"
console.log 'Hello, world!'
$("body").append("Hello world!");
void setup(){
println("Hello, world!");
}
Robots
Self driving cars
Artificial intelligence
Deep Learning
Alexa
Siri
Web Designers
Video Game 3D Modelers
Virtual Reality
User Experience Designers