Open in app

Sign In

Write

Sign In

Christian Campos
Christian Campos

1 Follower

Home

About

Jul 8, 2021

How to hack the Virtual Memory

We’ll take a look at how the VM can be messed with using two files from file system In order to understand how to hack the VM, we need to understand what it is first. We won’t go in-depth, but it is basically a memory management technique that helps you…

Programming

3 min read

How to hack the Virtual Memory
How to hack the Virtual Memory
Programming

3 min read


Jul 8, 2021

How Virtual Memory works

Throughout this article we’ll take a look at which problems Virtual Memory (VM onward) solves and how it actually maps into RAM What VM actually does is add a level of indirection between Virtual Program Addresses and Physical Addresses (RAM). Virtual program addresses would map directly into RAM if it…

Programming

5 min read

How Virtual Memory works
How Virtual Memory works
Programming

5 min read


Feb 24, 2021

Recursion

Explained with drawings In the following pictures, we will take an in-depth look at the following code: float _pow_recursion(float x, float y) { if (y == 0) return (1); if (y < 0) return (_pow_recursion(x, y + 1) / x); return (_pow_recursion(x, y - 1) * x); } What you…

Recursion

3 min read

Recursion
Recursion
Recursion

3 min read


Jan 13, 2021

What happens when you type https://www.holbertonschool.com in your browser and press 'Enter'

The experience we get when browsing the web is a rather simplistic one, stream lined. We write the domain name of the website we want to visit, hit enter, and that’s it. What is going on under the hood is way more convoluted than that. In order to see what…

Webstack

4 min read

What happens when you type https://www.holbertonschool.com in your browser and press 'Enter'
What happens when you type https://www.holbertonschool.com in your browser and press 'Enter'
Webstack

4 min read


Jan 8, 2021

What is IoT (Internet of Things)

An introduction, and some ramblings on security, of IoT. IoT is defined, in Wikipedia, as: The Internet of things (IoT) describes the network of physical objects — “things” — that are embedded with sensors, software, and other technologies for the purpose of connecting and exchanging data with other devices and…

Io T

7 min read

What is IoT (Internet of Things)
What is IoT (Internet of Things)
Io T

7 min read

Christian Campos

Christian Campos

1 Follower

Sometimes writer, avid for programming.

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Text to speech