Concept09/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',
status: 'OPEN_TO_WORK'
});

await me.init();
}
const
projects: Project[] = [
{
title: 'katami.design',
role: 'Developer',
years: 2025, // 2025-present
description: `Personal Website`,
tags: ['ongoing'],
},
{
title: 'humanornot.so',
role: 'Founder, Development, Marketing',
years: 2023, // 2023-present
description: `Social Turing AI Game`,
tags: ['ongoing'],
},
{
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'],
},
{
title: 'lifehacker.ru',
role: 'Early Investor',
years: 20112021, // 2011-2021
description: `Lifestyle Blog`,
tags: ['sold'],
},
{
title: 'person.com',
role: 'Founder, Marketing',
years: 20052009, // 2005-2009
description: `Social Network`,
tags: ['sold'],
},
];
// End of file