Skip to content

Instantly share code, notes, and snippets.

View Link-'s full-sized avatar
:octocat:

Bassem Dghaidi Link-

:octocat:
View GitHub Profile
@Link-
Link- / wget-all
Created March 21, 2015 20:28
wget magic
# Download all files from a given online directory
# into the a local directory without mirroring the
# folder structure
wget -A <accepted only extensions> -r -l <levels of depth> -nd http://domain.com/folder/
wget -R <all except X> -r -l <levels of depth> -n http://domain.com/folder
@Link-
Link- / osc_arabs.md
Last active July 2, 2020 20:16
Open Source Contributors in the Arab World

List has moved

I've moved the list here: https://github.com/Link-/Arab_OSC to allow for direction contributions

Arab OSC

List of the most influential Arab Open Source Contributors (Arab OSC)

This is a list of the most influential Arab Open Source Contributors. This list has been compiled based on recommendations and referrals from the community. Anyone can contribute to this list just create a Pull Request (PR)!

Open source contributions range from helping fix bugs, translation, providing design material, contributing to documentation or even being a core code contributor. It can take many forms. As such, the criteria to be on this list or to nominate someone for it are as follows:

@Link-
Link- / self-signed-certificate-with-custom-ca.md
Last active April 8, 2021 21:45 — forked from fntlnz/self-signed-certificate-with-custom-ca.md
Self Signed Certificate with Custom Root CA

Create Root CA (Done once)

Create Root Key

Attention: this is the key used to sign the certificate requests, anyone holding this can sign certificates on your behalf. So keep it in a safe place!

openssl genrsa -des3 -out rootCA.key 4096
@Link-
Link- / starship.toml
Created December 17, 2023 15:13
glich.stream starship configuration
command_timeout = 500
scan_timeout = 10
[character]
success_symbol = "[➜](bold green)"
error_symbol = " [λ](bold red)"
[aws]
disabled=true
@Link-
Link- / issue_comment.yaml
Last active January 26, 2024 06:50
Write your first workflow with GitHub Actions and GitHub APIs - beginner friendly tutorial!
name: Create a comment on new issues
on:
issues:
types: [opened]
permissions: write-all
jobs:
comment-with-action: