Skip to content

Commit 3d48a62

Browse files
committed
about me publications
1 parent 5233da9 commit 3d48a62

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

public/about-me/about.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,18 @@ you can find me exploring new tech or enjoying a good cup of coffee ☕.
2828
* [GitHub Profile](https://github.com/fezcode)
2929
* [LinkedIn Profile](https://www.linkedin.com/in/ahmedsamilbulbul)
3030

31+
## Publications
32+
33+
* **Usability Study of a Novel Tool: The Virtual Cafeteria in Nutrition Education**
34+
*Authors*: Ufuk Celikcan, Ahmed Samil Bulbul, Cem Aslan
35+
*Year*: 2020
36+
*DOI*: https://doi.org/10.1016/j.jneb.2020.08.001
37+
38+
* **The Virtual Cafeteria: An Immersive Environment for Interactive Food Portion-Size Education**
39+
*Authors*: Ufuk Celikcan, Ahmed Samil Bulbul, Cem Aslan
40+
*Year*: 2018
41+
*DOI*: https://doi.org/10.1145/3279954.3279960
42+
3143
## Currently...
3244

3345
* **🎵 Making Music:** I'm currently exploring the world of music production, creating some sick beats and melodies.

src/pages/about-views/NeuromancerHUD.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ const MiniTerminal = ({ theme, setTheme }) => {
124124
{ cmd: 'ping', desc: 'Check terminal responsiveness' },
125125
{ cmd: 'os', desc: 'Display operating system info' },
126126
{ cmd: 'neofetch', desc: 'Display system information with ASCII art' },
127+
{ cmd: 'publish', desc: 'List my publications' }, // Added publish command
127128
];
128129
commands.forEach(c => {
129130
newHistory.push({ type: 'output', content: (
@@ -317,6 +318,11 @@ const MiniTerminal = ({ theme, setTheme }) => {
317318
newHistory.push({ type: 'output', text: line, className: THEMES[theme].text });
318319
});
319320
break;
321+
case 'publish':
322+
newHistory.push({ type: 'output', text: 'PUBLICATION ARCHIVE:', className: `${THEMES[theme].accent} font-bold mt-2` });
323+
newHistory.push({ type: 'output', text: '* Usability Study of a Novel Tool: The Virtual Cafeteria in Nutrition Education (2020)', className: `${THEMES[theme].textDim} list-disc ml-6` });
324+
newHistory.push({ type: 'output', text: '* The Virtual Cafeteria: An Immersive Environment for Interactive Food Portion-Size Education (2018)', className: `${THEMES[theme].textDim} list-disc ml-6` });
325+
break;
320326
default:
321327
newHistory.push({ type: 'error', text: `Command not found: ${trimmed}`, className: 'text-red-500 font-bold' });
322328
}

0 commit comments

Comments
 (0)