CCSeeker: AI-Powered YouTube Creator Discovery
A Streamlit application that automates niche creator discovery using a blend of AI and search algorithms for relevance and similarity rankings.
Leveraging a decade of Public Policy and Digital Strategy to build intelligent, user-centric data solutions.
A Streamlit application that automates niche creator discovery using a blend of AI and search algorithms for relevance and similarity rankings.
Survey analysis for a local government of 447K residents — Power BI dashboards built in 2023, then revisited in 2025 to add an unsupervised NLP pipeline that automatically extracts and clusters keywords from open-text responses.
Comprehensive data cleaning exercise on real estate data, demonstrating SQL proficiency with standardization, parsing, and stored procedures.
A comprehensive data cleaning exercise using the Nashville Housing dataset, demonstrating SQL proficiency for data quality improvement. This project showcases essential data engineering skills for preparing real-world datasets for analysis.
ALTER TABLE NashvilleHousing
ALTER COLUMN SaleDate DATE;
Consolidated inconsistent land use categories:
UPDATE NashvilleHousing
SET LandUse = 'VACANT RESIDENTIAL LAND'
WHERE LandUse = 'VACANT RES LAND';
Used self-joins to populate missing property addresses from matching ParcelIDs:
UPDATE a
SET PropertyAddress = ISNULL(a.PropertyAddress, b.PropertyAddress)
FROM NashvilleHousing a
JOIN NashvilleHousing b
ON a.ParcelID = b.ParcelID
AND a.[UniqueID] <> b.[UniqueID]
WHERE a.PropertyAddress IS NULL;
Split combined address fields into granular components using PARSENAME:
-- PropertyAddress → PropertySplitAddress, PropertySplitCity
-- OwnerAddress → OwnerSplitAddress, OwnerSplitCity, OwnerSplitState
Converted Y/N to Yes/No for consistency:
UPDATE NashvilleHousing
SET SoldAsVacant = CASE
WHEN SoldAsVacant = 'Y' THEN 'Yes'
WHEN SoldAsVacant = 'N' THEN 'No'
ELSE SoldAsVacant
END;
Removed redundant columns after extracting useful data:
ALTER TABLE NashvilleHousing
DROP COLUMN OwnerAddress, TaxDistrict, PropertyAddress;
Created a reusable procedure for identifying low-priced properties:
CREATE PROCEDURE small_prices
@Unique_ID_param FLOAT
AS
BEGIN
SELECT *
FROM NashvilleHousing
WHERE SalesPrice <= 150000
AND UniqueID = @Unique_ID_param;
END
Unable to share SQL work from previous roles due to confidentiality, I chose this well-known dataset to demonstrate data cleaning fundamentals—a critical skill for any data engineering or analytics position.
Humai Institute
Vector DBs, RAG, Google AI, Finetuning open source, Langchain, LLMOps, AI Agents.
International Clients
Providing data analysis, engineering, and digital marketing services remotely while living abroad.
Humai Institute
Vector DBs, RAG, Google AI, Finetuning open source, Langchain, LLMOps, AI Agents.
International Clients
Providing data analysis, engineering, and digital marketing services remotely while living abroad.
Digital House
Python, Numpy, Pandas, Statistics, Machine Learning, Scikit-learn, Model evaluation, Classification, Clustering, API deployment.
Digital House
Python, Numpy, Pandas, Statistics, Machine Learning, Scikit-learn, Model evaluation, Classification, Clustering, API deployment.
Digital House
SQL, Power BI, Tableau, Statistical Modeling.
Senate of Argentina
Political Advisor of National Senator Luis Carlos Petcoff Naidenoff. Built political discourse for parliamentary activity, TV & Radio appearances, and Social Media.
Digital House
SQL, Power BI, Tableau, Statistical Modeling.
Senate of Argentina
Political Advisor of National Senator Luis Carlos Petcoff Naidenoff. Built political discourse for parliamentary activity, TV & Radio appearances, and Social Media.
Digital House
Comprehensive digital marketing training with Fernando Cerimedo, current Argentina's Presidential advisor.
Digital House
Comprehensive digital marketing training with Fernando Cerimedo, current Argentina's Presidential advisor.
Pontificia Universidad Católica Argentina
Thesis: Management of urban solid waste in the Municipality of Tigre.
Municipality of Tigre
Managed official social media accounts. Monitored digital activities and reported to key government officials.
Pontificia Universidad Católica Argentina
Thesis: Management of urban solid waste in the Municipality of Tigre.
Municipality of Tigre
Managed official social media accounts. Monitored digital activities and reported to key government officials.