Skip to content

Instantly share code, notes, and snippets.

View iamjazzar's full-sized avatar
🇵🇸
The code of purpose defines the purpose of coding.

Ahmed Jazzar iamjazzar

🇵🇸
The code of purpose defines the purpose of coding.
View GitHub Profile
@iamjazzar
iamjazzar / tailwind-button-glow.html
Last active December 13, 2024 05:34
Tailwind Button Glow
<!-- Tailwind Play: https://play.tailwindcss.com/0kpNOOXVtR?layout=horizontal -->
<div class="flex h-screen">
<div class="flex basis-1/3 items-center justify-center bg-black">
<button class="rounded-full bg-gradient-to-br from-gray-100/10 px-6 py-2 text-sm font-light text-white shadow-in ring-1 ring-inset ring-gray-500/30 drop-shadow-dark-lg backdrop-blur-sm transition-all duration-200 hover:to-gray-200/5 hover:shadow-in-reverse">Climbs</button>
</div>
<div class="flex basis-1/3 items-center justify-center space-x-7 bg-slate-50">
<button class="rounded-full bg-gradient-to-br from-white px-6 py-2 text-sm font-light shadow-inner ring-1 ring-inset ring-gray-500/30 drop-shadow-lg backdrop-blur-sm transition-all duration-200 hover:to-white/5 hover:shadow-inner-reverse hover:ring-gray-300/50">Climbs</button>
</div>

Keybase proof

I hereby claim:

  • I am iamjazzar on github.
  • I am ahmedaljazzar (https://keybase.io/ahmedaljazzar) on keybase.
  • I have a public key ASDbM9pslukvv_8x0xu2Ewlp9ZR1Yt7z5mqWuUZtakTCYQo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am ahmedaljazzar on github.
  • I am ahmedaljazzar (https://keybase.io/ahmedaljazzar) on keybase.
  • I have a public key ASBoA-9aW1lBxNGXZNAqD17nT2ELcqBDovF0Ao4ZU3eJPwo

To claim this, I am signing this object:

@iamjazzar
iamjazzar / mako.py
Last active March 24, 2021 20:10
Mako Templates for Django Projects
"""
Mako Template Backend
This is the implementation of Mako template backend in order to use
it as a Django Template Backend alternative in this project template
system. This backend is a class that inherits
django.template.backends.base.BaseEngine. It must implement
get_template() and optionally from_string().
"""