I'm a passionate full stack software developer with a strong foundation in building scalable web, mobile, and automation solutions. Currently working as a Full Stack Software Engineer at Fidelity Investments on the Private Shares platform, I specialize in developing financial technology solutions that serve institutional and individual investors.
My experience spans from enterprise IT operations at Harvard University to building innovative fintech solutions at one of the world's largest financial services companies. I integrate cutting-edge machine learning techniques where needed while focusing on end-to-end system design and financial market applications.
Beyond technology, I'm actively engaged in leadership roles on campus and competitive sailing. As president and captain of the Wentworth Sailing Team, I've led the team to its highest performing season since 2019. During summers, I compete in large yacht racing in Marblehead, MA, combining my passion for competition with strategic thinking and teamwork.
Fidelity Investments Β· Full-time
Harvard University Β· Internship
MouthWatchers Β· Contract
Wicked Pickleball Β· Contract
Harvard University Β· Internship
Engineering Hope Β· Contract
Harvard University Β· Internship
Wentworth Institute of Technology
The technologies and tools I specialize in to build innovative solutions.
A showcase of my recent work and technical projects.
Fine-tuning a Flan-T5 model for answering questions about sailing rules and interpreting racing scenarios. The model is trained on JSON data containing instructions, optional context, and expected outputs to create an assistant that can answer questions about sailing rules.
Systematic transformation of an HP ZBook Fury laptop into a robust, always-on home server infrastructure. Solved critical challenges including WSL2's idle shutdown behavior, secure SSH-over-Tailscale connectivity, and GPU passthrough configuration for CUDA workloads.
A scalable microservice for scanning and categorizing thousands of retail products with machine learning integration.
A Chatbot utilizing Natural Language Processing to assist new hires at Harvard University Information Technology by referencing documented information from past technicians by using natural language in a conversational format rather than fishing through a knowledge base.
This project implements a Convolutional Neural Network (CNN) and Long Short-Term Memory (LSTM) model to predict stock prices. The model uses historical stock data, along with technical indicators, to forecast future stock prices. This financial technology solution demonstrates expertise in quantitative analysis and algorithmic trading strategies, directly applicable to private market investment platforms like Fidelity Private Shares.
DSPM (Dank's Squash Pie Monitor) is a Python-based GUI application that monitors multiple Linux systems from a macOS or Windows environment. Leveraging SSH connections, the application periodically retrieves critical system metrics such as CPU usage, memory consumption, disk usage, and system uptime.
BullBar is a lightweight SwiftUI macOS utility that floats above all windows, displaying a fully customizable, always-on-top strip of real-time stock quotes via a secure Cloudflare Workers proxy to Financial Modeling Prepβs batch APIβno user credentials required. Features include adjustable scroll speed, clamped hourly refresh intervals (to stay within free-tier limits), light/dark theming, low-power mode and βSelect Allβ/βDeselect Allβ ticker management for maximum battery savings and simplicity.
An iOS app written in Swift and optimized for iPhoneβwith functionality also on iPad. This ongoing project is published on the App Store and continuously receives feature updates.
Professional certifications and credentials that validate my technical expertise and knowledge.
βJason worked with our Endpoint Systems Management team as a coop. He quickly integrated himself into the team and found several ways to add value. He helped solve a long running problem of automating and standardizing the names for Mac computers. He then switched platforms and coded a solution for a Windows issue. Jason is a strong team player, an inventive problem solver, and an excellent programmer. I am confident that he will add value to any organization he works for.β
"A computer science major with minors in data science, business analytics, applied mathematics, and computer networking, Jason Dank's pursuit of a wide variety of academic knowledge has also led him to be actively engaged in various organizations on campus. Jason serves on the Wentworth Student Government (WSG) as the Executive Vice President and Chair to the Board of Directors. He represents the student body serving on the universities' Information Technology Steering Committee (ITSC) and the School of Computing and Data Sciences (SCDS) AI task force. He is also the president and captain of the Wentworth Sailing Team, and during the summer, he competes in large yacht racing in Marblehead, MA. Jason is passionate about developing resources for artificial intelligence, specifically in fine-tuning AI modeling and application development. This has led to creating several active AI applications while at Wentworth, including a full-stack web application that enables customers to get real-time price data on items available at the campus grocery store via their cell phones. He also has two others that he has published in the Apple App store. Without the generous scholarship support he has received, Jason believes that the success he has achieved attending Wentworth would not have been possible."
Run the code to see my contact information!
/**
* Contact Information
* Run this code to display my contact details
*/
class ContactInfo {
constructor() {
this.name = "Jason Dank";
this.email = "jasondank@yahoo.com";
this.location = "Boston, Massachusetts";
this.linkedin = "linkedin.com/in/jason-dank";
this.github = "github.com/jdank417";
}
displayContactInfo() {
console.log(`Name: ${this.name}`);
console.log(`Email: ${this.email}`);
console.log(`Location: ${this.location}`);
console.log(`LinkedIn: ${this.linkedin}`);
console.log(`GitHub: ${this.github}`);
}
}
const myContact = new ContactInfo();
myContact.displayContactInfo();