Skip to content

Commit 2b15583

Browse files
committed
Robot Updated at:16 Feb 2025 21:10:25 GMT
1 parent 1389219 commit 2b15583

13 files changed

+125
-168
lines changed

docs/awesome/awesome-agi-cocosci.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ Contributions are greatly welcomed! Please refer to [Contribution Guidelines](ht
277277

278278
* [Infinite Latent Feature Models and the Indian Buffet Process](http://mlg.eng.cam.ac.uk/zoubin/papers/ibptr.pdf) - ***Gatsby Computational Neuroscience Unit Technical Report 2005-001***, 2005. [[All Versions](https://scholar.google.com/scholar?cluster=13180738480564152907&hl=en&as_sdt=0,5)].
279279

280-
* [The Indian Buffet Process: An Introduction and Review](https://jmlr.org/papers/v12/griffiths11a.html) - ***Journal of Machine Learning Research***, 2011. [[All Versions](https://scholar.google.com/scholar?cluster=6301314251995890943&hl=en&as_sdt=0,5)]. Tom Griffiths and Zoubin Ghahramani's review on infinite models, including the Chinese Restaurant Process (CRP) and the Indian Buffet Process (IBP).
280+
* [The Indian Buffet Process: An Introduction and Review](https://jmlr.org/papers/v12/griffiths11a.html) - ***Journal of Machine Learning Research***, 2011. [[All Versions](https://scholar.google.com/scholar?cluster=6301314251995890943)]. The Indian buffet process is a stochastic process defining a probability distribution over equivalence classes of sparse binary matrices with a finite number of rows and an unbounded number of columns. This distribution is suitable for use as a prior in probabilistic models that represent objects using a potentially infinite array of features, or that involve bipartite graphs in which the size of at least one class of nodes is unknown. This work gives a detailed derivation of this distribution, and illustrate its use as a prior in an infinite latent feature model. The authors then review recent applications of the Indian buffet process in machine learning, discuss its extensions, and summarize its connections to other stochastic processes.
281281

282282
* [Nonparametric Bayesian Logic](https://www.cs.ubc.ca/~nando/papers/npblog.pdf) - ***UAI'05***, 2005. [[All Versions](https://scholar.google.com/scholar?cluster=18267211625980322095&hl=en&as_sdt=0,5)]. The first paper integrating logic into non-parametric model.
283283

docs/awesome/awesome-angular.md

+2
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,7 @@ Current Angular version: [![npm version](https://badge.fury.io/js/%40angular%2Fc
245245
* [angular-debugging-challenge](https://github.com/ppsdang/angular-debugging-challenge) - This repository hosts an Angular-based project designed as a coding and debugging exercise.
246246
* [angular-api-challenge](https://github.com/ppsdang/angular-api-challenge) - This repository hosts an Angular-based project designed as a api integration exercise.
247247
* [angular-exercises](https://github.com/kobi-hari-courses/angular-exercises) - Exercises on various Angular topics, including solutions and solution videos.
248+
* [angular-debug-quest](https://github.com/angular-courses-lab/angular-debug-quest) - Sharpen your skills at fixing bugs in Angular applications for a better understanding of the framework.
248249

249250
##### Online Training
250251

@@ -848,6 +849,7 @@ become an Angular expert.
848849
* [fast-facts/ng-update](https://github.com/fast-facts/ng-update) - A Github Action that keeps your Angular CLI-based projects up-to-date via automated PRs based on `ng update`.
849850
* [npx-app-updater](https://github.com/DSI-HUG/ngx-app-updater) - When a new version of your application is deployed, this library will trigger a user notification to inform them that updates are available.
850851
* [ngx-update-app](https://github.com/Celtian/ngx-update-app) - Angular directive for updating app via service workers.
852+
* [Angular Caniuse](https://www.angular.courses/caniuse) - Track Angular features from preview to stable stages.
851853

852854
---
853855

docs/awesome/awesome-cl.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -358,6 +358,12 @@ See also those libraries:
358358

359359
* [cl+j](https://common-lisp.net/project/cl-plus-j/) - A JNI-based interface to a JVM via CFFI. Not available on Quicklisp. Does not reliably work with all implementations. [Expat][14].
360360

361+
See also:
362+
363+
* [open-ldk](https://github.com/atgreen/openldk) - A Java JIT Compiler and Runtime in Common Lisp. [GPL3.0][89]. (Work In Progress)
364+
* "bridges the gap between Java and Common Lisp by incrementally translating Java bytecode into Lisp, which is then compiled into native machine code for execution. This unique approach allows Java classes to be seamlessly mapped to Common Lisp Object System (CLOS) classes, enabling effortless integration between Java and Common Lisp codebases."
365+
* "provides a practical solution for integrating Java libraries into a Lisp-based workflow without the need for an out-of-process Java runtime environment."
366+
361367
## Objective-C ##
362368

363369
* [objc-lisp-bridge](https://github.com/fiddlerwoaroof/objc-lisp-bridge) - A portable reader and bridge for interacting with Objective-C and Cocoa. [MIT][200].
@@ -572,6 +578,7 @@ JSON tools:
572578
* for JSON libraries that don't do it natively (jzon, shasht and cl-json are able to *encode* CLOS objects to JSON out of the box, and cl-json has the ability to *decode* JSON objects into a "fluid-class" CLOS object.)
573579
* [cl-json-pointer](https://github.com/y2q-actionman/cl-json-pointer) - A JSON Pointer implementation. [MIT][200].
574580
* [cl-jwk](https://github.com/dnaeon/cl-jwk) - Common Lisp system for decoding public JSON Web Keys (JWK). BSD License.
581+
* [JOSE](https://github.com/fukamachi/jose) - A JSON Object Signing and Encryption (JOSE) implementation for Common Lisp. BSD_2Clause.
575582

576583
and search for JSON RPC below.
577584

@@ -671,7 +678,7 @@ Iteration
671678
* [series](https://series.sourceforge.net/) - Functional style without any runtime penalty at all. [MIT][200].
672679
* [trivial-do](https://github.com/yitzchak/trivial-do/) - Additional dolist style macros for Common Lisp. [MIT][200].
673680
* [doplus](https://github.com/alessiostalla/doplus) – another extensible iteration library, similar to :for.
674-
* [cl-transducers](https://codeberg.org/fosskers/cl-transducers) - Ergonomic, efficient data processing. [LGPL3][9]. ([GitHub mirror](https://github.com/fosskers/cl-transducers))
681+
* [cl-transducers](https://github.com/fosskers/cl-transducers/) - Ergonomic, efficient data processing. [LGPL3][9].
675682
* "Transducers are an ergonomic and extremely memory-efficient way to process a data source. Here “data source” means simple collections like Lists or Vectors, but also potentially large files or generators of infinite data."
676683
* "It is, in general, the most complete implementation of the Transducer pattern."
677684
* a "modern" API with `map`, `filter`, `take`, `repeat`, `cycle`, `fold`

docs/awesome/awesome-go.md

+1
Original file line numberDiff line numberDiff line change
@@ -3311,6 +3311,7 @@ _Where to discover new Go libraries._
33113311
- [Berlin Golang](https://www.meetup.com/golang-users-berlin/)
33123312
- [Brisbane Gophers](https://www.meetup.com/Brisbane-Golang-Meetup/)
33133313
- [Bärner Go Meetup - Berne, Switzerland](https://www.meetup.com/berner-go-meetup/)
3314+
- [Go Ireland - Dublin](https://www.meetup.com/goireland/)
33143315
- [Go Language NYC](https://www.meetup.com/golanguagenewyork/)
33153316
- [Go London User Group](https://www.meetup.com/Go-London-User-Group/)
33163317
- [Go Remote Meetup](https://www.meetup.com/Go-Remote-Meetup/)

docs/awesome/awesome-godot.md

+1
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,7 @@ See [Vivraan/godot-lang-support](https://github.com/Vivraan/godot-lang-support).
192192
- [Godot Google Play Game Services](https://github.com/Iakobs/godot-play-game-services) - Integrate Google Play Games Services in your Godot game.
193193
- [Godot Spin Button](https://github.com/yudinikita/godot-spin-button) - Horizontal Selector with extended options.
194194
- [Godot XR Tools](https://github.com/godotvr/godot-xr-tools) - Basic components for XR development.
195+
- [Health, HitBoxes, HurtBoxes, and HitScans](https://github.com/cluttered-code/godot-health-hitbox-hurtbox) - 2D and 3D Components to manage health, damage, and healing.
195196
- [HTerrain](https://github.com/Zylann/godot_heightmap_plugin) - Heightmap-based terrain. Supports texture painting, colouring, holes, level of detail and grass. *(Godot 3 and 4)*
196197
- [Icon Explorer](https://kenyoni-software.github.io/godot-addons/addons/icon_explorer) - Browse and save icons from popular icon collections.
197198
- [Importality](https://github.com/nklbdev/godot-4-importality) - raster graphics and animations importers: Aseprite, Krita, Pencil2D, Piskel, Pixelorama and others.

docs/awesome/awesome-javascript.md

+12
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ A collection of awesome browser-side [JavaScript](https://developer.mozilla.org/
6969
* [Hegel](https://hegel.js.org/) - A static type checker for JavaScript with a bias on type inference an strong type system.
7070
* [TypL](https://github.com/getify/TypL) - the JavaScript Type Linter with a bias on type inference.
7171
* [Hindley Milner Definitions](https://github.com/xodio/hm-def) - runtime type checking for JavaScript functions using Haskell-alike Hindley Milner type signatures.
72+
* [Zod](https://github.com/colinhacks/zod) - TypeScript-first schema validation with built-in static type inference.
7273

7374
## Testing Frameworks
7475

@@ -939,6 +940,17 @@ There're also some great commercial libraries, like [amchart](https://www.amchar
939940
* [lunr](https://github.com/olivernn/lunr.js) - Library for use in the browser and It indexes JSON documents and provides a simple search interface for retrieving documents that best match text queries.
940941
* [flexsearch](https://github.com/nextapps-de/flexsearch) - It is a Next-Generation full text search library for Browser and Node.js.
941942
* [Elasticlunr](https://github.com/weixsong/elasticlunr.js) - This library is based on lunr.js, but more flexible and customized.
943+
944+
## ORM
945+
946+
* [Prisma](https://github.com/prisma/prisma) Next-generation ORM for Node.js & TypeScript | PostgreSQL, MySQL, MariaDB, SQL Server, SQLite, MongoDB and CockroachDB.
947+
* [Sequelize](https://github.com/sequelize/sequelize) Feature-rich ORM for modern Node.js and TypeScript | PostgreSQL, MySQL, MariaDB, SQLite, MS SQL Server, Snowflake, Oracle DB...
948+
* [Mongoose](https://github.com/Automattic/mongoose) MongoDB object modeling designed to work in an asynchronous environment.
949+
* [TypeORM](https://github.com/typeorm/typeorm) ORM for TypeScript and JavaScript, Works in NodeJS, Browser, Ionic, Cordova and Electron platforms.
950+
* [Drizzle ORM](https://github.com/drizzle-team/drizzle-orm) Headless TypeScript ORM with a head. Runs on Node, Bun and Deno.
951+
* [Kysely](https://github.com/kysely-org/kysely) A type-safe typescript SQL query builder.
952+
* [Knex](https://github.com/knex/knex) A query builder for PostgreSQL, MySQL, CockroachDB, SQL Server, SQLite3 and Oracle, designed to be flexible, portable, and fun to use.
953+
* [MikroORM](https://github.com/mikro-orm/mikro-orm) TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns.
942954

943955
## Misc
944956

0 commit comments

Comments
 (0)