work: add picsg tool
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
4c55f102b5
commit
97b65ccfe8
2 changed files with 11 additions and 0 deletions
|
@ -4,6 +4,16 @@ import { Technology } from "./domain/Technology.ts";
|
||||||
import { Work } from "./domain/Work.ts";
|
import { Work } from "./domain/Work.ts";
|
||||||
|
|
||||||
export const CHRONOLOGICAL_WORKS: Work[] = [
|
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",
|
name: "Mindustry tools",
|
||||||
url: "/pleshevskiy/mindustry-tools",
|
url: "/pleshevskiy/mindustry-tools",
|
||||||
|
|
|
@ -21,4 +21,5 @@ export enum Technology {
|
||||||
Sqlite = "Sqlite",
|
Sqlite = "Sqlite",
|
||||||
Vue = "Vue",
|
Vue = "Vue",
|
||||||
Godot = "Godot",
|
Godot = "Godot",
|
||||||
|
Haskell = "Haskell",
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue