Skip to content

Instantly share code, notes, and snippets.

View ghostfreak3000's full-sized avatar
💭
Set your status

Bishaka Samuel ghostfreak3000

💭
Set your status
  • mzurisoft
  • Kampala, Uganda
View GitHub Profile
@ghostfreak3000
ghostfreak3000 / sample_kannel_status_response.xml
Created November 22, 2023 05:04
Sample Kannel Status XML response
<?xml version="1.0"?>
<gateway>
<version>Kannel bearerbox version `1.4.5'.
Compiler `9.2.1 20200220'.
System Linux, release 5.15.90.1-microsoft-standard-WSL2, version #1 SMP Fri Jan 27 02:56:13 UTC 2023, machine x86_64.
Hostname 949c6a91c5c8, IP 172.20.0.10.
Libxml version 2.9.10.
Using OpenSSL 1.1.1d 10 Sep 2019.
Compiled with MySQL 8.0.19, using MySQL 8.0.35.
Compiled with PostgreSQL 12.2 (Ubuntu 12.2-1).
@ghostfreak3000
ghostfreak3000 / basic_web_ci_config.yml
Created March 31, 2018 17:33
Basic .gitlab-ci.yml config setup for static website ci pipeline (installs yarn deps, compiles sass then copies files to server web dir)
image: node:8
deploy-to-aws:
stage: deploy
script:
- apt-get update
- apt-get -y install apt-transport-https
- curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
- echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
- apt-get update