I'm a passionate software developer who builds applications using Swift and modern web technologies.
let user = User(
name: "Erik Bautista Santibanez",
role: "Mobile & Web Developer",
home: "Irvine, CA"
)
> print(user.about())
// I'm a passionate software developer who builds applications using Swift and modern web technologies.
let user = User {
name: "Erik Bautista Santibanez",
role: "Mobile & Web Developer",
home: "Irvine, CA"
};
> println!("{}", user.about());
// I'm a passionate software developer who builds applications using Swift and modern web technologies.
const user: User = {
name: "Erik Bautista Santibanez",
role: "Mobile & Web Developer",
home: "Irvine, CA"
};
> console.log(user.about());
// I'm a passionate software developer who builds applications using Swift and modern web technologies.
struct Portfolio: HTML {
var body: some HTML {
HomePage()
}
}
Website Redesign
I redesigned my website, but instead of using traditional web frameworks, I used Swift! I’ve also built a library called swift-web which contains tools used to build this website.
When I set up my Hackintosh, I couldn’t control the RGB keyboard on my MSI laptop since the software was supported on Windows only. To fix this issue, my first approach was to build an app using AppKit, C++, and Objective-C to communicate with the HID keyboard, which was ultimately called SSKeyboardHue.
Later, I decided to switch the communication protocol to Swift and redesign the front end using SwiftUI.
Both projects are available on GitHub — feel free to check them out!