Skip to content

Instantly share code, notes, and snippets.

View WassimAkachi's full-sized avatar
🎯
Focusing

Wassim Akachi WassimAkachi

🎯
Focusing
View GitHub Profile
@WassimAkachi
WassimAkachi / github_bitbucket_multiple_ssh_keys.md
Created March 11, 2024 23:34 — forked from yinzara/github_bitbucket_multiple_ssh_keys.md
Managing SSH keys and repo cloning using multiple accounts on GitHub and BitBucket

Why Multiple SSH keys?

There are numerous reasons you may need to use multiple SSH keys for accessing GitHub and BitBucket

You may use the same computer for work and personal development and need to separate your work.

When acting as a consultant, it is common to have multiple GitHub and/or BitBucket accounts depending on which client you may be working for.

You may have different projects you're working on where you would like to segregate your access.

@WassimAkachi
WassimAkachi / Dockerfile
Created June 8, 2022 15:10 — forked from xgp/Dockerfile
Keycloak 17 example using JGroups JDBC_PING discovery protocol for Infinispan
FROM quay.io/keycloak/keycloak:17.0.0 as builder
ENV KC_METRICS_ENABLED=true
ENV KC_FEATURES=preview
ENV KC_DB=postgres
ENV KC_HTTP_RELATIVE_PATH=/auth
# specify the custom cache config file here
ENV KC_CACHE_CONFIG_FILE=cache-ispn-jdbc-ping.xml
# copy the custom cache config file into the keycloak conf dir
@WassimAkachi
WassimAkachi / .editorconfig
Created December 15, 2021 18:56
EditorConfig
# EditorConfig configuration for CoreMedia Blueprint Workspace
# https://editorconfig.org
# To apply the EditorConfig settings in IDEA, check Preferences | Editor | Code Style | Enable EditorConfig support.
root = true
[*]
@WassimAkachi
WassimAkachi / ansible-init.sh
Created September 29, 2019 13:33
Ansible init script
#!/usr/bin/env bash
set -euo pipefail
IFS=$'\n\t'
ANSIBLE_PROJECT_ROOT="."
if [[ $# -ge 1 ]]
then
ANSIBLE_PROJECT_ROOT="${1}"
fi
@WassimAkachi
WassimAkachi / MIT-License
Last active March 6, 2019 11:58
MIT License with Copyright (c) 2019 Wassim Akachi
MIT License
Copyright (c) 2019 Wassim Akachi
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions: