Skip to content

Instantly share code, notes, and snippets.

View artu-hnrq's full-sized avatar

Arthur Henrique artu-hnrq

View GitHub Profile
@artu-hnrq
artu-hnrq / .releaserc
Created May 2, 2021 14:42
Simple semantic-release Github Action config
branches: release
plugins:
- "@semantic-release/commit-analyzer"
- "@semantic-release/release-notes-generator"
- [
"@semantic-release/changelog",
changelogTitle: "# Changelog
All notable changes to this project will be documented in this file.
@artu-hnrq
artu-hnrq / setup-profile-picture.py
Last active August 20, 2020 03:27
Some created scripts
#!/usr/bin/python3
"""Update UNIX-like system user profile picture with its GitHub account's one
This script assumes same system and platform username, but a different one can be declared.
It downloads target GitHub account's picture and set it up to current system user
"""
import os
import requests
import configparser