work: add picsg tool
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
Dmitriy Pleshevskiy 2024-04-13 17:39:51 +03:00
parent 4c55f102b5
commit 97b65ccfe8
Signed by: pleshevskiy
GPG Key ID: 17041163DA10A9A2
2 changed files with 11 additions and 0 deletions

View File

@ -4,6 +4,16 @@ import { Technology } from "./domain/Technology.ts";
import { Work } from "./domain/Work.ts";
export const CHRONOLOGICAL_WORKS: Work[] = [
{
name: "picsg",
url: "/pleshevskiy/picsg",
description:
"A tool for steganographing information in a picture encoded using the Vernam cipher.",
roles: [Role.Author],
technologies: [Technology.Haskell],
startDate: new Date("2024-04-13"),
status: Status.AsIs,
},
{
name: "Mindustry tools",
url: "/pleshevskiy/mindustry-tools",

View File

@ -21,4 +21,5 @@ export enum Technology {
Sqlite = "Sqlite",
Vue = "Vue",
Godot = "Godot",
Haskell = "Haskell",
}