Skip to content

Instantly share code, notes, and snippets.

View CAMOBAP's full-sized avatar
🏠
Working from home

Alex Babrykovich CAMOBAP

🏠
Working from home
View GitHub Profile
@CAMOBAP
CAMOBAP / youtube-dl-fragment.sh
Last active June 3, 2024 17:10
Update youtube shorts support added
#!/usr/bin/env bash
# rev 10
#
# Input inteface
#
YOUTUBE_VID_ID=""
DURATION=""
START_TIME="0:00"
@CAMOBAP
CAMOBAP / xgimi-elfin-dissasembly.md
Last active August 12, 2023 12:31
XGIMI Elfin Dissasembly
  1. Flip your projector
  2. Unscrew 2 legs
  3. Rotate black part
  4. Unscrew 6 screws (2 in the middle and 4 on corners)
  5. Take a platic card and move it though perimether of bottom part

2023-08-12 14 15 08 2023-08-12 14 15 23 2023-08-12 14 15 27 2023-08-12 14 15 33

@CAMOBAP
CAMOBAP / resume.json
Created June 17, 2024 20:57
resume.json
{
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json",
"basics": {
"name": "Aliaksandr Babrykovich",
"label": "Software Engineer",
"image": "",
"email": "abobrikovich@mail.com",
"summary": "As a software engineer with extensive experience in backend development and mobile platforms, I bring a wealth of knowledge and a proven track record of delivering robust, scalable, and efficient software solutions. My career began as a Java EE developer, where I honed my skills in enterprise-level backend systems. Over time, my role evolved, expanding my competencies to include Android and iOS development, as well as working with less mainstream mobile platforms. This diverse experience has equipped me with a deep understanding of the full software development lifecycle, from initial design through to deployment and maintenance. I am curious about leveraging technology to solve complex problems and drive innovation, always striving for excellence in every proj
@CAMOBAP
CAMOBAP / gh-cache-drop.sh
Created December 9, 2024 18:34
GHA remove cache by regex
gh api -H "Accept: application/vnd.github+json" /repos/metanorma/metanorma-ietf/actions/caches \
| jq -r '.actions_caches[].key' | grep -E 'chocolatey-cache' \
| ruby -r 'cgi' -e 'while line = gets; puts CGI.escape(line.strip); end' \
| xargs -n 1 --no-run-if-empty -S 2048 -I {} \
env PAGER=cat gh api -X DELETE -H "Accept: application/vnd.github+json" "/repos/metanorma/metanorma-ietf/actions/caches?key={}"
#!/usr/bin/env python3.11
import base64
import json
import requests
import select
import signal
import subprocess
import sys
import time