Skip to content

Instantly share code, notes, and snippets.

@Artm1n3r
Artm1n3r / child1-pom.xml
Created August 11, 2022 08:54
Avoid explicity specifying a version of parent pom.xml
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>test.my.foobar</groupId>
<artifactId>foobar-parent</artifactId>
<version>${revision}</version>
</parent>
<groupId>test.my.foobar</groupId>

Download CMake from: https://cmake.org/download/

wget https://cmake.org/files/v3.12/cmake-3.12.3.tar.gz

Compile from source and install

tar zxvf cmake-3.*
@Artm1n3r
Artm1n3r / about.md
Last active November 2, 2021 16:07 — forked from jasonrudolph/about.md
Programming Achievements: How to Level Up as a Developer
@Artm1n3r
Artm1n3r / .vimrc
Created April 18, 2020 16:32
Vim config
execute pathogen#infect()
set nocompatible " set compatibility to Vim only
syntax on " turn on syntax highlight
colorscheme badwolf " my color schema
filetype plugin indent on " filetype
@Artm1n3r
Artm1n3r / ubuntu.cmake.install.md
Created April 18, 2020 15:37
Install CMake on Ubuntu 18.04

Install CMake on Ubuntu 18.04

Download CMake

wget https://cmake.org/files/v3.17/cmake-3.17.1.tar.gz

or manually from site https://cmake.org/downloads

Compile and install

@Artm1n3r
Artm1n3r / Solution.java
Created February 21, 2020 21:29
Algorithm - Gemstones
package xyz.smile_h.bit.algorithm.hr.gem_stones;
import java.io.File;
import java.io.FileNotFoundException;
import java.util.*;
import java.util.stream.IntStream;
import static java.util.stream.Collectors.toList;
public class Solution {