Instantly share code, notes, and snippets.
🙃
nevertheless
Senior 3D Engineer@ZibraAI
- ZibraAI
- Prague, Czech Republic
- 16:21
(UTC +01:00) - https://www.artstation.com/danilandreev
- in/danil-andreev-264b69183
DanilAndreev /FixCLionCMakeMissing.md
Last activeJanuary 10, 2024 13:25
Fixing CLion CMake tab missing This file contains hidden or 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
| importsys | |
| classProgramArguments: | |
| def__init__(self): | |
| self.args= [] | |
| self.flags=dict() | |
| defis_set(self,flag:str)->bool: | |
| returnstrinself.flags |
DanilAndreev /maya2019install.sh
CreatedJune 4, 2021 12:20 — forked fromegetun/maya2019install.sh
Autodesk Maya 2019 Installation Bash Script v1.0 for Ubuntu 18.04 / Tested on KDE Neon 5.14 This file contains hidden or 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 | |
| #Deniz Ege Tunçay, 2019 | |
| #nrtkbb, 2018 | |
| #Neal Burger, 2017 | |
| #Autodesk Maya Installation Bash Script v1.0 for Ubuntu 18.04 based Linux Distributions | |
| #if you have any issues, feel free tweet me // @egetun | |
| #Make sure we’re running with root permissions. |
DanilAndreev /Kruskal's algorithm (Minimum spanning tree).md
Last activeDecember 4, 2023 06:26
DanilAndreev /Linux docker install script.md
Last activeApril 28, 2021 12:43
Docker setup bash scriptDanilAndreev /Finding paths on a 2D map (Dijkstra and A* algorithms).md
Last activeMarch 4, 2021 14:35
Dijkstra and A* for 2d mapsIn this article, I want to talk about one of the easiest ways to find paths for a two-dimensional map. I do not takeinto account the greedy search algorithm because of its simplicity and not optimality. Today we will talk about thealgorithm for finding the shortest paths from one vertex of the graph to all the others, proposed by the DutchscientistEdsger Wybe Dijkstra. Also, I will show youA*algorithm, based onDijkstra.
DanilAndreev /Rainbow tables (hash-chains).md
Last activeOctober 30, 2025 08:41
Rainbow tables (hash-chains)DanilAndreev /Reverse Polish Notation (RPN).md
Last activeMay 25, 2021 18:58
Reverse Polish notation converting and calculating
