Passionate full-stack developer with over 5 years of experience in innovative web applications.
My journey began studying Physics at the University of Southampton, developing strong problem-solving skills. After gaining valuable experience in the UK, I relocated to Canada to further expand my career in web development.
I'm committed to staying at the forefront of web development trends, continuously updating my skills to deliver exceptional results. My passion for leveraging the latest technologies ensures that every project I undertake is both technically sound and visually stunning.
Whether you're looking for a collaborative partner or someone to bring your vision to life, I'm excited to contribute my skills and experience to your next project. Let's connect and explore how we can push the boundaries of web development together!
1
2
3
4
5
6
const generateCommentString = (n: number, lines: number) => {
let commentString = "*";
if (n === 0) commentString = "/**";
if (n === lines - 1) commentString = "*/";
return commentString;
}
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
SCRIPT_FOLDER="$HOME/Projects/bash"
SCRIPT_FILE="$SCRIPT_FOLDER/$1"
if [ -f $SCRIPT_FILE ]; then
code $SCRIPT_FILE
else
echo '#!/bin/bash' > $SCRIPT_FILE
chmod +x $SCRIPT_FILE
nvim $SCRIPT_FILE
fi
1
2
3
4
5
6
import os
# If node is running kill it
is_node_running = os.popen("ps -e | grep node | wc -l").read()
if int(is_node_running) > 0:
os.system("sudo pkill node")