rust-by-example
monkey
DISCONTINUED
Our great sponsors
rust-by-example | monkey | |
---|---|---|
38 | 11 | |
4,645 | 2,370 | |
3.0% | - | |
8.2 | 0.0 | |
9 days ago | almost 2 years ago | |
Go | ||
GNU General Public License v3.0 or later | 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.
rust-by-example
-
Rust from 0 to 80% for JavaScript Developers
I'm very much a Rust noob, and my overall programming knoweldge is a bit shallow but I don't think this is that helpful to understand Rust. I'd rather point people to The Rust Book and Rust by Example, which are beginner friendly and explain everything useful quite well.
-
DevLog[0]: Building a serverless platform for Rust in 4 weeks
Like Rust by Example? :D
-
Rust
Outra companhia bacana no começo é o Rust by Example.
-
Simple logical organized source of learning rust? Any ?
isn't rust by example the tutorial? https://doc.rust-lang.org/stable/rust-by-example/
-
Easiest linux skill for finding a job?
If you haven't already, I'd recommend starting with Rust by Example, Rustlings, and the Command Line Applications Book. Perhaps even trying to solve Advent of Code challenges with Rust.
-
New in rust
"The Rust Programming Language" (a.k.a. "the book") is a fantastic resource for getting started. I also like "Rust by Example".
-
Best Book to learn rust
Rust by Example (As a supplement to The Book if you want more example-based learning)
-
[Media] Rust Iceberg
Among us PR
Here you go
-
Rust takes a major step forward as Linux's second official language
Rust by example if you want more examples
monkey
-
Library for monkey-patching functions
This person did not read the license of the original library https://github.com/bouk/monkey/blob/master/LICENSE.md
-
Alternative for Monkey patching
I am a new gopher. I was looking into the Monkey Patching module and it is archived now. I was wondering if there is an alternative for that.
-
Why go plugin addresses do not load with go binary
Here is an example of this in Go - but as he says, don't actually do this. https://github.com/bouk/monkey
-
is there an easy (python like way) to do mocks?
I discovered this lib a few days ago. https://github.com/bouk/monkey it allows you to monkey patch entire functions, replacing them by whatever you want. Perfect for mocking. It's simple to use. The program is hard patching the code using assembly to replace the function address at runtime. You should not use this lib out of your tests since it's absolutely not safe. It's only compatible with linux and windows. But it works great!
- Oops!
- Monkey Patching in Go (2015)
- I do not give anyone permissions to use this tool for any purpose. Don’t use it. I’m not interested in changing this license. Please don’t ask.
-
Project includes a dependancy that has a license that forbids its use
From the explaining blog post [0]
> If you’re not interested in how it works and you just want to do monkey patching, then you can find the library here.
Also
> Wrapping it up in a nice library
> I took the above code and put it in an easy to use library. It supports 32 bit, reversing patches, and patching instance methods. I wrote a couple of examples and put those in the README.
Then in the README[1]:
> Make sure you read the notes at the bottom of the README if you intend to use this library.
Either the author is confused or has decided that he doesn't want to maintain an hack. Anyway license is pretty clear.
There was an HN thread[2] when it was released.
[0] https://bou.ke/blog/monkey-patching-in-go/
"This is as unsafe as it sounds and I don't recommend anyone do it outside of a testing environment."
[1]: https://github.com/bouk/monkey#i-thought-that-monkeypatching...
-
is Test_xxx func safe to access shared data?
WRT monkeypatch, again, this is a "global" thing and assuming you are talking about bouk's monkeypatch library the author makes the note that
What are some alternatives?
gomock - GoMock is a mocking framework for the Go programming language.
book - The Rust Programming Language
Rustlings - :crab: Small exercises to get you used to reading and writing Rust code!
zero-to-production - Code for "Zero To Production In Rust", a book on API development using Rust.
Mmock - Mmock is an HTTP mocking application for testing and fast prototyping
RustBooks - List of Rust books
easy_rust - Rust explained using easy English
gock - HTTP traffic mocking and testing made easy in Go ༼ʘ̚ل͜ʘ̚༽
go-txdb - Immutable transaction isolated sql driver for golang
reference - The Rust Reference
monad-challenges - A set of challenges for jump starting your understanding of monads.
go-sqlmock - Sql mock driver for golang to test database interactions