Skip to content

Instantly share code, notes, and snippets.

View AlexRogalskiy's full-sized avatar
🛰️
Work on stuff that matters

Alexander AlexRogalskiy

🛰️
Work on stuff that matters
View GitHub Profile
@MachineLearningIsEasy
MachineLearningIsEasy / COCO_data.ipynb
Created May 4, 2021 11:44
COCO data visualization
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Tkachenko-Ivan
Tkachenko-Ivan / Dockerfile
Created March 24, 2021 03:41
Dockerfile для отладки Java приложения, использующего GDAL, в контейнере
FROM ubuntu:20.04
RUN apt-get update
# Set locales
RUN apt-get update && \
apt-get install -y locales && \
locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LC_CTYPE en_US.UTF-8
@brandonb927
brandonb927 / template.pkr.hcl
Created March 23, 2021 16:36
A "truly noninteractive" Ubuntu-based Packer HCL template for dist-upgrade
build {
# ...
provisioner "shell" {
inline = [
"echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections",
"sudo apt-get update",
"sudo apt-get dist-upgrade -o Dpkg::Options::=--force-confold -o Dpkg::Options::=--force-confdef -y --allow-downgrades --allow-remove-essential --allow-change-held-packages",
"sudo apt-get autoremove -y",
"sudo apt-get clean",
@ijokarumawak
ijokarumawak / README.md
Last active February 15, 2022 10:58
README.md

Simplest Filebeat config to test processors

This filebeat.yml config will receive input from stdout, do some processing and write output to stdout.

How to run

echo "message" | filebeat -c `pwd`/filebeat.yml -e 2> /dev/null
@lkopocinski
lkopocinski / postal_codes_regex.json
Last active March 29, 2025 20:37
JSON file with postal codes regex patterns
[
{
"abbrev":"AF",
"name":"Afghanistan",
"postal":"[0-9]{4}"
},
{
"abbrev":"AL",
"name":"Albania",
"postal":"(120|122)[0-9]{2}"
@MichaelCurrin
MichaelCurrin / jekyll-new.md
Last active February 8, 2023 13:19
Set up a new Jekyll project

Set up a new Jekyll project

This short guides shows you how to setup a new skeleton Jekyll project, using the Jekyll CLI to generate the files for you.

This guide does not require Jekyll to be installed globally. Rather, it takes you through installing Jekyll in a new project that only has one file in it, then uses that project Jekyll to create all the Jekyll base files in the same directory.

Under Jekyll docs, you can see the Installation page. That provides links to install for each OS. These are covered in some detail here.

See also New under my Jekyll recipes for a few ways to set up a new Jekyll site.

# Source: https://gist.github.com/48f44d3974db698d3127f52b6e7cd0d3
###########################################################
# Automation of Everything #
# How To Combine Argo Events, Workflows, CD, and Rollouts #
# https://youtu.be/XNXJtxkUKeY #
###########################################################
# Requirements:
# - k8s v1.19+ cluster with nginx Ingress
@Rheola
Rheola / library.md
Last active April 28, 2025 10:07
Материалы по Go (golang)
@MachineLearningIsEasy
MachineLearningIsEasy / 3_Тюнинг_модели_отбор_фичей.ipynb
Created October 26, 2020 20:26
NLP grid search, feature selection, grid search
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@MachineLearningIsEasy
MachineLearningIsEasy / 2_Векторные_представления.ipynb
Created October 22, 2020 11:19
NLP векторные представления текстов
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.