Skip to content

Instantly share code, notes, and snippets.

View ablil's full-sized avatar

ablil

  • 19:22 (UTC +01:00)
View GitHub Profile
@cbedroid
cbedroid / React-Native-Missing-KeyStore.md
Last active May 3, 2024 10:57
React-Native Generating SigningReport (Error: Missing keystore)

Fix Firebase Missing Keystore for React Native App

Generate new keystore certificate

For more info, visit https://rnfirebase.io/

 # Open your terminal 
 # Enter the following to generate your missing key. (if fails, try elevating your privileges with `sudo`).
 
@lukeocodes
lukeocodes / gh-issueBranch.alias
Last active June 4, 2022 10:54
Github CLI alias to create a branch from GitHub Issue
gh alias set issueBranch --shell \
'title="$(gh issue view $1 --json title --jq .title)"; \
slug="$(source $HOME/.zshrc && slugify "$title")"; \
git checkout -b "prefix-$1.$slug"'
@bcambl
bcambl / gnome3-xfce4-xrdp.sh
Created October 8, 2015 02:21
Setup Fedora 23 Gnome3 with xRDP via XFCE4
#!/bin/bash
#################################################
# Setup Fedora 23 Gnome3 with xRDP via XFCE4
#################################################
# install the XFCE4 desktop
sudo dnf groupinstall xfce-desktop
# open standard RDP ports
sudo firewall-cmd --add-port=3389/tcp
@dypsilon
dypsilon / frontendDevlopmentBookmarks.md
Last active October 26, 2025 08:45
A badass list of frontend development resources I collected over time.
@henriquemoody
henriquemoody / ArgoUML.sh
Created August 15, 2012 19:22
Install ArgoUML on linux
#!/bin/sh
if [ "root" != "$(whoami)" ]; then
echo "You must run this command as root" 1>&2
exit 1
fi
set -x
# Download and extract
if [ ! -z "${1}" ]; then