Skip to content

Instantly share code, notes, and snippets.

View realasib's full-sized avatar
πŸ“š
Learning

Asib Hossen realasib

πŸ“š
Learning
View GitHub Profile
C 3 hrs 1 min β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Œβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 40.8%
HTML 1 hr 34 mins β–ˆβ–ˆβ–ˆβ–ˆβ–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 21.3%
CSS 1 hr 12 mins β–ˆβ–ˆβ–ˆβ–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 16.4%
Python 46 mins β–ˆβ–ˆβ–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 10.5%
JSON 18 mins β–‰β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 4.2%

To automate the installation of the activate-linux package on a Linux system, you can create a shell script. Below is a script that installs the necessary dependencies, clones the repository, builds, and installs the package.

#!/bin/bash

# Define a function to install dependencies
install_dependencies() {
    echo "Installing dependencies..."
    sudo apt update
    sudo apt install -y \
@realasib
realasib / day_by_day_roadmap.md
Last active August 16, 2024 16:39
Data Analyst Roadmap

Months 1-3: Math, Statistics, Python (Beginner to Intermediate), and MS Excel

1. Math Foundation

Weeks 1-3: Algebra

  • Day 1-2: Introduction to Algebra
    • Topics: Variables, expressions, and equations.
    • Resources: Khan Academy - Algebra 1: Intro to algebra.
    • Practice: Solve simple equations and inequalities.
@realasib
realasib / ssh_setup_mint.md
Last active July 31, 2024 15:47
How to set up SSH from your local Linux Mint machine to GitHub

To set up SSH from your local Linux Mint machine to GitHub, follow these steps:

  1. Check for existing SSH keys:

    Open a terminal and run:

    ls -al ~/.ssh

    This will list the files in the .ssh directory to see if you already have an SSH key. Look for files like id_rsa and id_rsa.pub.