..

Results 7 issues of ..

Add implementation of algos and DS in more languages and edit the `README` accordingly.

use crypto to add a hash at the end of your download url . This decreases chances of url collision .

Is there a defined way to cite `tiny-dnn`. If yes, we should add it to the main README. Something like, ```tex @Manual{, author = {Names of authors}, title = {tiny-dnn:...

community
Needs discussion
medium priority

The `tempfile.mktemp` function is unsafe and deprecated as per https://docs.python.org/3/library/tempfile.html#tempfile.mktemp. The security impact is mentioned here https://cwe.mitre.org/data/definitions/377.html.

Create into an OS-specific binary for Windows / OSX / Linux systems .

help wanted
hacktoberfest

**Location**: [`iperf_api.c:1491`](https://github.com/esnet/iperf/blob/master/src/iperf_api.c#L1491) **Description**: Memory allocated for `xbind_entry` structure is not freed when `strdup()` fails **Code Pattern**: ```c xbe = malloc(sizeof(struct xbind_entry)); if (!xbe) return -1; // OK xbe->name = strdup(optarg);...