Skip to content

Instantly share code, notes, and snippets.

@jzlima
jzlima / Hibernate Field List
Created July 6, 2021 11:44
Hibernate Field List
Entity:::
....
@Column
@Convert(converter = StringToListFlagConverter.class)
private List<FlagChave> flags= new ArrayList();
....
Class Converter.
@Converter
@jzlima
jzlima / teams-chat-post-solaris.sh
Last active March 31, 2020 18:34 — forked from chusiang/teams-chat-post.sh
Post a message to Microsoft Teams with bash script.
#!/bin/sh
# =============================================================================
# Author: Chu-Siang Lai / chusiang (at) drx.tw
# Filename: teams-chat-post.sh
# Modified: 2018-03-28 15:04
# Description: Post a message to Microsoft Teams.
# Reference:
#
# - https://gist.github.com/chusiang/895f6406fbf9285c58ad0a3ace13d025
#