diff --git a/modules/work/data.ts b/modules/work/data.ts index 30fd223..3a9f437 100644 --- a/modules/work/data.ts +++ b/modules/work/data.ts @@ -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", diff --git a/modules/work/domain/Technology.ts b/modules/work/domain/Technology.ts index cd02fb5..3f9b25c 100644 --- a/modules/work/domain/Technology.ts +++ b/modules/work/domain/Technology.ts @@ -21,4 +21,5 @@ export enum Technology { Sqlite = "Sqlite", Vue = "Vue", Godot = "Godot", + Haskell = "Haskell", }