Skip to content

Instantly share code, notes, and snippets.

View dkgndianko's full-sized avatar

Mouhamad Ndiankho THIAM dkgndianko

View GitHub Profile
@dkgndianko
dkgndianko / install_tableplus_on_fedora_workstation_32.md
Last active July 11, 2022 13:55
This is a howto for installing Tableplus (A database tool) on Linux RPM-compatible distributions.

Successfully installed on Fedora Workstation 32 with this steps:

  1. Download the Debian package from official sources there [UPDATE] Use this link instead.
  2. Installing some dependencies:
sudo dnf install openldap openldap-devel libgee libgee-devel gtksourceview-devel gtksourceview2-devel gtksourceview3-devel gtksourceview4-devel libgnome-keyring-devel gnome-keyring gnome-keyring-pam
  1. Transform from .deb to .rpm using alien:
@dkgndianko
dkgndianko / clone_github_org_repos.sh
Last active August 29, 2024 08:56
Clone all repositories belonging to a given org or user at Github. You must install `gh` command (`brew install gh` under mac) and be authenticated (`gh auth login`).
org=myorg_is_here
gh repo list $org --limit 100 | cut -f 1 | xargs -L1 gh repo clone $1