Позиція | Функції |
---|---|
Intern | Дізнається про компанію |
Junior developer | Вчиться працювати |
Middle developer | Працює |
Senior developer | Вчиться не працювати |
Software Architect | Не працює |
Solution Architect | Вчиться заважати працювати |
CTO (Chief technical officer) | Заважає працювати |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# to exclude Obsidian's settings (including plugin and hotkey configurations) | |
.obsidian/ | |
# Add below lines to exclude OS settings and caches | |
.trash/ | |
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Script to convert MP4 video to GIF with generation of custom color palette. | |
# | |
#=== Do not touch code below | |
# Inner variables | |
input_file="" | |
input_fps="20" | |
input_height="512" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Do some magic here | |
echo "Turn OFF Laptop screen" | |
xrandr --output eDP-1-1 --off | |
if [ `uname -m` == x86_64 ] ; then | |
./trine-bin64 $* | |
else |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install soft via APT | |
sudo apt install build-essential | |
# Install libreoffice via ppa | |
sudo add-apt-repository ppa:libreoffice/ppa | |
sudo apt-get update | |
sudo apt install audacious automake ccache cmake doublecmd-qt gimp git guake hplip-gui lm-sensors mc mednafen meld nmap pax-utils python3-minimal rar redshift remmina rsync screen sed simple-scan tio vlc wget zip kate inkscape ktorrent pidgin retext torbrowser-launcher libreoffice |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Tobin Fricke's implementation of the | |
Hoshen-Kopelman algorithm for | |
cluster labeling. | |
Copyright (c) September 9, 2000, by Tobin Fricke <[email protected]> | |
Modified 2002-03-09 Tobin Fricke | |
Modified substantially 2004-04-21 by Tobin Fricke | |
This program is written in the 1999 standard of the C language (C99). Older C |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git config --global user.name "Tarcisio Coutinho" | |
git config --global user.email "[email protected]" | |
git config --global color.ui true | |
git config --global alias.s status | |
git config --global alias.c checkout | |
git config --global alias.b branch | |
git config --global alias.lol log --oneline --graph --decorate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
struct Container { | |
int value; | |
explicit Container(const int i) : value(i) { | |
cout << "\nCreated Container per typical c-tor.\n"; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Autrhor Nazar `tro` Gerasymchuk | |
#!/bin/bash | |
dpis=(90 135 180 270 360 540) | |
for dir in ${dpis[@]} | |
do | |
mkdir ${dir} | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
mkdir my_project | |
cd my_project | |
echo " . . . Downloading file stanford-ner-2014-08-27.zip" | |
# NOTE: need to update link for further versions | |
wget http://nlp.stanford.edu/software/stanford-ner-2014-08-27.zip | |
echo " . . . Unpacking stanford-ner-2014-08-27.zip" |