Skip to content

Instantly share code, notes, and snippets.

View bluemeda's full-sized avatar
🥺

Affif Mukhlashin bluemeda

🥺
View GitHub Profile
@bluemeda
bluemeda / Dockerfile
Created May 17, 2022 08:30
Ghost Docker
FROM ghost:4
RUN apt-get update -y && \
apt-get install -y mariadb-client
COPY ./wait-for-mysql.sh /usr/local/bin/wait-for-mysql.sh
Computer Information:
Manufacturer: Unknown
Model: Unknown
Form Factor: Laptop
No Touch Input Detected
Processor Information:
CPU Vendor: GenuineIntel
CPU Brand: Intel(R) Core(TM) i5-10210U CPU @ 1.60GHz
CPU Family: 0x6
@bluemeda
bluemeda / geget.ps1
Created August 28, 2019 09:02
A wise way to spend your remaining internet data.
param(
[parameter( ValueFromRemainingArguments = $true )]
[string[]]$args
)
function Show-Help {
Clear-Host
Write-Host
Write-Host "geget.ps1, Version 0.0.1"
@bluemeda
bluemeda / geget
Last active August 28, 2019 09:14
A wise way to spend your remaining internet data
#!/usr/bin/env bash
usage()
{
clear
echo
RESET_ATTR="$(tput sgr0)"
COLOR_GREEN="$(tput setaf 2)"
COLOR_DARK_GREY="$(tput setaf 245)"
COLOR_DARK_BLUE="$(tput setaf 046)"