Skip to content

Instantly share code, notes, and snippets.

View SteelAtlas's full-sized avatar
💭
Happy

Prinz Eugen SteelAtlas

💭
Happy
View GitHub Profile
@SteelAtlas
SteelAtlas / color.sh
Created January 25, 2024 19:05
bash color
#!/bin/bash
RED='\x1b[91m'
GREEN='\x1b[92m'
YELLOW='\x1b[93m'
BLUE='\x1b[94m'
MAGENTA='\x1b[95m'
CYAN='\x1b[96m'
WHITE='\x1b[97m'
NC='\x1b[0m' # No Color
@SteelAtlas
SteelAtlas / moc-on-osx.md
Created September 30, 2023 19:54 — forked from RobertAudi/moc-on-osx.md
This is a walkthrough on how to install the MOC command-line music player on OS X. The procedure was tested in Mountain Lion.

MOC on OS X

I waited for years for a Homebrew formula for MOC. I finally found one today, but it didn't work for me. So I decided to try to compile it from source.

Requirements

Here is a list of requirements, taken directly from the MOC README:

@SteelAtlas
SteelAtlas / blur_float.cpp
Created February 28, 2023 23:45 — forked from bfraboni/blur_float.cpp
C++ implementation of a fast Gaussian blur algorithm by Ivan Kutskir - Integer and Floating point version
// Copyright (C) 2017 Basile Fraboni
// Copyright (C) 2014 Ivan Kutskir
// All Rights Reserved
// You may use, distribute and modify this code under the
// terms of the MIT license. For further details please refer
// to : https://mit-license.org/
//
//!
//! \file blur.cpp