Skip to content

Instantly share code, notes, and snippets.

View vheidari's full-sized avatar
🏠
Working from home

Vahid Heidari vheidari

🏠
Working from home
View GitHub Profile
@vheidari
vheidari / DLINK-ADSL-Modem-Firmware.md
Last active May 9, 2023 19:05
How to reverse engineering a D'LINK ADSL Modem Firmware - First version [Alpha] [maybe we have some english issues]
@vheidari
vheidari / compiling-jakt-programing-language.md
Last active July 17, 2023 00:35
Lets compile Jakt programing language compiler on the Linux

Lets compile Jakt programing language compiler on the Linux

Okey, today we work with Jakt.What is Jakt ? this is your answerd -> Jakt is a memory-safe systems programming language.it develop and maintain by Serenity OS team and today we would like to compile it and use it.

Who are the project maintainers?

The project maintainers at this time (Wed 10 May 2023 01:30:45 PM) are :

- @awesomekling, 
- @jntrnr, 
- @linusg,
  • @alimpfard,

What is ES6 standard, and how we could use it inside React

ES6 stands for ESCIMASCript 2015. in this standard we got some features that added to javascrip. there is a list of ES6 feature that React support them. in folow we familiar with them.

Class

// Base Class defination
//-----------------------------------------------------
class Car {
    
    constructor(name, type, model, color) {
@vheidari
vheidari / a-quick-guide-to-learn-adb.md
Last active October 4, 2023 02:47
If you need to learn how to use ADB this quick guide help you to learn how you can use it.

A quick tour inside your Android smatrphone with ADB

In this quick guide, we will learn what ADB (Android Debug Bridge) is and explore its options through a simple example. it should provid enough to understanding of how it works ;)

If you aren't familiar with it, this tool allows us to explore the inner workings of our Android smartphone, like a hacker (not literally, of course), without requiring root access. it enable various task such as installing and debugging applications, transferring files, and executing shell commands on the device.

How to install and use it ?

To install ADB tools, we have two approaches that you can choose from and follow through.

Install ADB through APT/Manually

@vheidari
vheidari / how-to-handel-multiple-version-of-devtool-in-linux.md
Last active December 17, 2023 23:48
If you have any problem to manage multiple version of development tools on your machine I recommend read this little MD to end.

Handling multiple version of CMake , Clang, Python or etc on your Linux system by symbolic link

In this presentation we will learn how to manage multiple version of development tools inside a linux machine.

I have three different versions of clang

version :
    - clang-12
    - clang-14
  • clang-15
@vheidari
vheidari / howToUsePatchUtility.md
Last active June 4, 2024 15:16
In this tutorial I try to explain how patch utility could help us during development , fixing a bug or etc

What is patch and how we could take its advantage to our code ?

Unix-based systems carry a lot of useful tool. actually they made them to help us improve our productivity. patch is one of useful tool that help programer update a existing codebase.

Note

A patch is a file that contains the differences between two sets of code or files. It is used to update an existing codebase by applying changes without rewriting the entire code. The patch utility is a useful tool for programmers to apply updates to codebases.

When we work on a existing codebase we might update and do some change to it to fix a bug then we can use patch utility to add update to codebase. I try to explain its advantage with an example like this :

An example