Logo
  • Home
  • Blog
    • Network
    • Android
    • Raspberry Pi
    • Server
    • Hacking
    • Arduino
    • C/C++
    • PHP
    • All
  • About Us
  • Contact
made withby us

Category Network

Network
0

Neural Network from scratch in Python

I recently published a post on Medium which goes through the math of machine learning all the way down to the code (in Python). If you understand the basic principles then you can implement any kind of layers you ever dreamt of (FullyConnected, Convolutional, MaxPooling, Dropout, etc). https://medium.com/@omaraflak/math-neural-network-from-scratch-in-python-d6da9f29ce65 You can also directly checkout the code on Github ! https://github.com/OmarAflak/Medium-Python-Neural-Network Cheers ! 

Neural Network from scratch: Part 2 – Practice
C/C++, Network
0

Neural Network from scratch: Part 2 – Practice

[latexpage] Welcome back! Now that we have our equations from part 1 we are going to implement them in C++ to make a hand written character recognition program ! Before we dive into the code we need to think just a second about the network architecture.  As you will see further along the article, I will provide you a training set of hand written digits between 0 and… 

Neural Network from scratch: Part 1 – Theory
C/C++, Network
1

Neural Network from scratch: Part 1 – Theory

[latexpage] Welcome ! In this tutorial we will go through all the details of neural networks so we can build our own in C++ from scratch ! Why ? Imagine for a moment you want to tell a computer how to recognize a bird. How would you do it ? The most common answer would be to check the shape, the size, the colors. Does it have a beak ? Does it have wings ? etc. Suppose you can describe all… 

Raspberry Pi & Omxplayer Server
Android, Network, Raspberry Pi, Server
0

Raspberry Pi & Omxplayer Server

If you're an Android user, you probably noticed that Android doesn't have its own "Airplay" implemented, which is not convenient if you want to stream your music on your speakers (or home cinema or whatever). So I decided to overcome this problem using my Raspberry Pi ! And today I will share with you my work so you can make your own music server… 

Node.js script at startup
Network, Raspberry Pi, Server
2

Node.js script at startup

I've been searching a while how to run a Node.js program at the boot of my Raspberry Pi and only one technique worked for me. Moreover I found it very simple! forever and forever-service Basically, what you have to do is make your program a service and then run the service automatically at the startup. Install forever as global :… 

Node.js and Android TCP/IP
Android, Network, Server
2

Node.js and Android TCP/IP

After some research on the internet I noticed that a lot of tutorials for Node.js were about making a web server, but what about something more ... Android ? For this tutorial you will need Node.js installed on your server and an Android device. Let's go! Node.js multi-client server This little piece of code is only what you need! Some explanations: net.createServer() creates the server (no way) and takes as a parameter a callback function called every time a new… 

Reverse SSH (Also on Android)
Android, Hacking, Network, Server
1

Reverse SSH (Also on Android)

Hi everyone! This tutorial will show you how to make a Reverse SSH between two machines! I already wrote a post for making a Reverse Shell, you should take a quick look at it if you don't know what is a reverse shell, because the same principle is applicable here. Reverse SSH There will be two machines here: Reachable (the network configuration: port forwarding etc.. allows you to ssh to it from anywhere)  Unreachable (machine with ssh installed, you can't access to it unless you're on the same… 

Reverse Shell
Hacking, Network, Server
1

Reverse Shell

Hello everyone! In this tutorial I'm going to show you how to make a reverse shell! You will need two machines. I'm using two Linux based systems. Reverse Shell First, what is a reverse shell ? Usually, when you make a TCP/IP connection between two computers, there is from one side a server handling the connection, and from the other a client making the connection. When you connect to your machine using SSH… 

Socket Library C++ Windows
C/C++, Network
0

Socket Library C++ Windows

Hi everyone! This is another tutorial about Windows sockets, but this time with a library! If you read the other article, you probably noticed that it was a pretty complicated code for nothing big! I am doing this second tutorial to share with you a library I developed some days ago and which happened to be very usefull. Careful, this library was made for Windows only. Github… 

VPN PPTP – How it works + Install
Network, Raspberry Pi, Server
0

VPN PPTP – How it works + Install

Hi everyone! Today we are going to talk about VPNs! As usual I will explain with beautiful images what is a VPN and how it works (briefly), and then guide you step by step to the installation of a PPTP VPN on your server. Let's go! VPN: What is it? A VPN (Virtual Private Network) is a tunnel created between several distant computers, allowing them… 

Load More Posts
NO MORE POSTS

Recent Posts

  • Flask API for Keras
  • Neural Network from scratch in Python
  • Neural Network from scratch: Part 2 – Practice
  • Neural Network from scratch: Part 1 – Theory
  • Connect Arduino to Android through USB