<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Alfredo Design</title><link>https://alfredogh.com/</link><description>Recent content on Alfredo Design</description><generator>Hugo</generator><language>en</language><lastBuildDate>Mon, 29 Dec 2025 20:21:55 -0600</lastBuildDate><atom:link href="https://alfredogh.com/index.xml" rel="self" type="application/rss+xml"/><item><title>Work</title><link>https://alfredogh.com/work/</link><pubDate>Sun, 28 Dec 2025 16:58:14 -0600</pubDate><guid>https://alfredogh.com/work/</guid><description>&lt;!-- Redirecs to home | Config in theme --&gt;</description></item><item><title>About</title><link>https://alfredogh.com/about/</link><pubDate>Sun, 28 Dec 2025 19:43:24 -0600</pubDate><guid>https://alfredogh.com/about/</guid><description>&lt;p&gt;I’m Alfredo Gutierrez, a product designer. Currently designing operational software for the surrogacy industry at &lt;a href="https://www.orchidsoftsolutions.com/"&gt;Orchid Software Solutions&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Over the past 7 years, I&amp;rsquo;ve helped scale startups and companies by developing custom, reliable software that streamlines business processes across healthcare, surrogacy, legal services, and government contracting industries.&lt;/p&gt;
&lt;p&gt;Outside of work, I’m passionate about surfing, music, learning languages, photography, traveling, and poetry.&lt;/p&gt;
&lt;p&gt;I share my thoughts and tutorials on design, projects, and personal life on my &lt;a href="https://alfredogh.com/blog/"&gt;blog&lt;/a&gt;. You can also see what I’m currently working on in my &lt;a href="https://alfredogh.com/logs/"&gt;professional changelog&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;/p&gt;</description></item><item><title>Blog</title><link>https://alfredogh.com/blog/</link><pubDate>Sun, 28 Dec 2025 18:17:24 -0600</pubDate><guid>https://alfredogh.com/blog/</guid><description>&lt;!-- Config in theme files --&gt;</description></item><item><title>Subscribe</title><link>https://alfredogh.com/subscribe/</link><pubDate>Sun, 28 Dec 2025 16:58:10 -0600</pubDate><guid>https://alfredogh.com/subscribe/</guid><description>&lt;p&gt;Subscribe to the email newsletter for this blog.&lt;/p&gt;
&lt;form method="POST" action="https://micro.blog/users/subscribe/281589"&gt;
 &lt;input type="text" name="email" size="30" placeholder="Your email address" /&gt; 
 &lt;input type="submit" value="Subscribe" /&gt;
&lt;/form&gt;</description></item><item><title>Search</title><link>https://alfredogh.com/search/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://alfredogh.com/search/</guid><description>&lt;script language="javascript"&gt;

var archive_results = {};

function runSearch(q) {
	let results_node = document.getElementById("list_results");
	results_node.innerHTML = "";
	if (q.length &gt; 0) {
		// split query into lowercase words
		let keywords = q.toLowerCase().trim().split(/\s+/);

		for (let i = 0; i &lt; archive_results.items.length; i++) {
			let item = archive_results.items[i];
			let title_lower = item.title.toLowerCase();
			let text_lower = item.content_text.toLowerCase();

			// combine title and text into one searchable string
			let full_text = title_lower + " " + text_lower;

			// check if every keyword exists
			let match = keywords.every(function(k) {
				return full_text.includes(k);
			});

			if (match) {
				let p_node = document.createElement("p"); 
				let link_node = document.createElement("a");
				let d = Date.parse(item.date_published);
				let date_s = new Date(d).toISOString().substr(0, 10);
				let date_node = document.createTextNode(date_s); 
				link_node.appendChild(date_node);
				link_node.href = item.url;
 	let title_node = null;
				if (item.title.length &gt; 0) {
 		title_node = document.createElement("span");
 	title_node.innerHTML = ": &lt;b&gt;" + item.title + "&lt;/b&gt;"
				}
				let s = item.content_text;
				if (s.length &gt; 200) {
					s = s.substr(0, 200) + "...";
				}
 	let text_node = document.createElement("span");
 	text_node.innerHTML = ": " + s
				p_node.appendChild(link_node);
 	if (title_node != null) {
					p_node.appendChild(title_node);
				}
				p_node.appendChild(text_node);
				results_node.appendChild(p_node);
			}
		}
	}
}

function submitSearch(q) {
	runSearch(q);
	
	// push query into URL
	const url = new URL(window.location.href);
	url.searchParams.set("q", q);
	history.pushState({}, "", url);
}

document.addEventListener("DOMContentLoaded", function() {
	let loading_timer = setTimeout(function() {
		// show status text if archive doesn't load very quickly
		document.getElementById("list_loading").style.display = "flex";
	}, 1500);

	fetch("/archive/index.json").then(response =&gt; response.json()).then(data =&gt; {
		archive_results = data;

		clearTimeout(loading_timer);
		document.getElementById("list_loading").style.display = "none";

		// restore from search args
		const url = window.location.href;
		const params = new URLSearchParams(new URL(url).search);
		const q = params.get("q");
		if (q &amp;&amp; (q.length &gt; 0)) {
			document.getElementById("input_search").value = q;
			runSearch(q);
		}
	});
});
	
&lt;/script&gt;
&lt;style&gt;

#search {
	display: none;
}

form {
	display: flex;
	justify-content: center;
}

#list_loading {
	display: none;
	font-size: 14px;
	justify-content: center;
}

.field {
	width: 270px;
	height: 34px;
	font-size: 13px;
	font-weight: 400;
	padding-left: 12px;
	border: 2px solid #eee;
	margin-top: 20px;
	margin-bottom: 20px;
	border-radius: 17px;
	-webkit-appearance: none;
}

&lt;/style&gt;
&lt;form onSubmit="return false;"&gt;
	&lt;input class="field" type="text" name="q" id="input_search" placeholder="Search" onChange="submitSearch(this.value.toLowerCase());"&gt;
&lt;/form&gt;
&lt;div id="list_loading"&gt;
	Loading posts...
&lt;/div&gt;
&lt;div id="list_results"&gt;
&lt;/div&gt;</description></item><item><title>Social</title><link>https://alfredogh.com/social/</link><pubDate>Mon, 29 Dec 2025 20:21:55 -0600</pubDate><guid>https://alfredogh.com/social/</guid><description>&lt;p&gt;&lt;a href="https://alfredogh.com/contact"&gt;&lt;i class="ph ph-envelope"&gt;&lt;/i&gt;&lt;/a&gt;
&lt;a href="https://linkedin.com/in/gutifredo"&gt;&lt;i class="ph ph-linkedin-logo"&gt;&lt;/i&gt;&lt;/a&gt;
&lt;a href="https://mastodon.design/@alfredo"&gt;&lt;i class="ph ph-mastodon-logo"&gt;&lt;/i&gt;&lt;/a&gt;
&lt;a href="https://bsky.app/profile/alfredo.design"&gt;&lt;i class="ph ph-butterfly"&gt;&lt;/i&gt;&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Archive</title><link>https://alfredogh.com/archive/</link><pubDate>Sun, 28 Dec 2025 16:58:10 -0600</pubDate><guid>https://alfredogh.com/archive/</guid><description/></item><item><title>Contact</title><link>https://alfredogh.com/contact/</link><pubDate>Sun, 28 Dec 2025 16:58:10 -0600</pubDate><guid>https://alfredogh.com/contact/</guid><description>&lt;p&gt;To contact me feel free to send me an email at &lt;a href="mailto:alfredo@alfredo.design"&gt;alfredo@alfredo.design&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;or use the contact form below:&lt;/p&gt;
&lt;script data-letterbirduser="alfredo" src="https://letterbird.co/embed/v1.js"&gt;&lt;/script&gt;</description></item><item><title>Intro</title><link>https://alfredogh.com/intro/</link><pubDate>Sun, 28 Dec 2025 16:58:10 -0600</pubDate><guid>https://alfredogh.com/intro/</guid><description>&lt;p&gt;&lt;img src="https://alfredogh.com/uploads/2025/16e37fd268.png" alt="profile.png"&gt;&lt;/p&gt;
&lt;h1&gt;&lt;span&gt;hey!&lt;/span&gt; &lt;span&gt;Alfredo&lt;/span&gt; &lt;span&gt;here.&lt;/span&gt;&lt;/h1&gt;
## A Product Designer
&lt;p&gt;Creating digital products for startups and designing websites that support brands&amp;rsquo; marketing strategies.&lt;/p&gt;</description></item><item><title>Logs</title><link>https://alfredogh.com/logs/</link><pubDate>Sun, 28 Dec 2025 16:58:10 -0600</pubDate><guid>https://alfredogh.com/logs/</guid><description/></item><item><title>Not Found</title><link>https://alfredogh.com/404.html</link><pubDate>Sun, 28 Dec 2025 16:58:10 -0600</pubDate><guid>https://alfredogh.com/404.html</guid><description>&lt;div class="error-page"&gt;
 &lt;h1 class="error-code"&gt;404&lt;/h1&gt;
 &lt;p class="error-message"&gt;Page not found&lt;/p&gt;
 &lt;p class="error-description"&gt;The page you're looking for doesn't exist or has been moved.&lt;/p&gt;
 &lt;a href="https://alfredogh.com/" class="error-link"&gt;Go back home&lt;/a&gt;
 &lt;/div&gt;</description></item><item><title>Photos</title><link>https://alfredogh.com/photos/</link><pubDate>Sun, 28 Dec 2025 16:58:10 -0600</pubDate><guid>https://alfredogh.com/photos/</guid><description/></item><item><title>AI Content Emotion Analyzer</title><link>https://alfredogh.com/2025/12/27/ai-content-emotion-analyzer.html</link><pubDate>Sat, 27 Dec 2025 23:01:18 -0600</pubDate><guid>https://alfredogh.com/2025/12/27/ai-content-emotion-analyzer.html</guid><description>&lt;p&gt;Web design for Watsonfinds a sentiment analysis that predicts the evoked emotions by a piece of content.&lt;/p&gt;
&lt;p&gt;IBM was one of the first companies who started building solutions with artificial intelligence and I was amazed by this new approach, specially by the &lt;a href="https://tone-analyzer-demo.ng.bluemix.net/?cm_mc_uid=38480465967815654102949&amp;amp;cm_mc_sid_50200000=31230421565410294965&amp;amp;cm_mc_sid_52640000=39140861565410294987"&gt;Tone Analyzer&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Inspired by this, Max Ortu and I, had the idea to create a sentiment analysis that could provide, to authors, copywriters and all kinds of content creators, insights about the emotional tones of their content and a way to determine the emotions that their audience may perceive as they read it.&lt;/p&gt;</description></item><item><title>Social Sentiment Dashboard</title><link>https://alfredogh.com/2025/12/27/social-sentiment-dashboard.html</link><pubDate>Sat, 27 Dec 2025 22:57:34 -0600</pubDate><guid>https://alfredogh.com/2025/12/27/social-sentiment-dashboard.html</guid><description>&lt;p&gt;UX/UI design of a web app that tells social media influencers how people feel about their brands.&lt;/p&gt;
&lt;p&gt;A web app that works as a social media sentiment analysis tool to inform companies and influencers about how people feel regarding their brands by analyzing the emotional tone of the comments made by their audiences on their posts.&lt;/p&gt;
&lt;p&gt;The app will use AI to scan and analyze every comment made on a specific post and show the predominant emotion. This will allow influencers and large accounts to filter comments by emotions and reach out to individuals who may be having a challenging experience with their brand.&lt;/p&gt;</description></item><item><title>GovOps Contractor Portal</title><link>https://alfredogh.com/2025/12/27/govops-contractor-portal.html</link><pubDate>Sat, 27 Dec 2025 22:48:10 -0600</pubDate><guid>https://alfredogh.com/2025/12/27/govops-contractor-portal.html</guid><description>&lt;p&gt;UX/UI design of a web app that helps contractors find and manage government business opportunities.&lt;/p&gt;
&lt;p&gt;I was hired by FBO Biz to design a cloud-base solution that would bring a better way of managing and winning government contracts. &lt;/p&gt;
&lt;p&gt;The biggest challenge was that the public solicitations published by the government had lack of organization. That’s why my aim was to design a product where the user could easily find and bid on solicitations, and at the same time maintaining an organized workflow during the bidding process.&lt;/p&gt;</description></item><item><title>My alternative solution for reverting the mouse zooming scroll direction when switching between Figma and Adobe XD</title><link>https://alfredogh.com/2022/05/01/my-alternative-solution-for-reverting.html</link><pubDate>Sun, 01 May 2022 10:09:00 -0600</pubDate><guid>https://alfredogh.com/2022/05/01/my-alternative-solution-for-reverting.html</guid><description>&lt;p&gt;&lt;img src="https://alfredogh.com/uploads/2025/final-1030x681.jpg" alt="final-1030x681.jpg"&gt;&lt;/p&gt;
&lt;p&gt;I use Adobe XD regularly for my full-time job, while Figma is my go-to for personal projects. Consequently, I’m eternally oscillating between these two apps on a daily basis.&lt;/p&gt;
&lt;p&gt;Having spent the whole day on Adobe XD, transitioning to Figma is somewhat peculiar due to the contrasting scrolling direction for zoom-in and zoom-out operations. Although neither direction seems inherently correct or incorrect, for some reason, Figma’s method appears more intuitive to me.&lt;/p&gt;</description></item><item><title>More posts coming very soon!</title><link>https://alfredogh.com/2018/03/26/more-posts-coming-very-soon.html</link><pubDate>Mon, 26 Mar 2018 13:37:00 -0600</pubDate><guid>https://alfredogh.com/2018/03/26/more-posts-coming-very-soon.html</guid><description>&lt;p&gt;I&amp;rsquo;m currently working on this section and getting ready a couple of blog posts about UX design, tools, and productivity&lt;/p&gt;</description></item></channel></rss>