diff --git a/react/resume/src/emulation/commands/index.js b/react/resume/src/emulation/commands/index.js index fd7e5cd..56c3ff2 100644 --- a/react/resume/src/emulation/commands/index.js +++ b/react/resume/src/emulation/commands/index.js @@ -31,10 +31,16 @@ const commands = (terminal) => { socials: { description: 'View my social links', fn: require('./social') + }, + social: { + description: 'View my sociala links', + fn: require('./social'), + unlisted: true, } }; commands.help = { + unlisted: true, fn: () => { return (
@@ -43,7 +49,7 @@ const commands = (terminal) => {
                         
                             {
                                 Object.keys(commands).map((cmd, i) => {
-                                    if (cmd == 'help') return;
+                                    if (commands[cmd].unlisted) return;
                                     return 
                                         {cmd}
                                          : 
diff --git a/react/resume/src/emulation/commands/skills.js b/react/resume/src/emulation/commands/skills.js
index ab5c8e4..89b3115 100644
--- a/react/resume/src/emulation/commands/skills.js
+++ b/react/resume/src/emulation/commands/skills.js
@@ -1,11 +1,70 @@
 import Colored from '../../helpers/color';
 
-module.exports = () => {
+const Title = (p) => {return 

{...p.children}

} + +const skills = { + web: ( +
+            My web experience
+            

+ Most of my web projects are listed on GitHub.
+ I like Express.JS and Laravel, but also want to try Rust.
+
+ On frontend, i like to write no-js HTML using
+ template engines, or use React for complex apps like this one. +

+
+

+ My projects: +

+ + + + + + + + + + + + + + + + + + + + + +
NameSourcesDescription
blek! Site + Link + Second re write of my website in Laravel
homepage.js + Link + Third re write of my website in JS/Express.JS/Pug and some other libraries
+
+ ), + nt: ( +
+            My native dev experience
+            

+ It isn't much +

+
+ ) +} + +module.exports = (args) => { + + if (skills[args]) return skills[args]; + return (
         Web dev (PHP & JS)
         
[#####] 100%
My main work field
+ More: skills web

C/C++/Rust native dev
@@ -18,7 +77,7 @@ module.exports = () => { Do this all the time. I run linux on my laptop, pc and server

- Being cishet
+ Being cis
[ ] 0%
Never liked it

diff --git a/react/resume/src/emulation/commands/social.js b/react/resume/src/emulation/commands/social.js index 488382e..e4b38cf 100644 --- a/react/resume/src/emulation/commands/social.js +++ b/react/resume/src/emulation/commands/social.js @@ -1,9 +1,17 @@ +import Color from '../../helpers/color'; +const Link = (prop) => { + return {...prop.children} +} + module.exports = () => { return

- My website
- Github page
- Gitea page
- Email
- Telegram
+ My socials are listed below:
+
+ {'>'} My website
+ {'>'} Github page
+ {'>'} Gitea page
+ {'>'} Email
+ {'>'} Telegram
+ (all links are clickable)

; } \ No newline at end of file diff --git a/react/resume/src/helpers/color.js b/react/resume/src/helpers/color.js index 31b552c..a6c787d 100644 --- a/react/resume/src/helpers/color.js +++ b/react/resume/src/helpers/color.js @@ -1,3 +1,3 @@ module.exports = (p) => { - return {...p.children} + return {...p.children} } \ No newline at end of file