frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Show HN: Shoggoth Mini – A soft tentacle robot powered by GPT-4o and RL

https://www.matthieulc.com/posts/shoggoth-mini
477•cataPhil•18h ago•91 comments

Show HN: Reviving a 20 year old OS X App

https://andrewshaw.nl/blog/reviving-genius
50•shawa_a_a•3d ago•25 comments

Show HN: Beyond Z²+C, Plot Any Fractal

https://www.juliascope.com/
84•akunzler•15h ago•24 comments

Show HN: I built this to talk Danish to my girlfriend – works with any language

https://menerdu.vercel.app/
184•lil_csom•2d ago•101 comments

Show HN: Clippy – a better pbcopy for macOS that handles files properly

https://github.com/neilberkman/clippy
16•nberkman•8h ago•1 comments

Show HN: We made our own inference engine for Apple Silicon

https://github.com/trymirai/uzu
158•darkolorin•22h ago•45 comments

Show HN: VS Code extension to edit the filesystem like a text buffer

https://github.com/ahrm/voil
61•hexomancer•3d ago•45 comments

Show HN: Hot Take Generator – Turn your thoughts into hot takes

https://v0-hot-take-generator-ai.vercel.app/
3•beaniez•7h ago•1 comments

Show HN: ArchGW – An intelligent edge and service proxy for agents

https://github.com/katanemo/archgw/
113•honorable_coder•3d ago•15 comments

Show HN: Ten years of running every day, visualized

https://nodaysoff.run
918•friggeri•5d ago•475 comments

Show HN: Bedrock – An 8-bit computing system for running programs anywhere

https://benbridle.com/projects/bedrock.html
213•benbridle•5d ago•64 comments

Show HN: I built a dream interpreter in JavaScript, no AI, no server, just logic

https://github.com/Dino-Nuggies45/Dream-Interpreter
10•DinoNuggies456•8h ago•4 comments

Show HN: The HTML Maze – Escape an eerie labyrinth built with HTML pages

https://htmlmaze.com/
52•kyrylo•1d ago•14 comments

Show HN: Tlsinfo.me – check your JA3/JA4 TLS fingerprints

https://tlsinfo.me/json
3•elpy1•8h ago•0 comments

Show HN: Encode Base64

https://encodebase64.io/
5•artiomyak•17h ago•4 comments

Show HN: FFmpeg in plain English – LLM-assisted FFmpeg in the browser

https://vidmix.app/ffmpeg-in-plain-english/
172•bjano•5d ago•46 comments

Show HN: Refine – A Local Alternative to Grammarly

https://refine.sh
399•runjuu•2d ago•207 comments

Show HN: I built a tool to sync localStorage between devices

https://htmlsync.io
5•meistertigran•11h ago•4 comments

Show HN: Mochi Invaders – Like Space Invaders but for Practicing Japanese Kana

https://xenodium.com/mochi-invaders-now-on-the-app-store
4•xenodium•16h ago•0 comments

Show HN: Go-CDC-chunkers – A fast and memory-efficient CDC library in Golang

https://github.com/PlakarKorp/go-cdc-chunkers
3•poolpOrg•11h ago•0 comments

Show HN: A Raycast-compatible launcher for Linux

https://github.com/ByteAtATime/raycast-linux
189•ByteAtATime•2d ago•60 comments

Show HN: The Card Caddie, free tool to optimize credit card points

https://www.thecardcaddie.com/
4•hg30•13h ago•4 comments

Show HN: Ruby on Rails tutorial running in the browser

https://rails-tutorial.evilmartians.io/
8•palkan•14h ago•2 comments

Show HN: Minesweeper game I built to be real-time Multiplayer

https://www.minesweeperpro.com/?v=2.1
17•bluelegacy•1d ago•5 comments

Show HN: Pagy 2.0, a free drag-and-drop website builder

https://pagy.co
9•hernansartorio•15h ago•4 comments

Show HN: Learn LLMs LeetCode Style

https://github.com/Exorust/TorchLeet
176•Exorust•2d ago•22 comments

Show HN: BotBudget – AI Agent Cost Calculator

https://botbudget.com/calculator
4•jakejohnson•17h ago•0 comments

Show HN: StartupList EU – A public directory of European startups

https://www.startup-list.eu
12•umbertotancorre•1d ago•4 comments

Show HN: RooAGI's Roo-VectorDB: A New PostgreSQL Extension for Vector Search

https://github.com/RooAGI/Roo-VectorDB
4•rooagi•18h ago•0 comments

Show HN: Vibe Kanban – Kanban board to manage your AI coding agents

https://github.com/BloopAI/vibe-kanban
193•louiskw•4d ago•132 comments
Open in hackernews

Show HN: Beyond Z²+C, Plot Any Fractal

https://www.juliascope.com/
84•akunzler•15h ago
I've always been dissatisfied that simple Mandelbrot explorers proport themselves as a Fractal Graphing Calculator. In summer break between semesters, I started making a real graphing calculator, parsing LaTeX to WebGL to let you graph most any combination of z and c.

Fun ones to try include - sin(z^2+c) - c^z - z^{1.7}+c

Also supports animation, just enter any other letter and turn it into a variable. Supports Mandelbrot or Julia Set style calculation.

Use with a graphics card or integrated graphics

Comments

mg•15h ago
I'm not sure if every fractal can be expressed as an iterative formula f(z,c).

In 2012 I found a fractal by using a fundamentally different approach. It arises when you colorize the complex plane by giving each pixel a grey value that corresponds to the percentage of gaussian integers that it can divide:

https://www.gibney.org/does_anybody_know_this_fractal

akunzler•14h ago
Good point, this site then supports every (as far as I know) fractal you make with iterations of complex numbers and constant cutoff values, mandelbrot style.

There are surely infinitely many more ways to generate other families of fractals though

akomtu•14h ago
What's the heck is gaussian integers? I've tried to parse your article, but still confused.
Sharlin•14h ago
Simply the complex numbers where the real and imaginary parts are both integers. Eg. 0, 3+i, 123-45i, -7+8i. Same as the 2D grid of integer Cartesian coordinates.
mg•14h ago
You can think of them as the complex equivalents to normal integers.

Complex numbers have two components. If both are integers, the complex number is a Gaussian integer.

bmacho•14h ago
https://www.google.com/search?q=gaussian+integer
zahlman•13h ago
> I'm not sure if every fractal can be expressed as an iterative formula f(z,c).

It's also unclear to me that every iterative f(z,c) formula will produce something visually interesting, or indeed that meets the definition of "fractal".

badosu•9h ago
You can make a fractal out of the state graph of a double pendulum: https://www.youtube.com/watch?v=dtjb2OhEQcU

I don't doubt there could be an iterative formula that maps to it, but I'd be very surprised.

OgsyedIE•15h ago
This was a great nostalgia trip to my days on fractalforums, before the web got much denser. I tried playing around with the settings but I was unable to reproduce the two-dimensional version of Tom Lowe's Mandelbox map, discovered in 2010:

https://sites.google.com/site/mandelbox/what-is-a-mandelbox

There are galleries on the other pages of the site, if anybody is interested.

ttoinou•14h ago
My favorite alternative to Mandelbrot is the Monkelbrot, I made this 13 years ago (probably I discovered this formula on the old fractalforums.com)

https://www.deviantart.com/titoinou/art/The-42-MonkelBrot-29...

  f(z) = ( (z*c-1)^2 - 1 )^2 - 1 
It features Classic Quadratic Mandelbrots z^2 and also Quartic Brots z^4 in one set, that is apparently connected (I didn't prove this yet...). Also, it doesn't go crazy like others alternative, it stays nicely behaved like the original Mandelbrot set. You can copy paste "( (z*c-1)^2 - 1 )^2 - 1" without the quotes on this site to explore the fractal

It's really fascinating when navigating the fractal to try to understand where would a z^2 minibrot appear vs. where would a z^4 minibrot appear

OgsyedIE•14h ago
It is tragically the case that most of the archives of fractalforums are irretrievable and lost media. The archive.org copies are very incomplete and the database dumps, as far as my research last year could figure out, are locked behind a group of moderators of an inadequately programmed successor site who don't want to share them, considering the dumps to be a status moat for themselves.
ttoinou•10h ago
Yeah I was sad about that
akunzler•10h ago
The Monkelbrot! https://www.juliascope.com/share/6876dcfda602d0a43f41b2e9

Sounds like I missed out on fractalforums.com :/ oh the webpages lost to the ether

ttoinou•9h ago
Hehe, I missed the sharing feature thanks.

IIRC it was a user named monk who found a method to generate any Monkelbrot set containing our customized choice of any z^n brots

I found the (2,4) pair the most beautiful

dejobaan•13h ago
I like things where you can just jump into the guts and play around. If you spend enough time plinking, you can end up getting an intuitive feel for a system. Also surprised at how many iterations you can crank out these days; I once implemented a Mandel-generator on my TI-81 calculator, and that took forever. Thank you for creating and sharing this!
mreid•12h ago
As someone who taught myself 68000 assembler as a kid in order to render Mandelbrot and Julia sets quickly it still blows my mind a little that fairly hi-res versions of these can be rendered basically instantaneously in a browser using an interpreted language.
gerdesj•10h ago
Similar(ish) although I only really got as far as BASIC on a 80286 running DOS 3.something!

I did manage to get something in C to compile and work with hard coded co-ordinates but it took me ages and didn't float my boat but it was rather faster 8) I suppose I'll always be a scripter.

I had a copy of the "Beauty of Fractals" and the next one too (can't remember the name). I worked in a books warehouse as a holiday job before Poly (UK Polytechnic - Plymouth) and I think I persuaded my parents to buy me the first and the second may have fallen off a shelf and ended up in the rejects bin. I got several text books for Civil Engineering too, without even needing to cough drop them myself.

One of the books had pseudo code functions throughout which even I could manage to turn into BASIC code. I remember first seeing a fern leaf being generated by a less than one screen (VGA) program which used an Iterated Function System (IFS) and I think a starter matrix with carefully chosen parameters.

Nowadays we have rather more hardware ...

mreid•9h ago
I also had to convince my parents to buy me books about fractals. My prized possession as a 15 year old was a copy of Mandelbrot's "Fractal Geometry of Nature". A lot of it went over my head but it had some gorgeous colour plates and interesting sections. I still have it at home some 35 years later.

That also inspired me to write IFS code for ferns, Sierpinski gaskets, and Menger sponges in 68k assembler (after realizing AmigaBASIC was too slow).

bongodongobob•10h ago
Ha, same. I remember setting Fractint to render something and hoping it would be done when I got back from school.
progmetaldev•4h ago
I spent many hours experimenting with Fractint, trying to get the inner and outer coloring just right, along with the zoom magnification that I could handle walking away from the computer for long enough to get something interesting. The worst was zooming somewhere that looked interesting, and coming back many hours later to find out you had nothing of value.

I spent my early teen years addicted to Fractint, before I could even really show off my creations except in person to my friends. I still look back at those days as more interesting with computers than now. Maybe I need to go back and write my own software to render fractals (or work on existing fractal software and see if I can improve it). In the mid-2000's, I was using GnoFract4D to render fractals, and the results were far more impressive. A change in GNOME or Ubuntu created an issue with the render window for me, and I ended up abandoning it.

brandonpelfrey•10h ago
A long time ago I tried a version of this (https://github.com/brandonpelfrey/complex-function-plot). Can you add texture lookup to yours? Escape time could map to one texture dimension and you can arbitrarily make up another dimension for texture lookup. Being able to swap in random images can be fun nice demo!
JoshTriplett•10h ago
This is a lot of fun to play with. However, I managed to find a case where it got extremely slow. I changed z^2+c to z^a+c (a from 1..3), and it suddenly got many orders of magnitude slower.
Eduard•6h ago
> Fun ones to try include - sin(z^2+c) - c^z - z^{1.7}+c

- the broken formatting confused me.

- couldn't test any of these via copy and paste: c&p doesn't work at least on Chrome Android for the expression input.

nevertheless: very cool. I especially love the parameter animation

KingOfCoders•5h ago
This is so amazing, I remember running ONE frame of this realtime animation over night (getting to bed and hoping for the best) on a C64 and later it still took a long time on an Amiga (machine code both).

Even learned 3D GFX from an Amiga Fraktal Book (Markt&Technik) - the only Amiga book still on my shelf.