Skip to content

Commit

Permalink
progress
Browse files Browse the repository at this point in the history
  • Loading branch information
teletha committed Oct 23, 2024
1 parent 927bb1a commit dd3362c
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 25 deletions.
21 changes: 10 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,22 @@ Sinobu is not obsolete framework but utility, which can manipulate objects as a
This is extremely lightweight at approximately 120 KB without relying on other libraries, and its various operations are designed to run as fast as other competing libraries.

This library aims to simplify and highly condense the functions related to domains that are frequently encountered in real-world development projects, making them easier to use.
- Dependency Injection
- [Dependency Injection](https://en.wikipedia.org/wiki/Dependency_injection)
- Object lifecycle management
- JavaBeans-like property based type modeling
- HTTP(S) Client
- Web Socket Client
- JSON
- HTML(XML)
- Reactive Programming (Rx)
- Asynchronous processing
- Parallel processing
- Property based object modeling
- HTTP(S)
- [JSON](https://en.wikipedia.org/wiki/JSON)
- [HTML](https://en.wikipedia.org/wiki/HTML) (including Tag Soup)
- [XML](https://en.wikipedia.org/wiki/XML)
- Reactive Programming ([Rx](http://reactivex.io))
- Asynchronous & Parallel processing
- Multilingualization
- Template Engine (Mustache)
- Template Engine ([Mustache](https://mustache.github.io/mustache.5.html))
- Dynamic plug-in mechanism
- Object Persistence
- Logging (Garbage-Free)
- Virtual Job Scheduler
- Cron Scheduling
- [Cron](https://en.wikipedia.org/wiki/Cron) Scheduling

With a few exceptions, Sinobu and its APIs are designed to be simple to use and easy to understand by adhering to the following principles.
- Keep it stupid simple
Expand Down
21 changes: 10 additions & 11 deletions src/project/java/kiss/Project.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,22 @@ public class Project extends bee.api.Project {
This is extremely lightweight at approximately 120 KB without relying on other libraries, and its various operations are designed to run as fast as other competing libraries.
This library aims to simplify and highly condense the functions related to domains that are frequently encountered in real-world development projects, making them easier to use.
- Dependency Injection
- [Dependency Injection](https://en.wikipedia.org/wiki/Dependency_injection)
- Object lifecycle management
- JavaBeans-like property based type modeling
- HTTP(S) Client
- Web Socket Client
- JSON
- HTML(XML)
- Reactive Programming (Rx)
- Asynchronous processing
- Parallel processing
- Property based object modeling
- HTTP(S)
- [JSON](https://en.wikipedia.org/wiki/JSON)
- [HTML](https://en.wikipedia.org/wiki/HTML) (including Tag Soup)
- [XML](https://en.wikipedia.org/wiki/XML)
- Reactive Programming ([Rx](http://reactivex.io))
- Asynchronous & Parallel processing
- Multilingualization
- Template Engine (Mustache)
- Template Engine ([Mustache](https://mustache.github.io/mustache.5.html))
- Dynamic plug-in mechanism
- Object Persistence
- Logging (Garbage-Free)
- Virtual Job Scheduler
- Cron Scheduling
- [Cron](https://en.wikipedia.org/wiki/Cron) Scheduling
With a few exceptions, Sinobu and its APIs are designed to be simple to use and easy to understand by adhering to the following principles.
- Keep it stupid simple
Expand Down
7 changes: 4 additions & 3 deletions src/test/java/doc/DocumentDoc.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,11 @@ public class Introduction {
*
* Sinobu is not obsolete framework but utility, which can manipulate objects as a
* extremely-condensed facade.
* This is extremely lightweight at approximately 106 KB without relying on other libraries,
* This is extremely lightweight at approximately 120 KB without relying on other libraries,
* and its various operations are designed to run as fast as other competing libraries.
*
* This library aims to simplify and highly condense the functions related to domains that
* are frequently encountered in real-world development projects, making them easier to use.
* Some specific domains are listed below.
*
* - [Dependency Injection](https://en.wikipedia.org/wiki/Dependency_injection)
* - Object lifecycle management
Expand All @@ -72,7 +71,9 @@ public class Introduction {
* - Template Engine ([Mustache](https://mustache.github.io/mustache.5.html))
* - Dynamic plug-in mechanism
* - Object persistence
* - Logging
* - Logging (Garbage-Free)
* - Virtual Job Scheduler
* - [Cron](https://en.wikipedia.org/wiki/Cron) Scheduling
*
* With a few exceptions, Sinobu and its APIs are designed to be simple to use and easy to
* understand by adhering to the following principles.
Expand Down

0 comments on commit dd3362c

Please sign in to comment.