diff --git a/src/emulator/files.js b/src/emulator/files.js index b3d510b..ee65cd0 100644 --- a/src/emulator/files.js +++ b/src/emulator/files.js @@ -1,4 +1,6 @@ module.exports = { + + '/skills/web': ` \x1b[1mMy web experience\x1b[0m I don't really know anything about web development, @@ -9,6 +11,8 @@ blek! ID: An auth server. https://github.com/b1ek/blekID blek! Bin: A pastebin alternative. https://git.blek.codes/blek/bin homepage.js: Third rewrite of my website. https://git.blek.codes/blek/homepage.js `, + + '/skills/nt': ` Me native dev experience It isn't much but i do have a couple of projects @@ -18,5 +22,23 @@ CuteSchedule A school project that is supposed to be a interactive https://github.com/b1ek/CuteSchedule schedule menu hanging on a TV -f2bin Convert files into C code https://github.com/b1ek/f2bin` +f2bin Convert files into C code https://github.com/b1ek/f2bin`, + + + 'README.md': +`\x1b[1m# My online resume\x1b[0m +Hi! Welcome on my online resume. This app was made with React and XTerm.JS +My name is Alice and I like to build software. + +\x1b[1m# My skills\x1b[0m + +\x1b[1;32m[#####] 100% Web development (PHP,JS,Postgres)\x1b[0m +More: \x1b[4mskills web\x1b[0m + +\x1b[1;31m[## ] 40% Native dev (C/C++/Rust)\x1b[0m +More: \x1b[4mskills nt\x1b[0m + +\x1b[36m[ ] 0% Being cis\x1b[0m +Really suck at this +` } \ No newline at end of file diff --git a/src/emulator/fs.js b/src/emulator/fs.js index 75b5411..3122bc9 100644 --- a/src/emulator/fs.js +++ b/src/emulator/fs.js @@ -1,5 +1,4 @@ const { fs, vol } = require('memfs'); -fs.writeFileSync('README.md', 'uwu'); const { ufs } = require('unionfs'); ufs.use(fs).use(vol.fromJSON(require('./files')));