Skip to main content

Best Hacking/Programming Games Part 2

 Here i came up with second part of this series so let's talk about some other games related to Hacking or Programming. Let's Begin

Check out Part 1 Here

6. Hacknet:

In Hacknet, you are a hacker with access to flexible code and a database filed with Waster eggs. After code a dead hacker contacts you via automated message in a ghostly inciting, you set off on a range of hack-centric missions. ---> Wikipedia


7. CyberPunk 2077:

Since this is set in a  first-person cyberpunk world. there's plenty of shenanigans to be had during combat. You can use Cyberpunk 2077's quick hacking to ping any connected device or person on a network, then upload daemons to mess with them.--> Wikipedia


8. HackMud:

HackMud is an MMO that casts the player as a hacker in a 90s - inspired. it's got ample tutorials. but ultimately, to this game well, you're going to need to learn some javasript. but if you, the world is you oyster. --> Wikipedia


9. Observation:

observation is the rare game that casts the player as the computer. As SAM, a HAL-like space station OS,your goal is to help Emma, the lone (?) occupant of the station after a mysterious event leaves it powerless and stranded. --> Wikipedia

10. Exapunks:

Exapunks, the 2018 puzzler from zachtronics. casts you as a hacker in an alt-past 1987, even if some of its alternative history elements feel awfully at home in the present. --> Wikipedia


Thank You 😊😊

Comments

Popular posts from this blog

Makefile

 You may have seen file named Makefile or you may have type command like make, make install. so what is this file Makefile and what are this command. let's discuss about it.

Products Which I like

Induction Buy now Induction Buy now

Pascal's Triangle

 Pascal's Triangle Introduction In mathematics, Pascal’s triangle is triangular array of binomial coefficient. below you can see how it looks like… 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1 How to Build it? First of all start with “1” and second rows as “1 1” then we can clearly see every element in next rows(except 1) if sum of two elements from above row. (i.e, 1+1=2, 1+2=3, 1+3=4) and with this rules we can create pascal’s triangle of n rows. Below is visual of how it will look like, Formula let’s take 0th row as first row and 0th column as first column, so we can get each value using formula where n is row number and k is column number. so for finding 1st(0 indexed) element in 2nd row we can write 2C1 which will give 2. There is one another technique, in which we need to solve (x + y)^n for nth row, if we solve (x +y)² then we will get 2nd row as coefficient of x and y in this solved formula which is x² + 2xy + y² . coefficients are (...