Skip to content

Instantly share code, notes, and snippets.

View Atarity's full-sized avatar

Mike Sannikov Atarity

View GitHub Profile
@carceneaux
carceneaux / remove_gitlab_artifacts.sh
Last active June 5, 2025 13:43
Script for removing GitLab Job Artifacts.
#!/bin/bash
#
# Written by Chris Arceneaux
# GitHub: https://github.com/carceneaux
# Email: [email protected]
# Website: http://arsano.ninja
#
# Note: This code is a stop-gap to erase Job Artifacts for a project. I HIGHLY recommend you leverage
# "artifacts:expire_in" in your .gitlab-ci.yml
#
@froi
froi / README.md
Last active June 30, 2020 05:12
Simple Python Flask app to demonstrate the use of CORS with Flask-restful
@snrbrnjna
snrbrnjna / .htaccess
Last active May 20, 2025 17:00
Jekyll Auth Plugin - to manage http basic auth for jekyll generated pages and directories
#### Jekyll Layout: /_layouts/.htaccess
# Apache Configuration File
{% if ((page.auth_dir.users != empty) or (page.auth_dir.groups != empty)) %}
AuthName "Privater Bereich"
AuthType Basic
# => mehrere Require Blocks werden geodert: http://d43.me/blog/1157
AuthzUserAuthoritative Off
AuthUserFile {{ page.auth_remote_user_file }}
@thomasfr
thomasfr / Git push deployment in 7 easy steps.md
Last active May 6, 2025 10:00
7 easy steps to automated git push deployments. With small and configurable bash only post-receive hook