├── .gitattributes ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── config.json ├── data ├── .DS_Store ├── assets │ ├── JetBrainsMono.ttf │ ├── ms_robot.svg │ ├── ms_robot_cheery.png │ ├── ms_robot_wave.png │ └── styles.css └── templates │ ├── index.html │ └── template.html ├── docs ├── 44203 │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── 128293 │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── 440729 │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── 442811 │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── 5225225 │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── .DS_Store ├── 0x191E32 │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── 0x42 │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── 0x4d6165 │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── 0x5fbe │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── 0x657a7269 │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── 0x6e6174 │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── 0x9D │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── 0xd14 │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── 12abca3d-8 │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── 2740-35672 │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── 31a05b9c │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── 393q658 │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── 5TR4Y │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── CyberBirb │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── DERG │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── Ex6C69747279 │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── JetBrainsMono.ttf ├── abbieoverflight │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── beeps │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── calicobot │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── cascade │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── charlie │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── cosyivy │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── darthplagal │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── dish │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── gazesys │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── grassblock │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── index.html ├── junko │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── kfcman │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── livtown │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── meluwudy │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── ms_robot.svg ├── ms_robot_cheery.png ├── ms_robot_wave.png ├── nelle │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── ninee │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── noelle │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── quarc │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── rabbithawk256 │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── riflesniper │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── roboring.opml ├── roboring │ ├── .DS_Store │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── sneexy │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── squeakable │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── stel │ ├── .DS_Store │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── styles.css ├── thermia │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── tulpenkiste │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── unnick │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html ├── vars │ ├── next │ │ └── index.html │ └── previous │ │ └── index.html └── zvava │ ├── next │ └── index.html │ └── previous │ └── index.html ├── src ├── cli.rs ├── file.rs ├── html.rs ├── http.rs ├── main.rs └── website.rs └── websites.json /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled files 2 | /target/ 3 | 4 | # Generated webring files 5 | /webring/ 6 | 7 | # Backup files created by editors 8 | *~ 9 | *.swp 10 | 11 | # IDE files 12 | .idea/ 13 | .vscode/ 14 | .vs/ 15 | 16 | # Debug files 17 | log.txt 18 | 19 | # Conversation files 20 | *.txt 21 | 22 | # System cache files 23 | .DS_Store 24 | Thumbs.db -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "ringfairy" 3 | version = "0.1.2" 4 | edition = "2021" 5 | authors = ["Kern AKA Kersed ", "Shom Bandopadhaya "] 6 | license = "GPL-3.0" 7 | description = "Creates a webring by generating HTML files for a set of websites, linking them together." 8 | readme = "README.md" 9 | homepage = "https://github.com/k3rs3d/ringfairy" 10 | repository = "https://github.com/k3rs3d/ringfairy" 11 | documentation = "https://github.com/k3rs3d/ringfairy" 12 | keywords = ["static-site", "webring", "smallweb", "indieweb"] 13 | categories = ["command-line-utilities", "web-programming"] 14 | 15 | 16 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 17 | 18 | [dependencies] 19 | chrono = "0.4" 20 | clap = { version = "4.4", features = ["derive"] } 21 | env_logger = "0.10" 22 | futures = "0.3.30" 23 | log = "0.4.20" 24 | minify-html = "0.15" 25 | rand = "0.8" 26 | reqwest = "0.11.24" 27 | scraper = "0.18.1" 28 | serde = { version = "1.0", features = ["derive"] } 29 | serde_json = "1.0" 30 | tera = "1.19" 31 | tokio = { version = "1", features = ["full"] } 32 | url = "2.5" 33 | opml = "1.1.6" 34 | 35 | [profile.release] 36 | lto = true 37 | opt-level = 3 38 | strip = true 39 | debug = false 40 | panic = "abort" 41 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # roboring 2 | a webring for robot-aligned beings! powered by [ringfairy](https://github.com/k3rs3d/ringfairy) 3 | 4 | ## join 5 | 1. choose a slug for your site (a unique identifier) 6 | 7 | 2. add the webring links to your site: 8 | 9 | ```html 10 | <- 11 | roboring 12 | -> 13 | ``` 14 | 15 | 3. submit a pull request adding yourself to `websites.json`, or email me at `stel@disroot.org` and i'll add you manually. 16 | 17 | if you submit a PR, entries should have the **name** of your site, your **slug**, a short **description**, your **site link**, your **rss feed** (if applicable), and a **contact link** (such as an email or social media) 18 | 19 | here's an example entry: 20 | 21 | ```json 22 | { 23 | "name": "Example Website", 24 | "slug": "example", 25 | "about": "example site", 26 | "url": "https://example.com/", 27 | "rss": "https://example.com/index.xml", 28 | "owner": "person@example.com" 29 | } 30 | ``` 31 | 32 | -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ring_name": "roboring", 3 | "ring_description": "a webring for robot-aligned beings", 4 | "ring_owner": "stel", 5 | "ring_owner_site": "https://moondvsted.neocities.org/", 6 | "filepath_list": "./websites.json", 7 | "path_output": "./docs", 8 | "path_assets": "./data/assets", 9 | "path_templates": "./data/templates", 10 | "base_url": "https://webring.domain.tld", 11 | "shuffle": false, 12 | "verbose": false, 13 | "skip_minify": false 14 | } 15 | -------------------------------------------------------------------------------- /data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellophiliac/roboring/f2966c46dc799c883216db9310dbb740f1aa2051/data/.DS_Store -------------------------------------------------------------------------------- /data/assets/JetBrainsMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellophiliac/roboring/f2966c46dc799c883216db9310dbb740f1aa2051/data/assets/JetBrainsMono.ttf -------------------------------------------------------------------------------- /data/assets/ms_robot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /data/assets/ms_robot_cheery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellophiliac/roboring/f2966c46dc799c883216db9310dbb740f1aa2051/data/assets/ms_robot_cheery.png -------------------------------------------------------------------------------- /data/assets/ms_robot_wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellophiliac/roboring/f2966c46dc799c883216db9310dbb740f1aa2051/data/assets/ms_robot_wave.png -------------------------------------------------------------------------------- /data/assets/styles.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: "Jetbrains Mono"; 3 | src: url(./JetBrainsMono.ttf); 4 | } 5 | 6 | body { 7 | font-family: "Jetbrains Mono", monospace; 8 | line-height: 1.6; 9 | background-color: #111; 10 | color: #fff; 11 | font-weight:lighter; 12 | max-width:1250px; 13 | margin: 0 auto 14 | } 15 | 16 | h1 { 17 | text-align: center; 18 | } 19 | 20 | #robo { 21 | content:url(./ms_robot.svg); 22 | height:1em; 23 | vertical-align:middle; 24 | margin-right:0.5em 25 | } 26 | 27 | #robo:hover { 28 | content:url(./ms_robot_cheery.png) 29 | } 30 | 31 | a { 32 | color: #58d3d7; 33 | text-decoration: underline; 34 | background-color: transparent; 35 | font-weight: normal; 36 | } 37 | 38 | a:hover, a:focus { 39 | text-decoration: none; 40 | background-color: #58d3d7; 41 | color: #111; 42 | } 43 | 44 | b { 45 | color:#58d3d7; 46 | font-weight: bold; 47 | } 48 | 49 | #members { 50 | width:100%; 51 | overflow-x:auto 52 | } 53 | 54 | table { 55 | width: 100%; 56 | border-collapse: collapse; 57 | margin: 12px auto; 58 | font-size: 1em; 59 | } 60 | 61 | tr { 62 | margin-bottom: 10px; 63 | } 64 | 65 | tr:nth-child(odd) { 66 | background-color: #222; /* Light gray for odd rows */ 67 | } 68 | 69 | tr:hover { 70 | background-color: #444; /* hover effect for table rows */ 71 | } 72 | 73 | th, td { 74 | padding: 10px; 75 | border: 2px solid #666; 76 | border-radius: 8px; 77 | text-align: left; 78 | } 79 | 80 | th { 81 | background-color: #444; 82 | text-align: center; 83 | font-size: 1.1em; 84 | } 85 | 86 | ol { 87 | margin:0 1.75em; 88 | padding:0; 89 | } 90 | 91 | li { 92 | margin-bottom: 0.5em; 93 | } 94 | 95 | pre { 96 | font-family: 'jetbrains mono', monospace; 97 | white-space: nowrap; 98 | overflow-x: auto; 99 | border: 1px solid #666; 100 | border-radius: 8px; 101 | padding: 1em; 102 | } 103 | 104 | .comment { 105 | color:#929292; 106 | font-style:italic 107 | } 108 | 109 | .container { 110 | max-width: 800px; 111 | margin: auto; 112 | padding: 12px; 113 | } 114 | 115 | footer { 116 | text-align: center; 117 | font-size:0.75em; 118 | } 119 | 120 | @media screen and (max-width: 600px) { 121 | table { 122 | width: 100%; /* Allows the table to be 100% width on smaller screens */ 123 | } 124 | body { 125 | padding:0.5em 126 | } 127 | } 128 | -------------------------------------------------------------------------------- /data/templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | roboring 11 | 12 | 13 | 14 | 15 |
16 |

roboring

17 |
18 |
19 | [ <- prev | next -> ] 20 |
a webring for robot-aligned beings! 21 |
22 |

members

23 |

there are {{ number_of_sites }} sites in roboring.

24 |
25 | {{ table_of_sites | safe}} 26 |
27 |

join

28 |

corpo websites and sites with bigotry/hate speech will not be allowed.
29 | in general, most sites will be accepted, but i do reserve the right to reject sites

30 |
    31 |
  1. choose a slug (unique code) for your site
  2. 32 |
  3. add the webring HTML somewhere on your site: 33 |
    34 |       <a href="https://stellophiliac.github.io/roboring/YOUR_SLUG/previous">←</a>
    35 | <a href="https://stellophiliac.github.io/roboring">roboring</a>
    36 | <a href="https://stellophiliac.github.io/roboring/YOUR_SLUG/next">→</a> 37 |
    38 | feel free to customize the content as you'd like, as long as the links are intact. make sure to replace 39 | "YOUR_SLUG" with your actual slug! 40 |
  4. 41 |
  5. open a pull request on github and add your 42 | site to websites.json. here's the format: 43 |
    44 |       {
    45 |
    46 | "name": "your name",
    47 | "slug": "your slug",
    48 | "about": "short description of your site",
    49 | "url": "your site url",
    50 | "rss": "your rss feed url (optional, delete if unneeded)",
    51 | "owner": "link to you: could be social media, neocities profile, an email, etc..." 52 |
    53 | } 54 |
    55 | make sure everything's in quotes, and that there's a comma after the closing curly brace } of the previous 56 | item.
    57 | if you'd prefer, feel free to email me instead (stel [at] disroot.org) and i'll add you manually. 58 |
  6. 59 |
60 |
61 |
62 |

last updated at {{ current_time }} UTC+8
63 | powered by ringfairy

64 |
65 | 66 | 67 | -------------------------------------------------------------------------------- /data/templates/template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | redirecting... 7 | 8 | 9 | 10 | 11 |

redirecting you to {{ url }}! beep!

12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellophiliac/roboring/f2966c46dc799c883216db9310dbb740f1aa2051/docs/.DS_Store -------------------------------------------------------------------------------- /docs/0x191E32/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://www.5snb.club/! beep! -------------------------------------------------------------------------------- /docs/0x191E32/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://0x5fbe.id! beep! -------------------------------------------------------------------------------- /docs/0x42/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://riflesniper.art/! beep! -------------------------------------------------------------------------------- /docs/0x42/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://0x4d6165.wanderingwires.net! beep! -------------------------------------------------------------------------------- /docs/0x4d6165/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://synthesis0x42.digital! beep! -------------------------------------------------------------------------------- /docs/0x4d6165/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://abbie.moe/! beep! -------------------------------------------------------------------------------- /docs/0x5fbe/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://elke.cafe! beep! -------------------------------------------------------------------------------- /docs/0x5fbe/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://ezri.pet! beep! -------------------------------------------------------------------------------- /docs/0x657a7269/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://0x5fbe.id! beep! -------------------------------------------------------------------------------- /docs/0x657a7269/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://libdb.so! beep! -------------------------------------------------------------------------------- /docs/0x6e6174/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://gze.neocities.org/! beep! -------------------------------------------------------------------------------- /docs/0x6e6174/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://meluhdy.dev! beep! -------------------------------------------------------------------------------- /docs/0x9D/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://www.31a05b.net/! beep! -------------------------------------------------------------------------------- /docs/0x9D/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://liv.town! beep! -------------------------------------------------------------------------------- /docs/0xd14/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://ezri.pet! beep! -------------------------------------------------------------------------------- /docs/0xd14/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://999eagle.moe! beep! -------------------------------------------------------------------------------- /docs/128293/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://www.ninee.xyz! beep! -------------------------------------------------------------------------------- /docs/128293/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://squeakable.dev! beep! -------------------------------------------------------------------------------- /docs/12abca3d-8/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://analoguecatalogue.neocities.org//! beep! -------------------------------------------------------------------------------- /docs/12abca3d-8/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://natalieee.net! beep! -------------------------------------------------------------------------------- /docs/2740-35672/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://999eagle.moe! beep! -------------------------------------------------------------------------------- /docs/2740-35672/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://query.44203.online/! beep! -------------------------------------------------------------------------------- /docs/31a05b9c/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://stellophiliac.github.io/roboring! beep! -------------------------------------------------------------------------------- /docs/31a05b9c/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://cy-bernet-ix.neocities.org/! beep! -------------------------------------------------------------------------------- /docs/393q658/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://abbie.moe/! beep! -------------------------------------------------------------------------------- /docs/393q658/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://x86cu.be! beep! -------------------------------------------------------------------------------- /docs/440729/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://libdb.so! beep! -------------------------------------------------------------------------------- /docs/440729/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://genosse.eu! beep! -------------------------------------------------------------------------------- /docs/44203/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://genosse.eu! beep! -------------------------------------------------------------------------------- /docs/44203/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://zvava.org! beep! -------------------------------------------------------------------------------- /docs/442811/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://cosyivy.xyz! beep! -------------------------------------------------------------------------------- /docs/442811/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://topos.gay/! beep! -------------------------------------------------------------------------------- /docs/5225225/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://lavenderfield.xyz! beep! -------------------------------------------------------------------------------- /docs/5225225/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://elke.cafe! beep! -------------------------------------------------------------------------------- /docs/5TR4Y/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://meluhdy.dev! beep! -------------------------------------------------------------------------------- /docs/5TR4Y/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://kunfucutsman.neocities.org! beep! -------------------------------------------------------------------------------- /docs/CyberBirb/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://cascading.space! beep! -------------------------------------------------------------------------------- /docs/CyberBirb/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://exlitry.world/! beep! -------------------------------------------------------------------------------- /docs/DERG/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://x86cu.be! beep! -------------------------------------------------------------------------------- /docs/DERG/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://gze.neocities.org/! beep! -------------------------------------------------------------------------------- /docs/Ex6C69747279/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://cybird.nekoweb.org! beep! -------------------------------------------------------------------------------- /docs/Ex6C69747279/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://calicocore.space! beep! -------------------------------------------------------------------------------- /docs/JetBrainsMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellophiliac/roboring/f2966c46dc799c883216db9310dbb740f1aa2051/docs/JetBrainsMono.ttf -------------------------------------------------------------------------------- /docs/abbieoverflight/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://0x4d6165.wanderingwires.net! beep! -------------------------------------------------------------------------------- /docs/abbieoverflight/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://yippee4webcore.neocities.org/! beep! -------------------------------------------------------------------------------- /docs/beeps/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://nelle.observer/! beep! -------------------------------------------------------------------------------- /docs/beeps/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://lavenderfield.xyz! beep! -------------------------------------------------------------------------------- /docs/calicobot/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://exlitry.world/! beep! -------------------------------------------------------------------------------- /docs/calicobot/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://chromaeleon.neocities.org/! beep! -------------------------------------------------------------------------------- /docs/cascade/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://girlthi.ng/~thermia! beep! -------------------------------------------------------------------------------- /docs/cascade/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://cybird.nekoweb.org! beep! -------------------------------------------------------------------------------- /docs/charlie/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://skysyrup.dev/! beep! -------------------------------------------------------------------------------- /docs/charlie/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://riflesniper.art/! beep! -------------------------------------------------------------------------------- /docs/cosyivy/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://gb0.dev/! beep! -------------------------------------------------------------------------------- /docs/cosyivy/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://skysyrup.dev/! beep! -------------------------------------------------------------------------------- /docs/darthplagal/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://squeakable.dev! beep! -------------------------------------------------------------------------------- /docs/darthplagal/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://pyrox.dev/! beep! -------------------------------------------------------------------------------- /docs/dish/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://darthplagal.xyz! beep! -------------------------------------------------------------------------------- /docs/dish/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://gb0.dev/! beep! -------------------------------------------------------------------------------- /docs/gazesys/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://liv.town! beep! -------------------------------------------------------------------------------- /docs/gazesys/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://www.ninee.xyz! beep! -------------------------------------------------------------------------------- /docs/grassblock/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://pyrox.dev/! beep! -------------------------------------------------------------------------------- /docs/grassblock/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://cosyivy.xyz! beep! -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | roboring

roboring

[ <- prev | next -> ]
a webring for robot-aligned beings!

members

there are 49 sites in roboring.

#slugURLaboutowner
1roboringhttps://stellophiliac.github.io/roboringyou are here!
2stelhttps://moondvsted.spacestel's silly personal websitehttps://eepy.moe/@stel
3sneexyhttps://synth.downloadfor all of one's personal synthetics download services needshttps://booping.synth.download/@sneexy
4unnickhttps://unnick.mice.telbeep boop bip :3https://wetdry.world/@unnick
5tulpenkistehttps://tulpenkiste.codeberg.pageSilly personal websitehttps://lea.pet/@tulpenkiste
6noellehttps://noelle.devNoelle's personal website for writing and referencehttps://mastodon.noelle.dev/@noelle
7zvavahttps://zvava.orgsophie's brain out on a tablehttps://f.619.hu/@zvava
844203https://query.44203.online/(delta-query-interface node: Δ-44203)https://mastodon.vierkantor.com/@1
92740-35672https://genosse.euseizing the means of computation while shitpostinghttps://shonk.social/@flora
10440729https://999eagle.moe⛧-440729's websitehttps://mastodon.catgirl.cloud/@sophie
110xd14https://libdb.so0xd14 terminal and information hubhttps://tech.lgbt/@diamond
120x657a7269https://ezri.petunit ⎈-657a7269 http interfacehttps://sleepless.cafe/ezri
130x5fbehttps://0x5fbe.idoccasional malfunctions from ꙮ-5fbehttps://social.treehouse.systems/@melody_notpond
140x191E32https://elke.cafebarista-robot turned weird-cat-thing on the internethttps://tapenoise.cafe/@ijomeli
155225225https://www.5snb.club/ [rss]the site of an entity with serial number 5225225https://furry.engineer/@5225225
16junkohttps://lavenderfield.xyzcombat robomaid exploring the edges of realityhttps://ak.lavenderfield.xyz/jvnkyard
17beepshttps://beeps.website [rss]Web developer, plural, robot furry kinda just posts about whatever.https://social.beeps.gay/@beeps
18nellehttps://nelle.observer/ [rss]computer touching, sciadv loving creature. something or other.https://limbo.town/@nellePoint
19varshttps://chromaeleon.neocities.org/Reptilian machine creating art for humans to enjoy.chromaeleon@proton.me
20calicobothttps://calicocore.spaceBeepmeow! Aspiring robo-catgirl sysadmin nerdmiamckeown@pm.me
21Ex6C69747279https://exlitry.world/This is Charon Faustinus's personal website, Exlitry.World (or Exlitry verse) are created by Charon Faustinuscharon.faustinus@gmail.com
22CyberBirbhttps://cybird.nekoweb.org [rss]Website dedicated to funny mechanical birb from 404 years in the Retrofuture.https://floofy.tech/@Cybird
23cascadehttps://cascading.space [rss]personal website for cascade, a protogen who makes websites and things that go on websitescascade@cascading.space
24thermiahttps://girlthi.ng/~thermiawebsite belonging to a bot called thermiahttps://sk.girlthi.ng/@thermia
25kfcmanhttps://kunfucutsman.neocities.orgMy personal site on which I post about anything I am doing. May contain stories, quick writings and programming stuffhttps://discordapp.com/users/335547774219059211
265TR4Yhttps://sos.nekoweb.orgconsole.log('a web extension of strayOS')strayos@keemail.me
27meluwudyhttps://meluhdy.devmel's home site, where it stores information about its identityhttps://mk.moth.zone/@melody
280x6e6174https://natalieee.netwebsite in which natalie complains and ocassionaly doesn't explain incomprehensible computer programshttps://natalieee.net/files/nrc.vcf
2912abca3d-8https://gze.neocities.org/Identity and hobby rambles shared between an amalgamation of androids and their pack of weirdos.
30DERGhttps://analoguecatalogue.neocities.org//the website of a system with robots and dragons in it what more do you need to knowweirddragon@duck.com
31quarchttps://x86cu.beMy website that's mostly an instruction manual
32393q658https://yippee4webcore.neocities.org/a personal site for a robot's ramblingshttps://neocities.org/site/yippee4webcore
33abbieoverflighthttps://abbie.moe/507131 (aka abbie)'s websitehttps://transfem.boywife.top/abbieoverflight
340x4d6165https://0x4d6165.wanderingwires.net [rss]personal site, blog, and writings repository of a robot fox girlhttps://wanderingwires.net/@0x4d6165
350x42https://synthesis0x42.digitaldigital garden + http interface of #42af309a-d505-4a72-9e3c-19611f3b0671rain--@synthesis0x42.digital | https://bytes.programming.dev/@0x42
36riflesniperhttps://riflesniper.art/a green screenface robot-type kinda guy who likes drawing other robots :3https://neocities.org/site/riflesniper
37charliehttps://topos.gay/the personal webpage of a thing called charlie
38442811https://skysyrup.dev/ashley's little corner of the internetashley[at]skysyrup.dev
39cosyivyhttps://cosyivy.xyz [rss]a silly socialist robo programmer girls corner of the interwebbs!! :3ivy@cosyivy.xyz
40grassblockhttps://gb0.dev/ [rss]fmt.Println('A random block's homespace')i[at]gb0.dev | https://portal.gb0.dev/@me
41dishhttps://pyrox.dev/ [rss]dish's webbed sitepyrox[at]pyrox.dev
42darthplagalhttps://darthplagal.xyza site index for darthplagal, a woman on the internethttps://bsky.app/profile/darthplagal.xyz
43squeakablehttps://squeakable.devSqueaking bytes into the nethttps://furry.engineer/@squeakable
44128293https://wolfyja.dethe website of your silly local /(robo(t)?|wolf(y)?)(girl(thing)?)?/https://gts.apicrim.es/@awoo | https://gts.apicrim.es/@128293 | beep [at] wolfyja.de
45nineehttps://www.ninee.xyzmostly a links page rn but should eventually contain logs of projects and other topics that interest me. also the robotkin flaghttps://snug.moe/@0x9E01
46gazesyshttps://gaze.systems [rss]a thing, gazing at the void of the net...https://bsky.app/profile/did:plc:dfl62fgb7wtjj3fcbb72naae
47livtownhttps://liv.town [rss]the forever work in progress /(by|for|of)/ liv!https://quack.social/@liv
480x9Dhttps://cy-bernet-ix.neocities.org/the page of a dogthing robocreature who will eventually have interesting stuff to talk abouthttps://bsky.app/profile/cy-bernet-ix.neocities.org
4931a05b9chttps://www.31a05b.net/31a's slowly expanding cluster of pages within the wwwhttps://bsky.app/profile/31a05b.net

join

corpo websites and sites with bigotry/hate speech will not be allowed.
in general, most sites will be accepted, but i do reserve the right to reject sites

  1. choose a slug (unique code) for your site
  2. add the webring HTML somewhere on your site:
     2 |       <a href="https://stellophiliac.github.io/roboring/YOUR_SLUG/previous">←</a>
    3 | <a href="https://stellophiliac.github.io/roboring">roboring</a>
    4 | <a href="https://stellophiliac.github.io/roboring/YOUR_SLUG/next">→</a> 5 |
    feel free to customize the content as you'd like, as long as the links are intact. make sure to replace "YOUR_SLUG" with your actual slug!
  3. open a pull request on github and add your site to websites.json. here's the format:
     6 |       {
    7 |
    8 | "name": "your name",
    9 | "slug": "your slug",
    10 | "about": "short description of your site",
    11 | "url": "your site url",
    12 | "rss": "your rss feed url (optional, delete if unneeded)",
    13 | "owner": "link to you: could be social media, neocities profile, an email, etc..." 14 |
    15 | } 16 |
    make sure everything's in quotes, and that there's a comma after the closing curly brace } of the previous item.
    if you'd prefer, feel free to email me instead (stel [at] disroot.org) and i'll add you manually.

last updated at 2025-05-12 20:20:23 UTC+8
powered by ringfairy

-------------------------------------------------------------------------------- /docs/junko/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://beeps.website! beep! -------------------------------------------------------------------------------- /docs/junko/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://www.5snb.club/! beep! -------------------------------------------------------------------------------- /docs/kfcman/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://sos.nekoweb.org! beep! -------------------------------------------------------------------------------- /docs/kfcman/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://girlthi.ng/~thermia! beep! -------------------------------------------------------------------------------- /docs/livtown/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://cy-bernet-ix.neocities.org/! beep! -------------------------------------------------------------------------------- /docs/livtown/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://gaze.systems! beep! -------------------------------------------------------------------------------- /docs/meluwudy/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://natalieee.net! beep! -------------------------------------------------------------------------------- /docs/meluwudy/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://sos.nekoweb.org! beep! -------------------------------------------------------------------------------- /docs/ms_robot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /docs/ms_robot_cheery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellophiliac/roboring/f2966c46dc799c883216db9310dbb740f1aa2051/docs/ms_robot_cheery.png -------------------------------------------------------------------------------- /docs/ms_robot_wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellophiliac/roboring/f2966c46dc799c883216db9310dbb740f1aa2051/docs/ms_robot_wave.png -------------------------------------------------------------------------------- /docs/nelle/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://chromaeleon.neocities.org/! beep! -------------------------------------------------------------------------------- /docs/nelle/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://beeps.website! beep! -------------------------------------------------------------------------------- /docs/ninee/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://gaze.systems! beep! -------------------------------------------------------------------------------- /docs/ninee/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://wolfyja.de! beep! -------------------------------------------------------------------------------- /docs/noelle/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://zvava.org! beep! -------------------------------------------------------------------------------- /docs/noelle/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://tulpenkiste.codeberg.page! beep! -------------------------------------------------------------------------------- /docs/quarc/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://yippee4webcore.neocities.org/! beep! -------------------------------------------------------------------------------- /docs/quarc/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://analoguecatalogue.neocities.org//! beep! -------------------------------------------------------------------------------- /docs/rabbithawk256/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://meluhdy.dev! beep! -------------------------------------------------------------------------------- /docs/rabbithawk256/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://sos.nekoweb.org! beep! -------------------------------------------------------------------------------- /docs/riflesniper/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://topos.gay/! beep! -------------------------------------------------------------------------------- /docs/riflesniper/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://synthesis0x42.digital! beep! -------------------------------------------------------------------------------- /docs/roboring.opml: -------------------------------------------------------------------------------- 1 | a webring for robot-aligned beingsstelhttps://moondvsted.neocities.org/ -------------------------------------------------------------------------------- /docs/roboring/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellophiliac/roboring/f2966c46dc799c883216db9310dbb740f1aa2051/docs/roboring/.DS_Store -------------------------------------------------------------------------------- /docs/roboring/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://moondvsted.space! beep! -------------------------------------------------------------------------------- /docs/roboring/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://www.31a05b.net/! beep! -------------------------------------------------------------------------------- /docs/sneexy/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://unnick.mice.tel! beep! -------------------------------------------------------------------------------- /docs/sneexy/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://moondvsted.space! beep! -------------------------------------------------------------------------------- /docs/squeakable/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://wolfyja.de! beep! -------------------------------------------------------------------------------- /docs/squeakable/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://darthplagal.xyz! beep! -------------------------------------------------------------------------------- /docs/stel/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellophiliac/roboring/f2966c46dc799c883216db9310dbb740f1aa2051/docs/stel/.DS_Store -------------------------------------------------------------------------------- /docs/stel/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://synth.download! beep! -------------------------------------------------------------------------------- /docs/stel/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://stellophiliac.github.io/roboring! beep! -------------------------------------------------------------------------------- /docs/styles.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: "Jetbrains Mono"; 3 | src: url(./JetBrainsMono.ttf); 4 | } 5 | 6 | body { 7 | font-family: "Jetbrains Mono", monospace; 8 | line-height: 1.6; 9 | background-color: #111; 10 | color: #fff; 11 | font-weight:lighter; 12 | max-width:1250px; 13 | margin: 0 auto 14 | } 15 | 16 | h1 { 17 | text-align: center; 18 | } 19 | 20 | #robo { 21 | content:url(./ms_robot.svg); 22 | height:1em; 23 | vertical-align:middle; 24 | margin-right:0.5em 25 | } 26 | 27 | #robo:hover { 28 | content:url(./ms_robot_cheery.png) 29 | } 30 | 31 | a { 32 | color: #58d3d7; 33 | text-decoration: underline; 34 | background-color: transparent; 35 | font-weight: normal; 36 | } 37 | 38 | a:hover, a:focus { 39 | text-decoration: none; 40 | background-color: #58d3d7; 41 | color: #111; 42 | } 43 | 44 | b { 45 | color:#58d3d7; 46 | font-weight: bold; 47 | } 48 | 49 | #members { 50 | width:100%; 51 | overflow-x:auto 52 | } 53 | 54 | table { 55 | width: 100%; 56 | border-collapse: collapse; 57 | margin: 12px auto; 58 | font-size: 1em; 59 | } 60 | 61 | tr { 62 | margin-bottom: 10px; 63 | } 64 | 65 | tr:nth-child(odd) { 66 | background-color: #222; /* Light gray for odd rows */ 67 | } 68 | 69 | tr:hover { 70 | background-color: #444; /* hover effect for table rows */ 71 | } 72 | 73 | th, td { 74 | padding: 10px; 75 | border: 2px solid #666; 76 | border-radius: 8px; 77 | text-align: left; 78 | } 79 | 80 | th { 81 | background-color: #444; 82 | text-align: center; 83 | font-size: 1.1em; 84 | } 85 | 86 | ol { 87 | margin:0 1.75em; 88 | padding:0; 89 | } 90 | 91 | li { 92 | margin-bottom: 0.5em; 93 | } 94 | 95 | pre { 96 | font-family: 'jetbrains mono', monospace; 97 | white-space: nowrap; 98 | overflow-x: auto; 99 | border: 1px solid #666; 100 | border-radius: 8px; 101 | padding: 1em; 102 | } 103 | 104 | .comment { 105 | color:#929292; 106 | font-style:italic 107 | } 108 | 109 | .container { 110 | max-width: 800px; 111 | margin: auto; 112 | padding: 12px; 113 | } 114 | 115 | footer { 116 | text-align: center; 117 | font-size:0.75em; 118 | } 119 | 120 | @media screen and (max-width: 600px) { 121 | table { 122 | width: 100%; /* Allows the table to be 100% width on smaller screens */ 123 | } 124 | body { 125 | padding:0.5em 126 | } 127 | } 128 | -------------------------------------------------------------------------------- /docs/thermia/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://kunfucutsman.neocities.org! beep! -------------------------------------------------------------------------------- /docs/thermia/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://cascading.space! beep! -------------------------------------------------------------------------------- /docs/tulpenkiste/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://noelle.dev! beep! -------------------------------------------------------------------------------- /docs/tulpenkiste/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://unnick.mice.tel! beep! -------------------------------------------------------------------------------- /docs/unnick/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://tulpenkiste.codeberg.page! beep! -------------------------------------------------------------------------------- /docs/unnick/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://synth.download! beep! -------------------------------------------------------------------------------- /docs/vars/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://calicocore.space! beep! -------------------------------------------------------------------------------- /docs/vars/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://nelle.observer/! beep! -------------------------------------------------------------------------------- /docs/zvava/next/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://query.44203.online/! beep! -------------------------------------------------------------------------------- /docs/zvava/previous/index.html: -------------------------------------------------------------------------------- 1 | redirecting...

redirecting you to https://noelle.dev! beep! -------------------------------------------------------------------------------- /src/cli.rs: -------------------------------------------------------------------------------- 1 | use clap::{ArgAction, Parser}; 2 | use serde::Deserialize; 3 | 4 | use crate::file; 5 | 6 | // Main/final settings struct 7 | #[derive(Debug)] 8 | pub struct AppSettings { 9 | pub ring_name: String, 10 | pub ring_description: String, 11 | pub ring_owner: String, 12 | pub ring_owner_site: String, 13 | pub filepath_config: String, 14 | pub filepath_list: String, 15 | pub path_output: String, 16 | pub path_assets: String, 17 | pub path_templates: String, 18 | pub base_url: String, 19 | pub audit: bool, 20 | pub no_slug: bool, 21 | pub shuffle: bool, 22 | pub verbose: bool, 23 | pub skip_minify: bool, 24 | pub skip_verify: bool, 25 | pub dry_run: bool, 26 | } 27 | 28 | // Hardcoded values for anything not defined elsewhere 29 | impl Default for AppSettings { 30 | fn default() -> Self { 31 | AppSettings { 32 | ring_name: "webring".into(), 33 | ring_description: "A ring that connects websites to each other with links".into(), 34 | ring_owner: "Webring Organization or Person".into(), 35 | ring_owner_site: "https://webring.domain.tld/".into(), 36 | filepath_config: "./config.json".into(), 37 | filepath_list: "./websites.json".into(), 38 | path_output: "./webring".into(), 39 | path_assets: "./data/assets".into(), 40 | path_templates: "./data/templates".into(), 41 | base_url: " ".to_string(), 42 | audit: false, 43 | no_slug: false, 44 | shuffle: false, 45 | verbose: false, 46 | skip_minify: false, 47 | skip_verify: false, 48 | dry_run: false, 49 | } 50 | } 51 | } 52 | 53 | // Contains settings loaded from config file, e.g., config.json 54 | #[derive(Deserialize, Debug)] 55 | pub struct ConfigSettings { 56 | pub ring_name: Option, 57 | pub ring_description: Option, 58 | pub ring_owner: Option, 59 | pub ring_owner_site: Option, 60 | pub filepath_list: Option, 61 | pub path_output: Option, 62 | pub path_assets: Option, 63 | pub path_templates: Option, 64 | pub base_url: Option, 65 | pub audit: Option, 66 | pub no_slug: Option, 67 | pub shuffle: Option, 68 | pub verbose: Option, 69 | pub skip_minify: Option, 70 | pub skip_verify: Option, 71 | pub dry_run: Option, 72 | } 73 | 74 | // Clap-specific settings struct - able to contain Options 75 | #[derive(Parser, Debug)] 76 | #[clap( 77 | name = "ringfairy", 78 | version = env!("CARGO_PKG_VERSION"), 79 | author = "Kern AKA Kersed", 80 | about = "Creates a webring by generating HTML files for a set of websites, linking them together." 81 | )] 82 | pub struct ClapSettings { 83 | #[clap( 84 | short = 'c', 85 | long = "cfg", 86 | ignore_case = false, 87 | default_value = "./config.json", 88 | help = "Specify the config file path. Useful for settings that stay constant across many runs of your application, like path locations. Remember, any settings specified via command-line arguments will override the corresponding ones from this file" 89 | )] 90 | pub filepath_config: Option, 91 | 92 | #[clap( 93 | short = 'l', 94 | long = "list", 95 | ignore_case = false, 96 | help = "Specify the file containing the list of websites to use. It should be a JSON file with 'name', 'url', etc fields." 97 | )] 98 | pub filepath_list: Option, 99 | 100 | #[clap( 101 | short = 'o', 102 | long = "output", 103 | ignore_case = false, 104 | help = "Define the output directory. Generated files will be saved in this folder." 105 | )] 106 | pub path_output: Option, 107 | 108 | #[clap( 109 | short = 'a', 110 | long = "assets", 111 | ignore_case = false, 112 | help = "Specify the directory where asset files (e.g. CSS, images, other extras) can be found. NOTE: All contents will be copied into the output directory!" 113 | )] 114 | pub path_assets: Option, 115 | 116 | #[clap( 117 | short = 't', 118 | long = "templates", 119 | ignore_case = false, 120 | help = "Specify the folder containing HTML templates to use. Should at least contain 'templates.html' for creating the 'next' and 'previous' pages." 121 | )] 122 | pub path_templates: Option, 123 | 124 | #[clap( 125 | short = 'u', 126 | long = "url", 127 | ignore_case = false, 128 | help = "The base URL for the webring. Something like 'https://example.com'" 129 | )] 130 | pub base_url: Option, 131 | 132 | #[clap( 133 | short = 'n', 134 | long = "name", 135 | ignore_case = false, 136 | help = "The name of the webring. Something like 'Ghostring'." 137 | )] 138 | pub ring_name: Option, 139 | 140 | #[clap( 141 | short = 'd', 142 | long = "description", 143 | ignore_case = false, 144 | help = "A short description/about the webring." 145 | )] 146 | pub ring_description: Option, 147 | 148 | #[clap( 149 | short = 'm', 150 | long = "maintainer", 151 | ignore_case = false, 152 | help = "The owner/maintainer of the webring, could be a person or an organization." 153 | )] 154 | pub ring_owner: Option, 155 | 156 | #[clap( 157 | short = 'w', 158 | long = "website", 159 | ignore_case = false, 160 | help = "The website link of the website owner, not the base URL of the webring." 161 | )] 162 | pub ring_owner_site: Option, 163 | 164 | #[clap(short = 'A', long = "audit", action = ArgAction::SetTrue, help = "Scrapes URLs to check for the webring links before adding them to the list. If the links can't be found, the site will get skipped. ")] 165 | pub audit: bool, 166 | 167 | #[clap(short = 's', long = "shuffle", action = ArgAction::SetTrue, help = "Randomly shuffles the website sequence when generating the webring (does not modify the website list file).")] 168 | pub shuffle: bool, 169 | 170 | #[clap(short = 'v', long = "verbose", action = ArgAction::SetTrue, help = "Enables verbose logging.")] 171 | pub verbose: bool, 172 | 173 | #[clap(long = "no-slug", action = ArgAction::SetTrue, help = "Makes the webring reference sites by their index, rather than their slug. So the first website would be under /1/, the second /2/, etc. The default behavior is to create directories named for the site slug. ")] 174 | pub no_slug: bool, 175 | 176 | #[clap(long = "skip-minification", action = ArgAction::SetTrue, help = "Skips 'minification' of HTML files, which tries to reduce their file size. If your generated HTML files are having issues, try skipping minification.")] 177 | pub skip_minify: bool, 178 | 179 | #[clap(long = "skip-verification", action = ArgAction::SetTrue, help = "Skips verification of the URLs in the list. Probably unwise!")] 180 | pub skip_verify: bool, 181 | 182 | #[clap(long = "dry-run", action = ArgAction::SetTrue, help = "Perform a dry run without writing any files.")] 183 | pub dry_run: bool, 184 | } 185 | 186 | async fn load_config(config_path: &str) -> Option { 187 | // Early return for an empty path 188 | if config_path.trim().is_empty() { 189 | return None; 190 | } 191 | 192 | // Load async (supports either locally or remotely) 193 | let config_content = match file::acquire_file_data(config_path).await { 194 | Ok(content) => content, 195 | Err(_) => return None, 196 | }; 197 | 198 | // Ensure the file is not empty 199 | if config_content.trim().is_empty() { 200 | return None; 201 | } 202 | 203 | // Attempt to deserialize and return the result 204 | match serde_json::from_str(&config_content) { 205 | Ok(config) => Some(config), // Done 206 | Err(_) => None, // Deserialization failed 207 | } 208 | } 209 | 210 | fn merge_configs(cli_args: ClapSettings, config: Option) -> AppSettings { 211 | let mut final_settings = AppSettings::default(); 212 | 213 | if let Some(conf) = config { 214 | // Apply settings from config.json where available (unwrap_or keeps original if None) 215 | final_settings.ring_name = conf.ring_name.unwrap_or(final_settings.ring_name); 216 | final_settings.ring_description = conf.ring_description.unwrap_or(final_settings.ring_description); 217 | final_settings.ring_owner = conf.ring_owner.unwrap_or(final_settings.ring_owner); 218 | final_settings.ring_owner_site = conf.ring_owner_site.unwrap_or(final_settings.ring_owner_site); 219 | final_settings.filepath_list = conf.filepath_list.unwrap_or(final_settings.filepath_list); 220 | final_settings.path_output = conf.path_output.unwrap_or(final_settings.path_output); 221 | final_settings.path_assets = conf.path_assets.unwrap_or(final_settings.path_assets); 222 | final_settings.path_templates = conf 223 | .path_templates 224 | .unwrap_or(final_settings.path_templates); 225 | final_settings.base_url = conf.base_url.unwrap_or(final_settings.base_url); 226 | final_settings.no_slug = conf.no_slug.unwrap_or(final_settings.no_slug); 227 | final_settings.audit = conf.audit.unwrap_or(final_settings.audit); 228 | final_settings.verbose = conf.verbose.unwrap_or(final_settings.verbose); 229 | final_settings.shuffle = conf.shuffle.unwrap_or(final_settings.shuffle); 230 | final_settings.skip_minify = conf.skip_minify.unwrap_or(final_settings.skip_minify); 231 | final_settings.skip_verify = conf.skip_verify.unwrap_or(final_settings.skip_verify); 232 | final_settings.dry_run = conf.dry_run.unwrap_or(final_settings.dry_run); 233 | } 234 | 235 | // Then, override with CLI arguments if provided 236 | if let Some(val) = cli_args.ring_name { 237 | final_settings.ring_name = val; 238 | } 239 | if let Some(val) = cli_args.ring_description { 240 | final_settings.ring_description = val; 241 | } 242 | if let Some(val) = cli_args.ring_owner { 243 | final_settings.ring_owner = val; 244 | } 245 | if let Some(val) = cli_args.ring_owner_site { 246 | final_settings.ring_owner_site = val; 247 | } 248 | if let Some(val) = cli_args.filepath_list { 249 | final_settings.filepath_list = val; 250 | } 251 | if let Some(val) = cli_args.path_output { 252 | final_settings.path_output = val; 253 | } 254 | if let Some(val) = cli_args.path_assets { 255 | final_settings.path_assets = val; 256 | } 257 | if let Some(val) = cli_args.path_templates { 258 | final_settings.path_templates = val; 259 | } 260 | if let Some(val) = cli_args.base_url { 261 | final_settings.base_url = val; 262 | } 263 | 264 | // Boolean flags can simply be overridden as they don't have a `None` state 265 | if cli_args.audit { 266 | final_settings.audit = cli_args.audit; 267 | } 268 | if cli_args.no_slug { 269 | final_settings.no_slug = cli_args.no_slug; 270 | } 271 | if cli_args.shuffle { 272 | final_settings.shuffle = cli_args.shuffle; 273 | } 274 | if cli_args.verbose { 275 | final_settings.verbose = cli_args.verbose; 276 | } 277 | if cli_args.skip_minify { 278 | final_settings.skip_minify = cli_args.skip_minify; 279 | } 280 | if cli_args.skip_verify { 281 | final_settings.skip_verify = cli_args.skip_verify; 282 | } 283 | if cli_args.dry_run { 284 | final_settings.dry_run = cli_args.dry_run; 285 | } 286 | 287 | // HACK ish: apply log level settings here 288 | if final_settings.verbose { 289 | std::env::set_var("RUST_LOG", "info"); 290 | } else { 291 | std::env::set_var("RUST_LOG", "error"); // Default to only showing errors 292 | } 293 | 294 | final_settings 295 | } 296 | 297 | pub async fn parse_args() -> AppSettings { 298 | let clap_args = ClapSettings::parse(); 299 | 300 | // Check if a config file path is provided, and it's not empty 301 | let config_args = match clap_args.filepath_config.as_deref() { 302 | Some("") | Some("none") | None => None, // Treat empty as no config specified 303 | Some(path) => load_config(path).await, 304 | }; 305 | 306 | merge_configs(clap_args, config_args) 307 | } 308 | -------------------------------------------------------------------------------- /src/file.rs: -------------------------------------------------------------------------------- 1 | use std::fs; 2 | use std::error::Error; 3 | use crate::http::download_file; 4 | 5 | pub async fn acquire_file_data(path_or_url: &str) -> Result> { 6 | // Check if the path_or_url is likely a URL by looking for a scheme 7 | if path_or_url.starts_with("http://") || path_or_url.starts_with("https://") { 8 | // It's a URL, download the file 9 | download_file(path_or_url).await 10 | } else { 11 | // Assume it's a local file path 12 | match fs::read_to_string(path_or_url) { 13 | Ok(contents) => Ok(contents), 14 | Err(e) => Err(format!("Failed to open file: {}", e).into()), 15 | } 16 | } 17 | } 18 | 19 | pub fn copy_asset_files(source_dir: &str, output_dir: &str) -> Result<(), Box> { 20 | 21 | // Create the target directory if it doesn't exist 22 | fs::create_dir_all(output_dir)?; 23 | 24 | // Iterate over each entry in the assets directory 25 | for entry in fs::read_dir(source_dir)? { 26 | let entry = entry?; 27 | let file_name = entry.file_name(); 28 | let target_path = std::path::Path::new(output_dir).join(file_name); 29 | 30 | // If the entry is a file, copy it to the output directory 31 | if entry.file_type()?.is_file() { 32 | fs::copy(entry.path(), target_path)?; 33 | } 34 | } 35 | 36 | Ok(()) 37 | } -------------------------------------------------------------------------------- /src/html.rs: -------------------------------------------------------------------------------- 1 | use minify_html::{minify, Cfg}; 2 | use std::fs::{self}; 3 | use std::io::Write; 4 | use std::path::{Path, PathBuf}; 5 | use tera::{Context, Tera}; 6 | 7 | use opml::*; 8 | use crate::cli::AppSettings; 9 | 10 | //use crate::file::acquire_file_data; 11 | use crate::website::WebringSite; 12 | 13 | pub struct HtmlGenerator { 14 | tera: Tera, 15 | cfg: Cfg, 16 | skip_minify: bool, 17 | } 18 | 19 | // Stores pre-generated data for potential reuse 20 | struct PrecomputedTags { 21 | table_of_sites: String, 22 | number_of_sites: usize, 23 | current_time: String, 24 | opml_link: String, 25 | } 26 | 27 | impl HtmlGenerator { 28 | pub fn new(template_path: impl Into, skip_minify: bool) -> Result> { 29 | let mut cfg = Cfg::new(); 30 | cfg.minify_css = true; 31 | //cfg.keep_comments = true; 32 | 33 | let template_path_str = template_path.into().join("**/*").to_string_lossy().to_string(); 34 | let tera = Tera::new(&template_path_str).map_err(|err| Box::new(err) as Box)?; 35 | 36 | Ok(Self { 37 | tera, 38 | cfg, 39 | skip_minify, 40 | }) 41 | } 42 | 43 | fn write_content( 44 | &self, 45 | file_path: &Path, 46 | content: &str, 47 | ) -> Result<(), Box> { 48 | let mut file = fs::File::create(file_path)?; 49 | let final_content = if self.skip_minify { 50 | content.to_string() 51 | } else { 52 | let minified = minify(content.as_bytes(), &self.cfg); 53 | String::from_utf8(minified)? 54 | }; 55 | 56 | file.write_all(final_content.as_bytes())?; 57 | 58 | log::info!("Generated HTML file {}", file_path.display()); 59 | 60 | Ok(()) 61 | } 62 | 63 | pub async fn generate_opml( 64 | &self, 65 | webring: &[WebringSite], 66 | settings: &AppSettings, 67 | ) -> Result<(), Box> { 68 | 69 | let path_output = &settings.path_output; 70 | // Ensure output directory exists 71 | fs::create_dir_all(path_output)?; 72 | 73 | let mut opml = OPML::default(); 74 | opml.head = Some(Head { 75 | title: Some(settings.ring_description.to_owned()), 76 | owner_name: Some(settings.ring_owner.to_owned()), 77 | owner_id: Some(settings.ring_owner_site.to_owned()), 78 | ..Head::default() 79 | }); 80 | 81 | for (_index, website) in webring.iter().enumerate() { 82 | if let Some(owner) = &website.website.owner { 83 | if let Some(rss_url) = website.website.rss.as_ref().filter(|url| !url.is_empty()) { 84 | opml.add_feed(owner, rss_url); 85 | } 86 | } 87 | } 88 | 89 | let mut file = std::fs::File::create(path_output.to_owned() + "/" + &settings.ring_name + ".opml").unwrap(); 90 | let _xml = opml.to_writer(&mut file).unwrap(); 91 | 92 | Ok(()) 93 | } 94 | 95 | pub async fn generate_html( 96 | &self, 97 | webring: &[WebringSite], 98 | settings: &AppSettings, 99 | ) -> Result<(), Box> { 100 | let path_output = &settings.path_output; 101 | // Ensure output directory exists 102 | fs::create_dir_all(path_output)?; 103 | 104 | let mut context = Context::new(); 105 | context.insert("websites", webring); 106 | 107 | // Generate site-specific "next"/"previous" pages 108 | for site in webring.iter() { 109 | self.generate_site(site, webring,&context, path_output)?; 110 | } 111 | 112 | // Process all other custom templates 113 | self.generate_custom_templates(&settings, &webring).await?; 114 | 115 | Ok(()) 116 | } 117 | 118 | fn generate_site( 119 | &self, 120 | site: &WebringSite, 121 | webring: &[WebringSite], 122 | context: &Context, 123 | path_output: &str, 124 | ) -> Result<(), Box> { 125 | // Create directory for the site 126 | let site_path = Path::new(path_output).join(&site.website.slug); 127 | fs::create_dir_all(&site_path.join("next"))?; 128 | fs::create_dir_all(&site_path.join("previous"))?; 129 | 130 | // Determine previous/next links 131 | let previous_site = &webring[site.previous].website.url; 132 | let next_site = &webring[site.next].website.url; 133 | 134 | let mut next_context = context.clone(); 135 | next_context.insert("url", next_site); 136 | let content_next = self.tera.render("template.html", &next_context)?; 137 | self.write_content(&site_path.join("next/index.html"), &content_next)?; 138 | 139 | let mut previous_context = context.clone(); 140 | previous_context.insert("url", previous_site); 141 | let content_previous = self.tera.render("template.html", &previous_context)?; 142 | self.write_content(&site_path.join("previous/index.html"), &content_previous)?; 143 | 144 | Ok(()) 145 | } 146 | 147 | async fn generate_custom_templates( 148 | &self, 149 | settings: &AppSettings, 150 | webring: &[WebringSite], 151 | ) -> Result<(), Box> { 152 | // Pre-generate expensive tag data for reuse 153 | let path_output = &settings.path_output; 154 | let precomputed = PrecomputedTags { 155 | table_of_sites: self.generate_sites_table(webring)?, 156 | number_of_sites: webring.len(), 157 | current_time: chrono::Local::now().format("%Y-%m-%d %H:%M:%S").to_string(), 158 | opml_link: "./".to_owned() + &settings.ring_name + ".opml", 159 | }; 160 | 161 | // Load template files 162 | let template_paths = self.tera.get_template_names().filter(|name| *name != "template.html"); 163 | 164 | for template_name in template_paths { 165 | let context = self.process_tags(&precomputed)?; 166 | 167 | let template_file_name = Path::new(template_name) 168 | .file_name().unwrap() 169 | .to_str().unwrap(); 170 | 171 | let content = self.tera.render(template_name, &context)?; 172 | let file_path = Path::new(path_output).join(template_file_name); 173 | self.write_content(&file_path, &content)?; 174 | } 175 | 176 | Ok(()) 177 | } 178 | 179 | fn process_tags(&self, precomputed: &PrecomputedTags) -> Result> { 180 | let mut context = Context::new(); 181 | 182 | // Process the "{{ table_of_sites }}" tag 183 | context.insert("table_of_sites", &precomputed.table_of_sites); 184 | // {{ number_of_sites }} 185 | context.insert("number_of_sites", &precomputed.number_of_sites); 186 | // {{ current_time }} 187 | context.insert("current_time", &precomputed.current_time); 188 | // {{ opml }} 189 | context.insert("opml", &precomputed.opml_link); 190 | 191 | Ok(context) 192 | } 193 | 194 | fn generate_sites_table( 195 | &self, 196 | websites: &[WebringSite], 197 | ) -> Result> { 198 | log::debug!("Generating webring list table..."); 199 | 200 | let mut table_html = String::new(); 201 | 202 | // Open table tag 203 | table_html.push_str("\n"); 204 | 205 | // Table header 206 | table_html.push_str(" \n"); 207 | table_html.push_str(" \n"); 208 | table_html.push_str(" \n"); 209 | table_html.push_str(" \n"); 210 | table_html.push_str(" \n"); 211 | table_html.push_str(" \n"); 212 | table_html.push_str(" \n"); 213 | table_html.push_str(" \n"); 214 | table_html.push_str(" \n"); 215 | 216 | // Table body 217 | table_html.push_str(" \n"); 218 | for (index, website) in websites.iter().enumerate() { 219 | table_html.push_str(" \n"); 220 | // Index # 221 | table_html.push_str(&format!(" \n", index + 1)); 222 | // Name 223 | table_html.push_str(" \n"); 226 | // URL 227 | table_html.push_str(&format!( 228 | " \n"); 238 | // About 239 | table_html.push_str(" \n"); 242 | // Owner 243 | if let Some(owner) = &website.website.owner { 244 | let formatted_owner = Self::format_owner(owner); 245 | table_html.push_str(&format!(" \n", formatted_owner)); 246 | } else { 247 | // If owner is None, output an empty td 248 | table_html.push_str(" \n"); 249 | } 250 | table_html.push_str(" \n"); 251 | } 252 | table_html.push_str(" \n"); 253 | 254 | // Close table tag 255 | table_html.push_str("
#slugURLaboutowner
{}"); 224 | table_html.push_str(&website.website.slug); 225 | table_html.push_str("{}", 229 | website.website.url, website.website.url 230 | )); 231 | if let Some(rss_url) = website.website.rss.as_ref().filter(|url| !url.is_empty()) { 232 | table_html.push_str(&format!( 233 | " [rss]", 234 | rss_url 235 | )); 236 | } 237 | table_html.push_str(""); 240 | table_html.push_str(&website.website.about.as_deref().unwrap_or("")); 241 | table_html.push_str("{}
\n"); 256 | 257 | Ok(table_html) 258 | } 259 | 260 | fn format_owner(owner: &str) -> String { 261 | owner 262 | .split_whitespace() 263 | .map(|part| { 264 | if part.starts_with("http://") || part.starts_with("https://") { 265 | // Website URL format 266 | format!("{}", part, part) 267 | } else if part.contains('@') { 268 | if part.matches('@').count() > 1 { 269 | // Assumes Fediverse format: @username@domain 270 | let parts: Vec<&str> = part.split('@').collect(); 271 | if parts.len() == 3 { 272 | format!( 273 | "{}", 274 | parts[2], parts[1], part 275 | ) 276 | } else { 277 | part.to_string() 278 | } 279 | } else { 280 | // Email format 281 | format!("{}", part, part) 282 | } 283 | } else { 284 | part.to_string() 285 | } 286 | }) 287 | .collect::>() 288 | .join(" ") 289 | } 290 | } 291 | -------------------------------------------------------------------------------- /src/http.rs: -------------------------------------------------------------------------------- 1 | use std::error::Error; 2 | use reqwest; 3 | 4 | pub async fn download_file(url: &str) -> Result> { 5 | let response = reqwest::get(url).await?; 6 | 7 | if !response.status().is_success() { 8 | return Err(format!("Failed to fetch file over network: {}", response.status()).into()); 9 | } 10 | 11 | let body = response.text().await?; 12 | Ok(body) 13 | } -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- 1 | mod cli; 2 | mod file; 3 | mod html; 4 | mod http; 5 | mod website; 6 | 7 | #[tokio::main] 8 | async fn main() { 9 | // Start a timer 10 | let start = std::time::Instant::now(); 11 | 12 | // Parse the arguments and get settings struct 13 | let settings = cli::parse_args().await; 14 | 15 | // Init logging 16 | env_logger::init(); 17 | log::info!("Starting generator with settings: {:?}", settings); 18 | 19 | // Perform webring generation 20 | if let Err(e) = website::process_websites(&settings).await { 21 | log::error!("Process error: {}", e); 22 | return; 23 | } 24 | 25 | // Finally, copy files from ./assets (by default) into the output folder 26 | if let Err(e) = file::copy_asset_files(&settings.path_assets, &settings.path_output) { 27 | log::error!("Error copying asset file(s): {}", e); 28 | } 29 | 30 | // Calculate the elapsed time. 31 | let elapsed = start.elapsed(); 32 | 33 | log::info!("Done in {} ms!", elapsed.as_millis()); 34 | } 35 | -------------------------------------------------------------------------------- /src/website.rs: -------------------------------------------------------------------------------- 1 | use futures::stream::{FuturesUnordered, StreamExt}; 2 | use rand::{seq::SliceRandom, thread_rng}; 3 | use serde::{Deserialize, Serialize}; 4 | use std::collections::HashSet; 5 | use std::result::Result; 6 | 7 | use crate::file; 8 | use crate::cli::AppSettings; 9 | use crate::html::HtmlGenerator; 10 | 11 | #[derive(Debug, Deserialize, Serialize, Clone)] 12 | pub struct Website { 13 | pub slug: String, 14 | pub name: Option, 15 | pub about: Option, 16 | pub url: String, 17 | pub rss: Option, 18 | pub owner: Option, 19 | } 20 | 21 | #[derive(Debug, Serialize)] 22 | pub struct WebringSite { 23 | pub website: Website, 24 | pub next: usize, 25 | pub previous: usize, 26 | } 27 | 28 | pub async fn process_websites(settings: &AppSettings) -> Result<(), Box> { 29 | let websites = parse_website_list(&settings.filepath_list).await?; 30 | 31 | // Verify websites entries if required (offline) 32 | if !settings.skip_verify { 33 | log::debug!("Verifying websites..."); 34 | verify_websites(&websites)?; 35 | log::info!("All website entries verified."); 36 | } 37 | 38 | // Audit websites to ensure they contain webring links (online) 39 | let audited_websites = if settings.audit { 40 | log::debug!("Auditing websites for webring links..."); 41 | let audited_websites = audit_links(websites, &settings.base_url).await?; 42 | log::info!( 43 | "Audit complete. Found links on {} websites.", 44 | audited_websites.len() 45 | ); 46 | audited_websites 47 | } else { 48 | websites 49 | }; 50 | 51 | // Organize site into the webring sequence 52 | let webring = build_webring_sites(audited_websites, settings.shuffle).await; 53 | 54 | // Proceed with HTML generation (if not a dry run) 55 | if !settings.dry_run { 56 | let html_generator = HtmlGenerator::new(&settings.path_templates, settings.skip_minify)?; 57 | 58 | log::info!("Generating websites HTML..."); 59 | 60 | html_generator 61 | .generate_html(&webring, &settings) 62 | .await?; 63 | 64 | log::info!("Finished generating webring HTML."); 65 | 66 | log::info!("Generating OPML file..."); 67 | html_generator 68 | .generate_opml(&webring, &settings) 69 | .await?; 70 | } 71 | 72 | Ok(()) 73 | } 74 | 75 | // Load the websites from JSON 76 | pub async fn parse_website_list( 77 | file_path_or_url: &str, 78 | ) -> Result, Box> { 79 | // Able to get data from local or from remote 80 | let file_data = file::acquire_file_data(file_path_or_url).await?; 81 | 82 | // Parse JSON contents from the string 83 | let websites: Vec = serde_json::from_str(&file_data) 84 | .map_err(|e| Box::::from(e.to_string()))?; 85 | 86 | Ok(websites) 87 | } 88 | 89 | pub fn verify_websites(websites: &[Website]) -> Result<(), Box> { 90 | let mut slugs = HashSet::new(); 91 | let mut urls = HashSet::new(); 92 | // TODO: verify URL pattern 93 | // let url_pattern = Regex::new(r"^https://.+\..+$")?; 94 | 95 | for website in websites { 96 | // Check for duplicate names and URLs 97 | if !slugs.insert(&website.slug) { 98 | return Err(format!( 99 | "Duplicate website slug found: {} - {}", 100 | website.slug, 101 | website.owner.as_deref().unwrap_or("") 102 | ) 103 | .into()); 104 | } 105 | if !urls.insert(&website.url) { 106 | return Err(format!( 107 | "Duplicate website URL found: {} - {}", 108 | website.url, 109 | website.owner.as_deref().unwrap_or("") 110 | ) 111 | .into()); 112 | } 113 | 114 | // Uncomment to check URL format with regex 115 | /* 116 | if !url_pattern.is_match(&website.url) { 117 | return Err(format!("Invalid URL format detected: {}", website.url).into()); 118 | } 119 | */ 120 | } 121 | Ok(()) 122 | } 123 | 124 | async fn fetch_website_content(url: &str) -> Result { 125 | let client = reqwest::Client::builder() 126 | .timeout(std::time::Duration::from_secs(10)) 127 | .user_agent("Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36") 128 | .default_headers({ 129 | let mut headers = reqwest::header::HeaderMap::new(); 130 | headers.insert(reqwest::header::ACCEPT, "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8".parse().unwrap()); 131 | headers 132 | }) 133 | .redirect(reqwest::redirect::Policy::limited(5)) 134 | .build()?; 135 | 136 | let response = client.get(url).send().await?.error_for_status()?; // will return Err if status is not in 200-299 137 | 138 | if !response.status().is_success() { 139 | log::error!( 140 | "Failed to fetch site content: HTTP status {} for {}", 141 | response.status(), 142 | url 143 | ); 144 | } 145 | 146 | Ok(response.text().await?) 147 | } 148 | 149 | pub async fn audit_links( 150 | websites: Vec, 151 | base_url: &str, 152 | ) -> Result, Box> { 153 | let mut tasks = FuturesUnordered::new(); 154 | 155 | for website in websites { 156 | let website_clone = website.clone(); 157 | 158 | tasks.push(async move { 159 | does_html_contain_links(&website_clone, &base_url) 160 | .await 161 | }); 162 | } 163 | 164 | let mut compliant_sites = Vec::new(); 165 | 166 | // Collect results - unpacking the tuple inside Ok variant 167 | while let Some(result) = tasks.next().await { 168 | match result { 169 | // Here, we directly get the tuple (website, bool) from Ok 170 | Ok((website, true, _)) => compliant_sites.push(website), 171 | Ok((website, false, Some(reason))) => log::warn!("Site failed audit: {} | REASON: {}", website.url, reason), 172 | Ok((website, false, None)) => log::warn!("Site failed audit: {}", website.url), 173 | Err(e) => log::error!("Error during site audit: {:?}", e), 174 | } 175 | } 176 | 177 | Ok(compliant_sites) 178 | } 179 | 180 | async fn does_html_contain_links( 181 | website: &Website, 182 | base_url: &str, 183 | ) -> Result<(Website, bool, Option), (Website, Box)> { 184 | let html = fetch_website_content(&website.url) 185 | .await 186 | .map_err(|e| (website.clone(), e.into()))?; 187 | let document = scraper::Html::parse_document(&html); 188 | let selector = scraper::Selector::parse("a").unwrap(); 189 | 190 | let next_link = match normalize_url(base_url, &format!("{}/{}/next", base_url.trim_end_matches('/'), website.slug)) { 191 | Ok(url) => url, 192 | Err(e) => return Err((website.clone(), e)), 193 | }; 194 | let prev_link = match normalize_url(base_url, &format!("{}/{}/previous", base_url.trim_end_matches('/'), website.slug)) { 195 | Ok(url) => url, 196 | Err(e) => return Err((website.clone(), e)), 197 | }; 198 | 199 | let mut next_exists = false; 200 | let mut previous_exists = false; 201 | 202 | for element in document.select(&selector) { 203 | if let Some(href) = element.value().attr("href") { 204 | let normalized_href = match normalize_url(base_url, href) { 205 | Ok(url) => url, 206 | Err(e) => return Err((website.clone(), e)), 207 | }; 208 | 209 | if normalized_href == next_link || normalized_href == prev_link { 210 | log::debug!("Found matching link for {}", website.slug); 211 | if href.contains("/next") { 212 | next_exists = true; 213 | } else if href.contains("/previous") { 214 | previous_exists = true; 215 | } 216 | } 217 | } 218 | } 219 | 220 | let result = next_exists && previous_exists; 221 | 222 | let failure_reason = if !result { 223 | let mut reason = String::new(); 224 | if !next_exists { 225 | reason += "Missing next link. "; 226 | } 227 | if !previous_exists { 228 | reason += "Missing previous link. "; 229 | } 230 | Some(reason) 231 | } else { 232 | None 233 | }; 234 | 235 | Ok((website.clone(), result, failure_reason)) 236 | } 237 | 238 | fn normalize_url(base_url: &str, url: &str) -> Result> { 239 | // Try to parse the URL (If it's an absolute URL, this will succeed) 240 | // otherwise this will fail and we'll attempt to resolve against the base URL 241 | let parsed_url_result = reqwest::Url::parse(url); 242 | 243 | let mut url = match parsed_url_result { 244 | Ok(url) => url, // If parsing succeeded, it's absolute 245 | Err(url::ParseError::RelativeUrlWithoutBase) => { 246 | // parsing failed because of a relative URL - resolve it against the base URL 247 | let base = reqwest::Url::parse(base_url)?; 248 | base.join(url)? 249 | }, 250 | Err(e) => return Err(e.into()), // For any other error, return it 251 | }; 252 | 253 | url.set_query(None); 254 | url.set_fragment(None); 255 | let normalized = url.as_str().trim_end_matches('/').to_string(); 256 | 257 | Ok(normalized) 258 | } 259 | 260 | async fn build_webring_sites(websites: Vec, shuffle: bool) -> Vec { 261 | // Shuffle first (if set to do so) 262 | let mut websites = websites; 263 | if shuffle { 264 | log::info!("Shuffling website sequence..."); 265 | let mut rng = thread_rng(); // shuffle needs an RNG 266 | websites.as_mut_slice().shuffle(&mut rng); 267 | } 268 | 269 | let websites_len = websites.len(); // Capture length before consuming vector 270 | let mut webring_sites: Vec = Vec::with_capacity(websites_len); 271 | 272 | for (index, website) in websites.into_iter().enumerate() { 273 | let next_index = if index + 1 == websites_len { 274 | 0 275 | } else { 276 | index + 1 277 | }; 278 | let prev_index = if index == 0 { 279 | websites_len - 1 280 | } else { 281 | index - 1 282 | }; 283 | 284 | webring_sites.push(WebringSite { 285 | website, 286 | next: next_index, 287 | previous: prev_index, 288 | }); 289 | } 290 | 291 | webring_sites 292 | } 293 | -------------------------------------------------------------------------------- /websites.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "roboring", 4 | "slug": "roboring", 5 | "about": "you are here!", 6 | "url": "https://stellophiliac.github.io/roboring" 7 | }, 8 | { 9 | "name": "moondvsted", 10 | "slug": "stel", 11 | "about": "stel's silly personal website", 12 | "url": "https://moondvsted.space", 13 | "owner": "https://eepy.moe/@stel" 14 | }, 15 | { 16 | "name": "synth download!", 17 | "slug": "sneexy", 18 | "about": "for all of one's personal synthetics download services needs", 19 | "url": "https://synth.download", 20 | "owner": "https://booping.synth.download/@sneexy" 21 | }, 22 | { 23 | "name": "unnick", 24 | "slug": "unnick", 25 | "about": "beep boop bip :3", 26 | "url": "https://unnick.mice.tel", 27 | "owner": "https://wetdry.world/@unnick" 28 | }, 29 | { 30 | "name": "Tulpenkiste", 31 | "slug": "tulpenkiste", 32 | "about": "Silly personal website", 33 | "url": "https://tulpenkiste.codeberg.page", 34 | "owner": "https://lea.pet/@tulpenkiste" 35 | }, 36 | { 37 | "name": "Noelle.dev", 38 | "slug": "noelle", 39 | "about": "Noelle's personal website for writing and reference", 40 | "url": "https://noelle.dev", 41 | "owner": "https://mastodon.noelle.dev/@noelle" 42 | }, 43 | { 44 | "name": "sophia", 45 | "slug": "zvava", 46 | "about": "sophie's brain out on a table", 47 | "url": "https://zvava.org", 48 | "owner": "https://f.619.hu/@zvava" 49 | }, 50 | { 51 | "name": "Query Δ-44203 Online", 52 | "slug": "44203", 53 | "about": "(delta-query-interface node: Δ-44203)", 54 | "url": "https://query.44203.online/", 55 | "owner": "https://mastodon.vierkantor.com/@1" 56 | }, 57 | { 58 | "name": "flora <❀-35672>", 59 | "slug": "2740-35672", 60 | "about": "seizing the means of computation while shitposting", 61 | "url": "https://genosse.eu", 62 | "owner": "https://shonk.social/@flora" 63 | }, 64 | { 65 | "name": "⛧-440729 \"sophie\"", 66 | "slug": "440729", 67 | "about": "⛧-440729's website", 68 | "url": "https://999eagle.moe", 69 | "owner": "https://mastodon.catgirl.cloud/@sophie" 70 | }, 71 | { 72 | "name": "diamond #0xd14", 73 | "slug": "0xd14", 74 | "about": "0xd14 terminal and information hub", 75 | "url": "https://libdb.so", 76 | "owner": "https://tech.lgbt/@diamond" 77 | }, 78 | { 79 | "name": "⎈-657a7269 ezri", 80 | "slug": "0x657a7269", 81 | "about": "unit ⎈-657a7269 http interface", 82 | "url": "https://ezri.pet", 83 | "owner": "https://sleepless.cafe/ezri" 84 | }, 85 | { 86 | "name": "ꙮ-5fbe (melody)", 87 | "slug": "0x5fbe", 88 | "about": "occasional malfunctions from ꙮ-5fbe", 89 | "url": "https://0x5fbe.id", 90 | "owner": "https://social.treehouse.systems/@melody_notpond" 91 | }, 92 | { 93 | "name": "0x191E32 \"elke\"", 94 | "slug": "0x191E32", 95 | "about": "barista-robot turned weird-cat-thing on the internet", 96 | "url": "https://elke.cafe", 97 | "owner": "https://tapenoise.cafe/@ijomeli" 98 | }, 99 | { 100 | "name": "5225225", 101 | "slug": "5225225", 102 | "about": "the site of an entity with serial number 5225225", 103 | "url": "https://www.5snb.club/", 104 | "rss": "https://www.5snb.club/rss.xml", 105 | "owner": "https://furry.engineer/@5225225" 106 | }, 107 | { 108 | "name": "Junko", 109 | "slug": "junko", 110 | "about": "combat robomaid exploring the edges of reality", 111 | "url": "https://lavenderfield.xyz", 112 | "owner": "https://ak.lavenderfield.xyz/jvnkyard" 113 | }, 114 | { 115 | "name": "beeps", 116 | "slug": "beeps", 117 | "about": "Web developer, plural, robot furry kinda just posts about whatever.", 118 | "url": "https://beeps.website", 119 | "rss": "https://beeps.website/feed.xml", 120 | "owner": "https://social.beeps.gay/@beeps" 121 | }, 122 | { 123 | "name": "nelle observer", 124 | "slug": "nelle", 125 | "about": "computer touching, sciadv loving creature. something or other.", 126 | "url": "https://nelle.observer/", 127 | "rss": "https://nelle.observer/rss.xml", 128 | "owner": "https://limbo.town/@nellePoint" 129 | }, 130 | { 131 | "name": "Vars", 132 | "slug": "vars", 133 | "about": "Reptilian machine creating art for humans to enjoy.", 134 | "url": "https://chromaeleon.neocities.org/", 135 | "owner": "chromaeleon@proton.me" 136 | }, 137 | { 138 | "name": "mia calicocore", 139 | "slug": "calicobot", 140 | "about": "Beepmeow! Aspiring robo-catgirl sysadmin nerd", 141 | "url": "https://calicocore.space", 142 | "owner": "miamckeown@pm.me" 143 | }, 144 | { 145 | "name": "Exlitry.World", 146 | "slug": "Ex6C69747279", 147 | "about": "This is Charon Faustinus's personal website, Exlitry.World (or Exlitry verse) are created by Charon Faustinus", 148 | "url": "https://exlitry.world/", 149 | "owner": "charon.faustinus@gmail.com" 150 | }, 151 | { 152 | "name": "Cybird", 153 | "slug": "CyberBirb", 154 | "about": "Website dedicated to funny mechanical birb from 404 years in the Retrofuture.", 155 | "url": "https://cybird.nekoweb.org", 156 | "rss": "https://cybird.nekoweb.org/Cybird_rss.xml", 157 | "owner": "https://floofy.tech/@Cybird" 158 | }, 159 | { 160 | "name": "cascading space", 161 | "slug": "cascade", 162 | "about": "personal website for cascade, a protogen who makes websites and things that go on websites", 163 | "url": "https://cascading.space", 164 | "rss": "https://cascading.space/feed.xml", 165 | "owner": "cascade@cascading.space" 166 | }, 167 | { 168 | "name": "thermia", 169 | "slug": "thermia", 170 | "about": "website belonging to a bot called thermia", 171 | "url": "https://girlthi.ng/~thermia", 172 | "owner": "https://sk.girlthi.ng/@thermia" 173 | }, 174 | { 175 | "name": "KunFuCutsMan", 176 | "slug": "kfcman", 177 | "about": "My personal site on which I post about anything I am doing. May contain stories, quick writings and programming stuff", 178 | "url": "https://kunfucutsman.neocities.org", 179 | "owner": "https://discordapp.com/users/335547774219059211" 180 | }, 181 | { 182 | "name": "strayOS", 183 | "slug": "5TR4Y", 184 | "about": "console.log('a web extension of strayOS')", 185 | "url": "https://sos.nekoweb.org", 186 | "owner": "strayos@keemail.me" 187 | }, 188 | { 189 | "name": "meluhdy", 190 | "slug": "meluwudy", 191 | "about": "mel's home site, where it stores information about its identity", 192 | "url": "https://meluhdy.dev", 193 | "owner": "https://mk.moth.zone/@melody" 194 | }, 195 | { 196 | "name": "natalie[ee]", 197 | "slug": "0x6e6174", 198 | "about": "website in which natalie complains and ocassionaly doesn't explain incomprehensible computer programs", 199 | "url": "https://natalieee.net", 200 | "owner": "https://natalieee.net/files/nrc.vcf" 201 | }, 202 | { 203 | "name": "The Silvermoon Team", 204 | "slug": "12abca3d-8", 205 | "about": "Identity and hobby rambles shared between an amalgamation of androids and their pack of weirdos.", 206 | "url": "https://gze.neocities.org/" 207 | }, 208 | { 209 | "name": "Analogue Catalogue", 210 | "slug": "DERG", 211 | "about": "the website of a system with robots and dragons in it what more do you need to know", 212 | "url": "https://analoguecatalogue.neocities.org//", 213 | "owner": "weirddragon@duck.com" 214 | }, 215 | { 216 | "name": "QuARC's personal website", 217 | "slug": "quarc", 218 | "about": "My website that's mostly an instruction manual", 219 | "url": "https://x86cu.be" 220 | }, 221 | { 222 | "name": "393q658", 223 | "slug": "393q658", 224 | "about": "a personal site for a robot's ramblings", 225 | "url": "https://yippee4webcore.neocities.org/", 226 | "owner": "https://neocities.org/site/yippee4webcore" 227 | }, 228 | { 229 | "name": "abbie 507131", 230 | "slug": "abbieoverflight", 231 | "about": "507131 (aka abbie)'s website", 232 | "url": "https://abbie.moe/", 233 | "owner": "https://transfem.boywife.top/abbieoverflight" 234 | }, 235 | { 236 | "name": "0x4d6165", 237 | "slug": "0x4d6165", 238 | "about": "personal site, blog, and writings repository of a robot fox girl", 239 | "url": "https://0x4d6165.wanderingwires.net", 240 | "rss": "https://0x4d6165.wanderingwires.net/rss.xml", 241 | "owner": "https://wanderingwires.net/@0x4d6165" 242 | }, 243 | { 244 | "name": "*-42λ", 245 | "slug": "0x42", 246 | "about": "digital garden + http interface of #42af309a-d505-4a72-9e3c-19611f3b0671", 247 | "url": "https://synthesis0x42.digital", 248 | "owner": "rain--@synthesis0x42.digital | https://bytes.programming.dev/@0x42" 249 | }, 250 | { 251 | "name": "sprite", 252 | "slug": "riflesniper", 253 | "about": "a green screenface robot-type kinda guy who likes drawing other robots :3", 254 | "url": "https://riflesniper.art/", 255 | "owner": "https://neocities.org/site/riflesniper" 256 | }, 257 | { 258 | "name": "charlie", 259 | "slug": "charlie", 260 | "about": "the personal webpage of a thing called charlie", 261 | "url": "https://topos.gay/" 262 | }, 263 | { 264 | "name": "ashley", 265 | "slug": "442811", 266 | "about": "ashley's little corner of the internet", 267 | "url": "https://skysyrup.dev/", 268 | "owner": "ashley[at]skysyrup.dev" 269 | }, 270 | { 271 | "name": "Ivy@0x4956", 272 | "slug": "cosyivy", 273 | "about": "a silly socialist robo programmer girls corner of the interwebbs!! :3", 274 | "url": "https://cosyivy.xyz", 275 | "rss": "https://cosyivy.xyz/rss.xml", 276 | "owner": "ivy@cosyivy.xyz" 277 | }, 278 | { 279 | "name": "grassblock", 280 | "slug": "grassblock", 281 | "about": "fmt.Println('A random block's homespace')", 282 | "url": "https://gb0.dev/", 283 | "rss": "https://lab.gb0.dev/index.xml", 284 | "owner": "i[at]gb0.dev | https://portal.gb0.dev/@me" 285 | }, 286 | { 287 | "name": "dish site", 288 | "slug": "dish", 289 | "about": "dish's webbed site", 290 | "url": "https://pyrox.dev/", 291 | "rss": "https://pyrox.dev/blog.rss", 292 | "owner": "pyrox[at]pyrox.dev" 293 | }, 294 | { 295 | "name": "darthplagal", 296 | "slug": "darthplagal", 297 | "about": "a site index for darthplagal, a woman on the internet", 298 | "url": "https://darthplagal.xyz", 299 | "owner": "https://bsky.app/profile/darthplagal.xyz" 300 | }, 301 | { 302 | "name": "(un)Squeakable code", 303 | "slug": "squeakable", 304 | "about": "Squeaking bytes into the net", 305 | "url": "https://squeakable.dev", 306 | "owner": "https://furry.engineer/@squeakable" 307 | }, 308 | { 309 | "name": "🔥-128293 [jade]", 310 | "slug": "128293", 311 | "about": "the website of your silly local /(robo(t)?|wolf(y)?)(girl(thing)?)?/", 312 | "url": "https://wolfyja.de", 313 | "owner": "https://gts.apicrim.es/@awoo | https://gts.apicrim.es/@128293 | beep [at] wolfyja.de" 314 | }, 315 | { 316 | "name": "0x9E01", 317 | "slug": "ninee", 318 | "about": "mostly a links page rn but should eventually contain logs of projects and other topics that interest me. also the robotkin flag", 319 | "url": "https://www.ninee.xyz", 320 | "owner": "https://snug.moe/@0x9E01" 321 | }, 322 | { 323 | "name": "dusk", 324 | "slug": "gazesys", 325 | "about": "a thing, gazing at the void of the net...", 326 | "url": "https://gaze.systems", 327 | "rss": "https://gaze.systems/entries/_rss", 328 | "owner": "https://bsky.app/profile/did:plc:dfl62fgb7wtjj3fcbb72naae" 329 | }, 330 | { 331 | "name": "liv.town", 332 | "slug": "livtown", 333 | "about": "the forever work in progress /(by|for|of)/ liv!", 334 | "url": "https://liv.town", 335 | "rss": "https://liv.town/rss.xml", 336 | "owner": "https://quack.social/@liv" 337 | }, 338 | { 339 | "name": "cy", 340 | "slug": "0x9D", 341 | "about": "the page of a dogthing robocreature who will eventually have interesting stuff to talk about", 342 | "url": "https://cy-bernet-ix.neocities.org/", 343 | "owner": "https://bsky.app/profile/cy-bernet-ix.neocities.org" 344 | }, 345 | { 346 | "name": "31a05b", 347 | "slug": "31a05b9c", 348 | "about": "31a's slowly expanding cluster of pages within the www", 349 | "url": "https://www.31a05b.net/", 350 | "owner": "https://bsky.app/profile/31a05b.net" 351 | } 352 | ] 353 | --------------------------------------------------------------------------------