Unanswered Questions
365 questions with no upvoted or accepted answers
15votes
0answers
283views
Download files in parallel
This module has aensure_downloaded function which takes a slice ofUrls. It downloads all of the urls to a local downloads ...
9votes
1answer
418views
Metropolis Monte Carlo Sampler in Rust
the following is an implementation of the standard Metropolis Hastings Monte Carlo sampler. You can read more about it here.At the end I am going to give you a link to the Rust playground, so you ...
CommunityBot
- 1
6votes
0answers
282views
All pairs/Cartesian multiplication of iterators in rust
crustaceans!This is my attempt at creating anall_pairs operation for rust iterators. The code has to generate a new iterator which, when iterated, produces all ...
6votes
0answers
116views
Chapter 8 Challenge: Add employee names to a department
The boring but exciting challenge:Using aHashMap andHashSet, create a text interface to allow a user to add employee names ...
6votes
0answers
185views
Efficiently generate distinct subsets which sum to a particular value
Related: Find all distinct subsets that sum to a given numberThis code is supposed to efficiently generate all subsets of a list such that the subset's values sum to a particular target value. For ...
6votes
0answers
516views
Xero API Client in Django
I'm not actually that new to writing Python. But I've no formal training and have only learnt to build applications to solve problems for my job out of necessity. Starting to bring my existing skills ...
6votes
0answers
201views
Simple-ish Rust implementation of 'cat'
I've seen some other implementations of cat (even in Rust) on this site, but none attempted to completely implement the GNU cat CLI as far as I can tell. This version that I am developing is complete (...
6votes
0answers
328views
Generating integer partitions
I've tried to implement integer partition algorithm as described in blogpost below (author implemented it in Python):Generating integer partitionsI'm still trying to learn best practices in ...
6votes
0answers
134views
Showing a Wikipedia article's changes as Git commits
I created a small-ish NodeJS script which takes as argument the name of a Wikipedia article (and optionally a Wikipedia edition, "en" is default) and creates a Git repository with each ...
6votes
0answers
220views
Character-based transitions (part of a lexer)
As part of my prep for the Code Review community-challenge (which looks like it will be Write your own programming language), I've been working on an LL(1) lexer generator in Rust.Yes, lexer ...

Mast♦
- 13.9k
6votes
1answer
197views
GitHub API client
Here is my Haskell program designed to list all of my GitHub repos along with their descriptions and languages via the GitHub JSON APIs:...
5votes
0answers
104views
Correct abstractions/organisation of a NodeJS GraphQL API
I recently did a quick take-home test for a potential job opportunity. It included building a GraphQL API with nodeJS. I am not an expert in node (mostly use Python at work) but I have used it for ...
5votes
0answers
50views
Procedural macro to derive de/serialization trait from/to little endian bytes
I wrote a trait library that allows the de-/serialization of data structures from/to little endian bytes 1.For it I now wrote my first procedural macro 2 to be able to derive the traits ...
CommunityBot
- 1
5votes
0answers
70views
after initial r*view here is a rewrite of my c++ timerqueue ported to rust
Purpose. Provides a background task queue so that code can ask for a function to be run at a specified point in the future. They indicate what to run (a closure) and when to run it (also a name just ...
5votes
0answers
2kviews
Extract data from API using VBA & XML (Performance)
EDIT: Added a block with the raw code at the bottom (suggested by a friendly user)First post here. I sincerely hope that I am doing everything by the book. Also, I want to thank you in advance for ...







