A webring of people who make cool stuff. technology, music, art, writing, anything goes!

Overview

overengineeRING

a webring of people who make cool stuff. technology, music, art, writing, anything goes! https://overengineering.kognise.dev/

joining

do you make things and have a website showcasing such things? you should join!

create a pull request adding yourself to the config file. in the body, say a bit about why you want to join and include a link to your website. make sure you follow the criteria outlined below. you can also shoot an email to [email protected].

a full config entry looks like this, everything besides name and url is optional:

- name: kognise
  url: https://kognise.dev/
  colors:
    border: '#ced4da'
    text: '#000000'
    links: '#6741d9'
  stylesheets:
    - https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400&display=swap
  font_stack: '"IBM Plex Mono", monospace'
  font_size: 1em

and renders like this:

kognise.dev embed example

colors, stylesheets, font_size, and font_stack can be provided if you wish to make the embed's design more closely match your site.

the link color should have good contrast with your website background and white.

embed

to embed the webring on your site, replace with your site's name, of course:

<iframe src='https://overengineering.kognise.dev/embed/
   ' width='100%' height='100' style='user-select: none;' frameBorder='0'>iframe>

text_color, border_color, and link_color can be specified as query parameters and will override the colors specified in your config entry. colors in your config entry are optional and will, in turn, override the root defaults.

criteria

  • this is a webring containing personal sites only.
  • sites must reference at least 4 things the owner created. creations in any category count. the majority of the site content should be written and layed out by the site's creator(s).
  • members must embed the webring widget on the main page of their site.
  • no illegal, nsfw, or gory content is allowed. duh.
  • don't be evil, unless you really have to.
You might also like...
🕶 Assorted checks and validations for writing safer Solana programs.
🕶 Assorted checks and validations for writing safer Solana programs.

vipers 😎 Assorted checks and validations for writing safer Solana programs. Motivation Solana's fee mechanism is unlike Ethereum's, in that the numbe

S-expression parsing and writing in Rust

rsexp S-expression parsing and writing in Rust using nom parser combinators. This implemantion aims at being compatible with OCaml's sexplib. The main

Writing Interpreters in Rust: a Guide

Writing Interpreters in Rust: a Guide This is an online book covering the lower level topics involved in writing an interpreter in Rust including: mem

Learn Rust by writing Entirely Too Many linked lists

Learn Rust by writing Entirely Too Many Linked Lists Read the pretty version at https://rust-unofficial.github.io/too-many-lists/. Building Building r

This project contains small exercises to get you used to reading and writing Rust code
This project contains small exercises to get you used to reading and writing Rust code

rustlings 🦀 ❤️ Greetings and welcome to rustlings. This project contains small exercises to get you used to reading and writing Rust code. This inclu

A language for writing swim practices.

swimscript A language for writing swim practices. Table of contents Purpose Language Spec Purpose The goal of swimscript is to create a universal lang

Thread-safe clone-on-write container for fast concurrent writing and reading.

sync_cow Thread-safe clone-on-write container for fast concurrent writing and reading. SyncCow is a container for concurrent writing and reading of da

Make and use playgrounds locally.

cargo playground Cargo playground opens a local playground in the editor of your choice. Install You can install it directly using cargo $ cargo insta

A tool to make grocery lists written in Rust

grusterylist: makes grocery lists, written in Rust grusterylist uses and can add to local libraries of user-added recipes and grocery items to put tog

Comments
  • broken link for arcade

    broken link for arcade

    the link for arcade (l3gacyb3ta) points to https://raleighwi.se/, which is dead. according to their socials, the link should be https://arcadewise.me/, which also has the webring embed.

    opened by loovjo 1
  • Add jianminchen.com

    Add jianminchen.com

    Hey! I'd like to open a pull request to get my site, https://jianminchen.com added to the webring. It's basically just a place for me to rant, and I think I'm decently interesting. I hope.

    opened by jianmin-chen 0
  • Request

    Request "math yesterweb" addition to webring

    I have an old-fashioned site where I write blog posts about technology and society. The technical lessons are mainly about C++, Unix commands, lessons I've learned in running a Linux server, and impressive algorithms and theorems in mathematics. The blog posts so far are criticisms of major social media sites and missed opportunities with computers, but they will expand to cover other topics, like phone technology.

    Please let me know if I may join, and what I may need to add/remove in order to qualify.

    Site homepage

    opened by chocorho 0
  • Add ampersandia.net

    Add ampersandia.net

    I'll add the iframe to my website as soon as I'm added to the webring (unless I should add it before that, the rules don't specify, please notify me if this is the case)

    opened by Lilith-In-Starlight 0
Owner
Kognise
I'm a programmer who has an obsession with starting side projects and reverse engineering things.
Kognise
Goodname is a tool to assist you with cool naming of your methods and software

Goodname is a tool to assist you with cool naming of your methods and software. Given a brief description of your method or software, this tool enumerates name candidates forming subsequences of the description (i.e., abbreviation).

Shunsuke Kanda 118 Dec 28, 2022
A traditional web forum built in Rust with modern technology to be fast, secure, scalable, and stable.

Volksforo A traditional web forum built in Rust with modern technology to be fast, secure, scalable, and stable. Stack Rust actix-web askama ScyllaDB

Josh 5 Mar 21, 2023
Compile-time stuff and other goodies for rustaceans 🦀

?? bagel: Always baked, never fried bagel is a collection of macros and other things that we frequently use at Skytable, primarily to get work done at

Skytable 3 Jul 4, 2022
A short exercise to introduce people to the Rust programming language

Searching primes by brute force This code is ment to be an exercice to teach rust and give a first impression on how to work with the language during

JoelImgu 3 Dec 14, 2022
An attempt at implementing a state-of-the-art Voxel DAG in Rust

VDAG Introduction This is an attempt at implementing a state-of-the-art compressed voxel data structure, as described in a number of papers ([PDFs] Ka

SamCasavant 2 Aug 25, 2022
Bad Apple!! music video on WASM-4

w4-bad-apple Bad Apple!! music video on the WASM-4 fantasy console. Building First, you need to create a frames directory containing an image for each

Mark Carlson 7 Jul 2, 2022
Diosic is an open source web-based music collection server and streamer

Diosic is an open source web-based music collection server and streamer. Mainly suitable for users who need to deploy on servers with low hardware specifications.

Jinker 45 Jan 28, 2023
:crab: Small exercises to get you used to reading and writing Rust code!

rustlings ?? ❤️ Greetings and welcome to rustlings. This project contains small exercises to get you used to reading and writing Rust code. This inclu

The Rust Programming Language 33.1k Jan 2, 2023
A Rust macro for writing nested loop expressions

loop_chain A Rust macro for writing nested loop expressions Usage | Examples | Docs Dependencies [dependencies] loop_chain = "0.1.1" Usage For express

Takayuki Maeda 5 Jul 30, 2021
Take your first step in writing a compiler. Implemented in Rust.

first-step-rust Take your first step in writing a compiler, using Rust. Building from Source Make sure the Rust toolchain is installed on your compute

PKU Compiler Course 13 Aug 28, 2022