Skip to content

Commit 3619d12

Browse files
committed
Robot Updated at:3 Jan 2025 21:10:27 GMT
1 parent 975b3e5 commit 3619d12

9 files changed

+66
-37
lines changed

docs/awesome/awesome-cl.md

+20-8
Original file line numberDiff line numberDiff line change
@@ -203,12 +203,8 @@ Persistent object databases
203203
* [ubiquitous](https://github.com/Shinmera/ubiquitous) - A library providing easy-to-use persistent configuration storage. [zlib][33].
204204
* [cl-prevalence](https://common-lisp.net/project/cl-prevalence/) - in-memory database system. Implementation of Object Prevalence, in which business objects are kept live in memory and transactions are journaled for system recovery. [github fork](https://github.com/40ants/cl-prevalence). [LLGPL][8].
205205
* See also [cl-prevalence-multimaster](https://github.com/40ants/cl-prevalence-multimaster), to syncronize multiple cl-prevalence systems state.
206-
* [cl-naive-store](https://gitlab.com/Harag/cl-naive-store) - a naive persisted, in memory (lazy loading), indexed, document store for Common Lisp. [MIT][200].
207-
- see [the introductory blog post](https://zaries.wordpress.com/2022/05/31/cl-naive-store/)
208-
- dare we add: used in production by the author's company (ASTN Group, see awesome-lisp-companies)
209-
210-
See also [Clache](https://github.com/html/clache), that can save any object on disk.
211206

207+
See also the [Caching (serialization)](#caching-serialization) section.
212208

213209
Graph databases
214210
---------------
@@ -1683,10 +1679,26 @@ For more: [Sabra Crolleton's extensive test frameworks comparison](https://sabra
16831679
Utilities
16841680
=========
16851681

1686-
Caching
1687-
-------
1682+
Caching (serialization)
1683+
-----------------------
1684+
1685+
* [cl-store](https://github.com/skypher/cl-store) - a portable serialization package which gives you the ability to store all common-lisp data types into streams. MIT.
1686+
* Call `store object "file.bin")` to store a (possibly compound) lisp object to disk, and `restore` to get it back.
1687+
* [clache](https://github.com/html/clache) - General caching facility. Cache any Lisp object on disk or in memory. [LLGPL][8].
1688+
* built on cl-store
1689+
* a cache can be persistent or have an expiration time.
1690+
* exposes the store locations too.
1691+
* [conspack](https://github.com/conspack/cl-conspack) - binary serialization.
1692+
* [cl-naive-store](https://gitlab.com/Harag/cl-naive-store) - a naive persisted, in memory (lazy loading), indexed, document store for Common Lisp. [MIT][200].
1693+
- see [the introductory blog post](https://zaries.wordpress.com/2022/05/31/cl-naive-store/)
1694+
- dare we add: used in production by the author's company (ASTN Group, see awesome-lisp-companies)
1695+
1696+
See also the [Persistent object databases](#persistent-object-databases) section.
1697+
1698+
1699+
Caching (memoization)
1700+
-----------------------
16881701

1689-
* [clache](https://github.com/html/clache) - General caching facility. Cache any Lisp object on disk or in memory. A cache can be persistent or have an expiration time. [LLGPL][8].
16901702
* [function-cache](https://github.com/AccelerationNet/function-cache) - A Common Lisp function caching / memoization library. [BSD][15].
16911703

16921704

docs/awesome/awesome-cpp.md

+1
Original file line numberDiff line numberDiff line change
@@ -1150,6 +1150,7 @@ A curated list of awesome C++ (or C) frameworks, libraries, resources, and shiny
11501150
* [libusb](https://libusb.info/) - A universal USB library which allows for portable access to USB devices. [LGPL2]
11511151
* [Mach7](https://github.com/solodon4/Mach7) - A Pattern-matching library for C++. [BSD]
11521152
* [mio](https://github.com/mandreyel/mio) - Cross-platform C++11 header-only library for memory mapped file IO. [MIT]
1153+
* [MPark.Variant](https://github.com/mpark/variant) - C++17 `std::variant` for C++11/14/17. [BSL-1.0]
11531154
* [MPH](https://github.com/qlibs/mph) - C++20 [Minimal] Static Perfect Hash library. [MIT]
11541155
* [PEGTL](https://github.com/taocpp/PEGTL) - The Parsing Expression Grammar Template Library. [MIT]
11551156
* [Pipes](https://github.com/joboccara/pipes) - Pipelines for expressive code on collections in C++. [MIT]

docs/awesome/awesome-crystal.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,7 @@ described in [RFC 8032]
258258
* [ntlm](https://github.com/spider-gazelle/ntlm) - NTLM authentication
259259
* [proxy-fetcher.cr](https://github.com/nbulaj/proxy-fetcher.cr) - Proxy lists fetching & validating library
260260
* [sse.cr](https://github.com/y2k2mt/sse.cr) - [Server-Sent Events](https://html.spec.whatwg.org/multipage/server-sent-events.html) client
261+
261262
## Image processing
262263
* [celestine](https://github.com/celestinecr/celestine) - Create SVG images using a DSL
263264
* [ffmpeg](https://github.com/spider-gazelle/ffmpeg) - FFmpeg bindings that works with StumpyPNG to extract frames
@@ -319,6 +320,7 @@ described in [RFC 8032]
319320
* [pinger](https://github.com/spider-gazelle/pinger) - Ping IP addresses and DNS entries without requiring sudo
320321
* [port_midi](https://github.com/jimm/crystal_port_midi) - Crystal C bindings for the PortMIDI cross-platform MIDI I/O library
321322
* [retriable.cr](https://github.com/Sija/retriable.cr) - Simple DSL to retry failed code blocks
323+
* [sentry](https://github.com/crystal-china/sentry) - Build/Runs your crystal application, watches files, and rebuilds/restarts app on file changes.
322324
* [serf-handler.cr](https://github.com/wyhaines/serf-handler.cr) - Framework for building Serf handlers, with a suite of useful builtin capabilities
323325
* [simple_retry](https://github.com/spider-gazelle/simple_retry) - Simple tool for retrying failed code blocks
324326
* [sslscan.cr](https://github.com/NeuraLegion/sslscan.cr) - Crystal shard wrapping the rbsec/sslscan utility
@@ -524,7 +526,7 @@ described in [RFC 8032]
524526
* [icr](https://github.com/crystal-community/icr) - Interactive console for Crystal (like IRB for Ruby)
525527
* [Invidious](https://github.com/iv-org/invidious) - Invidious is an alternative front-end to YouTube
526528
* [mpngin](https://github.com/thewalkingtoast/mpngin) - A URL shortener with simple stats
527-
* [procodile](https://github.com/crystal-china/procodile_cr) - Run processes in the background (and foreground) on Mac & Linux from a Procfile (for production and/or development environments)
529+
* [procodile](https://github.com/crystal-china/procodile) - Run processes in the background (and foreground) on Mac & Linux from a Procfile (for production and/or development environments)
528530
* [quicktype](https://quicktype.io/) - Generate models and serializers from JSON, JSON Schema, GraphQL, and TypeScript
529531
* [shards.info](http://shards.info/) - Web service that lists all repositories on GitHub that have Crystal code in them. The sources are available on [GitHub](https://github.com/mamantoha/shards-info)
530532

docs/awesome/awesome-elm.md

+1
Original file line numberDiff line numberDiff line change
@@ -451,6 +451,7 @@ You can find hundreds of high quality packages at:
451451
* [Iced](https://github.com/hecrj/iced) - A cross-platform GUI library for Rust, inspired by Elm
452452
* [Redux](https://redux.js.org/introduction/prior-art) - A predictable state container for JavaScript apps.
453453
* [SwiftUI](https://developer.apple.com/xcode/swiftui/)
454+
* [Tyrian](https://tyrian.indigoengine.io/) - Tyrian is an Elm-inspired frontend framework for Scala.js.
454455
* [MAUI](https://devblogs.microsoft.com/dotnet/introducing-net-multi-platform-app-ui/) - .NET Multi-platform App UI
455456
* [Oolong](https://oolong-kt.org/) - An Elm inspired Model-View-Update (MVU) implementation for Kotlin multiplatform.
456457

docs/awesome/awesome-jmeter.md

-4
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ This list grew up from [an occasional answer](https://sqa.stackexchange.com/a/25
6363

6464
### DSL
6565

66-
- [Ruby-JMeter](https://github.com/flood-io/ruby-jmeter) - A Ruby-based DSL for building JMeter test plans.
6766
- [jmeter-java-dsl](https://abstracta.github.io/jmeter-java-dsl/) - Simple Java API to run JMeter performance tests in an VCS and programmers friendly way.
6867
- [jmeter-dotnet-dsl](https://abstracta.github.io/jmeter-dotnet-dsl/) - Simple .Net API to run JMeter performance tests in an VCS and programmers friendly way.
6968
- [jmeter-groovy-dsl](https://github.com/smicyk/groovy-jmeter) - The Groovy-JMeter project is simple DSL to write JMeter test plans.
@@ -163,7 +162,6 @@ This list grew up from [an occasional answer](https://sqa.stackexchange.com/a/25
163162

164163
- [Perforce BlazeMeter](https://www.blazemeter.com/) - Performance engineering platform with JMeter and Selenium support.
165164
- [OctoPerf](https://octoperf.com/) - SaaS and On-Premise Load Testing Tool with JMeter and Selenium support.
166-
- [Tricentis Flood](https://www.flood.io/) - Load testing service with JMeter, Gatling and Selenium scenarios support.
167165
- [RedLine13](https://redline13.com/) - AWS-based load testing service with JMeter, Gatling and Selenium scenarios support.
168166
- [LoadRunner Cloud](https://www.opentext.com/products/loadrunner-cloud) - OpenText cloud-based solution for web and mobile performance testing with JMeter and Gatling support (formerly Micro Focus LoadRunner Cloud, formerly HP StormRunner Load).
169167
- [Loadium](https://loadium.com/) - AWS-based load testing service with JMeter and Selenium support.
@@ -245,7 +243,6 @@ This list grew up from [an occasional answer](https://sqa.stackexchange.com/a/25
245243

246244
- [Easy and realistic Load Testing of HTTP Live Streaming (HLS) with Apache JMeter](https://www.ubik-ingenierie.com/blog/easy-and-realistic-load-testing-of-http-live-streaming-hls-with-apache-jmeter/)
247245
- [Using JMeter to Load Test Live HLS Concurrency of Wowza Streaming Engine](https://web.archive.org/web/20210918113142/https://www.realeyes.com/blog/wowza-streaming/)
248-
- [Load testing HLS with Ruby JMeter](https://www.flood.io/blog/load-testing-hls-with-ruby-jmeter)
249246
- [How to Test Video Streaming with JMeter](https://www.blazemeter.com/blog/video-streaming-testing)
250247
- [HLS JMeter Plugin](https://github.com/Blazemeter/HLSPlugin)
251248

@@ -373,7 +370,6 @@ This list grew up from [an occasional answer](https://sqa.stackexchange.com/a/25
373370
- [Ubik Load Pack Blog](https://www.ubik-ingenierie.com/blog/category/jmeter/) - Ubik Ingenierie blog.
374371
- [TestAutomationGuru Blog](https://www.testautomationguru.com/category/jmeter/) - Technical blog on test automation.
375372
- [RedLine13 Blog](https://www.redline13.com/blog/tag/jmeter/) - JMeter articles in RedLine13 blog.
376-
- [Flood.io Blog](https://www.flood.io/blog) - Load testing thoughts, stories and ideas from Flood IO.
377373
- [JMeter Blog](https://shantonusarker.blogspot.com/p/jmeter.html) - Another blog for performance & automation testing using JMeter.
378374
- [OctoPerf Blog](https://blog.octoperf.com/categories/jmeter/) - OctoPerf blog about JMeter and load testing.
379375
- [Abstracta JMeter Archives](https://abstracta.us/blog/tag/jmeter/) - Abstracta blog about JMeter.

docs/awesome/awesome-regex.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -378,5 +378,5 @@ Many regexes found online are low quality. It's risky to use regexes you don't f
378378

379379
- Chrome extension: [Regex](https://chromewebstore.google.com/detail/regex/pmihaiejckejbpjdnildimfkpcpnohlo) - Regex search on webpages via `Ctrl+Shift+F`.
380380
- Quiz: [regex101 Regex Quiz](https://regex101.com/quiz) - Requires sign-in.
381-
- Games: [Regex Crossword](https://regexcrossword.com/), [regexle](https://regexle.com/), [Regex Machina](https://codepip.com/games/regex-machina/) ($).
381+
- Games: [Regex Crossword](https://regexcrossword.com/), [regexle](https://regexle.com/), [The Typing of the RegEX](https://thetypingoftheregex.com/), [Regex Machina](https://codepip.com/games/regex-machina/) ($).
382382
- Comics: [xkcd](https://xkcd.com/208/), [Garabato Kid](https://twitter.com/garabatokid/status/1147063121678389253).

docs/awesome/awesome-tailwindcss.md

+1
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,7 @@
217217
- 🧩 [Indie UI](https://ui.indie-starter.dev) - Rich styled UI components.
218218
- 🧩 [Penguin UI](https://www.penguinui.com) - Plug-n-play UI component library for Tailwind CSS & Alpine JS.
219219
- 🧩 [Motion Primitives](https://motion-primitives.com) - React motion components built with Tailwind CSS and Framer Motion.
220+
- 🧩 [Kokonut UI](https://kokonutui.com/) - Collection of modern, interactive customizable UI components.
220221
- 📁 [Vue Notus](https://www.creative-tim.com/product/vue-notus) - Open-source Tailwind CSS and Vue.js UI kit.
221222
- 📁 [EasyTailwind](https://easytailwind.now.sh) - Freemium, easily customizable templates made with Tailwind CSS.
222223
- 📁 [Windmill Dashboard](https://windmill-dashboard.vercel.app/) - Multi theme, completely accessible dashboard template.

0 commit comments

Comments
 (0)