Skip to content

Instantly share code, notes, and snippets.

View hamelsmu's full-sized avatar
💻
Always learning.

Hamel Husain hamelsmu

💻
Always learning.
View GitHub Profile
@hamelsmu
hamelsmu / modern_web_applications_in_pure_python.md
Created November 2, 2024 18:57
Modern web applications in pure Python

Read docs

Modern web applications in pure Python

Built on solid web foundations, not the latest fads - with FastHTML you can get started on anything from simple dashboards to scalable web applications in minutes.

Learn more Watch intro 7min 30sec

Try now

@hamelsmu
hamelsmu / on_this_page.md
Created November 2, 2024 18:55
On this page

Practical Deep Learning for Coders

  • __

__

  1. Practical Deep Learning
  • Practical Deep Learning
@hamelsmu
hamelsmu / the_first_certificate_in_deep_learning.md
Created November 2, 2024 18:52
The First Certificate in Deep Learning

fast.ai

  • About
  • __
  • __
  • __

The First Certificate in Deep Learning

courses

@hamelsmu
hamelsmu / your_ai_product_needs_evals.md
Created October 11, 2024 17:23
Your AI Product Needs Evals

Your AI Product Needs Evals

LLMs

How to construct domain-specific LLM evaluation systems.

Author

Hamel Husain

@hamelsmu
hamelsmu / Async_parallel.ipynb
Last active October 9, 2024 04:12
dataroom/nbs/db_queue.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@hamelsmu
hamelsmu / structured_outputs.md
Created October 7, 2024 18:30
Structured Outputs

Structured Outputs

Introduction

JSON is one of the most widely used formats in the world for applications to exchange data.

Structured Outputs is a feature that ensures the model will always generate responses that adhere to your supplied JSON Schema, so you don't need to worry about the model omitting a required key, or hallucinating an invalid enum value.

Some benefits of Structed Outputs include:

@hamelsmu
hamelsmu / cracking_the_c-suite_'how_to_get_and_master_key_executive_roles'.md
Created September 30, 2024 22:30
Cracking the C-suite 'How to Get and Master Key Executive Roles'

All coursesLeadership & career

Share

Cracking the C-suite 'How to Get and Master Key Executive Roles'

4.8

(20 ratings)

Comparing Vanilla JS with HTMX and Hyperscript

🧑 human (Sep 21, 2024, 10:10 AM)

Compare these two approaches, one using vanilla js with HTMX and one using hyperscript. Explain the syntax of Hyperscript carefully to a programmer that has no knowledge of hyeprscript

<plain-js-example>
<button id="contacts-btn" hx-get="/contacts" hx-target="body"> ①
  Get Contacts
</button>
 ②
@hamelsmu
hamelsmu / fastcore.md
Created September 11, 2024 21:31
Fastcore Symbol List

fastcore Module Documentation

fastcore.basics

Basic functionality used in the fastai library

  • def ifnone(a, b) b if a is None else a

  • def maybe_attr(o, attr)

@hamelsmu
hamelsmu / basic_functionality.md
Created September 11, 2024 20:25
Basic functionality

Basic functionality

Basic functionality used in the fastai library

Basics


source