Skip to content

Instantly share code, notes, and snippets.

View BaLiKfromUA's full-sized avatar
🇺🇦
Stand with Ukraine

Valentyn Yukhymenko BaLiKfromUA

🇺🇦
Stand with Ukraine
View GitHub Profile
@BaLiKfromUA
BaLiKfromUA / POSIX_commands.md
Created March 19, 2023 00:12 — forked from td-shi/POSIX_commands.md
About POSIX commands list

POSIX commands

You should refer the original page. The all copyrights of these documents belong to them.

Using frequent

filter

  • grep :: search a file for a pattern
@BaLiKfromUA
BaLiKfromUA / decrypt-lab.ipynb
Last active December 14, 2022 22:37
Decryption of simple cipher using Multilayer Perceptron
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@BaLiKfromUA
BaLiKfromUA / install-toolbox.sh
Last active April 23, 2022 18:22 — forked from greeflas/install-toolbox.sh
JetBrains Toolbox installation script for Ubuntu - https://www.jetbrains.com/toolbox/app/
#!/bin/bash
set -e
if [ -d ~/.local/share/JetBrains/Toolbox ]; then
echo "JetBrains Toolbox is already installed!"
exit 0
fi
echo "Start installation..."
@BaLiKfromUA
BaLiKfromUA / pmdRule.xml
Created April 7, 2022 12:54
PMD rule to ban all wildcard imports except of static imports. Based on http://techtraits.com/programming/2011/11/06/custom-pmd-rules-using-xpath.html
<rule name="NoWildcardImports"
language="java"
message="Please don't use wildcard imports"
class="net.sourceforge.pmd.lang.rule.XPathRule">
<description>
Black-list wildcard imports. Those clutter namespace and eventually end up in fun stuff like java.util.List
and java.awt.List getting mixed.
</description>
<priority>1</priority>
<properties>