A sane, self-hosted password generator. Written in Javascript, basic interactive webapp. Generates random passcodes on demand. Offers all of the usual options -- length, choice of characters, omit lookalike characters, caps and lowercase. No build process. Has instructions for running your own copy.
audiowaveform is a C++ command-line application that generates waveform data from either MP3, WAV, FLAC, Ogg Vorbis, or Opus format audio files. Waveform data can be used to produce a visual rendering of the audio, similar in appearance to audio editing applications.
Waveform data files are saved in either binary format (.dat) or JSON (.json). Given an input waveform data file, audiowaveform can also render the audio waveform as a PNG image at a given time offset and zoom level.
The waveform data is produced from an input audio signal by first combining the input channels to produce a mono signal. The next stage is to compute the minimum and maximum sample values over groups of N input samples (where N is controlled by the --zoom command-line option), such that each N input samples produces one pair of minimum and maximum points in the output.
In the AUR.
This Go application creates a mirror of the Anna's Archive torrent page, providing an up-to-date list of torrents and their statistics. It includes features for tracking seeder history, generating custom torrent lists, and visualizing seeder statistics.
The application scrapes the full torrent list from Anna's Archive every 24 hours. It stores the torrent information in a SQLite database. Every 30 minutes, it updates the seeder, leecher, and completion statistics for each torrent. It provides a web interface to view the torrent list, individual torrent statistics, and seeder history. Users can generate custom torrent lists based on size and type preferences.
CodeBeautify is an online Code Beautifier and Code Formatter that allows you to beautify your source code. It also provides lots of tools that help to save developers time. Use search to find tools.
A Markov chain generator in Python that is still maintained. Aims to be very extensible. Can save and restore its models as JSON files. Key methods can be overridden. Can randomly generate sentences, splice models together. Can plug NLP software into it to do more interesting things. Tries very hard to not just regurgitate things from the model; you can tweak this a bit.