Java tool to generate html files from markdown
Android TV rtsp streaming client. Very simple application to view "real time" stream from ip camera.
This application should only be used for testing purpose or if u don't mind that your access credential are stored as plain text :D.
To implement:
Very simple portfolio website showing projects from github.
Project section is generated automatically from github's readmes using bobo-generator
Main Menu > Run > Edit Configurations | Ctrl + Shift + G
Main Menu > Window > Editor Tabs > Editor close Actions > Close Tab | Ctrl + W
Other > Debug context configuration | Ctrl + Shift + F9
file: .ideavimrc
set scrolloff=20
set clipboard+=unnamedplus
vnoremap c "_d
xnoremap p pgvy
sethandler <C-B> a:ide
sethandler <C-C> a:ide
sethandler <C-F> a:ide
sethandler <C-R> a:ide
sethandler <C-V> a:ide
sethandler <C-W> a:ide
sethandler <C-A> a:vim
sethandler <C-X> a:vim
GitHub Action to scrap README.d files from repositories. Created as small addition to bobo-generator to generate portfolio based on GitHub repositories.
| Name | Type | Description |
|---|---|---|
name |
String | Github account name |
output |
String | Output directory |
Addon to mitmproxy to enforce mtls between client and proxy server. Additionaly it prints information about client/server tls certificate. Usefull tool when debuging mtls connection and certificate properties.
Animation "showing" how Dijkstra's algorithm works. Writen in pygame
Add GitHub repository to pom file.
<repositories>
<repository>
<id>central</id>
<url>https://repo1.maven.org/maven2</url>
</repository>
<repository>
<id>github</id>
<url>https://maven.pkg.github.com/mllukasik/*</url>
</repository>
</repositories>
Also, to get access to GitHub maven repository u need to provide authentication token. Provide username/password in your maven settings.xml like this
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>github</id>
<username>${username}</username>
<password>${password}</password>
</server>
</servers>
</settings>