Bookmark
Advanced NLP with spaCy · A free online course
https://course.spacy.io/en/, posted Sep '23 by peter in development free language learning nlp toread
spaCy is a modern Python library for industrial-strength Natural Language Processing. In this free and interactive online course, you'll learn how to use spaCy to build advanced natural language understanding systems, using both rule-based and machine learning approaches.
Bookmark
Veilid
https://veilid.com/, posted Aug '23 by peter in development free opensource privacy software
Veilid allows anyone to build a distributed, private app. Veilid gives users the privacy to opt out of data collection and online tracking. Veilid is being built with user experience, privacy, and safety as our top priorities. It is open source and available to everyone to use and build upon.
Bookmark
Python API - LLM
https://llm.datasette.io/en/stable/python-api.html, posted Jul '23 by peter in ai development free python software
LLM provides a Python API for executing prompts, in addition to the command-line interface.
[...]
To run a prompt against the
gpt-3.5-turbo
model, run this:import llm model = llm.get_model("gpt-3.5-turbo") model.key = 'YOUR_API_KEY_HERE' response = model.prompt("Five surprising names for a pet pelican") print(response.text())
Bookmark
Self-hosting SSO with Nginx (Part 1): Keycloak
https://joeeey.com/blog/selfhosting-sso-with-nginx-keycloak-part-1/, posted May '23 by peter in development hosting howto security toread
There are many tools that we can use for SSO, such as Authelia, Authentik, or Keycloak.
Although some of the aforementioned SSO tools may be easier to set up, I decided to go with Keycloak. Keycloak is an enterprise-level tool that is supported by Redhat. Using Keycloak will give us a lot of flexibility, and ticks the boxes for acceptable memory usage, theme-ability, and multi-factor authentication support.
Bookmark
git-remote-gcrypt: PGP-encrypted git remotes
https://github.com/spwhitton/git-remote-gcrypt, posted Mar '23 by peter in development free opensource software versioncontrol
git-remote-gcrypt is a git remote helper to push and pull from repositories encrypted with GnuPG, using a custom format. This remote helper handles URIs prefixed with
gcrypt::
.
Bookmark
Testament
https://nim-lang.org/docs/testament.html, posted Feb '23 by peter in development free nimlang software testing
Testament is an advanced automatic unittests runner for Nim tests, is used for the development of Nim itself, offers process isolation for your tests, it can generate statistics about test cases, supports multiple targets (C, C++, ObjectiveC, JavaScript, etc), simulated Dry-Runs, has logging, can generate HTML reports, skip tests from a file, and more, so can be useful to run your tests, even the most complex ones.
Bookmark
Music Blocks Visual Programming Language
https://musicblocks.net/welcome/, posted Feb '23 by peter in development forkids free learning music opensource
Music Blocks is a great way to learn coding through music (as well as learn music through coding). Move colorful blocks around the screen to design dynamic musical creations. Test your code at the click of a button. Create everything from simple songs to puzzles and games.
Bookmark
MusicLM
https://google-research.github.io/seanet/musiclm/examples/, posted Jan '23 by peter in ai audio development music toread
Abstract We introduce MusicLM, a model generating high-fidelity music from text descriptions such as "a calming violin melody backed by a distorted guitar riff". MusicLM casts the process of conditional music generation as a hierarchical sequence-to-sequence modeling task, and it generates music at 24 kHz that remains consistent over several minutes. Our experiments show that MusicLM outperforms previous systems both in audio quality and adherence to the text description. Moreover, we demonstrate that MusicLM can be conditioned on both text and a melody in that it can transform whistled and hummed melodies according to the style described in a text caption. To support future research, we publicly release MusicCaps, a dataset composed of 5.5k music-text pairs, with rich text descriptions provided by human experts.
Bookmark
Git Notes: git's coolest, most unloved feature
https://tylercipriani.com/blog/2022/11/19/git-notes-gits-coolest-most-unloved-feature/, posted Nov '22 by peter in development git versioncontrol
Once a commit cements itself in git’s history—that’s it. It’s impossible to amend a commit message buried deep in a repo’s log.
But git notes enable you to amend new information about old commits in a special namespace. And they’re capable of so much more.
Notes stow metadata about anything tracked by git—any object: commits, blobs, and trees. All without futzing with the object itself.
Bookmark
Tree views in CSS
https://iamkate.com/code/tree-views/, posted 2022 by peter in css development howto html webdesign
A tree view (collapsible list) can be created using only HTML and CSS, without the need for JavaScript. Accessibility software will see the tree view as lists nested inside disclosure widgets, and the standard keyboard interaction is supported automatically.
|< First < Previous 11–20 (528) Next > Last >|