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 / How-to-install-SerenityOS-on-Linux-Mint.md
Last active February 7, 2023 01:04
How to install SerenityOS On [ LINUX Mint - VERSION="20.3 (Una)" - Kernel : 5.15.0-33-generic ]

How to install SerenityOS On [ LINUX Mint - VERSION="20.3 (Una)" - Kernel : 5.15.0-33-generic ]

There are some instructions that can help you install and run "SerenityOS" on "Linux Mint"

First - Cloning Project :

-- git clone https://github.com/SerenityOS/serenity.git

Second, install a list of dependencies for this project :

Install Debian / Ubuntu dependencies

@vheidari
vheidari / nodejs-dependencies-war.md
Last active August 20, 2022 08:11
OS Migration [ Codebase Migration ] - (Windows) -> (Linux) - NodeJs (npm) dependencies issue on Linux

Dependency in Development could make you crazy we have a little story about that

Recently, I develop a full website (Frontend and Backend) for my client and deliver it to my client. After that, I decide to change my development area from Windows to Linux.

After a couple of years, my client call with me and told me they want to update the project. I accepted it to add some feature that they need to add.

But during new setup the project on new machine (Linux) we encounter some interesting problems that I try to explain them in this article. I hope you will find it useful.

Frontend Dependency problems

On new machine (Linux) before I decide to updateing the project I just installed lastest version of nodejs and npm with nvm (node version mananger). current version in order for nodejs and npm are : (16.16.0) - ( 8.11.0 ).

@vheidari
vheidari / install-hp-printer-driver-on-linux.md
Last active August 18, 2022 20:20
How to install HP printer driver on linux especially on Linux Mint

This quick guid help you to Installing Linux priner driver on your machine, especialy for the HP Printers

To install HP printers driver on your Linux machine you should download and install hplib-xx-xx-xx.run from HP official website. to downloading proper package for your Linux machine following link could help you to find right distro.

https://developers.hp.com/hp-linux-imaging-and-printing/gethplip?language=en

NOTE: above link maybe changed during the time. if above link not exist. you should google hplip driver and find right link.

Setup and Installing :

To install hplib-xx-xx-xx.run please following these instruction :

@vheidari
vheidari / bring-7zip-zstd.md
Last active July 31, 2022 22:21
Apt, old package ( p7zip Version 16.02 ) and new tech issues ;) - 7z zStandard supporting on Linux

Issues : ( p7zip Version 16.02 ) doesn't support zStandard compression on Linux. let's bring it to your machine

if you have a package with .7z extension and this package archived with zStandard method. p7zip Version 16.02 installed from Apt official repository dosen't support to unpack your package and when you try to decompressing it you should, encounter with some error like below :

7-Zip: Unsupported Compression Method

To check what type of methods that your 7z supported you can use one of the following command :

- 7z i 
@vheidari
vheidari / rollbacking-and-switching-between-your-linux-kernel.md
Last active July 14, 2022 10:51
Linux Mint - Rollbacking and switching between linux kernels with an example :)

Let's starting with a conflict, between Virtualbox and Qemu with kernel version

To compiling and running SerenityOS on linux Mint with kernel version "5.4.0-122-generic", qemu x86 has some isssus with this version of kernel. This version is too old for lastest version of qemu. to resolve this problems we just need to update linux kernel to newest version :

qemu error, when we runnig SerenityOs on 5.4.0-122-generic linux kernel :

qemu-system-i386: -gdb tcp:127.0.0.1:1234: gdbstub: KVM doesn't support guest debugging

To check current version on your Machine you can use following command inside your terminal:

@vheidari
vheidari / GitHub-ssh-access-token.md
Last active July 12, 2022 10:24
Github - Creating a personal access token and add token authentication to github

Github Added token authentication requirements for Git operations in july 2021

Following instruction help us to generating ssh token and add it to github then working with ssh rather than https.

For more information plase read this blog post : MoreInfo


Purpose :

@vheidari
vheidari / vim-cheat-sheet.md
Last active July 10, 2022 14:47
Useful Vim Cheat Sheet
  1. Change to editor mode : [ i ]
  2. Chagne to viewer mode : [ esc ]
  3. Select multi line of code : [ v ]
  4. Cut multi line of code : [ x ]
  5. Past cuted or copied lines : viewer mode -> [ p ]
  6. Search and replace a word inside file : viewer mode -> [ :s/word/replace ]
  7. Search and replace a all word inside file : viewer mode -> [ :%s/word/replace ]
  8. Delete a word in viewer mode : viewer mode -> [ d ] -> [ e ]
  9. Delete multi word in viewer mode : viewer mode -> [ d ] -> [ number] -> [ e ]
  10. Delete a char in viewer mode : viewer mode -> [ d ] -> [ right arrow ]
@vheidari
vheidari / webptopng.bat
Last active March 29, 2022 09:18
Webp format to Png with Windows batch script and dwebp.exe
@echo off
set list=*.webp
(for %%a in (%list%) do (
dwebp.exe %%a -o %%a.png
))
echo "All .webp file converted to .png"
@vheidari
vheidari / git-tips
Created May 28, 2021 12:05
📌 Git Quick Tips :
GIT INIT :
= Add new repositry in local machin
- `git init`
=======================================================
GIT ADD :
= Add files to git track them
- `git add .`
- `git add -A`
@vheidari
vheidari / msys2-curl-ssl-issus.txt
Last active May 4, 2021 10:34
MSYS2 - Curl ssl certification problems
#Add pem.sh script part in ~/bash/pem.sh
#----------------------------------------------------------------------------
#Start pem.sh script
#----------------------------------------------------------------------------
#cacert.pem name
CERT=cacert.pem
echo "Start fix curl ssl Certificat issus !"