diskus - (★ 369) a tiny terminal utility, a minimal, fast alternative to
#cli #terminal #utility #rust
du -sh. diskus is a very simple program that computes the total size of the current directory. It is a parallelized version of du -sh. On author's 8-core laptop, it is about ten times faster than du with a cold disk cache and more than three times faster with a warm disk cache. Written in Rust.#cli #terminal #utility #rust
Solr and Elasticsearch are the most popular search engines built on top of Apache Lucene. These are great tools, they do their job nicely. But the problem is they are written on Java that's why they usually consume a significant amount of server resources. Here are few resource-efficient alternatives written on Rust:
● Tantivy (★ 2,330) is a full-text search engine library inspired by Apache Lucene and written in Rust.
● Toshi (★ 2,056) is meant to be a full-text search engine similar to Elasticsearch. Toshi strives to be to Elasticsearch what Tantivy is to Lucene.
● Sonic (★ 6,118) 🦔 Fast, lightweight & schema-less search backend. An alternative to Elasticsearch that runs on a few MBs of RAM.
#search #engine #lucene #rust
● Tantivy (★ 2,330) is a full-text search engine library inspired by Apache Lucene and written in Rust.
● Toshi (★ 2,056) is meant to be a full-text search engine similar to Elasticsearch. Toshi strives to be to Elasticsearch what Tantivy is to Lucene.
● Sonic (★ 6,118) 🦔 Fast, lightweight & schema-less search backend. An alternative to Elasticsearch that runs on a few MBs of RAM.
#search #engine #lucene #rust
Deno - (★ 57.4k on GitHub) is a secure runtime for JavaScript and TypeScript, a modern Node.js alternative. Deno aims to provide a productive and secure scripting environment for the modern programmer. It is built on top of V8, Rust, and TypeScript.
Please take a look at the Deno Handbook as well for a quick start.
#nodejs #rust #v8 #js #javascript #typescript
Please take a look at the Deno Handbook as well for a quick start.
#nodejs #rust #v8 #js #javascript #typescript
Tauri - (★13.4k on GitHub) is a framework for building tiny, blazing fast binaries for all major desktop platforms. The core is built with Rust and the CLI leverages Node.js making Tauri a genuinely polyglot approach to creating and maintaining great apps.
The biggest difference from Electron is that it doesn't use Chromium under the hood, it uses system webviews. That makes it much faster and more resource efficient.
#desktop #rust #cli
The biggest difference from Electron is that it doesn't use Chromium under the hood, it uses system webviews. That makes it much faster and more resource efficient.
#desktop #rust #cli
ripgrep - (27.5k★) is a line-oriented search tool that recursively searches the current directory for a regex pattern. By default,
#rust #search #cli #terminal
ripgrep will respect gitignore rules and automatically skip hidden files/directories and binary files. ripgrep has first class support on Windows, macOS and Linux, with binary downloads available for every release. ripgrep is similar to other popular search tools like The Silver Searcher, ack and grep. Written on Rust.#rust #search #cli #terminal
SurrealDB - (★ 12,3 on GitHub) is an end-to-end cloud native database for web, mobile, serverless, jamstack, backend, and traditional applications.
SurrealDB reduces the development time of modern applications by simplifying your database and API stack, removing the need for most server-side components, allowing you to build secure, performant apps quicker and cheaper.
SurrealDB acts as both a database and a modern, realtime, collaborative API backend layer. SurrealDB can run as a single server or in a highly-available, highly-scalable distributed mode - with support for SQL querying from client devices, GraphQL, ACID transactions, WebSocket connections, structured and unstructured data, graph querying, full-text indexing, geospatial querying, and row-by-row permissions-based access.
#rust #storage #db
SurrealDB reduces the development time of modern applications by simplifying your database and API stack, removing the need for most server-side components, allowing you to build secure, performant apps quicker and cheaper.
SurrealDB acts as both a database and a modern, realtime, collaborative API backend layer. SurrealDB can run as a single server or in a highly-available, highly-scalable distributed mode - with support for SQL querying from client devices, GraphQL, ACID transactions, WebSocket connections, structured and unstructured data, graph querying, full-text indexing, geospatial querying, and row-by-row permissions-based access.
#rust #storage #db
🍾3🍓2🌭1
Starship - (★32.2k on GitHub) The minimal, blazing-fast, and infinitely customizable prompt for any shell!
● Fast: it's fast – really really fast! 🚀
● Customizable: configure every aspect of your prompt.
● Universal: works on any shell, on any operating system.
● Intelligent: shows relevant information at a glance.
● Feature rich: support for all your favorite tools.
● Easy: quick to install – start using it in minutes
#rust #terminal #tui
● Fast: it's fast – really really fast! 🚀
● Customizable: configure every aspect of your prompt.
● Universal: works on any shell, on any operating system.
● Intelligent: shows relevant information at a glance.
● Feature rich: support for all your favorite tools.
● Easy: quick to install – start using it in minutes
#rust #terminal #tui
👍2⚡1👌1
Zellij - (★ 10.9K at GitHub) is a workspace aimed at developers, ops-oriented people and anyone who loves the terminal. Similar programs are sometimes called "Terminal Multiplexers".
Zellij is designed around the philosophy that one must not sacrifice simplicity for power, taking pride in its great experience out of the box as well as the advanced features it places at its users' fingertips.
Zellij is geared toward beginner and power users alike - allowing deep customizability, personal automation through layouts, true multiplayer collaboration, unique UX features such as floating and stacked panes, and a plugin system allowing one to create plugins in any language that compiles to WebAssembly.
For a very brief features overview, please refer to this short video.
#tui #terminal #rust #console
Zellij is designed around the philosophy that one must not sacrifice simplicity for power, taking pride in its great experience out of the box as well as the advanced features it places at its users' fingertips.
Zellij is geared toward beginner and power users alike - allowing deep customizability, personal automation through layouts, true multiplayer collaboration, unique UX features such as floating and stacked panes, and a plugin system allowing one to create plugins in any language that compiles to WebAssembly.
For a very brief features overview, please refer to this short video.
#tui #terminal #rust #console
✍1
hurl - (★5.2k at GitHub) - is a command line tool that runs HTTP requests defined in a simple plain text format.
It can chain requests, capture values and evaluate queries on headers and body response. Hurl is very versatile: it can be used for both fetching data and testing HTTP sessions.
Hurl makes it easy to work with HTML content, REST / SOAP / GraphQL APIs, or any other XML / JSON based APIs.
#http #testing #cli #rust
It can chain requests, capture values and evaluate queries on headers and body response. Hurl is very versatile: it can be used for both fetching data and testing HTTP sessions.
Hurl makes it easy to work with HTML content, REST / SOAP / GraphQL APIs, or any other XML / JSON based APIs.
#http #testing #cli #rust
👍4❤1
samply - (★ 2.4k) is the command-line sampling profiler for macOS and Linux, which uses the Firefox profiler as its UI.
If you want to profile the execution of, say,
Here is an example of the output.
#profiling #performance #rust
If you want to profile the execution of, say,
./my-application program, run it with the following command:samply record ./my-application my-argumentsHere is an example of the output.
#profiling #performance #rust
👍1
SpaceTimeDB - (★8.9k at GitHub). You can think of SpacetimeDB as both a database and server combined into one.
It is a relational database system that lets you upload your application logic directly into the database by way of fancy stored procedures called "modules."
Instead of deploying a web or game server that sits in between your clients and your database, your clients connect directly to the database and execute your application logic inside the database itself. You can write all of your permission and authorization logic right inside your module just as you would in a normal server.
#rust #db #database
It is a relational database system that lets you upload your application logic directly into the database by way of fancy stored procedures called "modules."
Instead of deploying a web or game server that sits in between your clients and your database, your clients connect directly to the database and execute your application logic inside the database itself. You can write all of your permission and authorization logic right inside your module just as you would in a normal server.
#rust #db #database
👍2🔥1
oxker - (★ 1.1k) a yet another simple tui to view & control docker containers.
(similar projects are lazydocker, as well as dockly and ctop)
#docker #tui #rust #container #console #terminal
(similar projects are lazydocker, as well as dockly and ctop)
#docker #tui #rust #container #console #terminal
👏2
Skim - (★ 6.2k) is a fuzzy finder in rust!
We spend so much of our time navigating through files, lines, and commands. That's where Skim comes in! It's a powerful fuzzy finder designed to make your workflow faster and more efficient.
If you use
#cli #rust #terminal #tui #search #finder
We spend so much of our time navigating through files, lines, and commands. That's where Skim comes in! It's a powerful fuzzy finder designed to make your workflow faster and more efficient.
If you use
fzf for your finder in console, it's time to try something new. Check out a short demo here.#cli #rust #terminal #tui #search #finder
👍1