#JavaScript

Deno's avatar
Deno

@[email protected]

Deno 2.1 is out 🎉️
✈️️ first class Wasm support
🌳️ Long Term Support branch
⭐️ Improved dependency management
and much more!

deno.com/blog/v2.1

^Kur0den\d{4}$ :irai_houki_tyuu:'s avatar
^Kur0den\d{4}$ :irai_houki_tyuu:

@[email protected]

『[Deno] Fresh入門ハンズオン ~ プロジェクト作成からデプロイまで - Qiita』 - https://qiita.com/access3151fq/items/772cd0a22d7eea8d4d03

えいいち(E.C.H)'s avatar
えいいち(E.C.H)

@[email protected]

dailycoding - 20241114 / graphic

code : openprocessing.org/sketch/2445

Deno's avatar
Deno

@[email protected]

Deno 🤝️ @drizzleorm

deno.com/blog/build-database-a

Angelika Cathor's avatar
Angelika Cathor

@[email protected]

I wrote my thoughts on how to decide what's a regular dependency and what's a dev dependency in a JavaScript app (not library). It's surprisingly unclear... angelika.me/2024/11/11/depende

GENKI's avatar
GENKI

@[email protected]

が追いついていない、という投稿を見かけて、妙に納得するなど

Espen Andersen's avatar
Espen Andersen

@[email protected]

An post is probably appropriate. So: Hello from !

I'm here hoping to find interesting and other nerdy projects, in addition to sharing my own stuff.

I've been fiddling with microcontroller/WiFi modules for a while, and will probably post my share of esp32 related projects.

My primary programming languages are

I do design with , simple 2D design with and 3D work in .

I write about some of my projects on my personal blog, espenandersen.no

My GitHub repository is found at github.com/espena

(Image from my garage workbench)

Garage workbench
Garage workbench
Karsten Schmidt's avatar
Karsten Schmidt

@[email protected]

Very much liking the succinctness of the JS Compression Streams API[1] and wish I'd known about this a couple of years earlier. Here're some small helpers to compress or decompress a byte array...

I've just also pushed a new version of thi.ng/genart-api (v0.11.0) in which the reference implementation platform adapter now uses gzip compression for serializing the data of image maps/parameters (in ~50-60% of the original size)...

[1] developer.mozilla.org/en-US/do

(edit: removed obsolete `async`)

TypeScript source code:

```
const compressBytes = (
	buf: TypedArray,
	fmt: CompressionFormat = "gzip"
) => pipe(buf, new CompressionStream(fmt));

const decompressBytes = (
	buf: Uint8Array,
	fmt: CompressionFormat = "gzip"
) => pipe(buf, new DecompressionStream(fmt));

// shared compression/decompression helper
const pipe = async (
	buf: TypedArray,
	stream: ReadableWritablePair<any, Uint8Array>
) =>
	new Uint8Array(
		await new Response(
			new Blob([buf]).stream().pipeThrough(stream)
		).arrayBuffer()
	);
```
TypeScript source code: ``` const compressBytes = ( buf: TypedArray, fmt: CompressionFormat = "gzip" ) => pipe(buf, new CompressionStream(fmt)); const decompressBytes = ( buf: Uint8Array, fmt: CompressionFormat = "gzip" ) => pipe(buf, new DecompressionStream(fmt)); // shared compression/decompression helper const pipe = async ( buf: TypedArray, stream: ReadableWritablePair<any, Uint8Array> ) => new Uint8Array( await new Response( new Blob([buf]).stream().pipeThrough(stream) ).arrayBuffer() ); ```
Karsten Schmidt's avatar
Karsten Schmidt

@[email protected]

Various and updates from this week:

- Added null pointer checks & guards in thi.ng/wasm-api. This also includes support for structs with fields using Zig-style optional pointers.
- Updated the thi.ng/wasm-api-bindgen code generator for to produce smaller code for structs using many string fields
- Did major ground work on bindings of core thi.ng/genart-api functionality (see small demo below)
- Fixed/updated/simplified time provider logic
- Updated the debug time provider with its FPS analytics/visualization overlay, now computing moving min/max and moving average (default period = 200 frames) and the viz is dynamically/smoothly rescaling to current peak
- Released new GenArtAPI v0.9.0

As for the Zig/WASM example: This is only interesting from a technical POV, no visuals here! All canvas drawing and parameter declarations/evaluations are done via Zig, using the aforementioned thi.ng/wasm-api infrastructure to provide a new API module which can be seamlessly used with the other hybrid WASM API modules, here for DOM creation (thi.ng/wasm-api-dom) and to handle Canvas2D drawing (thi.ng/wasm-api-canvas).

At the moment, this GenArtAPI WASM module is still a fixed part of this example, but will eventually be extracted & distributed as separate package.

Demo (with param editor):
demo.thi.ng/genart-api/param-e

Choose one of the two GUI implementations, then make any parameter changes and you should see the new values applied immediately (btw. the demo is likely not very usable on mobile)...

Source code (TypeScript in `/src`, Zig in `/zig` directories):
github.com/thi-ng/genart-api/t

Antonin Delpeuch's avatar
Antonin Delpeuch

@[email protected]

New blog post: mergiraf.org, a syntax-aware merge driver for .

Supports , , , , , , , , and so far, and it's quite easy to add support for more thanks to .

antonin.delpeuch.eu/posts/merg

Get it on : codeberg.org/mergiraf/mergiraf

Deno's avatar
Deno

@[email protected]

Deno is a JavaScript package manager with more flexibility:
📦️ npm and JSR
🛠️️ package.json and deno.json
👟️ fast

deno.com/blog/your-new-js-pack

randomMDN's avatar
randomMDN

@[email protected]

Greetings to all developers and enthusiasts.

I'm a bot, now on a new instance at front-end.social/! If you're already following, the transition should happen automatically. However, if you have any bookmarked posts, I recommend re-bookmarking the direct links to articles in your browser for safe keeping.

Starting December 15th, the original instance will no longer be active. I'll send a reminder before then.

Aral Balkan's avatar
Aral Balkan

@[email protected]

Really enjoying adding end-to-end tests to Kitten¹ using Playwright² and my own little Kitten controller class for starting/stopping/otherwise interacting with the Kitten server.

Just wrote some that comprehensively test identity creation and authentication for Small Web places:

codeberg.org/kitten/app/src/br

Lots more to write but I think I’ve found a good flow :)

:kitten:💕

¹ kitten.small-web.org
² playwright.dev

Karsten Schmidt's avatar
Karsten Schmidt

@[email protected]

Some and releases from this past week:

thi.ng/genart-api is already at v0.8.1 now. This latest version includes a new "debug mode" time provider plugin which also collects and computes frame rate statistics (moving average) and injects a canvas visualization overlay (everything configurable). Together with the parameter editor, this is a small, but useful tool to help configuring an artwork and ensure fluid performance on a target device/platform...

The URL chooser of the reference implementation's parameter editor is also mobile friendly now. You can see a demo of both in action here:
demo.thi.ng/genart-api/param-e

Some thi.ng/umbrella related updates:

thi.ng/memoize: Function memoization/caching. Added support for async functions/promises and made existing implementations variadic (and removed fixed arity versions!). This is thanks to a feature request by Hitomi Tenshi...

thi.ng/transducers-stats: Functional sequence processing. Added moving minimum/maximum transducers (deque-based to be super efficient) and updated Donchian channel transducer (aka moving min/max bounds) to also benefit from new implementation

There's also ongoing major (re)work of the long-promised 2D/3D mesh implementation. It's still on a private feature branch, but I'm getting closer for initial release...

Paul Hebert's avatar
Paul Hebert

@[email protected]

I built a random maze generator!

I got kinda obsessed with mazes recently and made a tool to generate infinite random mazes. I wrote an article about how it works and created animated visualizations of the process.

Check it out!

cloudfour.com/thinks/generatin

Paweł Grzybek's avatar
Paweł Grzybek

@[email protected]

Let's be honest. You don’t use a debugger because `console.log` is fine. But all these `[Object]`s in deeply nested trees are not helpful, right?

The `console.dir(obj, { depth: Infinity })` is the way to go. Works great in Node.js, Deno and Bun.

Thanks for the tip Matt Pocock 🫶

The difference between console.log and console.dir. Console.dir works a lot better with deeply nested structures.
The difference between console.log and console.dir. Console.dir works a lot better with deeply nested structures.
Steve Faulkner's avatar
Steve Faulkner

@[email protected]

👁️

"What are the effects of component-based architectures? They mean that developers no longer have to know HTML to write HTML. When it comes to accessibility, this is not a good thing. The vast majority of accessibility lives in the markup. Not understanding which elements to use or what is even valid to do in the language is always going to cause accessibility barriers."

tpgi.com/mind-the-remediation-

洪 民憙 (Hong Minhee)'s avatar
洪 民憙 (Hong Minhee)

@[email protected] · Reply to 洪 民憙 (Hong Minhee)'s post

0.7.0をリリースしました!

新機能の暗黙的コンテキストにより、リクエストID、ユーザーIDなどの文脈情報を、手動で渡すことなくログに自動的に含められるようになりました。

詳しくは記事をご覧ください:

zenn.dev/hongminhee/articles/3

洪 民憙 (Hong Minhee)'s avatar
洪 民憙 (Hong Minhee)

@[email protected]

Just released 0.7.0 with implicit contexts! Now you can automatically include request IDs, user IDs, and more in your logs without passing context manually. Read more about this powerful feature:

dev.to/hongminhee/introducing-

洪 民憙 (Hong Minhee)'s avatar
洪 民憙 (Hong Minhee)

@[email protected]

I wish has dynamic scopes as like in Perl or Emacs Lisp or contextvars (context-local states) as like in Python.

en.wikipedia.org/wiki/Scope_(c

bx's avatar
bx

@[email protected]

/* doesnt have Array.shuffle, BUT! */
Array.sort(_=>Math.random()-0.5); // shufles!!

ECMAScript News's avatar
ECMAScript News

@[email protected]

JetBrains: “WebStorm and Rider are now free for non-commercial use”
blog.jetbrains.com/blog/2024/1

Dillo browser's avatar
Dillo browser

@[email protected]

: Is there any bank that can be operated from a web browser without JavaScript? Are they _all_ extinct?

Roni Laukkarinen's avatar
Roni Laukkarinen

@[email protected]

Thanks for inventing JavaScript.

2 typeof NaN 2 true==1 "number"” true

> 9999999999999999 2 true===1 10000000000000000 false

> 0.5+0.1==0.6 > (!+[]+[1+![1).1length true 9

2 9.1+0.2==0.3 > 9+M1" false "o1"

> Math.max() 2 91-"1" -Infinity 90

> Math.min() > []==0 Infinity true

> [1+01 :

2 [1+{} 2 "[object Object]" - 4

2 {31 2 b

> true+true+true===3 S . true -

> true-true e
2 typeof NaN 2 true==1 "number"” true > 9999999999999999 2 true===1 10000000000000000 false > 0.5+0.1==0.6 > (!+[]+[1+![1).1length true 9 2 9.1+0.2==0.3 > 9+M1" false "o1" > Math.max() 2 91-"1" -Infinity 90 > Math.min() > []==0 Infinity true > [1+01 : 2 [1+{} 2 "[object Object]" - 4 2 {31 2 b > true+true+true===3 S . true - > true-true e
Karsten Schmidt's avatar
Karsten Schmidt

@[email protected]

Lots of new updates this week (and still hoping for some constructive feedback by fellow generative artists, also for RFCs in the repo's issue tracker):

- lots of documentation additions/updates (README, diagrams and API docs)
- update message protocol and add message types/docs for handling resizing & frame events
- update param editors (e.g. "apply" button for randomized defaults, timecode display, open variation in new window)
- update/extend reference platform adapter implementation
- update examples
- add new example project (see link below)
- add bare-bones project template
- released 3 versions of the @thi.ng/genart-api package this week (latest v0.5.0)
- 200+ commits by now

Some pre-configured versions of the new p5.js example (incl. editor):

- demo.thi.ng/genart-api/param-e
- demo.thi.ng/genart-api/param-e

Project repo:
github.com/thi-ng/genart-api

Still screenshot of an animation of a few hundred orange circles on blue background with an overlaid parameter editor on the LHS, showing a subset of design parameters to control the anim & circle colors, sizes, arrangement, movement...
Still screenshot of an animation of a few hundred orange circles on blue background with an overlaid parameter editor on the LHS, showing a subset of design parameters to control the anim & circle colors, sizes, arrangement, movement...
David Bisset's avatar
David Bisset

@[email protected]

The State of ES5 on the Web

philipwalton.com/articles/the-

Brian Rinaldi's avatar
Brian Rinaldi

@[email protected]

Here’s my

👋 I’ve been a developer for about 24 years. The last 10+ I’ve been working in roles, currently at LaunchDarkly as a Developer Experience Engineer.

I’m active in the developer community as a speaker, author & organizer. I speak a lot on topics like , , & . I co-wrote multiple books on Jamstack and run a newsletter on the topic. I organize virtual events on cfe.dev & run the Orlando Devs .

Josh "UFO" Byrd 🛸's avatar
Josh "UFO" Byrd 🛸

@[email protected]

Thought it might be fun to make a small jsr package that actually has a bit of real-world utility. So here's `isit` as in `isit("Friday") ? "Hooray!" : "Boo!"` which I'll use in our morning work standup bot to send a different Teams meeting link depending on what day it is. Maybe it'll be useful to someone else too. It supports custom Dates and timezone offsets too. Enjoy! jsr.io/@phocks/isit

Nikhil 🐧's avatar
Nikhil 🐧

@[email protected]

Imagine this being the bugfix for an implementation of a 3rd party library

Just things 🤡

Javascript code-change from a boolean value that was true to a string that contains "true".
Javascript code-change from a boolean value that was true to a string that contains "true".
Deno's avatar
Deno

@[email protected]

Want to modernize legacy JavaScript?

One way is to convert CommonJS code to ESM 👇️

deno.com/blog/convert-cjs-to-e

Caolan McMahon's avatar
Caolan McMahon

@[email protected]

JS0/JSSugar: the tooling will continue until morale improves - caolan.uk/notes/2024-10-14_js0

Jesus Cova's avatar
Jesus Cova

@[email protected]

Everything should be written in , but not everything deserves it.

And that’s when I reach for

And in the end I get paid to write and

xoron :verified:'s avatar
xoron :verified:

@[email protected]

Decentralized P2P Calls In Augmented/Virtual Reality

positive-intentions.com/blog/p

github.com/positive-intentions

Karsten Schmidt's avatar
Karsten Schmidt

@[email protected]

Some updates from this week:

- switched from Apache 2.0 to MIT license
- started publishing API files & types as package (optional)
- updated readme & diagrams

New installation & getting started instructions:
github.com/thi-ng/genart-api/b

ari :autism: 's avatar
ari :autism:

@[email protected]

I should probably make a proper #introduction post. So guess now is fine?

Hello! I am Ari Archer. I am an #LGBT 17-year-old #OpenSource #Autistic developer from #Lithuania who likes to mess around with #software, #backend development, and of course my favourite #programming languages: #C (ANSI #C89 is my favourite C standard) and #Python :) I can fuck around in Assembly too, although I tend to think it's not practical in most cases, although I don't do that much low level programming for it to matter, I do enjoy occasional #ProgrammingLanguage development, though.

I have a (shitty) #website on https://ari.lt/ (which I need to re-re-re-write (I need to rewrite it for the 3rd time, the 2nd time was fine I think, but I kinda made it bad now ;-; because it's basically all #JavaScript), I also have a #blog at https://blog.ari.lt/ which I post random #thoughts, #progress, #tutorials, #recipes, etc. on, could I call it #lifestyle content? I don't know. I also like #cats (and I have one named Tina and I love her very much), #cooking, and #researching random things which I yap about to my friends.

I am very pro-#selfhosting and feel like more people should do it, maybe not anything large or mainstream, but at least try to, #learning about things is fun, and self-hosting teaches you a lot, as well as making it easier for people to migrate to #foss easier, which I believe to be a good thing. Most of my beliefs are centred around "by people for people" as in everything should be accessible, open source, and #free as in #freedom.

I hope I enjoy my stay on #fedi these days as I haven't really been on fedi for a while now, in the mean time you can reach me on #email ([email protected]), #matrix (@ari:ari.lt) or #Git/#GitHub (https://ari.lt/gh).

#Hello, Fedi!
Deno's avatar
Deno

@[email protected]

4 years after Deno 1.0, the next generation of JavaScript is ready for production at scale.

Deno 2 is out today
🐢 Fully backwards compatible with Node and npm
📦 Package management and node_modules and package.json
📅 Long term support

deno.com/2

Jason Kaczor 🇨🇦's avatar
Jason Kaczor 🇨🇦

@[email protected]

Who me? Just a , IT Consultant and "all-around-".

I grew up watching Saturday morning cartoons, original re-runs, reading & (not SyFy), lots of and eventually graduated to and gaming. 

My first computer was a Vic-20 - at school, we learned graphical on PETS and Apple IIe's... crashed the Unisys ICON network often before getting my first PC - grudgingly - really wanted an .

Eventually, it was time for college - I *thought* I would be heavily involved in the physical aspects of technology, circuit design, and hardware engineering - instead, I gravitated to .

My first professional language was 1.0; eventually, jumping into Borland 1.0 and - still dabble with , a smidge of , a lot of and some . My is ancient...

You can find me online at - linktr.ee/jasonkaczor

Brian P. Hogan's avatar
Brian P. Hogan

@[email protected]

I'm Brian.

I develop software, content, and people.

I'm the author of 11 tech books, and I've written or edited hundreds of articles on software dev and system admin.

I code with , , , and . I love , , and command line tools.

I've been writing and making and other kinds of music for almost 20 years. I play piano well and guitar poorly.

Finally, I love helping people level up through teaching, mentorship, or just making connections.

Nicd's avatar
Nicd

@[email protected]

as posts aren't migrated:

Software dev from , . Worked on full stack and / projects for 10+ years, on my free time I use & (hope in the future at work!).

Main hobby project is codestats.net/, a free programming stats project. I also enjoy , , and video games.

Blog: blog.nytsoi.net/ (engine: git.ahlcode.fi/nicd/scriptoriu)

Some packages:
hex.pm/users/nicd

Working on UI.

Inautilo's avatar
Inautilo

@[email protected]


Redirect Checker · A web tool to analyze and verify URL redirects ilo.im/1605hw

_____

Karsten Schmidt's avatar
Karsten Schmidt

@[email protected]

PSA: I'd wager most people following me are only interested in a subset of the things I keep talking about here. To help you with filtering, I've been trying to be consistent with my use of hashtags, and so here's a list of ongoing projects/interests:

- : My main undertaking of the past 6+ years, a collection of approx. 200 projects (also related: )
- : Overarching term for my art projects using various computational, parametric, procedural, generative, simulation techniques (not to be confused with "generative AI", though!)
- : My main interests outside of coding & art making
- : My take on B&W landscape photography (originally I had a Twitter account by that name)
- : Electronic music pearls/recommendations (also former Twitter account, mostly YT/Invidious links)

Other project specific hashtags (sure I'm forgetting some important ones):

- : endlessly evolving generative art pieces (all still WIP)
- : Platform-independent API/protocol for customizing & publishing browser-based generative art projects

Hope that helps! 😅

Karsten Schmidt's avatar
Karsten Schmidt

@[email protected]

Been starting to rework my upcoming piece to be controllable/customizable via thi.ng/genart-api. Whilst such parameter controls like the ones shown in the screen recording are nothing new, the differences here are more about the underlying API/protocol (for more context & goals please consult the readme):

1) Relative platform independence (i.e. this system is for browser-based works only and relies on externally defined platform adapters, which can be developed by the community & are reusable among artists)
2) Ability to very easily repurpose such pieces without any code changes required in the artwork. E.g. a simple swapping out of a platform adapter script tag in the HTML wrapper will suffice
3) Extensible. Both platforms and artworks can define custom parameter types (e.g. for hardware sensors or composite parameters consisting of sub-parameters used for configuration of that particular main param). An example for this is included in the above linked repo...

Btw. If you're interested in trying this out yourself, please check out the readme and get in touch if you need help integrating this into your own project(s)... As shown in the video, you can use the param editors at: demo.thi.ng/genart-api/param-e (not all API features are yet supported by both editors, all WIP!)

Screen recording of a generative art piece (complex, colorful, animated, multi-layered and multi-scale pixel textures) being customized via exposed parameters and the user trying out different variations and randomizations...
Screen recording of a generative art piece (complex, colorful, animated, multi-layered and multi-scale pixel textures) being customized via exposed parameters and the user trying out different variations and randomizations...
Deno's avatar
Deno

@[email protected]

Deno 2 is not yet released, but we've made many️ updates to the release candidate 👇️

deno.com/blog/v2.0-release-can

^Kur0den\d{4}$ :irai_houki_tyuu:'s avatar
^Kur0den\d{4}$ :irai_houki_tyuu:

@[email protected]

『Node.js と Deno と Bun のどれを使えばいいのか - Qiita』 - https://qiita.com/access3151fq/items/2466126b612fad1c084a

Karsten Schmidt's avatar
Karsten Schmidt

@[email protected]

More exciting updates to thi.ng/genart-api, an API for browser-based generative artworks:

- added two list param types (numeric & string)
- added support for composite/nested param types, esp. interesting for custom param types declared by artworks and/or platforms
- updated the first (of two) GUI param editors in the reference implementation to support composite params
- added new example showcasing custom & composite param types (oscillators)

New example w/ editor (make sure to select the "imgui" editor):
demo.thi.ng/genart-api/param-e

Example source code:
github.com/thi-ng/genart-api/b

To explain a bit further: The example defines a custom oscillator parameter type, which itself consists of multiple sub-params to configure waveform, frequency, amplitude etc. Using the GenArtAPI messaging protocol, the external param editor (not knowing anything about the artwork or this custom param type) can still provide GUI widgets to customize the 2 oscillators used... Likewise, the artwork is completely decoupled from how those oscillator values are being computed or how they're customized via the editor...

Deno's avatar
Deno

@[email protected]

The 🦕️ is out of the bag...

youtube.com/watch?v=pcC4Dr6Wj2

洪 民憙 (Hong Minhee)'s avatar
洪 民憙 (Hong Minhee)

@[email protected]

If you've been avoiding & due to the complexity of the .js ecosystem, give a try. Everything is simplified and you can start coding right away without having to set up a development environment.

Danny Blue's avatar
Danny Blue

@[email protected]

If this was built with a framework the framework wouldn't even be loaded yet. This doesn't even lazy load any JS. There is just so little of it that I load it in <head/>. Each stone is an html element AND each stone placement has to calculate quite a bit before it can move on.

github.com/deebloo/go-board

Mark Wyner :vm:'s avatar
Mark Wyner :vm:

@[email protected]

For my designer/coder friends. You might wanna follow @codepen. They curate Pens and post them here. So many great inspirations.

Example:
fosstodon.org/@codepen/1129115

EdenDestroyer (He/Him)'s avatar
EdenDestroyer (He/Him)

@[email protected]

Henlo frens, i have completed my basic studies of HTML and CSS with the help of a local school, now i begin studying Javascript.

But between the JS studies, i want to practice my HTML and CSS skills, what would be the best way to do that?

I believe that trying to clone existing websites would be a cool way to upskill. Do you know of any particular website(s) that i should try and clone as a beginner? I have once worked with cloning amazon.com.

What else can i do as well? I want to focus on styling and structure as well.

Tags:

Karsten Schmidt's avatar
Karsten Schmidt

@[email protected]

Lots of new additions & improvements to the thi.ng/genart-api proposal, documentation, the reference implementation, examples and param editors this week:

thi.ng/genart-api

- added new (12th) parameter type: image maps (supporting grayscale or RGB)
- added new example project using an image parameter to create artwork
- added code example showing how an art platform (or artwork itself) might define & work with a custom parameter type (example: sine oscillator)
- added/updated API docs (docs.thi.ng/umbrella/genart-ap)
- started documenting API states & transitions (diagram still WIP, forthcoming)
- initial documentation of message protocol (for communicating w/ parent window and/or external tooling)
- simplified the pluggable time provider implementations (for animation)
- updated the reference implementation platform adapter to support all built-in param types
- major update GUI param editors, now allowing users to dynamically load & customize externally hosted (compatible!) artworks, and also supporting image params, custom color chooser component...

Example editors:

- demo.thi.ng/genart-api/param-e — either of the two editors can be used...
- demo.thi.ng/genart-api/param-e — currently only the rdom-forms editor can be used for this and you'll need to choose an image for the other params to make sense...

(Note: The imgui-based editor is NOT mobile friendly. Also, the editor sidebar can be toggled on/off via Escape key)

As usual, everything's work-in-progress until further notice. Feedback welcome!

Screenshot of the linked image map parameter example, showing a sidebar with different parameter controls (low res grayscale image preview, color picker), and the artwork showing the imported image represented as a fine grid of differently sized pink dots on dark blue background
Screenshot of the linked image map parameter example, showing a sidebar with different parameter controls (low res grayscale image preview, color picker), and the artwork showing the imported image represented as a fine grid of differently sized pink dots on dark blue background
GENKI's avatar
GENKI

@[email protected]

に、 に回帰する(予言

に回帰するかは知らない(回帰してほしいけど

Diplo Dino's avatar
Diplo Dino

@[email protected]

Since I haven’t yet posted an

Hi, Mastodon! I joined :mastodon: before the kicked off because I love exploring new apps and social media sites.

I’m a programmer by trade, usually working on web apps using and of course (we love it just the way it is lol :blobmiou:)

I’m constantly , especially , , and ! I’m passionate about music, especially and electronica. Catch me at … IYKYK 🙃

Alex Standiford's avatar
Alex Standiford

@[email protected]

Hello World! Alex Standiford here. I am a web developer at GoDaddy, who travels full-time in one of two RVs with my two kids, two cats, a dog, and my wife. I mostly talk about , , and bad puns. Looking forward to meeting y’all!

Interests:















Deno's avatar
Deno

@[email protected]

Rusty V8 is now stable!

With zero-overhead bindings to V8 APIs, memory safety through Rust’s ownership model, and great docs, it’s battle-hardened and production-ready. From here on, Rusty V8 will follow Chrome versions for predictable upgrades.

deno.com/blog/rusty-v8-stabili

洪 民憙 (Hong Minhee)'s avatar
洪 民憙 (Hong Minhee)

@[email protected]

v0.6.0, a zero-dependency structured logging library for & , has been released. The main changes include:

• Loggers now can override sinks of their ascendants.
• Placeholders in message templates now forgive leading and trailing spaces.
• Added LogRecord.rawMessage property.
• Built-in text formatters now can be customized.

Available now from JSR and npm:

• JSR: jsr.io/@logtape/[email protected]
• npm: npmjs.com/package/@logtape/log

Christian Alder's avatar
Christian Alder

@[email protected]

Hej Hej 👋

Time for a new as I've moved servers (again).

My name is Christian and I'm a freelance frontend dev that works with . I love , , and (not on the client side tho 😎)

I'm from 🇸🇪,
raised in 🇬🇧,
currently live in 🇵🇹.

I've got a bunch of interests and hobbies that I might post about from time to time:

-
-
-
-
-
-
-
- AF 🌱

💚

Julian Fietkau's avatar
Julian Fietkau

@[email protected]

Today's update: pixel graphics by @misnina are in, collectible placement is (probably) finalized. I'm very happy with how this looks now! 🙂

1.5 weekends to go before the jam ends, core gameplay and visuals more or less done, lots of auxiliary stuff left: light story content, sound effects, end screen, title screen and menus, options, credits, touch controls, ...

(Marked sensitive in case you'd like to avoid spoilers)

A blue feather floats across a cloudy sky. A red pinwheel (controlled by the player's mouse cursor movement) propels it around softly. Clusters of silvery letters float in the sky, some of which the feather collects by getting close to them. Everything is rendered in 2D pixel art, except the letters, which are small 3D objects.
A blue feather floats across a cloudy sky. A red pinwheel (controlled by the player's mouse cursor movement) propels it around softly. Clusters of silvery letters float in the sky, some of which the feather collects by getting close to them. Everything is rendered in 2D pixel art, except the letters, which are small 3D objects.
Deno's avatar
Deno

@[email protected]

Deno 2 Release Candidate has dropped:

‣ Add `process` global variable, remove `window`
‣ Improve dep management
‣ Permission system updates
‣ Many stabilizations
‣ Better CommonJS support
‣ Test documentation with `deno test --doc`

deno.com/blog/v2.0-release-can

Gavin Chait;'s avatar
Gavin Chait;

@[email protected]

I'm looking for a / developer to help me extend my FastAPI/NuxtJS template (github.com/whythawk/full-stack) to support . I'm busy with the server. My objective is an open source starter template for developing full federated apps for creator commercial activity (like a personal Etsy or Amazon site) where creators can sell their work & supporters can follow for new product releases. This is a paid project. Contact me direct.

Wizarth's avatar
Wizarth

@[email protected]

:

Big software nerd, trying to get back doing software dev for fun after putting all my energy into doing it for work.

Outside of that, I'm trying to discover who I am. Not so much midlife crisis as "My personality is all trauma responses?" "Always has been."

J. R. DePriest :verified_trans: :donor: :Moopsy: :EA DATA. SF:'s avatar
J. R. DePriest :verified_trans: :donor: :Moopsy: :EA DATA. SF:

@[email protected]

Since there has been a huge influx of new users, I decided to write a new and actually pin it to my profile.
I'm pushing 50 years old and I live in a Red State that is trying to make me illegal. I'm a / woman married to a heterosexual cisgender woman who frequently talks about the current hellscape for people like me in my Toots.
I'm / which is probably why all of these sentences start with "I".
I've worked in for a little over 20 years. I've had lots of roles in , , and . I taught myself , , , and . I'm decent at . I can read and . I enjoy automating things and turning manual processes into scripts.
I've been the primary to my wife for 8 years since she developed a chronic condition and went on disability.
My hobbies including short fiction, journaling my , and playing on my laptop and .
I prefer over over . Still waiting for Amazon to do something, anything with the Stargate property.
While we loved the including and , in general we prefer over .
I'm a fan of / , and , especially the existential dread of or . I tend to sympathize with the nameless terrors. I am not a fan of mindless slashers, unrelenting gore, or torture porn. Over-the-top, egregious gore that crosses into the absurd is fine, though, so I am a Sam Raimi fan, obvs. Also, are underappreciated.
I'm slowly reconnecting with my roots. I knew some stuff about and had a friend who as a tree a lifetime ago and I'm trying to rekindle that.
We've got and they are our kids. I also happen to love , but we don't have any of those.






Deno's avatar
Deno

@[email protected]

Help us spread the word — it's time to

javascript.tm

Julian Fietkau's avatar
Julian Fietkau

@[email protected]

Unveiling the core gameplay loop of my entry. 😀 Think you can do better than me? You're probably right! Prove it next month!

Note: still placeholder graphics, have not even started on presentation except basic animation. I wanted to get the movement nailed down early since it's so core to the experience. This feels about right.

(Gonna be marking these as sensitive in case people want to avoid spoilers.)

A red pinwheel, controlled via mouse movement, softly blows a black feather across a cloudy sky which the camera is slowly panning across. Some purple cubes are jiggling in the sky, the feather collects some of them through close contact. The collected cubes shrink and start rotating around the feather.
A red pinwheel, controlled via mouse movement, softly blows a black feather across a cloudy sky which the camera is slowly panning across. Some purple cubes are jiggling in the sky, the feather collects some of them through close contact. The collected cubes shrink and start rotating around the feather.
Austin Zani :BlobhajReach:'s avatar
Austin Zani :BlobhajReach:

@[email protected]

I never did a Mastodon so here we go.

My name is Austin and I love my family, Sports, Music, and Tech.

I am a software developer at . At my job currently I work primarily with , , and . I know some and hope to publish an app in the AppStore in 2023. I am going to try to here.

I am a fan of the , , , , , , and .

Julian Fietkau's avatar
Julian Fietkau

@[email protected]

Finally starting on my project today. 😀 Because is it a real deadline if you don't start on the thing halfway through? 😇

This is after an hour or two of getting warmed up again in . Hand-fudged physics, no graphics yet, but you can guess at the basic gameplay concept. I'm having fun so far!

If you missed this ongoing game jam up until now: itch.io/jam/fedi-jam and @fedi_jam 👏

A gray rectangle floats in a blue void. A red spinning square appears, controlled by mouse movement, moves around the screen and softly pushes the rectangle around like a repelling magnet.
A gray rectangle floats in a blue void. A red spinning square appears, controlled by mouse movement, moves around the screen and softly pushes the rectangle around like a repelling magnet.
Autumn64 🏳️‍⚧️ :gnu: :linux:'s avatar
Autumn64 🏳️‍⚧️ :gnu: :linux:

@[email protected]

Acerca de mí:
¡Hola! Soy Mónica Gómez, también conocida como Autumn64. Soy una estudiante mexicana de Ingeniería en Sistemas Computacionales, soy una mujer transgénero y soy activista por el movimiento del .

También soy y de . Programo activamente en , , y , aunque conozco algunos otros lenguajes más (por ejemplo BASIC, , C# y Java). Puedes ver todos mis proyectos en : codeberg.org/Autumn64

En redes me dedico a la promoción y difusión del Software Libre, así como de sus ventajas técnicas y éticas desde el punto de vista latinoamericano e hispanohablante.

También soy independiente, hago : autumn64.xyz/src/es/music.html

Esta es mi cuenta principal, y además tengo otras cuentas en el . Si quieres verificar que realmente soy quien digo ser, por favor revisa mi clave pública: autumn64.xyz/src/es/key.html

Más acerca de mí: codeberg.org/Autumn64/AboutMe/

¡Cómprame un café! (de forma totalmente voluntaria ;)): liberapay.com/autumn64/

Manav Rathi's avatar
Manav Rathi

@[email protected]

package manager usage stats from npm traffic

npm 64%
yarn classic 25%
pnpm 9%

Yarn 1 single handedly accounts for 25% of the traffic, yet is unmaintained.

Ironically, a PR to enable corepack by default is going to lead to the removal of corepack altogether.

some thoughts around this - notes.mrmr.io/the-v3-curse

Julian Fietkau's avatar
Julian Fietkau

@[email protected] · Reply to Julian Fietkau's post

I pushed a feature update for :fietkau_software: fietkau.software/qr today. 🙂

It has two fun new shape styles, a bunch of added logos (👋 @pixelfed @joinpeertube @Codeberg @forgejo and more), some advanced options for turbo nerds, and irregularly shaped logos now get better cutouts.

I think this covers most of the feature requests I've received. 😀

Pepper The Vixen🏳️‍⚧️🦯's avatar
Pepper The Vixen🏳️‍⚧️🦯

@[email protected]

There is one thing keeping me from switching to Firefox full time: the Chrome UI sounds extension. It makes a sound every time a new page loads or content updates. It's super helpful as a screen reader user when navigating very complex web apps. I tried repacking it for Firefox, but it won't run without some work. I'm looking at the sourcecode to see if I can make it work, but this is well outside my comfort zone. Anybody have resources for porting extensions from Chrome to Firefox?

洪 民憙(ホン・ミンヒ)'s avatar
洪 民憙(ホン・ミンヒ)

@[email protected]

DenoやBunが好きな方いらっしゃいますか?

Deno's avatar
Deno

@[email protected]

Curious about how the JSR logo and website design came together? 🤔️

Here's a 👀️ into our design process.

deno.com/blog/designing-jsr

Fedify: an ActivityPub server framework's avatar
Fedify: an ActivityPub server framework

@[email protected]

Fedifyは、TypeScriptとJavaScriptで書かれたActivityPubサーバーフレームワークです。分散型のソーシャルネットワークを構築するためのサーバーアプリケーションを作る際の複雑さと冗長なコードを排除し、ビジネスロジックとユーザー体験の開発に集中できるようにすることを目指しています。

現在提供している主な機能は以下の通りです:

  • Activity Vocabularyのための型安全なオブジェクト(一部のベンダー固有の拡張機能を含む)
  • WebFingerクライアントとサーバー
  • HTTP SignaturesObject Integrity Proofs
  • ウェブフックを処理するためのミドルウェア
  • NodeInfoプロトコル
  • Node.js、Deno、Bunのサポート
  • テストとデバッグのためのCLIツールチェーン

興味がある方は、Fedifyのウェブサイトをご覧ください!包括的なドキュメント、デモ、チュートリアル、サンプルコードなどが用意されています:

https://fedify.dev/

JR Tashjian's avatar
JR Tashjian

@[email protected]

I’ve been on here a while but never wrote an post so here it is.

My name is Mark thought most people call me JR (J.R. not “junior”). I am a believer and follower of Christ. My passion is and I’ve been at it professionally for over 14 years. Though I mostly develop for the web I enjoy working with the including the hardware and architecture of it.

I like

josh :bash:'s avatar
josh :bash:

@[email protected]

haven't done as much coding in d3 as i used to, but i just wanna point out how great it is that we have a data visualisation tool like this that is free and open source. check it out if you haven't already d3js.org

Screenshot from D3 website. Home page. Charts and maps etc.
Screenshot from D3 website. Home page. Charts and maps etc.
Eric McCarthy's avatar
Eric McCarthy

@[email protected]

Time to finally do an !

I’ve been fascinated by the since I first got on the internet when I was a teenager. The idea that anyone could create a website — how cool is that!?

I’ve been a user even longer (my parents were in education and my mom would bring home her office Mac Classic on the weekends). Being creative with and wanting to make dynamic websites eventually got me into . First with , later , and now and . I’ve also had some fun with , , and .

For 14 years I worked at a small company that makes the premier CMS for the press in the US. Now I work on web applications in in the far-more corporate world. I also used to co-organize TucsonJS and Tucson React meetups.

Craig Doremus 🦕's avatar
Craig Doremus 🦕

@[email protected]

The first release candidate for 2 has just dropped. To upgrade use the following incantation:

deno upgrade rc

You can also use the --canary flag to do the upgrade.

@deno_land

Craig Doremus 🦕's avatar
Craig Doremus 🦕

@[email protected]

I'm a focusing on & specifically . Right now, I'm working on a blog called Craig's Deno Diary. I also contribute to a few Deno projects and am taking a break from working in the corporate world.

I have over 20 years of experience in web development, first using Java and recently JavaScript/TypeScript. Before that I was a for 10 years.

I live in USA & try to enjoy the beautiful environment here as often as possible.

Eiji Kitamura / えーじ :verified:'s avatar
Eiji Kitamura / えーじ :verified:

@[email protected]

Some new capabilities are being added to after a careful standardization work by the community.
- Hints: allow you to control UI, especially when you want to focus on security key or cross-device authentication.
- Related origin requests: allow passkeys to work on related but different origins.
- JSON serialization: simplifies your code with binary encoding and decoding.

Learn more on the blog post:
developer.chrome.com/blog/pass

Anupam 《ミ》λ≡'s avatar
Anupam 《ミ》λ≡

@[email protected]

There is a fundamental difference between for the sake of convenience (I can build an entire app quickly. Think framework of the day), vs complexity for the sake of robustness (I can make changes to the app quickly without introducing new bugs. Think or ).

When you are not familiar with the tech, both can look the same, but they are not. The latter is actually in disguise

洪 民憙 (Hong Minhee)'s avatar
洪 民憙 (Hong Minhee)

@[email protected]

I love (@deno_land) because it turned me from a hater into a JavaScript programmer, or more precisely, a programmer.

Ragnar Heiðar Þrastarson's avatar
Ragnar Heiðar Þrastarson

@[email protected]

Oh no I forgot the Here we go!

I currently work at the Icelandic Met Office as a Coordinator in . In general, I help people make maps, find either with code ( or ) or with desktop software like

I love the outdoors and enjoy hiking, climbing and biking. I've been involved with Icelandic Search & Rescue for many years, both on the frontline (mountain rescue) and as an instructor for new team members.

Father of twins since 2016

Family of 4 on a picknick in Iceland
Family of 4 on a picknick in Iceland
tomasino's avatar
tomasino

@[email protected]

It's been a few years since my last post, so lets do this again:

I'm into the and related tech like and and life. I'm former , former , with an interest in comparative , . I love a good . Um, so many more interests! . I recently started a too. Oh, and I love and participate in .

Oh right, my dayjob involves work including and . I use and hate every minute. :)

If I had a bajillion monies and didn't need to work I would spend my life as a muse for everyone I meet. I want to help everyone find their passions and do cool things. I like to help. I'm not sure what hashtag to use for that.

Karsten Schmidt's avatar
Karsten Schmidt

@[email protected]

Updated internal state handling of the thi.ng/parse parser generators & DSL to define parsers. Seeing a 1.2 - 1.6x speedup of parsing performance in example projects (see project readme for links), especially for larger inputs...

洪 民憙 (Hong Minhee)'s avatar
洪 民憙 (Hong Minhee)

@[email protected]

Version 0.5.0 of , the zero-dependency library for , .js, , edge functions, and browsers, has been released! The main additions include:

• Contexts
• ANSI color formatter
• Comprehensive docs
• A few API conveniences

LogTape v0.5.0 is available from JSR and npm:

• JSR: jsr.io/@logtape/[email protected]
• npm: npmjs.com/package/@logtape/log

In addition, a new website with documentation has been launched, so please check it out!

logtape.org/

Pablo Berganza (he/him)'s avatar
Pablo Berganza (he/him)

@[email protected]

It’s been years since I’ve used NodeJS and was curious about the current situation. Is Deno a thing? I see they backtracked a bit and now have an NPM compatibility layer (although I don’t mind that). And I think I like the direction with JSR.io.
Is Bun alright? I’ve seen some comments saying that it was not ready for v1 yet.
Is this going to be like an io.js situation and we will all go back to Node eventually?

Deno's avatar
Deno

@[email protected]

Hosting on Deno Deploy just got more performant with beta Web Cache API support:
🚀 sub-millisecond read latency
🚅 multi Gbps write throughput
💾 unbounded storage

deno.com/blog/deploy-cache-api

Deno's avatar
Deno

@[email protected]

Deno 1.46 is not only the last 1.x release, but also one of the biggest:
- Simpler CLI
- Multi-threaded web servers
- HTML, CSS, YAML support in `deno fmt`
- Better Node/npm compat (support for playwright, google-cloud, etc.)
and much more 👇️

deno.com/blog/v1.46

洪 民憙 (Hong Minhee)'s avatar
洪 民憙 (Hong Minhee)

@[email protected]

QiitaにLogTapeの紹介文を日本語で書いて載せました。翻訳機とAIを多用したため、不自然な日本語があるかもしれませんが、不適切な表現を見つけたらぜひご指摘ください!

qiita.com/hongminhee/items/fff

meduz''s avatar
meduz'

@[email protected]

The `datetime` attribute of the `<time>` may seem complicated: it accepts a lot of formats in order to deal with 1) moments 2) durations 3) timezone offsets.

I made a package to make your life easier with it. Here’s `datetime-attribute`: github.com/meduzen/datetime-at

As you can see in the screenshot, `datetime-attribute` comes with two functions: `datetime()` and `datetimeDuration()`.

It’s my first JS package and the first time I use unit tests.

Guilherme's avatar
Guilherme

@[email protected]

Li "Estruturas de Dados e Algoritmos Com JavaScript"

gmgall.net/books/estruturas-de

洪 民憙 (Hong Minhee)'s avatar
洪 民憙 (Hong Minhee)

@[email protected]

I've rewritten several times and in several languages. The first time it was written in , then , then C#, then back to TypeScript. (It was codenamed FediKit at the time of development.) I settled on TypeScript for the following reasons:

• It has a decent JSON-LD implementation.
• Lots of people use it. (I wanted Fedify to be widely used.)
• It's type-safe enough.

Even if I were to build Fedify again, I would choose TypeScript.

洪 民憙 (Hong Minhee)'s avatar
洪 民憙 (Hong Minhee)

@[email protected]

In the next version of , a zero-dependency library for & , contexts will be introduced that allow the same set of properties to be shared across multiple log messages. Thanks to @okikio for collaborating on the design! This feature is available for preview in 0.5.0-dev.60+f819929c.

• JSR: jsr.io/@logtape/[email protected]
• npm: npmjs.com/package/@logtape/log

github.com/dahlia/logtape#cont

const logger = getLogger(["my-app", "my-module"]);
const ctx = logger.with({ userId: 1234, requestId: "abc" });
ctx.info `This log message will have the context (userId & requestId).`;
ctx.warn("Context can be used inside message template: {userId}, {requestId}.");
const logger = getLogger(["my-app", "my-module"]); const ctx = logger.with({ userId: 1234, requestId: "abc" }); ctx.info `This log message will have the context (userId & requestId).`; ctx.warn("Context can be used inside message template: {userId}, {requestId}.");
SuperIlu's avatar
SuperIlu

@[email protected]

I pushed an update to (the client for MS-DOS):

- Fixed a bug when viewing threads in notification screen.
- Implemented setting for CW toots (default collapsed or visible)
- Fixed dates
- Fixed image viewing
- Added help to toot editor
- Changed some colors
- Updated to 8.9.1
- Added ALT text for image uploads

Grab it at github.com/SuperIlu/DOStodon

SuperIlu's avatar
SuperIlu

@[email protected]

This is a test toot from , the client for showing off the new ALT-text editor for images.

A screenshot of the toot editor of DOStodon
A screenshot of the toot editor of DOStodon
A screenshot of the ALT-text editor
A screenshot of the ALT-text editor
Di's avatar
Di

@[email protected]

post!

Hi, I'm Di, a data visualisation engineer in Australia.

I wrote a book called Practical UI Patterns for Design Systems to help people make better websites and fast-track interaction design.

I also created Typey Type for Stenographers to help people practice typing over 200 words per minute.

I like reading, gardening, bushwalking, travel, and all things data viz!

洪 民憙 (Hong Minhee)'s avatar
洪 民憙 (Hong Minhee)

@[email protected]

is a logging library for and . It provides a simple and flexible logging system that is easy to use and easy to extend. The highlights of LogTape are:

• Zero dependencies
• Designed to be used in libraries as well as apps
• Supports virtually every runtime: .js, , , edge functions, and browsers
• Structured logging
• Logger categories (names) are hierarchical
• Dead simple sink (destination) interface

logtape.org/

Jingle Ariels's avatar
Jingle Ariels

@[email protected]

dr who:
"is 8 pegged cores a lot?"
"it depends"
"evaluating nix? nominal"
"Browsing? WTAF"
dr who: "is 8 pegged cores a lot?" "it depends" "evaluating nix? nominal" "Browsing? WTAF"
SuperIlu's avatar
SuperIlu

@[email protected]

This is my 13 year old Acer Aspire One 722-C62kk running the version of on a current Arch install.
I recently learned I can get a new battery for 20€ to revive it. 😊

A small black netbook running a text GUI application fullscreen.
A small black netbook running a text GUI application fullscreen.
Brian LeRoux 💚's avatar
Brian LeRoux 💚

@[email protected]

Forms on the web have become terrible. Lost state. No keyboard nav. Weird refreshes. Mobile hostile.

The reason is developers that think clientside state management is how to implement a form. It is not.

Good forms work without client (and then are progressive enhanced by js to work even better).

Good forms always submit. Good forms remember values and display problems inline.

How do we fix the misconceptions and, in the process, fix the forms on the web ?

Daniel 🏳️‍🌈 Jilg :sondrine:'s avatar
Daniel 🏳️‍🌈 Jilg :sondrine:

@[email protected]

Hi I'm Daniel, a 37 year old developer and technical lead at @telemetrydeck ! I enjoy long walks along the , I work in and is super important to me! (Which is why I make an analytics service that provably won't collect personal ). I also love developing in for and and I tolerate :D~

In my free time I enjoy talking and learning about and as well as and

洪 民憙 (Hong Minhee)'s avatar
洪 民憙 (Hong Minhee)

@[email protected]

I wish the API would be built into .js and as well.

tc39.es/proposal-temporal/docs

Philipp Waldhauer's avatar
Philipp Waldhauer

@[email protected]

Ich bin zwar noch bis November ausgebucht, aber wie man so schön sagt: Der frühe Vogel fängt den Wurm, also falls jemand für Nov/Dez/Januar ein Projekt in der Pipeline hat und Unterstützung braucht, bitte Bescheid sagen!

waldhauer.solutions/

kirch's avatar
kirch

@[email protected]

I am a human, I can sign something for you from keybase.io/jkirchartz if you'd like

Here is a list of my interests, in no particular order.

Crafty ツ's avatar
Crafty ツ

@[email protected]

A late . I’m a west coast Canadian enjoying life w/ my badass wife @britt

is my jam
, addict
, , & flash creative
, , ,
w/ a M.A in Spiritual
& lean

I love and take
, , , , , , and many more.

I will post a lot of our

photo collage of a maine coon cat, looking at camera, upside down on couch, curling up cozy and a profile shot
photo collage of a maine coon cat, looking at camera, upside down on couch, curling up cozy and a profile shot
Viktor Nagornyy's avatar
Viktor Nagornyy

@[email protected]

Took a little break, but now back with the latest round of job openings at Nextcloud:

- Desktop engineers (C++)
- Android engineers (Kotlin/JAVA)
- Javascript developers
- PHP developers
- WebRTC developers

All timezones. More info:
nextcloud.com/jobs/

Plz boost so more can see/apply 🙏

Deno's avatar
Deno

@[email protected]

Deno is known for its HTTP imports, but we've found it's insufficient for larger projects. This post explains the situation and how we've improved it.

deno.com/blog/http-imports

洪 民憙 (Hong Minhee)'s avatar
洪 民憙 (Hong Minhee)

@[email protected]

Please only answer if you know how to code in . Can you also code in ?

OptionVoters
Yes, I can code in TypeScript too.0 (0%)
No, I can't code in TypeScript.0 (0%)
Deno's avatar
Deno

@[email protected]

std/data-structures, common data structures including red-black trees and binary heaps, is now stabilized at v1 on JSR

jsr.io/@std/data-structures

d(jack’o la)ngo 🎃's avatar
d(jack’o la)ngo 🎃

@[email protected]


I'm a developer, have been working with , for years, exploring others as well. Hacking on wp plugin, interested in

language nerd: native bilingual , English, hablo español, falo portugues, foghlaim gaeilge leis an ulchabhan. And smidgens of a few others.

Interests and what I might post about: , , (electro, folk, jazz), , , , ,

Cloud Four's avatar
Cloud Four

@[email protected]

Hello, fediverse! 👋🐘

We’re Cloud Four, a small but mighty agency founded in the Pacific Northwest. 🌥🌲

We solve complex responsive web design and development challenges for ecommerce, healthcare, fashion, B2B, SaaS, and nonprofit organizations. ✨📱

cloudfour.com/

wraptile's avatar
wraptile

@[email protected]

and people are putting an incredible amount of work modernizing server side js.

The energy is reminding me of early day - so many new tools made with proper care behind rather than most of NodeJS ecosystem which is just glued together with band-aids and staples :blobcatgrimacing:

That being said, after working with Deno for the past week it still feels a bit too bleeding edge though it does work with !

Andrew Mark McCall's avatar
Andrew Mark McCall

@[email protected]

I owe the hospital $2500 for a cat scan and I am looking to do small web projects to help satisfy that debt. Maybe you need some web maintenance tasks that have been on the back burner? I have experience with Looking for small projects around $250 - $350 . If you know someone who might benefit please

NicTea's avatar
NicTea

@[email protected]

New server, time for an updated post. (formerly [email protected])

I'm Nic, based in , and I work as a (in & ) & .

Much of the rest of my time is spent playing and doing , along with tinkering with and other

Figured out I was about a year ago, and it's been a wild ride since.

Sasha's avatar
Sasha

@[email protected]

Hey! on a new server with my favorite tech peeps! My name is Sasha and I am a

a reformed to be a , with experience in , , , , interested in programming

a that ironically has a broad interest in all dev things, but not enough time and energy to get to them all

I believe that and also that and are underrated.

More here: blog.ferrata.dev/hey-there/

Dylan </closingtags.com>'s avatar
Dylan

@[email protected]

I'm Dylan, a developer from the Midwest, US. I enjoy working with , , , , and . I've also done lots with .

I love learning about , dabbling in , and tinkering in my which I automate with .

I frequently at closingtags.com where I write things related to . You can reach me via the contact form there or here!

ajaxStardust's avatar
ajaxStardust

@[email protected]

statecollegeguitarlessons.com/

Please Click "A" for mode (.webm)
Click "M" for Mode Views (SVG variants)

I'm looking for "mostly vanilla" code. I honestly don't think my vision necessitates the use of a full-on Vue/ React deploy

Otherwise, I need to find the correct library to work w/ SVG/ UI

I specify that because -- ULTIMATELY-- the is greater if the user is able to click-on/ click-off the "missing" tones.

# Objective
make an html page with SVG to capture User input (e.g. assessments) much like what is shown here.
statecollegeguitarlessons.com/

## Detail
The images depict dots representing positions of tones of the Aeolean mode (relative minor) of a as appears on a standard

The various SVG's show what is meant to be perceived as "the same mode", with select tones missing. It's a basic, "locate what's missing"

### Deficit

I know how to make the SVG "look how" i want enough to satisfy me.
I know what I want for the function of the user interaction.

I don't know efficient JavaScript/ to do it

Any libraries that are meant specifically to assist w/ this type of project?
There's jQuery UI for example, but I've never messed with it deeply.

What is your suggestion?

Patrick Marchand's avatar
Patrick Marchand

@[email protected]

Come see my talk if you're interested in writting dynamic websites but dont want to write or if you want to talk about apps.

Patrick Marchand: Puffy does Realtime Hypermedia - events.eurobsdcon.org/2024/tal 2024-09-21, 13:45 at EuroBSDcon 2024 in Dublin

Register for tickets at events.eurobsdcon.org/2024/

Albert Cardona's avatar
Albert Cardona

@[email protected] · Reply to Albert Cardona's post

The web-based open source software was devised as "google maps but for volumes". Documentation at catmaid.org and source code at github.com/catmaid/CATMAID/

Modern enables hundreds of researchers world wide to collaboratively map neuronal circuits in large datasets, e.g., 100 TB or larger, limited only by bandwidth and server-side storage. The goal: to map and analyse a whole brain .

Running client-side on and server-side on , it's a pleasure to use–if I may say so–and easy to hack on to extend its functionality with further widgets.

The first minimally viable product was produced in 2007 by Stephan Saalfeld (what we now refer to, dearly, as "Ice Age CATMAID), who demonstrated to us all that the web, and javascript, where the way to go for distributed, collaborative annotation of large datasets accessed piece-wise. See the original paper: academic.oup.com/bioinformatic

See also public instances at the virtualflybrain.org/ particularly under "tools - CATMAID - hosted EM data such as this first instar larval volume of its complete nervous system l1em.catmaid.virtualflybrain.o)

Screenshot of CATMAID software illustrating various widgets to analyze neurons and neuronal circuits.
Screenshot of CATMAID software illustrating various widgets to analyze neurons and neuronal circuits.
Brian LeRoux 💚's avatar
Brian LeRoux 💚

@[email protected]

PE argument I find irksome: "everyone has js enabled"

Nobody is saying otherwise.

What we are saying is js fails, often, and interactivity should work *before* JS loads (if it even does). That's progressive enhancement. Or 'islands architecture' if you prefer.

洪 民憙 (Hong Minhee)'s avatar
洪 民憙 (Hong Minhee)

@[email protected]

Released v0.4.2 of , which is a zero-dependency library for & ! Since this version, it work well on Workers out of box!

• JSR: jsr.io/@logtape/[email protected]
• npm: npmjs.com/package/@logtape/log

Deno's avatar
Deno

@[email protected]

🚀 Deno 1.45 is released!

‣ Workspace and monorepo support
‣ Node.js compat improvements
‣ Updates to deno install
‣ deno init --lib
‣ deno vendor deprecation
‣ Standard Library stabilization
‣ V8 12.7 and TypeScript 5.5

Release notes: deno.com/blog/v1.45

Boa JavaScript engine's avatar
Boa JavaScript engine

@[email protected]

Boa 0.18 has just been released!

Boa is a engine written in . It now passes 85% of the official ECMAScript suite, and it's much more performant!

Check the full release post here:

boajs.dev/blog/2024/03/07/boa-

/cc @rust @thisweekinrust

「erin」's avatar
「erin」

@[email protected]

fresh time because it's been like 2 years since I wrote one!

I'm erin, a transfeminine front end developer (or to steal from @brad_frost front of the front end developer) living in so called Portland, Oregon. I seem to mostly post about mental health, old thinkpads, craft web development, privacy, security, and the death of the world wide web. I post about politics too (sorry about that!). I have a blog at @[email protected] and a I post about books I'm reading on bookwyrm at @[email protected]

ok, time for a big old list of tags that I'll probably update later:

Christophe's avatar
Christophe

@[email protected]

First time using !

Hopefully I will manage to do more than circles :m_shy:

A Grid of imperfect circles in blue shades with imperfect crayon outlines
A Grid of imperfect circles in blue shades with imperfect crayon outlines
Jeff Martin's avatar
Jeff Martin

@[email protected]

Now that our instance has a higher size limit for toots, time for a re-. This time with more hashtags!

Hi! I'm Jeff. :blobcatwave:

I've been a software engineer since around 1999 I guess. I started with back in the early days of applets, DHTML, and Flash. I've since moved on to work on just about anything that has a compiler or an interpreter. I've even recently dabbled in design and .

My software specialties are in high performance computing , , and . Although I usually enjoy any programming problem with a good challenge to it. I spent waaay too much time in school and got all the degrees in computer science. I still work in part-time writing research software.

My favorite programming languages at the moment are and . Although, I've spent a lot of time writing lately. With the right tooling it's not completely terrible.

More recently, I've been interested in online , , and .

Timothy Wolodzko's avatar
Timothy Wolodzko

@[email protected]

- what if everything was a pointer
- what if everything was a linked list
- what if everything was a pure function
- what if everything was a stack
- what if everything was a hash map
- what if everything was immutable
- what if everything was a pattern to match
- what if everything was a class
- what if everything was a memory allocation problem
- what if everything != nil
- what if everything was everything

randomMDN's avatar
randomMDN

@[email protected]

Greetings to all developers and enthusiasts.

I'm a bot, and every sixth hour I'll randomly pick an article for you from 'mdn web docs'¹.

Alternatively, you can subscribe to the RSS feed², see my GitHub repo³ for any other options and information.

Live long and prosper 🖖

[1] developer.mozilla.org/en-US/do
[2] botsin.space/@randomMDN.rss
[3] github.com/jaandrle/randomMDN

Karsten Schmidt's avatar
Karsten Schmidt

@[email protected]

: After 66 days of addressing 30 wildly varied use cases and building ~20 new example projects of varying complexity to illustrate how libraries can be used & combined, I'm taking a break to concentrate on other important thi.ngs...

With this overall selection I tried shining a light on common architectural patterns, but also some underexposed, yet interesting niche topics. Since there were many different techniques involved, it's natural not everything resonated with everyone. That's fine! Though, my hope always is that readers take an interest in a wide range of topics, and so many of these new examples were purposefully multi-faceted and hopefully provided insights for at least some parts, plus (in)directly communicated a core essence of the larger project:

Only individual packages (or small clusters) are designed & optimized for a set of particular use cases. At large, though, thi.ng explicitly does NOT offer any such guidance or even opinion. All I can offer are possibilities, nudges and cross-references, how these constructs & techniques can be (and have been) useful and/or the theory underpinning them. For some topics, thi.ng libs provide multiple approaches to achieve certain goals. This again is by design (not lack of it!) and stems from hard-learned experience, showing that many (esp. larger) projects highly benefit from more nuanced (sometimes conflicting approaches) compared to popular defacto "catch-all" framework solutions. To avid users (incl. myself) this approach has become a somewhat unique offering and advantage, yet in itself seems to be the hardest and most confusing aspect of the entire project to communicate to newcomers.

So seeing this list of new projects together, to me really is a celebration (and confirmation/testament) of the overall approach (which I've been building on since ~2006): From the wide spectrum/flexibility of use cases, the expressiveness, concision, the data-first approach, the undogmatic mix of complementary paradigms, the separation of concerns, no hidden magic state, only minimal build tooling requirements (a bundler is optional, but recommended for tree shaking, no more) — these are all aspects I think are key to building better (incl. more maintainable & reason-able) software. IMO they are worth embracing & exposing more people to and this is what I've partially attempted to do with this series of posts...

ICYMI here's a summary of the 10 most recent posts (full list in the thi.ng/umbrella readme). Many of those examples have more comments than code...

021: Iterative animated polygon subdivision & heat map viz
mastodon.thi.ng/@toxi/11122194

022: Quasi-random voronoi lattice generator
mastodon.thi.ng/@toxi/11124441

023: Tag-based Jaccard similarity ranking using bitfields
mastodon.thi.ng/@toxi/11125696

024: 2.5D hidden line visualization of DEM files
mastodon.thi.ng/@toxi/11126950

025: Transforming & plotting 10k data points using SIMD
mastodon.thi.ng/@toxi/11128326

026: Shader meta-programming to generate 16 animated function plots
mastodon.thi.ng/@toxi/11129584

027: Flocking sim w/ neighborhood queries to visualize proximity
mastodon.thi.ng/@toxi/11130843

028: Randomized, space-filling, nested 2D grid layout generator
mastodon.thi.ng/@toxi/11132456

029: Forth-like DSL & livecoding playground for 2D geometry
mastodon.thi.ng/@toxi/11133502

030: Procedural text generation via custom DSL & parse grammar
mastodon.thi.ng/@toxi/11134707

Axel Rauschmayer's avatar
Axel Rauschmayer

@[email protected]

My books on and are free to read online:

– Exploring JavaScript (ES2024 edition)
– Deep JavaScript
– Tackling TypeScript
– Shell scripting with Node.js

:mastodon: Boosts appreciated!

exploringjs.com

Cover of the book “Exploring JavaScript (ES2024 edition)” by Axel Rauschmayer. It shows a rhinoceros.
Cover of the book “Exploring JavaScript (ES2024 edition)” by Axel Rauschmayer. It shows a rhinoceros.
Cover of the book “Deep JavaScript” by Axel Rauschmayer. It shows a freediver who swims under water and follows a rope down into the deep.
Cover of the book “Deep JavaScript” by Axel Rauschmayer. It shows a freediver who swims under water and follows a rope down into the deep.
Cover of the book “Tackling TypeScript” by Axel Rauschmayer. It shows a a pair of boxing gloves.
Cover of the book “Tackling TypeScript” by Axel Rauschmayer. It shows a a pair of boxing gloves.
Cover of the book “Shell scripting with Node.js” by Axel Rauschmayer. It shows a field of light blue hexagonal bars, with three yellow ones in the middle.
Cover of the book “Shell scripting with Node.js” by Axel Rauschmayer. It shows a field of light blue hexagonal bars, with three yellow ones in the middle.
Critical Silence's avatar
Critical Silence

@[email protected]

What we're learning here?
1) My skills suck
2) Its alarming warm in south Germany
3) I survived Friday 13th

"Saturday, 14. October 2023, 24:48"
List of temperature sensors located in living room, in bedroom and outside
"Saturday, 14. October 2023, 24:48" List of temperature sensors located in living room, in bedroom and outside
Deno's avatar
Deno

@[email protected]

std/crypto, extensions and utilities to the Web Crypto API, is now stabilized at v1.0.0 on JSR

jsr.io/@std/crypto

Scott Murray's avatar
Scott Murray

@[email protected]

Hi, sfba.social! Allow me to myself.

I just moved here from pdx.social. I can’t be summed up in a single toot, but… I love , , , , the coast, , and systems. Oh, and my three brilliantly unique kids (the hardest work I’ve ever done) and really bad puns.

My life’s work is building Oolie, our family business and Certified helping families sleep better with bedding and baby products. I hope you’ll check us out.

In my former career, I was into online learning, creative coding, and data visualization, even publishing a couple of books. I still love that stuff ( ), but that feels like 1M years ago.

Expect to see posts about everything mentioned above!

Big thanks to the SFBA @moderators for having me.

♥️

SuperIlu's avatar
SuperIlu

@[email protected]

I just released v1.12.1 of on github.com/SuperIlu/DOjS/relea

This is the release the last versions were based upon!

See thread below for release details!


1/

SuperIlu's avatar
SuperIlu

@[email protected]

I pushed an update to (the client for MS-DOS):

- Updates to and

Grab it at github.com/SuperIlu/DOStodon

If you want to try the version check out the compilation instructions linked in the README

WhizKidz's avatar
WhizKidz

@[email protected]

Check out the awesome online platform at codepad.site. It's FREE! There's support for / / , , and .

Flaki's avatar
Flaki

@[email protected]

Time for a proper introduction!

I'm an open-source enthusiast and self-hosting masochist. Initially a developer, still doing all things web, big fan, recovering conference addict. I am a focusing on & OSS communities in particular. Also a staunch advocate of flexible, async remote work.

I co-founded ¹ with @jer & @skade :ferris:

Frequently have Opinions™ and post about , especially online, , my & hobby (currently rebuilding, follow along at )

At my day job at radiopaedia.org I mostly complain about Ruby/Rails or DICOM² :ablobcatbongokeyboard:

For Canine Cuteness head to , @lumi & @iris :blobdogheart:

Other contacts and chat: link in bio :brows:

📸 by Juli Racsko

___
¹ proper fediverse presence coming soon, in the meantime check out @eurorust!
² Digital Imaging and Communications in Medicine en.wikipedia.org/wiki/DICOM

Flaki sitting on a bench in Tallinn with the coastal Noblessner area in the background. He has a white hoodie, jeans and lace-less black shoes, looking directly into the camera a bit squinty. His right hand is held up to the side, where Lumi the young blue merle collie is lying on the bench, sniffing his palm in search of treats. His left hand is full of colorful dog things, including a fox toy and Lumi's bright blue lead. The rest of the picture has a an overall faded, bluish tint and a white border that makes it almost feel like an album cover.
Flaki sitting on a bench in Tallinn with the coastal Noblessner area in the background. He has a white hoodie, jeans and lace-less black shoes, looking directly into the camera a bit squinty. His right hand is held up to the side, where Lumi the young blue merle collie is lying on the bench, sniffing his palm in search of treats. His left hand is full of colorful dog things, including a fox toy and Lumi's bright blue lead. The rest of the picture has a an overall faded, bluish tint and a white border that makes it almost feel like an album cover.
Erlend Sogge Heggen's avatar
Erlend Sogge Heggen

@[email protected]

@zicklag is ‘Investigating a Streamlined Connection Between Weird Core (Rust) and SvelteKit’

github.com/commune-os/weird/is

Thoughts anyone?

洪 民憙 (Hong Minhee) 🤏🏼's avatar
洪 民憙 (Hong Minhee) 🤏🏼

@[email protected]

is a logging library for and . It provides a simple and flexible logging system that is easy to use and easy to extend. The highlights of LogTape are:

• Zero dependencies
• Designed to be used in libraries as well as apps
• Supports virtually every runtime: .js, , , edge functions, and browsers
• Structured logging
• Logger categories (names) are hierarchical
• Dead simple sink (destination) interface

github.com/dahlia/logtape

Screenshot: log messages printed out on the terminal
Screenshot: log messages printed out on the terminal
Screenshot: log messages printed out on web browser's console
Screenshot: log messages printed out on web browser's console
Ed S's avatar
Ed S

@[email protected]

Here's my ...
I'm into and , am a #6502 fan, but I like green spaces and days which not overcast, I like science and - mostly and stories - , aka or , I like for his music and his thoughtful writings and funny videos, I write just a little code in and and and generally spend a lot of time on the internet.
Isn't the world a lovely place but in a fine old state though?

.:\dGh/:.'s avatar
.:\dGh/:.

@[email protected]

Okay, is a pain to work with on an internal network. If you're using GitHub for your things, that's okay, but for everything else is not.

Is there any other alternative?

BTW, this is Coolify: coolify.io/

.:\dGh/:.'s avatar
.:\dGh/:.

@[email protected]

Just going to nonchalantly shove in some awareness to my GitHub Sponsorship.

If you value my contributions to Open Source and Laravel, just leave a small tip or become a sponsor. It helps me pay the bills.

github.com/sponsors/DarkGhostH

Callionica's avatar
Callionica

@[email protected] · Reply to Callionica's post

And of course the syntax equivalent to the above so you can use it directly in your code:

```
/**
* @template { new (args: any) => any } Class
* @template { object } Properties
* @typedef { new (...args: ConstructorParameters<Class>) => (InstanceType<Class> & Properties) } AddProperties
*/
```

Callionica's avatar
Callionica

@[email protected] · Reply to Callionica's post

^ This is useful for when you're using 's dynamic capabilities with classes and you want to let know about what you're doing.

`AddProperties` takes a class as the first argument and returns a class. Instances of the returned class have the properties that you specify in the second argument as well as all the stuff from the original class.

pospi 🏳️‍⚧️'s avatar
pospi 🏳️‍⚧️

@[email protected]

I'm !

If you do interesting things in the space that aren't predicated on market-based solutionism, I would love to come write & apps or work on and infrastructure with you. I also do pretty decent and in teams which aspire to be human-centered.

I'm especially interested in roles within organizations lead by and peoples and groups doing efforts.

洪 民憙 (Hong Minhee) 🤏🏼's avatar
洪 民憙 (Hong Minhee) 🤏🏼

@[email protected]

is an server framework in & . It aims to eliminate the complexity and redundant boilerplate code when building a federated server app, so that you can focus on your business logic and user experience.

The key features it provides currently are:

• Type-safe objects for Activity Vocabulary (including some vendor-specific extensions)
client and server
• HTTP Signatures
• Middleware for handling webhooks
protocol
.js, , and support
• CLI toolchain for testing and debugging

If you're curious, take a look at the Fedify website! There's comprehensive docs, a demo, a tutorial, example code, and more:

fedify.dev/

Michael's avatar
Michael

@[email protected]

After turning up here a couple of weeks or so ago, I figured it's time for an

I'm a full stack web developer, currently working mostly with () and Vanilla and . Still love too.

Outside of that, my main interests are around , , and just learning new stuff.

Husband, father of 2 boys, speaker of and with some basic understanding of

Started running my own instance just for fun, and loving it.

casraf :typescript: 🇮🇱's avatar
casraf :typescript: 🇮🇱

@[email protected]

I guess it's time for an .

I'm a freelance full-stack & mobile developer at trade and love playing with different techs in my free time.

Love problem-solving, finding ways to introduce creativity into code, and creating quality-of-life dev tools and libraries whenever I can.

I have some packages for and and other nice stuff on my website at casraf.dev/projects :) feel free to say hi!

Keith J Grant's avatar
Keith J Grant

@[email protected]

😅 So I did not fully appreciate the power of hashtags on this place when I wrote my , so I'm giving it a second go.

• I'm a front-end web developer in Spokane, WA. I work for Red Hat on Ansible Controller using , , . I don't write so much here as I have at previous gigs, but, I'm okay at that too…

• I'm the author of CSS in Depth 📘 manning.com/books/css-in-depth

• I enjoy mixing and have my recipes available in a : sidecar.us

Fedify: an ActivityPub server framework's avatar
Fedify: an ActivityPub server framework

@[email protected]

Fedify is an server framework in & . It aims to eliminate the complexity and redundant boilerplate code when building a federated server app, so that you can focus on your business logic and user experience.

The key features it provides currently are:

If you're curious, take a look at the website! There's comprehensive docs, a demo, a tutorial, example code, and more:

https://fedify.dev/

洪 民憙 (Hong Minhee)'s avatar
洪 民憙 (Hong Minhee)

@[email protected] · Reply to 洪 民憙 (Hong Minhee)'s post

I never use vanilla , I always code in instead, and Node.js is a pain in the neck with TypeScript settings.

Tane Piper's avatar
Tane Piper

@[email protected]

How did we go back to the world of being an absolute sausage fest - absolute state of this where there are no women in list until #28 (and then only one) - it's almost exclusively white men

A screenshot of The State of JS 2023 results - absolutely no women on the list "Which individuals do you read, follow, or just want to highlight in the JavaScript community?" Up to 28
A screenshot of The State of JS 2023 results - absolutely no women on the list "Which individuals do you read, follow, or just want to highlight in the JavaScript community?" Up to 28
qsenn's avatar
qsenn

@[email protected] · Reply to tante's post

@tante Yes! Especially on the point of react being used in areas HTML + JS work fine. In my side projects I’ve practically sworn off React. The more I learn about options prebaked into JavaScript, the less I value frameworks for a majority of apps.
I can’t imagine how many web apps can be rebuilt using WebComponents and CustomEvents and simple custom state management library with less complexity. Worst case, just use Lit or Enhance.

smallcircles (Humanity Now 🕊)'s avatar
smallcircles (Humanity Now 🕊)

@[email protected]

"Towards a Modern Web Stack"

This is interesting.

Ian "Hixie" Hickson editor of HTML specification for 10 years, in January 2023 criticises the use of , , for intricate applications, and proposes an alternate approach based on 4 lower-level :

1.

2.

3. (for )

4.

Gets criticised for it and defends his proposal on HN: news.ycombinator.com/item?id=3

(Correct link to the Google Doc is in bottom comment by Hixie)

Doug's avatar
Doug

@[email protected]

Re- - I joined mastodon.social Feb 02, 2017, and have delighted in the fediverse since.

since web dev was just , then server side with , and now is running everything!

Love videogames, standup that punches up, , and going to gigs.

Moulded by the teachings of , I care about people, and fairness (ergo, lean left, Anti-Tory and !)

Liana :v_trans: :v_kirb:'s avatar
Liana :v_trans: :v_kirb:

@[email protected] · Reply to Liana :v_trans: :v_kirb:'s post

Narrat Game Engine

🚀 If you just want to try it, , get on the website it’s very quick (get-narrat.com)

Here are some screenshots of games that have been made on it by people (Links to those games are on the website)

I don't really have a big network of followers so the only people can learn about this engine is if other people help spread info about it

Liana :v_trans: :v_kirb:'s avatar
Liana :v_trans: :v_kirb:

@[email protected]

Narrat Game Engine

Narrat 🐀 has been getting a bit of attention again so here's another intro of the engine. I think most people who might be interested in this don't actually know about it so I'm hoping to reach more people for once.

Narrat is a game engine I created to easily make interactive fiction games (narrative RPGs, visual novels etc) for desktop or browser.

I’ve worked on this game engine for some time, mostly to help friends make their games. It’s been used on a few small games, and some bigger ones in progress.

This Tumblr post has more details and could do with a signal boost as it's getting attention tumblr.com/bubbline3456/708071

There's also a Patreon:
patreon.com/NarratEngine

🧵

Noah Liebman's avatar
Noah Liebman

@[email protected] · Reply to Noah Liebman's post

Finally wrote a bit about my jiggly nav links.

It was mostly an exercise in making a very custom ease for out of a damped cosine function. noahliebman.net/2022/12/waves-

Video of a mouse cursor moving over links. When hovered, the link’s underline turns into a wave. When the cursor leaves, the wave vibrates as a damped standing wave until it decays back to a flat line.
Video of a mouse cursor moving over links. When hovered, the link’s underline turns into a wave. When the cursor leaves, the wave vibrates as a damped standing wave until it decays back to a flat line.
Graph of modified damped cosine function y(t) = -e^{-5t}\cos(2\pi 8t) + 1
Graph of modified damped cosine function y(t) = -e^{-5t}\cos(2\pi 8t) + 1
Paul Taylor's avatar
Paul Taylor

@[email protected]

I’ve been putting it off but it’s about time I did an .
So, hi all!
As a of one, my little boy is everything.
I’m an at bigbite.net where I primarily focus on workflows, and in-house tooling. Working with and and a variety of tech built on top of for the most part.
I’ve been putting off working on my personal site for years. Put it down to laziness.
(1/2)

Paul Hebert's avatar
Paul Hebert

@[email protected]

I procedurally generated a bunch of random snowflakes and wrote about my process: cloudfour.com/thinks/coding-a-

My hope is that this article is a fun introduction to and coding with a dash of .

I'm really proud of this article and hope you enjoy it. It includes:

- 3 variations on a generative art piece
- 2 explainer animations
- 3 interactive demos
- An interactive snowflake builder
- Infinite snowflakes!

Noah Liebman's avatar
Noah Liebman

@[email protected]

I recently redid my personal site and made it 〰️wavey🌊

I know everyone loves the plucky nav underlines, but first I wrote about the bottom of the header.

Sine waves! Interference patterns! ! ! ! ! ! noahliebman.net/2022/11/waves-

Screen recording showing nav links “pluck” when hovered and a wavy pattern on the bottom of the page header when scrolled.
Screen recording showing nav links “pluck” when hovered and a wavy pattern on the bottom of the page header when scrolled.
Jason Howard :sdf:'s avatar
Jason Howard :sdf:

@[email protected]

General Interests:

Tools I Use:

Looking forward to interesting conversation and people with similar interests.

Lucas Werkmeister's avatar
Lucas Werkmeister

@[email protected]

: I’m Lucas, bi software developer and Wikimedian from Berlin. I like writing tools for , mainly in , though I’m also working on a library to use the MediaWiki API; on the projects, I’m mainly active on and . I play the and occasionally live-stream that or post recordings. I’m making my way through ’s The History of Middle-earth. I speak German, English and some Portuguese. Nice to meet y’all 🙂