Skip to content

Instantly share code, notes, and snippets.

@skymaiden
skymaiden / 01_context.md
Last active June 9, 2025 21:00
Notes from a front-end dev on the Hugging Face "Agents Course"

Learning AI Agents with Hugging Face:
Notes from a front-end web developer

I am a front-end developer who has been working with HTML/CSS/Javascript (and some PHP) for many years, building production-ready web apps using various frameworks and libraries.

I recently learned Python to start playing with the APIs of LLMs like Google's Gemini and OpenAI's GPT-4o. I have also built a few multi-agent systems using CrewAI, deploying them with a simple API wrapper made with Flask.

This space is a place where I'm taking notes for the Agents Course by Hugging Face. 🤗

The course content is great, and the Python syntax isn't a problem – but the Hugging Face platform is super confusing for a developer like me who is used to Github, Codepen,

@skymaiden
skymaiden / functions.php
Created September 2, 2018 19:53
Format WooCommerce currencies per WPML language
<?php
// Show currency symbol on the right for prices in French language
function filter_currency_pos( $format ) {
$current_lang = apply_filters( 'wpml_current_language', NULL );
if ($current_lang == 'fr') {
$format = '%2$s&nbsp;%1$s';
}
return $format;
};
@skymaiden
skymaiden / social-sharing-links.html
Last active December 29, 2015 16:09
Simple social sharing links (no JS).
@skymaiden
skymaiden / scrolltop
Created June 20, 2013 13:01
Simple animated "scroll to top" button script
$('#back-top').on('click', function () {
$('body,html').animate({
scrollTop: 0
}, 800);
return false;
});