magic-wormhole.rs
CPython
magic-wormhole.rs | CPython | |
---|---|---|
9 | 1,521 | |
879 | 67,759 | |
3.3% | 0.8% | |
8.3 | 10.0 | |
5 days ago | 4 days ago | |
Rust | Python | |
European Union Public License 1.2 | GNU General Public License v3.0 or later |
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.
magic-wormhole.rs
-
Magic Wormhole Source Code Analysis
Rust: https://github.com/magic-wormhole/magic-wormhole.rs (official)
-
My negative views on Rust (2023)
I saw some time back that a productionalized attempt came out: https://github.com/magic-wormhole/magic-wormhole.rs
The one I mentioned was much more primitive, meant as a demo (you can look at the branches for different approaches): https://github.com/estebank/rusticwormhole
- Magic Wormhole: get things from one computer to another, safely
-
The Linux Kernel Prepares for Rust 1.77 Upgrade
> Downloading 3GB of dependencies is not a thing that happens in the Rust ecosystem. Reality is orders of magnitude smaller than that.
Assuming they're talking about the built size of dependencies that are left lying around after cargo builds a binary, they're really not exaggerating by much. I have no difficulty of believing that there are Rust projects that leave 3GB+ of dependency bloat on your file system after you build them.
To take the last Rust project I built, magic-wormhole.rs [1], the source code I downloaded from Github was 1.6 MB. After running `cargo build --release`, the build directory is now 618 MB and there's another 179 MB in ~/.cargo, for a total of 800 MB used.
All this to build a little command line program that sends and receives files over the network over a simple protocol (build size 14 MB). God forbid I build something actually complicated written in Rust, like a text editor.
[1] https://github.com/magic-wormhole/magic-wormhole.rs
- Efficient way of sharing files with someone without having to push
-
qft: A tool to quickly transfer files over a holepunched P2P connection
This is cool but it really should be using TCP. (You can do holepunching with TCP, check out https://github.com/magic-wormhole/magic-wormhole.rs/blob/master/src/transit.rs)
-
What’s everyone working on this week (8/2021)?
I'm contributing for some magic-wormhole issues, the book of rust-clippy , and exercism rust track ... Thank Almighty Allah.
-
What's everyone working on this week (7/2021)?
I'm working on some issues in magic-wormhole.rs and still looking around for other projects.
CPython
-
Series of posts on HTTP status codes
Also, it is slightly outdated as it does not incorporate RFC9110 which renames some status codes which previously were WebDAV-only:
https://github.com/python/cpython/pull/117611
-
Reflections on 2 years of CPython's JIT Compiler: The good, the bad, the ugly
Hey Maxime!
> whereas AFAIK the Python JIT project was lead by a student.
I am definitely not leading the team! I am frankly unqualified to do so lol. The team is mostly led by Mark Shannon, who has 10+ years of compiler/static analysis experience as well. The only thing I initially led was the optimizer implementation for the JIT. The overall design to choose tracing, to use copy and patch, etc. were other people.
> However they decided to ignore my advice and go with their own unproven approach.
Your advice was very much appreciated and I definitely didn't ignore your advice. I just don't have much say over the initial architectural choices we make. We're slowly changing the JIT based on data, but it is an uphill battle like you said. If you're interested, it's slowly becoming more like lazy basic block versioning https://github.com/python/cpython/issues/128939
You did great work on YJIT, and I am quite thankful for that.
- My Developemnt Environment
-
Automate Your VPN Connections with Python
Getting Started: The Tech Stack Python 3: The language for scripting. subprocess module: To launch and interact with VPN clients. A VPN client: Such as OpenVPN, Windscribe, or ProtonVPN.
-
5 Tools That Helped Me Catch 70% More Bugs in the Codebase [Important!]
I started embedding Entelligence’s real-time AI reviewer directly in my IDE and immediately saw results. It’s like having a savvy teammate checking my code as I type. In fact, the makers of Entelligence boast that this IDE integration “helps you catch bugs and improve code quality instantly”. The AI flags issues and even suggests fixes before I commit to GitHub. Because it supports dozens of languages, I could use it across our whole stack (Python, JavaScript, Java, etc.). Using Entelligence, I routinely caught subtle logic and design flaws early, massively cutting down the number of defects slipping into code reviews or production.
-
Fedora's 32-Bit (I686) Support Withdrawal Postponed – Here's Why
https://github.com/python/cpython/blob/847d1c2cb4014f122df64.... i686 is Windows only. I see there's a warning about this later if you're unsupported and therefore a 0 case, but either this becomes an error later on or they softened the impact since I did this. Or I'm looking at the wrong check.
- Uncle Sam wants you – to use memory-safe programming languages
-
Ask HN: Best tools today to learn programming?
Still the same way I have told people for the past 10 years: go to https://www.python.org/ and have fun.
-
Dictionary in Python (3)
sorted() creates a copy. *Be careful, sorted() does shallow copy instead of deep copy as my issue.
-
First Day as a Developer:
downloaded it from ➡️ https://www.python.org. After installing, I typed python --version in Git Bash — and yes, Python 3.10 showed up.
What are some alternatives?
CalcuLaTeX - A pretty printing calculator language with support for units. Makes calculations easier and more presentable with real time LaTeX output, along with support for units, variables, and mathematical functions.
RustPython - A Python Interpreter written in Rust
denv - Dotenv (.env) loader written in rust 🦀
git - A fork of Git containing Windows-specific patches.
syncbuf - A small library of append-only, thread-safe, lock-free data structures.
ipython - Official repository for IPython itself. Other repos in the IPython organization contain things like the website, documentation builds, etc.