Concept
09
/
11
Source Code
/**
* @file portfolio.ts
* @author Nederev Oleg
* @brief Programmer / Dev Arts / Investor
*/
import
{
Skills
,
Experience
}
from
'./life'
;
export
async
function
main
() {
// Founder, CTO, and creative technologist building products at the intersection of technology, art, and business.
const
me
=
new
Developer
({
email:
'oleg@nederev.dev'
,
github:
'https://github.com/nederev'
,
admin:
'ENABLE_GOD_MODE'
,
status:
'OPEN_TO_WORK'
});
await
me
.
init
();
}
const
projects
:
Project
[] = [
{
title:
'katami.design'
,
role:
'Developer'
,
years:
2025
,
// 2025-present
description:
`Personal Website`
,
tags: [
'ongoing'
],
url:
'https://katami.design'
},
{
title:
'humanornot.so'
,
role:
'Founder, Development, Marketing'
,
years:
2023
,
// 2023-present
description:
`Social Turing AI Game`
,
tags: [
'ongoing'
],
url:
'https://humanornot.so'
},
{
title:
'dater.com'
,
role:
'Founder, Developer'
,
years:
20202023
,
// 2020-2023
description:
`Video Dating Platform`
,
tags: [
'flopped', 'sold'
],
},
{
title:
'buymeapie.com'
,
role:
'Founder, Marketing'
,
years:
2011
,
// 2011-present
description:
`Productivity App - Grocery Shopping List`
,
tags: [
'ongoing'
],
url:
'https://buymeapie.com'
},
{
title:
'lifehacker.ru'
,
role:
'Early Investor'
,
years:
20112021
,
// 2011-2021
description:
`Lifestyle Blog`
,
tags: [
'sold'
],
url:
'https://lifehacker.ru'
},
{
title:
'person.com'
,
role:
'Founder, Marketing'
,
years:
20052009
,
// 2005-2009
description:
`Social Network`
,
tags: [
'sold'
],
url:
'https://person.com'
},
];
// End of file