wisdom VS share-file-systems

Compare wisdom vs share-file-systems and see what are their differences.

wisdom

Building better developers by specifying criteria of success (by prettydiff)

share-file-systems

Use a Windows/OSX like GUI in the browser to share files cross OS privately. No cloud, no server, no third party. (by prettydiff)
Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
wisdom share-file-systems
26 34
567 122
- -
5.4 8.7
8 months ago about 2 months ago
TypeScript
GNU General Public License v3.0 only GNU Affero General Public License v3.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

wisdom

Posts with mentions or reviews of wisdom. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-02.
  • Ask HN: Best stack for real time data intensive apps
    1 project | news.ycombinator.com | 17 Apr 2024
    If you want to output to a browser here is the guide to achieve the best possible performance according to the numbers:

    https://github.com/prettydiff/wisdom/blob/master/performance...

    Warning: every time I post this people claim to want superior performance but then whine when they realize they have to actually write code (as opposed to letting NPM or React or jQuery do 99% of everything).

  • Ask HN: What are the hidden performance tricks for JavaScript?
    1 project | news.ycombinator.com | 4 Mar 2024
    This was attempt to research the fastest possible approach to a JavaScript GUI in the browser.

    https://github.com/prettydiff/wisdom/blob/master/performance...

    The techniques mentioned are stupid fast to the fewest milliseconds, but most JavaScript developers find this incredibly unpopular.

  • Ask HN: How can I learn about performance optimization?
    6 projects | news.ycombinator.com | 2 Mar 2024
    Measure everything and be extremely critical. Be ready to challenge common and popular held assumptions.

    Here is something I wrote about extreme performance in JavaScript that is discarded by most programmers because most people that program JavaScript professionally cannot really program.

    https://github.com/prettydiff/wisdom/blob/master/performance...

  • Ask HN: What are good patterns for holding state?
    1 project | news.ycombinator.com | 9 Dec 2023
    For simple state management here is what I do: https://github.com/prettydiff/wisdom/blob/master/state_manag...

    Here is an application with an OS-like GUI making use of that concept: https://github.com/prettydiff/share-file-systems

  • IBM study: 40% of workers will have to reskill in the next three years due to AI
    1 project | news.ycombinator.com | 20 Aug 2023
    The challenge is in determining who is about to become obsolete and that is not clear. For example OOP remains the most popular and requested programming paradigm even though it has gradually slid into functional obsolescence more than a decade ago[1].

    Even still legacy code will remain in use and talent to maintain legacy systems will remain in demand. My university still teaches COBOL because there still exists demand for people to maintain these legacy applications even if new applications are no longer written in that language.

    [1] https://github.com/prettydiff/wisdom/blob/master/Object_Orie...

  • TypeScript Is Surprisingly OK for Compilers
    14 projects | news.ycombinator.com | 18 Aug 2023
    That depends on how many changes it requires. If its just a matter of don't do these 3 things and your code suddenly becomes more predictable its like being slapped with a magic wand. Everybody wins. All you have to do to ensure 100% of your code compiles in a JIT is be predictable. Predictable code is, on its face, always less confusing.

    > The performance benefits are likely to be minimal

    This makes me cry, but not a cry of joy or ecstasy. People guessing about performance is perhaps the most frequent anti-pattern in all programming. Please read this document, you can skip to the end but it may not make much sense if you do. https://github.com/prettydiff/wisdom/blob/master/JavaScript_...

  • As a self learner which courses, books, tutorials have impacted you positively?
    1 project | news.ycombinator.com | 17 Aug 2023
    After talking about the biggest failures I have seen through my career in learning JavaScript I watched a YouTube video about an interview with a divorce attorney. It was interesting because the behaviors I heard expressed in that video exactly aligned with behaviors I see expressed in failures to learn after large commitments of time investment in programming. It inspired me to write this: https://github.com/prettydiff/wisdom/blob/master/JavaScript_...

    The most important learning for me out of this is that people are predictable and how we commit is modeled by how perceptions of rewards are attained. It also inspired me to dive deeper into self learning about behavior and economics, because people do exceptionally irrational things to avoid perceived discomfort.

  • Why are many of the biggest web frameworks in dynamically typed langs?
    1 project | news.ycombinator.com | 6 Jun 2023
    > just want to know what makes a good web framework.

    Personal opinion. A framework is an architecture in a box so that you, the developer, do not have to make as many decisions. Normally when developers are asking such questions they are seeking easiness: https://github.com/prettydiff/wisdom/blob/master/Easiness.md

  • Htmx
    5 projects | news.ycombinator.com | 25 May 2023
    Software developers, especially DOM fearing front developers love using the word easy. It isn’t so much an infatuation but more like a fatal attraction obsession where obstruction means war on a very emotional level. Ironically, people are loathe to confront these feelings openly and thus cannot define the word easy with any kind of clear practical application.

    So, I did the world a favor and wrote just such a definition: https://github.com/prettydiff/wisdom/blob/master/Easiness.md...

  • Building a Front End Framework; Reactivity, Composability with No Dependencies
    11 projects | news.ycombinator.com | 14 May 2023
    Depends on the definition of simplicity. People say they want simple, but then really want easy. The most easy is always somebody doing the work for you. I got tired of hearing people mention easy when really they probably mean some combination of fearful and/or lazy, so I chose to define easiness:

    https://github.com/prettydiff/wisdom/blob/master/Easiness.md

    If developers really wanted simplicity or to be done with work faster they would just learn the primitives of their environment: DOM, functions, and events. Most of the frameworks have APIs that are huge, so clearly simplicity isn't what's wanted.

share-file-systems

Posts with mentions or reviews of share-file-systems. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-20.
  • Lcl.host: fast, easy HTTPS in your local dev environment
    7 projects | news.ycombinator.com | 20 Mar 2024
    Some things I learned about trusted localhost HTTPS:

    * Windows is the easiest... by far. There is only one trust store and its extremely easy to access at different levels of trust. Firefox has its own trust store so you can either add your certs to both the Windows store AND the Firefox trust store or flip a config in Firefox to tell it to use the Windows trust store like everyone else.

    * Linux is a challenge because you have to add your certificates to the OS trust store and then each browser has their own trust stores.

    * MacOS is pretty close to impossible, at least fully automated. If the cert is not registered with a third party of the OS's choosing the cert will not be trusted in the browser. The way around this is to manually add your localhost cert chain to the MacOS keychain.

    If anybody wants an example here is something I wrote a ways back in JS (but please be warned its specific to my application:

    * Build the certificate chain - https://github.com/prettydiff/share-file-systems/blob/master...

    * Install the cert by OS type - https://github.com/prettydiff/share-file-systems/blob/master...

    That second sample also installs pcap so that I can serve on localhost over ports 80/443.

  • We have used too many levels of abstractions and now the future looks bleak
    6 projects | news.ycombinator.com | 21 Oct 2023
    Some developers believe everything is always a framework or any attempt to avoid frameworks creates a new framework. I cannot help these people. Any non-religion is a cult type nonsense of affirming the consequent fallacy.

    Otherwise a valid example is this one file that creates a complete OS-like GUI in the browser awaiting content typically populated from WebSocket messaging: https://github.com/prettydiff/share-file-systems/blob/master...

  • Os.js – open-source JavaScript web desktop platform with a window manager
    4 projects | news.ycombinator.com | 24 Aug 2023
    I wrote a similar concept around private internet access to your file system. It’s at https://github.com/prettydiff/share-file-systems

    The window and state management can be demoed on my personal site at https://prettydiff.com

  • Ask HN: Tell us about your project that's not done yet but you want feedback on
    68 projects | news.ycombinator.com | 16 Aug 2023
    File sharing and soon remote execution over the internet cross OS. Private and no servers.

    https://github.com/prettydiff/share-file-systems

  • Meta Forced to Reveal Anonymous Facebook User's Identity
    1 project | news.ycombinator.com | 31 Jul 2023
    Done: https://github.com/prettydiff/share-file-systems/blob/master...

    You would need a warrant to extract the messages/identity directly from a person's computer as there is nothing otherwise to obtain.

  • More encryption means less privacy (2016)
    1 project | news.ycombinator.com | 27 Jul 2023
    Perhaps this is true in the context of the web. But I got tired of watching the web as a platform continuously repeat the same mistakes so I started working on something different. In the last day or two I was finally able to functionally prove my competing idea in a way that forcefully imposes privacy with complete Zero Trust conformance.

    https://github.com/prettydiff/share-file-systems/blob/master...

  • Bfs 3.0: The Fastest Find Yet
    6 projects | news.ycombinator.com | 19 Jul 2023
    I am performing a similar file system tree navigation asynchronously in Node.js which is just a shallow API over the C Linux FS APIs.

    I can see you are using opendir and closedir functions? What is the benefit from using the opendir function[1] when readdir[2] can be called on a location directly? Is the benefit that opendir returns a file descriptor for use in opening a stream to gather directory object descriptors?

    [1] https://man7.org/linux/man-pages/man3/opendir.3.html

    [2] https://man7.org/linux/man-pages/man3/readdir.3.html

    Your project is probably more mature but if you want an alternate approach to examine here is I have been doing it: https://github.com/prettydiff/share-file-systems/blob/master...

    I considering changing my use of readdir to use the withFileTypes option so that it returns a list of directory entries (objects of artifact name and type) instead of a list of conditions to discern types like I am doing on lines 382-432.

  • Easy HTTPS for your private networks
    13 projects | news.ycombinator.com | 10 Jul 2023
    Solved.

    Solved for both Windows and Linux (Debian, Arch, Fedora). I might have unlikely solved this of OSX as well, but I am not buying Apply hardware just to test it.

    What my solution does is check for certificates created by the project during a build step. If the certificates don't exist it creates them, installs them in the OS, and also install them in the browser. Installation in the browsers is required in Linux and only for FireFox in Windows. These are cert chains containing a self-signed root, intermediary CA, and a local domain cert.

    I have these certs configured to work with my own domains so that I can connect to a subdomain addressed to a loopback IP and the cert recognizes that domain, but the domain "localhost" works as well. Sometimes its nice to access a real domain to avoid any restrictions imposed upon accessing address "localhost". You just have to change the domains at the bottom of your OpenSSL option files.

    Here is how I solved it with vanilla TypeScript in Node.js (also requires locally installed OpenSSL:

    * OpenSSL option file 1 - https://github.com/prettydiff/share-file-systems/blob/master...

    * OpenSSL option file 2 - https://github.com/prettydiff/share-file-systems/blob/master...

    * Certificate library - https://github.com/prettydiff/share-file-systems/blob/master...

    * Certificate interface from build tool - https://github.com/prettydiff/share-file-systems/blob/master...

    * Certificate installation - https://github.com/prettydiff/share-file-systems/blob/master...

    If you have any questions just open a Github issue on the project.

  • Ask HN: Who wants to be hired? (June 2023)
    21 projects | news.ycombinator.com | 1 Jun 2023
    Email: [email protected]

    15 years experience with JavaScript, 6 years experience with TypeScript. I am currently writing a Node based OS in TypeScript to solve for decentralization (not Web3): https://github.com/prettydiff/share-file-systems

    I understand performance aggressively enough far beyond the comfort of most developers: https://github.com/prettydiff/wisdom/blob/master/performance...

  • Ask HN: Are you working on a big software project? Happy with the architecture?
    1 project | news.ycombinator.com | 20 May 2023
    I started a JS based file sharing application a few years back. It started as a thought experiment of just exposing the file system to the browser in a familiar OS kind of user interface. As new features are added over time it has become more like a high level OS.

    https://github.com/prettydiff/share-file-systems

    Some architectural decisions I made:

    * Micro-service based

    * I am now using WebSockets for all services and communication. That has proven in the application to be 7x faster than HTTP.

    * I have a universal format wrapping all service messaging, kind of like sending a letter in an envelope. This allows me to using a single service end point for all services and a single means of service monitoring.

    * I did not like the existing test automation solutions based upon CDP, because they are too slow and fragile. Also, they do not provide support for a peer-to-peer experience. So I wrote my own test automation solution for testing in the browser and its much faster and predictable.

    * I am using an identity based authentication mechanism to restrict access to known users/devices.

    * I just write to the file system instead of using a database for data storage. This allows for much faster application start up times and lowers complexity. The performance difference is insignificant after accounting for that in most cases opening a file is more costly than arbitrarily writing to the file system.

    * I figured out how to install certificates using automation in both Windows and Linux which allows me to run the application using encrypted transmission protocols (https/wss) on localhost.

What are some alternatives?

When comparing wisdom and share-file-systems you can also consider the following projects:

dom-proxy - Develop lightweight and declarative UI with automatic dependecy tracking without boilerplate code, VDOM, nor compiler

DsHidMini - Virtual HID Mini-user-mode-driver for Sony DualShock 3 Controllers

caya - a tiny useful simple language experiment

Redis - Redis is an in-memory database that persists on disk. The data model is key-value, but many different kind of values are supported: Strings, Lists, Sets, Sorted Sets, Hashes, Streams, HyperLogLogs, Bitmaps.

zustand - 🐻 Bear necessities for state management in React

Clendar - Clendar - Minimal Calendar app. Written in SwiftUI.

swc - Rust-based platform for the Web

userbase - Create secure and private web apps using only static JavaScript, HTML, and CSS.

webcomponents - Web Components specifications

circles-ios - E2E encrypted social networking built on Matrix. Safe, private sharing for your friends, family, and community.

wstunnel - Tunnel all your traffic over Websocket or HTTP2 - Bypass firewalls/DPI - Static binary available

PhotoPrism - AI-Powered Photos App for the Decentralized Web πŸŒˆπŸ’Žβœ¨