Skip to content

Instantly share code, notes, and snippets.

View x7dl8p's full-sized avatar
☝️
Long live palestine

Mohammad x7dl8p

☝️
Long live palestine
View GitHub Profile
@x7dl8p
x7dl8p / horizontal-scrolling.tsx
Last active February 2, 2026 09:01
Good-looking continuous layout, no dependencies, two horizontal rows, sliding JSX.
<style jsx>{`
@keyframes marquee {
from { transform: translateX(0%); }
to { transform: translateX(-50%); }
}
@keyframes marqueeReverse {
from { transform: translateX(-50%); }
to { transform: translateX(0%); }
}
.marquee { display: flex; width: max-content; }
@x7dl8p
x7dl8p / fonts.conf
Created August 13, 2025 13:01
how to get mac text rendering in linux
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="font">
<edit name="antialias"><bool>true</bool></edit>
<edit name="hinting"><bool>false</bool></edit>
<edit name="rgba"><const>rgb</const></edit>
<edit name="lcdfilter"><const>lcddefault</const></edit>
</match>
</fontconfig>