Skip to content

Instantly share code, notes, and snippets.

@joserick
joserick / Marquee.md
Last active February 17, 2024 01:34
Tailwind Css Marquee | Text-Overflow (Truncate) with Transition

Marquee.gif

Demo <-- Try Tailwind Marquee (Text-Overflow "Truncate" with Transition)

<!-- Effect Marquee -->
<div class="w-72 truncate">
    <div class="inline-block w-full hover:w-auto active:w-auto">
        <div class="relative left-0 truncate text-3xl hover:left-[calc(18rem-100%)] hover:transition-[left] hover:duration-[4000ms] hover:ease-linear">
            Lorem ipsum dolor sit amet, consectetur adipiscing elit.
 
@joserick
joserick / CNL2.py
Created December 16, 2017 11:21
Python - Click'n'Load 2
'''
***********************************************************************************
Author: Jose Erick C.
Python: v3.6
Based on PHP code http://jdownloader.org/knowledge/wiki/glossary/cnl2#example1
***********************************************************************************
'''
from Crypto.Cipher import AES
import base64