#javascript

52 posts · Last used 3h

Back to Timeline
@lobsters@mastodon.social · 3h ago
0
0
0
@lobsters@mastodon.social · 1d ago
0
0
0
@ramadit@misskey.id · 2d ago

Hai guys! Aku mau share projek yang sudah aku kembangkan sejak lama, namanya Maki.

Maki (巻, yang artinya “gulung”) itu code generator simpel buat bikin konfigurasi smooth scroll, terutama buat pustaka Lenis. Alat ini didesain supaya performa website kamu makin maksimal, apalagi kalau kamu berkecimpung di dunia animasi web atau bidang sejenisnya. Intinya, tujuan projek ini adalah ngasih kamu setelan smooth scrolling yang bener-bener pas dan sesuai kebutuhan!

Yang mau coba, monggo click link di bawah https://makiapp.vercel.app/

Tech Stacks

  1. NextJS dari Vercel
  2. GSAP
  3. Lenis dari darkroom.engineering
  4. Tailwind CSS
  5. LottieFiles

Catatan: Projek ini sudah dibuat sebelum Facebook ku dibanned tanpa sebab ​:satania_cry:#gsap #website #animation #webanimation #html #tailwindcss #javascript

0
0
0
@lobsters@mastodon.social · 3d ago
0
0
0
@lobsters@mastodon.social · 3d ago
0
0
0
@StevenSaus@faithcollapsing.com · 4d ago
uMap – web application for creating and publishing custom interactive maps uMap is a web application for creating and publishing custom interactive maps based on OpenStreetMap layers. #javascript #python #scientific #web-apps https://www.linuxlinks.com/umap-create-publish-custom-interactive-maps/
1
0
5
@lobsters@mastodon.social · 4d ago
0
0
0
@lobsters@mastodon.social · 6d ago
1
0
1
@lobsters@mastodon.social · Apr 23, 2026
Protovoters: Free, accessible voter files for democracy https://lobste.rs/s/dotsw2 #show #a11y #culture #javascript #release https://protovoters.org
0
0
0
@lobsters@mastodon.social · Apr 21, 2026
0
0
0
@lobsters@mastodon.social · Apr 21, 2026
0
0
0
In reply to
@kkarhan@jorts.horse · Apr 21, 2026
@hsza@social.tudbut.de In this case I think hard regulation is necessary because softer means failed. We don't "ask" malware to not be spread, we combat malware.And in my experience #JS is only used to violate consent, privacy and security! It is perfectly possible to build featureful sites without using #JavaScript! I've been nice about it in the past... Now I won't because being polite didn't do shit!
0
0
1
In reply to
@kkarhan@jorts.horse · Apr 21, 2026
@lunya@sk.lunya.pet #CAPTCHAs should be outlawed, alongside #JavaScript!
0
2
0
@lobsters@mastodon.social · Apr 21, 2026
0
0
0
@lobsters@mastodon.social · Apr 17, 2026
Psatina: the sprinkle-oriented JavaScript library by @dz4k@indieweb.social https://lobste.rs/s/txrqku #javascript #web https://psatina.dz4k.com/
0
0
0
@guiadeti@flipboard.social · Apr 16, 2026
0
0
0
@lobsters@mastodon.social · Apr 16, 2026
0
0
1
@lobsters@mastodon.social · Apr 15, 2026
0
0
0
@freekmurze@phpc.social · Apr 15, 2026
0
0
0
@aral@mastodon.ar.al · Feb 27, 2026
🥳 New Kitten Release This one fixes a bug that you would have encountered had you had an asynchronous component (component with asynchronous render method) nested more than one-level deep within synchronous components. (Kitten’s html renderer transparently supports both synchronous and asynchronous render methods.) So, this (taken from my unit test), for example, works correctly now: ```js class AsynchronousOtherName extends KittenComponent { async html () { await new Promise(resolve => setTimeout(resolve, 10)) return kitten.html`Balkan` } } class SynchronousName extends KittenComponent { /* NOT async */ html () { return kitten.html`Aral <${AsynchronousOtherName.connectedTo(this)} />` } } class SynchronousTemplate extends KittenComponent { html ({ SLOT }) { return kitten.html`[Before slot]${SLOT}[After slot]` } } class MyPage extends KittenPage { html () { return kitten.html` <${SynchronousTemplate.connectedTo(this)}> This should render all at once after a short delay.

Hello, <${SynchronousName.connectedTo(this)} />

3
1
3