Skip to content

Instantly share code, notes, and snippets.

View lablnet's full-sized avatar
🤗
I may be slow to respond.

Muhammad Umer Farooq lablnet

🤗
I may be slow to respond.
View GitHub Profile
@lablnet
lablnet / README.md
Last active July 24, 2023 01:58
Add multiple origin url into one repo.

Instruction

  1. Consider you have already one origin url which you added by git remote add origin $url
  2. Now other URL you will add like that, git remote set-url --add origin $url

That's all.

@peter279k
peter279k / docker_installer.sh
Last active December 7, 2023 12:13
This is a Docker (docker-ce) installation for Ubuntu 16.04 and Ubuntu 18.04
#!/bin/bash
# This bash script is referenced by https://www.hostinger.com/tutorials/how-to-install-docker-on-ubuntu
# Reference: https://docs.docker.com/engine/install/ubuntu/
echo 'Check your Linux Distribution....'
which lsb_release > /dev/null 2>&1
if [[ $? != 0 ]]; then
@rodydavis
rodydavis / flutter_github_ci.yml
Last active February 25, 2024 05:40
Flutter Github Actions Build and Deploy Web to Firebase Hosting, iOS to Testflight, Android to Google Play (fastlane)
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build_web:
@Beneboe
Beneboe / how-to-setup-verified-commits.md
Last active March 20, 2024 18:20
How to Setup Verified Commits on Github
@greeflas
greeflas / install-toolbox.sh
Last active March 29, 2024 07:53
JetBrains Toolbox installation script for Ubuntu - https://www.jetbrains.com/toolbox/app/
#!/bin/bash
set -e
if [ -d ~/.local/share/JetBrains/Toolbox ]; then
echo "JetBrains Toolbox is already installed!"
exit 0
fi
echo "Start installation..."