diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 94c53234..a65b8474 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,9 +1,9 @@ name: Smoke Test -on: push +on: [push, pull_request] # split into two jobs so it runs in parallel, even if a little redundant jobs: - docker_build: + basic_tests: name: Build Test Container runs-on: ubuntu-latest steps: @@ -13,21 +13,9 @@ jobs: - name: docker build run: | - echo ${INPUT_PASSWORD} | docker login -u ${INPUT_USERNAME} --password-stdin cd $GITHUB_WORKSPACE - docker pull github/csnet-smoketest - docker build --cache-from github/csnet-smoketest -t github/csnet-smoketest -f docker/docker-cpu.Dockerfile . - docker push github/csnet-smoketest - env: - INPUT_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} - INPUT_USERNAME: ${{ secrets.DOCKER_USERNAME }} + docker build -t github/csnet-smoketest -f docker/docker-cpu.Dockerfile . - basic_tests: - needs: docker_build - name: Integration Test Default Parameters - runs-on: ubuntu-latest - - steps: - name: mypy type checking run: | cd $GITHUB_WORKSPACE @@ -43,33 +31,16 @@ jobs: cd $GITHUB_WORKSPACE docker run github/csnet-smoketest python train.py /src /tests/data/data_train.txt /tests/data/data_train.txt /tests/data/data_train.txt --dryrun --max-num-epochs 1 --max-files-per-dir 2 - CNN: - needs: docker_build - name: 1DCNN - runs-on: ubuntu-latest - - steps: - name: 1dcnn, all languages run: | cd $GITHUB_WORKSPACE docker run github/csnet-smoketest python train.py /src /tests/data/data_train.txt /tests/data/data_train.txt /tests/data/data_train.txt --dryrun --max-num-epochs 1 --model 1dcnn - selfattn: - needs: docker_build - name: selfattn - runs-on: ubuntu-latest - steps: - - name: selfattn, all languages run: | cd $GITHUB_WORKSPACE docker run github/csnet-smoketest python train.py /src /tests/data/data_train.txt /tests/data/data_train.txt /tests/data/data_train.txt --dryrun --max-num-epochs 1 --model selfatt --hypers-override "{\"batch_size\":64}" - rnn: - needs: docker_build - name: rnn - runs-on: ubuntu-latest - steps: - name: rnn, all languages run: | cd $GITHUB_WORKSPACE diff --git a/BENCHMARK.md b/BENCHMARK.md index fc9c0b9a..0d9a475e 100644 --- a/BENCHMARK.md +++ b/BENCHMARK.md @@ -1,7 +1,15 @@ +> ## The Challenge has been concluded +> No new submissions to the benchmark will be accepted. However, we would like +> to encourage practitioners and researchers to continue using +> the dataset and the human relevance annotations. Please see the +> [main README](/README.md) for more information. + ## Submitting runs to the benchmark The [Weights & Biases (W&B)](https://www.wandb.com) [benchmark](https://app.wandb.ai/github/CodeSearchNet/benchmark) tracks and compares models trained on the CodeSearchNet dataset by the global machine learning research community. Anyone is welcome to submit their results for review. +The leaderboard is available at . + ## Submission process ### Requirements @@ -71,3 +79,7 @@ Once you upload your \`model_predictions.csv\` file, W&B will compute the normal Replicating our results for the CodeSearchNet baseline is optional, as we encourage the community to create their own models and methods for ranking search results. To replicate our baseline submission, you can start with the "Quickstart" instructions in the [CodeSearchNet GitHub repository](https://github.com/github/CodeSearchNet). This baseline model uses [src/predict.py](src/predict.py) to generate the submission file. Your run will be logged to W&B, within a project that will be automatically linked to this benchmark. + +### Rules + +**Only 1 submission to the benchmark leaderboard is allowed every 2 weeks.** Our intention is not for participants to make many submissions to the leaderboard with different parameters -- as this kind of overfitting is counterproductive. There are no cash prizes and the idea is to learn from this dataset, for example, to apply the learned representations or utilize new techniques. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7f58a780..44f408dd 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -15,11 +15,14 @@ Please note that this project is released with a [Contributor Code of Conduct][c ## Scope -We anticipate that the community will design custom architectures and use frameworks other than Tensorflow. Furthermore, we anticipate that other datasets beyond the ones provided in this project might be useful. It is not our intention to integrate the best models and datasets into this repository as a superset of all available ideas. Rather, we intend to provide baseline approaches and a central place of reference with links to related repositories from the community. Therefore, we are accepting pull requests for the following items: - -- Bug fixes -- Updates to documentation, including links to your project(s) where improvements to the baseline have been made -- Minor improvements to the code +We want to use this repository to distribute the best data pre-processing and loading pipeline for the CodeSearchNet dataset. +As we anticipate other data scientists and researchers to design many custom architectures and use frameworks other than Tensorflow, we do not want to update the models in this repository beyond the simple baselines we originally released. +Therefore, we are accepting pull requests for the following items: + +- Improvements of the data pre-processing pipeline (e.g. better cleaning heuristics, new supported languages, etc.) +- Documentation updates that help others use the dataset +- Documentation updates with links to your project(s) where improvements to the baseline have been made +- Bug fixes for bugs in the baseline models (i.e., not better hyperparameter settings) Please open an issue if you are unsure regarding the best course of action. diff --git a/README.md b/README.md index f92d75de..2de70627 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,12 @@ [paper]: https://arxiv.org/abs/1909.09436 +> # The CodeSearchNet challenge has been concluded +> We would like to thank all participants for their submissions +> and we hope that this challenge provided insights to practitioners and researchers about the challenges in semantic code search and motivated new research. We would like to encourage everyone to continue using the dataset and the human evaluations, which we now provide publicly. Please, see below for details, specifically the [Evaluation](https://github.com/github/CodeSearchNet#evaluation) section. +> +> No new submissions to the challenge will be accepted. + **Table of Contents** @@ -17,7 +23,7 @@ - [Setup](#setup) - [Data Details](#data-details) - [Data Acquisition](#data-acquisition) - - [Schema & Format](#schema-format) + - [Schema & Format](#schema--format) - [Downloading Data from S3](#downloading-data-from-s3) - [Running our Baseline Model](#running-our-baseline-model) - [Model Architecture](#model-architecture) @@ -73,21 +79,29 @@ Finally, you can submit your run to the [community benchmark](https://app.wandb. We hope that CodeSearchNet is a step towards engaging with the broader machine learning and NLP community regarding the relationship between source code and natural language. We describe a specific task here, but we expect and welcome other uses of our dataset. -More context regarding the motivation for this problem is in this [technical report][paper]. +More context regarding the motivation for this problem is in this [technical report][paper]. Please, cite the dataset and the challenge as +``` +@article{husain2019codesearchnet, + title={{CodeSearchNet} challenge: Evaluating the state of semantic code search}, + author={Husain, Hamel and Wu, Ho-Hsiang and Gazit, Tiferet and Allamanis, Miltiadis and Brockschmidt, Marc}, + journal={arXiv preprint arXiv:1909.09436}, + year={2019} +} +``` ## Data - The primary dataset consists of 2 million (`comment`, `code`) pairs from open source libraries. Concretely, a `comment` is a top-level function or method comment (e.g. [docstrings](https://en.wikipedia.org/wiki/Docstring) in Python), and `code` is an entire function or method. Currently, the dataset contains Python, Javascript, Ruby, Go, Java, and PHP code. Throughout this repo, we refer to the terms docstring and query interchangeably. We partition the data into train, validation, and test splits such that code from the same repository can only exist in one partition. Currently this is the only dataset on which we train our model. Summary stastics about this dataset can be found in [this notebook](notebooks/ExploreData.ipynb) + The primary dataset consists of 2 million (`comment`, `code`) pairs from open source libraries. Concretely, a `comment` is a top-level function or method comment (e.g. [docstrings](https://en.wikipedia.org/wiki/Docstring) in Python), and `code` is an entire function or method. Currently, the dataset contains Python, Javascript, Ruby, Go, Java, and PHP code. Throughout this repo, we refer to the terms docstring and query interchangeably. We partition the data into train, validation, and test splits such that code from the same repository can only exist in one partition. Currently this is the only dataset on which we train our model. Summary statistics about this dataset can be found in [this notebook](notebooks/ExploreData.ipynb) For more information about how to obtain the data, see [this section](#data-details). ## Evaluation - The metric we use for evaluation is [Normalized Discounted Cumulative Gain](https://en.wikipedia.org/wiki/Discounted_cumulative_gain#Normalized_DCG). Please reference [this paper][paper] for further details regarding model evaluation. + The metric we use for evaluation is [Normalized Discounted Cumulative Gain](https://en.wikipedia.org/wiki/Discounted_cumulative_gain#Normalized_DCG). Please reference [this paper][paper] for further details regarding model evaluation. The evaluation script can be found [here](/src/relevanceeval.py). ### Annotations - We manually annotated retrieval results for the six languages from 99 general [queries](resources/queries.csv). This dataset is used as groundtruth data for evaluation _only_. Please refer to [this paper][paper] for further details on the annotation process. + We manually annotated retrieval results for the six languages from 99 general [queries](resources/queries.csv). This dataset is used as groundtruth data for evaluation _only_. Please refer to [this paper][paper] for further details on the annotation process. These annotations were used to compute the scores in the leaderboard. Now that the competition has been concluded, you can find the annotations, along with the annotator comments [here](/resources/annotationStore.csv). ## Setup @@ -130,11 +144,11 @@ Data is stored in [jsonlines](http://jsonlines.org/) format. Each line in the u - **language:** the programming language - **code:** the part of the `original_string` that is code - **code_tokens:** tokenized version of `code` -- **docstring:** the top level comment or docstring, if exists in the original string +- **docstring:** the top-level comment or docstring, if it exists in the original string - **docstring_tokens:** tokenized version of `docstring` - **sha:** this field is not being used [TODO: add note on where this comes from?] - **partition:** a flag indicating what partition this datum belongs to of {train, valid, test, etc.} This is not used by the model. Instead we rely on directory structure to denote the partition of the data. -- **url:** the url for the this code snippet including the line numbers +- **url:** the url for the code snippet including the line numbers Code, comments, and docstrings are extracted in a language-specific manner, removing artifacts of that language. @@ -242,6 +256,13 @@ For example, the link for the `java` is: The size of the dataset is approximately 20 GB. The various files and the directory structure are explained [here](resources/README.md). +## Human Relevance Judgements +To train neural models with a large dataset we use the documentation comments (e.g. docstrings) as a proxy. For evaluation (and the leaderboard), we collected human relevance judgements of pairs of realistic-looking natural language queries and code snippets. Now that the challenge has been concluded, we provide the data [here](/resources/annotationStore.csv) as a `.csv`, with the following fields: +* Language: The programming language of the snippet. +* Query: The natural language query +* GitHubUrl: The URL of the target snippet. This matches the `URL` key in the data (see [here](#schema--format)). +* Relevance: the 0-3 human relevance judgement, where "3" is the highest score (very relevant) and "0" is the lowest (irrelevant). +* Notes: a free-text field with notes that annotators optionally provided. # Running Our Baseline Model @@ -265,9 +286,9 @@ This step assumes that you have a suitable Nvidia-GPU with [Cuda v9.0](https://d ``` script/console ``` - This will drop you into the shell of a Docker container with all necessary dependencies installed, including the code in this repository, along with data that you downloaded earlier. By default you will be placed in the `src/` folder of this GitHub repository. From here you can execute commands to run the model. + This will drop you into the shell of a Docker container with all necessary dependencies installed, including the code in this repository, along with data that you downloaded earlier. By default, you will be placed in the `src/` folder of this GitHub repository. From here you can execute commands to run the model. - 2. Set up [W&B](https://docs.wandb.com/docs/started.html) (free for open source projects) [per the instructions below](#W&B Setup) if you would like to share your results on the community benchmark. This is optional but highly recommended. + 2. Set up [W&B](https://docs.wandb.com/docs/started.html) (free for open source projects) [per the instructions below](#wb-setup) if you would like to share your results on the community benchmark. This is optional but highly recommended. 3. The entry point to this model is `src/train.py`. You can see various options by executing the following command: ``` @@ -296,7 +317,7 @@ This step assumes that you have a suitable Nvidia-GPU with [Cuda v9.0](https://d ../resources/data/go/final/jsonl/train ``` - By default models are saved in the `resources/saved_models` folder of this repository. + By default, models are saved in the `resources/saved_models` folder of this repository. * Training a 1D-CNN model on Python data only: ``` diff --git a/benchmarks/02-Feb-20-16:33_github_g2od7jac.json b/benchmarks/02-Feb-20-16:33_github_g2od7jac.json new file mode 100644 index 00000000..27011fed --- /dev/null +++ b/benchmarks/02-Feb-20-16:33_github_g2od7jac.json @@ -0,0 +1,8 @@ +{ + "timestamp": "02-Feb-20-16:33", + "wandb_run_name": "g2od7jac", + "wandb_username": "maxschall", + "github_username": "Maxscha", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/g2od7jac", + "score": "0.192643147" +} \ No newline at end of file diff --git a/benchmarks/02-May-20-16:26_github_uf1r2i6t.json b/benchmarks/02-May-20-16:26_github_uf1r2i6t.json new file mode 100644 index 00000000..94e56c00 --- /dev/null +++ b/benchmarks/02-May-20-16:26_github_uf1r2i6t.json @@ -0,0 +1,8 @@ +{ + "timestamp": "02-May-20-16:26", + "wandb_run_name": "uf1r2i6t", + "wandb_username": "wuchen", + "github_username": "overwindows", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/uf1r2i6t", + "score": "0.171974512" +} \ No newline at end of file diff --git a/benchmarks/03-Oct-19-17:55_github_iwp0dldg.json b/benchmarks/03-Oct-19-17:55_github_iwp0dldg.json new file mode 100644 index 00000000..3005c75e --- /dev/null +++ b/benchmarks/03-Oct-19-17:55_github_iwp0dldg.json @@ -0,0 +1,8 @@ +{ + "timestamp": "03-Oct-19-17:55", + "wandb_run_name": "iwp0dldg", + "wandb_username": "seungjaeryanlee", + "github_username": "seungjaeryanlee", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/iwp0dldg", + "score": "0.105545797" +} \ No newline at end of file diff --git a/benchmarks/04-May-20-15:32_github_vl84tos2.json b/benchmarks/04-May-20-15:32_github_vl84tos2.json new file mode 100644 index 00000000..82247b74 --- /dev/null +++ b/benchmarks/04-May-20-15:32_github_vl84tos2.json @@ -0,0 +1,8 @@ +{ + "timestamp": "04-May-20-15:32", + "wandb_run_name": "vl84tos2", + "wandb_username": "sujaylokesh", + "github_username": "sujaylokesh", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/vl84tos2", + "score": "0.073919551" +} \ No newline at end of file diff --git a/benchmarks/05-Aug-20-14:17_github_nj23pgx3.json b/benchmarks/05-Aug-20-14:17_github_nj23pgx3.json new file mode 100644 index 00000000..f422215e --- /dev/null +++ b/benchmarks/05-Aug-20-14:17_github_nj23pgx3.json @@ -0,0 +1,8 @@ +{ + "timestamp": "05-Aug-20-14:17", + "wandb_run_name": "nj23pgx3", + "wandb_username": "amazingguni", + "github_username": "amazingguni", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/nj23pgx3", + "score": "0.338282215" +} \ No newline at end of file diff --git a/benchmarks/06-Aug-20-21:01_github_y3jtv7g0.json b/benchmarks/06-Aug-20-21:01_github_y3jtv7g0.json new file mode 100644 index 00000000..acdafd2e --- /dev/null +++ b/benchmarks/06-Aug-20-21:01_github_y3jtv7g0.json @@ -0,0 +1,8 @@ +{ + "timestamp": "06-Aug-20-21:01", + "wandb_run_name": "y3jtv7g0", + "wandb_username": "interneuron", + "github_username": "raijinspecial", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/y3jtv7g0", + "score": "0.345168662" +} \ No newline at end of file diff --git a/benchmarks/07-May-20-06:07_github_wlhntgj7.json b/benchmarks/07-May-20-06:07_github_wlhntgj7.json new file mode 100644 index 00000000..3f8eafd2 --- /dev/null +++ b/benchmarks/07-May-20-06:07_github_wlhntgj7.json @@ -0,0 +1,8 @@ +{ + "timestamp": "07-May-20-06:07", + "wandb_run_name": "wlhntgj7", + "wandb_username": "roknovosel", + "github_username": "novoselrok", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/wlhntgj7", + "score": "0.292494426" +} \ No newline at end of file diff --git a/benchmarks/07-May-20-16:29_github_e8zdx16t.json b/benchmarks/07-May-20-16:29_github_e8zdx16t.json new file mode 100644 index 00000000..a7ade7f7 --- /dev/null +++ b/benchmarks/07-May-20-16:29_github_e8zdx16t.json @@ -0,0 +1,8 @@ +{ + "timestamp": "07-May-20-16:29", + "wandb_run_name": "e8zdx16t", + "wandb_username": "siace", + "github_username": "SiAce", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/e8zdx16t", + "score": "0.162973699" +} \ No newline at end of file diff --git a/benchmarks/07-May-20-16:34_github_nvxgzph0.json b/benchmarks/07-May-20-16:34_github_nvxgzph0.json new file mode 100644 index 00000000..74352e40 --- /dev/null +++ b/benchmarks/07-May-20-16:34_github_nvxgzph0.json @@ -0,0 +1,8 @@ +{ + "timestamp": "07-May-20-16:34", + "wandb_run_name": "nvxgzph0", + "wandb_username": "samasth", + "github_username": "Samasth", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/nvxgzph0", + "score": "0.155469206" +} \ No newline at end of file diff --git a/benchmarks/08-Nov-19-05:57_github_1oje6ykg.json b/benchmarks/08-Nov-19-05:57_github_1oje6ykg.json new file mode 100644 index 00000000..a59f8047 --- /dev/null +++ b/benchmarks/08-Nov-19-05:57_github_1oje6ykg.json @@ -0,0 +1,8 @@ +{ + "timestamp": "08-Nov-19-05:57", + "wandb_run_name": "1oje6ykg", + "wandb_username": "azt", + "github_username": "andrewztan", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/1oje6ykg", + "score": "0.189848815" +} \ No newline at end of file diff --git a/benchmarks/09-May-20-17:31_github_2vwys95k.json b/benchmarks/09-May-20-17:31_github_2vwys95k.json new file mode 100644 index 00000000..a24ba3e8 --- /dev/null +++ b/benchmarks/09-May-20-17:31_github_2vwys95k.json @@ -0,0 +1,8 @@ +{ + "timestamp": "09-May-20-17:31", + "wandb_run_name": "2vwys95k", + "wandb_username": "tchandan11", + "github_username": "TChandanNyu", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/2vwys95k", + "score": "0.163739408" +} \ No newline at end of file diff --git a/benchmarks/10-Jul-20-07:23_github_069j8jjc.json b/benchmarks/10-Jul-20-07:23_github_069j8jjc.json new file mode 100644 index 00000000..a6068832 --- /dev/null +++ b/benchmarks/10-Jul-20-07:23_github_069j8jjc.json @@ -0,0 +1,8 @@ +{ + "timestamp": "10-Jul-20-07:23", + "wandb_run_name": "069j8jjc", + "wandb_username": "raunak_sinha", + "github_username": "Sinha-Raunak", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/069j8jjc", + "score": "0.010005569" +} \ No newline at end of file diff --git a/benchmarks/10-Mar-20-19:21_github_4nmb1vn9.json b/benchmarks/10-Mar-20-19:21_github_4nmb1vn9.json new file mode 100644 index 00000000..5241abe1 --- /dev/null +++ b/benchmarks/10-Mar-20-19:21_github_4nmb1vn9.json @@ -0,0 +1,8 @@ +{ + "timestamp": "10-Mar-20-19:21", + "wandb_run_name": "4nmb1vn9", + "wandb_username": "jianguda", + "github_username": "jianguda", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/4nmb1vn9", + "score": "0.049820371" +} \ No newline at end of file diff --git a/benchmarks/10-May-20-04:27_github_c4yzds6k.json b/benchmarks/10-May-20-04:27_github_c4yzds6k.json new file mode 100644 index 00000000..fce3e79a --- /dev/null +++ b/benchmarks/10-May-20-04:27_github_c4yzds6k.json @@ -0,0 +1,8 @@ +{ + "timestamp": "10-May-20-04:27", + "wandb_run_name": "c4yzds6k", + "wandb_username": "maxshen", + "github_username": "chihchungshen", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/c4yzds6k", + "score": "0.143694118" +} \ No newline at end of file diff --git a/benchmarks/10-May-20-14:46_github_b31o85bm.json b/benchmarks/10-May-20-14:46_github_b31o85bm.json new file mode 100644 index 00000000..e33505e5 --- /dev/null +++ b/benchmarks/10-May-20-14:46_github_b31o85bm.json @@ -0,0 +1,8 @@ +{ + "timestamp": "10-May-20-14:46", + "wandb_run_name": "b31o85bm", + "wandb_username": "xxz", + "github_username": "Zxx1022", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/b31o85bm", + "score": "0.162871119" +} \ No newline at end of file diff --git a/benchmarks/10-May-20-16:15_github_e6q1dhul.json b/benchmarks/10-May-20-16:15_github_e6q1dhul.json new file mode 100644 index 00000000..a3c0cbf6 --- /dev/null +++ b/benchmarks/10-May-20-16:15_github_e6q1dhul.json @@ -0,0 +1,8 @@ +{ + "timestamp": "10-May-20-16:15", + "wandb_run_name": "e6q1dhul", + "wandb_username": "p-disha", + "github_username": "p-disha", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/e6q1dhul", + "score": "0.151475452" +} \ No newline at end of file diff --git a/benchmarks/10-May-20-22:07_github_ce2nfiay.json b/benchmarks/10-May-20-22:07_github_ce2nfiay.json new file mode 100644 index 00000000..419522bf --- /dev/null +++ b/benchmarks/10-May-20-22:07_github_ce2nfiay.json @@ -0,0 +1,8 @@ +{ + "timestamp": "10-May-20-22:07", + "wandb_run_name": "ce2nfiay", + "wandb_username": "liqi0816", + "github_username": "liqi0816", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/ce2nfiay", + "score": "0.127567848" +} \ No newline at end of file diff --git a/benchmarks/10-May-20-23:27_github_pjjzz9zq.json b/benchmarks/10-May-20-23:27_github_pjjzz9zq.json new file mode 100644 index 00000000..a0a4ba33 --- /dev/null +++ b/benchmarks/10-May-20-23:27_github_pjjzz9zq.json @@ -0,0 +1,8 @@ +{ + "timestamp": "10-May-20-23:27", + "wandb_run_name": "pjjzz9zq", + "wandb_username": "djp526", + "github_username": "dhavalpatel290", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/pjjzz9zq", + "score": "0.000000000" +} \ No newline at end of file diff --git a/benchmarks/11-Aug-20-16:45_github_1ia5g9b1.json b/benchmarks/11-Aug-20-16:45_github_1ia5g9b1.json new file mode 100644 index 00000000..8bf9d845 --- /dev/null +++ b/benchmarks/11-Aug-20-16:45_github_1ia5g9b1.json @@ -0,0 +1,8 @@ +{ + "timestamp": "11-Aug-20-16:45", + "wandb_run_name": "1ia5g9b1", + "wandb_username": "yss14", + "github_username": "yss14", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/1ia5g9b1", + "score": "0.191916770" +} \ No newline at end of file diff --git a/benchmarks/11-Jun-20-23:49_github_72m4i6yh.json b/benchmarks/11-Jun-20-23:49_github_72m4i6yh.json new file mode 100644 index 00000000..c4455910 --- /dev/null +++ b/benchmarks/11-Jun-20-23:49_github_72m4i6yh.json @@ -0,0 +1,8 @@ +{ + "timestamp": "11-Jun-20-23:49", + "wandb_run_name": "72m4i6yh", + "wandb_username": "mahimanzum", + "github_username": "mahimanzum", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/72m4i6yh", + "score": "0.172926255" +} \ No newline at end of file diff --git a/benchmarks/11-Oct-19-14:59_github_os4tuo5s.json b/benchmarks/11-Oct-19-14:59_github_os4tuo5s.json new file mode 100644 index 00000000..0c66e469 --- /dev/null +++ b/benchmarks/11-Oct-19-14:59_github_os4tuo5s.json @@ -0,0 +1,8 @@ +{ + "timestamp": "11-Oct-19-14:59", + "wandb_run_name": "os4tuo5s", + "wandb_username": "sadegh-sheikhaei", + "github_username": "sheikhaei", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/os4tuo5s", + "score": "0.123289703" +} \ No newline at end of file diff --git a/benchmarks/12-Aug-20-02:17_github_6prd2bpm.json b/benchmarks/12-Aug-20-02:17_github_6prd2bpm.json new file mode 100644 index 00000000..47edd099 --- /dev/null +++ b/benchmarks/12-Aug-20-02:17_github_6prd2bpm.json @@ -0,0 +1,8 @@ +{ + "timestamp": "12-Aug-20-02:17", + "wandb_run_name": "6prd2bpm", + "wandb_username": "spring-herald", + "github_username": "SpringHerald", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/6prd2bpm", + "score": "0.371511195" +} \ No newline at end of file diff --git a/benchmarks/12-Jun-20-22:36_github_0tpqtm61.json b/benchmarks/12-Jun-20-22:36_github_0tpqtm61.json new file mode 100644 index 00000000..368aee76 --- /dev/null +++ b/benchmarks/12-Jun-20-22:36_github_0tpqtm61.json @@ -0,0 +1,8 @@ +{ + "timestamp": "12-Jun-20-22:36", + "wandb_run_name": "0tpqtm61", + "wandb_username": "alexeys", + "github_username": "ASvyatkovskiy", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/0tpqtm61", + "score": "0.356683785" +} \ No newline at end of file diff --git a/benchmarks/12-May-20-09:13_github_3jg88e0p.json b/benchmarks/12-May-20-09:13_github_3jg88e0p.json new file mode 100644 index 00000000..81f8dd02 --- /dev/null +++ b/benchmarks/12-May-20-09:13_github_3jg88e0p.json @@ -0,0 +1,8 @@ +{ + "timestamp": "12-May-20-09:13", + "wandb_run_name": "3jg88e0p", + "wandb_username": "yss14", + "github_username": "yss14", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/3jg88e0p", + "score": "0.118390841" +} \ No newline at end of file diff --git a/benchmarks/13-Dec-19-00:21_github_w4jtu67q.json b/benchmarks/13-Dec-19-00:21_github_w4jtu67q.json new file mode 100644 index 00000000..5f2e2df0 --- /dev/null +++ b/benchmarks/13-Dec-19-00:21_github_w4jtu67q.json @@ -0,0 +1,8 @@ +{ + "timestamp": "13-Dec-19-00:21", + "wandb_run_name": "w4jtu67q", + "wandb_username": "seangtkelley", + "github_username": "seangtkelley", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/w4jtu67q", + "score": "0.142282596" +} \ No newline at end of file diff --git a/benchmarks/13-Jul-20-07:36_github_zxe0vij0.json b/benchmarks/13-Jul-20-07:36_github_zxe0vij0.json new file mode 100644 index 00000000..8300ccb2 --- /dev/null +++ b/benchmarks/13-Jul-20-07:36_github_zxe0vij0.json @@ -0,0 +1,8 @@ +{ + "timestamp": "13-Jul-20-07:36", + "wandb_run_name": "zxe0vij0", + "wandb_username": "wuchen", + "github_username": "overwindows", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/zxe0vij0", + "score": "0.384058585" +} \ No newline at end of file diff --git a/benchmarks/13-Jun-20-15:10_github_n0dn3jan.json b/benchmarks/13-Jun-20-15:10_github_n0dn3jan.json new file mode 100644 index 00000000..584e5e7b --- /dev/null +++ b/benchmarks/13-Jun-20-15:10_github_n0dn3jan.json @@ -0,0 +1,8 @@ +{ + "timestamp": "13-Jun-20-15:10", + "wandb_run_name": "n0dn3jan", + "wandb_username": "mahimanzum", + "github_username": "mahimanzum", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/n0dn3jan", + "score": "0.351384578" +} \ No newline at end of file diff --git a/benchmarks/13-May-20-17:17_github_gw7po7gh.json b/benchmarks/13-May-20-17:17_github_gw7po7gh.json new file mode 100644 index 00000000..1a9ccb5d --- /dev/null +++ b/benchmarks/13-May-20-17:17_github_gw7po7gh.json @@ -0,0 +1,8 @@ +{ + "timestamp": "13-May-20-17:17", + "wandb_run_name": "gw7po7gh", + "wandb_username": "mahimanzum", + "github_username": "mahimanzum", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/gw7po7gh", + "score": "0.014649422" +} \ No newline at end of file diff --git a/benchmarks/14-Feb-20-16:21_github_6xwhvdoz.json b/benchmarks/14-Feb-20-16:21_github_6xwhvdoz.json new file mode 100644 index 00000000..800a442a --- /dev/null +++ b/benchmarks/14-Feb-20-16:21_github_6xwhvdoz.json @@ -0,0 +1,8 @@ +{ + "timestamp": "14-Feb-20-16:21", + "wandb_run_name": "6xwhvdoz", + "wandb_username": "jianguda", + "github_username": "jianguda", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/6xwhvdoz", + "score": "0.009783526" +} \ No newline at end of file diff --git a/benchmarks/15-Feb-20-09:35_github_f9hhr6s6.json b/benchmarks/15-Feb-20-09:35_github_f9hhr6s6.json new file mode 100644 index 00000000..a96e2953 --- /dev/null +++ b/benchmarks/15-Feb-20-09:35_github_f9hhr6s6.json @@ -0,0 +1,8 @@ +{ + "timestamp": "15-Feb-20-09:35", + "wandb_run_name": "f9hhr6s6", + "wandb_username": "spring-herald", + "github_username": "SpringHerald", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/f9hhr6s6", + "score": "0.010506709" +} \ No newline at end of file diff --git a/benchmarks/15-May-20-18:30_github_nt9fdrmu.json b/benchmarks/15-May-20-18:30_github_nt9fdrmu.json new file mode 100644 index 00000000..c9e4e369 --- /dev/null +++ b/benchmarks/15-May-20-18:30_github_nt9fdrmu.json @@ -0,0 +1,8 @@ +{ + "timestamp": "15-May-20-18:30", + "wandb_run_name": "nt9fdrmu", + "wandb_username": "ishtiaqniloy", + "github_username": "ishtiaqniloy", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/nt9fdrmu", + "score": "0.005814396" +} \ No newline at end of file diff --git a/benchmarks/15-Oct-19-00:20_github_eh1bzd40.json b/benchmarks/15-Oct-19-00:20_github_eh1bzd40.json new file mode 100644 index 00000000..bb3a2d4e --- /dev/null +++ b/benchmarks/15-Oct-19-00:20_github_eh1bzd40.json @@ -0,0 +1,8 @@ +{ + "timestamp": "15-Oct-19-00:20", + "wandb_run_name": "eh1bzd40", + "wandb_username": "celsofranca", + "github_username": "Ceceu", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/eh1bzd40", + "score": "0.041898180" +} \ No newline at end of file diff --git a/benchmarks/15-Oct-19-15:33_github_qw4jt32s.json b/benchmarks/15-Oct-19-15:33_github_qw4jt32s.json new file mode 100644 index 00000000..81b88b87 --- /dev/null +++ b/benchmarks/15-Oct-19-15:33_github_qw4jt32s.json @@ -0,0 +1,8 @@ +{ + "timestamp": "15-Oct-19-15:33", + "wandb_run_name": "qw4jt32s", + "wandb_username": "celsofranca", + "github_username": "Ceceu", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/qw4jt32s", + "score": "0.159347966" +} \ No newline at end of file diff --git a/benchmarks/16-Feb-20-02:22_github_k6kif31n.json b/benchmarks/16-Feb-20-02:22_github_k6kif31n.json new file mode 100644 index 00000000..f763adfb --- /dev/null +++ b/benchmarks/16-Feb-20-02:22_github_k6kif31n.json @@ -0,0 +1,8 @@ +{ + "timestamp": "16-Feb-20-02:22", + "wandb_run_name": "k6kif31n", + "wandb_username": "laksh47", + "github_username": "Laksh47", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/k6kif31n", + "score": "0.148351112" +} \ No newline at end of file diff --git a/benchmarks/16-Jun-20-16:33_github_5heafww5.json b/benchmarks/16-Jun-20-16:33_github_5heafww5.json new file mode 100644 index 00000000..68c6cfc2 --- /dev/null +++ b/benchmarks/16-Jun-20-16:33_github_5heafww5.json @@ -0,0 +1,8 @@ +{ + "timestamp": "16-Jun-20-16:33", + "wandb_run_name": "5heafww5", + "wandb_username": "susanna", + "github_username": "Junshan-Wang", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/5heafww5", + "score": "0.348226322" +} \ No newline at end of file diff --git a/benchmarks/17-Jun-20-16:50_github_l0evkg04.json b/benchmarks/17-Jun-20-16:50_github_l0evkg04.json new file mode 100644 index 00000000..f8d9ad3d --- /dev/null +++ b/benchmarks/17-Jun-20-16:50_github_l0evkg04.json @@ -0,0 +1,8 @@ +{ + "timestamp": "17-Jun-20-16:50", + "wandb_run_name": "l0evkg04", + "wandb_username": "gleb-morgachev", + "github_username": "gmorgachev", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/l0evkg04", + "score": "0.296147591" +} \ No newline at end of file diff --git a/benchmarks/17-Oct-19-17:45_github_yelz69d6.json b/benchmarks/17-Oct-19-17:45_github_yelz69d6.json new file mode 100644 index 00000000..abdf5c39 --- /dev/null +++ b/benchmarks/17-Oct-19-17:45_github_yelz69d6.json @@ -0,0 +1,8 @@ +{ + "timestamp": "17-Oct-19-17:45", + "wandb_run_name": "yelz69d6", + "wandb_username": "sadegh-sheikhaei", + "github_username": "sheikhaei", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/yelz69d6", + "score": "0.051960465" +} \ No newline at end of file diff --git a/benchmarks/18-Apr-20-20:09_github_7sipmxl0.json b/benchmarks/18-Apr-20-20:09_github_7sipmxl0.json new file mode 100644 index 00000000..b9b791de --- /dev/null +++ b/benchmarks/18-Apr-20-20:09_github_7sipmxl0.json @@ -0,0 +1,8 @@ +{ + "timestamp": "18-Apr-20-20:09", + "wandb_run_name": "7sipmxl0", + "wandb_username": "jianguda", + "github_username": "jianguda", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/7sipmxl0", + "score": "0.167579375" +} \ No newline at end of file diff --git a/benchmarks/18-Mar-20-08:16_github_ml7p2ddo.json b/benchmarks/18-Mar-20-08:16_github_ml7p2ddo.json new file mode 100644 index 00000000..f01b81a8 --- /dev/null +++ b/benchmarks/18-Mar-20-08:16_github_ml7p2ddo.json @@ -0,0 +1,8 @@ +{ + "timestamp": "18-Mar-20-08:16", + "wandb_run_name": "ml7p2ddo", + "wandb_username": "gleb-morgachev", + "github_username": "gmorgachev", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/ml7p2ddo", + "score": "0.209223539" +} \ No newline at end of file diff --git a/benchmarks/19-May-20-01:31_github_e2dwwzro.json b/benchmarks/19-May-20-01:31_github_e2dwwzro.json new file mode 100644 index 00000000..e9524cba --- /dev/null +++ b/benchmarks/19-May-20-01:31_github_e2dwwzro.json @@ -0,0 +1,8 @@ +{ + "timestamp": "19-May-20-01:31", + "wandb_run_name": "e2dwwzro", + "wandb_username": "jianguda", + "github_username": "jianguda", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/e2dwwzro", + "score": "0.370379094" +} \ No newline at end of file diff --git a/benchmarks/19-Oct-19-09:06_github_h911wca0.json b/benchmarks/19-Oct-19-09:06_github_h911wca0.json new file mode 100644 index 00000000..3d4f8e93 --- /dev/null +++ b/benchmarks/19-Oct-19-09:06_github_h911wca0.json @@ -0,0 +1,8 @@ +{ + "timestamp": "19-Oct-19-09:06", + "wandb_run_name": "h911wca0", + "wandb_username": "sadegh-sheikhaei", + "github_username": "sheikhaei", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/h911wca0", + "score": "0.129477420" +} \ No newline at end of file diff --git a/benchmarks/19-Oct-19-10:01_github_0252etvg.json b/benchmarks/19-Oct-19-10:01_github_0252etvg.json new file mode 100644 index 00000000..a542b5db --- /dev/null +++ b/benchmarks/19-Oct-19-10:01_github_0252etvg.json @@ -0,0 +1,8 @@ +{ + "timestamp": "19-Oct-19-10:01", + "wandb_run_name": "0252etvg", + "wandb_username": "sadegh-sheikhaei", + "github_username": "sheikhaei", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/0252etvg", + "score": "0.099150655" +} \ No newline at end of file diff --git a/benchmarks/20-Feb-20-11:11_github_c5jp5son.json b/benchmarks/20-Feb-20-11:11_github_c5jp5son.json new file mode 100644 index 00000000..32829e4c --- /dev/null +++ b/benchmarks/20-Feb-20-11:11_github_c5jp5son.json @@ -0,0 +1,8 @@ +{ + "timestamp": "20-Feb-20-11:11", + "wandb_run_name": "c5jp5son", + "wandb_username": "spring-herald", + "github_username": "SpringHerald", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/c5jp5son", + "score": "0.036229157" +} \ No newline at end of file diff --git a/benchmarks/20-May-20-06:47_github_i3aoth5d.json b/benchmarks/20-May-20-06:47_github_i3aoth5d.json new file mode 100644 index 00000000..c0a75e1d --- /dev/null +++ b/benchmarks/20-May-20-06:47_github_i3aoth5d.json @@ -0,0 +1,8 @@ +{ + "timestamp": "20-May-20-06:47", + "wandb_run_name": "i3aoth5d", + "wandb_username": "roknovosel", + "github_username": "novoselrok", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/i3aoth5d", + "score": "0.302402828" +} \ No newline at end of file diff --git a/benchmarks/22-Jun-20-08:16_github_rq32rt30.json b/benchmarks/22-Jun-20-08:16_github_rq32rt30.json new file mode 100644 index 00000000..7286b945 --- /dev/null +++ b/benchmarks/22-Jun-20-08:16_github_rq32rt30.json @@ -0,0 +1,8 @@ +{ + "timestamp": "22-Jun-20-08:16", + "wandb_run_name": "rq32rt30", + "wandb_username": "wuchen", + "github_username": "overwindows", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/rq32rt30", + "score": "0.373201193" +} \ No newline at end of file diff --git a/benchmarks/24-Oct-19-11:15_github_9jcsob3v.json b/benchmarks/24-Oct-19-11:15_github_9jcsob3v.json new file mode 100644 index 00000000..4041d6de --- /dev/null +++ b/benchmarks/24-Oct-19-11:15_github_9jcsob3v.json @@ -0,0 +1,8 @@ +{ + "timestamp": "24-Oct-19-11:15", + "wandb_run_name": "9jcsob3v", + "wandb_username": "zyfeng", + "github_username": "fengzhangyin", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/9jcsob3v", + "score": "0.171056864" +} \ No newline at end of file diff --git a/benchmarks/25-Feb-20-04:04_github_ayhmezfr.json b/benchmarks/25-Feb-20-04:04_github_ayhmezfr.json new file mode 100644 index 00000000..9cc2e979 --- /dev/null +++ b/benchmarks/25-Feb-20-04:04_github_ayhmezfr.json @@ -0,0 +1,8 @@ +{ + "timestamp": "25-Feb-20-04:04", + "wandb_run_name": "ayhmezfr", + "wandb_username": "bigcoder", + "github_username": "huangyz0918", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/ayhmezfr", + "score": "0.160470636" +} \ No newline at end of file diff --git a/benchmarks/25-May-20-20:37_github_okn7gw9k.json b/benchmarks/25-May-20-20:37_github_okn7gw9k.json new file mode 100644 index 00000000..2b72b384 --- /dev/null +++ b/benchmarks/25-May-20-20:37_github_okn7gw9k.json @@ -0,0 +1,8 @@ +{ + "timestamp": "25-May-20-20:37", + "wandb_run_name": "okn7gw9k", + "wandb_username": "mallamanis", + "github_username": "mallamanis", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/okn7gw9k", + "score": "0.341182800" +} \ No newline at end of file diff --git a/benchmarks/25-May-20-22:47_github_5e9jpg8s.json b/benchmarks/25-May-20-22:47_github_5e9jpg8s.json new file mode 100644 index 00000000..3b5e41bf --- /dev/null +++ b/benchmarks/25-May-20-22:47_github_5e9jpg8s.json @@ -0,0 +1,8 @@ +{ + "timestamp": "25-May-20-22:47", + "wandb_run_name": "5e9jpg8s", + "wandb_username": "mallamanis", + "github_username": "mallamanis", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/5e9jpg8s", + "score": "0.164814994" +} \ No newline at end of file diff --git a/benchmarks/26-May-20-15:44_github_yjer00bz.json b/benchmarks/26-May-20-15:44_github_yjer00bz.json new file mode 100644 index 00000000..ef5b89c9 --- /dev/null +++ b/benchmarks/26-May-20-15:44_github_yjer00bz.json @@ -0,0 +1,8 @@ +{ + "timestamp": "26-May-20-15:44", + "wandb_run_name": "yjer00bz", + "wandb_username": "wuchen", + "github_username": "overwindows", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/yjer00bz", + "score": "0.339572306" +} \ No newline at end of file diff --git a/benchmarks/26-Sep-19-16:33_github_ao3pxch7.json b/benchmarks/26-Sep-19-16:33_github_ao3pxch7.json new file mode 100644 index 00000000..785eed8b --- /dev/null +++ b/benchmarks/26-Sep-19-16:33_github_ao3pxch7.json @@ -0,0 +1,8 @@ +{ + "timestamp": "26-Sep-19-16:33", + "wandb_run_name": "ao3pxch7", + "wandb_username": "jeffr", + "github_username": "raubitsj", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/ao3pxch7", + "score": "0.115820903" +} \ No newline at end of file diff --git a/benchmarks/26-Sep-19-22:09_github_xyl14lhi.json b/benchmarks/26-Sep-19-22:09_github_xyl14lhi.json new file mode 100644 index 00000000..8620f3c2 --- /dev/null +++ b/benchmarks/26-Sep-19-22:09_github_xyl14lhi.json @@ -0,0 +1,8 @@ +{ + "timestamp": "26-Sep-19-22:09", + "wandb_run_name": "xyl14lhi", + "wandb_username": "stacey", + "github_username": "staceysv", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/xyl14lhi", + "score": "0.168976829" +} \ No newline at end of file diff --git a/benchmarks/27-May-20-11:15_github_r0tifb4u.json b/benchmarks/27-May-20-11:15_github_r0tifb4u.json new file mode 100644 index 00000000..3a3286ff --- /dev/null +++ b/benchmarks/27-May-20-11:15_github_r0tifb4u.json @@ -0,0 +1,8 @@ +{ + "timestamp": "27-May-20-11:15", + "wandb_run_name": "r0tifb4u", + "wandb_username": "mallamanis", + "github_username": "mallamanis", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/r0tifb4u", + "score": "0.239303618" +} \ No newline at end of file diff --git a/benchmarks/27-Sep-19-05:08_github_tkafpoh3.json b/benchmarks/27-Sep-19-05:08_github_tkafpoh3.json new file mode 100644 index 00000000..193c56a4 --- /dev/null +++ b/benchmarks/27-Sep-19-05:08_github_tkafpoh3.json @@ -0,0 +1,8 @@ +{ + "timestamp": "27-Sep-19-05:08", + "wandb_run_name": "tkafpoh3", + "wandb_username": "0bserver07", + "github_username": "0bserver07", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/tkafpoh3", + "score": "0.168449211" +} \ No newline at end of file diff --git a/benchmarks/27-Sep-19-05:09_github_qi1ng3l0.json b/benchmarks/27-Sep-19-05:09_github_qi1ng3l0.json new file mode 100644 index 00000000..d2d08f81 --- /dev/null +++ b/benchmarks/27-Sep-19-05:09_github_qi1ng3l0.json @@ -0,0 +1,8 @@ +{ + "timestamp": "27-Sep-19-05:09", + "wandb_run_name": "qi1ng3l0", + "wandb_username": "seungjaeryanlee", + "github_username": "seungjaeryanlee", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/qi1ng3l0", + "score": "0.168851252" +} \ No newline at end of file diff --git a/benchmarks/30-Mar-20-22:00_github_pf40giqi.json b/benchmarks/30-Mar-20-22:00_github_pf40giqi.json new file mode 100644 index 00000000..c82c42d8 --- /dev/null +++ b/benchmarks/30-Mar-20-22:00_github_pf40giqi.json @@ -0,0 +1,8 @@ +{ + "timestamp": "30-Mar-20-22:00", + "wandb_run_name": "pf40giqi", + "wandb_username": "jianguda", + "github_username": "jianguda", + "run_link": "https://app.wandb.ai/github/codesearchnet/runs/pf40giqi", + "score": "0.109630036" +} \ No newline at end of file diff --git a/docker/docker-cpu.Dockerfile b/docker/docker-cpu.Dockerfile index ee2df3fe..34a7047e 100644 --- a/docker/docker-cpu.Dockerfile +++ b/docker/docker-cpu.Dockerfile @@ -10,6 +10,7 @@ RUN pip --no-cache-dir install --upgrade \ typed_ast \ more_itertools \ scipy \ + sentencepiece \ toolz \ tqdm \ pandas \ @@ -23,4 +24,4 @@ RUN pip --no-cache-dir install --upgrade \ COPY src/docs/THIRD_PARTY_NOTICE.md . COPY . / WORKDIR /src -CMD bash \ No newline at end of file +CMD bash diff --git a/docker/docker-gpu.Dockerfile b/docker/docker-gpu.Dockerfile index 38c438e7..62b6df5d 100644 --- a/docker/docker-gpu.Dockerfile +++ b/docker/docker-gpu.Dockerfile @@ -2,7 +2,7 @@ FROM tensorflow/tensorflow:1.12.0-gpu-py3 ENV LANG=C.UTF-8 LC_ALL=C.UTF-8 RUN add-apt-repository -y ppa:git-core/ppa -RUN add-apt-repository -y ppa:jonathonf/python-3.6 +RUN add-apt-repository -y ppa:deadsnakes/ppa RUN apt-get update --fix-missing && apt-get install -y wget bzip2 ca-certificates \ byobu \ @@ -44,7 +44,7 @@ RUN pip --no-cache-dir install --upgrade \ altair==3.2.0 \ annoy==1.16.0 \ docopt==0.6.2 \ - dpu_utils==0.1.34 \ + dpu_utils==0.2.17 \ ipdb==0.12.2 \ jsonpath_rw_ext==1.2.2 \ jupyter==1.0.0 \ @@ -53,6 +53,7 @@ RUN pip --no-cache-dir install --upgrade \ pandas==0.25.0 \ parso==0.5.1 \ pygments==2.4.2 \ + pyyaml==5.3 \ requests==2.22.0 \ scipy==1.3.1 \ SetSimilaritySearch==0.1.7 \ diff --git a/function_parser/README.md b/function_parser/README.md index 29f8a1a9..2c8d8796 100644 --- a/function_parser/README.md +++ b/function_parser/README.md @@ -1,5 +1,8 @@ # Function Parser +> # A community-driven, standalone version of the function-parsing code in this folder, that can be installed as a PyPI package can be found [here](https://github.com/ncoop57/function_parser). +> The code in this codebase is maintained only for fixing issues related with the CodeSearchNet challenge data. + This repository contains various utils to parse GitHub repositories into function definition and docstring pairs. It is based on [tree-sitter](https://github.com/tree-sitter/) to parse code into [ASTs](https://en.wikipedia.org/wiki/Abstract_syntax_tree) and apply heuristics to parse metadata in more details. Currently, it supports 6 languages: Python, Java, Go, Php, Ruby, and Javascript. It also parses function calls and links them with their definitions for Python. diff --git a/function_parser/function_parser/parsers/java_parser.py b/function_parser/function_parser/parsers/java_parser.py index 86904e1f..69d0231f 100644 --- a/function_parser/function_parser/parsers/java_parser.py +++ b/function_parser/function_parser/parsers/java_parser.py @@ -78,7 +78,7 @@ def get_function_metadata(function_node, blob: str) -> Dict[str, str]: } declarators = [] - traverse_type(function_node, declarators, '{}_declarator'.format(function_node.type.split('_')[0])) + traverse_type(function_node, declarators, '{}_declaration'.format(function_node.type.split('_')[0])) parameters = [] for n in declarators[0].children: if n.type == 'identifier': diff --git a/function_parser/function_parser/parsers/php_parser.py b/function_parser/function_parser/parsers/php_parser.py index bedf3c31..92aa2a04 100644 --- a/function_parser/function_parser/parsers/php_parser.py +++ b/function_parser/function_parser/parsers/php_parser.py @@ -9,9 +9,10 @@ class PhpParser(LanguageParser): FILTER_PATHS = ('test', 'tests') BLACKLISTED_FUNCTION_NAMES = {'__construct', '__destruct', '__call', '__callStatic', - '__get', '__set', '__isset()', '__unset', + '__get', '__set', '__isset', '__unset', '__sleep', '__wakeup', '__toString', '__invoke', - '__set_state', '__clone', '__debugInfo'} + '__set_state', '__clone', '__debugInfo', '__serialize', + '__unserialize'} @staticmethod def get_docstring(trait_node, blob: str, idx: int) -> str: @@ -62,7 +63,7 @@ def get_definition(tree, blob: str) -> List[Dict[str, Any]]: for trait_declaration in trait_declarations: definitions.extend(PhpParser.get_declarations(trait_declaration, blob, trait_declaration.type)) for class_declaration in class_declarations: - definitions.extend(PhpParser.get_declarations(class_declaration, blob, class_declaration.type)) + definitions.extend(PhpParser.get_declarations(class_declaration, blob, class_declaration.type)) return definitions diff --git a/function_parser/function_parser/process_calls.py b/function_parser/function_parser/process_calls.py index e39117b8..2904b6bb 100644 --- a/function_parser/function_parser/process_calls.py +++ b/function_parser/function_parser/process_calls.py @@ -44,7 +44,7 @@ definitions = defaultdict(list) with open(args['DEFINITION_FILE'], 'rb') as f: - for d in pickle.load(f) + for d in pickle.load(f): definitions[d['nwo']].append(d) definitions = dict(definitions) diff --git a/resources/README.md b/resources/README.md index f3371ade..4c0eab44 100644 --- a/resources/README.md +++ b/resources/README.md @@ -74,4 +74,4 @@ Out[6]: ## Data Format -See [this](docs/DATA_FORMAT.md) for documentation and an example of how the data is stored. +See [this](https://github.com/github/CodeSearchNet#schema--format) for documentation and an example of how the data is stored. diff --git a/resources/annotationStore.csv b/resources/annotationStore.csv new file mode 100644 index 00000000..98beff4e --- /dev/null +++ b/resources/annotationStore.csv @@ -0,0 +1,4009 @@ +Language,Query,GitHubUrl,Relevance,Notes +Go,unique elements,https://github.com/tylertreat/BoomFilters/blob/611b3dbe80e85df3a0a10a43997d4d5784e86245/topk.go#L70-L85,0, +Go,read properties file,https://github.com/gobs/httpclient/blob/a93d469d8657e74a3d5a8f72bd46b54a19c341f1/httpfile.go#L78-L128,0, +Go,heatmap from 3d coordinates,https://github.com/twpayne/go-geom/blob/e21b3afba225b21d05fbcbeb8ece2c79c96554c5/xy/cga.go#L231-L248,1, +Go,create cookie,https://github.com/volatiletech/abcweb/blob/9e9ffe4fa86ed4e557dcc4b9d59ca5d3d91c6a66/abcsessions/middleware.go#L50-L60,2, +Go,readonly array,https://github.com/ericchiang/k8s/blob/68fb2168bedf77759577a56e44f2ccfaf7229673/apis/extensions/v1beta1/generated.pb.go#L141-L146,0, +Go,extract data from html content,https://github.com/urandom/readeef/blob/63b79a7bde3f3da1f4b6b3224235c346a34906f0/content/repo/logging/extract.go#L27-L35,0, +Go,get current process id,https://github.com/go-vgo/robotgo/blob/d643b9ffe5a44c524740136edc428be68ddbecae/examples/window/main.go#L30-L52,0, +Go,get inner html,https://github.com/labstack/echo/blob/5d2c33ad5dbb78540a56dd08d09d91f991bc3156/context.go#L402-L404,1, +Go,convert json to csv,https://github.com/wildducktheories/go-csv/blob/a843eda7bf0911b9acdfd11a9a41ed87282dcbdd/cmd/csv-to-json/main.go#L12-L26,1, +Go,finding time elapsed using a timer,https://github.com/uber-go/ratelimit/blob/c15da02342779cb6dc027fc95ee2277787698f36/internal/clock/clock.go#L66-L76,1, +Go,copying a file to a path,https://github.com/pilosa/pilosa/blob/67d53f6b48a43f7fe090f48e35518ca8d024747c/fragment.go#L2136-L2166,1, +Go,parse json file,https://github.com/cloudfoundry/cli/blob/5010c000047f246b870475e2c299556078cdad30/cf/util/json/json_parser.go#L29-L54,1,"Not irrelevant, it contains functions that are not defined here. However I could click on the link to GitHub and check the code what `parseJSON()` means. " +Go,how to check if a checkbox is checked,https://github.com/sclevine/agouti/blob/96599c91888f1b1cf2dccc7f1776ba7f511909e5/selection_actions.go#L114-L137,2, +Go,priority queue,https://github.com/beeker1121/goque/blob/4044bc29b28064db4f08e947c4972d5ca3e0f3c8/priority_queue.go#L122-L124,1, +Go,map to json,https://github.com/go-openapi/swag/blob/b3e2804c8535ee0d1b89320afd98474d5b8e9e3b/json.go#L170-L181,2, +Go,matrix multiply,https://github.com/fogleman/gg/blob/72436a171bf31757dc87fb8fa9f7485307350307/matrix.go#L82-L84,1, +Go,how to empty array,https://github.com/glycerine/zygomys/blob/36f1c7120ff2d831cebbb6f059ddc948273a8b56/zygo/functions.go#L783-L809,0, +Go,reading element from html - ,https://github.com/ghetzel/go-webfriend/blob/0746aa14b9afa6b488313705edf19a33d9dff469/browser/tab.go#L945-L988,1, +Go,heatmap from 3d coordinates,https://github.com/go-gl/gl/blob/bf2b1f2f34d7f6a60a99a830f65dcd6afb0c6587/v3.1/gles2/package.go#L9402-L9404,0, +Go,parse query string in url,https://github.com/fabric8-services/fabric8-wit/blob/54759c80c42ff2cf29b352e0f6c9330ce4ad7fce/search/search_repository.go#L204-L213,2, +Go,copy to clipboard,https://github.com/gopasspw/gopass/blob/fe4e21d62182f0f2e4ef9a0ca8168d849dc52bd4/pkg/clipboard/unclip.go#L15-L45,1, +Go,export to excel,https://github.com/go-ole/go-ole/blob/97b6244175ae18ea6eef668034fd6565847501c9/_example/excel2/excel.go#L80-L96,1, +Go,scatter plot,https://github.com/vdobler/chart/blob/6627804132c7c237061d1c8fd2554e3206daecb6/example/samplecharts.go#L186-L233,2, +Go,how to check if a checkbox is checked,https://github.com/webx-top/webx/blob/800783e939f407b66b20848589b41d2bb1aeb024/lib/forms/fields/options.go#L183-L189,0,irrelevant query and code +Go,randomly extract x items from a list,https://github.com/inverse-inc/packetfence/blob/f29912bde7974931d699aba60aa8fde1c5d9a826/go/dhcp/utils.go#L218-L236,2, +Go,set file attrib hidden,https://github.com/gopherjs/webgl/blob/39bd6d41eeb587730fcaa65adf71978fb10675bc/webgl.go#L1008-L1010,0, +Go,finding time elapsed using a timer,https://github.com/luci/luci-go/blob/f6cef429871eee3be7c6903af88d3ee884eaf683/common/retry/limited.go#L45-L76,1, +Go,socket recv timeout,https://github.com/nanomsg/mangos-v1/blob/b213a8e043f6541ad45f946a2e1c5d3617987985/compat/compat.go#L335-L338,1, +Go,string to date,https://github.com/Unknwon/com/blob/0fed4efef7553eed2cd04624befccacda78bb8e2/time.go#L31-L34,3, +Go,format date,https://github.com/webx-top/com/blob/01419a9b4188b43cba46b7ae02136d01e4fccf9c/time.go#L116-L138,2, +Go,reading element from html - ,https://github.com/ugorji/go/blob/1d7ab5c50b36701116070c4c612259f93c262367/codec/json.go#L678-L690,1, +Go,unique elements,https://github.com/badgerodon/penv/blob/7a4c6d64fa119b52afe2eb3f0801886bd8785318/penv.go#L23-L35,1, +Go,extract data from html content,https://github.com/kataras/iris/blob/6aafc0b9d5e97d0c52e325d8c4b4d23d61eb3f9d/context/context.go#L2767-L2770,1, +Go,heatmap from 3d coordinates,https://github.com/cloudfoundry/bosh-utils/blob/757f0ce2bf30bab7848e17679ca54f74e574facb/httpclient/socksify.go#L25-L107,0, +Go,positions of substrings in string,https://github.com/dop251/goja/blob/8d6ee3d1661108ff8433016620abb64dfa6d9937/string_unicode.go#L201-L213,0, +Go,extract data from html content,https://github.com/aymerick/douceur/blob/f9e29746e1161076eae141dd235f5d98b546ec3e/inliner/inliner.go#L93-L102,1, +Go,convert int to bool,https://github.com/cuigh/auxo/blob/35f08384a278c4f5c01bf96896e5964611e4a05d/util/cast/try.go#L10-L27,1, +Go,priority queue,https://github.com/cupcake/gokiq/blob/ebbb02812f6826798d779fbda06921d45b2c4446/worker.go#L79-L85,0, +Go,binomial distribution,https://github.com/qorio/maestro/blob/b3594982be16e2aeff0215d8d4a4d03fd563bdfb/pkg/yaml/yaml.go#L563-L585,0, +Go,how to read the contents of a .gz compressed file?,https://github.com/NebulousLabs/merkletree/blob/08d5d54b07f5e86a27f2d7431d0bc0300f5a9328/fuzz.go#L70-L76,0, +Go,how to determine a string is a valid word,https://github.com/huandu/xstrings/blob/8bbcf2f9ccb55755e748b7644164cd4bdce94c1d/manipulate.go#L179-L217,1, +Go,how to get current date,https://github.com/google/go-genproto/blob/54afdca5d873f7b529e2ce3def1a99df16feda90/googleapis/cloud/talent/v4beta1/filters.pb.go#L1527-L1532,0, +Go,convert html to pdf,https://github.com/advancedlogic/GoOse/blob/6cd46faf50eb2105cd5de7328ee8eb62557895c9/cleaner.go#L487-L568,1, +Go,convert a date string into yyyymmdd,https://github.com/grokify/gotilla/blob/a89420864b4d1cc22c57bcc025cc960a91372b37/time/timeutil/timeutil.go#L276-L283,2, +Go,read text file line by line,https://github.com/wcharczuk/go-chart/blob/9852fce5a172598e72d16f4306f0f17a53d94eb4/util/file_util.go#L17-L34,3,"This code is not completely correct, but it intends to do what the description says." +Go,write csv,https://github.com/foolin/gocsv/blob/d1cfc1a54940e0b038e7f221a362c8c51eacd2c9/tools/mergecsv/mergecsv.go#L21-L117,2, +Go,encode url,https://github.com/hoisie/web/blob/a498c022b2c0babab2bf9c0400754190b24c8c39/helpers.go#L47-L57,1, +Go,how to randomly pick a number,https://github.com/Songmu/strrand/blob/5195340ba52ce1bb6918091f054e4c8fdc645c41/strrand.go#L37-L43,2, +Go,regex case insensitive,https://github.com/choria-io/go-validator/blob/4ce2ef25983faa873cc4bcea0f1ef2a4273d42cc/regex/regex.go#L10-L21,1, +Go,export to excel,https://github.com/mkb218/gosndfile/blob/e0c9ef895ee23c154b6fe25b5261daf514df9941/sndfile/virtual.go#L83-L87,0, +Go,regex case insensitive,https://github.com/json-iterator/go/blob/0ff49de124c6f76f8494e194af75bde0f1a49a29/reflect.go#L44-L50,0, +Go,json to xml conversion,https://github.com/clbanning/x2j/blob/5e605d46809c441eb0e565867b63f7d80c9140c2/x2j.go#L124-L141,1, +Go,pretty print json,https://github.com/denverdino/aliyungo/blob/611ead8a6fedf409d6512b6e4f44f3f1cbc65755/util/util.go#L179-L185,2, +Go,confusion matrix,https://github.com/google/go-genproto/blob/54afdca5d873f7b529e2ce3def1a99df16feda90/googleapis/cloud/automl/v1beta1/classification.pb.go#L486-L488,0, +Go,underline text in label widget,https://github.com/aarzilli/nucular/blob/64ec1eba91814ebb417978927206070dd1fc44e1/nucular.go#L1658-L1672,1, +Go,httpclient post json,https://github.com/ory/hydra/blob/67c246c177446daab64be00ba82b3aea1a546570/sdk/go/hydra/client/admin/get_json_web_key_parameters.go#L103-L106,0, +Go,all permutations of a list,https://github.com/JamesClonk/vultr/blob/fed59ad207c9bda0a5dfe4d18de53ccbb3d80c91/cmd/commands.go#L12-L190,0,"It looks like the search token ""list"" is heavily skewed towards ""list"" tokens in the code (but are not syntactically lists)." +Go,converting uint8 array to image,https://github.com/Microsoft/go-winio/blob/3fe4fa31662f6ede2353d913e93907b8e096e0b6/pkg/etw/fieldopt.go#L222-L230,0, +Go,positions of substrings in string,https://github.com/assertgo/assert/blob/a3e1a2d6fd7ef7614e7f3cacb8a6c341ca978024/string.go#L44-L47,1, +Go,initializing array,https://github.com/contiv/netplugin/blob/965773066d2b8ebed3514979949061a03d46fd20/netplugin/plugin/netplugin.go#L286-L305,0, +Go,sort string list,https://github.com/pivotal-cf/go-pivnet/blob/e68f8203b478c0c65b90f196471522949c002710/release_dependencies.go#L28-L53,0, +Go,aes encryption,https://github.com/hyperledger/fabric/blob/49f496925df1e66198d7ec794849536c9f8b104b/bccsp/sw/aes.go#L78-L98,3, +Go,buffered file reader read text,https://github.com/yuin/gopher-lua/blob/8bfc7677f583b35a5663a9dd934c08f3b5774bbb/iolib.go#L131-L140,1, +Go,unzipping large files,https://github.com/rakyll/statik/blob/3bac566d30cdbeddef402a80f3d6305860e59f12/fs/fs.go#L55-L96,2, +Go,socket recv timeout,https://github.com/vaughan0/go-zmq/blob/425c333a2ab9e2615ff4ff7deced6e37730b544e/sockopts.go#L112-L114,1, +Go,copying a file to a path,https://github.com/hashicorp/vault/blob/7e96d5c2b53ee9e22439f3bc0cb366d7e92f949b/sdk/physical/file/file.go#L350-L355,1, +Go,how to read the contents of a .gz compressed file?,https://github.com/franela/goreq/blob/bcd34c9993f899273c74baaa95e15386cd97b6e7/goreq.go#L130-L138,1, +Go,convert string to number,https://github.com/shutterstock/go-stockutil/blob/39a961cfa60878cca33570f9431c09db1600e4db/stringutil/stringutil.go#L203-L209,1, +Go,deserialize json,https://github.com/control-center/serviced/blob/7028f598e6a224b4d421e09cb9b582ad7d000304/datastore/datastore.go#L170-L177,1, +Go,extract latitude and longitude from given input,https://github.com/olivere/elastic/blob/0534a7b1bf47b1ccf57e905491a641709f8a623d/geo_point.go#L34-L36,0, +Go,get current ip address,https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L14465-L14471,0,I think the query is not very detailed and hence I couldn't correlate it to the code output +Go,get current process id,https://github.com/containerd/containerd/blob/a17c8095716415cebb1157a27db5fccace56b0fc/runtime/v2/runhcs/service.go#L178-L183,1, +Go,fuzzy match ranking,https://github.com/coreos/go-omaha/blob/e409d983eb60842452f0fb6245137458ca45201a/omaha/client/fuzzytime.go#L31-L41,1, +Go,parse query string in url,https://github.com/signalfx/gateway/blob/60f8886d9dbf529d974d8f3c0b9e932d8a7570a0/config/config.go#L179-L187,1, +Go,how to get html of website,https://github.com/google/go-genproto/blob/54afdca5d873f7b529e2ce3def1a99df16feda90/googleapis/ads/googleads/v1/common/policy.pb.go#L587-L592,0, +Go,get inner html,https://github.com/yosssi/ace/blob/2b21b56204aee785bf8d500c3f9dcbe3ed7d4515/helper_method_content.go#L16-L39,1, +Go,matrix multiply,https://github.com/wcharczuk/go-chart/blob/9852fce5a172598e72d16f4306f0f17a53d94eb4/matrix/matrix.go#L371-L387,3, +Go,print model summary,https://github.com/karlseguin/expect/blob/ecc6aa3406d03d381160d52b8a76268abdb14321/runner.go#L275-L285,0, +Go,html entities replace,https://github.com/advancedlogic/GoOse/blob/6cd46faf50eb2105cd5de7328ee8eb62557895c9/cleaner.go#L418-L441,0, +Go,how to determine a string is a valid word,https://github.com/thriftrw/thriftrw-go/blob/a9a6ad793beab07cc3385954d2e8af8abfaa83e2/gen/string.go#L84-L93,0, +Go,how to reverse a string,https://github.com/iikira/baidu-tools/blob/79c93d8033cdda61dd2278f0e4a75c5ea8388f3c/tieba/tiebautil/client_signature.go#L67-L73,3, +Go,html encode string,https://github.com/otiai10/marmoset/blob/2adcf18928cbc73d640249eed0ac8e49ce4bdcb8/render.go#L27-L40,1, +Go,hash set for counting distinct elements,https://github.com/ethereum/go-ethereum/blob/b6c0234e0b5c9d459d1ed784c910f6348890d56b/consensus/ethash/algorithm.go#L234-L263,0, +Go,group by count,https://github.com/cuigh/auxo/blob/35f08384a278c4f5c01bf96896e5964611e4a05d/db/gsd/select.go#L306-L309,1, +Go,initializing array,https://github.com/robertkrimen/otto/blob/15f95af6e78dcd2030d8195a138bd88d4f403546/builtin_array.go#L114-L126,0, +Go,readonly array,https://github.com/kubernetes/kubernetes/blob/6a8a3682919652ae668c389ed2f60efb770eed03/pkg/volume/azure_dd/azure_mounter.go#L46-L59,0, +Go,reading element from html - ,https://github.com/mmcdole/gofeed/blob/0e68beaf6fdf215bd1fe42a09f6de292c7032359/internal/shared/xmlbase.go#L212-L258,2, +Go,binomial distribution,https://github.com/leesper/go_rng/blob/5344a9259b21627d94279721ab1f27eb029194e7/binomial.go#L51-L65,2, +Go,parse command line argument,https://github.com/rsc/rsc/blob/fc62025902295658a9c7e89418e095fd598b2682/google/gmail/gmail.go#L275-L417,1, +Go,convert decimal to hex,https://github.com/webx-top/com/blob/01419a9b4188b43cba46b7ae02136d01e4fccf9c/convert.go#L189-L205,3, +Go,convert int to string,https://github.com/kubicorn/kubicorn/blob/c4a4b80994b4333709c0f8164faabd801866b986/cloud/amazon/public/resources/securitygroup.go#L375-L381,3,"This is a great match, but I wouldn't let this pass a PR review. This is an unnecessary abstraction, but it's a great match nevertheless. " +Go,randomly extract x items from a list,https://github.com/antongulenko/golib/blob/5860401d795186159946857d3d6057628e049840/sort.go#L36-L42,1, +Go,html entities replace,https://github.com/gogs/gogs/blob/4f9c5b60c56606e709c4da2d1587aa7096ae24da/pkg/template/template.go#L130-L132,0, +Go,get current process id,https://github.com/containerd/containerd/blob/a17c8095716415cebb1157a27db5fccace56b0fc/windows/task.go#L404-L410,1, +Go,how to get html of website,https://github.com/kataras/iris/blob/6aafc0b9d5e97d0c52e325d8c4b4d23d61eb3f9d/_examples/tutorial/caddy/server1/main.go#L41-L49,0, +Go,how to randomly pick a number,https://github.com/minio/minio/blob/4b858b562a0887e10bfd0414dc87e68f1af31c3a/cmd/healthcheck-handler.go#L102-L108,0, +Go,format date,https://github.com/gobuffalo/buffalo/blob/7f360181f4ccd79dcc9dcea2c904a4801f194f04/mail/internal/mail/message.go#L182-L184,2, +Go,convert decimal to hex,https://github.com/chrislusf/gleam/blob/a7aa467b545f5e5e452aaf818299a5f6e6b23760/sql/parser/yy_parser.go#L156-L164,1, +Go,get inner html,https://github.com/zorkian/go-datadog-api/blob/fcf4c3b6edfd28f3bf01965725f290489b10d1ec/datadog-accessors.go#L18618-L18623,1, +Go,deducting the median from each column,https://github.com/lileio/lile/blob/becf404ea65c4dd7cbe6e8c6dd2a313d07359b4e/protoc-gen-lile-server/main.go#L159-L166,0, +Go,map to json,https://github.com/cloudfoundry/cli/blob/5010c000047f246b870475e2c299556078cdad30/cf/util/json/json_parser.go#L29-L54,2, +Go,fuzzy match ranking,https://github.com/coreos/go-omaha/blob/e409d983eb60842452f0fb6245137458ca45201a/omaha/client/fuzzytime.go#L45-L47,0, +Go,hash set for counting distinct elements,https://github.com/go-xorm/xorm/blob/ce804aee6c5118ed9a6bc04754aea4ea65232fe5/session_cols.go#L177-L180,0, +Go,how to reverse a string,https://github.com/logrusorgru/aurora/blob/cea283e61946ad8227cc02a24201407a2c9e5182/wrap.go#L138-L143,1, +Go,postgresql connection,https://github.com/hyperledger/burrow/blob/59993f5aad71a8e16ab6ed4e57e138e2398eae4e/vent/sqldb/adapters/postgres_adapter.go#L41-L84,1, +Go,hash set for counting distinct elements,https://github.com/hyperledger/fabric/blob/49f496925df1e66198d7ec794849536c9f8b104b/gossip/privdata/reconcile.go#L289-L311,0, +Go,convert json to csv,https://github.com/ForceCLI/force/blob/dcf4021894573897981e05f26e1282dd209519e2/command/query.go#L40-L51,0, +Go,how to empty array,https://github.com/robertkrimen/otto/blob/15f95af6e78dcd2030d8195a138bd88d4f403546/type_regexp.go#L121-L146,0, +Go,get current observable value,https://github.com/lxc/lxd/blob/7a41d14e4c1a6bc25918aca91004d594774dcdd3/lxd/networks_utils.go#L1016-L1025,0, +Go,set file attrib hidden,https://github.com/keybase/client/blob/b352622cd8cc94798cfacbcb56ada203c18e519e/go/protocol/keybase1/home.go#L54-L73,0, +Go,positions of substrings in string,https://github.com/dop251/goja/blob/8d6ee3d1661108ff8433016620abb64dfa6d9937/string_ascii.go#L256-L258,1, +Go,create cookie,https://github.com/sclevine/agouti/blob/96599c91888f1b1cf2dccc7f1776ba7f511909e5/api/session.go#L139-L148,2, +Go,get the description of a http status code,https://github.com/TheThingsNetwork/go-utils/blob/aa2a11bd59104d2a8609328c2b2b55da61826470/errors/http.go#L53-L60,0,The correct function should be https://golang.org/pkg/net/http/#StatusText. This is therefore irrelevant. +Go,priority queue,https://github.com/beeker1121/goque/blob/4044bc29b28064db4f08e947c4972d5ca3e0f3c8/priority_queue.go#L84-L118,2, +Go,underline text in label widget,https://github.com/gotk3/gotk3/blob/c89a2934a82722863fb6782d9245c4e7c3cf25f1/gtk/label.go#L45-L48,0, +Go,linear regression,https://github.com/montanaflynn/stats/blob/38304a2645bb6bd10153d518e10a9b69190ff730/regression.go#L14-L47,3, +Go,extract latitude and longitude from given input,https://github.com/mattbaird/elastigo/blob/2fe47fd29e4b70353f852ede77a196830d2924ec/lib/searchfilter.go#L324-L328,1, +Go,fuzzy match ranking,https://github.com/coreos/go-omaha/blob/e409d983eb60842452f0fb6245137458ca45201a/omaha/client/fuzzytime.go#L51-L53,0, +Go,output to html file,https://github.com/darkhelmet/tinderizer/blob/f46418cc7edd6695140867d40446645c428cbda2/job/job.go#L106-L110,1, +Go,how to check if a checkbox is checked,https://github.com/rivo/tview/blob/90b4da1bd64ceee13d2e7d782b315b819190f7bf/checkbox.go#L58-L61,0, +Go,how to empty array,https://github.com/kubernetes-retired/contrib/blob/89f6948e24578fed2a90a87871b2263729f90ac3/scale-demo/Godeps/_workspace/src/k8s.io/kubernetes/pkg/api/deep_copy_generated.go#L2724-L2726,0,To empty an array you set it to nil. Some content for this: https://yourbasic.org/golang/clear-slice/ +Go,pretty print json,https://github.com/chzyer/logex/blob/445be9e134b204a8c920a30fedad02b2f2ab1efd/logex.go#L109-L117,2, +Go,encode url,https://github.com/openshift/origin/blob/00a7323a2f454c2ca26ab58e1f487dc81e30e19c/pkg/oauthserver/oauth/external/handler.go#L339-L341,2, +Go,convert int to bool,https://github.com/cloudflare/golibs/blob/4efefffc6d5c2168e1c209e44dad549e0674e7a3/bytepool/bytepool.go#L128-L135,0, +Go,randomly extract x items from a list,https://github.com/urandom/readeef/blob/63b79a7bde3f3da1f4b6b3224235c346a34906f0/content/thumbnail/extract.go#L40-L70,0, +Go,how to randomly pick a number,https://github.com/grokify/gotilla/blob/a89420864b4d1cc22c57bcc025cc960a91372b37/strconv/phonenumber/fictitiousgenerator.go#L49-L52,0, +Go,html encode string,https://github.com/json-iterator/go/blob/0ff49de124c6f76f8494e194af75bde0f1a49a29/config.go#L261-L264,2, +Go,httpclient post json,https://github.com/nlopes/slack/blob/65ea2b979a7ffe628676bdb6b924e2498d66c1bf/misc.go#L210-L219,2, +Go,sorting multiple arrays based on another arrays sorted order,https://github.com/mc2soft/pq-types/blob/ada769d4011a027a5385b9c4e47976fe327350a6/int32_array.go#L77-L92,1, +Go,nelder mead optimize,https://github.com/Workiva/go-datastructures/blob/f07cbe3f82ca2fd6e5ab94afce65fe43319f675f/numerics/optimization/nelder_mead.go#L555-L559,1, +Go,get all parents of xml node,https://github.com/thecodeteam/gorackhd/blob/66bd88ab29593b880ba59b35db2c17a4b4bab1f1/client/nodes/nodes_client.go#L147-L168,0, +Go,get all parents of xml node,https://github.com/vmware/govmomi/blob/fc3f0e9d2275df0e497a80917807a7c72d3c35bc/vim25/xml/typeinfo.go#L115-L228,0, +Go,filter array,https://github.com/koron/go-dproxy/blob/fd990aff3734271e213a87f118319cf104bb2dd6/set.go#L90-L101,1, +Go,convert int to string,https://github.com/go-openapi/swag/blob/b3e2804c8535ee0d1b89320afd98474d5b8e9e3b/convert.go#L91-L97,1, +Go,how to extract zip file recursively,https://github.com/jdxcode/gode/blob/46ec1874bc6dce6e90fb1583a6d5110f7bc40ae1/zip.go#L10-L28,2, +Go,k means clustering,https://github.com/chasex/redis-go-cluster/blob/222d81891f1d3fa7cf8b5655020352c3e5b4ec0f/cluster.go#L182-L222,0, +Go,convert a date string into yyyymmdd,https://github.com/jpfielding/gorets/blob/1fe0f2d805aec564b6a18e24909e0f544a71e0a3/pkg/util/metadata_conversion.go#L17-L31,1, +Go,custom http error response,https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/cloudfront/api.go#L6650-L6653,1, +Go,binomial distribution,https://github.com/openshift/origin/blob/00a7323a2f454c2ca26ab58e1f487dc81e30e19c/pkg/security/mcs/label.go#L202-L204,0,The function is local to the function and not a free identifier (an identifier that was defined in the function block scope). Therefore this is not very useful. +Go,convert html to pdf,https://github.com/keybase/client/blob/b352622cd8cc94798cfacbcb56ada203c18e519e/go/kbfs/libhttpserver/content_type_utils.go#L54-L79,0, +Go,group by count,https://github.com/pilosa/pilosa/blob/67d53f6b48a43f7fe090f48e35518ca8d024747c/encoding/proto/proto.go#L1136-L1145,1, +Go,confusion matrix,https://github.com/sjwhitworth/golearn/blob/82e59c89f5020c45292c68472908f2150a87422e/examples/trees/trees.go#L15-L148,1,"There is a function call, called `evaluation.GetConfusionMatrix` which I think might be relevant, but otherwise the query is very verbose and not detailed, hence I think this is a weak match. But I would be able to pick up some useful information out of this. " +Go,encode url,https://github.com/segmentio/objconv/blob/7a1d7b8e6f3551b30751e6b2ea6bae500883870e/adapters/net/url/encode.go#L10-L13,2, +Go,filter array,https://github.com/asaskevich/govalidator/blob/f61b66f89f4a311bef65f13e575bcf1a2ffadda6/arrays.go#L39-L47,2, +Go,html encode string,https://github.com/minio/mc/blob/f0f156aca82e451c80b05d5be8eb01a04fee29dd/pkg/colorjson/encode.go#L615-L638,1, +Go,get all parents of xml node,https://github.com/ChrisTrenkamp/goxpath/blob/c385f95c6022e7756e91beac5f5510872f7dcb7d/internal/execxp/findutil/findUtil.go#L48-L55,2, +Go,encode url,https://github.com/polds/imgbase64/blob/cb7bf37298b7c2d13bd2451f51674d6bbdb46e44/images.go#L78-L84,2, +Go,buffered file reader read text,https://github.com/tideland/golib/blob/b56169c6bd620eeb7cfc4b9b4027fc10d2934c84/sml/reader.go#L230-L260,1, +Go,custom http error response,https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/cloudfront/api.go#L6720-L6723,0, +Go,convert json to csv,https://github.com/ghetzel/diecast/blob/3cf4315555ad6d1e50e51ddf7778eedb91da56ca/util.go#L122-L156,1, +Go,parse command line argument,https://github.com/iron-io/functions/blob/d59d7d1c40b2ff26b1afee31bde64df444e96525/fn/app/app.go#L89-L101,2, +Go,convert a date string into yyyymmdd,https://github.com/control-center/serviced/blob/7028f598e6a224b4d421e09cb9b582ad7d000304/cli/api/logs.go#L511-L616,0, +Go,httpclient post json,https://github.com/layer-x/layerx-commons/blob/a9e7080c940208a2a089fd854ecf4831b3b3f78c/lxhttpclient/httpclient.go#L268-L272,1, +Go,get executable path,https://github.com/miketheprogrammer/go-thrust/blob/6aa55589fcc4ec586d442e4f7ed315afe3dfcda9/lib/spawn/helper_windows.go#L51-L54,1, +Go,get current ip address,https://github.com/mesos/mesos-go/blob/ee67238bbd943c751ec0a5dffb09af2b0182d361/api/v0/mesosproto/mesos.pb.go#L4142-L4147,1, +Go,how to get current date,https://github.com/pivotal-pez/pezauth/blob/7c01f70760da2124e6fac36b569d9130552afea8/integrations/inventory.go#L146-L156,1,The current date can be retrieved via `time.Now()`. Hence a weak match +Go,convert a utc time to epoch,https://github.com/Microsoft/go-winio/blob/3fe4fa31662f6ede2353d913e93907b8e096e0b6/wim/wim.go#L199-L207,0, +Go,get current observable value,https://github.com/dmiller/go-seq/blob/7e6f351b75cf7a8534be0b93dd1929ea5f08d86a/stm/ref.go#L99-L106,1, +Go,randomly extract x items from a list,https://github.com/fabric8-services/fabric8-wit/blob/54759c80c42ff2cf29b352e0f6c9330ce4ad7fce/kubernetes/deployments_kubeclient.go#L2066-L2077,0, +Go,replace in file,https://github.com/gohugoio/hugo/blob/f94a388ad319eaa6b2d9b32658c1257e9ca8ce4c/releaser/releaser.go#L304-L328,3, +Go,get the description of a http status code,https://github.com/moby/moby/blob/e516af6e5636023e85335ed8d9d0d824349dd6ff/errdefs/http_helpers.go#L14-L69,3, +Go,filter array,https://github.com/rsc/pdf/blob/c47d69cf462f804ff58ca63c61a8fb2aed76587e/read.go#L793-L819,1, +Go,linear regression,https://github.com/markcheno/go-talib/blob/cd53a9264d70bedcff891f59bf153275f524c100/talib.go#L5108-L5144,3, +Go,set file attrib hidden,https://github.com/hajimehoshi/ebiten/blob/3ce8babd9bd0470bd5683158cc320277cc04d5ed/internal/graphicsdriver/opengl/context_js.go#L248-L252,0, +Go,initializing array,https://github.com/ardielle/ardielle-go/blob/c4ab435c6f1ae2ece59bdd174b5b27c4f9828cff/rdl/basictypes_model.go#L284-L292,0, +Go,get all parents of xml node,https://github.com/moovweb/gokogiri/blob/a1a828153468a7518b184e698f6265904108d957/xml/node.go#L379-L384,2, +Java,fuzzy match ranking,https://github.com/spotbugs/spotbugs/blob/f6365c6eea6515035bded38efa4a7c8b46ccf28c/spotbugs/src/main/java/edu/umd/cs/findbugs/ba/vna/ValueNumberFrame.java#L507-L513,0, +Java,create cookie,https://github.com/apache/spark/blob/25ee0474f47d9c30d6f553a7892d9549f91071cf/sql/hive-thriftserver/src/main/java/org/apache/hive/service/cli/thrift/ThriftHttpServlet.java#L281-L296,2, +Java,parse query string in url,https://github.com/tanhaichao/leopard-lang/blob/8ab110f6ca4ea84484817a3d752253ac69ea268b/leopard-httpnb/src/main/java/io/leopard/httpnb/HttpHeaderDeleteImpl.java#L27-L47,0, +Java,convert int to string,https://github.com/hankcs/HanLP/blob/a538d0722ab2e4980a9dcd9ea40324fc3ddba7ce/src/main/java/com/hankcs/hanlp/dictionary/TransformMatrixDictionary.java#L43-L46,0, +Java,deducting the median from each column,https://github.com/datacleaner/AnalyzerBeans/blob/f82dae080d80d2a647b706a5fb22b3ea250613b3/core/src/main/java/org/eobjects/analyzer/job/runner/ConsumeRowHandler.java#L149-L220,0, +Java,read properties file,https://github.com/hypfvieh/java-utils/blob/407c32d6b485596d4d2b644f5f7fc7a02d0169c6/src/main/java/com/github/hypfvieh/util/FileIoUtil.java#L78-L89,2, +Java,get executable path,https://github.com/mike10004/common-helper/blob/744f82d9b0768a9ad9c63a57a37ab2c93bf408f4/native-helper/src/main/java/com/github/mike10004/nativehelper/subprocess/Subprocess.java#L505-L509,1, +Java,set file attrib hidden,https://github.com/robolectric/robolectric/blob/4fa79a2c72f8abbf742ab920419653c207b41d62/shadows/framework/src/main/java/org/robolectric/shadows/ShadowMatrix.java#L130-L134,0, +Java,how to randomly pick a number,https://github.com/apache/flink/blob/b62db93bf63cb3bb34dd03d611a779d9e3fc61ac/flink-java/src/main/java/org/apache/flink/api/java/io/LocalCollectionOutputFormat.java#L58-L64,2, +Java,set file attrib hidden,https://github.com/eclipse/xtext-core/blob/bac941cb75cb24706519845ec174cfef874d7557/org.eclipse.xtext/packrat/org/eclipse/xtext/parser/packrat/AbstractPackratParser.java#L423-L429,0, +Java,convert json to csv,https://github.com/GCRC/nunaliit/blob/0b4abfc64eef2eb8b94f852ce697de2e851d8e67/nunaliit2-couch-export/src/main/java/ca/carleton/gcrc/couch/export/records/ExportRecordsCSV.java#L118-L150,0, +Java,filter array,https://github.com/tony19/logback-android/blob/028489c11ccfc1237a53923db06f22a90b41809c/logback-android/src/main/java/ch/qos/logback/core/spi/FilterAttachableImpl.java#L53-L66,0, +Java,get the description of a http status code,https://github.com/drewnoakes/metadata-extractor/blob/a958e0b61b50e590731b3be1dca8df8e21ebd43c/Source/com/drew/metadata/exif/GpsDescriptor.java#L278-L292,0, +Java,how to determine a string is a valid word,https://github.com/PeterisP/LVTagger/blob/b3d44bab9ec07ace0d13612c448a6b7298c1f681/src/main/java/edu/stanford/nlp/ie/demo/NERDemo.java#L36-L84,0, +Java,all permutations of a list,https://github.com/biojava/biojava/blob/a1c71a8e3d40cc32104b1d387a3d3b560b43356e/biojava-structure/src/main/java/org/biojava/nbio/structure/symmetry/core/PermutationGroup.java#L61-L83,1, +Java,randomly extract x items from a list,https://github.com/ysc/HtmlExtractor/blob/5378bc5f94138562c55506cf81de1ffe72ab701e/html-extractor/src/main/java/org/apdplat/extractor/html/model/ExtractResult.java#L129-L136,0, +Java,convert json to csv,https://github.com/Omertron/api-themoviedb/blob/bf132d7c7271734e13b58ba3bc92bba46f220118/src/main/java/com/omertron/themoviedbapi/tools/PostTools.java#L68-L74,0, +Java,string to date,https://github.com/E7du/jfinal-ext3/blob/8ffcbd150fd50c72852bb778bd427b5eb19254dc/src/main/java/com/jfinal/ext/kit/DateTimeKit.java#L384-L391,3, +Java,get name of enumerated value,https://github.com/validator/validator/blob/c7b7f85b3a364df7d9944753fb5b2cd0ce642889/src/nu/validator/gnu/xml/aelfred2/XmlParser.java#L1781-L1807,0, +Java,print model summary,https://github.com/jpmml/jpmml-model/blob/b2b00ec3f15ca9a3cce09553932837340688b1d7/pmml-model-example/src/main/java/org/jpmml/model/CopyExample.java#L66-L78,1, +Java,how to make the checkbox checked,https://github.com/paypal/SeLion/blob/694d12d0df76db48d0360b16192770c6a4fbdfd2/client/src/main/java/com/paypal/selion/platform/html/Table.java#L324-L328,1, +Java,initializing array,https://github.com/ganfra/MaterialSpinner/blob/524c399244c67137e97347f89e60950b61db3b2b/sample/src/main/java/fr/ganfra/materialspinner/sample/MainActivity.java#L82-L86,0, +Java,convert int to string,https://github.com/colin-lee/mybatis-spring-support/blob/de412e98d00e9a012c0619778fa1a61832863b82/src/main/java/com/github/mybatis/util/UnicodeFormatter.java#L137-L143,0, +Java,unique elements,https://github.com/Eernie/JMoribus/blob/229a23ff7b9007e3056d3753ca6213ff8307930f/core/src/main/java/nl/eernie/jmoribus/monitoring/JunitReportRunner.java#L158-L166,0, +Java,copy to clipboard,https://github.com/spotbugs/spotbugs/blob/f6365c6eea6515035bded38efa4a7c8b46ccf28c/eclipsePlugin/src/de/tobject/findbugs/wizards/ExportWizardPage.java#L255-L261,2, +Java,sorting multiple arrays based on another arrays sorted order,https://github.com/haifengl/smile/blob/e27e43e90fbaacce3f99d30120cf9dd6a764c33d/math/src/main/java/smile/sort/QuickSort.java#L886-L893,1,calls sort which does what we want. +Java,readonly array,https://github.com/EvidentSolutions/dalesbred/blob/713f5b6e152d97e1672ca68b9ff9c7c6c288ceb1/dalesbred/src/main/java/org/dalesbred/internal/instantiation/SqlArrayConversion.java#L60-L97,0, +Java,format date,https://github.com/joniles/mpxj/blob/143ea0e195da59cd108f13b3b06328e9542337e8/src/main/java/net/sf/mpxj/mpx/MPXWriter.java#L1088-L1091,3, +Java,normal distribution,https://github.com/deeplearning4j/deeplearning4j/blob/effce52f2afd7eeb53c5bcca699fcd90bd06822f/deeplearning4j/deeplearning4j-nn/src/main/java/org/deeplearning4j/nn/conf/distribution/Distributions.java#L28-L64,3, +Java,how to get current date,https://github.com/yanzhenjie/Album/blob/b17506440d32909d42aba41f6a388041a25c8363/album/src/main/java/com/yanzhenjie/album/util/AlbumUtils.java#L266-L271,3, +Java,readonly array,https://github.com/MariaDB/mariadb-connector-j/blob/d148c7cd347c4680617be65d9e511b289d38a30b/src/main/java/org/mariadb/jdbc/internal/failover/impl/MastersFailoverListener.java#L247-L260,0, +Java,initializing array,https://github.com/bushidowallet/bushido-java-service/blob/e1a0157527e57459b509718044d2df44084876a2/bushido-wallet-service/src/main/java/com/bitcoin/blockchain/api/service/v2wallet/V2Wallet.java#L82-L91,0, +Java,string to date,https://github.com/looly/hutool/blob/bbd74eda4c7e8a81fe7a991fa6c2276eec062e6a/hutool-core/src/main/java/cn/hutool/core/date/DateTime.java#L801-L808,0, +Java,map to json,https://github.com/cloudant/sync-android/blob/5f1416ed1bd9ab05d7a4b8736480c8ae68bd7383/cloudant-sync-datastore-core/src/main/java/com/cloudant/sync/internal/util/JSONUtils.java#L166-L176,0, +Java,sending binary data over a serial connection,https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.wsoc/src/com/ibm/ws/wsoc/external/RemoteEndpointBasicExt.java#L76-L86,1, +Java,parse command line argument,https://github.com/baratine/baratine/blob/db34b45c03c5a5e930d8142acc72319125569fcf/framework/src/main/java/com/caucho/v5/cli/spi/CommandLineParser.java#L160-L195,3,"bad code but does the ""right"" thing" +Java,deserialize json,https://github.com/chanjarster/weixin-java-tools/blob/2a0b1c30c0f60c2de466cb8933c945bc0d391edf/weixin-java-cp/src/main/java/me/chanjar/weixin/cp/util/json/WxCpTagGsonAdapter.java#L29-L33,0, +Java,get inner html,https://github.com/jMetal/jMetal/blob/bc981e6aede275d26c5216c9a01227d9675b0cf7/jmetal-problem/src/main/java/org/uma/jmetal/problem/multiobjective/cec2015OptBigDataCompetition/BigOpt2015.java#L273-L295,0, +Java,sorting multiple arrays based on another arrays sorted order,https://github.com/lessthanoptimal/ejml/blob/1444680cc487af5e866730e62f48f5f9636850d9/main/ejml-core/src/org/ejml/data/DMatrixSparseCSC.java#L391-L397,0, +Java,pretty print json,https://github.com/JM-Lab/utils-java9/blob/ee80235b2760396a616cf7563cbdc98d4affe8e1/src/main/java/kr/jm/utils/helper/JMJson.java#L437-L445,0, +Java,encrypt aes ctr mode,https://github.com/blackdoor/blackdoor/blob/060c7a71dfafb85e10e8717736e6d3160262e96b/src/main/java/black/door/crypto/Crypto.java#L186-L193,1, +Java,convert a utc time to epoch,https://github.com/goldmansachs/reladomo/blob/e9a069452eece7a6ef9551caf81a69d3d9a3d990/reladomo/src/main/java/com/gs/fw/common/mithra/util/MithraTimestamp.java#L124-L137,0, +Java,map to json,https://github.com/alibaba/jstorm/blob/5d6cde22dbca7df3d6e6830bf94f98a6639ab559/jstorm-utility/topology-monitor/src/main/java/com/dianping/cosmos/util/JSONUtil.java#L100-L108,0, +Java,how to get database table name,https://github.com/jbundle/jbundle/blob/4037fcfa85f60c7d0096c453c1a3cd573c2b0abc/app/program/db/src/main/java/org/jbundle/app/program/db/ClassFields.java#L58-L61,0, +Java,extracting data from a text file,https://github.com/stratosphere/stratosphere/blob/c543a08f9676c5b2b0a7088123bd6e795a8ae0c8/stratosphere-examples/stratosphere-java-examples/src/main/java/eu/stratosphere/example/java/wordcount/WordCount.java#L135-L143,1, +Java,how to get html of website,https://github.com/neoremind/navi/blob/d37e4b46ef07d124be2740ad3d85d87e939acc84/navi-mgr-console/src/main/java/com/baidu/beidou/navimgr/page/controller/PageController.java#L67-L81,0, +Java,priority queue,https://github.com/mangstadt/biweekly/blob/2e21350f85c13dfff52fdef98fdbebe2976fcf61/src/main/java/biweekly/component/VEvent.java#L486-L490,0, +Java,how to randomly pick a number,https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/util/RandomUtil.java#L363-L379,2, +Java,deserialize json,https://github.com/foundation-runtime/service-directory/blob/a7bdefe173dc99e75eff4a24e07e6407e62f2ed4/1.1/sd-core/src/main/java/com/cisco/oss/foundation/directory/utils/JsonSerializer.java#L57-L60,1,a reasonable pointer? +Java,get executable path,https://github.com/wcm-io/wcm-io-tooling/blob/1abcd01dd3ad4cc248f03b431f929573d84fa9b4/maven/plugins/nodejs-maven-plugin/src/main/java/io/wcm/maven/plugins/nodejs/mojo/NodeJsTask.java#L105-L108,0, +Java,encode url,https://github.com/EasyPost/easypost-java/blob/323b4cece5fa0f607e80a7e66cb1ce20c9d5b844/src/main/java/com/easypost/net/EasyPostResource.java#L144-L146,1, +Java,get current ip address,https://github.com/dasein-cloud/dasein-cloud-google/blob/f52ada0f8abbe69bc81a1cdf398e87ebb5647cd7/src/main/java/org/dasein/cloud/google/network/IPAddressSupport.java#L139-L171,1, +Java,group by count,https://github.com/3redronin/mu-server/blob/51598606a3082a121fbd785348ee9770b40308e6/src/main/java/io/muserver/rest/RequestMatcher.java#L251-L259,0, +Java,positions of substrings in string,https://github.com/CenturyLinkCloud/clc-java-sdk/blob/c026322f077dea71b1acf9f2d665253d79d9bf85/sdk/src/main/java/com/centurylink/cloud/sdk/server/services/dsl/domain/template/filters/TemplateFilter.java#L155-L163,0, +Java,normal distribution,https://github.com/chen0040/java-genetic-programming/blob/498fc8f4407ea9d45f2e0ac797a8948da337c74f/src/main/java/com/github/chen0040/gp/services/SimpleRandEngine.java#L22-L25,1, +Java,json to xml conversion,https://github.com/jmapper-framework/jmapper-core/blob/b48fd3527f35055b8b4a30f53a51136f183acc90/JMapper Framework/src/main/java/com/googlecode/jmapper/config/Error.java#L338-L340,0, +Java,copy to clipboard,https://github.com/kiswanij/jk-util/blob/8e0c85818423406f769444c76194a748e0a0fc0a/src/main/java/com/jk/util/JKStringUtil.java#L203-L207,2, +Java,underline text in label widget,https://github.com/jqm4gwt/jqm4gwt/blob/cf59958e9ba6d4b70f42507b2c77f10c2465085b/library/src/main/java/com/sksamuel/jqm4gwt/form/JQMForm.java#L180-L183,0, +Java,string to date,https://github.com/blademainer/common_utils/blob/ef6baf0367c16de95a28caab67a7d5842a6d13db/common_helper/src/main/java/com/xiongyingqi/util/DateHelper.java#L158-L161,0, +Java,how to read the contents of a .gz compressed file?,https://github.com/Unidata/thredds/blob/d2d68f9eee87f345625211324d71d5dc3e162ee1/clcommon/src/main/java/ucar/nc2/iosp/fysat/Fysatiosp.java#L189-L253,1, +Java,matrix multiply,https://github.com/EdwardRaff/JSAT/blob/0ff53b7b39684b2379cc1da522f5b3a954b15cfb/JSAT/src/jsat/linear/Matrix.java#L298-L303,1, +Java,sort string list,https://github.com/lucee/Lucee/blob/29b153fc4e126e5edb97da937f2ee2e231b87593/core/src/main/java/lucee/runtime/type/util/ListUtil.java#L1157-L1159,1, +Java,convert decimal to hex,https://github.com/arxanchain/java-common/blob/3ddfedfd948f5bab3fee0b74b85cdce4702ed84e/src/main/java/com/arxanfintech/common/util/ByteUtils.java#L127-L133,1, +Java,parse query string in url,https://github.com/boonproject/boon/blob/9bc6870dbe5dd58c45c18d8edb493e8efc089463/boon/src/main/java/org/boon/json/JsonSlurper.java#L209-L211,1, +Java,how to determine a string is a valid word,https://github.com/datumbox/datumbox-framework/blob/909dff0476e80834f05ecdde0624dd2390e9b0ca/datumbox-framework-core/src/main/java/com/datumbox/framework/core/common/text/analyzers/ReadabilityStatistics.java#L302-L314,0, +Java,json to xml conversion,https://github.com/jmapper-framework/jmapper-core/blob/b48fd3527f35055b8b4a30f53a51136f183acc90/JMapper Framework/src/main/java/com/googlecode/jmapper/xml/XML.java#L158-L181,1, +Java,sending binary data over a serial connection,https://github.com/line/armeria/blob/67d29e019fd35a35f89c45cc8f9119ff9b12b44d/core/src/main/java/com/linecorp/armeria/internal/AbstractHttp2ConnectionHandler.java#L102-L113,0, +Java,reading element from html - ,https://github.com/Coveros/selenified/blob/396cc1f010dd69eed33cc5061c41253de246a4cd/src/main/java/com/coveros/selenified/utilities/Reporter.java#L276-L307,0, +Java,all permutations of a list,https://github.com/cdk/cdk/blob/c3d0f16502bf08df50365fee392e11d7c9856657/tool/group/src/main/java/org/openscience/cdk/group/PermutationGroup.java#L308-L324,1, +Java,map to json,https://github.com/jwtk/jjwt/blob/86b6096946752cffcfbc9b0a5503f1ea195cc140/extensions/orgjson/src/main/java/io/jsonwebtoken/io/OrgJsonDeserializer.java#L60-L71,0,opposite +Java,get executable path,https://github.com/allure-framework/allure1/blob/9a816fa05d8b894a917b7ebb7fd1a4056dee4693/allure-commandline/src/main/java/ru/yandex/qatools/allure/command/ReportGenerate.java#L158-L161,1, +Java,copy to clipboard,https://github.com/lessthanoptimal/BoofCV/blob/f01c0243da0ec086285ee722183804d5923bc3ac/integration/boofcv-swing/src/main/java/boofcv/gui/ApplicationLauncherApp.java#L337-L371,3, +Java,sorting multiple arrays based on another arrays sorted order,https://github.com/QSFT/Doradus/blob/ad64d3c37922eefda68ec8869ef089c1ca604b70/doradus-server/src/main/java/com/dell/doradus/search/SearchResult.java#L91-L103,0, +Java,convert a date string into yyyymmdd,https://github.com/FaritorKang/unmz-common-util/blob/2912b8889b85ed910d536f85b24b6fa68035814a/src/main/java/net/unmz/java/util/date/DateUtils.java#L588-L605,1, +Java,string to date,https://github.com/blademainer/common_utils/blob/ef6baf0367c16de95a28caab67a7d5842a6d13db/common_helper/src/main/java/com/xiongyingqi/util/DateHelper.java#L169-L172,0, +Java,parse command line argument,https://github.com/QSFT/Doradus/blob/ad64d3c37922eefda68ec8869ef089c1ca604b70/doradus-server/src/main/java/com/dell/doradus/core/ServerParams.java#L551-L575,3, +Java,get inner html,https://github.com/ButterFaces/ButterFaces/blob/e8c2bb340c89dcdbac409fcfc7a2a0e07f2462fc/showcase/src/main/java/org/butterfaces/component/showcase/PrettyPrintShowcase.java#L99-L114,0, +Java,scatter plot,https://github.com/ujmp/universal-java-matrix-package/blob/b7e1d293adeadaf35d208ffe8884028d6c06b63b/ujmp-core/src/main/java/org/ujmp/core/util/GnuPlot.java#L191-L194,1, +Java,replace in file,https://github.com/streamsets/datacollector/blob/ea63245ea14d59d5229248387f0628f46131eae5/container/src/main/java/com/streamsets/datacollector/cluster/EmrClusterProvider.java#L221-L232,1, +Java,group by count,https://github.com/zutnop/telekom-workflow-engine/blob/f471f1f94013b3e2d56b4c9380e86e3a92c2ee29/telekom-workflow-engine/src/main/java/ee/telekom/workflow/facade/workflowinstance/WorkflowInstanceStateDao.java#L119-L130,0, +Java,get name of enumerated value,https://github.com/jhunters/jprotobuf/blob/55832c9b4792afb128e5b35139d8a3891561d8a3/src/main/java/com/baidu/bjf/remoting/protobuf/code/CodedConstant.java#L632-L647,3, +Java,sort string list,https://github.com/boonproject/boon/blob/9bc6870dbe5dd58c45c18d8edb493e8efc089463/boon/src/main/java/org/boon/sort/Sorting.java#L56-L58,1, +Java,regex case insensitive,https://github.com/bingoohuang/westcache/blob/09842bf0b9299abe75551c4b51d326fcc96da42d/src/main/java/com/github/bingoohuang/westcache/utils/Keys.java#L31-L38,0, +Java,connect to sql,https://github.com/Teddy-Zhu/SilentGo/blob/27f58b0cafe56b2eb9fc6993efa9ca2b529661e1/orm/src/main/java/com/silentgo/orm/base/DaoInterceptor.java#L250-L262,0, +Java,convert int to string,https://github.com/biojava/biojava/blob/a1c71a8e3d40cc32104b1d387a3d3b560b43356e/biojava-structure/src/main/java/org/biojava/nbio/structure/rcsb/ReadUtils.java#L102-L110,0,exact opposite +Java,get the description of a http status code,https://github.com/gitblit/fathom/blob/f2f820eb16e9fea1e36ad4eda4ed51b35f056538/fathom-rest-swagger/src/main/java/fathom/rest/swagger/SwaggerBuilder.java#L597-L621,0, +Java,convert a date string into yyyymmdd,https://github.com/spring-projects/spring-social-twitter/blob/5df7b3556d7bdbe7db8d833f30141336b5552178/spring-social-twitter/src/main/java/org/springframework/social/twitter/api/impl/LocalTrendsDeserializer.java#L65-L71,0, +Java,how to get current date,https://github.com/att/AAF/blob/090562e956c0035db972aafba844dc6d3fc948ee/authz/authz-batch/src/main/java/com/att/authz/JobChange.java#L149-L155,2, +Java,encrypt aes ctr mode,https://github.com/cogroo/cogroo4/blob/b6228900c20c6b37eac10a03708a9669dd562f52/lang/pt_br/cogroo-addon/src/org/cogroo/addon/util/SecurityUtil.java#L72-L85,0, +Java,export to excel,https://github.com/Crab2died/Excel4J/blob/2ab0a3b8226a69ff868c3ead6e724f3a774f5f77/src/main/java/com/github/crab2died/ExcelUtils.java#L995-L1003,1, +Java,concatenate several file remove header lines,https://github.com/knightliao/disconf/blob/d413cbce9334fe38a5a24982ce4db3a6ed8e98ea/disconf-web/src/main/java/com/baidu/disconf/web/common/comparator/FileComparator.java#L38-L47,0, +Java,output to html file,https://github.com/mkolisnyk/cucumber-reports/blob/9c9a32f15f0bf1eb1d3d181a11bae9c5eec84a8e/cucumber-report-generator/src/main/java/com/github/mkolisnyk/cucumber/reporting/interfaces/CucumberResultsCommon.java#L80-L85,0, +Java,html entities replace,https://github.com/spotbugs/spotbugs/blob/f6365c6eea6515035bded38efa4a7c8b46ccf28c/eclipsePlugin/src/de/tobject/findbugs/view/BugInfoView.java#L625-L639,1, +Java,how to make the checkbox checked,https://github.com/astrapi69/jaulp-wicket/blob/85d74368d00abd9bb97659b5794e38c0f8a013d4/jaulp-wicket-components/src/main/java/de/alpharogroup/wicket/components/factory/ComponentFactory.java#L71-L76,1, +Java,set working directory,https://github.com/gocd/gocd/blob/59a8480e23d6c06de39127635108dff57603cb71/commandline/src/main/java/com/thoughtworks/go/util/command/CommandLine.java#L232-L240,1, +Java,string to date,https://github.com/CenturyLinkCloud/mdw/blob/91167fe65a25a5d7022cdcf8b0fae8506f5b87ce/mdw-common/src/com/centurylink/mdw/model/asset/CommitInfo.java#L85-L87,0, +Java,how to read .csv file in an efficient way?,https://github.com/exoplatform/jcr/blob/3e7f9ee1b5683640d73a4316fb4b0ad5eac5b8a2/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/dataflow/persistent/FilePersistedValueData.java#L119-L147,0, +Java,how to determine a string is a valid word,https://github.com/netty/netty/blob/ba06eafa1c1824bd154f1a380019e7ea2edf3c4c/microbench/src/main/java/io/netty/microbenchmark/common/IsValidIpV6Benchmark.java#L41-L53,3, +Java,how to get current date,https://github.com/Netflix/governator/blob/c1f4bb1518e759c61f2e9cad8a896ec6beba0294/governator-legacy/src/main/java/com/netflix/governator/configuration/DateWithDefaultProperty.java#L46-L59,0, +Java,get the description of a http status code,https://github.com/exoplatform/jcr/blob/3e7f9ee1b5683640d73a4316fb4b0ad5eac5b8a2/exo.jcr.component.webdav/src/main/java/org/exoplatform/services/jcr/webdav/WebDavConst.java#L540-L551,2, +Java,string similarity levenshtein,https://github.com/biojava/biojava/blob/a1c71a8e3d40cc32104b1d387a3d3b560b43356e/biojava-structure/src/main/java/org/biojava/nbio/structure/align/model/AFPChain.java#L326-L335,0, +Java,linear regression,https://github.com/EdwardRaff/JSAT/blob/0ff53b7b39684b2379cc1da522f5b3a954b15cfb/JSAT/src/jsat/classifiers/neuralnetwork/BackPropagationNet.java#L484-L494,0, +Java,fuzzy match ranking,https://github.com/interedition/collatex/blob/76dd1fcc36047bc66a87d31142e72e98b5347821/collatex-core/src/main/java/eu/interedition/collatex/dekker/TranspositionDetector.java#L155-L163,0, +Java,hash set for counting distinct elements,https://github.com/hazelcast/hazelcast/blob/8c4bc10515dbbfb41a33e0302c0caedf3cda1baf/hazelcast/src/main/java/com/hazelcast/mapreduce/aggregation/impl/DistinctValuesAggregation.java#L53-L66,2, +Java,copying a file to a path,https://github.com/damiencarol/jsr203-hadoop/blob/d36a4b0c6498fc5d25ce79bd8c5bb69c6ef70057/src/main/java/hdfs/jsr203/HadoopFileSystem.java#L691-L763,3, +Java,convert decimal to hex,https://github.com/cqyijifu/watcher/blob/9032ede2743de751d8ae4b77ade39726f016457d/watcher-http/src/main/java/com/yiji/framework/watcher/http/adaptor/web/util/IPRange.java#L156-L170,0, +Java,get current ip address,https://github.com/dasein-cloud/dasein-cloud-google/blob/f52ada0f8abbe69bc81a1cdf398e87ebb5647cd7/src/main/java/org/dasein/cloud/google/network/IPAddressSupport.java#L173-L192,0, +Java,regex case insensitive,https://github.com/jamesdbloom/mockserver/blob/8b84fdd877e57b4eb780c9f8c8b1d65bcb448025/mockserver-core/src/main/java/org/mockserver/model/KeysAndValues.java#L16-L24,0, +Java,heatmap from 3d coordinates,https://github.com/opensourceBIM/BIMserver/blob/116803c3047d1b32217366757cee1bb3880fda63/PluginBase/src/org/bimserver/utils/IfcUtils.java#L1094-L1104,0, +Java,pretty print json,https://github.com/sdl/odata/blob/eb747d73e9af0f4e59a25b82ed656e526a7e2189/odata_renderer/src/main/java/com/sdl/odata/renderer/batch/ODataBatchRequestRenderer.java#L271-L288,2, +Java,map to json,https://github.com/searchbox-io/Jest/blob/42f0a97acc45582baf5e8ecd7ccbbc5ac0c111fc/jest-common/src/main/java/io/searchbox/client/JestResult.java#L138-L141,2, +Java,get current process id,https://github.com/alibaba/otter/blob/c7b5f94a0dd162e01ddffaf3a63cade7d23fca55/shared/arbitrate/src/main/java/com/alibaba/otter/shared/arbitrate/impl/setl/monitor/TerminMonitor.java#L92-L98,0, +Java,linear regression,https://github.com/EdwardRaff/JSAT/blob/0ff53b7b39684b2379cc1da522f5b3a954b15cfb/JSAT/src/jsat/regression/NadarayaWatson.java#L31-L49,0, +Java,httpclient post json,https://github.com/srikalyc/Sql4D/blob/2c052fe60ead5a16277c798a3440de7d4f6f24f6/Sql4Ddriver/src/main/java/com/yahoo/sql4d/sql4ddriver/DruidNodeAccessor.java#L133-L143,1, +Java,get executable path,https://github.com/GerdHolz/TOVAL/blob/036922cdfd710fa53b18e5dbe1e07f226f731fde/src/de/invation/code/toval/os/OSUtils.java#L65-L71,0, +Java,group by count,https://github.com/SonarSource/sonarqube/blob/2fffa4c2f79ae3714844d7742796e82822b6a98a/server/sonar-db-dao/src/main/java/org/sonar/db/permission/GroupPermissionDao.java#L79-L89,0, +Java,postgresql connection,https://github.com/Stratio/bdt/blob/55324d19e7497764ad3dd7139923e13eb9841d75/src/main/java/com/stratio/qa/specs/CommonG.java#L2120-L2167,2, +Java,copying a file to a path,https://github.com/jbake-org/jbake/blob/beb9042a54bf0eb168821d524c88b9ea0bee88dc/jbake-core/src/main/java/org/jbake/app/Asset.java#L79-L91,3, +Java,underline text in label widget,https://github.com/czyzby/gdx-lml/blob/7623b322e6afe49ad4dd636c80c230150a1cfa4e/lml/src/main/java/com/github/czyzby/lml/parser/impl/tag/actor/LabelLmlTag.java#L33-L48,0, +Java,underline text in label widget,https://github.com/hal/core/blob/d6d03f0bb128dc0470f5dc75fdb1ea1014400602/gui/src/main/java/org/jboss/as/console/client/administration/accesscontrol/ui/ScopedRoleDialog.java#L126-L184,1, +Java,buffered file reader read text,https://github.com/apache/groovy/blob/71cf20addb611bb8d097a59e395fd20bc7f31772/src/main/java/org/codehaus/groovy/runtime/IOGroovyMethods.java#L841-L844,2, +Java,finding time elapsed using a timer,https://github.com/bladecoder/blade-ink/blob/930922099f7073f50f956479adaa3cbd47c70225/src/main/java/com/bladecoder/ink/runtime/Stopwatch.java#L103-L111,2, +Java,aes encryption,https://github.com/seedstack/seed/blob/d9cf33bfb2fffcdbb0976f4726e943acda90e828/core/src/main/java/org/seedstack/seed/core/internal/crypto/EncryptionServiceImpl.java#L57-L77,0, +Java,group by count,https://github.com/SonarSource/sonarqube/blob/2fffa4c2f79ae3714844d7742796e82822b6a98a/server/sonar-db-dao/src/main/java/org/sonar/db/user/GroupMembershipDao.java#L58-L71,0,close but wrong... +Java,custom http error response,https://github.com/netty/netty/blob/ba06eafa1c1824bd154f1a380019e7ea2edf3c4c/example/src/main/java/io/netty/example/http/file/HttpStaticFileServerHandler.java#L324-L330,0, +Java,get name of enumerated value,https://github.com/epam/JDI/blob/abc01be4b1c07bf545bbea1eee51c98051b05357/Java/JDI/jdi-commons/src/main/java/com/epam/commons/EnumUtils.java#L63-L65,1, +Java,buffered file reader read text,https://github.com/Samsung/GearVRf/blob/05034d465a7b0a494fabb9e9f2971ac19392f32d/GVRf/Framework/framework/src/main/java/org/gearvrf/utility/TextFile.java#L101-L124,2, +Java,how to reverse a string,https://github.com/defei/codelogger-utils/blob/d906f5d217b783c7ae3e53442cd6fb87b20ecc0a/src/main/java/org/codelogger/utils/StringUtils.java#L463-L466,3, +Java,memoize to disk - persistent memoization,https://github.com/aol/cyclops/blob/59a9fde30190a4d1faeb9f6d9851d209d82b81dd/cyclops-futurestream/src/main/java/com/oath/cyclops/internal/react/async/future/PipelineBuilder.java#L33-L40,1, +Java,convert decimal to hex,https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/third_party/java/src/com/google_voltpatches/common/primitives/Doubles.java#L576-L584,0, +Java,html encode string,https://github.com/shekhargulati/strman-java/blob/d0c2a10a6273fd6082f084e95156653ca55ce1be/src/main/java/strman/Strman.java#L955-L959,0, +Java,map to json,https://github.com/cenobites/struts2-json-plugin/blob/00f948942d85b6f696d46672332ff7b3942ecb1b/examples/struts2-json-plugin-example/src/main/java/es/cenobit/struts2/json/example/IndexAction.java#L45-L53,0, +Java,all permutations of a list,https://github.com/biojava/biojava/blob/a1c71a8e3d40cc32104b1d387a3d3b560b43356e/biojava-structure/src/main/java/org/biojava/nbio/structure/symmetry/core/SystematicSolver.java#L72-L98,1, +Java,regex case insensitive,https://github.com/alkacon/opencms-core/blob/bc104acc75d2277df5864da939a1f2de5fdee504/src-gwt/org/opencms/gwt/client/ui/input/CmsRegexValidator.java#L79-L93,0, +Java,how to extract zip file recursively,https://github.com/ios-driver/ios-driver/blob/a9744419508d970fbb1ce18e4326cc624b237c8b/server/src/main/java/org/uiautomation/ios/application/IPAApplication.java#L94-L142,3, +Java,find int in string,https://github.com/boonproject/boon/blob/9bc6870dbe5dd58c45c18d8edb493e8efc089463/boon/src/main/java/org/boon/primitive/CharScanner.java#L1617-L1619,1, +Java,set working directory,https://github.com/facebookarchive/hadoop-20/blob/2a29bc6ecf30edb1ad8dbde32aa49a317b4d44f4/src/mapred/org/apache/hadoop/mapreduce/Job.java#L91-L94,1, +Java,get name of enumerated value,https://github.com/xmlet/XsdAsmFaster/blob/ccb78f9dd4b957ad5ac1ca349eaf24338c421e94/src/main/java/org/xmlet/xsdasmfaster/classes/XsdAsmUtils.java#L273-L285,2, +Java,extract data from html content,https://github.com/datumbox/datumbox-framework/blob/909dff0476e80834f05ecdde0624dd2390e9b0ca/datumbox-framework-applications/src/main/java/com/datumbox/framework/applications/nlp/CETR.java#L137-L156,3, +Java,how to get html of website,https://github.com/codescape/bitvunit/blob/cef6d9af60d684e41294981c10b6d92c8f063a4e/bitvunit-core/src/main/java/de/codescape/bitvunit/util/html/HtmlPageUtil.java#L89-L98,3, +Java,convert a utc time to epoch,https://github.com/google/j2objc/blob/471504a735b48d5d4ace51afa1542cc4790a921a/jre_emul/android/platform/libcore/ojluni/src/main/java/java/util/Date.java#L1300-L1310,0, +Java,how to check if a checkbox is checked,https://github.com/fcrepo3/fcrepo/blob/37df51b9b857fd12c6ab8269820d406c3c4ad774/fcrepo-server/src/main/java/org/fcrepo/server/access/FieldSearchServlet.java#L358-L440,0, +Java,create cookie,https://github.com/undertow-io/undertow/blob/87de0b856a7a4ba8faf5b659537b9af07b763263/core/src/main/java/io/undertow/util/Cookies.java#L326-L344,0, +Java,unzipping large files,https://github.com/ios-driver/ios-driver/blob/a9744419508d970fbb1ce18e4326cc624b237c8b/server/src/main/java/org/uiautomation/ios/utils/FolderMonitor.java#L128-L135,2, +Java,format date,https://github.com/kocakosm/pitaya/blob/f2b203b6cdb32723bd1249a1325a3bb5918bf99a/src/org/kocakosm/pitaya/time/Dates.java#L318-L322,3, +Java,positions of substrings in string,https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_abbreviations/src/main/java/com/wcohen/ss/Jaro.java#L77-L86,0, +Java,output to html file,https://github.com/jbundle/jbundle/blob/4037fcfa85f60c7d0096c453c1a3cd573c2b0abc/base/screen/view/html/src/main/java/org/jbundle/base/screen/view/html/HBasePanel.java#L237-L244,3, +Java,get current ip address,https://github.com/RestComm/media-core/blob/07b8703343708599f60af66bae62aded77ee81b5/network/src/main/java/org/restcomm/media/core/network/deprecated/IPAddressCompare.java#L70-L79,1, +Java,pretty print json,https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-xml/src/main/java/io/cloudslang/content/xml/services/ConvertXmlToJsonService.java#L75-L83,3, +Java,copy to clipboard,https://github.com/TheHortonMachine/hortonmachine/blob/d2b436bbdf951dc1fda56096a42dbc0eae4d35a5/gui/src/main/java/org/hortonmachine/gui/utils/GuiUtilities.java#L243-L247,1,gets does not set +Java,get the description of a http status code,https://github.com/jamesagnew/hapi-fhir/blob/150a84d52fe691b7f48fcb28247c4bddb7aec352/hapi-fhir-structures-r4/src/main/java/org/hl7/fhir/r4/model/Substance.java#L1083-L1096,0, +Java,convert decimal to hex,https://github.com/yegor256/takes/blob/a4f4d939c8f8e0af190025716ad7f22b7de40e70/src/main/java/org/takes/facets/auth/codecs/CcHex.java#L123-L136,0, +Java,readonly array,https://github.com/jeffreyning/nh-micro/blob/f1cb420a092f8ba94317519ede739974decb5617/nh-micro-db/src/main/java/com/nh/micro/db/MicroDbHolder.java#L45-L53,0, +Java,string similarity levenshtein,https://github.com/h2oai/h2o-3/blob/845eb49dfeaadf638b6e2f779d82fac996391fad/h2o-core/src/main/java/water/rapids/ast/prims/string/algorithms/H2OJaroWinklerComparator.java#L38-L128,1, +Java,export to excel,https://github.com/OpenCompare/OpenCompare/blob/6cd776466b375cb8ecca08fcd94e573d65e20b14/org.opencompare/api-java/src/main/java/org/opencompare/api/java/io/ExportMatrixExporter.java#L17-L43,0, +Java,convert int to bool,https://github.com/apache/flink/blob/b62db93bf63cb3bb34dd03d611a779d9e3fc61ac/flink-core/src/main/java/org/apache/flink/configuration/Configuration.java#L895-L902,2, +Java,unique elements,https://github.com/jtablesaw/tablesaw/blob/68a75b4098ac677e9486df5572cf13ec39f9f701/core/src/main/java/tech/tablesaw/api/IntColumn.java#L273-L282,1, +Java,get the description of a http status code,https://github.com/hibegin/simplewebserver/blob/262df49e1cd75df8d8c6469ac55204208ff8eeec/src/main/java/com/hibegin/http/server/util/StringsUtil.java#L5-L7,2, +Java,binomial distribution,https://github.com/GerdHolz/TOVAL/blob/036922cdfd710fa53b18e5dbe1e07f226f731fde/src/de/invation/code/toval/math/MathUtils.java#L30-L42,3, +Java,linear regression,https://github.com/EdwardRaff/JSAT/blob/0ff53b7b39684b2379cc1da522f5b3a954b15cfb/JSAT/src/jsat/classifiers/boosting/Bagging.java#L382-L397,0, +Java,all permutations of a list,https://github.com/cdk/cdk/blob/c3d0f16502bf08df50365fee392e11d7c9856657/tool/group/src/main/java/org/openscience/cdk/group/Permutation.java#L204-L210,0, +Java,read text file line by line,https://github.com/GerdHolz/TOVAL/blob/036922cdfd710fa53b18e5dbe1e07f226f731fde/src/de/invation/code/toval/parser/log/AbstractLogReader.java#L66-L75,0, +Java,get current ip address,https://github.com/alibaba/otter/blob/c7b5f94a0dd162e01ddffaf3a63cade7d23fca55/shared/common/src/main/java/com/alibaba/otter/shared/common/utils/AddressUtils.java#L124-L164,3, +Java,fuzzy match ranking,https://github.com/m-m-m/util/blob/f0e4e084448f8dfc83ca682a9e1618034a094ce6/collection/src/main/java/net/sf/mmm/util/collection/base/RankMap.java#L87-L95,0, +Java,convert int to bool,https://github.com/hankcs/HanLP/blob/a538d0722ab2e4980a9dcd9ea40324fc3ddba7ce/src/main/java/com/hankcs/hanlp/dictionary/TransformMatrixDictionary.java#L43-L46,0, +Java,extract data from html content,https://github.com/MKLab-ITI/simmo/blob/a78436e982e160fb0260746c563c7e4d24736486/src/main/java/gr/iti/mklab/simmo/impl/posts/RSSPost.java#L38-L44,3, +Java,connect to sql,https://github.com/Teddy-Zhu/SilentGo/blob/27f58b0cafe56b2eb9fc6993efa9ca2b529661e1/orm/src/main/java/com/silentgo/orm/source/druid/DruidPool.java#L31-L51,1, +Java,get current process id,https://github.com/rhuss/jolokia/blob/dc95e7bef859b1829776c5a84c8f7738f5d7d9c3/agent/jvm/src/main/java/org/jolokia/jvmagent/client/util/VirtualMachineHandler.java#L176-L184,0, +Java,nelder mead optimize,https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsp/src/com/ibm/ws/jsp/translator/optimizedtag/impl/JSTLIfOptimizedTag.java#L23-L34,0, +Java,nelder mead optimize,https://github.com/infinispan/infinispan/blob/7c62b94886c3febb4774ae8376acf2baa0265ab5/core/src/main/java/org/infinispan/functional/impl/MetaParamsInternalMetadata.java#L47-L50,0, +Java,httpclient post json,https://github.com/apache/incubator-heron/blob/776abe2b5a45b93a0eb957fd65cbc149d901a92a/heron/schedulers/src/java/org/apache/heron/scheduler/utils/HttpJsonClient.java#L118-L138,3, +Java,positions of substrings in string,https://github.com/Netflix/spectator/blob/259318252770de3bad581b85adff187d8f2c6537/spectator-ext-ipc/src/main/java/com/netflix/spectator/ipc/ServerGroup.java#L59-L61,0, +Java,read properties file,https://github.com/JRebirth/JRebirth/blob/93f4fc087b83c73db540333b9686e97b4cec694d/org.jrebirth.af/core/src/main/java/org/jrebirth/af/core/resource/i18n/MessageBuilder.java#L94-L113,1, +Java,convert decimal to hex,https://github.com/aoindustries/aocode-public/blob/c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3/src/main/java/com/aoindustries/util/StringUtility.java#L1228-L1250,0, +Java,write csv,https://github.com/Metatavu/edelphi/blob/d91a0b54f954b33b4ee674a1bdf03612d76c3305/edelphi/src/main/java/fi/metatavu/edelphi/utils/QueryDataUtils.java#L256-L270,3, +Java,set working directory,https://github.com/CODAIT/stocator/blob/35969cadd2e8faa6fdac45e8bec1799fdd3d8299/src/main/java/com/ibm/stocator/fs/ObjectStoreFileSystem.java#L407-L411,3, +Java,format date,https://github.com/oehf/ipf-oht-atna/blob/25ed1e926825169c94923a2c89a4618f60478ae8/auditor/src/main/java/org/openhealthtools/ihe/atna/auditor/utils/TimestampUtils.java#L36-L42,3, +Java,save list to file,https://github.com/deeplearning4j/deeplearning4j/blob/effce52f2afd7eeb53c5bcca699fcd90bd06822f/nd4j/nd4j-backends/nd4j-api-parent/nd4j-api/src/main/java/org/nd4j/linalg/dataset/api/preprocessor/stats/DistributionStats.java#L79-L82,0, +Java,how to check if a checkbox is checked,https://github.com/paypal/SeLion/blob/694d12d0df76db48d0360b16192770c6a4fbdfd2/client/src/main/java/com/paypal/selion/platform/html/CheckBox.java#L97-L109,1, +Java,how to get html of website,https://github.com/strator-dev/greenpepper/blob/2a61e6c179b74085babcc559d677490b0cad2d30/greenpepper-open/confluence/greenpepper-confluence-code/src/main/java/com/greenpepper/confluence/actions/execution/ShowExecutionResultAction.java#L184-L190,0, +Java,html encode string,https://github.com/opsmatters/opsmatters-core/blob/c48904f7e8d029fd45357811ec38a735e261e3fd/src/main/java/com/opsmatters/core/util/StringUtilities.java#L466-L480,0, +Java,convert a utc time to epoch,https://github.com/microfocus-idol/haven-search-components/blob/6f5df74ba67ec0d3f86e73bc1dd0d6edd01a8e44/hod/src/main/java/com/hp/autonomy/searchcomponents/hod/parametricvalues/HodParametricValuesServiceImpl.java#L282-L284,1, +Java,encrypt aes ctr mode,https://github.com/TGIO/RNCryptorNative/blob/5209f10b988e4033c0b769a40b0d6cc99ea16af7/jncryptor/src/main/java/org/cryptonode/jncryptor/AES256JNCryptor.java#L478-L500,2, +Java,how to check if a checkbox is checked,https://github.com/sdl/Testy/blob/b3ae061554016f926f04694a39ff00dab7576609/src/main/java/com/sdl/selenium/web/table/Table.java#L239-L243,3, +Java,matrix multiply,https://github.com/phax/ph-math/blob/9f998870c7e05226e032b1f38c23e7d45ec0169d/ph-math/src/main/java/com/helger/numbercruncher/matrix/Matrix.java#L395-L409,1, +Java,parse command line argument,https://github.com/micronaut-projects/micronaut-core/blob/c31f5b03ce0eb88c2f6470710987db03b8967d5c/core/src/main/java/io/micronaut/core/cli/CommandLineParser.java#L81-L84,1, +Java,convert int to bool,https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/convert/ConverterUtils.java#L35-L56,0, +Java,output to html file,https://github.com/wisdom-framework/wisdom/blob/a35b6431200fec56b178c0ff60837ed73fd7874d/extensions/wisdom-asciidoc-maven-plugin/src/main/java/org/wisdom/asciidoc/AsciidocMojo.java#L193-L222,0, +Java,convert html to pdf,https://github.com/ukase/ukase/blob/30f69cd2f950e15308b19a0ba788eb309933a4f4/core/src/main/java/com/github/ukase/service/PdfRenderer.java#L43-L59,3, +Java,convert a utc time to epoch,https://github.com/mangstadt/biweekly/blob/2e21350f85c13dfff52fdef98fdbebe2976fcf61/src/main/java/biweekly/util/com/google/ical/util/TimeUtils.java#L91-L110,2, +Java,underline text in label widget,https://github.com/ahome-it/lienzo-charts/blob/4237150a5758265eb19ce5b45e50b54fe0168616/src/main/java/com/ait/lienzo/charts/client/core/xy/label/XYChartLabelFormatter.java#L84-L103,1, +Java,connect to sql,https://github.com/Teddy-Zhu/SilentGo/blob/27f58b0cafe56b2eb9fc6993efa9ca2b529661e1/orm/src/main/java/com/silentgo/orm/source/jdbc/JDBCPool.java#L97-L105,1, +Java,convert html to pdf,https://github.com/alkacon/opencms-core/blob/bc104acc75d2277df5864da939a1f2de5fdee504/src-modules/org/opencms/workplace/tools/searchindex/A_CmsEditSearchIndexDialog.java#L325-L336,0, +Java,string similarity levenshtein,https://github.com/kiegroup/drools/blob/22b0275d6dbe93070b8090948502cf46eda543c4/drools-core/src/main/java/org/drools/core/util/StringUtils.java#L1216-L1221,0, +Java,convert string to number,https://github.com/b3log/latke/blob/f7e08a47eeecea5f7c94006382c24f353585de33/latke-core/src/main/java/org/json/JSONObject.java#L2074-L2126,3, +Java,custom http error response,https://github.com/groupon/odo/blob/3bae43d5eca8ace036775e5b2d3ed9af1a9ff9b1/client/src/main/java/com/groupon/odo/client/Client.java#L525-L558,0, +Java,save list to file,https://github.com/akarnokd/akarnokd-xml/blob/57466a5a9cb455a13d7121557c165287b31ee870/src/main/java/hu/akarnokd/xml/XNElement.java#L1037-L1041,1, +Java,how to make the checkbox checked,https://github.com/groupon/robo-remote/blob/12d242faad50bf90f98657ca9a0c0c3ae1993f07/RoboRemoteClient/src/main/com/groupon/roboremote/roboremoteclient/Solo.java#L428-L430,0, +Java,get inner html,https://github.com/ops4j/org.ops4j.pax.exam2/blob/7f83796cbbb857123d8fc7fe817a7637218d5d77/samples/pax-exam-sample2-service/src/main/java/org/ops4j/pax/exam/sample2/movieimport/MovieDbJsonMapper.java#L84-L91,0, +Java,deducting the median from each column,https://github.com/PureSolTechnologies/commons/blob/f98c23d8841a1ff61632ff17fe7d24f99dbc1d44/math/src/main/java/com/puresoltechnologies/commons/math/statistics/Statistics.java#L59-L67,0,Assumes sorted +Java,underline text in label widget,https://github.com/Clans/FloatingActionButton/blob/d3feaadabb8e4780e8bca330f4f67b94f21e1796/library/src/main/java/com/github/clans/fab/FloatingActionButton.java#L1076-L1082,0, +Java,how to read .csv file in an efficient way?,https://github.com/opencb/biodata/blob/21b3d51d71f578efab908422aca4bab7a73097b1/biodata-tools/src/main/java/org/opencb/biodata/tools/variant/VcfManager.java#L235-L243,0, +Java,confusion matrix,https://github.com/qsardb/qsardb-common/blob/6c5e8e79294bf2b634fb9c1debd5c0b081cc83e1/statistics/src/main/java/org/qsardb/statistics/ClassificationStatistics.java#L68-L81,2, +Java,heatmap from 3d coordinates,https://github.com/TheHortonMachine/hortonmachine/blob/d2b436bbdf951dc1fda56096a42dbc0eae4d35a5/lesto/src/main/java/org/hortonmachine/lesto/modules/raster/adaptivetinfilter/TinHandler.java#L652-L672,0, +Java,buffered file reader read text,https://github.com/sagiegurari/fax4j/blob/42fa51acabe7bf279e27ab3dd1cf76146b27955f/src/main/java/org/fax4j/util/IOHelper.java#L332-L342,2, +Java,sorting multiple arrays based on another arrays sorted order,https://github.com/cdk/cdk/blob/c3d0f16502bf08df50365fee392e11d7c9856657/base/data/src/main/java/org/openscience/cdk/AtomContainerSet.java#L412-L439,2, +Java,concatenate several file remove header lines,https://github.com/hypfvieh/java-utils/blob/407c32d6b485596d4d2b644f5f7fc7a02d0169c6/src/main/java/com/github/hypfvieh/util/SystemUtil.java#L129-L151,0, +Java,finding time elapsed using a timer,https://github.com/actframework/actframework/blob/55a8f8b45e71159a79ec6e157c02f71700f8cd54/src/main/java/act/metric/SimpleMetricStore.java#L101-L107,1, +Java,unique elements,https://github.com/cogroo/cogroo4/blob/b6228900c20c6b37eac10a03708a9669dd562f52/lang/pt_br/cogroo-addon/src/org/cogroo/addon/dialogs/reporterror/DialogBuilder.java#L579-L592,0, +Java,parse json file,https://github.com/jamesagnew/hapi-fhir/blob/150a84d52fe691b7f48fcb28247c4bddb7aec352/hapi-fhir-structures-dstu3/src/main/java/org/hl7/fhir/dstu3/formats/JsonParser.java#L5518-L5588,2, +Java,how to get html of website,https://github.com/OryxProject/oryx/blob/684bac0af002d2619ced652b5339e239da48df93/framework/oryx-lambda-serving/src/main/java/com/cloudera/oryx/lambda/serving/ErrorResource.java#L38-L84,3,true but odd +Java,how to check if a checkbox is checked,https://github.com/datacleaner/DataCleaner/blob/9aa01fdac3560cef51c55df3cb2ac5c690b57639/desktop/ui/src/main/java/org/datacleaner/widgets/properties/AbstractMultipleCheckboxesPropertyWidget.java#L148-L166,1, +Java,how to get html of website,https://github.com/phax/ph-oton/blob/f3aaacbbc02a9f3e4f32fe8db8e4adf7b9c1d3ef/ph-oton-html/src/main/java/com/helger/html/hc/html/textlevel/HCA.java#L51-L61,0, +Java,k means clustering,https://github.com/elki-project/elki/blob/b54673327e76198ecd4c8a2a901021f1a9174498/elki-clustering/src/main/java/de/lmu/ifi/dbs/elki/evaluation/clustering/internal/EvaluateSimplifiedSilhouette.java#L114-L206,0, +Java,concatenate several file remove header lines,https://github.com/btaz/data-util/blob/f01de64854c456a88a31ffbe8bac6d605151b496/src/main/java/com/btaz/util/files/FileCat.java#L18-L44,2, +Java,how to get database table name,https://github.com/Azure/azure-storage-android/blob/2c643c37c6b8c9081058add284c601a2393afc93/microsoft-azure-storage-samples/src/com/microsoft/azure/storage/samples/table/TableGettingStartedTask.java#L47-L97,0, +Java,hash set for counting distinct elements,https://github.com/goldmansachs/gs-collections/blob/fa8bf3e103689efa18bca2ab70203e71cde34b52/collections/src/main/java/com/gs/collections/impl/bag/immutable/ImmutableArrayBag.java#L158-L182,1, +Java,converting uint8 array to image,https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-jpeg/src/main/java/com/twelvemonkeys/imageio/plugins/jpeg/JPEGLosslessDecoderWrapper.java#L132-L149,0, +Java,converting uint8 array to image,https://github.com/kiegroup/droolsjbpm-integration/blob/6c26200ab03855dbb92b56ca0c6363cdec0eaf2c/kie-server-parent/kie-server-services/kie-server-services-jbpm/src/main/java/org/kie/server/services/jbpm/QueryDataServiceBase.java#L247-L300,0, +Java,parse json file,https://github.com/json-path/JsonPath/blob/5a09489c3252b74bbf81992aadb3073be59c04f9/json-path/src/main/java/com/jayway/jsonpath/internal/ParseContextImpl.java#L58-L68,2, +Java,httpclient post json,https://github.com/hypercube1024/firefly/blob/ed3fc75b7c54a65b1e7d8141d01b49144bb423a3/firefly-example/src/main/java/com/firefly/example/http/hello/CombiningRoutingCriteriaDemo.java#L26-L54,2, +Java,confusion matrix,https://github.com/deeplearning4j/deeplearning4j/blob/effce52f2afd7eeb53c5bcca699fcd90bd06822f/nd4j/nd4j-backends/nd4j-api-parent/nd4j-api/src/main/java/org/nd4j/evaluation/classification/Evaluation.java#L616-L719,2, +Java,get current process id,https://github.com/linkedin/dexmaker/blob/c58ffebcbb2564c7d1fa6fb58b48f351c330296d/dexmaker/src/main/java/com/android/dx/AppDataDirGuesser.java#L208-L219,0, +Java,socket recv timeout,https://github.com/sshtools/j2ssh-maverick/blob/ce11ceaf0aa0b129b54327a6891973e1e34689f7/j2ssh-maverick/src/main/java/com/sshtools/ssh2/TransportProtocol.java#L715-L728,2, +Java,get inner html,https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/mailer/UrlMessageBody.java#L226-L237,0, +Java,set file attrib hidden,https://github.com/webfirmframework/wff/blob/e59def3a20d44f91e112b113448d951d7514af2e/wffweb/src/main/java/com/webfirmframework/wffweb/tag/html/html5/attribute/global/Hidden.java#L116-L125,1, +Java,extracting data from a text file,https://github.com/RestComm/jain-slee/blob/0eaa16ff2d4b6faf43f0d99260e88878fd54dee0/container/components/components/src/main/java/org/mobicents/slee/container/component/deployment/DeployableUnitJarComponentBuilder.java#L360-L384,0, +Java,how to check if a checkbox is checked,https://github.com/ludovicianul/selenium-on-steroids/blob/f89d91c59f686114f94624bfc55712f278005bfa/src/main/java/com/insidecoding/sos/webdriver/WebDriverHelper.java#L330-L340,3, +Java,sort string list,https://github.com/Netflix/conductor/blob/78fae0ed9ddea22891f9eebb96a2ec0b2783dca0/grpc-server/src/main/java/com/netflix/conductor/grpc/server/service/WorkflowServiceImpl.java#L282-L288,0, +Java,extract latitude and longitude from given input,https://github.com/amsa-code/risky/blob/13649942aeddfdb9210eec072c605bc5d7a6daf3/ais/src/main/java/au/gov/amsa/ais/message/AisAidToNavigation.java#L149-L158,2, +Java,parse json file,https://github.com/jamesagnew/hapi-fhir/blob/150a84d52fe691b7f48fcb28247c4bddb7aec352/hapi-fhir-structures-r4/src/main/java/org/hl7/fhir/r4/formats/JsonParserBase.java#L166-L169,2, +Java,hash set for counting distinct elements,https://github.com/simplaex/bedrock/blob/ceab55f9de4953d480ea1b1c9c9eb1917735179c/src/main/java/com/simplaex/bedrock/Set.java#L226-L232,0, +Java,encode url,https://github.com/cloudfoundry/uaa/blob/e8df3d7060580c92d33461106399f9e4f36e3cd2/server/src/main/java/org/cloudfoundry/identity/uaa/oauth/UaaAuthorizationEndpoint.java#L646-L653,1, +Java,randomly extract x items from a list,https://github.com/felipecsl/AsymmetricGridView/blob/f8c3d6da518a85218c3627b93ec62415befe7a6a/app/src/main/java/com/felipecsl/asymmetricgridview/app/DemoUtils.java#L14-L30,0, +Java,convert json to csv,https://github.com/box/box-java-sdk/blob/35b4ba69417f9d6a002c19dfaab57527750ef349/src/main/java/com/box/sdk/BoxSearchParameters.java#L321-L328,0, +Java,nelder mead optimize,https://github.com/protobufel/protobuf-el/blob/3a600e2f7a8e74b637f44eee0331ef6e57e7441c/protobufel-grammar/src/main/java/com/github/protobufel/grammar/ProtoFileParser.java#L279-L283,0, +Java,how to get database table name,https://github.com/komamitsu/fluency/blob/76d07ba292d2666d143eaaedb28be97deb928a38/fluency-treasuredata/src/main/java/org/komamitsu/fluency/treasuredata/ingester/sender/TreasureDataSender.java#L234-L268,0, +Java,set file attrib hidden,https://github.com/ArcBees/gwtquery/blob/93e02bc8eb030081061c56134ebee1f585981107/gwtquery-core/src/main/java/com/google/gwt/query/client/impl/DocumentStyleImpl.java#L140-L147,0, +Java,save list to file,https://github.com/akarnokd/akarnokd-xml/blob/57466a5a9cb455a13d7121557c165287b31ee870/src/main/java/hu/akarnokd/xml/XElement.java#L643-L647,0, +Java,binomial distribution,https://github.com/datumbox/datumbox-framework/blob/909dff0476e80834f05ecdde0624dd2390e9b0ca/datumbox-framework-core/src/main/java/com/datumbox/framework/core/statistics/distributions/DiscreteDistributions.java#L76-L96,3, +Java,get current ip address,https://github.com/xwiki/xwiki-commons/blob/5374d8c6d966588c1eac7392c83da610dfb9f129/xwiki-commons-core/xwiki-commons-crypto/xwiki-commons-crypto-pkix/src/main/java/org/xwiki/crypto/pkix/params/x509certificate/extension/X509IpAddress.java#L126-L137,1, +Java,readonly array,https://github.com/lievendoclo/Valkyrie-RCP/blob/6aad6e640b348cda8f3b0841f6e42025233f1eb8/valkyrie-rcp-core/src/main/java/org/valkyriercp/binding/form/support/AbstractFormModel.java#L673-L679,0, +Java,sort string list,https://github.com/moparisthebest/beehive/blob/4246a0cc40ce3c05f1a02c2da2653ac622703d77/beehive-netui-tags/src/main/java/org/apache/beehive/netui/databinding/datagrid/runtime/config/DefaultDataGridStateCodec.java#L336-L365,1, +Java,socket recv timeout,https://github.com/pgjdbc/pgjdbc/blob/95ba7b261e39754674c5817695ae5ebf9a341fae/pgjdbc/src/main/java/org/postgresql/core/v3/QueryExecutorImpl.java#L768-L778,3, +Java,how to read the contents of a .gz compressed file?,https://github.com/imsweb/naaccr-xml/blob/a3a501faa2a0c3411dd5248b2c1379f279131696/src/main/java/com/imsweb/naaccrxml/BatchProcessor.java#L229-L269,0, +Java,confusion matrix,https://github.com/ixa-ehu/ixa-pipe-ml/blob/c817fa1e40e96ed15fc79d22c3a7c25f1a40d172/src/main/java/eus/ixa/ixa/pipe/ml/eval/DetailedEvaluationListener.java#L379-L402,1, +Java,set file attrib hidden,https://github.com/dashbuilder/dashbuilder/blob/50ef88210726b4f2f33f1a82eaf0f542e38dedd9/dashbuilder-shared/dashbuilder-displayer-api/src/main/java/org/dashbuilder/displayer/DisplayerSettings.java#L607-L609,0, +Java,randomly extract x items from a list,https://github.com/rapidoid/rapidoid/blob/1775344bcf4abbee289d474b34d553ff6bc821b0/rapidoid-commons/src/main/java/org/rapidoid/collection/Coll.java#L340-L359,0, +Java,k means clustering,https://github.com/elki-project/elki/blob/b54673327e76198ecd4c8a2a901021f1a9174498/addons/tutorial/src/main/java/tutorial/clustering/SameSizeKMeansAlgorithm.java#L108-L135,0, +Java,read properties file,https://github.com/jtrfp/javamod/blob/cda4fe943a589dc49415f4413453e2eece72076a/src/main/java/de/quippy/javamod/main/gui/MainForm.java#L367-L447,2, +Java,format date,https://github.com/hpsa/hpe-application-automation-tools-plugin/blob/987536f5551bc76fd028d746a951d1fd72c7567a/src/main/java/com/hp/application/automation/tools/results/parser/nunit/NUnitReportParserImpl.java#L149-L160,0, +Java,pretty print json,https://github.com/authorjapps/zerocode/blob/d66a3e8778d2eb5e4f0006bfcccfc0922ceb7cef/core/src/main/java/org/jsmart/zerocode/core/utils/SmartUtils.java#L123-L137,1, +Java,how to determine a string is a valid word,https://github.com/NICTA/nicta-ner/blob/c2156a0e299004e586926777a995b7795f35ff1c/nicta-ner/src/main/java/org/t3as/ner/extractor/NameExtractor.java#L195-L223,0, +Java,socket recv timeout,https://github.com/davidmoten/rxjava2-extras/blob/bf5ece3f97191f29a81957a6529bc3cfa4d7b328/src/main/java/com/github/davidmoten/rx2/internal/flowable/FlowableServerSocket.java#L146-L152,0, +Java,parse command line argument,https://github.com/PeterisP/LVTagger/blob/b3d44bab9ec07ace0d13612c448a6b7298c1f681/src/main/java/edu/stanford/nlp/util/StringUtils.java#L993-L996,1, +Java,copying a file to a path,https://github.com/gallandarakhneorg/afc/blob/0c7d2e1ddefd4167ef788416d970a6c1ef6f8bbb/maven/maventools/src/main/java/org/arakhne/maven/AbstractArakhneMojo.java#L332-L347,3, +Java,readonly array,https://github.com/google/j2objc/blob/471504a735b48d5d4ace51afa1542cc4790a921a/jre_emul/android/platform/libcore/ojluni/src/main/java/java/io/ObjectInputStream.java#L1446-L1526,0, +Java,linear regression,https://github.com/deeplearning4j/deeplearning4j/blob/effce52f2afd7eeb53c5bcca699fcd90bd06822f/arbiter/arbiter-deeplearning4j/src/main/java/org/deeplearning4j/arbiter/scoring/util/ScoreUtil.java#L291-L294,0, +Java,encode url,https://github.com/hoverruan/weiboclient4j/blob/80556b1ce40ee4dc063b977f885792efb6307547/src/main/java/weiboclient4j/utils/StringUtils.java#L48-L54,2, +Java,sending binary data over a serial connection,https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.wsoc/src/com/ibm/ws/wsoc/RemoteEndpointBasicImpl.java#L93-L133,2, +Java,parse query string in url,https://github.com/project-ncl/pnc/blob/85743ca59d14cdf750d6daa8bd0a0a8be390a796/common/src/main/java/org/jboss/pnc/common/util/UrlUtils.java#L108-L132,3, +Java,convert int to bool,https://github.com/querydsl/querydsl/blob/2bf234caf78549813a1e0f44d9c30ecc5ef734e3/querydsl-core/src/main/java/com/querydsl/core/QueryModifiers.java#L38-L44,0, +Java,deserialize json,https://github.com/cdapio/tigon/blob/5be6dffd7c79519d1211bb08f75be7dcfbbad392/tigon-flow/src/main/java/co/cask/tigon/internal/app/ResourceSpecificationCodec.java#L45-L54,3, +Java,parse binary file to custom class,https://github.com/chhh/MSFTBX/blob/e53ae6be982e2de3123292be7d5297715bec70bb/MSFileToolbox/src/main/java/umich/ms/fileio/filetypes/gpmdb/GPMDBFile.java#L42-L66,2, +Java,html entities replace,https://github.com/lucee/Lucee/blob/29b153fc4e126e5edb97da937f2ee2e231b87593/core/src/main/java/lucee/runtime/functions/displayFormatting/HTMLCodeFormat.java#L29-L31,1, +Java,normal distribution,https://github.com/kiegroup/droolsjbpm-integration/blob/6c26200ab03855dbb92b56ca0c6363cdec0eaf2c/jbpm-simulation/src/main/java/org/jbpm/simulation/TimeGeneratorFactory.java#L30-L45,1, +Java,copying a file to a path,https://github.com/phax/ph-commons/blob/d28c03565f44a0b804d96028d0969f9bb38c4313/ph-commons/src/main/java/com/helger/commons/io/file/FileOperations.java#L506-L566,0, +Java,custom http error response,https://github.com/jdereg/java-util/blob/a2dce61aed16d6454ee575174dda1ba6bff0015c/src/main/java/com/cedarsoftware/util/UrlUtilities.java#L188-L230,1, +Java,replace in file,https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.fat.common/src/com/ibm/ws/security/fat/common/utils/CommonIOUtils.java#L42-L44,1, +Java,convert string to number,https://github.com/cchabanois/transmorph/blob/118550f30b9680a84eab7496bd8b04118740dcec/src/main/java/net/entropysoft/transmorph/converters/FormattedStringToNumber.java#L49-L74,0, +Java,sending binary data over a serial connection,https://github.com/Stratio/stratio-cassandra/blob/f6416b43ad5309083349ad56266450fa8c6a2106/src/java/org/apache/cassandra/net/MessagingService.java#L663-L683,0, +Java,postgresql connection,https://github.com/pgjdbc/pgjdbc/blob/95ba7b261e39754674c5817695ae5ebf9a341fae/pgjdbc/src/main/java/org/postgresql/jdbc/TimestampUtils.java#L1330-L1345,0, +Java,get inner html,https://github.com/alkacon/opencms-core/blob/bc104acc75d2277df5864da939a1f2de5fdee504/src-gwt/org/opencms/gwt/client/util/CmsDomUtil.java#L2081-L2089,0, +Java,convert a utc time to epoch,https://github.com/jtmelton/appsensor/blob/c3b4e9ada50fdee974e0d618ec4bdfabc2163798/appsensor-core/src/main/java/org/owasp/appsensor/core/util/DateUtils.java#L50-L57,0, +Java,print model summary,https://github.com/Chorus-bdd/Chorus/blob/1eea7ca858876bce821bb49b43fd5b6ba1737997/interpreter/chorus-output/src/main/java/org/chorusbdd/chorus/output/AbstractChorusOutputWriter.java#L144-L147,0, +Java,parse query string in url,https://github.com/cloudant/sync-android/blob/5f1416ed1bd9ab05d7a4b8736480c8ae68bd7383/cloudant-sync-datastore-core/src/main/java/com/cloudant/sync/internal/mazha/CouchURIHelper.java#L151-L158,0, +Java,extract data from html content,https://github.com/iipc/webarchive-commons/blob/988bec707c27a01333becfc3bd502af4441ea1e1/src/main/java/org/archive/extract/RealCDXExtractorOutput.java#L263-L284,0, +Java,map to json,https://github.com/hamnis/json-collection/blob/fbd4a1c6ab75b70b3b4cb981b608b395e9c8c180/src/main/java/net/hamnaberg/json/Property.java#L177-L181,3, +Java,how to read the contents of a .gz compressed file?,https://github.com/bonigarcia/webdrivermanager/blob/d1f05b58895dd646d4bd7a59b26a4f2ca58872fd/src/main/java/io/github/bonigarcia/wdm/Downloader.java#L176-L206,1, +Java,how to extract zip file recursively,https://github.com/sitoolkit/sit-wt-all/blob/efabde27aa731a5602d2041e137721a22f4fd27a/sit-wt-runtime/src/main/java/io/sitoolkit/wt/infra/selenium/WebDriverInstaller.java#L233-L256,1, +Java,normal distribution,https://github.com/PeterisP/LVTagger/blob/b3d44bab9ec07ace0d13612c448a6b7298c1f681/src/main/java/edu/stanford/nlp/stats/Distribution.java#L102-L115,0, +Java,scatter plot,https://github.com/haifengl/smile/blob/e27e43e90fbaacce3f99d30120cf9dd6a764c33d/plot/src/main/java/smile/plot/ScatterPlot.java#L581-L595,3, +Java,encode url,https://github.com/messagebird/java-rest-api/blob/f92cd93afff413e6dc12aa6e41e69f26cbae8941/api/src/main/java/com/messagebird/MessageBirdClient.java#L1036-L1038,3, +Java,read properties file,https://github.com/zk1931/jzab/blob/2a8893bcc1a125f3aebdaddee80ad49c9761bba1/src/main/java/com/github/zk1931/jzab/FileUtils.java#L125-L132,3, +Java,aes encryption,https://github.com/zamrokk/fabric-sdk-java/blob/d4993ca602f72d412cd682e1b92e805e48b27afa/src/main/java/org/hyperledger/fabric/sdk/security/CryptoPrimitives.java#L216-L224,0, +Java,nelder mead optimize,https://github.com/strator-dev/greenpepper/blob/2a61e6c179b74085babcc559d677490b0cad2d30/greenpepper-maven-plugin/src/main/java/com/greenpepper/maven/plugin/SpecificationRunnerMojo.java#L758-L764,0, +Java,how to extract zip file recursively,https://github.com/jeremylong/DependencyCheck/blob/6cc7690ea12e4ca1454210ceaa2e9a5523f0926c/core/src/main/java/org/owasp/dependencycheck/utils/ExtractionUtil.java#L366-L388,2, +Java,deducting the median from each column,https://github.com/landawn/AbacusUtil/blob/544b7720175d15e9329f83dd22a8cc5fa4515e12/src/com/landawn/abacus/util/SQLBuilder.java#L1588-L1598,0, +Java,write csv,https://github.com/OpenEstate/OpenEstate-IO/blob/f961dae78f40823f05a8c0d4e59d639e718aa18a/Examples/src/main/java/org/openestate/io/examples/IdxWritingExample.java#L64-L94,1, +Java,how to get database table name,https://github.com/droidparts/droidparts/blob/e4f782f136e349feeda518fa15d501fd0fec70c0/droidparts/src/org/droidparts/inner/PersistUtils.java#L277-L279,1, +Java,how to reverse a string,https://github.com/ManfredTremmel/gwt-commons-lang3/blob/9e2dfbbda3668cfa5d935fe76479d1426c294504/src/main/java/org/apache/commons/lang3/StringUtils.java#L7505-L7510,3, +Java,filter array,https://github.com/ldaley/Gldapo/blob/f87ab51dff9ce4fffe18728cc1c9a1b0ce82cf80/src/main/java/gldapo/filter/FilterUtil.java#L71-L78,0, +Java,converting uint8 array to image,https://github.com/geomajas/geomajas-project-server/blob/904b7d7deed1350d28955589098dd1e0a786d76e/plugin/print/print/src/main/java/org/geomajas/plugin/printing/component/impl/LegendViaUrlComponentImpl.java#L243-L272,0, +Java,randomly extract x items from a list,https://github.com/lessthanoptimal/BoofCV/blob/f01c0243da0ec086285ee722183804d5923bc3ac/examples/src/main/java/boofcv/examples/sfm/ExamplePnP.java#L148-L187,0, +Java,convert decimal to hex,https://github.com/Appendium/objectlabkit/blob/cd649bce7a32e4e926520e62cb765f3b1d451594/utils/src/main/java/net/objectlab/kit/util/BigDecimalUtil.java#L772-L774,0, +Java,aes encryption,https://github.com/opentelecoms-org/zrtp-java/blob/10a0c77866c5d1b1504df161db9a447f5069ed54/src/zorg/SRTP.java#L804-L846,1, +Java,positions of substrings in string,https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/hsqldb19b3/org/hsqldb_voltpatches/lib/RefCapablePropertyResourceBundle.java#L241-L282,0, +Java,parse json file,https://github.com/json-path/JsonPath/blob/5a09489c3252b74bbf81992aadb3073be59c04f9/json-path/src/main/java/com/jayway/jsonpath/JsonPath.java#L672-L674,1, +Java,html encode string,https://github.com/jenkinsci/jenkins/blob/44c4d3989232082c254d27ae360aa810669f44b7/core/src/main/java/hudson/console/ExpandableDetailsNote.java#L58-L66,0, +Java,reading element from html - ,https://github.com/codescape/bitvunit/blob/cef6d9af60d684e41294981c10b6d92c8f063a4e/bitvunit-core/src/main/java/de/codescape/bitvunit/model/Page.java#L222-L228,2, +Java,print model summary,https://github.com/h2oai/h2o-2/blob/be350f3f2c2fb6f135cc07c41f83fd0e4f521ac1/src/main/java/water/api/Models.java#L311-L321,0, +Java,parse command line argument,https://github.com/tntim96/JSCover/blob/87808b3aa38726b369496331d28ec4111dc5143e/src/main/java/jscover/stdout/ConfigurationForStdOut.java#L379-L389,1, +Java,convert a utc time to epoch,https://github.com/knowm/XChange/blob/e45f437ac8e0b89cd66cdcb3258bdb1bf3d88186/xchange-okcoin/src/main/java/org/knowm/xchange/okcoin/OkCoinUtils.java#L9-L21,2, +Java,initializing array,https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/com/ibm/ws/jsf/extprocessor/JSFExtensionFactory.java#L403-L414,0, +Java,priority queue,https://github.com/timewalker74/ffmq/blob/638773ee29a4a5f9c6119ed74ad14ac9c46382b3/core/src/main/java/net/timewalker/ffmq4/common/session/AbstractMessageProducer.java#L167-L174,0, +Java,how to randomly pick a number,https://github.com/DataSketches/sketches-core/blob/900c8c9668a1e2f1d54d453e956caad54702e540/src/main/java/com/yahoo/sketches/sampling/VarOptItemsSketch.java#L1136-L1144,2, +Java,filter array,https://github.com/jbee/silk/blob/36237487d250c7b66bcefcf08c45d0069b55ec92/src/core/se/jbee/inject/Utils.java#L52-L61,3, +Java,socket recv timeout,https://github.com/timewalker74/ffmq/blob/638773ee29a4a5f9c6119ed74ad14ac9c46382b3/core/src/main/java/net/timewalker/ffmq4/transport/tcp/SocketUtils.java#L31-L46,2, +Java,read text file line by line,https://github.com/datasift/datasift-java/blob/09de124f2a1a507ff6181e59875c6f325290850e/src/main/java/com/datasift/client/push/PullReader.java#L220-L232,1, +Java,find int in string,https://github.com/tvesalainen/lpg/blob/0917b8d295e9772b9f8a0affc258a08530cd567a/src/main/java/org/vesalainen/regex/Regex.java#L687-L704,0, +Java,heatmap from 3d coordinates,https://github.com/cdk/cdk/blob/c3d0f16502bf08df50365fee392e11d7c9856657/tool/hash/src/main/java/org/openscience/cdk/hash/stereo/GeometricTetrahedralEncoderFactory.java#L185-L210,0, +Java,set file attrib hidden,https://github.com/DigitalPebble/TextClassification/blob/c510719c31633841af2bf393a20707d4624f865d/src/main/java/com/digitalpebble/classification/libsvm/Utils.java#L132-L211,0, +Java,convert html to pdf,https://github.com/nguyenq/tess4j/blob/cfcd4a8a44042f150b4aaf7bdf5ffc485a2236e1/src/main/java/net/sourceforge/tess4j/util/PdfUtilities.java#L39-L50,0, +Java,copying a file to a path,https://github.com/Red5/red5-server-common/blob/39ae73710c25bda86d70b13ef37ae707962217b9/src/main/java/org/red5/server/util/FileUtil.java#L51-L86,3, +Java,positions of substrings in string,https://github.com/OpenTSDB/opentsdb/blob/3fc2d491c3c1ad397252c0a80203a69a3f9e3ef3/src/core/Tags.java#L56-L77,0, +Java,buffered file reader read text,https://github.com/cogroo/cogroo4/blob/b6228900c20c6b37eac10a03708a9669dd562f52/cogroo-eval/GramEval/src/main/java/cogroo/uima/readers/MultiReader.java#L50-L65,0, +Java,buffered file reader read text,https://github.com/apache/groovy/blob/71cf20addb611bb8d097a59e395fd20bc7f31772/subprojects/groovy-nio/src/main/java/org/codehaus/groovy/runtime/NioGroovyMethods.java#L1399-L1401,1,does not read text +Java,convert string to number,https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/hsqldb19b3/org/hsqldb_voltpatches/types/CharacterType.java#L664-L673,0, +Java,httpclient post json,https://github.com/alibaba/jstorm/blob/5d6cde22dbca7df3d6e6830bf94f98a6639ab559/jstorm-core/src/main/java/com/alibaba/jstorm/daemon/nimbus/metric/uploader/AlimonitorClient.java#L181-L212,0, +Java,how to extract zip file recursively,https://github.com/sonatype/jarjar-maven-plugin/blob/3fe3f8db91da18f7ded73e09d19525bc1d83631b/src/main/java/com/tonicsystems/jarjar/util/ClassPathIterator.java#L111-L141,2, +Java,convert html to pdf,https://github.com/mwilliamson/java-mammoth/blob/f2fd5ec08b2b87278f2929d7c15c9ed71fbac8d8/src/main/java/org/zwobble/mammoth/DocumentConverter.java#L83-L85,0, +Java,export to excel,https://github.com/Appendium/flatpack/blob/5e09875d97db7038e3ba6af9468f5313d99b0082/flatpack-excel/src/main/java/net/sf/flatpack/excel/ExcelTransformer.java#L74-L147,3, +Java,json to xml conversion,https://github.com/javadev/underscore-java/blob/4d49fe282626f5904aaa7d5b34fd78524b4932e9/src/main/java/com/github/underscore/lodash/U.java#L2029-L2031,1, +Java,matrix multiply,https://github.com/EdwardRaff/JSAT/blob/0ff53b7b39684b2379cc1da522f5b3a954b15cfb/JSAT/src/jsat/linear/Matrix.java#L311-L316,3, +Java,priority queue,https://github.com/mkobayas/minimum-marshaller/blob/3a8d86decd7c02ef756522336f4483e6f53574d1/src/main/java/org/mk300/marshal/minimum/handler/PriorityQueueHandler.java#L46-L59,3, +Java,get the description of a http status code,https://github.com/jamesagnew/hapi-fhir/blob/150a84d52fe691b7f48fcb28247c4bddb7aec352/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/FhirSystemDaoDstu2.java#L665-L667,3, +Java,read text file line by line,https://github.com/jianlins/FastContext/blob/e3f7cfa7e6eb69bbeb49a51021d8ec5613654fc8/src/main/java/edu/utah/bmi/nlp/context/common/IOUtil.java#L336-L354,0,Ugly ugly names +Java,encrypt aes ctr mode,https://github.com/gocd/gocd/blob/59a8480e23d6c06de39127635108dff57603cb71/config/config-api/src/main/java/com/thoughtworks/go/security/AESEncrypter.java#L64-L78,2, +Java,html encode string,https://github.com/opsmatters/newrelic-api/blob/5bc2ea62ec368db891e4fd5fe3dcdf529d086b5e/src/main/java/com/opsmatters/newrelic/api/services/BaseFluent.java#L196-L213,0, +Java,how to randomly pick a number,https://github.com/amaembo/streamex/blob/936bbd1b7dfbcf64a3b990682bfc848213441d14/src/main/java/one/util/streamex/IntStreamEx.java#L2278-L2280,2, +Java,normal distribution,https://github.com/elki-project/elki/blob/b54673327e76198ecd4c8a2a901021f1a9174498/elki-core-math/src/main/java/de/lmu/ifi/dbs/elki/math/statistics/distribution/LogNormalDistribution.java#L216-L218,1, +Java,convert json to csv,https://github.com/alkacon/opencms-core/blob/bc104acc75d2277df5864da939a1f2de5fdee504/src/org/opencms/ui/apps/dbmanager/sqlconsole/CmsSqlConsoleResults.java#L93-L113,1, +Java,get current process id,https://github.com/snakerflow/snakerflow/blob/9c8cb3148a76702f1eda22f1d113053cb44b1eff/snaker-core/src/main/java/org/snaker/engine/core/SnakerEngineImpl.java#L250-L259,1, +Java,how to reverse a string,https://github.com/landawn/AbacusUtil/blob/544b7720175d15e9329f83dd22a8cc5fa4515e12/src/com/landawn/abacus/util/StringUtil.java#L178-L192,2, +Java,get name of enumerated value,https://github.com/apache/flink/blob/b62db93bf63cb3bb34dd03d611a779d9e3fc61ac/flink-connectors/flink-connector-kafka-0.11/src/main/java/org/apache/flink/streaming/connectors/kafka/internal/FlinkKafkaProducer.java#L261-L274,0, +Java,convert int to bool,https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/convert/ConverterUtils.java#L58-L79,0, +Java,socket recv timeout,https://github.com/webmetrics/browsermob-proxy/blob/a9252e62246ac33d55d51b993ba1159404e7d389/src/main/java/org/browsermob/proxy/jetty/util/ThreadedServer.java#L418-L464,2, +Java,how to read the contents of a .gz compressed file?,https://github.com/apache/incubator-druid/blob/f776b9408962b9006cfcfe4d6c1794751972cc8e/core/src/main/java/org/apache/druid/utils/CompressionUtils.java#L575-L612,3, +Java,scatter plot,https://github.com/gsi-upm/Shanks/blob/35d87a81c22731f4f83bbd0571c9c6d466bd16be/shanks-core/src/main/java/es/upm/dit/gsi/shanks/model/scenario/portrayal/ScenarioPortrayal.java#L261-L271,2, +Java,parse command line argument,https://github.com/joelittlejohn/jsonschema2pojo/blob/0552b80db93214eb186e4ae45b40866cc1e7eb84/jsonschema2pojo-cli/src/main/java/org/jsonschema2pojo/cli/Jsonschema2PojoCLI.java#L44-L53,1, +Java,extract data from html content,https://github.com/dhanji/sitebricks/blob/8682029a78bd48fb8566173d970800499e9e5d97/sitebricks/src/main/java/com/google/sitebricks/rendering/control/EmbeddedRespond.java#L42-L71,2, +Java,priority queue,https://github.com/lastaflute/lasta-di/blob/c4e123610c53a04cc836c5e456660e32d613447b/src/main/java/org/lastaflute/di/util/tiger/LdiCollectionsUtil.java#L628-L630,2, +Java,save list to file,https://github.com/gosu-lang/gosu-lang/blob/d6e9261b137ce66fef3726cabe7826d4a1f946b7/gosu-core-api/src/main/java/gw/util/perf/InvocationCounter.java#L66-L74,2, +Java,extract data from html content,https://github.com/rapidoid/rapidoid/blob/1775344bcf4abbee289d474b34d553ff6bc821b0/rapidoid-gui/src/main/java/org/rapidoid/html/impl/TagRenderer.java#L66-L70,0, +Java,string to date,https://github.com/gocd/gocd/blob/59a8480e23d6c06de39127635108dff57603cb71/plugin-infra/go-plugin-access/src/main/java/com/thoughtworks/go/plugin/access/notification/v1/StageNotificationDTO.java#L180-L182,0, +Java,postgresql connection,https://github.com/mjdbc/mjdbc/blob/9db720a5b3218df38a1e5e59459045234bb6386b/src/main/java/com/github/mjdbc/DbConnection.java#L40-L50,2, +Java,encode url,https://github.com/osglworks/java-tool/blob/8b6eee2bccb067eb32e6a7bc4a4dfef7a7d9008b/src/main/java/org/osgl/util/IO.java#L1670-L1672,0, +Java,extract data from html content,https://github.com/iipc/webarchive-commons/blob/988bec707c27a01333becfc3bd502af4441ea1e1/src/main/java/org/archive/resource/html/ExtractingParseObserver.java#L437-L452,0, +Java,how to make the checkbox checked,https://github.com/nextreports/nextreports-server/blob/cfce12f5c6d52cb6a739388d50142c6e2e07c55e/src/ro/nextreports/server/web/security/PermissionPanel.java#L100-L105,0, +Java,convert decimal to hex,https://github.com/apache/flink/blob/b62db93bf63cb3bb34dd03d611a779d9e3fc61ac/flink-table/flink-table-runtime-blink/src/main/java/org/apache/flink/table/dataformat/BinaryString.java#L1614-L1656,0, +Java,scatter plot,https://github.com/tvesalainen/util/blob/bba7a44689f638ffabc8be40a75bdc9a33676433/ham/src/main/java/org/vesalainen/ham/fft/Waves.java#L177-L184,0, +Java,convert string to number,https://github.com/spotbugs/spotbugs/blob/f6365c6eea6515035bded38efa4a7c8b46ccf28c/spotbugs/src/main/java/edu/umd/cs/findbugs/ba/jsr305/TypeQualifierValueSet.java#L341-L367,0, +Java,custom http error response,https://github.com/groupon/odo/blob/3bae43d5eca8ace036775e5b2d3ed9af1a9ff9b1/common/src/main/java/com/groupon/odo/common/Common.java#L158-L166,1, +Java,initializing array,https://github.com/couchbase/couchbase-lite-java/blob/cb72c44186456e6191a9ad0a7feb310011d0b081/src/main/java/com/couchbase/lite/internal/fleece/MArray.java#L49-L53,1, +Java,finding time elapsed using a timer,https://github.com/bladecoder/blade-ink/blob/930922099f7073f50f956479adaa3cbd47c70225/src/main/java/com/bladecoder/ink/runtime/Stopwatch.java#L89-L97,3, +Java,get current process id,https://github.com/soklet/soklet/blob/4f12de07d9c132e0126d50ad11cc1d8576594700/src/main/java/com/soklet/web/server/ServerLauncher.java#L223-L233,0, +Java,priority queue,https://github.com/facebookarchive/hadoop-20/blob/2a29bc6ecf30edb1ad8dbde32aa49a317b4d44f4/src/hdfs/org/apache/hadoop/hdfs/server/namenode/UnderReplicatedBlocks.java#L81-L86,1, +Java,k means clustering,https://github.com/Waikato/moa/blob/395982e5100bfe75a3a4d26115462ce2cc74cbb0/moa/src/main/java/moa/clusterers/clustream/WithKmeans.java#L233-L262,2, +Java,get current process id,https://github.com/paypal/SeLion/blob/694d12d0df76db48d0360b16192770c6a4fbdfd2/server/src/main/java/com/paypal/selion/utils/process/AbstractProcessHandler.java#L130-L146,2, +Java,extract latitude and longitude from given input,https://github.com/neo4j-contrib/neo4j-apoc-procedures/blob/e8386975d1c512c0e4388a1a61f5496121c04f86/src/main/java/apoc/spatial/Geocode.java#L321-L330,0, +Java,binomial distribution,https://github.com/kiegroup/jbpm/blob/c3473c728aa382ebbea01e380c5e754a96647b82/jbpm-bpmn2-emfextmodel/src/main/java/bpsim/impl/DocumentRootImpl.java#L267-L269,1, +Java,get executable path,https://github.com/mojohaus/exec-maven-plugin/blob/3296fc845b000b8f4584a5e21805c65c9338fe57/src/main/java/org/codehaus/mojo/exec/ExecMojo.java#L666-L720,0, +Java,how to check if a checkbox is checked,https://github.com/WorldwideAntimalarialResistanceNetwork/WWARN-Maps-Surveyor/blob/224280bcd6e8045bda6b673584caf0aea5e4c841/MapCore/src/main/java/org/wwarn/mapcore/client/components/customwidgets/facet/FacetSearchableCheckBoxWidget.java#L223-L235,2, +Java,priority queue,https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsQueueSenderImpl.java#L63-L67,1, +Java,convert json to csv,https://github.com/apache/incubator-gobblin/blob/f029b4c0fea0fe4aa62f36dda2512344ff708bae/gobblin-core/src/main/java/org/apache/gobblin/source/extractor/utils/Utils.java#L240-L250,0, +Java,how to empty array,https://github.com/canoo/dolphin-platform/blob/fb99c1fab24df80d2fa094d8688b546140146874/platform/dolphin-platform-core/src/main/java/com/canoo/dp/impl/platform/core/Assert.java#L121-L127,0, +Java,html encode string,https://github.com/droidparts/droidparts/blob/e4f782f136e349feeda518fa15d501fd0fec70c0/droidparts/src/org/droidparts/util/Strings.java#L63-L69,1, +Java,how to make the checkbox checked,https://github.com/WorldwideAntimalarialResistanceNetwork/WWARN-Maps-Surveyor/blob/224280bcd6e8045bda6b673584caf0aea5e4c841/MapCore/src/main/java/org/wwarn/mapcore/client/components/customwidgets/facet/FacetSearchableCheckBoxWidget.java#L223-L235,0, +Java,socket recv timeout,https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/UDPTrackerClient.java#L356-L372,3, +Java,converting uint8 array to image,https://github.com/Grasia/phatsim/blob/2d4fc8189be9730b34c8e3e1a08fb4800e01c5df/phat-core/src/main/java/phat/util/PHATImageUtils.java#L240-L275,0, +Java,read properties file,https://github.com/qatools/properties/blob/ae50b460a6bb4fcb21afe888b2e86a7613cd2115/src/main/java/ru/qatools/properties/utils/PropertiesUtils.java#L15-L21,3, +Java,postgresql connection,https://github.com/PureSolTechnologies/genesis/blob/1031027c5edcfeaad670896802058f78a2f7b159/transformation/postgresql/src/main/java/com/puresoltechnologies/genesis/transformation/postgresql/PostgreSQLTransformationSequence.java#L30-L37,3, +Java,parse query string in url,https://github.com/prometheus/client_java/blob/4e0e7527b048f1ffd0382dcb74c0b9dab23b4d9f/simpleclient_httpserver/src/main/java/io/prometheus/client/exporter/HTTPServer.java#L101-L113,3, +Java,map to json,https://github.com/dadoonet/fscrawler/blob/cca00a14e21ef9986aa30e19b160463aed6bf921/tika/src/main/java/fr/pilato/elasticsearch/crawler/fs/tika/XmlDocParser.java#L55-L67,2, +Java,httpclient post json,https://github.com/sailthru/sailthru-java-client/blob/62b491f6a39b41b836bfc021779200d29b6d2069/src/main/com/sailthru/client/AbstractSailthruClient.java#L291-L293,1, +Java,encode url,https://github.com/project-ncl/pnc/blob/85743ca59d14cdf750d6daa8bd0a0a8be390a796/auth/src/main/java/org/jboss/pnc/auth/keycloakutil/util/HttpUtil.java#L285-L291,3, +Java,how to make the checkbox checked,https://github.com/NoraUi/NoraUi/blob/5f491a3339c7d3c20d7207760bdaf2acdb8f260c/src/main/java/com/github/noraui/application/steps/Step.java#L739-L754,3, +Java,sending binary data over a serial connection,https://github.com/Pi4J/pi4j/blob/03cacc62223cc59b3118bfcefadabab979fd84c7/pi4j-core/src/main/java/com/pi4j/jni/Serial.java#L725-L737,2, +Java,nelder mead optimize,https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsp/src/com/ibm/ws/jsp/translator/optimizedtag/impl/JSTLForEachOptimizedTag.java#L152-L175,0, +Java,buffered file reader read text,https://github.com/Unidata/thredds/blob/d2d68f9eee87f345625211324d71d5dc3e162ee1/httpservices/src/main/java/ucar/httpservices/HTTPUtil.java#L568-L579,2, +Java,pretty print json,https://github.com/Azure/azure-sdk-for-java/blob/aab183ddc6686c82ec10386d5a683d2691039626/common/azure-common/src/main/java/com/azure/common/http/policy/HttpLoggingPolicy.java#L166-L177,2, +Java,how to make the checkbox checked,https://github.com/datacleaner/DataCleaner/blob/9aa01fdac3560cef51c55df3cb2ac5c690b57639/desktop/ui/src/main/java/org/datacleaner/widgets/properties/AbstractMultipleCheckboxesPropertyWidget.java#L148-L166,3, +Java,copy to clipboard,https://github.com/TheHortonMachine/hortonmachine/blob/d2b436bbdf951dc1fda56096a42dbc0eae4d35a5/gui/src/main/java/org/hortonmachine/gui/utils/GuiUtilities.java#L237-L241,3, +Java,how to extract zip file recursively,https://github.com/lucee/Lucee/blob/29b153fc4e126e5edb97da937f2ee2e231b87593/core/src/main/java/lucee/runtime/tag/Zip.java#L362-L394,1, +Java,set file attrib hidden,https://github.com/eFaps/eFaps-WebApp/blob/785c1aba0860dd65c673f123214fbe8c24ebdb17/src/main/java/org/efaps/ui/wicket/models/objects/UIRow.java#L114-L120,0, +Java,convert json to csv,https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.product.utility/src/com/ibm/ws/product/utility/extension/IFixCompareCommandTask.java#L553-L568,1, +Java,readonly array,https://github.com/netplex/json-smart-v2/blob/bfb3daef039e22a7bbff5f76bf14ea23330cd70e/json-smart/src/main/java/net/minidev/json/JSONNavi.java#L469-L489,0, +Java,matrix multiply,https://github.com/flow/math/blob/12c1a809720aced976ed22de34fb1457d8eda78f/target/generated-sources/template/com/flowpowered/math/matrix/Matrix2f.java#L125-L129,3,"limited case, but correct." +Java,how to extract zip file recursively,https://github.com/centic9/commons-dost/blob/f6fa4e3e0b943ff103f918824319d8abf33d0e0f/src/main/java/org/dstadler/commons/zip/ZipUtils.java#L338-L377,3, +Java,finding time elapsed using a timer,https://github.com/jayantk/jklol/blob/d27532ca83e212d51066cf28f52621acc3fd44cc/src/com/jayantkrish/jklol/training/DefaultLogFunction.java#L132-L143,1, +Java,matrix multiply,https://github.com/TheHortonMachine/hortonmachine/blob/d2b436bbdf951dc1fda56096a42dbc0eae4d35a5/gears/src/main/java/org/hortonmachine/gears/utils/math/matrixes/Matrix.java#L300-L312,1, +Java,how to empty array,https://github.com/hypercube1024/firefly/blob/ed3fc75b7c54a65b1e7d8141d01b49144bb423a3/firefly-common/src/main/java/com/firefly/utils/lang/ArrayUtils.java#L507-L512,0, +Java,initializing array,https://github.com/DDTH/ddth-dao/blob/8d059ddf641a1629aa53851f9d1b41abf175a180/ddth-dao-core/src/main/java/com/github/ddth/dao/jdbc/AbstractJdbcHelper.java#L201-L204,0, +Java,convert string to number,https://github.com/google/j2objc/blob/471504a735b48d5d4ace51afa1542cc4790a921a/jre_emul/android/platform/external/icu/android_icu4j/src/main/java/android/icu/util/VTimeZone.java#L2058-L2070,0, +Java,converting uint8 array to image,https://github.com/cosysoft/device/blob/d5cd0b713a47aba4d5f3f5d918578336f44ddb9e/device-api/src/main/java/com/github/cosysoft/device/image/ImageUtils.java#L25-L33,0, +Java,finding time elapsed using a timer,https://github.com/bladecoder/blade-ink/blob/930922099f7073f50f956479adaa3cbd47c70225/src/main/java/com/bladecoder/ink/runtime/Stopwatch.java#L47-L55,2, +Java,how to get html of website,https://github.com/ButterFaces/ButterFaces/blob/e8c2bb340c89dcdbac409fcfc7a2a0e07f2462fc/showcase/src/main/java/org/butterfaces/component/showcase/PrettyPrintShowcase.java#L99-L114,1, +Java,connect to sql,https://github.com/Stratio/bdt/blob/55324d19e7497764ad3dd7139923e13eb9841d75/src/main/java/com/stratio/qa/specs/CommonG.java#L2120-L2167,3,bad code; correct thing... +Java,how to get current date,https://github.com/spring-projects/spring-security/blob/98a8467e4c2ae05b3e09c67ece856944fa48ed23/web/src/main/java/org/springframework/security/web/savedrequest/FastHttpDateFormat.java#L125-L138,1, +Java,binomial distribution,https://github.com/deeplearning4j/deeplearning4j/blob/effce52f2afd7eeb53c5bcca699fcd90bd06822f/arbiter/arbiter-core/src/main/java/org/deeplearning4j/arbiter/optimize/distribution/DistributionUtils.java#L106-L148,1, +Java,map to json,https://github.com/gocd/gocd/blob/59a8480e23d6c06de39127635108dff57603cb71/config/config-api/src/main/java/com/thoughtworks/go/domain/Property.java#L86-L90,0, +Java,k means clustering,https://github.com/fozziethebeat/S-Space/blob/a608102737dfd3d59038a9ead33fe60356bc6029/src/main/java/edu/ucla/sspace/wordsi/StreamingWordsi.java#L177-L219,0, +Java,get inner html,https://github.com/hal/elemento/blob/26da2d5a1fe2ec55b779737dbaeda25a942eee61/core/src/main/java/org/jboss/gwt/elemento/core/Elements.java#L798-L802,0, +Java,finding time elapsed using a timer,https://github.com/Netflix/EVCache/blob/f46fdc22c8c52e0e06316c9889439d580c1d38a6/evcache-client/src/main/java/com/netflix/evcache/metrics/EVCacheMetricsFactory.java#L391-L411,0, +Java,encode url,https://github.com/lucee/Lucee/blob/29b153fc4e126e5edb97da937f2ee2e231b87593/core/src/main/java/lucee/runtime/config/XMLConfigAdmin.java#L2176-L2183,3, +Java,get name of enumerated value,https://github.com/JRebirth/JRebirth/blob/93f4fc087b83c73db540333b9686e97b4cec694d/org.jrebirth.af/tooling/ecore2fx/src/main/java/org/jrebirth/tooling/ecore2fx/Ecore2FXGenerator.java#L123-L127,0, +Java,heatmap from 3d coordinates,https://github.com/cdk/cdk/blob/c3d0f16502bf08df50365fee392e11d7c9856657/tool/builder3d/src/main/java/org/openscience/cdk/modeling/builder3d/AtomTetrahedralLigandPlacer3D.java#L293-L320,0, +Java,output to html file,https://github.com/opengeospatial/teamengine/blob/b6b890214b6784bbe19460bf753bdf28a9514bee/teamengine-spi/src/main/java/com/occamlab/te/spi/util/HtmlReport.java#L77-L108,0, +Java,convert string to number,https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/convert/ConverterUtils.java#L35-L56,2, +Java,hash set for counting distinct elements,https://github.com/ozimov/cirneco/blob/78ad782da0a2256634cfbebb2f97ed78c993b999/hamcrest/hamcrest-matchers/src/main/java/it/ozimov/cirneco/hamcrest/collect/IsIterableWithDistinctElements.java#L45-L58,3, +Java,reading element from html - ,https://github.com/phax/ph-oton/blob/f3aaacbbc02a9f3e4f32fe8db8e4adf7b9c1d3ef/ph-oton-html/src/main/java/com/helger/html/markdown/Emitter.java#L420-L553,0, +Java,html entities replace,https://github.com/enasequence/sequencetools/blob/4127f5e1a17540239f5810136153fbd6737fa262/src/main/java/uk/ac/ebi/embl/api/validation/helper/Utils.java#L989-L1035,2, +Java,memoize to disk - persistent memoization,https://github.com/apache/groovy/blob/71cf20addb611bb8d097a59e395fd20bc7f31772/src/main/groovy/groovy/lang/Closure.java#L710-L714,1, +Java,copy to clipboard,https://github.com/CleverTap/clevertap-android-sdk/blob/be134c06a4f07494c398335ad9ff4976633743e1/clevertap-android-sdk/src/main/java/com/clevertap/android/sdk/CTInboxButtonClickListener.java#L65-L72,3, +Java,filter array,https://github.com/eurekaclinical/protempa/blob/5a620d1a407c7a5426d1cf17d47b97717cf71634/protempa-framework/src/main/java/org/protempa/backend/dsb/filter/AbstractFilter.java#L143-L153,0, +Java,how to extract zip file recursively,https://github.com/fabric8io/fabric8-forge/blob/a59871bae4d5c5d3ece10f1e8758e73663087f19/addons/devops/src/main/java/io/fabric8/forge/devops/springboot/UnzipHelper.java#L37-L57,3, +Java,get current observable value,https://github.com/Gridstone/RxStore/blob/24b26831626ca2d94abbc29bef3be72b88637bf7/rxstore/src/main/java/au/com/gridstone/rxstore/RealValueStore.java#L114-L125,0, +Java,unzipping large files,https://github.com/bonigarcia/webdrivermanager/blob/d1f05b58895dd646d4bd7a59b26a4f2ca58872fd/src/main/java/io/github/bonigarcia/wdm/Downloader.java#L208-L244,3, +Java,finding time elapsed using a timer,https://github.com/bladecoder/blade-ink/blob/930922099f7073f50f956479adaa3cbd47c70225/src/main/java/com/bladecoder/ink/runtime/Stopwatch.java#L75-L83,2, +Java,write csv,https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/ads_lib/src/main/java/com/google/api/ads/common/lib/utils/CsvFiles.java#L202-L217,3, +Java,get current observable value,https://github.com/davidmoten/rxjava-jdbc/blob/81e157d7071a825086bde81107b8694684cdff14/src/main/java/com/github/davidmoten/rx/jdbc/QueryUpdateTransformerFromObservable.java#L27-L35,0, +Java,how to read .csv file in an efficient way?,https://github.com/sitoolkit/sit-wt-all/blob/efabde27aa731a5602d2041e137721a22f4fd27a/sit-wt-runtime/src/main/java/io/sitoolkit/wt/infra/csv/CsvFileReader.java#L54-L75,1, +Java,how to make the checkbox checked,https://github.com/nguillaumin/slick2d-maven/blob/8251f88a0ed6a70e726d2468842455cd1f80893f/slick2d-peditor/src/main/java/org/newdawn/slick/tools/peditor/WhiskasPanel.java#L141-L152,3, +Java,string similarity levenshtein,https://github.com/datumbox/datumbox-framework/blob/909dff0476e80834f05ecdde0624dd2390e9b0ca/datumbox-framework-core/src/main/java/com/datumbox/framework/core/common/text/analyzers/PHPSimilarText.java#L84-L99,0, +Java,positions of substrings in string,https://github.com/oblac/jodd/blob/85ad7f813ec0e07ecd27042aeb47ff2047631fa5/jodd-core/src/main/java/jodd/util/StringUtil.java#L673-L695,1, +Java,regex case insensitive,https://github.com/google/error-prone-javac/blob/a53d069bbdb2c60232ed3811c19b65e41c3e60e0/src/jdk.compiler/share/classes/com/sun/tools/javac/util/StringUtils.java#L65-L68,3, +Java,filter array,https://github.com/eurekaclinical/protempa/blob/5a620d1a407c7a5426d1cf17d47b97717cf71634/protempa-framework/src/main/java/org/protempa/backend/dsb/filter/AbstractFilter.java#L117-L125,0, +Java,connect to sql,https://github.com/Teddy-Zhu/SilentGo/blob/27f58b0cafe56b2eb9fc6993efa9ca2b529661e1/orm/src/main/java/com/silentgo/orm/source/jdbc/JDBCPool.java#L107-L123,0, +Java,how to get html of website,https://github.com/phax/ph-oton/blob/f3aaacbbc02a9f3e4f32fe8db8e4adf7b9c1d3ef/ph-oton-html/src/main/java/com/helger/html/hc/html/textlevel/HCA.java#L45-L49,0, +Java,convert html to pdf,https://github.com/structr/structr/blob/c111a1d0c0201c7fea5574ed69aa5a5053185a97/structr-modules/structr-pdf-module/src/main/java/org/structr/pdf/function/PDFFunction.java#L153-L167,0, +Java,string to date,https://github.com/LGoodDatePicker/LGoodDatePicker/blob/c7df05a5fe382e1e08a6237e9391d8dc5fd48692/Project/src/main/java/com/github/lgooddatepicker/components/DatePicker.java#L348-L351,0, +Java,find int in string,https://github.com/echocat/jomon/blob/b3b81dc3f8ca2b17f87492090b86f3b8dea5fe32/runtime/src/main/java/org/echocat/jomon/runtime/StringUtils.java#L145-L173,1, +Java,replace in file,https://github.com/roboconf/roboconf-platform/blob/add54eead479effb138d0ff53a2d637902b82702/miscellaneous/roboconf-doc-generator/src/main/java/net/roboconf/doc/generator/internal/renderers/FopRenderer.java#L256-L283,0, +Java,parse command line argument,https://github.com/QSFT/Doradus/blob/ad64d3c37922eefda68ec8869ef089c1ca604b70/doradus-server/src/main/java/com/dell/doradus/core/ServerConfig.java#L359-L388,1, +Java,how to check if a checkbox is checked,https://github.com/spring-cloud/spring-cloud-consul/blob/e71a13520eae8569751cc881365fe0cfab46c7a5/spring-cloud-consul-discovery/src/main/java/org/springframework/cloud/consul/discovery/ConsulServer.java#L80-L87,0, +Java,save list to file,https://github.com/Unidata/thredds/blob/d2d68f9eee87f345625211324d71d5dc3e162ee1/ui/src/main/java/thredds/ui/catalog/CatalogChooser.java#L311-L321,0, +Java,regex case insensitive,https://github.com/Impetus/Kundera/blob/268958ab1ec09d14ec4d9184f0c8ded7a9158908/src/kundera-mongo/src/main/java/com/impetus/client/mongodb/query/MongoDBQuery.java#L1278-L1284,0, +Java,how to determine a string is a valid word,https://github.com/RestComm/sip-servlets/blob/fd7011d2803ab1d205b140768a760c8c69e0c997/sip-servlets-impl/src/main/java/org/mobicents/servlet/sip/utils/Inet6Util.java#L167-L179,0, +Java,fuzzy match ranking,https://github.com/m-m-m/util/blob/f0e4e084448f8dfc83ca682a9e1618034a094ce6/collection/src/main/java/net/sf/mmm/util/collection/base/RankMap.java#L210-L220,0, +Java,normal distribution,https://github.com/elki-project/elki/blob/b54673327e76198ecd4c8a2a901021f1a9174498/elki-core-math/src/main/java/de/lmu/ifi/dbs/elki/math/statistics/distribution/LogNormalDistribution.java#L200-L205,1, +Java,confusion matrix,https://github.com/jdmp/java-data-mining-package/blob/74e4516b0b7ba8931b71d54d44332e120f675ca9/jdmp-core/src/main/java/org/jdmp/core/algorithm/classification/mlp/MultiLayerNetwork.java#L250-L266,0, +Java,how to get current date,https://github.com/joniles/mpxj/blob/143ea0e195da59cd108f13b3b06328e9542337e8/src/main/java/net/sf/mpxj/utility/TimephasedUtility.java#L59-L95,0, +Java,extract latitude and longitude from given input,https://github.com/algolia/algoliasearch-client-java/blob/a05da2f66c099fe6f77295c7b6a8a12c24e95f9b/src/main/java/com/algolia/search/saas/Query.java#L422-L426,0, +Java,read text file line by line,https://github.com/luhuiguo/chinese-utils/blob/70466411b537f3848dd80bfa44c0fa6d5e390c68/src/main/java/com/luhuiguo/chinese/ChineseUtils.java#L109-L119,1, +Java,how to get html of website,https://github.com/aoindustries/aoweb-framework/blob/8e58af4f5dd898cd2fdb855ffa810a1ca6973ae0/src/main/java/com/aoindustries/website/framework/WebPage.java#L815-L817,1, +Java,convert decimal to hex,https://github.com/alaisi/postgres-async-driver/blob/efd7f1fcf10563fa9c319e698135d3856431093c/src/main/java/com/github/pgasync/conversion/NumericConversions.java#L69-L82,0, +Java,priority queue,https://github.com/deeplearning4j/deeplearning4j/blob/effce52f2afd7eeb53c5bcca699fcd90bd06822f/nd4j/nd4j-common/src/main/java/org/nd4j/linalg/primitives/Counter.java#L293-L300,3, +Java,aes encryption,https://github.com/floragunncom/search-guard-ssl/blob/d17bba4a667aadabc215475e711fd88441d82634/src/main/java/com/floragunn/searchguard/ssl/DefaultSearchGuardKeyStore.java#L71-L82,0, +Java,find int in string,https://github.com/glyptodon/guacamole-client/blob/ea1b10e9d1e3f1fa640dff2ca64d61b44bf1ace9/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-base/src/main/java/org/apache/guacamole/auth/jdbc/base/ActivityRecordSearchTerm.java#L90-L97,0, +Java,finding time elapsed using a timer,https://github.com/Ordinastie/MalisisCore/blob/4f8e1fa462d5c372fc23414482ba9f429881cc54/src/main/java/net/malisis/core/renderer/animation/Animation.java#L150-L163,2, +Java,underline text in label widget,https://github.com/alkacon/opencms-core/blob/bc104acc75d2277df5864da939a1f2de5fdee504/src-gwt/org/opencms/ade/sitemap/client/CmsSitemapTreeItem.java#L772-L778,1, +Java,deducting the median from each column,https://github.com/h2oai/h2o-3/blob/845eb49dfeaadf638b6e2f779d82fac996391fad/h2o-algos/src/main/java/hex/tree/DHistogram.java#L149-L159,0, +Java,regex case insensitive,https://github.com/Netflix/spectator/blob/259318252770de3bad581b85adff187d8f2c6537/spectator-web-spring/src/main/java/com/netflix/spectator/controllers/filter/TagMeasurementFilter.java#L35-L40,2, +Java,extracting data from a text file,https://github.com/google/j2objc/blob/471504a735b48d5d4ace51afa1542cc4790a921a/translator/src/main/java/com/google/devtools/j2objc/util/PackageInfoLookup.java#L156-L194,1, +Java,randomly extract x items from a list,https://github.com/Devskiller/jfairy/blob/126d1c8b1545f725afd10f969b9d27005ac520b7/src/main/java/com/devskiller/jfairy/producer/BaseProducer.java#L81-L84,3, +Java,underline text in label widget,https://github.com/cdk/cdk/blob/c3d0f16502bf08df50365fee392e11d7c9856657/display/renderbasic/src/main/java/org/openscience/cdk/renderer/generators/standard/StandardAtomGenerator.java#L479-L495,0, +Java,set working directory,https://github.com/gocd/gocd/blob/59a8480e23d6c06de39127635108dff57603cb71/common/src/main/java/com/thoughtworks/go/remote/work/BuildWork.java#L277-L291,0, +Java,format date,https://github.com/defei/codelogger-utils/blob/d906f5d217b783c7ae3e53442cd6fb87b20ecc0a/src/main/java/org/codelogger/utils/DateUtils.java#L537-L546,2, +Java,sending binary data over a serial connection,https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.wsoc/src/com/ibm/ws/wsoc/RemoteEndpointBasicImpl.java#L74-L91,1, +Java,copying a file to a path,https://github.com/blademainer/common_utils/blob/ef6baf0367c16de95a28caab67a7d5842a6d13db/common_helper/src/main/java/com/xiongyingqi/util/FileHelper.java#L521-L525,3, +Java,save list to file,https://github.com/brunocvcunha/inutils4j/blob/223c4443c2cee662576ce644e552588fa114aa94/src/main/java/org/brunocvcunha/inutils4j/MyStringUtils.java#L638-L664,2, +Java,convert string to number,https://github.com/spotbugs/spotbugs/blob/f6365c6eea6515035bded38efa4a7c8b46ccf28c/spotbugs/src/main/java/edu/umd/cs/findbugs/classfile/engine/bcel/ValueRangeAnalysisFactory.java#L806-L845,0, +Java,print model summary,https://github.com/h2oai/h2o-2/blob/be350f3f2c2fb6f135cc07c41f83fd0e4f521ac1/src/main/java/water/api/Models.java#L244-L254,0, +Java,find int in string,https://github.com/aoindustries/aocode-public/blob/c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3/src/main/java/com/aoindustries/io/FindReplaceProxy.java#L188-L204,0, +Java,how to randomly pick a number,https://github.com/wisdom-framework/wisdom/blob/a35b6431200fec56b178c0ff60837ed73fd7874d/core/wisdom-vertx-engine/src/main/java/org/wisdom/framework/vertx/Server.java#L344-L350,1, +Java,memoize to disk - persistent memoization,https://github.com/aol/cyclops/blob/59a9fde30190a4d1faeb9f6d9851d209d82b81dd/cyclops/src/main/java/cyclops/data/tuple/Tuple3.java#L86-L107,0, +Java,format date,https://github.com/qiujiayu/autoload-cache-spring-boot-starter/blob/467234e29b3d8905519610947a2e5e3e76ecfdd6/src/main/java/com/jarvis/cache/admin/AutoloadCacheController.java#L125-L131,2, +Java,set file attrib hidden,https://github.com/gwtbootstrap3/gwtbootstrap3-extras/blob/8e42aaffd2a082e9cb23a14c37a3c87b7cbdfa94/src/main/java/org/gwtbootstrap3/extras/select/client/ui/Option.java#L242-L247,0, +Java,memoize to disk - persistent memoization,https://github.com/apache/groovy/blob/71cf20addb611bb8d097a59e395fd20bc7f31772/src/main/groovy/groovy/lang/Closure.java#L737-L741,0, +Java,socket recv timeout,https://github.com/teatrove/teatrove/blob/7039bdd4da6817ff8c737f7e4e07bac7e3ad8bea/trove/src/main/java/org/teatrove/trove/net/SSLSocketFactory.java#L62-L78,1, +Java,string similarity levenshtein,https://github.com/jdereg/java-util/blob/a2dce61aed16d6454ee575174dda1ba6bff0015c/src/main/java/com/cedarsoftware/util/StringUtilities.java#L245-L291,3, +Java,how to get html of website,https://github.com/codescape/bitvunit/blob/cef6d9af60d684e41294981c10b6d92c8f063a4e/bitvunit-core/src/main/java/de/codescape/bitvunit/util/html/HtmlPageUtil.java#L32-L39,3, +Java,parse binary file to custom class,https://github.com/lets-blade/blade/blob/60624ee528be12122c49a9ad1713e336b959e59a/src/main/java/com/blade/ioc/reader/AbstractClassReader.java#L102-L105,0, +Java,get current ip address,https://github.com/baratine/baratine/blob/db34b45c03c5a5e930d8142acc72319125569fcf/web/src/main/java/com/caucho/v5/io/SocketSystem.java#L171-L192,2, +Java,convert decimal to hex,https://github.com/prestodb/presto/blob/89de5e379d8f85e139d292b0add8c537a2a01a88/presto-spi/src/main/java/com/facebook/presto/spi/type/UnscaledDecimal128Arithmetic.java#L183-L190,1, +Java,memoize to disk - persistent memoization,https://github.com/TomasMikula/ReactFX/blob/537fffdbb2958a77dfbca08b712bb2192862e960/reactfx/src/main/java/org/reactfx/collection/MemoizationList.java#L175-L189,0, +Java,how to read the contents of a .gz compressed file?,https://github.com/iipc/webarchive-commons/blob/988bec707c27a01333becfc3bd502af4441ea1e1/src/main/java/org/archive/io/warc/WARCReaderFactory.java#L150-L161,0, +Java,set file attrib hidden,https://github.com/moparisthebest/beehive/blob/4246a0cc40ce3c05f1a02c2da2653ac622703d77/beehive-netui-tags/src/main/java/org/apache/beehive/netui/tags/html/CheckBoxGroup.java#L567-L585,0, +Java,convert int to bool,https://github.com/linkedin/linkedin-utils/blob/ca097410b537fb09847c42037593c0f474c0571f/org.linkedin.util-core/src/main/java/org/linkedin/util/lang/LangUtils.java#L244-L255,1, +Java,convert a utc time to epoch,https://github.com/apache/incubator-gobblin/blob/f029b4c0fea0fe4aa62f36dda2512344ff708bae/gobblin-core/src/main/java/org/apache/gobblin/source/extractor/watermark/TimestampWatermark.java#L135-L144,1, +Java,how to reverse a string,https://github.com/Azure/azure-storage-android/blob/2c643c37c6b8c9081058add284c601a2393afc93/microsoft-azure-storage-samples/src/com/microsoft/azure/storage/samples/table/TableGettingStartedTask.java#L47-L97,0, +Java,extracting data from a text file,https://github.com/mwilliamson/java-mammoth/blob/f2fd5ec08b2b87278f2929d7c15c9ed71fbac8d8/src/main/java/org/zwobble/mammoth/DocumentConverter.java#L101-L103,0, +Java,convert decimal to hex,https://github.com/sjamesr/jfreesane/blob/15ad0f73df0a8d0efec5167a2141cbd53afd862d/src/main/java/au/com/southsky/jfreesane/SanePasswordEncoder.java#L38-L48,1, +Java,normal distribution,https://github.com/ujmp/universal-java-matrix-package/blob/b7e1d293adeadaf35d208ffe8884028d6c06b63b/ujmp-core/src/main/java/org/ujmp/core/util/MathUtil.java#L959-L1044,0, +Java,readonly array,https://github.com/mozilla/rhino/blob/fa8a86df11d37623f5faa8d445a5876612bc47b0/src/org/mozilla/javascript/ScriptableObject.java#L919-L930,0, +Java,postgresql connection,https://github.com/SonarSource/sonarqube/blob/2fffa4c2f79ae3714844d7742796e82822b6a98a/server/sonar-db-migration/src/main/java/org/sonar/server/platform/db/migration/charset/PostgresCharsetHandler.java#L45-L55,0, +Java,convert json to csv,https://github.com/SheetJS/js-xlsx/blob/9a6d8a1d3d80c78dad5201fb389316f935279cdc/demos/altjs/SheetJSRhino.java#L8-L30,0, +Java,get current process id,https://github.com/Activiti/Activiti/blob/82e2b2cd2083b2f734ca0efc7815389c0f2517d9/activiti-bpmn-model/src/main/java/org/activiti/bpmn/model/BpmnModel.java#L115-L122,2, +Java,unzipping large files,https://github.com/CenturyLinkCloud/mdw/blob/91167fe65a25a5d7022cdcf8b0fae8506f5b87ce/mdw-workflow/assets/com/centurylink/mdw/node/WebpackCache.java#L112-L119,1, +Java,deducting the median from each column,https://github.com/elki-project/elki/blob/b54673327e76198ecd4c8a2a901021f1a9174498/elki-core-util/src/main/java/de/lmu/ifi/dbs/elki/utilities/datastructures/QuickSelect.java#L623-L625,1, +Java,sorting multiple arrays based on another arrays sorted order,https://github.com/haifengl/smile/blob/e27e43e90fbaacce3f99d30120cf9dd6a764c33d/math/src/main/java/smile/sort/QuickSort.java#L579-L586,2,ouch... +Java,how to read the contents of a .gz compressed file?,https://github.com/Ardesco/selenium-standalone-server-plugin/blob/e0ecfad426c1a28115cab60def84731d7a4d7e6f/src/main/java/com/lazerycode/selenium/extract/CompressedFile.java#L54-L64,2, +Java,concatenate several file remove header lines,https://github.com/fracpete/deps4j/blob/54679bbbccbc20a3641143baa7138736c9e4a74b/src/main/java/com/github/fracpete/deps4j/MinDeps.java#L286-L309,1, +Java,write csv,https://github.com/OpenEstate/OpenEstate-IO/blob/f961dae78f40823f05a8c0d4e59d639e718aa18a/Examples/src/main/java/org/openestate/io/examples/Is24CsvWritingExample.java#L71-L101,1, +Java,scatter plot,https://github.com/haifengl/smile/blob/e27e43e90fbaacce3f99d30120cf9dd6a764c33d/plot/src/main/java/smile/plot/PlotCanvas.java#L1985-L1995,0, +Java,how to determine a string is a valid word,https://github.com/maochen/NLP/blob/38ae7b384d5295334d9efa9dc4cd901b19d9c27e/CoreNLP-NLP/src/main/java/org/maochen/nlp/ml/classifier/hmm/WordUtils.java#L27-L29,2, +Java,filter array,https://github.com/codeprimate-software/cp-elements/blob/f2163c149fbbef05015e688132064ebcac7c49ab/src/main/java/org/cp/elements/util/ArrayUtils.java#L348-L357,3, +Java,parse query string in url,https://github.com/CenturyLinkCloud/mdw/blob/91167fe65a25a5d7022cdcf8b0fae8506f5b87ce/mdw-common/src/com/centurylink/mdw/util/CallURL.java#L45-L68,2, +Java,parse query string in url,https://github.com/project-ncl/pnc/blob/85743ca59d14cdf750d6daa8bd0a0a8be390a796/common/src/main/java/org/jboss/pnc/common/util/UrlUtils.java#L134-L161,0, +Java,convert int to bool,https://github.com/revapi/revapi/blob/e070b136d977441ab96fdce067a13e7e0423295b/revapi/src/main/java/org/revapi/configuration/XmlToJson.java#L260-L269,0, +Java,how to read the contents of a .gz compressed file?,https://github.com/truward/metrics4j/blob/6e81c00ce24e008c029cce875d44f667e2bc978c/metrics4j-json-log/src/main/java/com/truward/metrics/json/internal/appender/RollingJacksonMapAppender.java#L186-L231,0, +Java,concatenate several file remove header lines,https://github.com/facebookarchive/hadoop-20/blob/2a29bc6ecf30edb1ad8dbde32aa49a317b4d44f4/src/contrib/dynamicclouds/src/java/org/apache/hadoop/mapred/TTMover.java#L111-L153,0, +Java,how to reverse a string,https://github.com/oblac/jodd/blob/85ad7f813ec0e07ecd27042aeb47ff2047631fa5/jodd-core/src/main/java/jodd/util/StringUtil.java#L2547-L2553,2,"While this is good, there is a shorter implementation = +return new StringBuilder(s).reverse().toString()" +Java,concatenate several file remove header lines,https://github.com/termsuite/termsuite-core/blob/731e5d0bc7c14180713c01a9c7dffe1925f26130/src/eval/java/fr/univnantes/termsuite/eval/resources/Tsv3ColFile.java#L69-L92,0, +Java,find int in string,https://github.com/FudanNLP/fnlp/blob/ce258f3e4a5add2ba0b5e4cbac7cab2190af6659/fnlp-train/src/main/java/org/fnlp/nlp/cn/rl/RLSeg.java#L158-L166,1, +Java,positions of substrings in string,https://github.com/neuland/jade4j/blob/621907732fb88c1b0145733624751f0fcaca2ff7/src/main/java/de/neuland/jade4j/lexer/Lexer.java#L898-L900,0, +Java,concatenate several file remove header lines,https://github.com/play2-maven-plugin/play2-maven-plugin/blob/34e174b02c4245cfad64abd230f3cbeda9d9b2f4/play2-providers/play2-provider-play23/src/main/java/com/google/code/play2/provider/play23/Play23LessCompiler.java#L80-L93,1, +Java,priority queue,https://github.com/landawn/AbacusUtil/blob/544b7720175d15e9329f83dd22a8cc5fa4515e12/src/com/landawn/abacus/util/N.java#L3487-L3500,3, +Java,get inner html,https://github.com/fhoeben/hsac-fitnesse-fixtures/blob/4e9018d7386a9aa65bfcbf07eb28ae064edd1732/src/main/java/nl/hsac/fitnesse/fixture/util/selenium/SeleniumHelper.java#L1040-L1069,0, +Java,regex case insensitive,https://github.com/lawloretienne/Trestle/blob/f5d16252000a8a08807679ac8de1b6883aeb06df/sample/src/main/java/com/etiennelawlor/trestle/fragments/MainFragment.java#L221-L234,2, +Java,underline text in label widget,https://github.com/massimozappino/tagmycode-java-plugin-framework/blob/06637e32bf737e3e0d318859c718815edac9d0f0/src/main/java/com/tagmycode/plugin/gui/form/AboutDialog.java#L42-L44,0, +Java,binomial distribution,https://github.com/deeplearning4j/deeplearning4j/blob/effce52f2afd7eeb53c5bcca699fcd90bd06822f/nd4j/nd4j-backends/nd4j-api-parent/nd4j-api/src/main/java/org/nd4j/autodiff/functions/DifferentialFunctionFactory.java#L222-L224,3, +Java,get current process id,https://github.com/youseries/uflo/blob/b1e4114c4f5647d346ba54a46611dface3b69684/uflo-console/src/main/java/com/bstek/uflo/console/handler/impl/diagram/ProcessDiagramServletHandler.java#L336-L361,0, +Java,randomly extract x items from a list,https://github.com/Devskiller/jfairy/blob/126d1c8b1545f725afd10f969b9d27005ac520b7/src/main/java/com/devskiller/jfairy/producer/BaseProducer.java#L68-L79,1, +Java,heatmap from 3d coordinates,https://github.com/vipshop/vjtools/blob/60c743da35913d72f37f2d79afa90ad2bf73cb89/vjmap/src/main/java/com/vip/vjtools/vjmap/oops/SurvivorAccessor.java#L31-L121,0, +Java,aes encryption,https://github.com/blackdoor/blackdoor/blob/060c7a71dfafb85e10e8717736e6d3160262e96b/src/main/java/black/door/crypto/Crypto.java#L174-L184,3, +Java,create cookie,https://github.com/streamsets/datacollector/blob/ea63245ea14d59d5229248387f0628f46131eae5/sso/src/main/java/com/streamsets/lib/security/http/AuthenticationResourceHandler.java#L45-L61,3, +Java,extract data from html content,https://github.com/datumbox/datumbox-framework/blob/909dff0476e80834f05ecdde0624dd2390e9b0ca/datumbox-framework-core/src/main/java/com/datumbox/framework/core/common/text/parsers/HTMLParser.java#L439-L454,2,"argh, aweful code..." +Java,how to extract zip file recursively,https://github.com/NitorCreations/willow/blob/914911697426b5b95756a099de373438ffa12026/willow-download/src/main/java/com/nitorcreations/willow/download/Extractor.java#L151-L160,3, +Java,fuzzy match ranking,https://github.com/wg/lettuce/blob/5141640dc8289ff3af07b44a87020cef719c5f4a/src/main/java/com/lambdaworks/redis/RedisConnection.java#L783-L785,0, +Java,unique elements,https://github.com/drinkjava2/jDialects/blob/1c165f09c6042a599b681c279024abcc1b848b88/core/src/main/java/com/github/drinkjava2/jdialects/model/TableModel.java#L385-L391,1, +Java,k means clustering,https://github.com/Waikato/moa/blob/395982e5100bfe75a3a4d26115462ce2cc74cbb0/moa/src/main/java/moa/clusterers/clustream/WithKmeans.java#L365-L405,1, +Java,how to reverse a string,https://github.com/google/guava/blob/7155d12b70a2406fa84d94d4b8b3bc108e89abfd/guava/src/com/google/common/collect/ReverseOrdering.java#L40-L44,0, +Java,initializing array,https://github.com/nutzam/nutz/blob/a38694d5cbda2692e7931ab093c168487a6a4bfe/src/org/nutz/repo/org/objectweb/asm/Frame.java#L851-L864,3, +Java,regex case insensitive,https://github.com/galenframework/galen/blob/6c7dc1f11d097e6aa49c45d6a77ee688741657a4/galen-core/src/main/java/com/galenframework/utils/GalenUtils.java#L419-L422,1, +Java,confusion matrix,https://github.com/habernal/confusion-matrix/blob/d0310f0aeda0fa74a9d42bcb190db7250bf49ecc/src/main/java/com/github/habernal/confusionmatrix/ConfusionMatrix.java#L646-L659,3, +Java,set working directory,https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/util/dbhandling/TorqueDBHandling.java#L640-L649,0, +Java,hash set for counting distinct elements,https://github.com/querydsl/querydsl/blob/2bf234caf78549813a1e0f44d9c30ecc5ef734e3/querydsl-core/src/main/java/com/querydsl/core/types/dsl/SimpleExpression.java#L110-L115,0, +Java,matrix multiply,https://github.com/TheHortonMachine/hortonmachine/blob/d2b436bbdf951dc1fda56096a42dbc0eae4d35a5/gears/src/main/java/org/hortonmachine/gears/utils/math/matrixes/Matrix.java#L320-L342,3, +Java,read properties file,https://github.com/jboss/jboss-common-core/blob/c191bb18db83fa106c6913cf34ed47989b65dc97/src/main/java/org/jboss/util/xml/catalog/CatalogManager.java#L245-L282,1, +Java,find int in string,https://github.com/craftercms/profile/blob/d829c1136b0fd21d87dc925cb7046cbd38a300a4/server/src/main/java/org/craftercms/profile/repositories/impl/ProfileRepositoryImpl.java#L317-L327,0, +Java,extract data from html content,https://github.com/raydac/netbeans-mmd-plugin/blob/997493d23556a25354372b6419a64a0fbd0ac6ba/mind-map/mind-map-swing-panel/src/main/java/com/igormaznitsa/mindmap/plugins/importers/XMind2MindMapImporter.java#L163-L183,1, +Java,format date,https://github.com/SimplicityApks/ReminderDatePicker/blob/7596fbac77a5d26f687fec11758935a2b7db156f/lib/src/main/java/com/simplicityapks/reminderdatepicker/lib/DateSpinner.java#L294-L299,3, +Java,create cookie,https://github.com/hibegin/simplewebserver/blob/262df49e1cd75df8d8c6469ac55204208ff8eeec/src/main/java/com/hibegin/http/server/impl/SimpleHttpRequest.java#L104-L131,2, +Java,get inner html,https://github.com/sdl/Testy/blob/b3ae061554016f926f04694a39ff00dab7576609/src/main/java/com/sdl/selenium/WebLocatorSuggestions.java#L43-L58,3, +Java,how to get database table name,https://github.com/tony19/logback-android/blob/028489c11ccfc1237a53923db06f22a90b41809c/logback-android/src/main/java/ch/qos/logback/classic/db/SQLBuilder.java#L89-L105,0, +Java,how to get database table name,https://github.com/ivanceras/orm/blob/e63213cb8abefd11df0e2d34b1c95477788e600e/src/main/java/com/ivanceras/db/server/core/DB_PostgreSQL.java#L88-L133,1, +Java,how to reverse a string,https://github.com/xiancloud/xian/blob/1948e088545553d2745b2c86d8b5a64988bb850e/xian-core/src/main/java/info/xiancloud/core/util/StringUtil.java#L116-L119,3, +Java,k means clustering,https://github.com/Waikato/moa/blob/395982e5100bfe75a3a4d26115462ce2cc74cbb0/moa/src/main/java/moa/clusterers/kmeanspm/CoresetKMeans.java#L107-L183,3, +Java,extract data from html content,https://github.com/andriusvelykis/reflow-maven-skin/blob/01170ae1426a1adfe7cc9c199e77aaa2ecb37ef2/reflow-velocity-tools/src/main/java/lt/velykis/maven/skins/reflow/HtmlTool.java#L501-L522,1, +Java,how to read .csv file in an efficient way?,https://github.com/sitoolkit/sit-util-td/blob/63afd9909c9d404e93884b449f8bf48e867c80de/src/main/java/io/sitoolkit/util/tabledata/csv/CsvReader.java#L23-L57,1, +Java,convert a date string into yyyymmdd,https://github.com/BorderTech/wcomponents/blob/d1a2b2243270067db030feb36ca74255aaa94436/wcomponents-core/src/main/java/com/github/bordertech/wcomponents/WPartialDateField.java#L345-L384,1, +Java,regex case insensitive,https://github.com/ModeShape/modeshape/blob/794cfdabb67a90f24629c4fff0424a6125f8f95b/modeshape-jdbc-local/src/main/java/org/modeshape/jdbc/JcrType.java#L207-L218,0, +Java,reading element from html - ,https://github.com/Unidata/thredds/blob/d2d68f9eee87f345625211324d71d5dc3e162ee1/bufr/src/main/java/ucar/nc2/iosp/bufr/tables/WmoXmlReader.java#L175-L245,1, +Java,get current observable value,https://github.com/ReactiveX/RxJavaFX/blob/8f44d4cc1caba9a8919f01cb1897aaea5514c7e5/src/main/java/io/reactivex/rxjavafx/sources/ObservableValueSource.java#L30-L43,0, +Java,postgresql connection,https://github.com/SonarSource/sonarqube/blob/2fffa4c2f79ae3714844d7742796e82822b6a98a/server/sonar-db-migration/src/main/java/org/sonar/server/platform/db/migration/step/DdlChange.java#L49-L53,0, +Java,how to get html of website,https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.kernel.boot.nested/src/com/ibm/ws/kernel/launch/internal/FrameworkManager.java#L366-L385,0, +Java,sort string list,https://github.com/Squarespace/cldr/blob/54b752d4ec2457df56e98461618f9c0eec41e1e1/runtime/src/main/java/com/squarespace/cldr/PartitionTable.java#L156-L158,2, +Java,normal distribution,https://github.com/jpmml/jpmml-evaluator/blob/ac8a48775877b6fa9dbc5f259871f3278489cc61/pmml-evaluator/src/main/java/org/jpmml/evaluator/DistributionUtil.java#L37-L49,2, +Java,print model summary,https://github.com/h2oai/h2o-2/blob/be350f3f2c2fb6f135cc07c41f83fd0e4f521ac1/src/main/java/water/api/Models.java#L148-L162,1, +Java,get current observable value,https://github.com/pwittchen/prefser/blob/7dc7f980eeb71fd5617f8c749050c2400e4fbb2f/library/src/main/java/com/github/pwittchen/prefser/library/rx2/Prefser.java#L147-L149,0, +Java,extracting data from a text file,https://github.com/opendatatrentino/s-match/blob/ba5982ef406b7010c2f92592e43887a485935aa1/src/main/java/it/unitn/disi/smatch/oracles/wordnet/WordNet.java#L597-L611,2, +Java,html entities replace,https://github.com/shekhargulati/strman-java/blob/d0c2a10a6273fd6082f084e95156653ca55ce1be/src/main/java/strman/Strman.java#L955-L959,2, +Java,matrix multiply,https://github.com/fommil/matrix-toolkits-java/blob/6157618bc86bcda3749af2a60bf869d8f3292960/src/main/java/no/uib/cipr/matrix/KR.java#L72-L84,3,"Not the standard multiplication, but correct." +Java,pretty print json,https://github.com/oglimmer/utils/blob/bc46c57a24e60c9dbda4c73a810c163b0ce407ea/src/main/java/de/oglimmer/utils/AbstractProperties.java#L185-L196,2, +Java,map to json,https://github.com/yunify/qingstor-sdk-java/blob/b44a228a99e60e4d6e5a450b7c05972552ab9962/src/main/java/com/qingstor/sdk/utils/QSJSONUtil.java#L31-L38,1, +Java,export to excel,https://github.com/overturetool/overture/blob/83175dc6c24fa171cde4fcf61ecb648eba3bdbc1/core/codegen/platform/src/main/java/org/overture/codegen/visitor/ExportsVisitorIR.java#L16-L43,0, +Java,readonly array,https://github.com/loldevs/riotapi/blob/0b8aac407aa5289845f249024f9732332855544f/domain/src/main/java/net/boreeas/riotapi/rtmp/serialization/AmfReader.java#L201-L211,0, +Java,extract latitude and longitude from given input,https://github.com/iovation/launchkey-java/blob/ceecc70b9b04af07ddc14c57d4bcc933a4e0379c/integration/src/main/java/com/iovation/launchkey/sdk/integration/ServiceAuthorizationPolicySteps.java#L65-L69,0, +Java,string to date,https://github.com/jeremiehuchet/acrachilisync/blob/4eadb0218623e77e0d92b5a08515eea2db51e988/acrachilisync-core/src/main/java/fr/dudie/acrachilisync/model/AcraReport.java#L95-L109,1, +Java,sort string list,https://github.com/jpaoletti/java-presentation-manager/blob/d5aab55638383695db244744b4bfe27c5200e04f/modules/jpm-core/src/main/java/jpaoletti/jpm/core/PaginatedList.java#L93-L98,1, +Java,initializing array,https://github.com/derari/cthul/blob/74a31e3cb6a94f5f25cc5253d1dbd42e19a17ebc/strings/src/main/java/org/cthul/strings/format/PatternData.java#L33-L38,1, +Java,replace in file,https://github.com/ops4j/org.ops4j.pax.web/blob/9ecf3676c1d316be0d43ea7fcfdc8f0defffc2a2/pax-web-spi/src/main/java/org/ops4j/pax/web/service/spi/util/Path.java#L61-L67,0, +Java,json to xml conversion,https://github.com/abola/CrawlerPack/blob/a7b7703b7fad519994dc04a9c51d90adc11d618f/src/main/java/com/github/abola/crawler/CrawlerPack.java#L235-L245,1,argh +Java,finding time elapsed using a timer,https://github.com/opengeospatial/teamengine/blob/b6b890214b6784bbe19460bf753bdf28a9514bee/teamengine-core/src/main/java/com/occamlab/te/util/Stopwatch.java#L31-L39,2, +Java,reading element from html - ,https://github.com/jmapper-framework/jmapper-core/blob/b48fd3527f35055b8b4a30f53a51136f183acc90/JMapper Framework/src/main/java/com/googlecode/jmapper/RelationalJMapper.java#L371-L374,0, +Java,set working directory,https://github.com/spring-projects/spring-security/blob/98a8467e4c2ae05b3e09c67ece856944fa48ed23/ldap/src/main/java/org/springframework/security/ldap/server/ApacheDSContainer.java#L165-L183,2, +Java,write csv,https://github.com/jtablesaw/tablesaw/blob/68a75b4098ac677e9486df5572cf13ec39f9f701/core/src/main/java/tech/tablesaw/io/DataFrameWriter.java#L77-L80,3, +Java,memoize to disk - persistent memoization,https://github.com/functional-reactive/functional-reactive-lib/blob/5479c6eee41ce64cb806e5b1dea6e4a6a8447ada/src/main/java/org/rapidpm/frp/memoizer/Memoizer.java#L83-L85,0, +Java,convert json to csv,https://github.com/codingapi/tx-lcn/blob/1f95ecd4b845d91c7a5920a1fbfd8f682d6f40a6/txlcn-tc/src/main/java/com/codingapi/txlcn/tc/support/p6spy/common/P6Util.java#L176-L182,0, +Java,read text file line by line,https://github.com/gosu-lang/gosu-lang/blob/d6e9261b137ce66fef3726cabe7826d4a1f946b7/gosu-lab/src/main/java/editor/search/SearchTree.java#L103-L121,3, +Java,html encode string,https://github.com/WolfgangFahl/Mediawiki-Japi/blob/78d0177ebfe02eb05da5550839727861f1e888a5/src/main/java/com/bitplan/mediawiki/japi/Mediawiki.java#L814-L820,0, +Java,normal distribution,https://github.com/jpmml/jpmml-evaluator/blob/ac8a48775877b6fa9dbc5f259871f3278489cc61/pmml-evaluator/src/main/java/org/jpmml/evaluator/DistributionUtil.java#L51-L56,3, +Java,encode url,https://github.com/pdef/pdef-java/blob/7776c44d1aab0f3dbf7267b0c32b8f9282fe6167/pdef/src/main/java/io/pdef/rpc/RpcProtocol.java#L237-L243,3, +Java,how to make the checkbox checked,https://github.com/datacleaner/DataCleaner/blob/9aa01fdac3560cef51c55df3cb2ac5c690b57639/desktop/ui/src/main/java/org/datacleaner/windows/FixedWidthDatastoreDialog.java#L118-L125,0, +Java,export to excel,https://github.com/database-rider/database-rider/blob/7545cc31118df9cfef3f89e27223b433a24fb5dd/rider-cdi/src/main/java/com/github/database/rider/cdi/DataSetProcessor.java#L118-L133,0, +Java,concatenate several file remove header lines,https://github.com/openengsb/openengsb/blob/d39058000707f617cd405629f9bc7f17da7b414a/tooling/wsdl2dll/src/main/java/org/openengsb/loom/csharp/comon/wsdltodll/csfilehandling/FileComparer.java#L131-L138,0, +Java,read text file line by line,https://github.com/enasequence/sequencetools/blob/4127f5e1a17540239f5810136153fbd6737fa262/src/main/java/uk/ac/ebi/embl/gff3/reader/GFF3AbstractLineReader.java#L52-L60,1, +Java,get the description of a http status code,https://github.com/Addicticks/httpsupload/blob/261a8e63ec923482a74ffe1352024c1900c55a55/src/main/java/com/addicticks/net/httpsupload/Utils.java#L427-L434,2, +Java,nelder mead optimize,https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsp/src/com/ibm/ws/jsp/translator/optimizedtag/impl/JSTLWhenOptimizedTag.java#L19-L25,0, +Java,scatter plot,https://github.com/haifengl/smile/blob/e27e43e90fbaacce3f99d30120cf9dd6a764c33d/demo/src/main/java/smile/demo/classification/ClassificationDemo.java#L123-L129,3, +Java,extract latitude and longitude from given input,https://github.com/jenetics/jpx/blob/58fefc10580602d07f1480d6a5886d13a553ff8f/jpx/src/main/java/io/jenetics/jpx/format/Location.java#L158-L160,0, +Java,parse binary file to custom class,https://github.com/jamesagnew/hapi-fhir/blob/150a84d52fe691b7f48fcb28247c4bddb7aec352/hapi-fhir-structures-dstu3/src/main/java/org/hl7/fhir/dstu3/formats/JsonParser.java#L2623-L2627,1, +Java,linear regression,https://github.com/versionone/VersionOne.SDK.Java.ObjectModel/blob/59d35b67c849299631bca45ee94143237eb2ae1a/src/main/java/com/versionone/om/V1InstanceCreator.java#L1112-L1114,0, +Java,how to randomly pick a number,https://github.com/facebookarchive/hadoop-20/blob/2a29bc6ecf30edb1ad8dbde32aa49a317b4d44f4/src/contrib/benchmark/src/java/org/apache/hadoop/mapred/DatanodeBenThread.java#L275-L312,2, +Java,format date,https://github.com/Erudika/para/blob/5ba096c477042ea7b18e9a0e8b5b1ee0f5bd6ce9/para-client/src/main/java/com/erudika/para/client/ParaClient.java#L1196-L1201,0, +Java,html entities replace,https://github.com/maxirosson/jdroid-android/blob/1ba9cae56a16fa36bdb2c9c04379853f0300707f/jdroid-android-sqlite/src/main/java/com/jdroid/android/sqlite/repository/StringEntityRepository.java#L87-L95,0, +Java,get current observable value,https://github.com/OpenNMS/newts/blob/e1b53169d8a7fbc5e9fb826da08d602f628063ea/examples/gsod/src/main/java/org/opennms/newts/gsod/ImportRunner.java#L581-L593,1, +Java,randomly extract x items from a list,https://github.com/kiegroup/optaplanner/blob/b8f1459b4e6b0f7aafe941fd165bff640c11d7d5/optaplanner-examples/src/main/java/org/optaplanner/examples/common/persistence/generator/ProbabilisticDataGenerator.java#L30-L36,2, +Java,filter array,https://github.com/cogroo/cogroo4/blob/b6228900c20c6b37eac10a03708a9669dd562f52/cogroo-nlp/src/main/java/org/cogroo/tools/postag/PortuguesePOSSequenceValidator.java#L106-L114,3, +Java,get all parents of xml node,https://github.com/hal/core/blob/d6d03f0bb128dc0470f5dc75fdb1ea1014400602/gui/src/main/java/org/jboss/as/console/client/shared/model/SubsystemStore.java#L139-L147,0, +Java,sorting multiple arrays based on another arrays sorted order,https://github.com/goldmansachs/gs-collections/blob/fa8bf3e103689efa18bca2ab70203e71cde34b52/collections/src/main/java/com/gs/collections/impl/list/primitive/IntInterval.java#L762-L773,0, +Java,get inner html,https://github.com/strator-dev/greenpepper/blob/2a61e6c179b74085babcc559d677490b0cad2d30/greenpepper-open/confluence/greenpepper-confluence-code/src/main/java/com/greenpepper/confluence/actions/execution/ShowExecutionResultAction.java#L184-L190,0, +Java,how to empty array,https://github.com/amaembo/streamex/blob/936bbd1b7dfbcf64a3b990682bfc848213441d14/src/main/java/one/util/streamex/StreamEx.java#L837-L844,0, +Java,parse binary file to custom class,https://github.com/yasserg/crawler4j/blob/4fcddc86414d1831973aff94050af55c7aeff3bc/crawler4j/src/main/java/edu/uci/ics/crawler4j/parser/Parser.java#L64-L134,1, +Java,get current observable value,https://github.com/davidmoten/rxjava-jdbc/blob/81e157d7071a825086bde81107b8694684cdff14/src/main/java/com/github/davidmoten/rx/jdbc/QuerySelectTransformer.java#L35-L53,0, +Java,how to read .csv file in an efficient way?,https://github.com/nguillaumin/slick2d-maven/blob/8251f88a0ed6a70e726d2468842455cd1f80893f/slick2d-hiero/src/main/java/org/newdawn/slick/tools/hiero/truetype/TTFFile.java#L252-L441,0,There are Java libraries to read CSVs. This is too complex. +Java,convert json to csv,https://github.com/pippo-java/pippo/blob/cb5ccb453bffcc3cf386adc660674812d10b9726/pippo-content-type-parent/pippo-csv/src/main/java/ro/pippo/csv/CsvEngine.java#L145-L170,0, +Java,filter array,https://github.com/ical4j/ical4j/blob/7ac4bd1ce2bb2e0a2906fb69a56fbd2d9d974156/src/main/java/net/fortuna/ical4j/filter/Filter.java#L156-L167,2, +Java,convert int to string,https://github.com/Squarespace/cldr/blob/54b752d4ec2457df56e98461618f9c0eec41e1e1/runtime/src/main/java/com/squarespace/cldr/MessageArgsDecimalParser.java#L147-L149,0, +Java,export to excel,https://github.com/javydreamercsw/validation-manager/blob/ae7d74f514c8fd5a841c5d459cd1cc5445b51630/VM-Core/src/main/java/com/validation/manager/core/tool/step/importer/StepImporter.java#L265-L297,3, +Java,read properties file,https://github.com/taimos/dvalin/blob/ff8f1bf594e43d7e8ca8de0b4da9f923b66a1a47/daemon/src/main/java/de/taimos/daemon/properties/CloudConductorPropertyProvider.java#L98-L123,3, +Java,heatmap from 3d coordinates,https://github.com/elki-project/elki/blob/b54673327e76198ecd4c8a2a901021f1a9174498/addons/3dpc/src/main/java/de/lmu/ifi/dbs/elki/visualization/parallel3d/util/Arcball1DOFAdapter.java#L120-L135,0, +Java,matrix multiply,https://github.com/tvesalainen/util/blob/bba7a44689f638ffabc8be40a75bdc9a33676433/util/src/main/java/org/vesalainen/math/matrix/DoubleMatrix.java#L256-L267,0, +Java,write csv,https://github.com/casmi/casmi-io/blob/fa2d2240702a031ee184813a74f84bfddef863e6/src/main/java/casmi/io/parser/CSV.java#L226-L231,1, +Java,format date,https://github.com/AltBeacon/android-beacon-library/blob/f7f3a323ea7415d53e7bd695ff6a01f1501d5dc3/lib/src/main/java/org/altbeacon/beacon/service/Stats.java#L109-L117,3, +Java,html entities replace,https://github.com/brunocvcunha/inutils4j/blob/223c4443c2cee662576ce644e552588fa114aa94/src/main/java/org/brunocvcunha/inutils4j/MyStringUtils.java#L2096-L2107,3, +Java,convert int to bool,https://github.com/ManfredTremmel/gwt-commons-lang3/blob/9e2dfbbda3668cfa5d935fe76479d1426c294504/src/main/java/org/apache/commons/lang3/BooleanUtils.java#L464-L469,0, +Java,replace in file,https://github.com/beangle/beangle3/blob/33df2873a5f38e28ac174a1d3b8144eb2f808e64/commons/core/src/main/java/org/beangle/commons/text/replace/BatchReplaceMain.java#L119-L147,0, +Java,postgresql connection,https://github.com/pgjdbc/pgjdbc/blob/95ba7b261e39754674c5817695ae5ebf9a341fae/pgjdbc/src/main/java/org/postgresql/jdbc/TimestampUtils.java#L1354-L1370,0, +Java,get all parents of xml node,https://github.com/jfoenixadmin/JFoenix/blob/53235b5f561da4a515ef716059b8a8df5239ffa1/jfoenix/src/main/java/com/jfoenix/utils/JFXHighlighter.java#L145-L152,0, +Java,how to extract zip file recursively,https://github.com/centic9/commons-dost/blob/f6fa4e3e0b943ff103f918824319d8abf33d0e0f/src/main/java/org/dstadler/commons/zip/ZipUtils.java#L390-L426,3, +Java,print model summary,https://github.com/dmak/jaxb-xew-plugin/blob/d564d6bf8e50c46b056cdb4b46d1d4bee4adfbe3/src/main/java/com/sun/tools/xjc/addon/xew/config/GlobalConfiguration.java#L163-L169,1, +Java,string similarity levenshtein,https://github.com/exoplatform/jcr/blob/3e7f9ee1b5683640d73a4316fb4b0ad5eac5b8a2/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/core/query/lucene/SearchIndex.java#L3167-L3186,0, +Java,copying a file to a path,https://github.com/ldp4j/ldp4j/blob/4236dfb3a746be390155c1056bbb5a8d4dccc49f/commons/core/src/main/java/org/ldp4j/net/Path.java#L280-L284,0, +Java,copy to clipboard,https://github.com/percolate/caffeine/blob/e2265cab474a6397f4d75b1ed928c356a7b9672e/caffeine/src/main/java/com/percolate/caffeine/ClipboardUtils.java#L17-L27,1, +Java,parse json file,https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/frontend/org/voltdb/utils/Collector.java#L222-L249,3, +Java,convert a date string into yyyymmdd,https://github.com/francesco-ficarola/gexf4j/blob/24199ed172c5457b2293cee4ec1c7a83910239f0/src/main/java/it/uniroma1/dis/wsngroup/gexf4j/core/impl/writer/AbstractEntityWriter.java#L35-L43,3, +Java,convert a date string into yyyymmdd,https://github.com/knightliao/apollo/blob/d7a283659fa3e67af6375db8969b2d065a8ce6eb/src/main/java/com/github/knightliao/apollo/utils/time/DateUtils.java#L443-L450,0, +Java,how to read the contents of a .gz compressed file?,https://github.com/facebookarchive/hadoop-20/blob/2a29bc6ecf30edb1ad8dbde32aa49a317b4d44f4/src/contrib/failmon/src/java/org/apache/hadoop/contrib/failmon/LocalStore.java#L206-L221,3, +Java,fuzzy match ranking,https://github.com/codelibs/fess/blob/e5e4b722549d32a4958dfd94965b21937bfe64cf/src/main/java/org/codelibs/fess/helper/QueryHelper.java#L522-L540,0, +Java,how to determine a string is a valid word,https://github.com/datumbox/datumbox-framework/blob/909dff0476e80834f05ecdde0624dd2390e9b0ca/datumbox-framework-core/src/main/java/com/datumbox/framework/core/common/text/extractors/NgramsExtractor.java#L283-L295,1, +Java,json to xml conversion,https://github.com/osglworks/java-tool/blob/8b6eee2bccb067eb32e6a7bc4a4dfef7a7d9008b/src/main/java/org/osgl/util/converter/JsonObjectToXmlDocument.java#L29-L32,1, +Java,heatmap from 3d coordinates,https://github.com/jMotif/SAX/blob/39ee07a69facaa330def5130b8790aeda85f1061/src/main/java/net/seninp/util/HeatChart.java#L1393-L1409,1, +Java,sending binary data over a serial connection,https://github.com/Pi4J/pi4j/blob/03cacc62223cc59b3118bfcefadabab979fd84c7/pi4j-example/src/main/java/WiringPiSerialExample.java#L34-L62,3, +Java,parse binary file to custom class,https://github.com/jamesagnew/hapi-fhir/blob/150a84d52fe691b7f48fcb28247c4bddb7aec352/hapi-fhir-structures-dstu3/src/main/java/org/hl7/fhir/dstu3/formats/JsonParser.java#L144-L147,0, +Java,html encode string,https://github.com/gitbucket/markedj/blob/5e689b58e11d8403c561a9390eb0b21347ca809f/src/main/java/io/github/gitbucket/markedj/Utils.java#L12-L19,2, +Java,how to make the checkbox checked,https://github.com/sirthias/pegdown/blob/19ca3d3d2bea5df19eb885260ab24f1200a16452/src/main/java/org/pegdown/ToHtmlSerializer.java#L151-L179,2, +Java,read text file line by line,https://github.com/jenkinsci/support-core-plugin/blob/bcbe1dfd5bf48ac89903645cd48ed897c1a04688/src/main/java/com/cloudbees/jenkins/support/api/FileContent.java#L169-L190,0, +Java,how to reverse a string,https://github.com/dihedron/dihedron-commons/blob/a5194cdaa0d6417ef4aade6ea407a1cad6e8458e/src/main/java/org/dihedron/core/strings/Strings.java#L460-L465,3, +Java,how to empty array,https://github.com/prestodb/presto/blob/89de5e379d8f85e139d292b0add8c537a2a01a88/presto-array/src/main/java/com/facebook/presto/array/IntBigArray.java#L136-L150,0, +Java,get all parents of xml node,https://github.com/Hygieia/Hygieia/blob/d8b67a590da2744acf59bcd99d9b34ef1bb84890/api/src/main/java/com/capitalone/dashboard/webhook/github/GitHubCommitV3.java#L338-L351,0, +Java,custom http error response,https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.social/src/com/ibm/ws/security/social/error/ErrorHandlerImpl.java#L56-L69,0, +Java,extract latitude and longitude from given input,https://github.com/robolectric/robolectric/blob/4fa79a2c72f8abbf742ab920419653c207b41d62/shadows/framework/src/main/java/org/robolectric/shadows/ShadowGeocoder.java#L32-L42,0, +Java,create cookie,https://github.com/couchbase/couchbase-lite-java-core/blob/3b275642e2d2f231fd155ad9def9c5e9eff3118e/src/main/java/com/couchbase/lite/support/PersistentCookieJar.java#L197-L199,3, +Java,unique elements,https://github.com/jtablesaw/tablesaw/blob/68a75b4098ac677e9486df5572cf13ec39f9f701/core/src/main/java/tech/tablesaw/api/DoubleColumn.java#L365-L374,1, +Java,all permutations of a list,https://github.com/biojava/biojava/blob/a1c71a8e3d40cc32104b1d387a3d3b560b43356e/biojava-structure/src/main/java/org/biojava/nbio/structure/symmetry/core/PermutationGroup.java#L37-L41,0, +Java,create cookie,https://github.com/webmetrics/browsermob-proxy/blob/a9252e62246ac33d55d51b993ba1159404e7d389/src/main/java/org/browsermob/proxy/http/BrowserMobHttpClient.java#L216-L218,2, +Java,how to get database table name,https://github.com/jbundle/jbundle/blob/4037fcfa85f60c7d0096c453c1a3cd573c2b0abc/main/db/src/main/java/org/jbundle/main/db/DatabaseInfo.java#L124-L135,0, +Java,randomly extract x items from a list,https://github.com/Waikato/moa/blob/395982e5100bfe75a3a4d26115462ce2cc74cbb0/moa/src/main/java/moa/clusterers/outliers/utils/mtree/utils/Utils.java#L73-L88,3, +Java,binomial distribution,https://github.com/deeplearning4j/deeplearning4j/blob/effce52f2afd7eeb53c5bcca699fcd90bd06822f/deeplearning4j/deeplearning4j-nn/src/main/java/org/deeplearning4j/nn/conf/distribution/serde/LegacyDistributionDeserializer.java#L37-L86,2, +Java,converting uint8 array to image,https://github.com/lessthanoptimal/BoofCV/blob/f01c0243da0ec086285ee722183804d5923bc3ac/main/boofcv-feature/src/main/java/boofcv/abst/feature/describe/WrapDescribeSurf.java#L53-L62,0, +Java,filter array,https://github.com/ldaley/Gldapo/blob/f87ab51dff9ce4fffe18728cc1c9a1b0ce82cf80/src/main/java/gldapo/filter/FilterUtil.java#L80-L87,0, +Java,priority queue,https://github.com/clanie/clanie-core/blob/ac8a655b93127f0e281b741c4d53f429be2816ad/src/main/java/dk/clanie/collections/CollectionFactory.java#L288-L290,2, +Java,k means clustering,https://github.com/elki-project/elki/blob/b54673327e76198ecd4c8a2a901021f1a9174498/elki-clustering/src/main/java/de/lmu/ifi/dbs/elki/algorithm/clustering/kmeans/quality/BayesianInformationCriterionZhao.java#L73-L107,1, +Java,unzipping large files,https://github.com/korpling/ANNIS/blob/152a2e34832e015f73ac8ce8a7d4c32641641324/annis-service/src/main/java/annis/administration/CorpusAdministration.java#L270-L324,3, +Java,initializing array,https://github.com/nutzam/nutzboot/blob/fd33fd4fdce058eab594f28e4d3202f997e3c66a/nutzboot-starter/nutzboot-starter-actuator/src/main/java/org/nutz/boot/starter/actuator/service/JvmMonitorObject.java#L28-L33,0, +Java,how to get database table name,https://github.com/liquibase/liquibase/blob/86a3b30fa6821ac981056f252f918557f5ebcc60/liquibase-core/src/main/java/liquibase/integration/spring/SpringLiquibase.java#L153-L178,1, +Java,filter array,https://github.com/santhosh-tekuri/jlibs/blob/59c28719f054123cf778278154e1b92e943ad232/core/src/main/java/jlibs/core/lang/ArrayUtil.java#L169-L178,3, +Java,heatmap from 3d coordinates,https://github.com/cdk/cdk/blob/c3d0f16502bf08df50365fee392e11d7c9856657/legacy/src/main/java/org/openscience/cdk/smiles/DeduceBondSystemTool.java#L438-L487,0, +Java,deserialize json,https://github.com/nmorel/gwt-jackson/blob/3fdc4350a27a9b64fc437d5fe516bf9191b74824/gwt-jackson/src/main/java/com/github/nmorel/gwtjackson/client/JsonDeserializer.java#L39-L41,2, +Java,aes encryption,https://github.com/zamrokk/fabric-sdk-java/blob/d4993ca602f72d412cd682e1b92e805e48b27afa/src/main/java/org/hyperledger/fabric/sdk/security/CryptoPrimitives.java#L226-L233,2, +Java,unique elements,https://github.com/Stratio/bdt/blob/55324d19e7497764ad3dd7139923e13eb9841d75/src/main/java/com/stratio/qa/specs/DcosSpec.java#L541-L556,0, +Java,positions of substrings in string,https://github.com/CenturyLinkCloud/clc-java-sdk/blob/c026322f077dea71b1acf9f2d665253d79d9bf85/sdk/src/main/java/com/centurylink/cloud/sdk/loadbalancer/services/dsl/domain/filter/LoadBalancerFilter.java#L155-L163,0, +Java,get executable path,https://github.com/maven-nar/nar-maven-plugin/blob/3c622e2024296b4203431bbae3bde290a01dac00/src/main/java/com/github/maven_nar/cpptasks/CUtil.java#L125-L140,3, +Java,connect to sql,https://github.com/julianhyde/sqlline/blob/7577f3ebaca0897a9ff01d1553d4576487e1d2c3/src/main/java/sqlline/Commands.java#L1121-L1173,1, +Java,write csv,https://github.com/cvut/JCOP/blob/2ec18315a9a452e5f4e3d07cccfde0310adc465a/src/main/java/cz/cvut/felk/cig/jcop/result/render/CSVRender.java#L67-L143,2, +Java,how to read the contents of a .gz compressed file?,https://github.com/facebookarchive/hadoop-20/blob/2a29bc6ecf30edb1ad8dbde32aa49a317b4d44f4/src/core/org/apache/hadoop/io/compress/DecompressorStream.java#L106-L117,0,"name of method seems reasonable, but code is not" +Java,unzipping large files,https://github.com/wizzardo/tools/blob/d14a3c5706408ff47973d630f039a7ad00953c24/modules/tools-io/src/main/java/com/wizzardo/tools/io/ZipTools.java#L299-L316,0, +Java,custom http error response,https://github.com/rollbar/rollbar-java/blob/5eb4537d1363722b51cfcce55b427cbd8489f17b/rollbar-android/src/main/java/com/rollbar/android/Rollbar.java#L452-L454,0, +Java,parse json file,https://github.com/jeremylong/DependencyCheck/blob/6cc7690ea12e4ca1454210ceaa2e9a5523f0926c/core/src/main/java/org/owasp/dependencycheck/data/update/nvd/NvdCveParser.java#L80-L110,2, +Java,convert int to string,https://github.com/fhoeben/hsac-fitnesse-fixtures/blob/4e9018d7386a9aa65bfcbf07eb28ae064edd1732/src/main/java/nl/hsac/fitnesse/fixture/slim/StringFixture.java#L111-L117,0,exact opposite +Java,convert int to string,https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/convert/ConverterUtils.java#L35-L56,0, +Java,how to randomly pick a number,https://github.com/fhoeben/hsac-fitnesse-fixtures/blob/4e9018d7386a9aa65bfcbf07eb28ae064edd1732/src/main/java/nl/hsac/fitnesse/fixture/util/BsnUtil.java#L14-L50,1, +Java,how to determine a string is a valid word,https://github.com/voikko/corevoikko/blob/b726429a7796a19ff0965ea0cc0bcf7c6580837e/libvoikko/java/src/main/java/org/puimula/libvoikko/Voikko.java#L191-L207,0, +Java,how to read the contents of a .gz compressed file?,https://github.com/iipc/webarchive-commons/blob/988bec707c27a01333becfc3bd502af4441ea1e1/src/main/java/org/archive/io/arc/ARCUtils.java#L171-L181,0, +Java,how to check if a checkbox is checked,https://github.com/groupon/robo-remote/blob/12d242faad50bf90f98657ca9a0c0c3ae1993f07/RoboRemoteClient/src/main/com/groupon/roboremote/roboremoteclient/Solo.java#L428-L430,2, +Java,unique elements,https://github.com/eclipse/xtext-core/blob/bac941cb75cb24706519845ec174cfef874d7557/org.eclipse.xtext.xtext.wizard/src/org/eclipse/xtext/xtext/wizard/ecore2xtext/UniqueNameUtil.java#L51-L64,0, +Java,sort string list,https://github.com/lucee/Lucee/blob/29b153fc4e126e5edb97da937f2ee2e231b87593/core/src/main/java/lucee/runtime/util/ListUtilImpl.java#L160-L163,0, +Java,all permutations of a list,https://github.com/skjolber/3d-bin-container-packing/blob/9609bc7515322b2de2cad0dfb3d2f72607e71aae/src/main/java/com/github/skjolberg/packing/impl/PermutationRotationIterator.java#L161-L189,0, +Java,parse binary file to custom class,https://github.com/tzaeschke/zoodb/blob/058d0ff161a8ee9d53244c433aca97ee9c654410/src/org/zoodb/internal/util/ClassBuilderSimple.java#L80-L111,0, +Java,output to html file,https://github.com/tkurz/sparql-mm/blob/6f2ca5fc28a7a91ec53250fe57c729744e61884b/src/main/java/com/github/tkurz/sparqlmm/doc/FunctionSet.java#L190-L230,3, +Java,convert html to pdf,https://github.com/BlueBrain/bluima/blob/793ea3f46761dce72094e057a56cddfa677156ae/modules/bluima_pdf/src/main/java/edu/psu/seersuite/extractors/tableextractor/extraction/TableExtractor.java#L441-L459,0, +Java,deserialize json,https://github.com/stripe/stripe-java/blob/acfa8becef3e73bfe3e9d8880bea3f3f30dadeac/src/main/java/com/stripe/model/EventRequestDeserializer.java#L19-L36,2, +Java,get the description of a http status code,https://github.com/spring-projects/spring-android/blob/941296e152d49a40e0745a3e81628a974f72b7e4/spring-android-rest-template/src/main/java/org/springframework/web/client/DefaultResponseErrorHandler.java#L52-L62,1, +Java,convert a utc time to epoch,https://github.com/spring-projects/spring-boot/blob/0b27f7c70e164b2b1a96477f1d9c1acba56790c1/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/info/GitProperties.java#L106-L118,2, +Java,how to get current date,https://github.com/iovation/launchkey-java/blob/ceecc70b9b04af07ddc14c57d4bcc933a4e0379c/sdk/src/main/java/com/iovation/launchkey/sdk/transport/apachehttp/ApacheHttpTransport.java#L909-L919,3, +Java,create cookie,https://github.com/apache/spark/blob/25ee0474f47d9c30d6f553a7892d9549f91071cf/sql/hive-thriftserver/src/main/java/org/apache/hive/service/cli/thrift/ThriftHttpServlet.java#L303-L308,2, +Java,binomial distribution,https://github.com/jpmml/jpmml-evaluator/blob/ac8a48775877b6fa9dbc5f259871f3278489cc61/pmml-evaluator/src/main/java/org/jpmml/evaluator/DistributionUtil.java#L37-L49,1, +Java,how to read .csv file in an efficient way?,https://github.com/Graylog2/graylog2-server/blob/50b565dcead6e0a372236d5c2f8530dc5726fa9b/graylog2-server/src/main/java/org/graylog2/lookup/adapters/CSVFileDataAdapter.java#L119-L169,3, +Java,aes encryption,https://github.com/AgNO3/jcifs-ng/blob/0311107a077ea372527ae74839eec8042197332f/src/main/java/jcifs/smb/SmbTransportImpl.java#L1802-L1826,0, +Java,unique elements,https://github.com/jbundle/jbundle/blob/4037fcfa85f60c7d0096c453c1a3cd573c2b0abc/base/remote/src/main/java/org/jbundle/base/remote/proxy/MapList.java#L54-L62,0, +Java,get current observable value,https://github.com/Azure/autorest-clientruntime-for-java/blob/04621e07dbb0456dd5459dd641f06a9fd4f3abad/azure-arm-client-runtime/src/main/java/com/microsoft/azure/arm/utils/RXMapper.java#L28-L35,1, +Java,get all parents of xml node,https://github.com/venkatramanm/common/blob/b89583efd674f73cf4c04927300a9ea6e49a3e9f/src/main/java/com/venky/xml/XMLElement.java#L88-L94,3, +Java,how to check if a checkbox is checked,https://github.com/RobotiumTech/robotium/blob/75e567c38f26a6a87dc8bef90b3886a20e28d291/robotium-solo/src/main/java/com/robotium/solo/Solo.java#L3440-L3447,3, +Java,copy to clipboard,https://github.com/raydac/netbeans-mmd-plugin/blob/997493d23556a25354372b6419a64a0fbd0ac6ba/mind-map/mind-map-swing-panel/src/main/java/com/igormaznitsa/mindmap/swing/panel/MindMapPanel.java#L2647-L2668,3, +Java,group by count,https://github.com/HanSolo/tilesfx/blob/36eb07b1119017beb851dad95256439224d1fcf4/src/main/java/eu/hansolo/tilesfx/Tile.java#L4586-L4589,0, +Java,buffered file reader read text,https://github.com/sporniket/core/blob/3480ebd72a07422fcc09971be2607ee25efb2c26/sporniket-core-io/src/main/java/com/sporniket/libre/io/TextLoader.java#L188-L205,3, +Java,get all parents of xml node,https://github.com/mozilla/rhino/blob/fa8a86df11d37623f5faa8d445a5876612bc47b0/xmlimplsrc/org/mozilla/javascript/xmlimpl/XML.java#L283-L293,0, +Java,how to empty array,https://github.com/hypercube1024/firefly/blob/ed3fc75b7c54a65b1e7d8141d01b49144bb423a3/firefly-common/src/main/java/com/firefly/utils/lang/ArrayUtils.java#L407-L412,0, +Java,read text file line by line,https://github.com/undera/perfmon-agent/blob/535c145e588d59acc88684115485d9170c6260fe/src/kg/apc/perfmon/metrics/TailMetric.java#L32-L43,3, +Java,reading element from html - ,https://github.com/jmapper-framework/jmapper-core/blob/b48fd3527f35055b8b4a30f53a51136f183acc90/JMapper Framework/src/main/java/com/googlecode/jmapper/JMapper.java#L175-L182,0, +Java,how to determine a string is a valid word,https://github.com/forge/core/blob/e140eb03bbe2b3409478ad70c86c3edbef6d9a0c/parser-java/api/src/main/java/org/jboss/forge/addon/parser/java/utils/JLSValidator.java#L209-L212,3, +Java,sending binary data over a serial connection,https://github.com/Pi4J/pi4j/blob/03cacc62223cc59b3118bfcefadabab979fd84c7/pi4j-core/src/main/java/com/pi4j/io/serial/impl/SerialImpl.java#L722-L731,1, +Java,find int in string,https://github.com/kiegroup/droolsjbpm-tools/blob/05e1f73c591178360a198dca29f99d73918991db/drools-eclipse/org.drools.eclipse/src/main/java/org/drools/eclipse/editors/completion/CompletionContext.java#L442-L462,2, +Java,httpclient post json,https://github.com/Netflix/servo/blob/d67b5afce8c50bd9e9e31c288dbf4b78fb2ac815/servo-atlas/src/main/java/com/netflix/servo/publish/atlas/HttpHelper.java#L107-L112,0, +Java,parse binary file to custom class,https://github.com/zhegexiaohuozi/SeimiCrawler/blob/c9069490616c38c6de059ddc86b79febd6d17641/seimicrawler/src/main/java/cn/wanghaomiao/seimi/struct/Response.java#L164-L170,0, +Java,extracting data from a text file,https://github.com/TheHortonMachine/hortonmachine/blob/d2b436bbdf951dc1fda56096a42dbc0eae4d35a5/apps/src/main/java/org/hortonmachine/nww/layers/defaults/raster/BasicMercatorTiledImageLayer.java#L183-L191,0, +Java,pretty print json,https://github.com/GCRC/nunaliit/blob/0b4abfc64eef2eb8b94f852ce697de2e851d8e67/nunaliit2-json/src/main/java/ca/carleton/gcrc/json/JSONPrettyPrinter.java#L44-L95,3, +Java,confusion matrix,https://github.com/habernal/confusion-matrix/blob/d0310f0aeda0fa74a9d42bcb190db7250bf49ecc/src/main/java/com/github/habernal/confusionmatrix/ConfusionMatrix.java#L682-L696,0, +Java,httpclient post json,https://github.com/nemerosa/ontrack/blob/37b0874cbf387b58aba95cd3c1bc3b15e11bc913/ontrack-client/src/main/java/net/nemerosa/ontrack/client/JsonClientImpl.java#L52-L60,3, +Java,all permutations of a list,https://github.com/datumbox/datumbox-framework/blob/909dff0476e80834f05ecdde0624dd2390e9b0ca/datumbox-framework-core/src/main/java/com/datumbox/framework/core/mathematics/discrete/Combinatorics.java#L39-L59,3, +Java,unique elements,https://github.com/eclipse/xtext-core/blob/bac941cb75cb24706519845ec174cfef874d7557/org.eclipse.xtext.xtext.wizard/src/org/eclipse/xtext/xtext/wizard/ecore2xtext/UniqueNameUtil.java#L44-L49,1, +Java,replace in file,https://github.com/Coveros/selenified/blob/396cc1f010dd69eed33cc5061c41253de246a4cd/src/main/java/com/coveros/selenified/utilities/Reporter.java#L249-L270,3, +Java,custom http error response,https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webcontainer/src/com/ibm/wsspi/webcontainer/collaborator/CollaboratorHelper.java#L96-L229,0, +Java,convert a date string into yyyymmdd,https://github.com/enasequence/sequencetools/blob/4127f5e1a17540239f5810136153fbd6737fa262/src/main/java/uk/ac/ebi/embl/api/validation/helper/EntryUtils.java#L174-L186,2, +Java,parse binary file to custom class,https://github.com/Whiley/WhileyCompilerCollection/blob/18f08b7826eb42ce9e3605c6b242cab87cae25b7/src/main/java/wycc/commands/Inspect.java#L193-L218,0, +Java,export to excel,https://github.com/Crab2died/Excel4J/blob/2ab0a3b8226a69ff868c3ead6e724f3a774f5f77/src/main/java/com/github/crab2died/ExcelUtils.java#L1287-L1294,1, +Java,extract latitude and longitude from given input,https://github.com/zxing/zxing/blob/653ac2a3beb11481eff82e7d5f2bab8a745f7fac/zxing.appspot.com/src/main/java/com/google/zxing/web/generator/client/GeoLocationGenerator.java#L95-L105,1, +Java,parse command line argument,https://github.com/jeremylong/DependencyCheck/blob/6cc7690ea12e4ca1454210ceaa2e9a5523f0926c/cli/src/main/java/org/owasp/dependencycheck/CliParser.java#L98-L102,2, +Java,readonly array,https://github.com/lievendoclo/Valkyrie-RCP/blob/6aad6e640b348cda8f3b0841f6e42025233f1eb8/valkyrie-rcp-core/src/main/java/org/valkyriercp/binding/form/support/DefaultFieldMetadata.java#L90-L94,0, +Java,httpclient post json,https://github.com/sinofool/alipay-java-sdk/blob/b8bd07915386c8abd005f3d647b82100d966070c/demo/src/main/java/net/sinofool/alipay/demo/DemoAlipayHttpClient.java#L32-L49,2, +Java,group by count,https://github.com/sualeh/magnetictrackparser/blob/1da8ff20ac6269b1d523875157278978ba71d260/src/main/java/us/fatehi/magnetictrack/bankcard/BaseTrackData.java#L39-L50,2, +Java,parse json file,https://github.com/netheosgithub/pcs_api/blob/20691e52e144014f99ca75cb7dedc7ba0c18586c/java/src/main/java/net/netheos/pcsapi/providers/dropbox/Dropbox.java#L447-L470,1, +Java,get current ip address,https://github.com/ow2-chameleon/fuchsia/blob/4e9318eadbdeb945e529789f573b45386e619bed/bases/knx/calimero/src/main/java/tuwien/auto/calimero/tools/IPConfig.java#L248-L285,1, +Java,print model summary,https://github.com/h2oai/h2o-2/blob/be350f3f2c2fb6f135cc07c41f83fd0e4f521ac1/src/main/java/water/api/Models.java#L355-L365,1, +Java,randomly extract x items from a list,https://github.com/RKumsher/utils/blob/fcdb190569cd0288249bf4b46fd418f8c01d1caf/src/main/java/com/github/rkumsher/collection/RandomCollectionUtils.java#L97-L100,0, +Java,parse query string in url,https://github.com/reinert/requestor/blob/40163a75cd17815d5089935d0dd97b8d652ad6d4/requestor/core/requestor-api/src/main/java/io/reinert/requestor/uri/UriParser.java#L173-L190,2, +Java,deserialize json,https://github.com/zvoykish/restdl/blob/3323c3143fe99f54f731860177f5d482fc1b8c0e/restdl-core/src/main/java/com/zvoykish/restdl/objects/TypedObjectFasterXmlDeserializer.java#L25-L36,3, +Java,parse json file,https://github.com/GCRC/nunaliit/blob/0b4abfc64eef2eb8b94f852ce697de2e851d8e67/nunaliit2-utils/src/main/java/ca/carleton/gcrc/utils/TextFileUtils.java#L193-L217,3, +Java,binomial distribution,https://github.com/datumbox/datumbox-framework/blob/909dff0476e80834f05ecdde0624dd2390e9b0ca/datumbox-framework-core/src/main/java/com/datumbox/framework/core/statistics/nonparametrics/onesample/Binomial.java#L64-L74,0, +Java,httpclient post json,https://github.com/upwork/java-upwork/blob/342297161503a74e9e0bddbd381ab5eebf4dc454/src/com/Upwork/api/UpworkRestClient.java#L125-L159,2, +Java,create cookie,https://github.com/webmetrics/browsermob-proxy/blob/a9252e62246ac33d55d51b993ba1159404e7d389/src/main/java/org/browsermob/proxy/http/BrowserMobHttpClient.java#L220-L227,2, +Java,how to read .csv file in an efficient way?,https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.product.utility/src/com/ibm/ws/product/utility/extension/IFixCompareCommandTask.java#L553-L568,0, +Java,custom http error response,https://github.com/spring-cloud/spring-cloud-sleuth/blob/f29c05fb8fba33e23aa21bb13aeb13ab8d27b485/spring-cloud-sleuth-core/src/main/java/org/springframework/cloud/sleuth/instrument/web/SleuthHttpServerParser.java#L62-L85,2, +Java,get executable path,https://github.com/thorntail/thorntail/blob/4a391b68ffae98c6e66d30a3bfb99dadc9509f14/thorntail-runner/src/main/java/org/wildfly/swarm/runner/Runner.java#L173-L180,1, +Java,find int in string,https://github.com/aoindustries/aocode-public/blob/c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3/src/main/java/com/aoindustries/util/StringUtility.java#L714-L729,0, +Java,memoize to disk - persistent memoization,https://github.com/DataSketches/sketches-core/blob/900c8c9668a1e2f1d54d453e956caad54702e540/src/main/java/com/yahoo/sketches/cpc/CompressedState.java#L209-L291,0, +Java,deserialize json,https://github.com/intuit/QuickBooks-V3-Java-SDK/blob/59f988d0776d46620d0b34711c411b2b5b1da06b/payments-api/src/main/java/com/intuit/payment/util/JsonUtil.java#L84-L93,2, +Java,html entities replace,https://github.com/ukase/ukase/blob/30f69cd2f950e15308b19a0ba788eb309933a4f4/core/src/main/java/com/github/ukase/toolkit/ResourceProvider.java#L128-L132,2, +Java,unzipping large files,https://github.com/forge/core/blob/e140eb03bbe2b3409478ad70c86c3edbef6d9a0c/resources/impl/src/main/java/org/jboss/forge/addon/resource/zip/ZipFileResourceImpl.java#L98-L109,1, +Java,encrypt aes ctr mode,https://github.com/ZuInnoTe/hadoopoffice/blob/58fc9223ee290bcb14847aaaff3fadf39c465e46/fileformat/src/main/java/org/zuinnote/hadoop/office/format/common/writer/msexcel/MSExcelWriter.java#L583-L598,0, +Java,deducting the median from each column,https://github.com/randomizedtesting/randomizedtesting/blob/85a0c7eff5d03d98da4d1f9502a11af74d26478a/junit4-ant/src/main/java/com/carrotsearch/ant/tasks/junit4/balancers/ExecutionTimeBalancer.java#L76-L132,0, +Java,parse command line argument,https://github.com/dreamhead/moco/blob/83b0fbb9c505e327de6720cff55e7b18078f2aa9/moco-runner/src/main/java/com/github/dreamhead/moco/bootstrap/parser/StartArgsParser.java#L24-L28,3, +Java,get all parents of xml node,https://github.com/imintel/osm-parser/blob/050432571ac123bd120f56dbf2d4f8886e89f050/src/main/java/br/zuq/osm/parser/WayParser.java#L50-L70,0, +Java,how to get database table name,https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/tools/org/apache/ojb/tools/mapping/reversedb/DBTable.java#L102-L130,3, +Java,get current ip address,https://github.com/xwiki/xwiki-commons/blob/5374d8c6d966588c1eac7392c83da610dfb9f129/xwiki-commons-core/xwiki-commons-crypto/xwiki-commons-crypto-pkix/src/main/java/org/xwiki/crypto/pkix/params/x509certificate/extension/X509IpAddress.java#L98-L108,1, +Java,group by count,https://github.com/ravendb/ravendb-jvm-client/blob/5a45727de507b541d1571e79ddd97c7d88bee787/src/main/java/net/ravendb/client/documents/session/AbstractDocumentQuery.java#L344-L350,0, +Java,html entities replace,https://github.com/mkolisnyk/cucumber-reports/blob/9c9a32f15f0bf1eb1d3d181a11bae9c5eec84a8e/cucumber-report-generator/src/main/java/com/github/mkolisnyk/cucumber/reporting/utils/helpers/StringConversionUtils.java#L45-L58,2, +Java,scatter plot,https://github.com/haifengl/smile/blob/e27e43e90fbaacce3f99d30120cf9dd6a764c33d/plot/src/main/java/smile/plot/PlotCanvas.java#L1613-L1628,3, +Java,replace in file,https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.fat.common/src/com/ibm/ws/security/fat/common/utils/CommonIOUtils.java#L46-L104,2, +Java,randomly extract x items from a list,https://github.com/Netflix/eureka/blob/48446d956be09df6650a3c00b7ebd7e2d1e1544f/eureka-client/src/main/java/com/netflix/discovery/shared/resolver/ResolverUtils.java#L88-L102,0, +Java,replace in file,https://github.com/overturetool/overture/blob/83175dc6c24fa171cde4fcf61ecb648eba3bdbc1/core/codegen/platform/src/main/java/org/overture/codegen/utils/GeneralCodeGenUtils.java#L373-L377,1, +Java,how to reverse a string,https://github.com/zaproxy/zaproxy/blob/0cbe5121f2ae1ecca222513d182759210c569bec/src/org/zaproxy/zap/utils/HirshbergMatcher.java#L110-L113,3, +Java,html encode string,https://github.com/OWASP/owasp-java-encoder/blob/bc9a85723f3c1b4819d9aa8aa1b539787128e4ea/core/src/main/java/org/owasp/encoder/Encode.java#L439-L443,2, +Java,save list to file,https://github.com/jenkinsci/jenkins/blob/44c4d3989232082c254d27ae360aa810669f44b7/core/src/main/java/jenkins/security/stapler/StaticRoutingDecisionProvider.java#L190-L206,3, +Java,encode url,https://github.com/kevinsawicki/http-request/blob/2d62a3e9da726942a93cf16b6e91c0187e6c0136/lib/src/main/java/com/github/kevinsawicki/http/HttpRequest.java#L1264-L1268,2, +Java,get executable path,https://github.com/apache/flink/blob/b62db93bf63cb3bb34dd03d611a779d9e3fc61ac/flink-core/src/main/java/org/apache/flink/util/FileUtils.java#L436-L447,3, +Java,string similarity levenshtein,https://github.com/pressgang-ccms/PressGangCCMSCommonUtilities/blob/5ebf5ed30a94c34c33f4708caa04a8da99cbb15c/src/main/java/org/jboss/pressgang/ccms/utils/common/StringUtilities.java#L365-L379,2, +Java,export to excel,https://github.com/ZuInnoTe/hadoopoffice/blob/58fc9223ee290bcb14847aaaff3fadf39c465e46/fileformat/src/main/java/org/zuinnote/hadoop/office/format/mapreduce/ExcelCellFileInputFormat.java#L36-L41,1, +Java,heatmap from 3d coordinates,https://github.com/Unidata/thredds/blob/d2d68f9eee87f345625211324d71d5dc3e162ee1/cdm/src/main/java/ucar/nc2/dt/grid/gis/GridBoundariesExtractor.java#L119-L310,2, +Java,socket recv timeout,https://github.com/zeromq/jeromq/blob/8b4a2960b468d08b7aebb0d40bfb947e08fed040/src/main/java/org/zeromq/ZFrame.java#L309-L315,1, +Java,extract latitude and longitude from given input,https://github.com/kiegroup/optaplanner/blob/b8f1459b4e6b0f7aafe941fd165bff640c11d7d5/optaplanner-examples/src/main/java/org/optaplanner/examples/common/swingui/latitudelongitude/LatitudeLongitudeTranslator.java#L42-L55,0, +Java,sort string list,https://github.com/nextreports/nextreports-server/blob/cfce12f5c6d52cb6a739388d50142c6e2e07c55e/src/ro/nextreports/server/web/analysis/util/DatabaseUtil.java#L189-L199,0, +Java,convert a date string into yyyymmdd,https://github.com/jeremiehuchet/acrachilisync/blob/4eadb0218623e77e0d92b5a08515eea2db51e988/acrachilisync-core/src/main/java/fr/dudie/acrachilisync/model/AcraReport.java#L95-L109,1, +Java,get current process id,https://github.com/CenturyLinkCloud/mdw/blob/91167fe65a25a5d7022cdcf8b0fae8506f5b87ce/mdw-services/src/com/centurylink/mdw/service/data/process/ProcessCache.java#L117-L131,1, +Java,get the description of a http status code,https://github.com/line/armeria/blob/67d29e019fd35a35f89c45cc8f9119ff9b12b44d/grpc/src/main/java/com/linecorp/armeria/internal/grpc/GrpcStatus.java#L157-L180,1, +Java,convert json to csv,https://github.com/tabulapdf/tabula-java/blob/a86b72aa81c0bcb4b8b4402dc94ca1211f152930/src/main/java/technology/tabula/CommandLineApp.java#L441-L455,0, +Java,extracting data from a text file,https://github.com/ModeShape/modeshape/blob/794cfdabb67a90f24629c4fff0424a6125f8f95b/modeshape-jcr/src/main/java/org/modeshape/jcr/query/RowExtractors.java#L204-L218,0, +Java,extract latitude and longitude from given input,https://github.com/tvesalainen/util/blob/bba7a44689f638ffabc8be40a75bdc9a33676433/util/src/main/java/org/vesalainen/navi/LocalLongitude.java#L46-L56,0, +Java,write csv,https://github.com/molgenis/molgenis/blob/b4d0d6b27e6f6c8d7505a3863dc03b589601f987/molgenis-dataexplorer/src/main/java/org/molgenis/dataexplorer/download/DataExplorerDownloadHandler.java#L73-L82,2, +Java,reading element from html - ,https://github.com/webfolderio/ui4j/blob/b0b95f20e21e8ff0d0ce6b1f2a4b84d3f9074625/ui4j-webkit/src/main/java/io/webfolder/ui4j/webkit/dom/WebKitElement.java#L798-L803,0, +Java,converting uint8 array to image,https://github.com/lessthanoptimal/BoofCV/blob/f01c0243da0ec086285ee722183804d5923bc3ac/examples/src/main/java/boofcv/examples/imageprocessing/ExampleBinaryOps.java#L50-L91,0, +Java,how to randomly pick a number,https://github.com/fozziethebeat/S-Space/blob/a608102737dfd3d59038a9ead33fe60356bc6029/src/main/java/edu/ucla/sspace/index/RandomIndexVectorGenerator.java#L170-L212,1, +Java,set working directory,https://github.com/facebookarchive/hadoop-20/blob/2a29bc6ecf30edb1ad8dbde32aa49a317b4d44f4/src/mapred/org/apache/hadoop/mapred/JobConf.java#L591-L599,0, +Java,reading element from html - ,https://github.com/fcrepo3/fcrepo/blob/37df51b9b857fd12c6ab8269820d406c3c4ad774/fcrepo-server/src/main/java/org/fcrepo/server/access/FieldSearchServlet.java#L346-L356,0, +Java,get all parents of xml node,https://github.com/mozilla/rhino/blob/fa8a86df11d37623f5faa8d445a5876612bc47b0/xmlimplsrc/org/mozilla/javascript/xmlimpl/XMLObjectImpl.java#L58-L63,0, +Java,export to excel,https://github.com/nextreports/nextreports-engine/blob/a847575a9298b5fce63b88961190c5b83ddccc44/src/ro/nextreports/integration/DemoUtil.java#L46-L58,0, +Java,json to xml conversion,https://github.com/undera/jmeter-plugins/blob/416d2a77249ab921c7e4134c3e6a9639901ef7e8/plugins/json/src/main/java/com/atlantbh/jmeter/plugins/jsontoxmlconverter/JSONToXMLConverter.java#L33-L40,0, +Java,underline text in label widget,https://github.com/BorderTech/wcomponents/blob/d1a2b2243270067db030feb36ca74255aaa94436/wcomponents-examples/src/main/java/com/github/bordertech/wcomponents/examples/theme/WHeadingExample.java#L178-L181,1, +Java,encode url,https://github.com/bmwcarit/joynr/blob/b7a92bad1cf2f093de080facd2c803560f4c6c26/java/core/clustercontroller/src/main/java/io/joynr/messaging/http/UrlResolver.java#L83-L97,2, +Java,pretty print json,https://github.com/blademainer/common_utils/blob/ef6baf0367c16de95a28caab67a7d5842a6d13db/commons-file/src/main/java/info/monitorenter/cpdetector/util/collections/TreeNodeUniqueChildren.java#L105-L148,0, +Java,group by count,https://github.com/twitter/hraven/blob/e35996b6e2f016bcd18db0bad320be7c93d95208/hraven-core/src/main/java/com/twitter/hraven/CounterMap.java#L40-L47,0, +Java,get name of enumerated value,https://github.com/EXIficient/exificient-grammars/blob/d96477062ebdd4245920e44cc1995259699fc7fb/src/main/java/com/siemens/ct/exi/grammars/persistency/Grammars2X.java#L879-L1017,0, +Java,sort string list,https://github.com/willowtreeapps/Hyperion-Android/blob/1910f53869a53f1395ba90588a0b4db7afdec79c/hyperion-shared-preferences/src/main/java/com/willowtreeapps/hyperion/sharedpreferences/detail/SharedPreferencesDetailAdapter.java#L133-L137,3, +Java,initializing array,https://github.com/sshtools/j2ssh-maverick/blob/ce11ceaf0aa0b129b54327a6891973e1e34689f7/j2ssh-maverick/src/main/java/com/sshtools/ssh/components/ComponentManager.java#L100-L159,0, +Java,k means clustering,https://github.com/Waikato/moa/blob/395982e5100bfe75a3a4d26115462ce2cc74cbb0/moa/src/main/java/moa/clusterers/clustream/WithKmeans.java#L305-L356,2, +Java,how to randomly pick a number,https://github.com/vanilladb/vanillabench/blob/f38e76ea2ea781f00d80032a8457b01154872b54/src/main/java/org/vanilladb/bench/util/RandomValueGenerator.java#L51-L71,3, +Java,sorting multiple arrays based on another arrays sorted order,https://github.com/goldmansachs/gs-collections/blob/fa8bf3e103689efa18bca2ab70203e71cde34b52/collections/src/main/java/com/gs/collections/impl/set/mutable/primitive/ByteHashSet.java#L850-L865,0, +Java,buffered file reader read text,https://github.com/fcrepo3/fcrepo/blob/37df51b9b857fd12c6ab8269820d406c3c4ad774/fcrepo-server/src/main/java/org/fcrepo/server/storage/lowlevel/GenericFileSystem.java#L176-L201,0,no reading +Java,buffered file reader read text,https://github.com/lecousin/java-framework-core/blob/b0c893b44bfde2c03f90ea846a49ef5749d598f3/net.lecousin.core/src/main/java/net/lecousin/framework/xml/XMLStreamEventsAsync.java#L156-L215,0, +Java,socket recv timeout,https://github.com/teatrove/teatrove/blob/7039bdd4da6817ff8c737f7e4e07bac7e3ad8bea/trove/src/main/java/org/teatrove/trove/net/PlainSocketFactory.java#L92-L101,1, +Java,linear regression,https://github.com/TheHortonMachine/hortonmachine/blob/d2b436bbdf951dc1fda56096a42dbc0eae4d35a5/gears/src/main/java/oms3/ngmf/util/cosu/Efficiencies.java#L181-L224,3, +Java,nelder mead optimize,https://github.com/biojava/biojava/blob/a1c71a8e3d40cc32104b1d387a3d3b560b43356e/biojava-structure/src/main/java/org/biojava/nbio/structure/align/fatcat/calc/StructureAlignmentOptimizer.java#L287-L330,0, +Java,how to get current date,https://github.com/intuit/QuickBooks-V3-Java-SDK/blob/59f988d0776d46620d0b34711c411b2b5b1da06b/ipp-v3-java-devkit/src/main/java/com/intuit/ipp/util/DateUtils.java#L142-L148,1, +Java,json to xml conversion,https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-xml/src/main/java/io/cloudslang/content/xml/services/ConvertXmlToJsonService.java#L95-L101,0, +Java,unzipping large files,https://github.com/azkaban/azkaban/blob/d258ea7d6e66807c6eff79c5325d6d3443618dff/azkaban-common/src/main/java/azkaban/project/AzkabanProjectLoader.java#L266-L273,1, +Java,create cookie,https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.openidconnect.clients.common/src/com/ibm/ws/security/openidconnect/clients/common/OidcClientUtil.java#L286-L288,1, +Java,all permutations of a list,https://github.com/dwdyer/uncommons-maths/blob/b7ba13aea70625bb7f37c856783a29e17e354964/core/src/java/main/org/uncommons/maths/combinatorics/PermutationGenerator.java#L179-L183,0, +Java,copy to clipboard,https://github.com/code4everything/util/blob/1fc9f0ead1108f4d7208ba7c000df4244f708418/src/main/java/com/zhazhapan/util/Utils.java#L293-L298,3, +Java,hash set for counting distinct elements,https://github.com/goldmansachs/gs-collections/blob/fa8bf3e103689efa18bca2ab70203e71cde34b52/collections/src/main/java/com/gs/collections/impl/utility/ArrayListIterate.java#L1520-L1548,0, +Java,output to html file,https://github.com/fhoeben/hsac-fitnesse-fixtures/blob/4e9018d7386a9aa65bfcbf07eb28ae064edd1732/src/main/java/nl/hsac/fitnesse/junit/reportmerge/HtmlReportIndexGenerator.java#L58-L60,2, +Java,string similarity levenshtein,https://github.com/pressgang-ccms/PressGangCCMSCommonUtilities/blob/5ebf5ed30a94c34c33f4708caa04a8da99cbb15c/src/main/java/org/jboss/pressgang/ccms/utils/common/StringUtilities.java#L388-L402,1, +Java,read properties file,https://github.com/javalite/activejdbc/blob/ffcf5457cace19622a8f71e856cbbbe9e7dd5fcc/activejdbc/src/main/java/org/javalite/activejdbc/Configuration.java#L217-L221,3, +Java,aes encryption,https://github.com/cloudant/sync-android/blob/5f1416ed1bd9ab05d7a4b8736480c8ae68bd7383/cloudant-sync-datastore-android-encryption/src/main/java/com/cloudant/sync/datastore/encryption/DPKEncryptionUtil.java#L98-L107,1, +Java,convert html to pdf,https://github.com/Coveros/selenified/blob/396cc1f010dd69eed33cc5061c41253de246a4cd/src/main/java/com/coveros/selenified/utilities/Reporter.java#L741-L752,2, +Java,k means clustering,https://github.com/hankcs/HanLP/blob/a538d0722ab2e4980a9dcd9ea40324fc3ddba7ce/src/main/java/com/hankcs/hanlp/mining/cluster/Cluster.java#L289-L319,1, +Java,custom http error response,https://github.com/Netflix/zuul/blob/01bc777cf05e3522d37c9ed902ae13eb38a19692/zuul-core/src/main/java/com/netflix/zuul/stats/status/StatusCategoryUtils.java#L50-L57,0, +Java,nelder mead optimize,https://github.com/ontop/ontop/blob/ddf78b26981b6129ee9a1a59310016830f5352e4/core/optimization/src/main/java/it/unibz/inf/ontop/iq/optimizer/FlattenUnionOptimizer.java#L45-L50,0, +Java,save list to file,https://github.com/spring-projects/spring-shell/blob/23d99f45eb8f487e31a1f080c837061313bbfafa/spring-shell-standard-commands/src/main/java/org/springframework/shell/standard/commands/History.java#L58-L72,1, +Java,convert string to number,https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/hsqldb19b3/org/hsqldb_voltpatches/ParserBase.java#L819-L821,3, +Java,how to empty array,https://github.com/damianszczepanik/cucumber-reporting/blob/9ffe0d4a9c0aec161b0988a930a8312ba36dc742/src/main/java/net/masterthought/cucumber/Trends.java#L221-L225,0, +Java,hash set for counting distinct elements,https://github.com/hazelcast/hazelcast/blob/8c4bc10515dbbfb41a33e0302c0caedf3cda1baf/hazelcast/src/main/java/com/hazelcast/mapreduce/aggregation/Aggregations.java#L88-L92,0, +Java,how to determine a string is a valid word,https://github.com/fozziethebeat/S-Space/blob/a608102737dfd3d59038a9ead33fe60356bc6029/src/main/java/edu/ucla/sspace/dv/RelationBasedBasisMapping.java#L51-L58,0, +Java,connect to sql,https://github.com/Teddy-Zhu/SilentGo/blob/27f58b0cafe56b2eb9fc6993efa9ca2b529661e1/orm/src/main/java/com/silentgo/orm/source/jdbc/JDBCPool.java#L41-L49,1, +Java,pretty print json,https://github.com/EsotericSoftware/jsonbeans/blob/ff4502d0ff86cc77aa5c61d47371d0c66c14fe2f/src/com/esotericsoftware/jsonbeans/Json.java#L1040-L1042,3, +Java,how to get current date,https://github.com/intuit/QuickBooks-V3-Java-SDK/blob/59f988d0776d46620d0b34711c411b2b5b1da06b/ipp-v3-java-devkit/src/main/java/com/intuit/ipp/util/DateUtils.java#L113-L118,2, +Java,matrix multiply,https://github.com/haifengl/smile/blob/e27e43e90fbaacce3f99d30120cf9dd6a764c33d/nd4j/src/main/java/smile/nd4j/NDMatrix.java#L508-L511,0, +Java,postgresql connection,https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jdbc/src/com/ibm/ws/rsadapter/impl/WSManagedConnectionFactoryImpl.java#L1283-L1298,1, +Java,extracting data from a text file,https://github.com/elki-project/elki/blob/b54673327e76198ecd4c8a2a901021f1a9174498/addons/joglvis/src/main/java/de/lmu/ifi/dbs/elki/joglvis/scatterplot/opengl4/ScatterPlotOpenGL4.java#L116-L123,0, +Java,extract latitude and longitude from given input,https://github.com/amsa-code/risky/blob/13649942aeddfdb9210eec072c605bc5d7a6daf3/ais/src/main/java/au/gov/amsa/ais/message/AisAidToNavigation.java#L160-L168,0, +Java,how to reverse a string,https://github.com/gosu-lang/gosu-lang/blob/d6e9261b137ce66fef3726cabe7826d4a1f946b7/gosu-core-api/src/main/java/gw/util/GosuStringUtil.java#L5279-L5284,3, +Java,connect to sql,https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/tools/org/apache/ojb/tools/mapping/reversedb/gui/actions/DBConnectAction.java#L47-L82,3, +JavaScript,read text file line by line,https://github.com/ota-meshi/eslint-plugin-lodash-template/blob/9ff820d58da1eea47f12a87939e62a23cc07561d/lib/rules/script-indent.js#L209-L222,0, +JavaScript,socket recv timeout,https://github.com/tonekk/remood.js/blob/d441b96ed1db1d82fb56877163b814bb2809be47/lib/remood.connection.js#L25-L46,0, +JavaScript,connect to sql,https://github.com/jheusala/node-sqlmw/blob/4f61c142783dfbe76c96d8ddca80fa434305be86/lib/middlewares/connect.js#L28-L46,3, +JavaScript,priority queue,https://github.com/googlearchive/backbonefire/blob/d6278d4aeb0743bdd7e9de96cc56d4e64476778b/examples/todos/js/backbonefire.js#L690-L695,0, +JavaScript,copy to clipboard,https://github.com/OpusCapita/react-markdown/blob/77f977bd839bdf9c90b8f064179e44464860ae11/src/client/components/PlainMarkdownInput/PlainMarkdownInput.react.js#L61-L70,3, +JavaScript,reading element from html - ,https://github.com/evothings/phonegap-estimotebeacons/blob/eed09405b5435a0b9e76e9094f52350991c51b91/examples/beacon-finder/www/js/screen-scan-beacons.js#L2-L62,0, +JavaScript,matrix multiply,https://github.com/silklabs/silk/blob/08c273949086350aeddd8e23e92f0f79243f446f/flow-bin/linux/flow/flow.js#L15498-L15499,0, +JavaScript,how to check if a checkbox is checked,https://github.com/UziTech/atom-jasmine3-test-runner/blob/580e3299f10a594c63afafd9223dbbaecd6cbcd4/spec/spec-helper/jasmine-jquery-spec.js#L93-L100,3, +JavaScript,convert string to number,https://github.com/hola/jwplayer-hlsjs/blob/33e93031666f908b2826109ffb7c1d0a8861e761/src/jwplayer.hlsjs.js#L397-L412,1, +JavaScript,postgresql connection,https://github.com/AGCPartners/mysql-transit/blob/d3cc3701166be3d41826c4b3bf1a596ed4c1f03a/index.js#L534-L541,0, +JavaScript,read properties file,https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L2744-L2749,0, +JavaScript,buffered file reader read text,https://github.com/Turfjs/turf-buffer/blob/3f1ebed65b5d8fa6098702cf80e6cc77039bcce5/index.js#L65-L77,0, +JavaScript,convert int to string,https://github.com/pzavolinsky/elmx/blob/ae125fa9a749273a65d224bc87bbecbf06f253d8/cheatsheet/elm.js#L3797-L3822,1, +JavaScript,how to read the contents of a .gz compressed file?,https://github.com/tessel/t2-cli/blob/73739db21b40ca643024596b84c11e74e967d761/lib/tessel/update.js#L156-L180,0, +JavaScript,normal distribution,https://github.com/thii/abbajs/blob/b75b5d4f0cb6bf920cdec36814b72be1e30cf908/index.js#L195-L205,0, +JavaScript,get current ip address,https://github.com/cgmartin/express-api-server/blob/9d6de16e7c84d21b83639a904f2eaed4a30a4088/src/middleware/request-logger.js#L61-L66,2, +JavaScript,convert int to string,https://github.com/AltspaceVR/AltspaceSDK/blob/3e39b6ebeed500c98f16f4cf2b0db053ec0953cd/examples/js/libs/GLTFLoader.js#L638-L650,3, +JavaScript,convert string to number,https://github.com/chancejs/chancejs/blob/e74c70a21b43e7f0fca8cf65b27632bf51c52eb6/docs/chance.js#L448-L454,0, +JavaScript,heatmap from 3d coordinates,https://github.com/Dafrok/BMapLib.Heatmap/blob/710f22b68834b26bd1202944ba6137e42968b75d/index.js#L33-L52,0, +JavaScript,read properties file,https://github.com/slawrence/grunt-properties-reader/blob/e8da99c688e2609838d76ea3b1c69a3e6027692e/tasks/properties_reader.js#L77-L120,3, +JavaScript,copy to clipboard,https://github.com/webduinoio/webduino-blockly/blob/f656474c6e4ba1fc12fda217280714c3ca044bbe/code.js#L408-L429,3, +JavaScript,how to extract zip file recursively,https://github.com/weekeight/gulp-joycss/blob/5dc7a1276bcca878c2ac513efe6442fc47a36e29/joycss/bin/update.js#L44-L50,1, +JavaScript,nelder mead optimize,https://github.com/ruysu/gulp-core/blob/2abb2e7b60dc5c30f2610f982672e112b5e1e436/lib/optimize.js#L13-L32,0, +JavaScript,get name of enumerated value,https://github.com/braintree/braintree-web-drop-in/blob/3bd4beeef9613c6bed5fe81d05023fb389087493/src/lib/enumerate.js#L3-L11,0, +JavaScript,all permutations of a list,https://github.com/cosmn/node-permutater/blob/9d057089047d7c36c835d18b3dd0b3306ff09117/index.js#L3-L63,2, +JavaScript,nelder mead optimize,https://github.com/MORPOL/createClass/blob/3e839121357fd25ff1b20fcd4ca02062f1192583/createclass.js#L870-L876,0, +JavaScript,save list to file,https://github.com/nohorbee/nobel/blob/91d697f8d5fc5c3348f5d9068769dbd7ff4da53a/src/scaffolder.js#L12-L21,1, +JavaScript,encode url,https://github.com/skerit/protoblast/blob/22f35b05611bd507d380782023179a3f6ec383ae/lib/rurl.js#L475-L479,3, +JavaScript,convert a utc time to epoch,https://github.com/moment/luxon/blob/236f2badea297ee73421aa39a83e06177c1be6d0/src/datetime.js#L101-L115,0, +JavaScript,normal distribution,https://github.com/marmelab/gremlins.js/blob/2735fa5253cbefcb8848ea40825a6426fc04c398/src/vendor/chance.js#L179-L200,3, +JavaScript,deserialize json,https://github.com/JCloudYu/beson/blob/de9f1f6be59599feb1a5e70085b42b0382600d0b/deserialize.esm.js#L63-L68,0, +JavaScript,json to xml conversion,https://github.com/MikeRalphson/bbcparse/blob/785e0c2807c2d189c9c8779f7ac3f9b6f603bb57/dlInfo.js#L89-L92,0, +JavaScript,reading element from html - ,https://github.com/imsky/holder/blob/220827ebe4097b9a76f150590f8bdf521803aba8/holder.js#L361-L372,0, +JavaScript,matrix multiply,https://github.com/Nazariglez/perenquen/blob/e023964d05afeefebdcac4e2044819fdfa3899ae/lib/pixi/src/filters/color/ColorMatrixFilter.js#L159-L170,0, +JavaScript,html entities replace,https://github.com/keystonejs/keystone-utils/blob/6b0809c760f9b4895168e40821fa37095b44dea4/lib/index.js#L25-L32,0, +JavaScript,parse json file,https://github.com/embark-framework/embark/blob/8b9441967012aefb2349a65623237923c99ec9dc/packages/embark/src/bin/embark.js#L873-L887,2, +JavaScript,convert a utc time to epoch,https://github.com/straticjs/stratic-handle-offset/blob/2862794f590684155a638f15ccab35b4451399af/index.js#L20-L22,0,opposite +JavaScript,extract data from html content,https://github.com/Lemurro/client-framework7-core-frontend/blob/119985cb1d00b92b4400504e1c46f54dc36bcd77/dist/lemurro.js#L43029-L43040,0, +JavaScript,regex case insensitive,https://github.com/bitjson/s18n/blob/f1bd3f618f9a4f3211aa19677da8323e6a4fb6e2/lib/formatLocale.js#L21-L29,0, +JavaScript,custom http error response,https://github.com/RackHD/on-tasks/blob/18ca8021a18e51cb8fc01ef3c08c9e48d34f73ea/lib/utils/job-utils/redfish-tool.js#L88-L94,0, +JavaScript,unique elements,https://github.com/Kolbaskin/yode-server/blob/55ab6680efcca9d298683eed7fc6a16933f10ace/static/ext/ext-all.js#L21401-L21417,0, +JavaScript,finding time elapsed using a timer,https://github.com/daviddias/time-cache/blob/ff73ace07adc6ae7ab5e062ae516881fa8340a8d/src/index.js#L52-L57,3, +JavaScript,format date,https://github.com/elix/elix/blob/2e5fde9777b2e6e4b9453c32d7b7007948d5892d/src/calendar.js#L132-L136,3, +JavaScript,write csv,https://github.com/medialab/artoo/blob/89fe334cb2c2ec38b16012edfab2977822e1ecda/src/methods/artoo.methods.save.js#L169-L180,1, +JavaScript,how to extract zip file recursively,https://github.com/fluidtrends/chunky/blob/42529b8b92dfb99a26d9bd8529559ccbbe91415f/desktop/lib/utils/data.js#L29-L35,3, +JavaScript,sort string list,https://github.com/kevoree/kevoree-js-node-javascript/blob/a1bcce1b76317bc90eb2d0c1c0c70525eaa1d70d/lib/AdaptationEngine.js#L599-L611,3, +JavaScript,reading element from html - ,https://github.com/ColorlibHQ/AdminLTE/blob/19113c3cbc19a7afe0cfd3158d647064d2d30661/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.all.js#L8027-L8042,0, +JavaScript,connect to sql,https://github.com/defeo/was_framework/blob/ab52bbbf5943e9062fe6ea82f1fea637a11d727a/lib/db.js#L28-L70,1, +JavaScript,how to get html of website,https://github.com/twilio/twilio-node/blob/61c56f8345c49ed7fa73fbfc1cdf943b6c324542/spec/integration/rest/taskrouter/v1/workspace/taskQueue/taskQueuesStatistics.spec.js#L320-L412,0, +JavaScript,memoize to disk - persistent memoization,https://github.com/zkat/pacote/blob/33c53cf10b080e78182bccc56ec1d5126f8b627e/lib/fetchers/registry/packument.js#L81-L92,0, +JavaScript,all permutations of a list,https://github.com/observing/square/blob/0a801de3815526d0d5231976f666e97674312de2/plugins/minify.js#L266-L312,3, +JavaScript,concatenate several file remove header lines,https://github.com/cucumber/cucumber-electron/blob/7178dd6b696c4e6a6bed4075e22d63518ac069bf/features/step_definitions/steps.js#L7-L17,2, +JavaScript,get current process id,https://github.com/BeneRoch/Gmap/blob/574b0c9c65fa57b3ce23bdbaf807ff293efe35f6/assets/scripts/src/Controller/bb.gmap.controller.js#L393-L432,0, +JavaScript,matrix multiply,https://github.com/melonjs/melonJS/blob/6c1823cc245df7c958db243a0531506eb838d72c/src/math/matrix2.js#L115-L137,0, +JavaScript,encode url,https://github.com/Emallates/enoa-client/blob/61e7e24c74d11aaa2016acfe683a3ca8b770c6f8/lib/connectors/request/inline-headers.js#L7-L15,0, +JavaScript,pretty print json,https://github.com/tryfer/node-tryfer/blob/061ed05a172b70fe04154214d1519be9246ecf5a/lib/tracers.js#L63-L68,1, +JavaScript,get current observable value,https://github.com/BabylonJS/Spector.js/blob/42602c83a0515b60338edad27c3330a7c0523bbe/sample/assets/js/babylon.max.js#L5376-L5387,2, +JavaScript,convert json to csv,https://github.com/jonschlinkert/parser-csv/blob/d01b0306d56266fcc077e70638f48e44f05e527a/index.js#L32-L47,0,more or less the opposite... +JavaScript,how to get current date,https://github.com/sushantdhiman/unexpected-date/blob/23cdea63fce6908f1d9fc49602b84d8efba03daa/lib/helpers.js#L3-L10,0, +JavaScript,get current process id,https://github.com/RisingStack/graffiti-mongoose/blob/414c91e4b2081bf0d14ecd2de545f621713f5da7/src/query/query.js#L6-L16,1, +JavaScript,converting uint8 array to image,https://github.com/MaiaVictor/dattata/blob/890d83b89b7193ce8863bb9ac9b296b3510e8db9/canvasImage.js#L22-L25,3, +JavaScript,set working directory,https://github.com/jonschlinkert/delete/blob/cff2871442f7ff3d373a525643b530b7feef7f8b/index.js#L107-L117,1, +JavaScript,get current ip address,https://github.com/briancsparks/js-aws/blob/bb403415a1de754e6dee2238d3b5fb9bf5a2bf15/lib/ec2/ec2.js#L912-L950,2, +JavaScript,filter array,https://github.com/hprose/hprose-nodejs/blob/04da8ca371d4696c19a4ca189733aac6afbc05ad/lib/server/Service.js#L502-L508,0, +JavaScript,map to json,https://github.com/Travelport-Ukraine/uapi-json/blob/de43c1add967e7af629fe155505197dc55d637d4/src/Services/Utils/UtilsParser.js#L9-L21,0, +JavaScript,sort string list,https://github.com/octoblu/meshblu/blob/4e7a5a0460b4eb097dfe9ff2db15853eccc779d7/docs/vendor/mixitup/mixitup.js#L5914-L5960,3, +JavaScript,httpclient post json,https://github.com/SpoonX/aurelia-api/blob/02f83bf77c882583deb205ea3b2dfb1400877fd6/dist/commonjs/aurelia-api.js#L29-L42,0, +JavaScript,extract data from html content,https://github.com/reelyactive/chickadee/blob/1f65c2d369694d93796aae63318fa76326275120/web/js/cormorant.js#L12-L30,2, +JavaScript,k means clustering,https://github.com/fasttime/JScrewIt/blob/f0a9e93ccbc957d72ed775a7ad528a6b1fe9ffcc/lib/jscrewit.js#L4023-L4034,0, +JavaScript,get executable path,https://github.com/GoogleChromeLabs/carlo/blob/c79322776443a0564f110fd3e45b8d2042924d1d/lib/find_chrome.js#L209-L253,2, +JavaScript,string to date,https://github.com/makenova/trice/blob/227723decb8a5a3c1c31616f57a12254a12c0c50/index.js#L6-L13,0, +JavaScript,print model summary,https://github.com/silverbucket/jaribu/blob/b228ece432b7704117e1c9962d3f35a825dcbb3a/lib/display.js#L295-L307,1, +JavaScript,regex case insensitive,https://github.com/0xdec/draft.js/blob/2116cdbcc82ccc58d4d46b7e17720595236454b5/src/types/length.js#L1-L6,2,correct `i` but obscure. +JavaScript,how to empty array,https://github.com/codemix/htmling/blob/d1448b975f8b595a49aa5f8ea7006d48b7755b4c/lib/parser.js#L7742-L7752,0, +JavaScript,finding time elapsed using a timer,https://github.com/springernature/boomcatch/blob/5653b382c01de7cdf22553738e87a492343f9ac4/client/boomerang-rt.js#L1815-L1824,1, +JavaScript,convert a date string into yyyymmdd,https://github.com/azu/hatebu-mydata-parser/blob/964f454a13a754c5b80b6c0143acebb934dffe48/lib/hatebu-mydata-utils.js#L13-L17,0,opposite +JavaScript,create cookie,https://github.com/zwaveiot/securedgram-psk-aes-node/blob/92078dcb04d496d5f0af7fc66bbabf6a8d183c0d/messages/handshake/HelloVerifyRequestMessage.js#L34-L60,2, +JavaScript,read properties file,https://github.com/dehuinet/minxing-devtools-core/blob/1b1faf8d196ed07717833325b8d62ccd069af398/utils/index.js#L140-L155,1, +JavaScript,filter array,https://github.com/voloko/uki/blob/5dfdce6105a5116df091235c8a57c42869f96c10/src/uki-core/utils.js#L79-L87,2, +JavaScript,deserialize json,https://github.com/JCloudYu/beson/blob/de9f1f6be59599feb1a5e70085b42b0382600d0b/deserialize.esm.js#L712-L726,0, +JavaScript,get inner html,https://github.com/slm-lang/slm/blob/337a71d60bf0913fb20e3a03647affd9af832bb6/lib/html/fast.js#L13-L58,0, +JavaScript,regex case insensitive,https://github.com/kimmobrunfeldt/chokidar-cli/blob/00aee901e41673e85ab5183d4e58eacafec5c983/index.js#L200-L209,0, +JavaScript,reading element from html - ,https://github.com/apis-is/apis/blob/96a23ab30d5b498a0805da06cf87e84d61422c27/endpoints/flight/index.js#L43-L70,3, +JavaScript,output to html file,https://github.com/tjchaplin/grunt-mox/blob/793161382805089ad59ad5a5cf770ea2da4dc363/tasks/mox.js#L40-L55,0, +JavaScript,convert json to csv,https://github.com/uber/deck.gl/blob/a2010448b7f268bbd03617b812334c68a6b9e5b2/modules/json/src/parsers/convert-json.js#L162-L180,0, +JavaScript,matrix multiply,https://github.com/plepers/nanogl-node/blob/5ca4c3261ae66f79cd6d520f082000af9c3a2ec2/node.js#L144-L160,2, +JavaScript,deducting the median from each column,https://github.com/jstat/jstat/blob/5d99205d806e72997d863be800ffaf7af1851b97/src/vector.js#L258-L265,2, +JavaScript,format date,https://github.com/helpers/helper-dateformat/blob/12938c5739c26c8e2c569cdca7799c87ad21fc11/index.js#L6-L16,2, +JavaScript,parse json file,https://github.com/campsi/campsi/blob/65ff16d267ea7e60bbb9e8959e6805e009202d2c/lib/modules/parseJSON.js#L4-L19,3, +JavaScript,get inner html,https://github.com/stemey/gform-app/blob/d97f3091d0d652ed45dddcdefa05e0bb975898ac/src/gform-app/preview/BaseRenderer.js#L536-L551,0, +JavaScript,concatenate several file remove header lines,https://github.com/Kong/galileo-agent-node/blob/651626bbf82c66e0b1786992a7fd7e18845f076b/lib/helpers.js#L61-L92,0, +JavaScript,deducting the median from each column,https://github.com/filerjs/filer/blob/4aae53839a8da2ca5da9f4e92c33eaab50094352/perf/simple-statistics/src/simple_statistics.js#L835-L849,1, +JavaScript,get current ip address,https://github.com/dthree/vantage/blob/5bbf7e58a94d34d8ce980ae7048dfff3e9569c31/lib/firewall.js#L121-L155,0, +JavaScript,read text file line by line,https://github.com/pwhelan/node-X11-desktop-entry/blob/f793baed231717a340fcb324696ca1197c5a7551/lib/desktop-entry.js#L73-L125,3, +JavaScript,convert a utc time to epoch,https://github.com/bevacqua/rome/blob/3048e07544de9b5440a41b2a9fa239ce3af4838f/src/calendar.js#L637-L652,0, +JavaScript,get inner html,https://github.com/francium/highlight-page/blob/4e67fc531321f9987397dc247abba59b9d5ee521/dist/highlight-page.js#L340-L344,0, +JavaScript,convert int to bool,https://github.com/emmetio/emmet/blob/7c9a4623cea414c2f2cc9caebc13355d2bbd898d/lib/assets/preferences.js#L23-L30,2, +JavaScript,confusion matrix,https://github.com/dbkaplun/hterm-umdjs/blob/5cf0fe1f73302ca543c6bcd2d27852362ecada97/dist/index.js#L15871-L15890,0, +JavaScript,all permutations of a list,https://github.com/veritone/veritone-sdk/blob/ebe4ad5774c487823925e4083cf34f0e7eef8063/packages/veritone-functional-permissions/util.js#L2-L21,0, +JavaScript,priority queue,https://github.com/nx-js/queue-util/blob/50f1ec71b30b994756dde541457e56e7fdbf2618/src/scheduling.js#L7-L15,1, +JavaScript,print model summary,https://github.com/oxygenhq/oxygen/blob/b1c4be3360363091df89558dbbfb7f6d9d8efd71/ox_modules/module-log.js#L13-L49,0, +JavaScript,read text file line by line,https://github.com/samsonjs/batteries/blob/48ca583338a89a9ec344cda7011da92dfc2f6d03/lib/fs/index.js#L106-L111,2, +JavaScript,how to extract zip file recursively,https://github.com/jugglinmike/selenium-chromedriver/blob/985816c137ce6d4ae16f4d6721c89ba2d6e2344f/install/extract.js#L6-L37,2, +JavaScript,get current process id,https://github.com/kgryte/node-metrics-process/blob/32326adeb9ee3cb5ccfcf62a8b796eafa4a2ee16/lib/index.js#L46-L95,1, +JavaScript,parse query string in url,https://github.com/webpack/loader-utils/blob/b5b74f010cace25ca70a652ebef078f6b1cfaddb/lib/parseQuery.js#L11-L66,2, +JavaScript,postgresql connection,https://github.com/the-labo/the-db/blob/89d4a1d73f14bc67abd85a3ab9492284faa22a38/lib/helpers/execMysql.js#L9-L31,1, +JavaScript,underline text in label widget,https://github.com/EclairJS/eclairjs/blob/336368b99f17674a2f86914abbfa5f3000bd028f/examples/ml/model_selection_via_cross_validation.js#L35-L40,0, +JavaScript,set working directory,https://github.com/recidive/choko/blob/7c0576c8c55543ec99d04ea609700765f178f73a/gulpfile.js#L17-L32,0, +JavaScript,pretty print json,https://github.com/tryfer/node-tryfer/blob/061ed05a172b70fe04154214d1519be9246ecf5a/lib/tracers.js#L54-L70,0, +JavaScript,how to read the contents of a .gz compressed file?,https://github.com/babel/babel-loader/blob/5da4fa0c673474ab14bc829f2cbe03e60e437858/src/cache.js#L49-L54,0, +JavaScript,extract latitude and longitude from given input,https://github.com/humangeo/leaflet-dvf/blob/79aba9f4e7b5a7329c88446562b7affdab00475b/dist/leaflet-dvf.js#L4890-L4905,1, +JavaScript,sending binary data over a serial connection,https://github.com/remobile/react-native-file/blob/4759b07bfdfb32d2fe3a05044891fd32118b9e4f/libs/FileWriter.js#L99-L178,0, +JavaScript,format date,https://github.com/Jack12816/greppy/blob/ede2157b90c207896781cc41fb9ea115e83951dd/lib/helper/view/date.js#L35-L43,2, +JavaScript,replace in file,https://github.com/mathisonian/gulp-sass-bulk-import/blob/530e721596a3b827b421ae1a0a3842dd8b67459d/index.js#L53-L64,0,Replaces in filename not in file +JavaScript,initializing array,https://github.com/ckknight/gorillascript/blob/309d3ac628a8148b0071e6fe57fa3bb599fda42f/extras/gorillascript.js#L3251-L3266,0, +JavaScript,get executable path,https://github.com/leim/webpconv/blob/6ec411e2edf326278bb04b8ea330815a86424bd5/lib/getBinPath.js#L9-L30,1, +JavaScript,how to read .csv file in an efficient way?,https://github.com/olegtaranenko/sencha-touch-node/blob/a46194e840a0c952503c08df39ed45a1f5e9887a/lib/Ext/platform/src/data/proxies/SyncProxy.js#L592-L597,1, +JavaScript,linear regression,https://github.com/EclairJS/eclairjs/blob/336368b99f17674a2f86914abbfa5f3000bd028f/server/src/main/resources/eclairjs/ml/regression/GBTRegressionModel.js#L38-L49,1, +JavaScript,html encode string,https://github.com/needim/noty/blob/ec741ca366b180292ca81d9412936006ae50e16e/docs/_assets/docsify.js#L1642-L1649,2, +JavaScript,deducting the median from each column,https://github.com/S3bb1/ah-dashboard-plugin/blob/c283370ec0f99a25db5bb7029a98b4febf8c5251/public/dashboard/bower_components/admin-lte/plugins/datatables/extensions/ColReorder/js/dataTables.colReorder.js#L989-L1032,0, +JavaScript,parse command line argument,https://github.com/splunk/splunk-sdk-javascript/blob/9aec5443860926654c2ab8ee3bf198a407c53b07/contrib/commander.js#L417-L428,1, +JavaScript,set file attrib hidden,https://github.com/sitewaerts/cordova-plugin-document-viewer/blob/25b82d959c20d7880d513100c2b979e1e15349dc/src/common/js/winjs/js/ui.js#L46814-L46821,0, +JavaScript,how to determine a string is a valid word,https://github.com/cronvel/json-kit/blob/b49b3962137717842049c8bb84116f77f133789c/bench/v0.1.7/stringify.js#L69-L104,0, +JavaScript,parse binary file to custom class,https://github.com/warelab/gramene-bins-client/blob/8a78b30971a223b322ed3f1c5760d110c938ec86/spec/bins/BinSpec.js#L78-L86,0, +JavaScript,nelder mead optimize,https://github.com/rexxars/mead/blob/12677d043e713cff2bed06ae1a2d1b6db0ad0b3d/src/index.js#L87-L91,0, +JavaScript,how to empty array,https://github.com/react-component/calendar/blob/dcc3a76a07f426a089566d4c60587cad6f0e2f17/src/RangeCalendar.js#L17-L19,1, +JavaScript,pretty print json,https://github.com/smbolton/dagre-d3v4/blob/78f537785332005b618e087e4226c0267c069ec6/gulpfile.js#L224-L227,3, +JavaScript,convert html to pdf,https://github.com/marcbachmann/node-html-pdf/blob/89a41e3bfe079a3d062c6053f26a9183a1a548a2/lib/pdf.js#L26-L41,1,"part of the right thing, but not the right thing" +JavaScript,parse json file,https://github.com/pxwise/lite-json-parse/blob/3467b96385627420cd481ea5b488c3ca786e8f95/index.js#L9-L20,2, +JavaScript,buffered file reader read text,https://github.com/crispy1989/node-zstreams/blob/4ec01a49d1d00c542ee1dfa4b3bedcf1324e9ffd/lib/streams/file-buffer-stream.js#L160-L186,2, +JavaScript,how to read .csv file in an efficient way?,https://github.com/restify/plugins/blob/32c0c1e64dae2698abd8f4c0307d4fb405c1b6f2/lib/plugins/multipartBodyParser.js#L116-L132,0, +JavaScript,convert json to csv,https://github.com/elb-min-uhh/markdown-elearnjs/blob/a09bcc497c3c50dd565b7f440fa1f7b62074d679/assets/elearnjs/extensions/elearnvideo/assets/js/elearnvideo.js#L2593-L2628,3, +JavaScript,unzipping large files,https://github.com/feedhenry/fh-forms/blob/87df586b9589e3c636e1e607163862cfb64872dd/lib/impl/importForms/unzipFile.js#L113-L127,1, +JavaScript,buffered file reader read text,https://github.com/creationix/git-node-fs/blob/7c691d7281b49b1be77426701c2bf0535e1abcc9/lib/node-fs.js#L73-L80,0, +JavaScript,randomly extract x items from a list,https://github.com/badges/shields/blob/283601423f3d1a19aae83bf62032d40683948636/services/nuget/nuget-v3-service-family.js#L49-L52,1, +JavaScript,memoize to disk - persistent memoization,https://github.com/deftly/node-deftly/blob/0c34205fd6726356b69bcdd6dec4fcba55027af6/src/log.js#L110-L121,1, +JavaScript,convert int to bool,https://github.com/spite/ccapture.js/blob/e4bc8fccc1e10d69b79b1c02fd13f3c448a3fb41/src/webm-writer-0.2.0.js#L257-L274,0, +JavaScript,finding time elapsed using a timer,https://github.com/Lukasz-pluszczewski/all-log/blob/53c798840c8e02fc7600280919043261d7eff9a9/lib/all-log.js#L336-L413,0, +JavaScript,how to get html of website,https://github.com/sealice/koa2-ueditor/blob/89fa1cc70f0375fafe023c88692fc27c83f2cd98/example/public/ueditor/ueditor.all.js#L7255-L7273,1,this query can be interpreted to imply this answer... +JavaScript,deserialize json,https://github.com/JCloudYu/beson/blob/de9f1f6be59599feb1a5e70085b42b0382600d0b/deserialize.esm.js#L660-L673,0, +JavaScript,copying a file to a path,https://github.com/bower/decompress-zip/blob/677d5eb7f1783fa7ef274a564c7252762921afd2/lib/decompress-zip.js#L91-L98,0, +JavaScript,custom http error response,https://github.com/FreeAllMedia/appeal/blob/b741f509770c33228a8267378d0ee3f722519cd4/es5/spec/request.spec.js#L240-L258,0, +JavaScript,string similarity levenshtein,https://github.com/cb1kenobi/fields/blob/cd0e28cab3bfbbae3bcdb742976d0949be01e157/lib/common.js#L68-L86,3, +JavaScript,format date,https://github.com/twcapps/vue-ts-locale/blob/9c97c3c68656297dc1a2b1592d85608b763c719a/lib/locale.directive.js#L72-L79,0, +JavaScript,get current ip address,https://github.com/zwaveiot/zwaveip-node/blob/120d02bbdf6769b819b0becf1198c8be5b9271b9/ZipGatewayUtils.js#L90-L95,1, +JavaScript,read text file line by line,https://github.com/nextgis/nextgisweb_frontend/blob/582e2f17b31f59fc581b1f63d0b4f2750402afe1/packages/ngw-connector/scripts/generator.js#L84-L90,1, +JavaScript,convert decimal to hex,https://github.com/SeleniumHQ/selenium/blob/38d5e4440b2c866a78a1ccb2a18d9795a1bdeafd/third_party/closure/goog/ui/editor/defaulttoolbar.js#L556-L574,2, +JavaScript,httpclient post json,https://github.com/bloody-ux/menreiki/blob/66079c13a37ce96d261dfd6ab9e926856f107ba8/lib/core/proxy/mockLocal.js#L69-L74,0, +JavaScript,scatter plot,https://github.com/hl198181/neptune/blob/88030bb4222945900e6a225469380cc43a016c13/src/npt/directive/nptUpload.js#L100-L103,0, +JavaScript,sending binary data over a serial connection,https://github.com/Pecacheu/create2/blob/5dc05fdd097caba0bb90de9f697f57c39546ef8f/index.js#L87-L117,3, +JavaScript,export to excel,https://github.com/bem-contrib/md-to-bemjson/blob/047ab80c681073c7c92aecee754bcf46956507a9/packages/remark-bemjson/lib/exports.js#L33-L41,0, +JavaScript,linear regression,https://github.com/BorisChumichev/everpolate/blob/00201c964891d37e8cfa6922057c5069db4a37d4/lib/linearRegression.js#L17-L50,3, +JavaScript,fuzzy match ranking,https://github.com/socketstream/socketstream/blob/bc783da043de558ee3ff9032ea15b9b8113a8659/docs/js/docs.js#L477-L497,0, +JavaScript,positions of substrings in string,https://github.com/agreatfool/swagger-spec-to-pdf/blob/0d2bdf9fd0debec1ab7ebd7bd7cea8f7fde06155/swagger-editor/bower_components/sway-worker/index.js#L5-L6,0, +JavaScript,httpclient post json,https://github.com/uptick/js-tinyapi/blob/e70ce2f24b0c2dc7bb6c5441eecf284456b54697/src/utils.js#L267-L275,3, +JavaScript,heatmap from 3d coordinates,https://github.com/NASAWorldWind/WebWorldWind/blob/399daee66deded581a2d1067a2ac04232c954b8f/src/layer/heatmap/HeatMapColoredTile.js#L19-L122,3, +JavaScript,how to check if a checkbox is checked,https://github.com/Lemurro/client-framework7-core-frontend/blob/119985cb1d00b92b4400504e1c46f54dc36bcd77/dist/lemurro.js#L18634-L18638,1, +JavaScript,confusion matrix,https://github.com/motionbank/piecemaker-api-client/blob/6d0a3ab7d603fa7e21303433d099aaa36b09f7c4/examples/processing/pm_api_group_users_01/template/processing.js#L1857-L1866,0, +JavaScript,convert a date string into yyyymmdd,https://github.com/segmentio/analytics.js/blob/077efafa234d0bb4374169adb4e1ff71da39af8f/analytics.js#L19766-L19785,0, +JavaScript,parse binary file to custom class,https://github.com/smravi/docco-plus/blob/16a7b3fe3a5c591ed685ff2d853a0a7ad7ed63fb/lib/run.js#L4-L45,0, +JavaScript,get current observable value,https://github.com/graphql/graphiql/blob/5d0f31d6059edc5f816edba3962c3b57fdabd478/src/components/GraphiQL.js#L1066-L1082,0, +JavaScript,create cookie,https://github.com/newmsz/gozy/blob/3ba731957ddad1659094e0890612e39a0c552a59/libs/HttpResponse.js#L142-L162,3, +JavaScript,parse command line argument,https://github.com/uupaa/Watch.js/blob/5c8c4d30de6ae4feb20f091c8ccfaedb39bd9c12/bin/Watch.js#L73-L101,3, +JavaScript,fuzzy match ranking,https://github.com/neumino/reqlite/blob/cae3a76d9e52135d0da3cabbcc5374be9dc84ea2/lib/utils.js#L228-L240,0, +JavaScript,how to make the checkbox checked,https://github.com/sentsin/layui/blob/1ff124de94e86cd0270b8a99f500aa3149569d67/src/lay/modules/table.js#L1464-L1488,1, +JavaScript,convert decimal to hex,https://github.com/stayradiated/onepasswordjs/blob/6f37d31bd5e7e57489885e89ef9df88e8197a2c3/src/crypto_browser.js#L307-L314,3, +JavaScript,create cookie,https://github.com/Pamblam/jSQL/blob/507ef210e339fdb8f820b26412e2173aa8c19d82/jSQL.js#L2059-L2120,2, +JavaScript,convert decimal to hex,https://github.com/svelto/svelto/blob/53ad2961fe8037072afb1af9706f09dc5d5b97f6/src/lib/emoji/data/raw/make.js#L14-L18,2, +JavaScript,pretty print json,https://github.com/torifat/flowtype-loader/blob/7334a152e215dbd43cd86f7ea18e5cf1d9c5d714/lib/flowResult.js#L101-L105,1, +JavaScript,how to extract zip file recursively,https://github.com/mdasberg/grunt-karma-sonar/blob/6b632d3cfdda05eee37165ea87531f1171a10117/install.js#L152-L173,2, +JavaScript,convert int to string,https://github.com/datastax/nodejs-driver/blob/6766188870f7099aeb393719820245b69d789d23/lib/types/big-decimal.js#L220-L237,0, +JavaScript,scatter plot,https://github.com/gl-vis/gl-scatter2d-fancy/blob/9195787ae54f077e40b10173bf329968301226a4/scatter-fancy.js#L374-L401,2, +JavaScript,convert a utc time to epoch,https://github.com/crotwell/seisplotjs-seedlink/blob/2cc3ae02e2ed2e42b3b8508172649fca1fffbb9a/example/datalink.js#L135-L140,1, +JavaScript,how to extract zip file recursively,https://github.com/BeLi4L/subz-hero/blob/c22c6df7c2d80c00685a9326043e1ceae3cbf53d/src/providers/subscene.js#L152-L160,1, +JavaScript,priority queue,https://github.com/agnat/js_priority_queue/blob/33bed09c205d8b77e02536fbf6ea8cc9a08b137e/priority_queue.js#L1-L61,3, +JavaScript,how to make the checkbox checked,https://github.com/apostrophecms/apostrophe/blob/dca702fc95492eb3f86a2ad338a3791365266064/lib/modules/apostrophe-pieces/public/js/manager-modal.js#L675-L701,3, +JavaScript,copy to clipboard,https://github.com/jakubpawlowicz/clean-css/blob/dc728a8167b7b6f62906115c560be2f5b530f9f6/docs/js/drag-drop.js#L74-L92,0, +JavaScript,get executable path,https://github.com/nikku/run-camunda/blob/f8717c67d8b2b9b4448e7f95b1529706fb4e32d2/camunda.js#L59-L75,0, +JavaScript,linear regression,https://github.com/EclairJS/eclairjs/blob/336368b99f17674a2f86914abbfa5f3000bd028f/server/src/main/resources/eclairjs/ml/regression/LinearRegression.js#L43-L58,0, +JavaScript,deducting the median from each column,https://github.com/yefremov/aggregatejs/blob/932b28a15a5707135e7095950000a838db409511/median.js#L19-L33,2, +JavaScript,priority queue,https://github.com/CodeTanzania/majifix-service-group/blob/bce41249dd31e57cf19fd9df5cbd2c3e141b0cf8/lib/servicegroup.model.js#L449-L478,0, +JavaScript,convert string to number,https://github.com/pasangsherpa/convert-base/blob/1b5a0ad764faa2233c1a4e7504fbfb2c4c362d43/dist/convert-base.js#L10-L24,2, +JavaScript,json to xml conversion,https://github.com/slappforge/slappforge-sdk/blob/65ba1d719f997650a2024b0da6d5d9f54eedb37b/packages/slappforge-sdk-xml/lib/XMLConverter.js#L22-L49,0, +JavaScript,connect to sql,https://github.com/whyhankee/dbwrkr-mongodb/blob/6f4fddc2837294e7a16460edb288b299994f9c00/dbwrkr-mongodb.js#L41-L74,0, +JavaScript,how to empty array,https://github.com/jigarjain/object-clean/blob/ebfad9301e6588796abb4f08a44fb3ab4b9af823/index.js#L26-L35,0, +JavaScript,deserialize json,https://github.com/mapbox/tilelive/blob/8a37d89dd6e9fb0f6938e1c6ccf62349556c9375/lib/stream-util.js#L109-L116,3, +JavaScript,linear regression,https://github.com/FVANCOP/ChartNew.js/blob/08681cadc1c1b6ea334c11d48b2ae43d2267d611/Add-ins/stats.js#L21-L83,3,bad code +JavaScript,how to get current date,https://github.com/queicherius/gw2api-client/blob/a5a2f6bab89425bbbcf33eec73b7440cec5f312f/src/helpers/resetTime.js#L7-L12,1, +JavaScript,convert json to csv,https://github.com/OpenTriply/YASGUI.YASR/blob/4de0a4e3b182c23b63897376ab9fb141fea17af8/lib/jquery.csv-0.71.js#L601-L626,1, +JavaScript,how to empty array,https://github.com/QoVoQ/vue-smart-bus/blob/1ab6821720f9f94149bddf011db5a9f83f29424b/dist/vue-smart-bus.esm.js#L42-L50,0, +JavaScript,normal distribution,https://github.com/PanthR/panthrMath/blob/54d249ca9903a9535f963da711bd3a87fb229c0b/panthrMath/distributions/lognormal.js#L80-L101,2, +JavaScript,format date,https://github.com/epoberezkin/ajv/blob/ab841b462ec4baff37d2a7319cef13820b53d963/spec/issues/617_full_format_leap_year.spec.js#L7-L47,0, +JavaScript,nelder mead optimize,https://github.com/dasmoth/dalliance/blob/64565abc974433a5dcd5406d17fa0a202e1e55fc/js/cbrowser.js#L1515-L1574,0, +JavaScript,hash set for counting distinct elements,https://github.com/vmarkdown/vremark-parse/blob/d7b353dcb5d021eeceb40f3c505ece893202db7a/packages/vrehype-hash/index.js#L4-L19,3, +JavaScript,copy to clipboard,https://github.com/avwo/whistle/blob/b419da1d6185a006327f2ce267667f11c0d4109e/biz/webui/htdocs/src/js/index.js#L552-L999,0, +JavaScript,unzipping large files,https://github.com/joeferraro/MavensMate/blob/8804517bf8f8edf716405d959abc5f9468aa021f/app/lib/util.js#L498-L508,1, +JavaScript,readonly array,https://github.com/goto-bus-stop/awestruct/blob/2547f7f89b834a02c6cf1451e9e9b54f12275d63/src/StructType.js#L19-L25,0, +JavaScript,get current process id,https://github.com/enhancv/mongoose-subscriptions/blob/97637b21d31d170b8578f3d0ff0c4d38f32713b4/src/Schema/ProcessorItem.js#L36-L48,0, +JavaScript,how to make the checkbox checked,https://github.com/apostrophecms/apostrophe/blob/dca702fc95492eb3f86a2ad338a3791365266064/lib/modules/apostrophe-pages/public/js/reorganize.js#L513-L552,2,"it's in here, but a lot of irrelevant stuff too" +JavaScript,normal distribution,https://github.com/heikkiv/carl/blob/fe37146315c18f6e76efc49a0e855aef703e69a9/lib/carl.js#L27-L30,0, +JavaScript,parse command line argument,https://github.com/marcojonker/data-elevator/blob/7d56e5b2e8ca24b9576066e5265713db6452f289/lib/utils/command-line-utils.js#L307-L332,3, +JavaScript,concatenate several file remove header lines,https://github.com/SomMeri/grunt-zip-to-crx/blob/14b6c0bb3748a955e2a56d08ea23dca6693d967c/lib/createCrxWithOpenSSL.js#L41-L49,0, +JavaScript,unique elements,https://github.com/imonology/scalra/blob/0cf7377d02bf1e6beb90d6821c144eefb89feaa9/extension/sync.js#L62-L100,0, +JavaScript,initializing array,https://github.com/teakit/teakit/blob/6ac91796c0e89c1e6bc7e89fcee39393cc461eb9/lib/internal/mapCacheClear.js#L12-L19,0, +JavaScript,sorting multiple arrays based on another arrays sorted order,https://github.com/osdat/jsdataframe/blob/d9f2028b33f9565c92329ccbca8c0fc1e865d97e/jsdataframe.js#L4443-L4477,3, +JavaScript,output to html file,https://github.com/jeremyben/nunjucks-cli/blob/2f0319072841de394fbd204031b2f3bbd4ccf2ed/index.js#L123-L138,2, +JavaScript,converting uint8 array to image,https://github.com/MaiaVictor/dattata/blob/890d83b89b7193ce8863bb9ac9b296b3510e8db9/canvasImage.js#L28-L38,1, +JavaScript,read text file line by line,https://github.com/ajacksified/Mediator.js/blob/088c2b3030dab020676f8fe79439183bcff09fbb/lib-cov/jscoverage.js#L503-L519,0, +JavaScript,heatmap from 3d coordinates,https://github.com/NASAWorldWind/WebWorldWind/blob/399daee66deded581a2d1067a2ac04232c954b8f/src/layer/heatmap/HeatMapLayer.js#L29-L417,2, +JavaScript,group by count,https://github.com/fasttime/JScrewIt/blob/f0a9e93ccbc957d72ed775a7ad528a6b1fe9ffcc/lib/jscrewit.js#L4412-L4437,0, +JavaScript,encode url,https://github.com/maxkfranz/weaver/blob/bac2535114420379005acdfe2dad06331de88496/documentation/js/Markdown.Converter.js#L1291-L1306,3, +JavaScript,get the description of a http status code,https://github.com/pillarjs/finalhandler/blob/1b2c36949db50aa766d4691a5f38eb6639d01d66/index.js#L236-L245,0, +JavaScript,convert a date string into yyyymmdd,https://github.com/fnogatz/transportation/blob/4d967d99bc564827ee3c4c122c967dc65d947874/lib/service.js#L47-L78,2, +JavaScript,how to reverse a string,https://github.com/CascadeEnergy/dispatch-fn/blob/e3ac8135f4c15c21016c9c972a9652b09474074d/example/example.js#L33-L36,3, +JavaScript,encrypt aes ctr mode,https://github.com/vex-coin/vex-lib-js/blob/0696320de183702c0344f8bd07deef32fe1a3709/dist/vex-lib.min.js#L8-L8,0, +JavaScript,confusion matrix,https://github.com/winkjs/wink-helpers/blob/ce2792a3f0e1bcd067d151a8ca2cd41ffddc89f6/src/wink-helpers.js#L365-L376,3,bad code... +JavaScript,randomly extract x items from a list,https://github.com/henrytseng/angular-state-router/blob/5b8147d5f5fe8a8e8453dddf61fe0b01fe5b5e9b/example/app.js#L328-L338,2,"bad code, but probably right" +JavaScript,how to read .csv file in an efficient way?,https://github.com/dimsmol/ojster/blob/36322b4df5bfa454ea13d36c1b5c0d3bed834f90/lib/fs/path_compiler.js#L65-L281,0, +JavaScript,output to html file,https://github.com/kinchanmaemo/standalone-html/blob/44826566c100c691c371abafae88df2ae67a7abb/bin/standalone-html.js#L89-L100,3, +JavaScript,get current observable value,https://github.com/canjs/can-diff/blob/03f925eafcbd15e8b2ac7d7a7f46db0bde5a9023/patcher/patcher.js#L83-L93,0, +JavaScript,how to read .csv file in an efficient way?,https://github.com/DevelAgora/make-gettext/blob/13c55df090ee0eb1acb4d039471ca335ea944653/lib/po2csv.js#L63-L80,3, +JavaScript,linear regression,https://github.com/filerjs/filer/blob/4aae53839a8da2ca5da9f4e92c33eaab50094352/perf/simple-statistics/src/simple_statistics.js#L26-L122,3, +JavaScript,hash set for counting distinct elements,https://github.com/RedSeal-co/ts-tinkerpop/blob/5b1485194407864aaa71134409f4b83b7cdaee1e/lib/ts-tinkerpop.js#L644-L657,0, +JavaScript,normal distribution,https://github.com/heikkiv/carl/blob/fe37146315c18f6e76efc49a0e855aef703e69a9/lib/carl.js#L22-L25,3, +JavaScript,pretty print json,https://github.com/christophehurpeau/pob-lerna/blob/56323428a0165e9c30dd48d4caaf63d5e4af0ba2/packages/pob/lib/utils/formatJson.js#L5-L8,3, +JavaScript,underline text in label widget,https://github.com/neyric/webhookit/blob/13abf6f072e23d536432235da78fd3e4e5d742b6/public/javascripts/yui/editor/simpleeditor-min.js#L18-L18,0, +JavaScript,read text file line by line,https://github.com/pgilad/gulp-todo/blob/3fd0dbcd8fd2275f6cd3f8b50405c9c05dfef443/gulpfile.js#L15-L21,0, +JavaScript,how to get database table name,https://github.com/finalclass/sqlite-table/blob/997143eba78aa0dc75adcd2b19618b5cad68347a/spec/sqlite-table.spec.js#L8-L24,0, +JavaScript,convert string to number,https://github.com/ethjs/ethjs-unit/blob/35d870eae1c32c652da88837a71e252a63a83ebb/src/index.js#L65-L81,0, +JavaScript,write csv,https://github.com/GazonkFoo/csvwriter/blob/a937d42f41d27a74a2774a2bc1b1a692a1c8555c/bin/csvwriter.js#L40-L59,1, +JavaScript,how to get database table name,https://github.com/CartoDB/node-cartodb-query-tables/blob/c5016bceb989108103c1083bcd4c109cd3959a61/lib/models/database_tables.js#L30-L34,0, +JavaScript,save list to file,https://github.com/scripting/reader/blob/40050c7ecffe0512e73c5915436358fd3f3f1032/davereader.js#L1169-L1181,3, +JavaScript,convert int to string,https://github.com/amida-tech/blue-button-cms/blob/749b8cf071910b22f8176a9ed8fc3b05062e1aad/lib/parser.js#L8-L15,0, +JavaScript,readonly array,https://github.com/joyent/node-oncrpc/blob/54f8be328970bb4e94e1101828945710ac19ad58/lib/xdr.js#L117-L125,0, +JavaScript,encrypt aes ctr mode,https://github.com/particle-iot/spark-protocol/blob/2c745e7d12fe1d68c60cdcd7322bd9ab359ea532/js/lib/CryptoStream.js#L57-L116,2, +JavaScript,readonly array,https://github.com/apache/incubator-echarts/blob/4d0ea095dc3929cb6de40c45748826e7999c7aa8/src/data/Graph.js#L40-L82,0, +JavaScript,read properties file,https://github.com/GitbookIO/gitbook/blob/6c6ef7f4af32a2977e44dd23d3feb6ebf28970f4/lib/parse/parseReadme.js#L16-L25,0, +JavaScript,get current process id,https://github.com/bitovi/launchpad/blob/3cfc43ecf9c98d75b0d342c73dc976397cb65728/lib/local/instance.js#L61-L67,3, +JavaScript,how to determine a string is a valid word,https://github.com/react-native-community/cli/blob/c3ed10c0e2d5c7bfe68312093347fbf7e61aa7a7/packages/global-cli/index.js#L162-L180,1, +JavaScript,sending binary data over a serial connection,https://github.com/soldair/pinoccio-bridge/blob/b2c6f81914804372eee191ce538240c9bb77b637/serial.js#L43-L74,2, +JavaScript,how to check if a checkbox is checked,https://github.com/zuixjs/zuix/blob/d7c88a5137342ee2918e2a70aa3c01c1c285aea2/src/js/helpers/ZxQuery.js#L510-L519,2, +JavaScript,finding time elapsed using a timer,https://github.com/antvis/data-set/blob/55526ac5663b87cdc988fc579404df186603b2d9/demos/assets/g2.js#L24396-L24407,2, +JavaScript,get the description of a http status code,https://github.com/vesparny/fair-analytics/blob/a53dedf75618304023fccf70907cfc40e19d4ffa/lib/server.js#L8-L12,2, +JavaScript,set working directory,https://github.com/eclipse/orion.client/blob/eb2583100c662b5cfc1b461a978b31d3b8555ce1/modules/orionode/lib/tty_shell.js#L57-L62,0, +JavaScript,get executable path,https://github.com/appium/appium-doctor/blob/c00f604047b2addb7c544e12ddb524169bf8067e/lib/utils.js#L42-L61,3, +JavaScript,create cookie,https://github.com/pillarsjs/pillars/blob/7702fd42d3c07fd0e5605a377b1b51c88d0bdd58/middleware/sessions.js#L49-L65,3, +JavaScript,get all parents of xml node,https://github.com/AlgoTrader/betfair-sports-api/blob/196093a9711b268e9f8b1892e71c1aa070492747/lib/betfair_decoder.js#L44-L60,0, +JavaScript,get executable path,https://github.com/Orckestra/orc-scripts/blob/5044fedef3d4bdf881a03bfe22e0ef0d22a09ffa/src/utils.js#L65-L91,3, +JavaScript,aes encryption,https://github.com/bikerp/dsp-w215-hnap/blob/c87bb2b0e8d88712669c385f2ceb1ffa89686968/js/AES.js#L78-L91,3, +JavaScript,format date,https://github.com/jahnestacado/logia/blob/a198aa71adbd45e3ddd1dba4115c0521a265afc5/lib/factory.js#L62-L69,1, +JavaScript,confusion matrix,https://github.com/repetere/modelscript/blob/b507fad9b3ecfb4a9ec4d44d41052a8082dac763/build/modelscript.umd.js#L49842-L49853,2, +JavaScript,how to extract zip file recursively,https://github.com/insistime/qiao.plugin.zip/blob/01160027eb29e9f8c3d30239e749e3c5ecd5b1e3/lib/qiao.plugin.zip.js#L19-L29,0, +JavaScript,extracting data from a text file,https://github.com/imonology/scalra/blob/0cf7377d02bf1e6beb90d6821c144eefb89feaa9/core/file.js#L67-L89,0, +JavaScript,how to read .csv file in an efficient way?,https://github.com/TryGhost/Ghost/blob/bb7bb55cf3e60af99ebbc56099928827b58461bc/core/server/lib/fs/read-csv.js#L6-L52,3, +JavaScript,fuzzy match ranking,https://github.com/bripkens/fuzzy.js/blob/f7bb5d8846f8bafee8f5d85fc1c9582c7deff8f9/fuzzy.js#L6-L141,2, +JavaScript,convert a utc time to epoch,https://github.com/Streampunk/tesladon/blob/9e934f7514880700a6172ae5813ac22ed2fa5eb7/src/util.js#L42-L51,2, +JavaScript,output to html file,https://github.com/davej/barnyard/blob/1c83dc6163dbc0e602e328ef7f2725e7b86ee103/index.js#L133-L139,0, +JavaScript,get all parents of xml node,https://github.com/btd/rollup-plugin-visualizer/blob/a867784a93b191ea4bce174c849b7f89d5c265ae/src/plugin1.js#L11-L18,3, +JavaScript,underline text in label widget,https://github.com/eclipse/orion.client/blob/eb2583100c662b5cfc1b461a978b31d3b8555ce1/bundles/org.eclipse.orion.client.ui/web/orion/problems/problemsExplorer.js#L178-L191,0, +JavaScript,positions of substrings in string,https://github.com/tunnckoCore/starts-with/blob/98b9de85f66b10c153b6bf223d56d2ba441b8d8b/benchmark/implementations-browser.js#L56-L60,0, +JavaScript,how to make the checkbox checked,https://github.com/mattinsler/caboose/blob/b0e1d0d7962050a2f72e918197488011cfb8ba57/lib/view/helpers/view_helper.js#L23-L27,3, +JavaScript,convert int to bool,https://github.com/rootslab/boris/blob/eb60a99b18a396a43ec350e3ea3d67728e574270/example/boris-info-reply-example.js#L19-L22,0, +JavaScript,underline text in label widget,https://github.com/ma-ha/easy-web-app/blob/f48ca9d06947e35d29a6188ece17f0f346e07c5e/index.js#L972-L979,0, +JavaScript,heatmap from 3d coordinates,https://github.com/Ivshti/node-subtitles-grouping/blob/26284201817d1d200c1da28e4cf22f60a72ff0f0/lib/heatmap.js#L7-L25,0, +JavaScript,get the description of a http status code,https://github.com/nearform/trail/blob/bb53ffc44932f32b03de936e90c9721012f67884/packages/trail-hapi-plugin/lib/api.js#L15-L42,2, +JavaScript,convert json to csv,https://github.com/substance/texture/blob/98649b53c493a1d3e4eab89574ab8d55e121296e/src/article/converter/bib/BibConversion.js#L11-L61,0, +JavaScript,get current ip address,https://github.com/suskind/network-list/blob/1e3289a13df866954576089334b1a8012091784b/src/index.js#L98-L118,2, +JavaScript,finding time elapsed using a timer,https://github.com/seriousManual/hirestime/blob/de5013c56ef0edc812721cbbf9e8d7a65c7839aa/index.js#L21-L29,2, +JavaScript,how to empty array,https://github.com/zipscene/objtools/blob/24b5ddf1a079561b978e9e131e14fa8bec19f9ae/lib/index.js#L778-L786,0, +JavaScript,how to read .csv file in an efficient way?,https://github.com/uber/deck.gl/blob/a2010448b7f268bbd03617b812334c68a6b9e5b2/modules/json/src/parsers/convert-json.js#L162-L180,1, +JavaScript,convert int to bool,https://github.com/origin1tech/chek/blob/6bc3ab0ac36126cc7918a244a606009749897b2e/dist/modules/to.js#L53-L65,2, +JavaScript,read properties file,https://github.com/jmjuanes/utily/blob/f620180aa21fc8ece0f7b2c268cda335e9e28831/lib/storage.js#L110-L150,0, +JavaScript,linear regression,https://github.com/luccastera/shaman/blob/fc1eedd3842a0d56cb14cfa16d9dd956359ff6a2/examples/cars.js#L13-L80,2, +JavaScript,json to xml conversion,https://github.com/ma-ha/rest-web-ui/blob/e2db0d55bb31a4f16fd07609ecae79156cb38378/html/modules/pong-rss/pong-rss.js#L198-L225,0, +JavaScript,parse command line argument,https://github.com/axilirator/cayman/blob/95472780e1b14183b99f8dcea262feff57cff824/cayman.js#L294-L325,2, +JavaScript,extracting data from a text file,https://github.com/skerit/arcstream/blob/fcc785ba62583f30e3c78ff1f3325ca7735d5dbc/lib/arc_stream.js#L527-L593,0, +JavaScript,sorting multiple arrays based on another arrays sorted order,https://github.com/ocadotechnology/quantumjs/blob/5bc684b750472296f186a816529272c36218db04/quantum-api/lib/tags.js#L26-L28,2, +JavaScript,scatter plot,https://github.com/panarch/famous-mig/blob/a241d9955d20ceb0fe3ce0a1fb13e9961e1c6878/src/index.js#L178-L205,1, +JavaScript,convert a date string into yyyymmdd,https://github.com/typhonjs-node-esdoc/esdoc-plugin-dependency-graphs/blob/af2d9cabce2d48edd4ad7ed81c722cc27efacb67/template/html/jquery-tablesorter.js#L2612-L2625,1, +JavaScript,get current process id,https://github.com/kristerkari/react-native-css-media-query-processor/blob/004aaf3ce0280ad3a81cd3c25ff76d9a8682d96b/benchmark.js#L667-L672,0, +JavaScript,convert decimal to hex,https://github.com/basisjs/basisjs/blob/8571903014b207a09d45ad2d1bfba277bf21289b/src/basis/ui/chart.js#L108-L123,0,opposite +JavaScript,read properties file,https://github.com/philbooth/bfj/blob/61087c194d5675c75569a2e08617a98609b16ead/src/read.js#L24-L26,1, +JavaScript,encrypt aes ctr mode,https://github.com/flint-bot/sparky/blob/c52992920bfff20806201d78ad9c5f764211711a/browser/node-sparky.min.js#L1-L1,0, +JavaScript,encode url,https://github.com/thlorenz/6bit-encoder/blob/ea0449137b3c155dcd59bc37c852efa35240dddd/6bit-encoder.js#L244-L252,0, +JavaScript,how to extract zip file recursively,https://github.com/UnitedIncome/serverless-python-requirements/blob/2e8117502606fd4bd82c19c3050ba0350adb2789/lib/zipTree.js#L65-L82,1,Not recursive +JavaScript,aes encryption,https://github.com/scbd/aspnet-formsauthentication-js/blob/48a61cca9a725e52abcf0b3208fd0f1158a8706d/formsauthentication.js#L6-L20,0, +JavaScript,memoize to disk - persistent memoization,https://github.com/facundoolano/app-store-scraper/blob/751fcd104671548c120a1bae533d5b4922024c7a/index.js#L18-L27,2, +JavaScript,set file attrib hidden,https://github.com/cast-org/figuration/blob/c82f491ebccb477f7e1c945bfff61c2340afe1ac/docs/assets/js/src/docs.js#L155-L162,0, +JavaScript,convert html to pdf,https://github.com/oxygenhq/oxygen/blob/b1c4be3360363091df89558dbbfb7f6d9d8efd71/lib/reporters/pdf-reporter.js#L61-L80,2, +JavaScript,extracting data from a text file,https://github.com/simbo/metalsmith-better-excerpts/blob/ccc9535ec8e8491eda50fabc2d433c8053435924/lib/index.js#L57-L67,0, +JavaScript,get current process id,https://github.com/dasmoth/dalliance/blob/64565abc974433a5dcd5406d17fa0a202e1e55fc/js/features.js#L33-L50,0, +JavaScript,scatter plot,https://github.com/neveldo/jQuery-Mapael/blob/66d58661c5385f366efa6c9867adb7283d158013/js/jquery.mapael.js#L1339-L1356,0, +JavaScript,deducting the median from each column,https://github.com/pandastrike/jsck/blob/944aa33bcc30a54653372ac67c1fe50202a31b76/benchmarks/statistics.js#L97-L113,3, +JavaScript,string similarity levenshtein,https://github.com/leo/args/blob/018eee7bb8e1c3fc7b2831204d739fda3d7431ae/lib/utils.js#L8-L27,0, +JavaScript,sorting multiple arrays based on another arrays sorted order,https://github.com/xpl/useless/blob/f44dcaff5ea6bfa817c1807b4ba29a1aadf5e40d/base/Sort.js#L46-L50,2, +JavaScript,get all parents of xml node,https://github.com/simonepri/pidtree/blob/2c71d9510c015ce841682962195b2e9ea52bab27/bin/pidtree.js#L36-L64,0, +JavaScript,linear regression,https://github.com/EclairJS/eclairjs/blob/336368b99f17674a2f86914abbfa5f3000bd028f/server/src/main/resources/eclairjs/ml/regression/AFTSurvivalRegression.js#L33-L48,0, +JavaScript,string to date,https://github.com/ianrothmann/RocketVueAppFramework/blob/d00d585846c6ba23dd16964edf27f0d0930c18c9/src/framework.js#L203-L213,2, +JavaScript,get the description of a http status code,https://github.com/cmcampione/thingshub.org/blob/b9a2e74bddebb80ff473001be93e19ef1578892a/server/src/server.js#L175-L177,3, +JavaScript,parse binary file to custom class,https://github.com/APIDevTools/json-schema-ref-parser/blob/29ea8693e288e5ced3ebd670d545925f16a4ed17/lib/parsers/binary.js#L32-L35,0, +JavaScript,get all parents of xml node,https://github.com/textlint/textlint/blob/61ebd75dac6804827aad9b4268867c60e328e566/examples/rulesdir/rules/no-todo.js#L10-L18,2, +JavaScript,unzipping large files,https://github.com/keithmorris/node-underscores/blob/923d29855d494059f615c641a97a851170b9a960/index.js#L55-L70,3, +JavaScript,linear regression,https://github.com/luccastera/shaman/blob/fc1eedd3842a0d56cb14cfa16d9dd956359ff6a2/examples/cigarettes.js#L13-L83,3, +JavaScript,html entities replace,https://github.com/intesso/decode-html/blob/9942b1064105d59d767d5527c4b1a1c56cad1946/index.js#L13-L23,3, +JavaScript,map to json,https://github.com/scull7/empower-permission/blob/fcac7f5b66a426f8410f929b58ff3f68101ae24c/dist/permission-map-builder.js#L2-L21,0, +JavaScript,map to json,https://github.com/o2team/athena/blob/cfdb5d0b1a043335686127e9b28346de27212d6c/lib/build/athena_mate/athena_inject_server.js#L23-L81,0, +JavaScript,matrix multiply,https://github.com/jillix/svg.connectable.js/blob/279b5a44112b99e777462650514ec1332ea5d202/example/js/svg.js#L2336-L2341,3, +JavaScript,json to xml conversion,https://github.com/amida-tech/fhir2ccda/blob/2040c1ce0ff792a8fbba2275c2d69f76ba13b5a8/lib/js2xml.js#L14-L27,1, +JavaScript,encode url,https://github.com/skerit/protoblast/blob/22f35b05611bd507d380782023179a3f6ec383ae/lib/rurl.js#L454-L461,1, +JavaScript,get inner html,https://github.com/xiongwilee/Gracejs/blob/a4ca954d28ddcd1c39a0b3eefe16e79a390fb507/app/blog/static/js/dashboard/post_edit.js#L56-L70,1, +JavaScript,export to excel,https://github.com/typeorm/typeorm/blob/360468b7913db8d988346fba1ee2d3f323498eef/extra/typeorm-class-transformer-shim.js#L154-L158,0, +JavaScript,unique elements,https://github.com/MrSwitch/hello.js/blob/50b2b792d758774fc08e8da911fd4415ea3831ba/demos/Collage/fabric.js#L2481-L2491,0, +JavaScript,socket recv timeout,https://github.com/eclipse/orion.client/blob/eb2583100c662b5cfc1b461a978b31d3b8555ce1/bundles/org.eclipse.orion.client.collab/web/orion/collab/collabClient.js#L447-L461,1, +JavaScript,deducting the median from each column,https://github.com/SAP/openui5/blob/8a832fca01cb1cdf8df589788e0c5723e2a33c70/src/sap.m/src/sap/m/ColumnPopoverSortItem.js#L4-L58,0, +JavaScript,aes encryption,https://github.com/xiamidaxia/xiami/blob/6fcee92c493c12bf8fd67c7068e67fa6a72a306b/meteor/oauth-encryption/encrypt.js#L32-L47,1, +JavaScript,extracting data from a text file,https://github.com/dbashford/textract/blob/dc6004b78619c169044433d24a862228af6895fa/lib/extractors/html.js#L79-L87,1, +JavaScript,read properties file,https://github.com/Appstax/appstax-js/blob/5f49531398c63d606217b9149c78ffdb50410b79/src/objects.js#L583-L593,0, +JavaScript,converting uint8 array to image,https://github.com/googlearchive/appengine-nodejs/blob/da3a5c7ff87c74eb3c8976f7d0b233f616765889/lib/utils.js#L57-L63,0, +JavaScript,html entities replace,https://github.com/nikhilmodak/gulp-ngdocs/blob/84d412873727426a0b616243b42668e1e3ba7474/src/dom.js#L30-L42,2, +PHP,scatter plot,https://github.com/szymach/c-pchart/blob/c6df46476e949bd930f7f44dd3170a78a8fe0f3b/src/Data.php#L436-L449,1, +PHP,how to make the checkbox checked,https://github.com/fuelphp/fieldset/blob/23c9d624849a989bdea289495f8cf998f793b6e8/src/Input/CheckboxGroup.php#L37-L65,3, +PHP,get current process id,https://github.com/vespolina/VespolinaCommerceBundle/blob/0644dd2c0fb39637a0a6c2838b02e17bc480bdbc/Controller/Process/AbstractProcessStepController.php#L45-L53,0, +PHP,how to extract zip file recursively,https://github.com/wp-cli/wp-cli/blob/564bf7b7cf1ac833071d1afed5d649d2a7198e15/php/WP_CLI/Extractor.php#L40-L64,3, +PHP,postgresql connection,https://github.com/DigitalState/Core/blob/51a6b8f7c72cf93045f1e10ef9d3675946d51da8/src/Parameter/Fixture/ParameterSequenceFixture.php#L19-L29,1, +PHP,string to date,https://github.com/ruxon/framework/blob/d6c9a48df41c8564ee1b0455cd09fbe789e6b086/src/Helpers/DateHelper.class.php#L12-L16,2, +PHP,get executable path,https://github.com/amphp/parallel/blob/2d02d964f4eb6f21ad0c50b259ec6128630dce53/lib/Context/Process.php#L145-L161,3, +PHP,extract data from html content,https://github.com/zackslash/PHP-Web-Article-Extractor/blob/f93d25d588dc0f8ddc4572429288edddb69386f6/src/Extract.php#L23-L33,0, +PHP,extract data from html content,https://github.com/Jinxes/layton/blob/27b8eab2c59b9887eb93e40a533eb77cc5690584/Layton/Library/Http/Response.php#L168-L179,1, +PHP,nelder mead optimize,https://github.com/CORE-POS/Common-Bundle/blob/07c74a9331157c50863ce638d07e1d34d479ca30/src/adodb5/session/adodb-session2.php#L363-L379,0, +PHP,save list to file,https://github.com/shopgate/cart-integration-sdk/blob/cf12ecf8bdb8f4c407209000002fd00261e53b06/src/configuration.php#L895-L936,2, +PHP,string similarity levenshtein,https://github.com/linhecheng/cmlphp/blob/4d6208a79df93f8703231ce0ecb5505e1f95d8da/src/Vendor/StringProcess.php#L40-L90,3, +PHP,all permutations of a list,https://github.com/alphazygma/Combinatorics/blob/153d096119d21190a32bbe567f1eec367e2f4709/src/Math/Combinatorics/Permutation.php#L70-L83,1,combinations and permutations mixed... +PHP,format date,https://github.com/laravel-enso/DataTable/blob/4034587a9c81b85b67dcdc9d5c243c07c1cc8104/src/app/Classes/QueryBuilder.php#L155-L160,2, +PHP,socket recv timeout,https://github.com/ddtraceweb/smtp-validator-email/blob/b90515fe5acbcb9b6f4b143a6789204fb1fbd6bc/lib/SmtpValidatorEmail/Smtp/Smtp.php#L412-L436,2, +PHP,get the description of a http status code,https://github.com/silverstripe/silverstripe-framework/blob/ed7aaff7da61eefa172fe213ec25e35d2568bc20/src/Control/HTTPResponse.php#L175-L189,1, +PHP,how to randomly pick a number,https://github.com/malenkiki/bah/blob/23495014acec63c2790e8021c75bc97d7e04a9c7/src/Malenki/Bah/A.php#L998-L1033,1, +PHP,output to html file,https://github.com/moodle/moodle/blob/a411b499b98afc9901c24a9466c7e322946a04aa/mod/wiki/editors/wikifiletable.php#L88-L137,3, +PHP,parse command line argument,https://github.com/codeigniter4/CodeIgniter4/blob/a31039291ff627150b0e3304d191b2a51b16271d/system/CLI/CLI.php#L705-L741,3, +PHP,get the description of a http status code,https://github.com/krystal-framework/krystal.framework/blob/a5ff72384f3efbe74f390538793feb7d522b9c39/src/Krystal/Http/Response/StatusGenerator.php#L131-L143,1, +PHP,randomly extract x items from a list,https://github.com/daniel-ac-martin/php-seids/blob/1a5a2a9a53d158dcb97f2592512da9676de65c35/src/SEIDS/Heaps/Binary/Heap.php#L67-L101,1, +PHP,how to randomly pick a number,https://github.com/claroline/Distribution/blob/a2d9762eddba5732447a2915c977a3ce859103b6/plugin/exo/Validator/JsonSchema/ExerciseValidator.php#L95-L127,0, +PHP,custom http error response,https://github.com/traderinteractive/filter-php/blob/a8dec173063ee2444ec297f065f64496b7d21590/src/Filterer.php#L547-L560,0, +PHP,get current observable value,https://github.com/caffeina-core/core/blob/819134644dfb3b6379a12fff08fa5ec45a2c614c/classes/Cache/Files.php#L71-L74,0, +PHP,set file attrib hidden,https://github.com/i-MSCP/roundcube/blob/141965e74cf301575198abc6bf12f207aacaa6c3/roundcubemail/program/include/rcmail_output_html.php#L1741-L1761,1, +PHP,convert a utc time to epoch,https://github.com/picturae/OaiPmh/blob/2d96b5d4005c0d9eb97371b5c5824d41d9fcde14/src/Provider.php#L142-L147,0, +PHP,convert int to bool,https://github.com/ko-ko-ko/php-assert/blob/e4968588fd3f42c95a763ca3c36cfb846b24ab81/src/Assert.php#L868-L879,0, +PHP,postgresql connection,https://github.com/danielgp/common-lib/blob/627b99b4408414c7cd21a6c8016f6468dc9216b2/source/MySQLiByDanielGP.php#L57-L71,1, +PHP,parse binary file to custom class,https://github.com/fgrosse/PHPASN1/blob/7ebf2a09084a7bbdb7b879c66fdf7ad80461bbe8/lib/ASN1/Universal/UTCTime.php#L44-L76,2, +PHP,how to get html of website,https://github.com/CampaignChain/core/blob/82526548a223ed49fcd65ed7c23638544499775f/Util/ParserUtil.php#L29-L55,1, +PHP,converting uint8 array to image,https://github.com/neilime/zf2-assets-bundle/blob/6399912d05d37c91be330e7accf3291a2dbdfe49/src/AssetsBundle/AssetFile/AssetFileFilter/ImageAssetFileFilter/GifAssetFileFilter.php#L26-L33,0, +PHP,connect to sql,https://github.com/angel-project/core/blob/c806d175a6825afc243cd680b81d651412cb83d7/src/sql/sql.php#L80-L91,3, +PHP,convert decimal to hex,https://github.com/titledk/silverstripe-calendar/blob/afba392d26f28d6e5c9a44765eab5a3a171cc850/code/libs/colorpool/Color.php#L93-L99,3, +PHP,concatenate several file remove header lines,https://github.com/n2n/n2n-web/blob/1640c79f05d10d73093b98b70860ef8076d23e81/src/app/n2n/web/http/Response.php#L512-L532,0, +PHP,parse json file,https://github.com/wdbo/webdocbook/blob/7d4e806f674b6222c9a3e85bfed34e72bc9d584e/src/WebDocBook/Filesystem/Helper.php#L169-L181,2, +PHP,format date,https://github.com/neos/flow-development-collection/blob/a4484ef2a57e050dc9bd87c8481eeb250c7a36fa/Neos.Eel/Classes/Helper/DateHelper.php#L58-L70,2, +PHP,find int in string,https://github.com/nirix/radium/blob/cc6907bfee296b64a7630b0b188e233d7cdb86fd/src/Database/Model.php#L136-L144,2, +PHP,sorting multiple arrays based on another arrays sorted order,https://github.com/CeusMedia/Common/blob/1138adf9341782a6284c05884989f7497532bcf4/src/Alg/Sort/MapList.php#L65-L87,2, +PHP,how to make the checkbox checked,https://github.com/samurai-fw/samurai/blob/7ca3847b13f86e2847a17ab5e8e4e20893021d5a/spec/Samurai/Component/Helper/FormHelperSpec.php#L66-L76,3, +PHP,how to determine a string is a valid word,https://github.com/atelierspierrot/library/blob/a2988a11370d13c7e0dc47f9d2d81c664c30b8dd/src/Library/Tool/MorseCode.php#L117-L125,1, +PHP,read properties file,https://github.com/AccioCMS/core/blob/b279e79624db20f93fdddc7c9c0ae1a73cedcd48/src/app/Services/Environment.php#L29-L51,1, +PHP,output to html file,https://github.com/KDF5000/EasyThink/blob/86efc9c8a0d504e01e2fea55868227fdc8928841/src/ThinkPHP/Library/Think/Controller.php#L95-L101,0, +PHP,randomly extract x items from a list,https://github.com/ARCANEDEV/LaravelHtml/blob/539ed117df0b21d2a267aac074446c6dadf50828/src/Helpers/Obfuscater.php#L48-L66,0, +PHP,how to make the checkbox checked,https://github.com/devp-eu/tmcms-core/blob/b031af5643b6dc641539847784875137c8979cdd/src/HTML/Element/CheckboxList.php#L72-L80,3, +PHP,parse json file,https://github.com/composer/composer/blob/5d615a16d175fcbdb67a536ef9d6fc4e8a1f6f2b/src/Composer/Json/JsonFile.php#L270-L281,3, +PHP,sort string list,https://github.com/alchemy-fr/rest-bundle/blob/e795b3cd565086d575ee919d1b23279656c982ad/src/Bundle/Rest/Request/SortRequest.php#L41-L55,0, +PHP,get current observable value,https://github.com/ReactiveX/RxPHP/blob/fd74a0cd2b5edd4a48e4ff12aaa44cc6cdc4a9b4/src/React/Promise.php#L47-L69,3, +PHP,readonly array,https://github.com/christophe-brachet/aspi-framework/blob/17a36c8a8582e0b8d8bff7087590c09a9bd4af1e/src/Framework/Form/Element/AbstractSelect.php#L99-L107,0, +PHP,how to make the checkbox checked,https://github.com/xcorp1986/next-think/blob/de3a8fcab31a520d9284aa807ed16de30de31f0c/Think/Template/TagLib/Html.php#L204-L222,3, +PHP,html encode string,https://github.com/eureka-framework/component-string/blob/9500d8ec4ba6b41f7a65354f90ec89844f0bdccd/src/Strings/Strings.php#L309-L314,1, +PHP,converting uint8 array to image,https://github.com/lizards-and-pumpkins/catalog/blob/068b60aeb0875aef49aa79d02230a315cfefcc91/src/Import/Product/View/AbstractProductView.php#L273-L278,0, +PHP,parse json file,https://github.com/bolt/bolt/blob/127434d79990b54abfb3e830243deaf725baa4de/src/Storage/Entity/LogChange.php#L307-L327,2, +PHP,randomly extract x items from a list,https://github.com/remialvado/RiakBundle/blob/089ae818738e512a90b2fa93de6c4991242f5b7b/Model/Search/Result.php#L66-L75,0, +PHP,get inner html,https://github.com/donquixote/cellbrush/blob/09c70b421828624756e56591de41d5e86030f50e/src/BuildContainer/BuildContainer.php#L253-L262,2, +PHP,get the description of a http status code,https://github.com/kreta/SimpleApiDocBundle/blob/786aa9310cdf087253f65f68165a0a0c8ad5c816/src/Kreta/SimpleApiDocBundle/Annotation/ApiDoc.php#L94-L108,2, +PHP,positions of substrings in string,https://github.com/antaresproject/notifications/blob/60de743477b7e9cbb51de66da5fd9461adc9dd8a/src/Adapter/VariablesAdapter.php#L222-L242,1, +PHP,string similarity levenshtein,https://github.com/rap2hpoutre/similar-text-finder/blob/8e9a5dfc0a35261c02f7f980a6d3cb391087576e/src/Finder.php#L151-L158,1, +PHP,html encode string,https://github.com/eureka-framework/component-string/blob/9500d8ec4ba6b41f7a65354f90ec89844f0bdccd/src/Strings/Strings.php#L295-L300,0,the exact opposite +PHP,convert decimal to hex,https://github.com/brick/math/blob/5f1fff59b3413c9dafa67b9c4571c1df1898fac2/src/Internal/Calculator.php#L649-L670,1, +PHP,sort string list,https://github.com/praxisnetau/silverware/blob/2fa731c7f0737b350e0cbc676e93ac5beb430792/src/Extensions/Lists/ListSourceExtension.php#L412-L437,0, +PHP,how to empty array,https://github.com/Krinkle/intuition/blob/36f48ffe925905ae5d60c7f04d76077e150d3a2c/src/Util.php#L63-L74,0, +PHP,convert int to bool,https://github.com/AeonDigital/PHP-Tools/blob/502fad10aadb37fce98bd3994e866a8bfdc8dc00/src/TryParse.php#L126-L139,1, +PHP,convert a utc time to epoch,https://github.com/QoboLtd/cakephp-csv-migrations/blob/49300070cdd9b829670a3c40f747c535c8e539b3/src/Utility/DTZone.php#L90-L106,1, +PHP,encode url,https://github.com/weew/url/blob/117be15e899cc343f22f04f5eb9e92e2164c56c1/src/Weew/Url/UrlBuilder.php#L17-L28,1, +PHP,confusion matrix,https://github.com/skilla/Matrix/blob/417b914473cb4c0c56c45ad6c4627ac8ecc65152/lib/Operations.php#L36-L45,1, +PHP,all permutations of a list,https://github.com/SIELOnline/libAcumulus/blob/82f8d6c9c4929c41948c97d6cfdfac3f27c37255/src/Invoice/CompletorStrategy/TryAllVatRatePermutations.php#L102-L116,0, +PHP,positions of substrings in string,https://github.com/ixocreate/database-package/blob/d4156b3bd640a45d645f7a36b77768f454d6ba7c/src/Generator/AbstractGenerator.php#L258-L271,1, +PHP,get current ip address,https://github.com/RudyMas/Emvc_Login/blob/9bcb50b08836d0639338ca2bc173182bc6b4bce3/src/Login.php#L336-L353,1, +PHP,confusion matrix,https://github.com/RubixML/Tensor/blob/ddc0284f987cc697631e1b18327498ead040b577/src/Matrix.php#L2685-L2711,1, +PHP,k means clustering,https://github.com/php-ai/php-ml/blob/f6aa1a59b0525b8fca3d2786d661ab3e70904016/src/Math/Statistic/Covariance.php#L117-L147,0, +PHP,get all parents of xml node,https://github.com/sulu/sulu/blob/6766a36cc2f0c807c59202bf7540a08c4ef31192/src/Sulu/Bundle/ContactBundle/Command/AccountRecoverCommand.php#L156-L165,1, +PHP,priority queue,https://github.com/anklimsk/cakephp-basic-functions/blob/7554e8b0b420fd3155593af7bf76b7ccbdc8701e/Vendor/langcode-conv/zendframework/zend-stdlib/benchmark/InsertPriorityQueue.php#L19-L24,2, +PHP,httpclient post json,https://github.com/Tustin/psn-php/blob/2f640b8790efa8f8570bc7e6a69dae115148c999/src/Api/AbstractApi.php#L28-L31,3, +PHP,export to excel,https://github.com/amarcinkowski/hospitalplugin/blob/acdc2be5157abfbdcafb4dcf6c6ba505e291263f/src/utils/ExcelExport.php#L26-L39,3, +PHP,get executable path,https://github.com/jacksleight/coast/blob/cd6cd41e8304adce41f59f799d4183adcaf666f9/library/App/Subpath.php#L30-L40,0, +PHP,how to extract zip file recursively,https://github.com/fisharebest/webtrees/blob/840bd0d721dc479520ec24a065996bc6becb8348/app/Services/UpgradeService.php#L82-L93,2, +PHP,encode url,https://github.com/inhere/php-librarys/blob/e6ca598685469794f310e3ab0e2bc19519cd0ae6/src/Helpers/UrlHelper.php#L170-L184,2, +PHP,copying a file to a path,https://github.com/jfusion/org.jfusion.framework/blob/65771963f23ccabcf1f867eb17c9452299cfe683/src/Installer/Installer.php#L295-L400,1, +PHP,how to make the checkbox checked,https://github.com/flextype-components/form/blob/b3fea245c996dc19d7a0081db6e48dac39fac5e5/Form.php#L182-L193,3, +PHP,parse command line argument,https://github.com/jabernardo/console.php/blob/a526458f4d1a525d0ccff62cd9cfcfbc5526bc9c/src/Console/Input.php#L64-L100,2, +PHP,pretty print json,https://github.com/jasny/iterator-stream/blob/a4d63eb2825956a879740cc44addd6170f7a481d/src/JsonOutputStream.php#L72-L87,2, +PHP,initializing array,https://github.com/benfranke/gdax-php/blob/be02fe48b10a31591dbdf3abb472088f7a693138/src/Types/Response/Authenticated/Part/LimitActionPart.php#L90-L104,2, +PHP,read text file line by line,https://github.com/madsleejensen/opbeat-php/blob/2cafc63bf33af641e1bc90d3252d4c5b95b34464/Opbeat/Log/Trace.php#L55-L74,2, +PHP,extracting data from a text file,https://github.com/Baddum/Model418/blob/a525a85060bc9241df3f0bca4b5e387980dc62fc/src/Core/Request/FileRequest/JSONFileRequest.php#L18-L25,0, +PHP,socket recv timeout,https://github.com/apache/thrift/blob/acdd4226c210336e9e15eb812e5932a645fcd5ce/lib/php/lib/Transport/TSocket.php#L161-L166,1, +PHP,deserialize json,https://github.com/clxcommunications/sdk-xms-php/blob/73c127150b47df6adae90e317b5ccd70e4f0b535/src/Deserialize.php#L201-L205,2, +PHP,convert decimal to hex,https://github.com/ionux/phactor/blob/667064d3930e043fd78abed9a2324aee52466fa5/src/BC.php#L274-L283,2, +PHP,how to determine a string is a valid word,https://github.com/TopShelfCraft/Wordsmith/blob/efe40e9324d2449d431444070e0972fd60aaac37/src/libs/APTitleCapitalizer.php#L236-L245,0, +PHP,convert json to csv,https://github.com/ozdemirburak/json-csv/blob/add96ef62c7643d0ff3781f9cfaa7feeabd7c131/src/File/Json.php#L43-L54,0, +PHP,all permutations of a list,https://github.com/EmicoEcommerce/Magento2TweakwiseExport/blob/a77533a9301450ab059c8681061300be4f4b1d9a/src/Model/Config/Source/PriceField.php#L48-L62,0, +PHP,k means clustering,https://github.com/moodle/moodle/blob/a411b499b98afc9901c24a9466c7e322946a04aa/lib/mlbackend/php/phpml/src/Phpml/Clustering/FuzzyCMeans.php#L110-L131,2, +PHP,hash set for counting distinct elements,https://github.com/opis/database/blob/a750c8e58da37b23b70cc4b10fa5a97376db2bc7/src/SQL/Expression.php#L137-L144,0, +PHP,html encode string,https://github.com/ekyna/PayumMonetico/blob/1251ab0166a79c6dc6424005e8e8eb85227db361/src/Api/Api.php#L261-L281,3,"probably not exactly right, but typically correct" +PHP,convert int to string,https://github.com/charliedevelopment/craft3-section-field/blob/4c57a7a1cd69105453d9e188b8b64fe83409064e/src/fields/SectionField.php#L161-L187,0, +PHP,parse json file,https://github.com/composer/composer/blob/5d615a16d175fcbdb67a536ef9d6fc4e8a1f6f2b/src/Composer/Package/Loader/JsonLoader.php#L33-L44,3, +PHP,output to html file,https://github.com/KnpLabs/KnpSnappyBundle/blob/322a3b33ea9d71c4395f600ad81f299b9a526d36/Snappy/Generator/LoggableGenerator.php#L61-L68,0, +PHP,parse binary file to custom class,https://github.com/silverstripe/silverstripe-framework/blob/ed7aaff7da61eefa172fe213ec25e35d2568bc20/src/View/Requirements_Backend.php#L1177-L1200,0, +PHP,reading element from html - ,https://github.com/bupy7/yii2-bbcode/blob/fc2b30dabd6c544a2b4f6acf1c82b6e743ca4bd3/definitions/TableCodeDefinition.php#L33-L56,3, +PHP,copying a file to a path,https://github.com/oat-sa/extension-tao-devtools/blob/a9aba4ec8f47380e6d3796a8a193f5ead265f5d4/models/ExtensionCreator.php#L111-L135,2, +PHP,how to get current date,https://github.com/JanGalek/netteCalendar/blob/52d1c90ebe264a33a8604b01e4e76ab95a36eae6/src/Galek/Utils/Calendar/Business/Shipper.php#L73-L81,2, +PHP,readonly array,https://github.com/silverstripe/silverstripe-framework/blob/ed7aaff7da61eefa172fe213ec25e35d2568bc20/src/Forms/GridField/GridField.php#L309-L314,1, +PHP,string to date,https://github.com/agentmedia/phine-framework/blob/0b5e24515897bf8e5124ab21b61823987e944959/src/Database/Mysql/Date.php#L43-L49,0, +PHP,deducting the median from each column,https://github.com/RubixML/Tensor/blob/ddc0284f987cc697631e1b18327498ead040b577/src/Matrix.php#L1862-L1870,0,misleading comment +PHP,hash set for counting distinct elements,https://github.com/qingbing/php-database/blob/cfd915c9d25dbe5d5cdd9b4c93eca5fd63cb7015/src/supports/Builder/Traits/BuilderFind.php#L21-L29,0, +PHP,parse command line argument,https://github.com/CharlotteDunois/Livia/blob/75d8778a49805721961ececc710dc719404fbade/src/Commands/Context.php#L166-L180,1, +PHP,print model summary,https://github.com/chartmogul/chartmogul-php/blob/1a2bcdf8b71600aaa4fb2ce40191f289fecc018e/src/Resource/SummaryTrait.php#L12-L19,0, +PHP,heatmap from 3d coordinates,https://github.com/jkoudys/immutable.php/blob/5a605a5bf3e2da3ce8ff55bc2790ca9c25ce4c1e/src/Collection/ImmArray.php#L215-L221,1, +PHP,deducting the median from each column,https://github.com/RubixML/Tensor/blob/ddc0284f987cc697631e1b18327498ead040b577/src/Vector.php#L1212-L1232,3, +PHP,httpclient post json,https://github.com/theopera/framework/blob/fa6165d3891a310faa580c81dee49a63c150c711/src/Component/Http/RequestBuilder.php#L150-L160,2, +PHP,how to empty array,https://github.com/meritoo/common-library/blob/b166b8b805ae97c15688d27323cae8976bd0f6dc/src/Utilities/Arrays.php#L1653-L1669,1, +PHP,how to determine a string is a valid word,https://github.com/Erebot/Module_Wordlists/blob/121d1cc72619ec0be2ddf0f3d6a66bac0a5bd1b7/src/Wordlists/Base.php#L98-L104,3, +PHP,parse command line argument,https://github.com/ventoviro/windwalker/blob/9653ea83fbd765f24ea3cba15398a31f875c55fd/src/IO/Cli/Input/CliInput.php#L161-L227,3, +PHP,replace in file,https://github.com/lekoala/silverstripe-form-extras/blob/e0c1200792af8e6cea916e1999c73cf8408c6dd2/code/controller/AjaxUploadController.php#L259-L284,1, +PHP,how to make the checkbox checked,https://github.com/phpMv/phpMv-UI/blob/1fb59e44082756e6750e647c76b4ec13c04ddc16/Ajax/semantic/widgets/datatable/HasCheckboxesTrait.php#L72-L78,3, +PHP,map to json,https://github.com/cedx/lcov.php/blob/ae0129ec01f3e77e3598b82971383c334b213afe/lib/Record.php#L50-L57,1, +PHP,priority queue,https://github.com/anklimsk/cakephp-basic-functions/blob/7554e8b0b420fd3155593af7bf76b7ccbdc8701e/Vendor/langcode-conv/zendframework/zend-stdlib/benchmark/RemovePriorityQueue.php#L18-L28,2, +PHP,nelder mead optimize,https://github.com/s9e/TextFormatter/blob/cfb9bb738541378f3c9553c88605c92257af41ab/src/Configurator/TemplateNormalizations/OptimizeChoose.php#L131-L148,0, +PHP,how to read the contents of a .gz compressed file?,https://github.com/joegreen88/zf1-component-filter/blob/c19c3729ad352cb0ece6ae4777921722d46a1711/src/Zend/Filter/Compress/Gz.php#L147-L172,2, +PHP,how to get html of website,https://github.com/semaio/Magento2-ConfigImportExport/blob/e14c49b13abd9a2ef01dafb94ebb9d91589e85a0/Model/Validator/ScopeValidator.php#L61-L81,0, +PHP,set file attrib hidden,https://github.com/melisplatform/melis-core/blob/f8b0648930e21d1f2b2e5b9300781c335bd34ea4/src/View/Helper/MelisModal.php#L38-L50,0, +PHP,scatter plot,https://github.com/sil-project/SeedBatchBundle/blob/a2640b5359fe31d3bdb9c9fa2f72141ac841729c/src/Admin/PlotAdmin.php#L30-L33,0, +PHP,socket recv timeout,https://github.com/hail-framework/framework/blob/d419e6c098d29ef9b62192b74050e51985b94f90/src/Redis/Client/Native.php#L124-L137,0, +PHP,linear regression,https://github.com/LupeCode/phpTraderInterface/blob/91976b8665199f441e4f43842461104f82f3ef66/source/TraderTrait.php#L1976-L1983,1, +PHP,deserialize json,https://github.com/MovingImage24/VMProApiClient/blob/e242a88a93a7a915898c888a575502c21434e35b/lib/Entity/Attachment.php#L144-L165,2, +PHP,unzipping large files,https://github.com/payapi/payapi-sdk-php/blob/6a675749c88742b261178d7977f2436d540132b4/src/payapi/core/core.files.php#L61-L69,3, +PHP,convert a utc time to epoch,https://github.com/execut/yii2-crud-fields/blob/2b4b0ac1848008e99a6bef681f3df5dbe4207d56/fields/Date.php#L105-L114,0, +PHP,convert json to csv,https://github.com/simpspector/analyser/blob/842f9f393f8e182758c0e40ad670bf876bed1950/src/Gadget/PhpcsGadget.php#L96-L112,0, +PHP,json to xml conversion,https://github.com/SIELOnline/libAcumulus/blob/82f8d6c9c4929c41948c97d6cfdfac3f27c37255/src/Web/Communicator.php#L302-L321,1, +PHP,convert decimal to hex,https://github.com/petrhejna/geth-jsonrpc-php-client/blob/7e5153cfc7d39f9213d76b8cd8c9c4bdb1dabb3f/src/Utils.php#L21-L30,2, +PHP,html encode string,https://github.com/yidas/codeigniter-model/blob/14cd273bb0620dc0e2993fe924ee37f00301992f/src/Model.php#L1263-L1268,2, +PHP,get current observable value,https://github.com/motivatedsloth/noaa/blob/621c8dab1d774ec2810a508941f568b716ce779a/noaa/NOAA.php#L157-L163,0, +PHP,html entities replace,https://github.com/openid/php-openid/blob/99d24177dbad21d13878ac653bbfb1ed18b66114/Auth/OpenID/Parse.php#L200-L206,2, +PHP,nelder mead optimize,https://github.com/hail-framework/framework/blob/d419e6c098d29ef9b62192b74050e51985b94f90/src/Optimize/OptimizeTrait.php#L14-L17,1, +PHP,extract latitude and longitude from given input,https://github.com/PHPExif/php-exif/blob/41f23db39d7b48e4af0e134c2e80e577c1782ac9/lib/PHPExif/Mapper/Exiftool.php#L198-L209,3, +PHP,binomial distribution,https://github.com/webinarium/linode-api3/blob/6a13880afacff955bfe9be7e3c3aab82a1abd8c4/src/AvailApi.php#L97-L104,0, +PHP,create cookie,https://github.com/php-http/client-common/blob/9a2a4c1735ee00eac3e6939a8e2ea29321ae2593/src/Plugin/CookiePlugin.php#L96-L163,3, +PHP,html encode string,https://github.com/contao/contao/blob/fbc056e5b3dd2e645bfe7812cb997ece8ff6b578/core-bundle/src/Resources/contao/library/Contao/StringUtil.php#L523-L546,0, +PHP,read properties file,https://github.com/aliyun/aliyun-oss-php-sdk/blob/339a4021da5e763eaa967bd7f67357b7061a3962/src/OSS/Http/RequestCore.php#L422-L428,0, +PHP,underline text in label widget,https://github.com/foodcoopshop/foodcoopshop/blob/376a51986686a55bc87695acf4657546e046b2a3/src/View/Helper/PricePerUnitHelper.php#L80-L89,0, +PHP,get current ip address,https://github.com/iMoneza/imoneza-php-api/blob/8347702c88c3cf754d21631a304a2c2d3abac98e/src/iMoneza/Helper.php#L20-L35,3, +PHP,convert a date string into yyyymmdd,https://github.com/googleads/googleads-php-lib/blob/d552b800ad53c400b1a50c7852e7ad184245d2ea/src/Google/AdsApi/AdWords/Query/QueryValidator.php#L74-L105,1, +PHP,deducting the median from each column,https://github.com/RubixML/RubixML/blob/837385e2eb9f05c76c9522fc1673bdb87d11742d/src/Other/Helpers/Stats.php#L142-L162,2, +PHP,format date,https://github.com/Linkvalue-Interne/MajoraFrameworkExtraBundle/blob/6f368380cfc39d27fafb0844e9a53b4d86d7c034/src/Majora/Framework/Model/TimedTrait.php#L28-L34,2, +PHP,convert int to string,https://github.com/limoncello-php/framework/blob/2dde109e820f1cf518719be71bf2d9ac64da5ae0/components/Auth/src/Contracts/Authorization/PolicyAdministration/EvaluationEnum.php#L52-L84,1, +PHP,get inner html,https://github.com/b01/slib/blob/56149adcd85f1493c11651a50dda4612a3705cbb/src/Tools/Strings.php#L100-L110,2, +PHP,pretty print json,https://github.com/RocknRoot/strayFw/blob/bd7f8f1c66d79dc5630efad4df2c57ddafcf9f34/src/RocknRoot/StrayFw/Render/RenderJson.php#L20-L28,3, +PHP,underline text in label widget,https://github.com/webforge-labs/psc-cms/blob/467bfa2547e6b4fa487d2d7f35fa6cc618dbc763/lib/Psc/UI/Form.php#L336-L346,0, +PHP,export to excel,https://github.com/schpill/thin/blob/a9102d9d6f70e8b0f6be93153f70849f46489ee1/src/Crud.php#L377-L508,3, +PHP,priority queue,https://github.com/phergie/phergie-irc-bot-react/blob/17745ef6b846513258af3dbd86e5612d3deb19b7/src/EventQueue.php#L114-L124,0, +PHP,priority queue,https://github.com/php-comp/queue/blob/61eb3787cda32b469382c8430a663ea2154dc288/src/Driver/ShmQueue.php#L73-L101,1, +PHP,sorting multiple arrays based on another arrays sorted order,https://github.com/Smile-SA/elasticsuite/blob/0199ac1383c8db3b996ae3a0963e94edadaf0880/src/module-elasticsuite-catalog/Model/ResourceModel/Category/Fulltext/Collection.php#L342-L353,0, +PHP,encode url,https://github.com/milejko/mmi/blob/c1e8dddf83665ad3463ff801074aa2b0875db19b/src/Mmi/Mvc/Router.php#L105-L138,3, +PHP,unique elements,https://github.com/jkoudys/immutable.php/blob/5a605a5bf3e2da3ce8ff55bc2790ca9c25ce4c1e/src/Collection/ImmArray.php#L504-L523,2, +PHP,format date,https://github.com/antaresproject/core/blob/b6d088d9f8a0642e71e8ff7a93997f1f34bc5ca2/src/utils/date/src/DateFormatter.php#L64-L83,3, +PHP,how to extract zip file recursively,https://github.com/AccioCMS/core/blob/b279e79624db20f93fdddc7c9c0ae1a73cedcd48/src/app/Commands/PluginInstall.php#L303-L321,2, +PHP,how to check if a checkbox is checked,https://github.com/JamieYnonan/helpers/blob/172ef9579beca6cc258aacde7585e8a14c5b65d4/src/Form.php#L149-L161,3, +PHP,parse query string in url,https://github.com/proyecto404/gigya-php-sdk/blob/d4c1c0c508a75cef12f94a5a160dab50a0378840/GSSDK.php#L779-L789,2, +PHP,normal distribution,https://github.com/zf-metal/email-campaigns/blob/d4a8cbad15405840877f16010fe7735228eb9d83/src/Controller/DistributionRecordController.php#L98-L113,0, +PHP,copy to clipboard,https://github.com/contao-community-alliance/dc-general/blob/bf59fc2085cc848c564e40324dee14ef2897faa6/src/Contao/View/Contao2BackendView/Controller/ClipboardController.php#L164-L187,0, +PHP,parse query string in url,https://github.com/simplesamlphp/saml2/blob/09e374fe0033f4706936c59033f86bd56411b1b1/src/SAML2/HTTPRedirect.php#L169-L209,3, +PHP,get the description of a http status code,https://github.com/phrest/api/blob/271d604f332cbd3ef0dc8593ea0904fee0a42a84/src/Exceptions/HandledException.php#L47-L103,2, +PHP,how to get html of website,https://github.com/seotracker/seo-core/blob/a41a594cf26ad5c47ebbaad67b642fe1b20332c0/Model/GoogleEngine.php#L73-L90,0, +PHP,convert decimal to hex,https://github.com/ionux/phactor/blob/667064d3930e043fd78abed9a2324aee52466fa5/src/BC.php#L256-L265,0, +PHP,how to get database table name,https://github.com/duncan3dc/sql-class/blob/a2b31ceced57c651199c787f4b1e509bc5a022ae/src/Sql.php#L463-L485,2, +PHP,convert int to string,https://github.com/yoanm/php-jsonrpc-server-sdk/blob/484f1a8a2182d5d0ab4d49fcdbdd0cf4a537fd37/src/App/Serialization/JsonRpcRequestDenormalizer.php#L49-L59,1, +PHP,get name of enumerated value,https://github.com/marc-mabe/php-enum/blob/3304afafc9e977e938824ed68e97683b3f152d2b/src/EnumSet.php#L978-L986,3, +PHP,get the description of a http status code,https://github.com/cherrylabs/arx-core/blob/53d2bc96ab9ccdaca1f68b2af6d358ed65f3fa67/src/Arx/classes/Convert.php#L1357-L1424,3, +PHP,encode url,https://github.com/koolkode/http/blob/3c1626d409d5ce5d71d26f0e8f31ae3683a2a966/src/Uri.php#L400-L408,2, +PHP,regex case insensitive,https://github.com/bobthecow/psysh/blob/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e/src/Input/FilterOptions.php#L34-L41,1, +PHP,how to reverse a string,https://github.com/markenwerk/php-string-builder/blob/ce02ea5c81d24102075bd7d3b0fcb20209dab865/src/StringBuilder.php#L134-L143,3, +PHP,normal distribution,https://github.com/php-ai/php-ml/blob/f6aa1a59b0525b8fca3d2786d661ab3e70904016/src/Math/Statistic/Gaussian.php#L30-L38,3, +PHP,encrypt aes ctr mode,https://github.com/KDF5000/EasyThink/blob/86efc9c8a0d504e01e2fea55868227fdc8928841/src/ThinkPHP/Library/Vendor/phpRPC/phprpc_client.php#L231-L240,1, +PHP,how to reverse a string,https://github.com/devture/dbal/blob/e2538d13baf9220fc388a48596acd176cd2bb42f/src/Devture/Component/DBAL/Repository/EavSqlRepository.php#L359-L378,0, +PHP,group by count,https://github.com/gorriecoe/silverstripe-groupbycount/blob/922edd2749ca22fdecab8569915a308a8ebe1839/src/GroupByCountExtension.php#L23-L86,2, +PHP,export to excel,https://github.com/GemsTracker/gemstracker-library/blob/31f9af74cbb08a2785b002db360fdc2eedf46869/classes/Gems/Menu/SubMenuItem.php#L467-L478,1, +PHP,create cookie,https://github.com/tekkla/core-http/blob/00d386eee1acadbce13010aab77b89848ed6cc7f/Core/Http/Cookie/CookieHandler.php#L37-L45,3, +PHP,get current ip address,https://github.com/MichaelMueller/Quick/blob/509afbdf696d919d69a7a7831cefb4963f6a4fcc/src/IpAddress.php#L72-L87,3, +PHP,how to randomly pick a number,https://github.com/HaaseIT/HCSF/blob/8c8f33e8230f1d8b225a9b92707a951565fce25d/src/Shop/Helper.php#L463-L510,0, +PHP,randomly extract x items from a list,https://github.com/SDIS62/toolbox/blob/fd543d98bd0e571618aad73db81450b18f37e278/library/SDIS62/Model/Proxy/Abstract.php#L124-L142,0, +PHP,extract data from html content,https://github.com/remialvado/RiakBundle/blob/089ae818738e512a90b2fa93de6c4991242f5b7b/Model/Search/Result.php#L66-L75,1, +PHP,encode url,https://github.com/projet-normandie/ForumBundle/blob/c245f05e6cf9dffab5eeda3470bd38fdef144b5b/Filter/Bbcode.php#L298-L312,1, +PHP,html encode string,https://github.com/pilipinews/common/blob/a39f16e935b3b8e97b54b6e9348a1deab2d0a2a0/src/Converter.php#L78-L98,1, +PHP,unzipping large files,https://github.com/tengzhinei/rapphp/blob/491336cfcc09e051a42838df05f61ef1385b903b/util/FileUtil.php#L98-L105,0, +PHP,print model summary,https://github.com/alexandresalome/journal-extension/blob/de87304abb52abfa6905f1b83d2e35cc7bc52c0d/src/Behat/JournalExtension/Formatter/JournalFormatter.php#L42-L59,0, +PHP,export to excel,https://github.com/serverfireteam/panel/blob/b6d6794f5a03079d99d9eaa39d4d8a8269285c6b/src/controllers/ExportImportController.php#L12-L26,1, +PHP,replace in file,https://github.com/furkankadioglu/Modvel/blob/323a6ec03e089d884eb8ed2785c0ab40a7112020/src/Console/ModuleMakeCommand.php#L167-L172,2, +PHP,how to empty array,https://github.com/concrete5/concrete5/blob/c54c94e4eb6d45696fed85a5b8b415f70ea677b8/concrete/src/Session/SessionFactory.php#L259-L279,0, +PHP,parse json file,https://github.com/flamecore/webtools/blob/a2dffc8964a8ef9c9a309ef1bb0729edad9c4c1e/lib/OEmbed.php#L330-L335,2, +PHP,memoize to disk - persistent memoization,https://github.com/ivliev/imagefly/blob/0363eb37cc0748292a2142f0ec9027827e9d4eba/src/Ivliev/Imagefly/Imagefly.php#L142-L160,2, +PHP,get inner html,https://github.com/concrete5/concrete5/blob/c54c94e4eb6d45696fed85a5b8b415f70ea677b8/concrete/src/Area/Layout/PresetColumn.php#L66-L78,1, +PHP,output to html file,https://github.com/hscstudio/yii2-export/blob/1fd85e2e3672a411109f51a32235f4280c650d26/libraries/tbs/plugins/tbs_plugin_opentbs.php#L5878-L5913,0, +PHP,parse query string in url,https://github.com/groupby/api-php/blob/43c31ed1f729981dd9532ce5c3efbeaaa016c147/src/API/Url/UrlReplacement.php#L38-L70,2, +PHP,convert decimal to hex,https://github.com/mpdf/mpdf/blob/ee370f89a21956ec0ea3e38c0678ced491c6b56a/src/Barcode/Imb.php#L318-L337,3, +PHP,converting uint8 array to image,https://github.com/neilime/zf2-assets-bundle/blob/6399912d05d37c91be330e7accf3291a2dbdfe49/src/AssetsBundle/AssetFile/AssetFileFilter/ImageAssetFileFilter/JpegAssetFileFilter.php#L45-L52,0, +PHP,convert string to number,https://github.com/joegreen88/zf1-component-locale/blob/2e8dab3c9a1878f91ff2b934716638f4eb2e7f94/src/Zend/Locale/Math.php#L174-L186,1, +PHP,map to json,https://github.com/vgrem/phpSPO/blob/4ec81109a154f88d188f9e87c7d7f004e91af666/src/Runtime/OData/JsonLightSerializerContext.php#L30-L34,1, +PHP,string to date,https://github.com/alexdebril/feed-io/blob/e805f342879bcf63daa7b1e0b338f8bc69740aaf/src/FeedIo/Rule/DateTimeBuilder.php#L146-L157,3, +PHP,extract latitude and longitude from given input,https://github.com/jotafurtado/geocode/blob/d598f618ea485333e972a04c0ccd263f0884c933/src/Jcf/Geocode/Geocode.php#L58-L93,1, +PHP,json to xml conversion,https://github.com/jacksleight/coast/blob/cd6cd41e8304adce41f59f799d4183adcaf666f9/library/Xml.php#L28-L32,1, +PHP,readonly array,https://github.com/silverstripe/silverstripe-framework/blob/ed7aaff7da61eefa172fe213ec25e35d2568bc20/src/Forms/FormField.php#L1224-L1237,0, +PHP,linear regression,https://github.com/Zeeml/Algorithms/blob/8b000dac8d2ecbf8b1d8eb5819dfa1c54d50fc88/src/Prediction/Linear/LinearRegression.php#L33-L60,3, +PHP,parse command line argument,https://github.com/Arbitracker/VCSWrapper/blob/64907c0c438600ce67d79a5d17f5155563f2bbf2/src/main/php/Arbit/VCSWrapper/GitCli/File.php#L94-L126,0, +PHP,memoize to disk - persistent memoization,https://github.com/peridot-php/leo/blob/2a6f60f237498cd7c3e912d71dcb90424ab66e72/src/DynamicObjectTrait.php#L49-L54,0, +PHP,readonly array,https://github.com/tenside/core-bundle/blob/a7ffad3649cddac1e5594b4f8b65a5504363fccd/src/Annotation/TensideApiDocHandler.php#L86-L109,0, +PHP,json to xml conversion,https://github.com/symphonycms/symphony-2/blob/68f44f0c36ad3345068676bfb8a61c2e6a2e51f4/symphony/lib/toolkit/class.json.php#L86-L115,3, +PHP,save list to file,https://github.com/TECLIB/CFPropertyList/blob/4da03c276479e20905e57837d53ba6912bab7394/src/CFPropertyList/CFPropertyList.php#L458-L484,2, +PHP,aes encryption,https://github.com/alfredoem/ragnarok/blob/e7de18cbe7a64e6ce480093d9d98d64078d35dff/app/Support/EncryptAes.php#L43-L71,0, +PHP,matrix multiply,https://github.com/RubixML/Tensor/blob/ddc0284f987cc697631e1b18327498ead040b577/src/Vector.php#L1459-L1479,1, +PHP,json to xml conversion,https://github.com/phpgearbox/arrays/blob/2454b7eb0633126412e4c9132906ec9b5ccae969/src/Arrays/Conversions/From/Xml.php#L39-L46,1, +PHP,connect to sql,https://github.com/angel-project/core/blob/c806d175a6825afc243cd680b81d651412cb83d7/src/sql/sql.php#L72-L78,3, +PHP,regex case insensitive,https://github.com/Innmind/UrlTemplate/blob/18b099821e497dca40b17461aac9dd45d5f5a247/src/Expression/Level3.php#L66-L74,1, +PHP,fuzzy match ranking,https://github.com/the-eater/odango.php/blob/6c78f983e7b3c49ff2f8a10ce7299747d3c82e3f/src/NyaaMatcher/Fuzzy.php#L16-L23,0, +PHP,group by count,https://github.com/intpro/quickstart/blob/6b7318650a10d6488ee220b4d5e697f3581eaeb0/src/Laravel/QSource.php#L152-L181,0, +PHP,convert json to csv,https://github.com/bluetree-service/container/blob/9827b98a9b12043ae94ae5dc60fdd971eba5d741/src/ContainerObject.php#L1486-L1501,0, +PHP,pretty print json,https://github.com/louislam/louislam-utilities/blob/1c51e7473a4f3103f39fb6a5b4bf6ffead2a5528/src/LouisLam/Util.php#L99-L165,3, +PHP,how to extract zip file recursively,https://github.com/lodev09/php-util/blob/8f3adb0b1bbc1c9f71cab126fdf8110414e65515/src/Util.php#L892-L905,3, +PHP,convert string to number,https://github.com/genkgo/xsl/blob/4a281115cd6ef6b2a438cf8ddb529d48bd7d2340/src/Callback/Arguments.php#L59-L77,0, +PHP,read text file line by line,https://github.com/Fenzland/Htsl.php/blob/28ecc4afd1a5bdb29dea3589c8132adba87f3947/libs/Parser/Document.php#L368-L387,2, +PHP,finding time elapsed using a timer,https://github.com/squareproton/Bond/blob/a04ad9dd1a35adeaec98237716c2a41ce02b4f1a/lib/php-ref/ref.php#L306-L320,3, +PHP,how to get current date,https://github.com/Opifer/Cms/blob/fa288bc9d58bf9078c2fa265fa63064fa9323797/src/CmsBundle/Entity/Cron.php#L341-L344,2, +PHP,custom http error response,https://github.com/silverstripe/silverstripe-docsviewer/blob/eba2d4536c37b7241ed973fc21f9628753d87b70/code/controllers/DocumentationViewer.php#L320-L334,2, +PHP,parse query string in url,https://github.com/gmazzap/Url_To_Query/blob/2537affbbb8b9062d46bb2deec1933acab63d007/UrlToQueryItem.php#L161-L168,2, +PHP,positions of substrings in string,https://github.com/vinala/kernel/blob/346c8a4dca48fd1ab88fdc9f7004ecb7bce6a67a/src/Strings/Strings.php#L338-L353,2, +PHP,aes encryption,https://github.com/getyoti/yoti-php-sdk/blob/f3c770c1df2cbba3dc76a1f329938c379191ad7a/src/phpseclib/Net/SSH2.php#L2026-L2060,1, +PHP,regex case insensitive,https://github.com/activecollab/humannameparser/blob/5170a5d85a505e74c1dd8ebfc4546ce412680823/src/Name.php#L66-L83,1, +PHP,how to determine a string is a valid word,https://github.com/academic/VipaBibTexBundle/blob/1cd82b0961e1a9fee804a85fd774d1384c3e089b/Helper/Bibtex.php#L769-L802,0, +PHP,how to get current date,https://github.com/bseddon/XPath20/blob/69882b6efffaa5470a819d5fdd2f6473ddeb046d/ExtFuncs.php#L3621-L3627,2, +PHP,unzipping large files,https://github.com/CeusMedia/Common/blob/1138adf9341782a6284c05884989f7497532bcf4/src/Net/HTTP/Response/Decompressor.php#L94-L110,0, +PHP,how to read .csv file in an efficient way?,https://github.com/shgysk8zer0/core_api/blob/9e9b8baf761af874b95256ad2462e55fbb2b2e58/traits/file_resources.php#L419-L436,1, +PHP,initializing array,https://github.com/railsphp/railsphp/blob/489cb17f4e00a122ab8e57dc9d3a662e699de5dd/lib/Rails/Application/Base.php#L210-L219,0, +PHP,read properties file,https://github.com/wb-crowdfusion/crowdfusion/blob/8cad7988f046a6fefbed07d026cb4ae6706c1217/system/core/classes/systemdb/config/ConfigService.php#L142-L157,2, +PHP,extracting data from a text file,https://github.com/psfs/core/blob/e3c67b4a0c24d3c3d4369705ea604cd757a6d0f8/src/base/Cache.php#L97-L115,1, +PHP,custom http error response,https://github.com/codezero-be/courier/blob/31f3ed501e86997d7f0ae5ac3f54b6aff0edd5af/src/CurlCourier.php#L283-L294,0, +PHP,custom http error response,https://github.com/webservco/framework/blob/2c539e9473c945e0f0e56e0313d5a49e1bec3bbe/src/WebServCo/Framework/AbstractApplication.php#L94-L170,2, +PHP,copy to clipboard,https://github.com/DesignPond/newsletter/blob/0bf0e7a8a42fa4b90a5e937771bb80058e0a91c3/src/Newsletter/Repo/NewsletterClipboardEloquent.php#L39-L52,3, +PHP,postgresql connection,https://github.com/seagoj/devtools/blob/15dd451a0b00c272d3e1961f114342d5e0f526ba/spec/Devtools/PDOAdapterSpec.php#L21-L40,0, +PHP,linear regression,https://github.com/moodle/moodle/blob/a411b499b98afc9901c24a9466c7e322946a04aa/lib/phpexcel/PHPExcel/Shared/trend/powerBestFitClass.php#L102-L122,1, +PHP,string to date,https://github.com/cultuurnet/udb3-php/blob/1568f0d1e57990003349074ece97faa845048b13/src/Offer/ReadModel/History/OfferHistoryProjector.php#L165-L172,0, +PHP,get the description of a http status code,https://github.com/kengoldfarb/underscore_libs/blob/e0d584f25093b594e67b8a3068ebd41c7f6483c5/src/_Libs/_WebResponse.php#L103-L115,1, +PHP,custom http error response,https://github.com/twohill/silverstripe-nestedcontrollers/blob/2fc263c31b7e23e2f768dc56f4f0df2912b6b3b1/code/NestedModelController.php#L277-L284,0, +PHP,convert html to pdf,https://github.com/obtao/Html2PdfBundle/blob/df43177eb864cd96ea577c848c22b91fd4a7082c/DependencyInjection/PdfGenerator.php#L45-L55,3, +PHP,parse query string in url,https://github.com/intuit/QuickBooks-V3-PHP-SDK/blob/09f9f42e4cf49a7d6e0aa4d2c15e15eba245bfd5/src/Core/HttpClients/SyncRestHandler.php#L400-L404,2, +PHP,extract latitude and longitude from given input,https://github.com/Archi-Strasbourg/archi-wiki/blob/b9fb39f43a78409890a7de96426c1f6c49d5c323/modules/archi/includes/archiAdresse.class.php#L10688-L10749,1, +PHP,convert a date string into yyyymmdd,https://github.com/Laralum/Laralum/blob/6f13eec2c898bcc523fb6c19bc78146b9898e689/src/Commands/LaralumInfo.php#L38-L58,0, +PHP,reading element from html - ,https://github.com/chriskonnertz/DeepLy/blob/91f091cac09c8cc7bd2bc89170b490279ebbc46b/src/ChrisKonnertz/DeepLy/HttpClient/CurlHttpClient.php#L112-L140,2, +PHP,connect to sql,https://github.com/qq1060656096/brief-db/blob/19f693cc107cd6db677aa8385502310526395c7b/src/Database/Query/ConnectionFactor.php#L131-L146,1, +PHP,how to read the contents of a .gz compressed file?,https://github.com/kherge-abandoned/lib-phar/blob/458ee3f113b12a5d41e540407b2c2efae8a35313/src/lib/Phine/Phar/Extract.php#L98-L134,3, +PHP,how to reverse a string,https://github.com/cityware/city-format/blob/1e292670639a950ecf561b545462427512950c74/src/Stringy.php#L718-L728,3, +PHP,nelder mead optimize,https://github.com/webuni/front-matter/blob/c7d1c51f9864ff015365ce515374e63bcd3b558e/src/Haml/FrontMatterFilter.php#L36-L39,0, +PHP,sending binary data over a serial connection,https://github.com/phPoirot/Stream/blob/db448ee0528c2a5b07c594b8a30e2543fbc15f57/Streamable.php#L305-L331,2, +PHP,buffered file reader read text,https://github.com/php-http/message/blob/31f25d63e9c84aa22f02c5d888e22fe23d0b65da/src/Stream/BufferedStream.php#L201-L225,3, +PHP,how to determine a string is a valid word,https://github.com/mundschenk-at/php-typography/blob/e10fc42263afad7c8e8f07f516cc5cb273dbc575/src/class-hyphenator.php#L241-L285,1, +PHP,how to extract zip file recursively,https://github.com/FWidm/dwd-hourly-crawler/blob/36dec7d84a85af599e9d4fb6a3bcc302378ce4a8/src/fwidm/dwdHourlyCrawler/DWDUtil.php#L55-L76,0, +PHP,connect to sql,https://github.com/codeigniter4/CodeIgniter4/blob/a31039291ff627150b0e3304d191b2a51b16271d/system/Database/Postgre/Connection.php#L81-L116,3, +PHP,how to check if a checkbox is checked,https://github.com/marvinlabs/laravel-html-bootstrap-4/blob/77e1823cb3b5b395a2d30ad5a8cee82b21cffb33/src/Bootstrap/Traits/BuildsForms.php#L211-L221,1, +PHP,k means clustering,https://github.com/moodle/moodle/blob/a411b499b98afc9901c24a9466c7e322946a04aa/lib/mlbackend/php/phpml/src/Phpml/Clustering/KMeans/Space.php#L149-L167,1, +PHP,underline text in label widget,https://github.com/matks/Vivian/blob/cce8602f1c7d98911ac9561288a56cf8b93e8ba0/src/Matks/Vivian/Border/BorderManager.php#L144-L150,2, +PHP,how to randomly pick a number,https://github.com/giorgiosironi/eris/blob/0e8bf23f0b2658f62083a739b2bf454606632e1f/src/Generator/FrequencyGenerator.php#L79-L93,2, +PHP,parse query string in url,https://github.com/RunningGrass/phptools/blob/5ebdde3d7480a705e49ed9c0e224418d415ec69f/src/Leo/Net.php#L27-L52,3, +PHP,finding time elapsed using a timer,https://github.com/CharlotteDunois/Livia/blob/75d8778a49805721961ececc710dc719404fbade/src/Utils/HRTimer.php#L78-L94,1, +PHP,concatenate several file remove header lines,https://github.com/aidantwoods/SecureHeaders/blob/6037dbfbd32dcbffd2409afd25ed6293c8e3fb43/src/Http/Psr7Adapter.php#L57-L69,0, +PHP,set file attrib hidden,https://github.com/arangodb/arangodb-php/blob/89fac3fc9ab21ec8cf0a5dc35118abfaa3d49b02/lib/ArangoDBClient/Document.php#L261-L276,0, +PHP,underline text in label widget,https://github.com/symphonycms/symphony-2/blob/68f44f0c36ad3345068676bfb8a61c2e6a2e51f4/symphony/lib/toolkit/email-gateways/email.sendmail.php#L154-L180,0, +PHP,fuzzy match ranking,https://github.com/ruflin/Elastica/blob/9bda1596f79a28534dfd7b3513443478ad152e4e/lib/Elastica/QueryBuilder/DSL/Query.php#L182-L185,1, +PHP,set working directory,https://github.com/teqneers/PHP-Stream-Wrapper-for-Git/blob/2d9aef4d11d7094186185b37306dd05b7a051925/src/TQ/Vcs/Cli/Call.php#L132-L141,2, +PHP,readonly array,https://github.com/silverstripe/silverstripe-framework/blob/ed7aaff7da61eefa172fe213ec25e35d2568bc20/src/Forms/CompositeField.php#L290-L297,0, +PHP,parse binary file to custom class,https://github.com/ezsystems/ezpublish-kernel/blob/ef2ae730a46e9718ebd80f1047c0f8b866209ce9/eZ/Publish/Core/IO/IOMetadataHandler/LegacyDFSCluster.php#L284-L293,0, +PHP,nelder mead optimize,https://github.com/lciolecki/php-image-optimizer/blob/d205161f38aac05e941868eaf3c54936af97fb32/src/Extlib/ImageOptimizer.php#L90-L112,0, +PHP,filter array,https://github.com/TYPO3-Solr/ext-solr/blob/b9fd8b98341d9935dba44e0ad226e7f5e3c19a93/Classes/Domain/Search/Query/AbstractQueryBuilder.php#L93-L100,1, +PHP,replace in file,https://github.com/saleem-hadad/larecipe/blob/d59a639c633cd51fbcc7f607db1513a04f93d213/src/Commands/AssetCommand.php#L201-L204,3, +PHP,write csv,https://github.com/nattreid/utils/blob/117d6d67f49de52091ae05cd38e142ef6e92ea01/src/TempFile.php#L121-L125,1, +PHP,set file attrib hidden,https://github.com/jasonhinkle/phreeze/blob/6e45b1b29449ab5e7b81d2b8cb60ed61ec438e62/libs/PEAR/PHPExcel/Style/Protection.php#L181-L189,1, +PHP,buffered file reader read text,https://github.com/demouth/DmImage/blob/cf14053c5a57fc001eb124802f0e824bf0f19803/example/sample_node/animate/GifMerge.class.php#L353-L405,2, +PHP,write csv,https://github.com/ajgarlag/AjglCsvRfc/blob/358ba360ffa8bc8e3255f2ebfb129d0051c2bdd1/src/Spl/SplFileObjectTrait.php#L38-L42,3, +PHP,copy to clipboard,https://github.com/JosephSilber/bouncer/blob/c2a4eb33266a36e381e09f8a3556f056e8ea996d/src/Bouncer.php#L210-L215,2,not the kind of clipboard one would have in mind... +PHP,how to determine a string is a valid word,https://github.com/wamania/php-stemmer/blob/eaf55d32b08259b9ca68b1b7010f90b10c3818fd/src/Norwegian.php#L54-L67,1, +PHP,unzipping large files,https://github.com/contao/contao/blob/fbc056e5b3dd2e645bfe7812cb997ece8ff6b578/core-bundle/src/Resources/contao/library/Contao/ZipReader.php#L334-L419,0,nothing about zip +PHP,initializing array,https://github.com/gitonomy/gitlib/blob/9eb6a89434e09a701ad0acef7e8ef9c27c08c69a/src/Gitonomy/Git/Admin.php#L131-L142,0, +PHP,how to read .csv file in an efficient way?,https://github.com/intrip/laravel-import-export/blob/2e6963778a0214c9123d0c51a0d01d8127e1e935/src/Jacopo/LaravelImportExport/Models/ParseCsv/CsvFileHandler.php#L241-L262,0, +PHP,map to json,https://github.com/oat-sa/extension-tao-itemqti/blob/a55b73c7894523bde169ba520d5001ce7b5bb88c/model/qti/ResponseDeclaration.php#L329-L359,0, +PHP,fuzzy match ranking,https://github.com/ncjoes/fuzzy-number/blob/142700f176dc97ca1be59b2a83553f66ea9b320b/src/FuzzyNumber/FuzzyNumber.php#L220-L230,0, +PHP,how to empty array,https://github.com/meritoo/common-library/blob/b166b8b805ae97c15688d27323cae8976bd0f6dc/src/Utilities/Arrays.php#L1678-L1699,0, +PHP,k means clustering,https://github.com/php-ai/php-ml/blob/f6aa1a59b0525b8fca3d2786d661ab3e70904016/src/Clustering/KMeans/Space.php#L202-L243,1, +PHP,parse binary file to custom class,https://github.com/ezsystems/ezpublish-kernel/blob/ef2ae730a46e9718ebd80f1047c0f8b866209ce9/eZ/Publish/Core/IO/IOMetadataHandler/LegacyDFSCluster.php#L268-L277,0, +PHP,how to get database table name,https://github.com/andyburton/Sonic-Framework/blob/a5999448a0abab4d542413002a780ede391e7374/src/Model/Tools/NewClass.php#L164-L300,0, +PHP,convert string to number,https://github.com/narrowspark/framework/blob/6b45d64668f8551c1c3116bd4526a7060e121795/src/Viserio/Component/Support/Traits/BytesFormatTrait.php#L70-L81,2, +PHP,create cookie,https://github.com/cygnite/framework/blob/58d0cc1c946415eb0867d76218bd35166e999093/src/Cygnite/Common/Input/Input.php#L226-L233,1, +PHP,httpclient post json,https://github.com/metaclassing/utility/blob/dd4f25f26f42bb11525cea4335e855634242b4b4/lib/VerisignDNSClient2.php#L120-L145,3, +PHP,get name of enumerated value,https://github.com/KessieHeldieheren/Havoc-Enumerable/blob/23dac90d77f012ad0b464f76cb8f373e4fb8ac6b/Havoc/Enumerable/Enumerable.php#L57-L67,2, +PHP,output to html file,https://github.com/ntesic/phalcon-helpers/blob/8aa04eb56eba5bae3426caebac2dd1fb134a5dcb/Tag.php#L29-L36,1, +PHP,format date,https://github.com/webservco/framework/blob/2c539e9473c945e0f0e56e0313d5a49e1bec3bbe/src/WebServCo/Framework/Utils/Dates.php#L15-L19,1, +PHP,map to json,https://github.com/dms-org/package.analytics/blob/2eb972b51a3b36dd078f4b8735704e881f6ed741/src/Persistence/AnalyticsDriverConfigMapper.php#L28-L49,0, +PHP,convert a date string into yyyymmdd,https://github.com/amabnl/amadeus-ws-client/blob/a8b79e066d37348c37a19d1753656c428ac8441b/src/Amadeus/Client/Struct/Fop/ExtendedPaymentDetails.php#L160-L184,3, +PHP,convert html to pdf,https://github.com/AbcAeffchen/SepaDocumentor/blob/f9f980a7f2e02505816e6e8dcd6ee1e65b279e51/src/BasicDocumentor.php#L122-L128,2, +PHP,encrypt aes ctr mode,https://github.com/blockcypher/php-client/blob/c1f875cdbad4e0e19fa697749309e5d7c28b7b4a/lib/BlockCypher/Crypto/Cipher.php#L31-L39,3, +PHP,how to determine a string is a valid word,https://github.com/skyeng/php-lemmatizer/blob/9f5154a0de3c64e08c1a96be793b4eec236962cb/src/Dictionary/FindIrregularBaseBehavior/IrregularBaseFinder.php#L11-L19,0, +PHP,format date,https://github.com/nimetu/ryzom_extra/blob/2aa2ef35aa17cb1ddb2a693f538d90e39f434121/lib/RyzomExtra/AtysDateTime.php#L243-L262,3, +PHP,converting uint8 array to image,https://github.com/mauchede/rancher-api/blob/ea79b7ed2feab809122f92b6686593532eeba14e/src/Resource/Container.php#L228-L237,0, +PHP,create cookie,https://github.com/concrete5/concrete5/blob/c54c94e4eb6d45696fed85a5b8b415f70ea677b8/concrete/src/Cookie/ResponseCookieJar.php#L36-L42,3, +PHP,convert int to bool,https://github.com/opulencephp/Opulence/blob/27c86747f893a78ab0bc9b8a90aae3cad6e7afb5/src/Opulence/Databases/Providers/PostgreSqlProvider.php#L56-L67,2, +PHP,aes encryption,https://github.com/ringcentral/ringcentral-php/blob/4fbe7ed819f476872f37f2ba480c77d140591944/src/Subscription/Subscription.php#L463-L490,0, +PHP,reading element from html - ,https://github.com/tableau-mkt/eggs-n-cereal/blob/778b83ddae1dd687724a84545ce8afa1a31e4bcf/src/Utils/ConverterToHTML.php#L84-L114,1, +PHP,confusion matrix,https://github.com/chippyash/Matrix/blob/f686c2371d3d42248e539faff9b89781fb5f890b/src/Chippyash/Matrix/Transformation/Colreduce.php#L33-L60,0, +PHP,get current observable value,https://github.com/icicleio/icicle/blob/991c2d2799e81b1aa054ba237e55d6155c403b9f/src/Observable/Internal/EmitQueue.php#L73-L116,0, +PHP,hash set for counting distinct elements,https://github.com/doctrine-dbal-util/connection-pagerfanta/blob/ecf14481a4fcc0c83c8ef8bd5b9a51ab96610fde/PagedQueryTrait.php#L83-L108,0, +PHP,copying a file to a path,https://github.com/n2n/n2n-io/blob/ff642e195f0c0db1273b6c067eff1192cf2cd987/src/app/n2n/io/fs/FsPath.php#L348-L367,3, +PHP,convert html to pdf,https://github.com/EaDesgin/magento2-pdf-generator2/blob/87e4d346d1ad6afe25aa3812476e89320d95ffa2/Helper/Pdf.php#L219-L244,3, +PHP,how to reverse a string,https://github.com/bit3archive/string-builder/blob/34818844aad3f19d9263d559196b49d58431f5f8/src/StringBuilder.php#L361-L371,3, +PHP,extract data from html content,https://github.com/tinymighty/skinny/blob/c653369c68e61522e6a22a729182a49f070cff21/Skinny.class.php#L152-L164,2, +PHP,extract data from html content,https://github.com/zackslash/PHP-Web-Article-Extractor/blob/f93d25d588dc0f8ddc4572429288edddb69386f6/src/Extract.php#L41-L87,3, +PHP,convert a date string into yyyymmdd,https://github.com/alchemy-fr/Phraseanet/blob/904b67192e276ab4706efb7b72df4910f9e00973/lib/classes/unicode.php#L1753-L1782,2, +PHP,normal distribution,https://github.com/angeloskath/php-nlp-tools/blob/476e07c27fc032e4ca03ee599e7cd1ad0901af33/src/NlpTools/Similarity/Euclidean.php#L17-L49,0, +PHP,fuzzy match ranking,https://github.com/julien-boudry/Condorcet/blob/6340e72428e6785b1f424c59164bf5fe479dadd3/lib/Algo/Methods/Schulze_Core.php#L129-L170,0, +PHP,filter array,https://github.com/superv/platform/blob/8576db3f0005ef18a83d5fd2142b3dc289584472/src/Domains/Auth/Access/Guard/Guard.php#L25-L41,3, +Python,sorting multiple arrays based on another arrays sorted order,https://github.com/JoseAntFer/pyny3d/blob/fb81684935a24f7e50c975cb4383c81a63ab56df/pyny3d/utils.py#L8-L33,2, +Python,priority queue,https://github.com/keon/algorithms/blob/4d6569464a62a75c1357acc97e2dd32ee2f9f4a3/algorithms/queues/priority_queue.py#L38-L49,3, +Python,custom http error response,https://github.com/mapbox/mapbox-sdk-py/blob/72d19dbcf2d254a6ea08129a726471fd21f13023/mapbox/services/base.py#L122-L144,3, +Python,randomly extract x items from a list,https://github.com/CitrineInformatics/python-citrination-client/blob/409984fc65ce101a620f069263f155303492465c/citrination_client/search/core/query/base_returning_query.py#L9-L40,0, +Python,extract data from html content,https://github.com/dragnet-org/dragnet/blob/532c9d9f28e5b1b57f3cabc708218d3863a16322/dragnet/__init__.py#L9-L13,1, +Python,html encode string,https://github.com/senaite/senaite.core/blob/7602ce2ea2f9e81eb34e20ce17b98a3e70713f85/bika/lims/browser/referenceanalysis.py#L85-L88,0, +Python,how to determine a string is a valid word,https://github.com/a-tal/nagaram/blob/2edcb0ef8cb569ebd1c398be826472b4831d6110/nagaram/scrabble.py#L136-L184,0,Query is unclear +Python,convert json to csv,https://github.com/murphy214/berrl/blob/ce4d060cc7db74c32facc538fa1d7030f1a27467/build/lib/berrl/pipegeojson.py#L326-L356,0,Again this is an inverse: csv to json instead of json to csv. +Python,get executable path,https://github.com/sarugaku/virtenv/blob/fc42a9d8dc9f1821d3893899df78e08a081f6ca3/virtenv_cli.py#L20-L28,3, +Python,randomly extract x items from a list,https://github.com/rkargon/pixelsorter/blob/0775d1e487fbcb023e411e1818ba3290b0e8665e/pixelsorter/util.py#L72-L84,2, +Python,how to empty array,https://github.com/scikit-hep/awkward-array/blob/1f878c4e11a4548fd977e230ce93eb5534db73a2/awkward/array/virtual.py#L93-L97,0, +Python,parse query string in url,https://github.com/keon/algorithms/blob/4d6569464a62a75c1357acc97e2dd32ee2f9f4a3/algorithms/strings/strip_url_params.py#L85-L95,3, +Python,how to randomly pick a number,https://github.com/eddiejessup/spatious/blob/b7ae91bec029e85a45a7f303ee184076433723cd/spatious/vector.py#L185-L216,2, +Python,get current ip address,https://github.com/rshipp/python-dshield/blob/1b003d0dfac0bc2ee8b86ca5f1a44b765b8cc6e0/dshield.py#L57-L74,0, +Python,aes encryption,https://github.com/etingof/pysnmp/blob/cde062dd42f67dfd2d7686286a322d40e9c3a4b7/pysnmp/proto/secmod/rfc3414/priv/des.py#L108-L130,0, +Python,custom http error response,https://github.com/mapbox/mapbox-sdk-py/blob/72d19dbcf2d254a6ea08129a726471fd21f13023/mapbox/services/base.py#L122-L144,3, +Python,confusion matrix,https://github.com/rigetti/grove/blob/dc6bf6ec63e8c435fe52b1e00f707d5ce4cdb9b3/grove/tomography/operator_utils.py#L70-L94,2, +Python,get current observable value,https://github.com/fredericklussier/ObservablePy/blob/fd7926a0568621f80b1d567d18f199976f1fa4e8/observablePy/ObservableStore.py#L72-L84,1, +Python,linear regression,https://github.com/romanorac/discomll/blob/a4703daffb2ba3c9f614bc3dbe45ae55884aea00/discomll/utils/model_view.py#L87-L93,0, +Python,extract latitude and longitude from given input,https://github.com/Unidata/MetPy/blob/16f68a94919b9a82dcf9cada2169cf039129e67b/metpy/calc/tools.py#L819-L870,1, +Python,get current observable value,https://github.com/Qiskit/qiskit-terra/blob/d4f58d903bc96341b816f7c35df936d6421267d1/qiskit/quantum_info/analyzation/make_observable.py#L13-L37,0, +Python,convert decimal to hex,https://github.com/restran/mountains/blob/a97fee568b112f4e10d878f815d0db3dd0a98d74/mountains/encoding/converter.py#L163-L170,1, +Python,unzipping large files,https://github.com/OLC-Bioinformatics/sipprverse/blob/d4f10cdf8e1a39dac0953db61c21c97efc6006de/cgecore/utility.py#L471-L484,1, +Python,k means clustering,https://github.com/oscarbranson/latools/blob/cd25a650cfee318152f234d992708511f7047fbe/latools/filtering/clustering.py#L35-L56,3, +Python,unzipping large files,https://github.com/patarapolw/AnkiTools/blob/fab6836dfd9cf5171d9cbff5c55fbb14d2786f05/AnkiTools/editor.py#L53-L59,2, +Python,export to excel,https://github.com/gpagliuca/pyfas/blob/5daa1199bd124d315d02bef0ad3888a8f58355b2/build/lib/pyfas/ppl.py#L127-L151,3, +Python,aes encryption,https://github.com/kalefranz/auxlib/blob/6ff2d6b57d128d0b9ed8f01ad83572e938da064f/auxlib/crypt.py#L77-L97,3, +Python,how to get current date,https://github.com/Open-ET/openet-core-beta/blob/f2b81ccf87bf7e7fe1b9f3dd1d4081d0ec7852db/openet/core/utils.py#L82-L95,3, +Python,export to excel,https://github.com/patarapolw/AnkiTools/blob/fab6836dfd9cf5171d9cbff5c55fbb14d2786f05/AnkiTools/excel.py#L155-L157,3, +Python,set file attrib hidden,https://github.com/drestebon/papageorge/blob/a30ea59bf6b4f5d151bd3f476a0a8357d89495d4/lib/papageorge/cli.py#L573-L579,0, +Python,how to read the contents of a .gz compressed file?,https://github.com/log2timeline/plaso/blob/9c564698d2da3ffbe23607a3c54c0582ea18a6cc/plaso/cli/tools.py#L227-L239,0, +Python,extracting data from a text file,https://github.com/iopipe/iopipe-python/blob/4eb653977341bc67f8b1b87aedb3aaaefc25af61/iopipe/report.py#L82-L117,0, +Python,how to randomly pick a number,https://github.com/HacKanCuBa/passphrase-py/blob/219d6374338ed9a1475b4f09b0d85212376f11e0/passphrase/passphrase.py#L71-L76,1, +Python,get inner html,https://github.com/miyakogi/wdom/blob/a21bcd23e94baceee71161829f6897bee3fd39c1/wdom/tag.py#L148-L152,1, +Python,heatmap from 3d coordinates,https://github.com/jwkvam/plotlywrapper/blob/762b42912e824fecb1212c186900f2ebdd0ab12b/plotlywrapper.py#L832-L850,3, +Python,get the description of a http status code,https://github.com/DenisCarriere/geocoder/blob/39b9999ec70e61da9fa52fe9fe82a261ad70fa8b/geocoder/opencage.py#L409-L415,2, +Python,get current process id,https://github.com/fabioz/PyDev.Debugger/blob/ed9c4307662a5593b8a7f1f3389ecd0e79b8c503/pydevd_attach_to_process/winappdbg/interactive.py#L669-L676,0, +Python,filter array,https://github.com/kwikteam/phy/blob/7e9313dc364304b7d2bd03b92938347343703003/phy/traces/filter.py#L28-L34,1, +Python,parse json file,https://github.com/flatironinstitute/kbucket/blob/867915ebb0ea153a399c3e392698f89bf43c7903/kbucket/kbucketclient.py#L639-L645,3, +Python,filter array,https://github.com/jopohl/urh/blob/2eb33b125c8407964cd1092843cde5010eb88aae/src/urh/controller/widgets/SignalFrame.py#L31-L33,1, +Python,group by count,https://github.com/Koed00/django-q/blob/c84fd11a67c9a47d821786dfcdc189bb258c6f54/django_q/models.py#L53-L55,0, +Python,how to make the checkbox checked,https://github.com/Shapeways/coyote_framework/blob/cb29899b984a21d56bf65d0b1d907073948fe16c/coyote_framework/webdriver/webdriverwrapper/WebElementWrapper.py#L662-L667,2, +Python,how to read .csv file in an efficient way?,https://github.com/openvax/pyensembl/blob/4b995fb72e848206d6fbf11950cf30964cd9b3aa/pyensembl/memory_cache.py#L64-L72,0, +Python,sending binary data over a serial connection,https://github.com/nutechsoftware/alarmdecoder/blob/b0c014089e24455228cb4402cf30ba98157578cd/alarmdecoder/devices/serial_device.py#L149-L172,3, +Python,read properties file,https://github.com/GreatFruitOmsk/tailhead/blob/a3b1324a39935f8ffcfda59328a9a458672889d9/tailhead/__init__.py#L72-L79,1, +Python,convert a date string into yyyymmdd,https://github.com/pbrisk/businessdate/blob/79a0c5a4e557cbacca82a430403b18413404a9bc/businessdate/businessdate.py#L260-L267,0, +Python,get name of enumerated value,https://github.com/kahowell/sdl2-cffi/blob/8e51d97c7c19ca17d8c2994f54b18e8563310270/sdl2/_cffi.py#L155-L159,0, +Python,format date,https://github.com/EconForge/dolo/blob/d91ddf148b009bf79852d9aec70f3a1877e0f79a/dolo/compiler/symbolic.py#L10-L17,2, +Python,parse query string in url,https://github.com/wummel/linkchecker/blob/c2ce810c3fb00b895a841a7be6b2e78c64e7b042/linkcheck/url.py#L250-L272,1, +Python,scatter plot,https://github.com/flowersteam/explauto/blob/cf0f81ecb9f6412f7276a95bd27359000e1e26b6/explauto/experiment/log.py#L67-L93,3, +Python,how to read the contents of a .gz compressed file?,https://github.com/gtaylor/django-athumb/blob/69261ace0dff81e33156a54440874456a7b38dfb/athumb/backends/s3boto.py#L143-L150,0, +Python,how to empty array,https://github.com/deshima-dev/decode/blob/e789e174cd316e7ec8bc55be7009ad35baced3c0/decode/core/array/functions.py#L109-L121,1,Returns an empty array as opposed to emptying an existing array +Python,deducting the median from each column,https://github.com/modin-project/modin/blob/5b77d242596560c646b8405340c9ce64acb183cb/modin/backends/pandas/query_compiler.py#L1251-L1263,2, +Python,get the description of a http status code,https://github.com/hardbyte/python-can/blob/cdc5254d96072df7739263623f3e920628a7d214/can/interfaces/socketcan/utils.py#L70-L90,3, +Python,write csv,https://github.com/sentinel-hub/sentinelhub-py/blob/08a83b7f1e289187159a643336995d8369860fea/sentinelhub/io_utils.py#L258-L271,3, +Python,linear regression,https://github.com/quantopian/zipline/blob/77ad15e6dc4c1cbcdc133653bac8a63fc704f7fe/zipline/pipeline/factors/factor.py#L786-L843,3, +Python,encrypt aes ctr mode,https://github.com/keybase/python-triplesec/blob/0a73e18cfe542d0cd5ee57bd823a67412b4b717e/triplesec/crypto.py#L86-L92,3, +Python,get name of enumerated value,https://github.com/kahowell/sdl2-cffi/blob/8e51d97c7c19ca17d8c2994f54b18e8563310270/sdl2/_cffi.py#L155-L159,0, +Python,how to empty array,https://github.com/jepegit/cellpy/blob/9f4a84cdd11f72cfa02cda8c2d7b5174abbb7370/cellpy/readers/core.py#L261-L266,2, +Python,binomial distribution,https://github.com/econ-ark/HARK/blob/3d184153a189e618a87c9540df1cd12044039cc5/HARK/utilities.py#L832-L907,0, +Python,extract latitude and longitude from given input,https://github.com/Turbo87/aerofiles/blob/d8b7b04a1fcea5c98f89500de1164619a4ec7ef4/aerofiles/seeyou/reader.py#L130-L143,2, +Python,replace in file,https://github.com/jmbeach/KEP.py/blob/68cda64ab649640a486534867c81274c41e39446/src/keppy/tag.py#L31-L33,0, +Python,priority queue,https://github.com/coleifer/huey/blob/416e8da1ca18442c08431a91bce373de7d2d200f/huey/storage.py#L401-L405,0, +Python,export to excel,https://github.com/turicas/rows/blob/c74da41ae9ed091356b803a64f8a30c641c5fc45/rows/plugins/xlsx.py#L152-L193,3, +Python,sending binary data over a serial connection,https://github.com/ransford/sllurp/blob/d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1/sllurp/epc/sgtin_96.py#L27-L71,1, +Python,print model summary,https://github.com/MillionIntegrals/vel/blob/e0726e1f63742b728966ccae0c8b825ea0ba491a/vel/util/summary.py#L11-L86,2, +Python,copy to clipboard,https://github.com/ctuning/ck/blob/7e009814e975f8742790d3106340088a46223714/ck/kernel.py#L1770-L1830,3, +Python,how to randomly pick a number,https://github.com/numenta/htmresearch/blob/70c096b09a577ea0432c3f3bfff4442d4871b7aa/htmresearch/frameworks/specific_timing/timing_adtm.py#L276-L306,0, +Python,get executable path,https://github.com/ethereum/pyethereum/blob/b704a5c6577863edc539a1ec3d2620a443b950fb/ethereum/tools/_solidity.py#L24-L43,3, +Python,converting uint8 array to image,https://github.com/dade-ai/snipy/blob/408520867179f99b3158b57520e2619f3fecd69b/snipy/img/imageutil.py#L479-L482,3, +Python,normal distribution,https://github.com/alejoe91/MEAutility/blob/7c2b0da52c2752a3baf04e8e248e26b0769cd088/MEAutility/core.py#L326-L338,0, +Python,html entities replace,https://github.com/LiftoffSoftware/htmltag/blob/f6989f9a3301e7c96ee613e5dbbe43b2bde615c7/htmltag.py#L442-L448,2, +Python,how to check if a checkbox is checked,https://github.com/Shapeways/coyote_framework/blob/cb29899b984a21d56bf65d0b1d907073948fe16c/coyote_framework/webdriver/webdriverwrapper/WebElementWrapper.py#L655-L660,3, +Python,nelder mead optimize,https://github.com/ulf1/oxyba/blob/b3043116050de275124365cb11e7df91fb40169d/oxyba/linreg_mle.py#L2-L59,1, +Python,set file attrib hidden,https://github.com/KelSolaar/Umbra/blob/66f45f08d9d723787f1191989f8b0dda84b412ce/umbra/components/factory/script_editor/editor.py#L448-L467,1, +Python,encrypt aes ctr mode,https://github.com/jcassee/django-geckoboard/blob/6ebdaa86015fe645360abf1ba1290132de4cf6d6/django_geckoboard/decorators.py#L446-L460,1, +Python,extract data from html content,https://github.com/monarch-initiative/dipper/blob/24cc80db355bbe15776edc5c7b41e0886959ba41/scripts/scrape-impc.py#L14-L40,2, +Python,copy to clipboard,https://github.com/ctuning/ck/blob/7e009814e975f8742790d3106340088a46223714/ck/kernel.py#L1770-L1830,3, +Python,memoize to disk - persistent memoization,https://github.com/aboSamoor/polyglot/blob/d0d2aa8d06cec4e03bd96618ae960030f7069a17/polyglot/decorators.py#L23-L32,3, +Python,how to make the checkbox checked,https://github.com/aloetesting/aloe_webdriver/blob/65d847da4bdc63f9c015cb19d4efdee87df8ffad/aloe_webdriver/__init__.py#L564-L568,1, +Python,get current process id,https://github.com/djtaylor/python-lsbinit/blob/a41fc551226f61ac2bf1b8b0f3f5395db85e75a2/lsbinit/pid.py#L43-L78,3, +Python,unzipping large files,https://github.com/OLC-Bioinformatics/sipprverse/blob/d4f10cdf8e1a39dac0953db61c21c97efc6006de/cgecore/utility.py#L471-L484,2, +Python,positions of substrings in string,https://github.com/SpheMakh/Stimela/blob/292e80461a0c3498da8e7e987e2891d3ae5981ad/stimela/utils/__init__.py#L321-L329,3, +Python,how to determine a string is a valid word,https://github.com/Ezhil-Language-Foundation/open-tamil/blob/b7556e88878d29bbc6c944ee17cdd3f75b8ea9f0/solthiruthi/datastore.py#L340-L358,1, +Python,convert string to number,https://github.com/shidenggui/easytrader/blob/e5ae4daeda4ea125763a95b280dd694c7f68257d/easytrader/helpers.py#L137-L139,2, +Python,linear regression,https://github.com/SoftwareDefinedBuildings/XBOS/blob/c12d4fb14518ea3ae98c471c28e0710fdf74dd25/apps/Data_quality_analysis/Main.py#L13-L18,3, +Python,heatmap from 3d coordinates,https://github.com/kgori/treeCl/blob/fed624b3db1c19cc07175ca04e3eda6905a8d305/treeCl/plotter.py#L31-L82,1, +Python,nelder mead optimize,https://github.com/apache/incubator-mxnet/blob/1af29e9c060a4c7d60eeaacba32afdb9a7775ba7/example/image-classification/symbols/vgg.py#L27-L35,0, +Python,binomial distribution,https://github.com/chemlab/chemlab/blob/c8730966316d101e24f39ac3b96b51282aba0abe/chemlab/qc/one.py#L133-L144,0, +Python,randomly extract x items from a list,https://github.com/callowayproject/Calloway/blob/d22e98d41fbd298ab6393ba7bd84a75528be9f81/calloway/apps/django_ext/markov.py#L51-L64,1, +Python,sending binary data over a serial connection,https://github.com/securestate/termineter/blob/d657d25d97c7739e650b951c396404e857e56625/lib/c1218/connection.py#L210-L222,2, +Python,aes encryption,https://github.com/raymontag/kppy/blob/a43f1fff7d49da1da4b3d8628a1b3ebbaf47f43a/kppy/database.py#L861-L871,2, +Python,binomial distribution,https://github.com/lpantano/seqcluster/blob/774e23add8cd4fdc83d626cea3bd1f458e7d060d/seqcluster/libs/thinkbayes.py#L1530-L1535,3, +Python,sorting multiple arrays based on another arrays sorted order,https://github.com/google/prettytensor/blob/75daa0b11252590f548da5647addc0ea610c4c45/prettytensor/tutorial/data_utils.py#L82-L89,1, +Python,unzipping large files,https://github.com/patarapolw/AnkiTools/blob/fab6836dfd9cf5171d9cbff5c55fbb14d2786f05/AnkiTools/editor.py#L53-L59,3, +Python,copying a file to a path,https://github.com/galaxyproject/pulsar/blob/9ab6683802884324652da0a9f0808c7eb59d3ab4/pulsar/client/client.py#L392-L395,3, +Python,convert string to number,https://github.com/google/grumpy/blob/3ec87959189cfcdeae82eb68a47648ac25ceb10b/third_party/pypy/_struct.py#L101-L108,0, +Python,copying a file to a path,https://github.com/divio/django-filer/blob/946629087943d41eff290f07bfdf240b8853dd88/filer/admin/folderadmin.py#L1028-L1045,3, +Python,deserialize json,https://github.com/wtsi-hgi/python-hgijson/blob/6e8ccb562eabcaa816a136268a16504c2e0d4664/hgijson/json_converters/_converters.py#L61-L69,2, +Python,parse json file,https://github.com/s1s1ty/py-jsonq/blob/9625597a2578bddcbed4e540174d5253b1fc3b75/pyjsonq/query.py#L46-L60,3, +Python,read text file line by line,https://github.com/limodou/uliweb/blob/34472f25e4bc0b954a35346672f94e84ef18b076/uliweb/core/template.py#L489-L524,1, +Python,read properties file,https://github.com/markreidvfx/pyaaf2/blob/37de8c10d3c3495cc00c705eb6c5048bc4a7e51f/tools/model_dump.py#L99-L127,1, +Python,format date,https://github.com/saschpe/rapport/blob/ccceb8f84bd7e8add88ab5e137cdab6424aa4683/rapport/util.py#L55-L69,0, +Python,copying a file to a path,https://github.com/frictionlessdata/datapackage-pipelines/blob/3a34bbdf042d13c3bec5eef46ff360ee41403874/datapackage_pipelines/lib/dump/to_path.py#L16-L25,3, +Python,write csv,https://github.com/rvswift/EB/blob/341880b79faf8147dc9fa6e90438531cd09fabcc/EB/builder/splitter/splitter.py#L37-L57,1, +Python,hash set for counting distinct elements,https://github.com/openvax/sercol/blob/e66a8e8c3c0b21e53eb8f73be4d23409fab311ae/sercol/collection.py#L74-L96,0, +Python,convert a date string into yyyymmdd,https://github.com/scheibler/khard/blob/0f69430c2680f1ff5f073a977a3c5b753b96cc17/khard/helpers.py#L81-L107,2, +Python,set working directory,https://github.com/materialsproject/pymatgen/blob/4ca558cf72f8d5f8a1f21dfdfc0181a971c186da/pymatgen/io/abinit/tasks.py#L4149-L4153,1, +Python,encode url,https://github.com/couchbase/couchbase-python-client/blob/a7bada167785bf79a29c39f820d932a433a6a535/couchbase/connstr.py#L126-L143,2, +Python,httpclient post json,https://github.com/rckclmbr/pyportify/blob/696a1caad8a47b191f3bec44cc8fc3c437779512/pyportify/google.py#L98-L112,3, +Python,extract data from html content,https://github.com/RedHatInsights/insights-core/blob/b57cbf8ed7c089672426ede0441e0a4f789ef4a1/insights/parsers/crontab.py#L116-L156,0, +Python,convert int to string,https://github.com/DeepHorizons/iarm/blob/b913c9fd577b793a6bbced78b78a5d8d7cd88de4/iarm/arm_instructions/_meta.py#L126-L132,1, +Python,encrypt aes ctr mode,https://github.com/jcassee/django-geckoboard/blob/6ebdaa86015fe645360abf1ba1290132de4cf6d6/django_geckoboard/decorators.py#L446-L460,3, +Python,connect to sql,https://github.com/whiteclover/dbpy/blob/3d9ce85f55cfb39cced22081e525f79581b26b3a/db/pymysql/connection.py#L53-L56,3, +Python,how to check if a checkbox is checked,https://github.com/aloetesting/aloe_webdriver/blob/65d847da4bdc63f9c015cb19d4efdee87df8ffad/aloe_webdriver/__init__.py#L564-L568,3, +Python,positions of substrings in string,https://github.com/SpheMakh/Stimela/blob/292e80461a0c3498da8e7e987e2891d3ae5981ad/stimela/utils/__init__.py#L321-L329,0, +Python,priority queue,https://github.com/FreshXOpenSource/wallaby-base/blob/5c75b1729e99af905c44b1293e67dbd5527d022d/wallaby/pf/room.py#L366-L370,0, +Python,hash set for counting distinct elements,https://github.com/pricingassistant/mongokat/blob/61eaf4bc1c4cc359c6f9592ec97b9a04d9561411/mongokat/collection.py#L136-L137,2, +Python,how to read the contents of a .gz compressed file?,https://github.com/sunlightlabs/django-mediasync/blob/aa8ce4cfff757bbdb488463c64c0863cca6a1932/mediasync/__init__.py#L33-L38,1, +Python,sending binary data over a serial connection,https://github.com/FaradayRF/faradayio/blob/6cf3af88bb4a83e5d2036e5cbdfaf8f0f01500bb/faradayio/faraday.py#L32-L56,3, +Python,nelder mead optimize,https://github.com/ulf1/oxyba/blob/b3043116050de275124365cb11e7df91fb40169d/oxyba/norm_mle.py#L2-L59,0, +Python,how to extract zip file recursively,https://github.com/ToucanToco/toucan-data-sdk/blob/c3ca874e1b64f4bdcc2edda750a72d45d1561d8a/toucan_data_sdk/sdk.py#L173-L191,2, +Python,k means clustering,https://github.com/insilicolife/micti/blob/f12f46724295b57c4859e6acf7eab580fc355eb1/build/lib/MICTI/GM.py#L71-L87,2, +Python,how to read .csv file in an efficient way?,https://github.com/mapillary/mapillary_tools/blob/816785e90c589cae6e8e34a5530ce8417d29591c/mapillary_tools/process_csv.py#L175-L184,2, +Python,set working directory,https://github.com/biocore/burrito-fillings/blob/02ab71a46119b40793bd56a4ae00ca15f6dc3329/bfillings/mothur.py#L391-L399,2, +Python,print model summary,https://github.com/MillionIntegrals/vel/blob/e0726e1f63742b728966ccae0c8b825ea0ba491a/vel/api/model.py#L37-L51,2, +Python,binomial distribution,https://github.com/TeamHG-Memex/MaybeDont/blob/34721f67b69d426adda324a0ed905d3860828af9/maybedont/predict.py#L275-L283,1, +Python,parse binary file to custom class,https://github.com/log2timeline/plaso/blob/9c564698d2da3ffbe23607a3c54c0582ea18a6cc/plaso/parsers/custom_destinations.py#L85-L209,2, +Python,finding time elapsed using a timer,https://github.com/djf604/chunky-pipes/blob/cd5b2a31ded28ab949da6190854228f1c8897882/chunkypipes/util/decorators/__init__.py#L6-L14,2, +Python,convert a date string into yyyymmdd,https://github.com/bram85/topydo/blob/b59fcfca5361869a6b78d4c9808c7c6cd0a18b58/topydo/lib/Utils.py#L28-L46,3, +Python,initializing array,https://github.com/mnick/scikit-tensor/blob/fe517e9661a08164b8d30d2dddf7c96aeeabcf36/sktensor/cp.py#L190-L205,0, +Python,how to read .csv file in an efficient way?,https://github.com/sparklingpandas/sparklingpandas/blob/7d549df4348c979042b683c355aa778fc6d3a768/sparklingpandas/pcontext.py#L68-L155,3, +Python,string to date,https://github.com/spotify/luigi/blob/c5eca1c3c3ee2a7eb612486192a0da146710a1e9/luigi/date_interval.py#L266-L267,3, +Python,connect to sql,https://github.com/RudolfCardinal/pythonlib/blob/0b84cb35f38bd7d8723958dae51b480a829b7227/cardinal_pythonlib/rnc_db.py#L1649-L1908,2, +Python,parse binary file to custom class,https://github.com/iclab/centinel/blob/9a25dcf30c6a1db3c046f7ccb8ab8873e455c1a4/centinel/cli.py#L114-L201,0, +Python,find int in string,https://github.com/lionheart/django-pyodbc/blob/46adda7b0bfabfa2640f72592c6f6f407f78b363/django_pyodbc/compiler.py#L107-L111,0, +Python,how to check if a checkbox is checked,https://github.com/bbangert/lettuce_webdriver/blob/d11f8531c43bb7150c316e0dc4ccd083617becf7/lettuce_webdriver/webdriver.py#L337-L341,2, +Python,converting uint8 array to image,https://github.com/pyviz/holoviews/blob/ae0dd2f3de448b0ca5e9065aabd6ef8d84c7e655/holoviews/operation/datashader.py#L932-L936,1, +Python,positions of substrings in string,https://github.com/ChrisCummins/labm8/blob/dd10d67a757aefb180cb508f86696f99440c94f5/text.py#L40-L52,3, +Python,how to extract zip file recursively,https://github.com/pantsbuild/pex/blob/87b2129d860250d3b9edce75b9cb62f9789ee521/pex/common.py#L90-L95,0, +Python,create cookie,https://github.com/hubo1016/vlcp/blob/239055229ec93a99cc7e15208075724ccf543bd1/vlcp/utils/http.py#L175-L196,3, +Python,how to make the checkbox checked,https://github.com/aloetesting/aloe_webdriver/blob/65d847da4bdc63f9c015cb19d4efdee87df8ffad/aloe_webdriver/__init__.py#L542-L547,3, +Python,how to determine a string is a valid word,https://github.com/Ezhil-Language-Foundation/open-tamil/blob/b7556e88878d29bbc6c944ee17cdd3f75b8ea9f0/solthiruthi/datastore.py#L340-L358,0, +Python,how to reverse a string,https://github.com/SmartTeleMax/iktomi/blob/80bc0f1408d63efe7f5844367d1f6efba44b35f2/iktomi/web/reverse.py#L218-L229,0, +Python,html encode string,https://github.com/senaite/senaite.core/blob/7602ce2ea2f9e81eb34e20ce17b98a3e70713f85/bika/lims/browser/referenceanalysis.py#L85-L88,1, +Python,read text file line by line,https://github.com/molmod/molmod/blob/a7b5b4364ed514ad4c465856c05b5eda1cb561e0/molmod/io/cp2k.py#L204-L213,2, +Python,write csv,https://github.com/quantopian/zipline/blob/77ad15e6dc4c1cbcdc133653bac8a63fc704f7fe/zipline/data/bcolz_daily_bars.py#L209-L237,2, +Python,pretty print json,https://github.com/profusion/sgqlc/blob/684afb059c93f142150043cafac09b7fd52bfa27/examples/github/github-agile-dashboard.py#L35-L39,3, +Python,reading element from html - ,https://github.com/turicas/rows/blob/c74da41ae9ed091356b803a64f8a30c641c5fc45/rows/plugins/plugin_html.py#L177-L183,2, +Python,priority queue,https://github.com/limpyd/redis-limpyd-jobs/blob/264c71029bad4377d6132bf8bb9c55c44f3b03a2/limpyd_jobs/workers.py#L492-L504,1, +Python,aes encryption,https://github.com/jaredLunde/vital-tools/blob/ea924c9bbb6ec22aa66f8095f018b1ee0099ac04/vital/security/__init__.py#L79-L98,3, +Python,map to json,https://github.com/hackedd/gw2api/blob/5543a78e6e3ed0573b7e84c142c44004b4779eac/gw2api/map.py#L50-L105,2,"The relevance of this function is solely based on context. Most would not think of a 'map' as a custom map object found in a game library. Nevertheless, this function is turning this map object into a JSON." +Python,get executable path,https://github.com/sarugaku/virtenv/blob/fc42a9d8dc9f1821d3893899df78e08a081f6ca3/virtenv_cli.py#L20-L28,2, +Python,how to get html of website,https://github.com/dwillis/python-espncricinfo/blob/96469e39f309e28586fcec40cc6a20b2fddacff7/espncricinfo/player.py#L44-L50,3, +Python,convert string to number,https://github.com/google/grumpy/blob/3ec87959189cfcdeae82eb68a47648ac25ceb10b/third_party/pypy/_struct.py#L101-L108,1, +Python,save list to file,https://github.com/alejandroautalan/pygubu/blob/41c8fb37ef973736ec5d68cbe1cd4ecb78712e40/pygubudesigner/main.py#L491-L495,2, +Python,socket recv timeout,https://github.com/log2timeline/plaso/blob/9c564698d2da3ffbe23607a3c54c0582ea18a6cc/plaso/engine/zeromq_queue.py#L161-L171,2, +Python,html encode string,https://github.com/noahmorrison/chevron/blob/78f1a384eddef16906732d8db66deea6d37049b7/chevron/renderer.py#L34-L47,1, +Python,convert json to csv,https://github.com/pybel/pybel/blob/c8a7a1bdae4c475fa2a8c77f3a9a5f6d79556ca0/src/pybel/cli.py#L222-L246,0, +Python,k means clustering,https://github.com/szairis/sakmapper/blob/ac462fd2674e6aa1aa3b209222d8ac4e9268a790/sakmapper/network.py#L111-L170,3, +Python,get current ip address,https://github.com/douban/pymesos/blob/c8096d3d510648649963b7cead01d4d06b5dcf26/pymesos/scheduler.py#L473-L490,0, +Python,get all parents of xml node,https://github.com/fishtown-analytics/dbt/blob/aa4f771df28b307af0cf9fe2fc24432f10a8236b/core/dbt/graph/selector.py#L317-L344,0, +Python,set working directory,https://github.com/materialsproject/pymatgen/blob/4ca558cf72f8d5f8a1f21dfdfc0181a971c186da/pymatgen/io/abinit/tasks.py#L4149-L4153,1, +Python,unique elements,https://github.com/radujica/baloo/blob/f6e05e35b73a75e8a300754c6bdc575e5f2d53b9/baloo/weld/weld_ops.py#L529-L569,1,This function does return the unique elements in an array but does so within the context of some unknown class. +Python,convert a date string into yyyymmdd,https://github.com/pypa/pipenv/blob/cae8d76c210b9777e90aab76e9c4b0e53bb19cde/pipenv/vendor/parse.py#L551-L636,2,Partially good. +Python,k means clustering,https://github.com/DEIB-GECO/PyGMQL/blob/e58b2f9402a86056dcda484a32e3de0bb06ed991/gmql/ml/algorithms/clustering.py#L307-L350,1, +Python,read text file line by line,https://github.com/limodou/uliweb/blob/34472f25e4bc0b954a35346672f94e84ef18b076/uliweb/core/template.py#L489-L524,2,This function solves the query but contains a lot of extra code. +Python,unzipping large files,https://github.com/milinda/htrc-sdk-for-python/blob/d08dbba1a441dcb2bade47deaebc07be68c3a173/htrc/utils.py#L45-L62,3, +Python,how to extract zip file recursively,https://github.com/pantsbuild/pex/blob/87b2129d860250d3b9edce75b9cb62f9789ee521/pex/common.py#L90-L95,0, +Python,replace in file,https://github.com/char16t/wa/blob/ee28bf47665ea57f3a03a08dfc0a5daaa33d8121/wa/api.py#L152-L174,1, +Python,scatter plot,https://github.com/zkbt/the-friendly-stars/blob/50d3f979e79e63c66629065c75595696dc79802e/thefriendlystars/constellations/constellation.py#L281-L314,3, +Python,normal distribution,https://github.com/ajyoon/blur/blob/25fcf083af112bb003956a7a7e1c6ff7d8fef279/blur/rand.py#L252-L300,2, +Python,set file attrib hidden,https://github.com/mattharrison/rst2odp/blob/4adbf29b28c8207ec882f792ded07e98b1d3e7d0/odplib/preso.py#L170-L175,2, +Python,deducting the median from each column,https://github.com/hollenstein/maspy/blob/f15fcfd24df306d8420540460d902aa3073ec133/maspy/mit_stats.py#L48-L88,2, +Python,output to html file,https://github.com/appknox/vendor/blob/0b85d3c8328c5102cdcb1f619cbff215d7b5f228/ak_vendor/report.py#L31-L34,2, +Python,matrix multiply,https://github.com/mabuchilab/QNET/blob/cc20d26dad78691d34c67173e5cd67dcac94208a/src/qnet/algebra/core/matrix_algebra.py#L136-L140,3, +Python,write csv,https://github.com/jordanjoz1/flickr-views-counter/blob/cba89285823ab39afd9f40a19db82371d45bd830/count_views.py#L130-L138,3, +Python,heatmap from 3d coordinates,https://github.com/tensorpack/tensorpack/blob/d7a13cb74c9066bc791d7aafc3b744b60ee79a9f/examples/CaffeModels/load-cpm.py#L27-L32,3, +Python,how to read the contents of a .gz compressed file?,https://github.com/rfinnie/dsari/blob/cd7b07c30876467393e0ec18f1ff45d86bcb1676/dsari/render.py#L75-L86,2,The function contains irrelevant parts but does have the desired code snippet. +Python,read text file line by line,https://github.com/niccokunzmann/ledtable/blob/a94d276f8a06e0f7f05f5cc704018c899e56bd9f/python/ledtable/SerialLEDTable.py#L54-L63,0, +Python,how to determine a string is a valid word,https://github.com/phoopy/phoopy-console/blob/d38ec0eb952e79239699a0f855c07437a34024b0/phoopy/console/helper/string_helper.py#L41-L43,1, +Python,sorting multiple arrays based on another arrays sorted order,https://github.com/pandas-dev/pandas/blob/9feb3ad92cc0397a04b665803a49299ee7aa1037/pandas/core/indexes/multi.py#L292-L350,0, +Python,binomial distribution,https://github.com/raphaelvallat/pingouin/blob/58b19fa4fffbfe09d58b456e3926a148249e4d9b/pingouin/distribution.py#L274-L319,1, +Python,parse command line argument,https://github.com/bjmorgan/vasppy/blob/cc2d1449697b17ee1c43715a02cddcb1139a6834/vasppy/scripts/rotate_poscar.py#L7-L13,3, +Python,convert int to bool,https://github.com/rberrelleza/511-transit/blob/ab676d6e3b57a073405cbfa2ffe1a57b85808fd1/fiveoneone/model.py#L18-L27,0, +Python,how to randomly pick a number,https://github.com/bwesterb/sarah/blob/a9e46e875dfff1dc11255d714bb736e5eb697809/src/drv.py#L62-L67,2, +Python,regex case insensitive,https://github.com/wolfhong/formic/blob/0d81eb88dcbb6fa705194fc6ccf2993f4abbaa76/formic/formic.py#L182-L187,3, +Python,write csv,https://github.com/googledatalab/pydatalab/blob/d9031901d5bca22fe0d5925d204e6698df9852e1/solutionbox/structured_data/mltoolbox/_structured_data/prediction/predict.py#L307-L346,2, +Python,json to xml conversion,https://github.com/codeforamerica/three/blob/67b4a4b233a57aa7995d01f6b0f69c2e85aea6c0/three/core.py#L158-L170,1, +Python,how to make the checkbox checked,https://github.com/Shapeways/coyote_framework/blob/cb29899b984a21d56bf65d0b1d907073948fe16c/coyote_framework/webdriver/webdriverwrapper/WebElementWrapper.py#L655-L660,3, +Python,confusion matrix,https://github.com/totalgood/pugnlp/blob/c43445b14afddfdeadc5f3076675c9e8fc1ee67c/src/pugnlp/stats.py#L536-L562,2, +Python,parse command line argument,https://github.com/mozilla/Marketplace.Python/blob/88176b12201f766b6b96bccc1e4c3e82f0676283/example/main.py#L29-L61,2, +Python,postgresql connection,https://github.com/Fizzadar/pyinfra/blob/006f751f7db2e07d32522c0285160783de2feb79/pyinfra/modules/postgresql.py#L48-L123,1, +Python,save list to file,https://github.com/QualiSystems/vCenterShell/blob/e2e24cd938a92a68f4a8e6a860810d3ef72aae6d/package/cloudshell/cp/vcenter/commands/save_sandbox.py#L38-L91,0, +Python,copying a file to a path,https://github.com/RedHatInsights/insights-core/blob/b57cbf8ed7c089672426ede0441e0a4f789ef4a1/insights/client/archive.py#L93-L104,1, +Python,memoize to disk - persistent memoization,https://github.com/fridiculous/estimators/blob/ab5b3d70f16f8372ae1114ac7e54e7791631eb74/estimators/hashing.py#L120-L127,1, +Python,how to read .csv file in an efficient way?,https://github.com/openvax/pyensembl/blob/4b995fb72e848206d6fbf11950cf30964cd9b3aa/pyensembl/memory_cache.py#L64-L72,2, +Python,aes encryption,https://github.com/raymontag/kppy/blob/a43f1fff7d49da1da4b3d8628a1b3ebbaf47f43a/kppy/database.py#L861-L871,2,"Don't ever use CBC mode (Bleichenbacher, etc.)" +Python,string similarity levenshtein,https://github.com/apache/spark/blob/618d6bff71073c8c93501ab7392c3cc579730f0b/python/pyspark/sql/functions.py#L1634-L1643,3, +Python,hash set for counting distinct elements,https://github.com/merenlab/illumina-utils/blob/246d0611f976471783b83d2aba309b0cb57210f6/IlluminaUtils/lib/fastalib.py#L111-L128,2, +Python,deducting the median from each column,https://github.com/vstinner/perf/blob/cf096c0c0c955d0aa1c893847fa6393ba4922ada/perf/_utils.py#L481-L484,2, +Python,how to read .csv file in an efficient way?,https://github.com/probcomp/crosscat/blob/4a05bddb06a45f3b7b3e05e095720f16257d1535/src/utils/data_utils.py#L297-L304,3, +Python,how to check if a checkbox is checked,https://github.com/DLR-RM/RAFCON/blob/24942ef1a904531f49ab8830a1dbb604441be498/source/rafcon/gui/utils/dialog.py#L233-L234,2, +Python,string to date,https://github.com/spotify/luigi/blob/c5eca1c3c3ee2a7eb612486192a0da146710a1e9/luigi/date_interval.py#L266-L267,3, +Python,aes encryption,https://github.com/pedroburon/tbk/blob/ecd6741e0bae06269eb4ac885c3ffcb7902ee40e/tbk/webpay/encryption.py#L36-L42,3, +Python,converting uint8 array to image,https://github.com/wandb/client/blob/7d08954ed5674fee223cd85ed0d8518fe47266b2/wandb/data_types.py#L727-L746,1,This function solves the opposite problem (image to uint8 array) +Python,get the description of a http status code,https://github.com/hardbyte/python-can/blob/cdc5254d96072df7739263623f3e920628a7d214/can/interfaces/socketcan/utils.py#L70-L90,0,not http +Python,converting uint8 array to image,https://github.com/sony/nnabla/blob/aaf3d33b7cbb38f2a03aa754178ba8f7c8481320/python/src/nnabla/utils/image_utils/common.py#L62-L66,1,Converts image stored in 0-1 range to 8-bit or 16-bit +Python,how to get html of website,https://github.com/sirfoga/pyhal/blob/4394d8a1f7e45bea28a255ec390f4962ee64d33a/hal/internet/web.py#L171-L180,3, +Python,finding time elapsed using a timer,https://github.com/sony/nnabla/blob/aaf3d33b7cbb38f2a03aa754178ba8f7c8481320/python/benchmark/function/function_benchmark.py#L224-L234,2, +Python,how to extract zip file recursively,https://github.com/jedie/DragonPy/blob/6659e5b5133aab26979a498ee7453495773a4f6c/dragonpy/components/rom.py#L101-L134,2, +Python,map to json,https://github.com/stianaske/pybotvac/blob/e3f655e81070ff209aaa4efb7880016cf2599e6d/pybotvac/robot.py#L65-L120,0, +Python,extracting data from a text file,https://github.com/joshburnett/scanf/blob/52f8911581c1590a3dcc6f17594eeb7b39716d42/scanf.py#L158-L184,2, +Python,read text file line by line,https://github.com/bxlab/bx-python/blob/09cb725284803df90a468d910f2274628d8647de/lib/bx/align/lav.py#L287-L296,1, +Python,extract latitude and longitude from given input,https://github.com/gem/oq-engine/blob/8294553a0b8aba33fd96437a35065d03547d0040/openquake/hazardlib/valid.py#L437-L446,1, +Python,how to make the checkbox checked,https://github.com/PySimpleGUI/PySimpleGUI/blob/08184197f5bd4580ab5e5aca28bdda30f87b86fc/PySimpleGUI27.py#L486-L493,0, +Python,fuzzy match ranking,https://github.com/oscarbranson/latools/blob/cd25a650cfee318152f234d992708511f7047fbe/latools/filtering/filt_obj.py#L319-L344,0, +Python,initializing array,https://github.com/JamesPHoughton/pysd/blob/bf1b1d03954e9ba5acac9ba4f1ada7cd93352eda/pysd/py_backend/functions.py#L150-L154,0, +Python,how to reverse a string,https://github.com/tehmaze/ipcalc/blob/d436b95d2783347c3e0084d76ec3c52d1f5d2f0b/ipcalc.py#L544-L558,0, +Python,convert int to string,https://github.com/raphaelm/python-sepaxml/blob/187b699b1673c862002b2bae7e1bd62fe8623aec/sepaxml/utils.py#L64-L76,0, +Python,socket recv timeout,https://github.com/anthonynguyen/pyrcon/blob/278cba95dd4d53a347d37acfce556ad375370e15/pyrcon/rcon.py#L97-L122,3, +Python,reading element from html - ,https://github.com/horejsek/python-webdriverwrapper/blob/a492f79ab60ed83d860dd817b6a0961500d7e3f5/webdriverwrapper/forms.py#L133-L138,0, +Python,postgresql connection,https://github.com/apache/airflow/blob/b69c686ad8a0c89b9136bb4b31767257eb7b2597/airflow/hooks/mssql_hook.py#L38-L49,1, +Python,replace in file,https://github.com/char16t/wa/blob/ee28bf47665ea57f3a03a08dfc0a5daaa33d8121/wa/api.py#L152-L174,0, +Python,get inner html,https://github.com/miyakogi/wdom/blob/a21bcd23e94baceee71161829f6897bee3fd39c1/wdom/web_node.py#L305-L311,3, +Python,deducting the median from each column,https://github.com/EelcoHoogendoorn/Numpy_arraysetops_EP/blob/84dc8114bf8a79c3acb3f7f59128247b9fc97243/numpy_indexed/grouping.py#L343-L382,2, +Python,readonly array,https://github.com/nerdvegas/rez/blob/1d3b846d53b5b5404edfe8ddb9083f9ceec8c5e7/src/rez/vendor/amqp/serialization.py#L210-L217,0, +Python,read properties file,https://github.com/piglei/uwsgi-sloth/blob/2834ac5ed17d89ca5f19151c649ac610f6f37bd1/uwsgi_sloth/tailer.py#L45-L51,1, +Python,unique elements,https://github.com/shoebot/shoebot/blob/d554c1765c1899fa25727c9fc6805d221585562b/lib/graph/cluster.py#L16-L20,3, +Python,convert json to csv,https://github.com/nickmckay/LiPD-utilities/blob/5dab6bbeffc5effd68e3a6beaca6b76aa928e860/Python/lipd/jsons.py#L231-L247,1, +Python,all permutations of a list,https://github.com/ThreatConnect-Inc/tcex/blob/dd4d7a1ef723af1561687120191886b9a2fd4b47/tcex/tcex_bin_profile.py#L259-L268,1, +Python,postgresql connection,https://github.com/apache/airflow/blob/b69c686ad8a0c89b9136bb4b31767257eb7b2597/airflow/hooks/mssql_hook.py#L38-L49,1, +Python,convert a utc time to epoch,https://github.com/DataBiosphere/dsub/blob/443ce31daa6023dc2fd65ef2051796e19d18d5a7/dsub/providers/google.py#L466-L473,1, +Python,json to xml conversion,https://github.com/open511/open511/blob/3d573f59d7efa06ff1b5419ea5ff4d90a90b3cf8/open511/converter/tmdd.py#L9-L15,1, +Python,get current ip address,https://github.com/istresearch/scrapy-cluster/blob/13aaed2349af5d792d6bcbfcadc5563158aeb599/crawler/crawling/distributed_scheduler.py#L275-L298,0, +Python,copying a file to a path,https://github.com/dsoprea/PathManifest/blob/0f5cfd4925a61cc0eac150ff354200392d07ec74/pm/manifest.py#L239-L271,1, +Python,get all parents of xml node,https://github.com/klahnakoski/pyLibrary/blob/fa2dcbc48fda8d26999baef400e9a98149e0b982/mo_graphs/graph.py#L58-L65,3, +Python,initializing array,https://github.com/mbakker7/timml/blob/91e99ad573cb8a9ad8ac1fa041c3ca44520c2390/timml/linesink.py#L651-L670,0, +Python,get name of enumerated value,https://github.com/mbedmicro/pyOCD/blob/41a174718a9739f3cbe785c2ba21cb7fd1310c6f/pyocd/debug/svd/parser.py#L82-L88,1, +Python,replace in file,https://github.com/Deathnerd/pyterp/blob/baf2957263685f03873f368226f5752da4e51f08/pyterp/__init__.py#L53-L65,1, +Python,how to read .csv file in an efficient way?,https://github.com/dshean/pygeotools/blob/5ac745717c0098d01eb293ff1fe32fd7358c76ab/pygeotools/lib/iolib.py#L604-L626,2, +Python,httpclient post json,https://github.com/rehive/rehive-python/blob/a7452a9cfecf76c5c8f0d443f122ed22167fb164/rehive/api/client.py#L50-L51,1, +Python,confusion matrix,https://github.com/Cognexa/cxflow/blob/dd609e6b0bd854424a8f86781dd77801a13038f9/cxflow/utils/confusion_matrix.py#L4-L22,3, +Python,pretty print json,https://github.com/sendgrid/sendgrid-python/blob/266c2abde7a35dfcce263e06bedc6a0bbdebeac9/examples/helpers/stats/stats_example.py#L13-L14,3, +Python,create cookie,https://github.com/pyGrowler/Growler/blob/90c923ff204f28b86a01d741224987a22f69540f/growler/middleware/cookieparser.py#L34-L56,2, +Python,how to randomly pick a number,https://github.com/HacKanCuBa/passphrase-py/blob/219d6374338ed9a1475b4f09b0d85212376f11e0/passphrase/secrets.py#L63-L84,3, +Python,how to empty array,https://github.com/mattjj/pybasicbayes/blob/76aef00f011415cc5c858cd1a101f3aab971a62d/pybasicbayes/distributions/gaussian.py#L1017-L1019,0, +Python,get executable path,https://github.com/kgori/treeCl/blob/fed624b3db1c19cc07175ca04e3eda6905a8d305/treeCl/wrappers/abstract_wrapper.py#L161-L176,2, +Python,parse json file,https://github.com/rehive/rehive-python/blob/a7452a9cfecf76c5c8f0d443f122ed22167fb164/rehive/api/resources/base_resources.py#L22-L46,0, +Python,get all parents of xml node,https://github.com/mfitzp/biocyc/blob/2fe81971687e4dcf1fcf869af0e7b3549be535b1/biocyc/biocyc.py#L566-L571,2, +Python,postgresql connection,https://github.com/nickw444/flask-ldap3-login/blob/3cf0faff52d0e04d4813119a2ba36d706e6fb31f/flask_ldap3_login/__init__.py#L705-L736,0, +Python,set file attrib hidden,https://github.com/MolSSI-BSE/basis_set_exchange/blob/e79110aaeb65f392ed5032420322dee3336948f7/basis_set_exchange/cli/bsecurate_handlers.py#L92-L105,0, +Python,how to check if a checkbox is checked,https://github.com/PySimpleGUI/PySimpleGUI/blob/08184197f5bd4580ab5e5aca28bdda30f87b86fc/PySimpleGUI27.py#L486-L493,1, +Python,convert json to csv,https://github.com/mosesschwartz/scrypture/blob/d51eb0c9835a5122a655078268185ce8ab9ec86a/scrypture/demo_scripts/Utils/json_to_csv.py#L28-L47,3, +Python,connect to sql,https://github.com/guilhermechapiewski/simple-db-migrate/blob/7ea6ffd0c58f70079cc344eae348430c7bdaaab3/simple_db_migrate/mysql.py#L30-L40,3, +Python,convert a utc time to epoch,https://github.com/erdc/RAPIDpy/blob/50e14e130554b254a00ff23b226cd7e4c6cfe91a/RAPIDpy/dataset.py#L296-L412,2, +Python,postgresql connection,https://github.com/Riffstation/flask-philo/blob/76c9d562edb4a77010c8da6dfdb6489fa29cbc9e/flask_philo/db/postgresql/connection.py#L58-L102,2, +Python,sort string list,https://github.com/stevepeak/inquiry/blob/f6ea435c302560ba19985b5d4ce2c97e2f321508/inquiry/query.py#L76-L81,0,related but not... +Python,encode url,https://github.com/dustin/twitty-twister/blob/8524750ee73adb57bbe14ef0cfd8aa08e1e59fb3/twittytwister/twitter.py#L171-L177,3,"a bad way, but probably correct..." +Python,get executable path,https://github.com/calmjs/calmjs/blob/b9b407c2b6a7662da64bccba93bb8d92e7a5fafd/src/calmjs/utils.py#L128-L173,1, +Python,randomly extract x items from a list,https://github.com/acutesoftware/AIKIF/blob/fcf1582dc5f884b9a4fa7c6e20e9de9d94d21d03/aikif/toolbox/solve_knapsack.py#L51-L65,0, +Python,k means clustering,https://github.com/atarashansky/self-assembling-manifold/blob/4db4793f65af62047492327716932ba81a67f679/SAM.py#L1318-L1350,3, +Python,find int in string,https://github.com/enkore/i3pystatus/blob/14cfde967cecf79b40e223e35a04600f4c875af7/i3pystatus/core/util.py#L80-L84,0, +Python,save list to file,https://github.com/StanfordBioinformatics/loom/blob/db2031a1a87124fee1aeb7414a668c03d774a698/worker/loomengine_worker/outputs.py#L28-L35,1, +Python,get current ip address,https://github.com/douban/pymesos/blob/c8096d3d510648649963b7cead01d4d06b5dcf26/pymesos/scheduler.py#L473-L490,0, +Python,how to determine a string is a valid word,https://github.com/deepmipt/DeepPavlov/blob/f3e4a69a3764d25d2f5bad4f1f1aebc872b00f9c/deeppavlov/models/preprocessors/capitalization.py#L75-L108,0, +Python,aes encryption,https://github.com/raymontag/kppy/blob/a43f1fff7d49da1da4b3d8628a1b3ebbaf47f43a/kppy/database.py#L861-L871,3, +Python,replace in file,https://github.com/NoviceLive/intellicoder/blob/6cac5ebfce65c370dbebe47756a1789b120ef982/intellicoder/transformers.py#L59-L66,2, +Python,all permutations of a list,https://github.com/KarchinLab/probabilistic2020/blob/5d70583b0a7c07cfe32e95f3a70e05df412acb84/prob2020/python/permutation.py#L9-L96,2, +Python,concatenate several file remove header lines,https://github.com/tanghaibao/jcvi/blob/d2e31a77b6ade7f41f3b321febc2b4744d1cdeca/jcvi/formats/fpc.py#L96-L111,0, +Python,postgresql connection,https://github.com/CivicSpleen/ambry/blob/d7f2be4bf1f7ffd086f3fadd4fcae60c32473e42/ambry/orm/database.py#L785-L793,1, +Python,parse binary file to custom class,https://github.com/census-instrumentation/opencensus-python/blob/992b223f7e34c5dcb65922b7d5c827e7a1351e7d/opencensus/trace/propagation/binary_format.py#L95-L136,2, +Python,sort string list,https://github.com/mirukan/lunafind/blob/77bdfe02df98a7f74d0ae795fee3b1729218995d/lunafind/order.py#L53-L79,1, +Python,convert int to string,https://github.com/osrg/ryu/blob/6f906e72c92e10bd0264c9b91a2f7bb85b97780c/ryu/lib/ofctl_utils.py#L198-L203,0, +Python,randomly extract x items from a list,https://github.com/acutesoftware/AIKIF/blob/fcf1582dc5f884b9a4fa7c6e20e9de9d94d21d03/aikif/toolbox/solve_knapsack.py#L51-L65,0, +Python,converting uint8 array to image,https://github.com/quintusdias/glymur/blob/8b8fb091130fff00f1028dc82219e69e3f9baf6d/glymur/jp2k.py#L660-L667,1, +Python,buffered file reader read text,https://github.com/saghul/evergreen/blob/22f22f45892f397c23c3e09e6ea1ad4c00b3add8/evergreen/io/stream.py#L96-L102,1, +Python,html entities replace,https://github.com/OpenTreeOfLife/peyotl/blob/5e4e52a0fdbd17f490aa644ad79fda6ea2eda7c0/peyotl/nexson_syntax/nexson2nexml.py#L101-L137,0, +Python,find int in string,https://github.com/acutesoftware/AIKIF/blob/fcf1582dc5f884b9a4fa7c6e20e9de9d94d21d03/aikif/core_data.py#L311-L318,1, +Python,how to check if a checkbox is checked,https://github.com/InQuest/python-sandboxapi/blob/9bad73f453e25d7d23e7b4b1ae927f44a35a5bc3/sandboxapi/joe.py#L37-L51,0, +Python,how to get database table name,https://github.com/apache/airflow/blob/b69c686ad8a0c89b9136bb4b31767257eb7b2597/airflow/contrib/hooks/aws_glue_catalog_hook.py#L139-L152,2, +Python,parse query string in url,https://github.com/TeamHG-Memex/MaybeDont/blob/34721f67b69d426adda324a0ed905d3860828af9/maybedont/predict.py#L238-L241,3, +Python,get executable path,https://github.com/costastf/locationsharinglib/blob/dcd74b0cdb59b951345df84987238763e50ef282/_CI/library/core_library.py#L186-L206,3, +Python,group by count,https://github.com/hcpl/xkbgroup/blob/fcf4709a3c8221e0cdf62c09e5cccda232b0104c/xkbgroup/core.py#L242-L258,0, +Python,get current ip address,https://github.com/danielfrg/datasciencebox/blob/6b7aa642c6616a46547035fcb815acc1de605a6f/datasciencebox/core/cloud/instance.py#L80-L83,2, +Python,encrypt aes ctr mode,https://github.com/boldfield/s3-encryption/blob/d88549ba682745dc6b199934c5b5221de7f8d8bc/s3_encryption/crypto.py#L52-L57,2, +Python,how to read .csv file in an efficient way?,https://github.com/PeerAssets/pypeerassets/blob/8927b4a686887f44fe2cd9de777e2c827c948987/pypeerassets/transactions.py#L99-L114,0, +Python,get current process id,https://github.com/djtaylor/python-lsbinit/blob/a41fc551226f61ac2bf1b8b0f3f5395db85e75a2/lsbinit/pid.py#L43-L78,3, +Python,map to json,https://github.com/mapbox/mapboxgl-jupyter/blob/f6e403c13eaa910e70659c7d179e8e32ce95ae34/mapboxgl/viz.py#L20-L37,0, +Python,html encode string,https://github.com/hit9/rux/blob/d7f60722658a3b83ac6d7bb3ca2790ac9c926b59/rux/parser.py#L33-L42,3, +Python,linear regression,https://github.com/neherlab/treetime/blob/f6cdb58d19243a18ffdaa2b2ec71872fa00e65c0/treetime/treeregression.py#L292-L310,0, +Python,set file attrib hidden,https://github.com/HearthSim/python-hsreplay/blob/ec03a18a75ae4c1e0facc583a7213a4c5b7f99ff/hsreplay/elements.py#L47-L66,0, +Python,hash set for counting distinct elements,https://github.com/pricingassistant/mongokat/blob/61eaf4bc1c4cc359c6f9592ec97b9a04d9561411/mongokat/collection.py#L136-L137,1, +Python,find int in string,https://github.com/Erotemic/utool/blob/3b27e1f4e6e6fb23cd8744af7b7195b57d99e03a/utool/util_latex.py#L890-L896,0, +Python,string to date,https://github.com/supercoderz/pyeurofx/blob/3f579bb6e4836dadb187df8c74a9d186ae7e39e7/eurofx/common.py#L88-L98,2, +Python,sort string list,https://github.com/OnroerendErfgoed/oe_utils/blob/7b2014bda8ac6bb71b7138eaa06ac17ef3ff4a6d/oe_utils/search/__init__.py#L22-L39,0, +Python,convert string to number,https://github.com/gunthercox/ChatterBot/blob/1a03dcb45cba7bdc24d3db5e750582e0cb1518e2/chatterbot/parsing.py#L506-L517,2, +Python,priority queue,https://github.com/mushkevych/scheduler/blob/6740331360f49083c208085fb5a60ce80ebf418b/synergy/scheduler/garbage_collector.py#L81-L98,2, +Python,normal distribution,https://github.com/tensorflow/tensorboard/blob/8e5f497b48e40f2a774f85416b8a35ac0693c35e/tensorboard/plugins/histogram/histograms_demo.py#L32-L103,0, +Python,normal distribution,https://github.com/alejoe91/MEAutility/blob/7c2b0da52c2752a3baf04e8e248e26b0769cd088/MEAutility/core.py#L326-L338,1, +Python,httpclient post json,https://github.com/LasLabs/python-helpscout/blob/84bf669417d72ca19641a02c9a660e1ae4271de4/helpscout/request_paginator/__init__.py#L114-L123,3, +Python,convert int to string,https://github.com/espressif/esptool/blob/c583756c118039cfcfe256f7a3285618914d16a5/ecdsa/ecdsa.py#L169-L175,3, +Python,copy to clipboard,https://github.com/zeekay/soundcloud-cli/blob/8a83013683e1acf32f093239bbb6d3c02bc50b37/soundcloud_cli/utils.py#L7-L23,3, +Python,encode url,https://github.com/marvin-ai/marvin-python-toolbox/blob/7c95cb2f9698b989150ab94c1285f3a9eaaba423/marvin_python_toolbox/common/utils.py#L286-L295,3, +Python,extract data from html content,https://github.com/davgeo/clear/blob/5ec85d27efd28afddfcd4c3f44df17f0115a77aa/clear/epguides.py#L219-L245,0, +Python,how to read the contents of a .gz compressed file?,https://github.com/EntilZha/PyFunctional/blob/ac04e4a8552b0c464a7f492f7c9862424867b63e/functional/io.py#L98-L113,1, +Python,initializing array,https://github.com/mbakker7/timml/blob/91e99ad573cb8a9ad8ac1fa041c3ca44520c2390/timml/linesink.py#L651-L670,1, +Python,how to reverse a string,https://github.com/tehmaze/ipcalc/blob/d436b95d2783347c3e0084d76ec3c52d1f5d2f0b/ipcalc.py#L544-L558,1, +Python,sending binary data over a serial connection,https://github.com/Seeed-Studio/wio-cli/blob/ce83f4c2d30be7f72d1a128acd123dfc5effa563/wio/commands/cmd_setup.py#L217-L384,2, +Python,replace in file,https://github.com/jmbeach/KEP.py/blob/68cda64ab649640a486534867c81274c41e39446/src/keppy/tag.py#L31-L33,2, +Python,buffered file reader read text,https://github.com/internetarchive/warc/blob/8f05a000a23bbd6501217e37cfd862ffdf19da7f/warc/warc.py#L260-L263,2, +Python,normal distribution,https://github.com/tensorflow/probability/blob/e87fe34111d68c35db0f9eeb4935f1ece9e1a8f5/tensorflow_probability/python/layers/distribution_layer.py#L1210-L1215,0,"Lot's of distribution stuff going on but not doesn't look like code to generate a ""normal"" distribution." +Python,linear regression,https://github.com/neherlab/treetime/blob/f6cdb58d19243a18ffdaa2b2ec71872fa00e65c0/treetime/treeregression.py#L292-L310,1, +Python,positions of substrings in string,https://github.com/mcs07/ChemDataExtractor/blob/349a3bea965f2073141d62043b89319222e46af1/chemdataextractor/text/processors.py#L91-L95,1, +Python,underline text in label widget,https://github.com/bitesofcode/projexui/blob/f18a73bec84df90b034ca69b9deea118dbedfc4d/projexui/widgets/xpushbutton.py#L72-L90,1, +Python,linear regression,https://github.com/dshean/pygeotools/blob/5ac745717c0098d01eb293ff1fe32fd7358c76ab/pygeotools/lib/malib.py#L653-L667,3, +Python,get the description of a http status code,https://github.com/DenisCarriere/geocoder/blob/39b9999ec70e61da9fa52fe9fe82a261ad70fa8b/geocoder/opencage.py#L409-L415,2, +Python,how to extract zip file recursively,https://github.com/bokeh/bokeh/blob/dc8cf49e4e4302fd38537ad089ece81fbcca4737/examples/app/stocks/download_sample_data.py#L27-L61,3, +Python,copy to clipboard,https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/variableexplorer/widgets/collectionseditor.py#L1242-L1252,1,The function performs pasting FROM the clipboard instead of copying TO the clipboard. This is an interesting test case of function relatedness vs relevance with respect to the given query. +Python,how to extract zip file recursively,https://github.com/buildinspace/peru/blob/76e4012c6c34e85fb53a4c6d85f4ac3633d93f77/peru/resources/plugins/curl/curl_plugin.py#L117-L137,3, +Python,output to html file,https://github.com/lrq3000/pyFileFixity/blob/fd5ef23bb13835faf1e3baa773619b86a1cc9bdf/pyFileFixity/lib/profilers/pyinstrument/profiler.py#L159-L185,2, +Python,convert int to string,https://github.com/espressif/esptool/blob/c583756c118039cfcfe256f7a3285618914d16a5/ecdsa/ecdsa.py#L169-L175,3, +Python,html entities replace,https://github.com/nickoala/telepot/blob/3792fde251d0f1d5a6ca16c8ad1a71f89360c41d/telepot/text.py#L65-L88,2, +Python,httpclient post json,https://github.com/proycon/flat/blob/f14eea61edcae8656dadccd9a43481ff7e710ffb/flat/comm.py#L116-L135,2, +Python,sorting multiple arrays based on another arrays sorted order,https://github.com/ml31415/numpy-groupies/blob/0911e9c59b14e11319e82d0876056ad2a17e6568/numpy_groupies/aggregate_numpy.py#L181-L185,2, +Python,matrix multiply,https://github.com/mabuchilab/QNET/blob/cc20d26dad78691d34c67173e5cd67dcac94208a/src/qnet/algebra/core/matrix_algebra.py#L136-L140,3, +Python,connect to sql,https://github.com/robinandeer/puzzle/blob/9476f05b416d3a5135d25492cb31411fdf831c58/puzzle/plugins/sql/store.py#L62-L86,3, +Python,get current ip address,https://github.com/fy0/slim/blob/9951a910750888dbe7dd3e98acae9c40efae0689/slim/base/view.py#L128-L136,1, +Python,convert json to csv,https://github.com/poldracklab/niworkflows/blob/254f4b4fcc5e6ecb29d2f4602a30786b913ecce5/niworkflows/interfaces/utils.py#L793-L864,1, +Python,finding time elapsed using a timer,https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/timing.py#L14-L21,2, +Python,fuzzy match ranking,https://github.com/oscarbranson/latools/blob/cd25a650cfee318152f234d992708511f7047fbe/latools/filtering/filt_obj.py#L319-L344,3, +Python,get the description of a http status code,https://github.com/cloudendpoints/endpoints-python/blob/00dd7c7a52a9ee39d5923191c2604b8eafdb3f24/endpoints/errors.py#L239-L253,1, +Python,postgresql connection,https://github.com/django-extensions/django-extensions/blob/7e0bef97ea6cb7f9eea5e2528e3a985a83a7b9b8/django_extensions/management/commands/sqldsn.py#L100-L141,1, +Python,convert int to bool,https://github.com/RudolfCardinal/pythonlib/blob/0b84cb35f38bd7d8723958dae51b480a829b7227/cardinal_pythonlib/convert.py#L43-L73,3, +Python,convert html to pdf,https://github.com/jbarlow83/OCRmyPDF/blob/79c84eefa353632a3d7ccddbd398c6678c1c1777/src/ocrmypdf/hocrtransform.py#L156-L231,1, +Python,scatter plot,https://github.com/bcbio/bcbio-nextgen/blob/6a9348c0054ccd5baffd22f1bb7d0422f6978b20/bcbio/structural/cnvkit.py#L633-L646,1, +Python,create cookie,https://github.com/pgjones/quart/blob/7cb2d3bd98e8746025764f2b933abc12041fa175/quart/utils.py#L29-L59,3, +Python,get inner html,https://github.com/RudolfCardinal/pythonlib/blob/0b84cb35f38bd7d8723958dae51b480a829b7227/cardinal_pythonlib/rnc_web.py#L408-L416,0, +Python,convert a utc time to epoch,https://github.com/collectiveacuity/labPack/blob/52949ece35e72e3cc308f54d9ffa6bfbd96805b8/labpack/records/time.py#L181-L206,1,"code does the conversion the wrong other way around, but could help find the right module" +Python,parse binary file to custom class,https://github.com/mapillary/mapillary_tools/blob/816785e90c589cae6e8e34a5530ce8417d29591c/mapillary_tools/gpmf.py#L72-L133,1, +Python,get current ip address,https://github.com/UpCloudLtd/upcloud-python-api/blob/954b0ad7c4b932b2be31a95d88975f6b0eeac8ed/upcloud_api/cloud_manager/ip_address_mixin.py#L16-L23,3, +Python,map to json,https://github.com/kyper-data/python-highcharts/blob/a4c488ae5c2e125616efad5a722f3dfd8a9bc450/highcharts/highmaps/highmaps.py#L292-L315,0, +Python,print model summary,https://github.com/LIVVkit/LIVVkit/blob/680120cd437e408673e62e535fc0a246c7fc17db/livvkit/components/validation.py#L141-L149,2, +Python,converting uint8 array to image,https://github.com/dade-ai/snipy/blob/408520867179f99b3158b57520e2619f3fecd69b/snipy/img/imageutil.py#L479-L482,3, +Python,how to read .csv file in an efficient way?,https://github.com/lappis-unb/salic-ml/blob/1b3ebc4f8067740999897ccffd9892dc94482a93/src/salicml/utils/read_csv.py#L10-L15,3, +Python,get name of enumerated value,https://github.com/apple/turicreate/blob/74514c3f99e25b46f22c6e02977fe3da69221c2e/src/external/coremltools_wrap/coremltools/deps/protobuf/python/google/protobuf/descriptor.py#L321-L337,1, +Python,export to excel,https://github.com/housecanary/hc-api-python/blob/2bb9e2208b34e8617575de45934357ee33b8531c/housecanary/excel/__init__.py#L18-L28,3, +Python,get all parents of xml node,https://github.com/pgmpy/pgmpy/blob/9381a66aba3c3871d3ccd00672b148d17d63239e/pgmpy/estimators/MLE.py#L84-L139,0, +Python,unzipping large files,https://github.com/JIC-CSB/jicbioimage.transform/blob/494c282d964c3a9b54c2a1b3730f5625ea2a494b/appveyor/install.py#L19-L23,3, +Python,unzipping large files,https://github.com/uuazed/numerapi/blob/fc9dcc53b32ede95bfda1ceeb62aec1d67d26697/numerapi/numerapi.py#L76-L88,3, +Python,parse binary file to custom class,https://github.com/iclab/centinel/blob/9a25dcf30c6a1db3c046f7ccb8ab8873e455c1a4/centinel/cli.py#L114-L201,0, +Python,format date,https://github.com/EconForge/dolo/blob/d91ddf148b009bf79852d9aec70f3a1877e0f79a/dolo/compiler/symbolic.py#L10-L17,2, +Python,string to date,https://github.com/robgolding/tasklib/blob/0ad882377639865283021041f19add5aeb10126a/tasklib/serializing.py#L71-L79,1, +Python,aes encryption,https://github.com/konomae/lastpass-python/blob/5063911b789868a1fd9db9922db82cdf156b938a/lastpass/parser.py#L269-L284,0,opposite +Python,encode url,https://github.com/frawau/aioblescan/blob/02d12e90db3ee6df7be6513fec171f20dc533de3/aioblescan/plugins/eddystone.py#L105-L151,1, +Python,convert a utc time to epoch,https://github.com/theonion/django-bulbs/blob/0c0e6e3127a7dc487b96677fab95cacd2b3806da/bulbs/utils/methods.py#L66-L68,3, +Python,save list to file,https://github.com/coderholic/pyradio/blob/c5219d350bccbccd49dbd627c1f886a952ea1963/pyradio/config.py#L258-L306,1, +Python,write csv,https://github.com/fastai/fastai/blob/9fb84a5cdefe5a766cdb792b8f5d8971737b7e67/fastai/widgets/image_cleaner.py#L209-L218,3, +Python,readonly array,https://github.com/zeroSteiner/AdvancedHTTPServer/blob/8c53cf7e1ddbf7ae9f573c82c5fe5f6992db7b5a/advancedhttpserver.py#L1920-L1927,0, +Python,parse binary file to custom class,https://github.com/mapillary/mapillary_tools/blob/816785e90c589cae6e8e34a5530ce8417d29591c/mapillary_tools/gpmf.py#L72-L133,3, +Python,how to make the checkbox checked,https://github.com/bbangert/lettuce_webdriver/blob/d11f8531c43bb7150c316e0dc4ccd083617becf7/lettuce_webdriver/webdriver.py#L337-L341,1, +Python,converting uint8 array to image,https://github.com/pyviz/holoviews/blob/ae0dd2f3de448b0ca5e9065aabd6ef8d84c7e655/holoviews/operation/datashader.py#L1058-L1069,1, +Python,regex case insensitive,https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/stringmatching.py#L18-L47,3, +Python,aes encryption,https://github.com/frispete/keyrings.cryptfile/blob/cfa80d4848a5c3c0aeee41a954b2b120c80e69b2/keyrings/cryptfile/cryptfile.py#L132-L162,0, +Python,httpclient post json,https://github.com/Adyen/adyen-python-api-library/blob/928f6409ab6e2fac300b9fa29d89f3f508b23445/Adyen/httpclient.py#L282-L316,3, +Python,deducting the median from each column,https://github.com/adaptive-learning/proso-apps/blob/8278c72e498d6ef8d392cc47b48473f4ec037142/proso/models/option_selection.py#L195-L206,0, +Python,get current observable value,https://github.com/timofurrer/observable/blob/a6a764efaf9408a334bdb1ddf4327d9dbc4b8eaa/observable/property.py#L102-L108,0, +Python,get executable path,https://github.com/pypa/pipenv/blob/cae8d76c210b9777e90aab76e9c4b0e53bb19cde/pipenv/utils.py#L1300-L1316,3, +Python,deducting the median from each column,https://github.com/adaptive-learning/proso-apps/blob/8278c72e498d6ef8d392cc47b48473f4ec037142/proso/models/option_selection.py#L195-L206,0, +Python,socket recv timeout,https://github.com/log2timeline/plaso/blob/9c564698d2da3ffbe23607a3c54c0582ea18a6cc/plaso/engine/zeromq_queue.py#L161-L171,2, +Python,map to json,https://github.com/ontio/ontology-python-sdk/blob/ac88bdda941896c5d2ced08422a9c5179d3f9b19/ontology/smart_contract/native_contract/governance.py#L403-L414,0, +Python,custom http error response,https://github.com/lepture/flask-oauthlib/blob/9e6f152a5bb360e7496210da21561c3e6d41b0e1/flask_oauthlib/provider/oauth1.py#L902-L905,2, +Python,heatmap from 3d coordinates,https://github.com/widdowquinn/pyani/blob/2b24ec971401e04024bba896e4011984fe3f53f0/pyani/pyani_graphics.py#L219-L228,0, +Python,how to read .csv file in an efficient way?,https://github.com/lappis-unb/salic-ml/blob/1b3ebc4f8067740999897ccffd9892dc94482a93/src/salicml/utils/read_csv.py#L10-L15,3, +Python,heatmap from 3d coordinates,https://github.com/kgori/treeCl/blob/fed624b3db1c19cc07175ca04e3eda6905a8d305/treeCl/plotter.py#L31-L82,0, +Python,map to json,https://github.com/aliyun/aliyun-log-python-sdk/blob/ac383db0a16abf1e5ef7df36074374184b43516e/aliyun/log/index_config.py#L64-L72,1, +Python,hash set for counting distinct elements,https://github.com/firstprayer/monsql/blob/6285c15b574c8664046eae2edfeb548c7b173efd/monsql/queryset.py#L110-L117,0, +Python,sorting multiple arrays based on another arrays sorted order,https://github.com/loverajoel/sqlalchemy-elasticquery/blob/4c99b81f59e7bb20eaeedb3adbf5126e62bbc25c/sqlalchemy_elasticquery/elastic_query.py#L159-L167,0, +Python,convert string to number,https://github.com/klen/zeta-library/blob/b76f89000f467e10ddcc94aded3f6c6bf4a0e5bd/zetalibrary/scss/__init__.py#L1898-L1910,0, +Python,randomly extract x items from a list,https://github.com/CitrineInformatics/python-citrination-client/blob/409984fc65ce101a620f069263f155303492465c/citrination_client/search/core/query/base_returning_query.py#L9-L40,0, +Python,extract data from html content,https://github.com/davgeo/clear/blob/5ec85d27efd28afddfcd4c3f44df17f0115a77aa/clear/epguides.py#L219-L245,3, +Python,heatmap from 3d coordinates,https://github.com/flo-compbio/genometools/blob/dd962bb26d60a0f14ca14d8c9a4dd75768962c7d/genometools/expression/matrix.py#L295-L319,3, +Python,fuzzy match ranking,https://github.com/locationlabs/mockredis/blob/fd4e3117066ff0c24e86ebca007853a8092e3254/mockredis/client.py#L1193-L1196,0, +Python,how to read the contents of a .gz compressed file?,https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/gzip_util.py#L43-L51,1, +Python,how to randomly pick a number,https://github.com/eddiejessup/spatious/blob/b7ae91bec029e85a45a7f303ee184076433723cd/spatious/vector.py#L185-L216,1, +Python,html encode string,https://github.com/sprymix/metamagic.json/blob/c95d3cacd641d433af44f0774f51a085cb4888e6/metamagic/json/encoder.py#L156-L178,0, +Python,confusion matrix,https://github.com/totalgood/pugnlp/blob/c43445b14afddfdeadc5f3076675c9e8fc1ee67c/src/pugnlp/stats.py#L536-L562,3, +Python,sending binary data over a serial connection,https://github.com/securestate/termineter/blob/d657d25d97c7739e650b951c396404e857e56625/lib/termineter/core.py#L363-L374,2, +Python,confusion matrix,https://github.com/edublancas/sklearn-evaluation/blob/79ee6e4dfe911b5a5a9b78a5caaed7c73eef6f39/sklearn_evaluation/evaluator.py#L85-L89,3, +Python,get current process id,https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/gurumate-2.8.6-py2.7.egg/gurumate/linux2/procs.py#L43-L46,3, +Python,sending binary data over a serial connection,https://github.com/google/mobly/blob/38ba2cf7d29a20e6a2fca1718eecb337df38db26/mobly/controllers/android_device_lib/jsonrpc_shell_base.py#L44-L69,0, +Python,buffered file reader read text,https://github.com/LionelAuroux/pyrser/blob/f153a97ef2b6bf915a1ed468c0252a9a59b754d5/pyrser/parsing/base.py#L314-L327,0, +Python,underline text in label widget,https://github.com/limodou/uliweb/blob/34472f25e4bc0b954a35346672f94e84ef18b076/uliweb/form/template_layout.py#L90-L108,0, +Python,convert int to string,https://github.com/kpdyer/regex2dfa/blob/109f877e60ef0dfcb430f11516d215930b7b9936/third_party/re2/re2/unicode.py#L26-L45,1, +Python,convert string to number,https://github.com/klen/zeta-library/blob/b76f89000f467e10ddcc94aded3f6c6bf4a0e5bd/zetalibrary/scss/__init__.py#L1898-L1910,1,The other way around +Python,reading element from html - ,https://github.com/usc-isi-i2/etk/blob/aab077c984ea20f5e8ae33af622fe11d3c4df866/etk/extractors/readability/htmls.py#L106-L116,1, +Python,copying a file to a path,https://github.com/klen/starter/blob/24a65c10d4ac5a9ca8fc1d8b3d54b3fb13603f5f/starter/core.py#L52-L58,3, +Python,reading element from html - ,https://github.com/katerina7479/pypdflite/blob/ac2501f30d6619eae9dea5644717575ca9263d0a/pypdflite/pdfobjects/pdfhtml.py#L407-L410,0, +Python,randomly extract x items from a list,https://github.com/mozilla/crontabber/blob/b510be349e71f165c1a9506db95bda0b88728f8b/crontabber/generic_app.py#L178-L184,0, +Python,how to make the checkbox checked,https://github.com/aloetesting/aloe_webdriver/blob/65d847da4bdc63f9c015cb19d4efdee87df8ffad/aloe_webdriver/__init__.py#L564-L568,0, +Python,scatter plot,https://github.com/flowersteam/explauto/blob/cf0f81ecb9f6412f7276a95bd27359000e1e26b6/explauto/experiment/log.py#L67-L93,2, +Python,how to get current date,https://github.com/airbus-cert/mispy/blob/6d523d6f134d2bd38ec8264be74e73b68403da65/mispy/misp.py#L595-L605,3, +Python,output to html file,https://github.com/pandas-profiling/pandas-profiling/blob/003d236daee8b7aca39c62708b18d59bced0bc03/pandas_profiling/__init__.py#L106-L122,3, +Python,convert int to bool,https://github.com/msfrank/cifparser/blob/ecd899ba2e7b990e2cec62b115742d830e7e4384/cifparser/converters.py#L23-L29,1, +Python,aes encryption,https://github.com/ethereum/pyethereum/blob/b704a5c6577863edc539a1ec3d2620a443b950fb/ethereum/tools/keys.py#L56-L61,3, +Python,how to read .csv file in an efficient way?,https://github.com/thespacedoctor/sherlock/blob/2c80fb6fa31b04e7820e6928e3d437a21e692dd3/sherlock/imports/ned_d.py#L177-L274,2, +Python,postgresql connection,https://github.com/nickw444/flask-ldap3-login/blob/3cf0faff52d0e04d4813119a2ba36d706e6fb31f/flask_ldap3_login/__init__.py#L705-L736,1, +Python,encrypt aes ctr mode,https://github.com/ghackebeil/PyORAM/blob/b8832c1b753c0b2148ef7a143c5f5dd3bbbb61e7/src/pyoram/crypto/aes.py#L24-L27,3, +Python,create cookie,https://github.com/UCL-INGI/INGInious/blob/cbda9a9c7f2b8e8eb1e6d7d51f0d18092086300c/inginious/frontend/cookieless_app.py#L231-L237,0, +Python,positions of substrings in string,https://github.com/hydpy-dev/hydpy/blob/1bc6a82cf30786521d86b36e27900c6717d3348d/hydpy/core/selectiontools.py#L659-L721,0, +Python,copying a file to a path,https://github.com/RedHatInsights/insights-core/blob/b57cbf8ed7c089672426ede0441e0a4f789ef4a1/insights/client/archive.py#L93-L104,2, +Python,create cookie,https://github.com/IdentityPython/oidcendpoint/blob/6c1d729d51bfb6332816117fe476073df7a1d823/src/oidcendpoint/cookie.py#L369-L404,2, +Python,binomial distribution,https://github.com/QInfer/python-qinfer/blob/8170c84a0be1723f8c6b09e0d3c7a40a886f1fe3/src/qinfer/distributions.py#L1078-L1082,3, +Python,deducting the median from each column,https://github.com/CEA-COSMIC/ModOpt/blob/019b189cb897cbb4d210c44a100daaa08468830c/modopt/math/stats.py#L75-L106,2, +Python,convert decimal to hex,https://github.com/maxweisspoker/simplebitcoinfuncs/blob/ad332433dfcc067e86d2e77fa0c8f1a27daffb63/simplebitcoinfuncs/miscbitcoinfuncs.py#L190-L199,1,The function doing the conversion is dechex() and is defined in another file. Too complicated; probably hex() is enough. +Python,sort string list,https://github.com/aptivate/django-sortable-listview/blob/9d5fa5847f0c3e80893780c6540e5098635ace9f/sortable_listview/views.py#L127-L133,0, +Python,replace in file,https://github.com/HeliumEdu/heliumcli/blob/f6c6cc0ed3c335f956afa77eab0228ae23bb5d47/heliumcli/actions/init.py#L86-L97,3, +Python,filter array,https://github.com/Yipit/pyeqs/blob/2e385c0a5d113af0e20be4d9393add2aabdd9565/pyeqs/query_builder.py#L41-L50,0, +Python,memoize to disk - persistent memoization,https://github.com/aboSamoor/polyglot/blob/d0d2aa8d06cec4e03bd96618ae960030f7069a17/polyglot/decorators.py#L23-L32,1, +Python,normal distribution,https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_layers.py#L3985-L4004,1, +Python,extract data from html content,https://github.com/usc-isi-i2/etk/blob/aab077c984ea20f5e8ae33af622fe11d3c4df866/etk/cli/html_content_extractor.py#L20-L32,2, +Python,find int in string,https://github.com/klahnakoski/mo-logs/blob/0971277ac9caf28a755b766b70621916957d4fea/mo_logs/strings.py#L547-L554,0, +Python,how to read .csv file in an efficient way?,https://github.com/remix/partridge/blob/0ba80fa30035e5e09fd8d7a7bdf1f28b93d53d03/partridge/gtfs.py#L89-L112,3, +Python,confusion matrix,https://github.com/h2oai/h2o-3/blob/dd62aaa1e7f680a8b16ee14bc66b0fb5195c2ad8/h2o-py/h2o/model/multinomial.py#L18-L26,1, +Python,how to reverse a string,https://github.com/mclarkk/lifxlan/blob/ead0e3114d6aa2e5e77dab1191c13c16066c32b0/lifxlan/message.py#L126-L130,2, +Python,how to determine a string is a valid word,https://github.com/O365/python-o365/blob/02a71cf3775cc6a3c042e003365d6a07c8c75a73/O365/utils/utils.py#L879-L907,1, +Python,randomly extract x items from a list,https://github.com/rkargon/pixelsorter/blob/0775d1e487fbcb023e411e1818ba3290b0e8665e/pixelsorter/util.py#L72-L84,1,"This query is interesting because 'x' is really just a placeholder for 'any value.' The function, however, uses the variable 'x' to refer to an object value (as opposed to the desired number of elements to return). This is an example of how variable names are not good indicators of behavior. " +Python,how to randomly pick a number,https://github.com/alvarogzp/telegram-bot-framework/blob/7b597a415c1901901c677976cb13100fc3083107/bot/action/extra/random.py#L35-L47,0, +Python,convert html to pdf,https://github.com/RudolfCardinal/pythonlib/blob/0b84cb35f38bd7d8723958dae51b480a829b7227/cardinal_pythonlib/pdf.py#L161-L186,2, +Python,how to empty array,https://github.com/rainwoodman/sharedmem/blob/b23e59c1ed0e28f7b6c96c17a04d55c700e06e3a/sharedmem/sharedmem.py#L785-L791,0, +Python,matrix multiply,https://github.com/pymupdf/PyMuPDF/blob/917f2d83482510e26ba0ff01fd2392c26f3a8e90/fitz/fitz.py#L270-L275,2, +Python,binomial distribution,https://github.com/econ-ark/HARK/blob/3d184153a189e618a87c9540df1cd12044039cc5/HARK/utilities.py#L832-L907,0, +Python,sorting multiple arrays based on another arrays sorted order,https://github.com/JoseAntFer/pyny3d/blob/fb81684935a24f7e50c975cb4383c81a63ab56df/pyny3d/utils.py#L8-L33,2, +Python,finding time elapsed using a timer,https://github.com/DIPSAS/SwarmManagement/blob/c9ef1165b240c145d42e2d363925c8200fc19f43/SwarmManagement/SwarmTools.py#L170-L180,2, +Python,encode url,https://github.com/yunpian/yunpian-python-sdk/blob/405a1196ec83fdf29ff454f74ef036974be11970/yunpian_python_sdk/ypclient.py#L195-L208,3, +Python,html entities replace,https://github.com/honzajavorek/tipi/blob/cbe51192725608b6fba1244a48610ae231b13e08/tipi/repl.py#L65-L74,3, +Python,readonly array,https://github.com/piglei/uwsgi-sloth/blob/2834ac5ed17d89ca5f19151c649ac610f6f37bd1/uwsgi_sloth/tailer.py#L45-L51,0, +Python,how to make the checkbox checked,https://github.com/aloetesting/aloe_webdriver/blob/65d847da4bdc63f9c015cb19d4efdee87df8ffad/aloe_webdriver/__init__.py#L542-L547,2, +Python,how to check if a checkbox is checked,https://github.com/jbm950/pygame_toolbox/blob/3fe32145fc149e4dd0963c30a2b6a4dddd4fac0e/pygame_toolbox/graphics/widgets.py#L141-L162,2, +Python,convert html to pdf,https://github.com/pikepdf/pikepdf/blob/07154f4dec007e2e9c0c6a8c07b964fd06bc5f77/src/pikepdf/_methods.py#L76-L83,2, +Python,get all parents of xml node,https://github.com/klahnakoski/pyLibrary/blob/fa2dcbc48fda8d26999baef400e9a98149e0b982/mo_graphs/tree_graph.py#L39-L44,0, +Python,extract latitude and longitude from given input,https://github.com/Unidata/MetPy/blob/16f68a94919b9a82dcf9cada2169cf039129e67b/metpy/calc/tools.py#L819-L870,0, +Python,how to read the contents of a .gz compressed file?,https://github.com/sunlightlabs/django-mediasync/blob/aa8ce4cfff757bbdb488463c64c0863cca6a1932/mediasync/__init__.py#L33-L38,1, +Python,underline text in label widget,https://github.com/bitesofcode/projexui/blob/f18a73bec84df90b034ca69b9deea118dbedfc4d/projexui/widgets/xpushbutton.py#L72-L90,0, +Python,export to excel,https://github.com/IAMconsortium/pyam/blob/4077929ca6e7be63a0e3ecf882c5f1da97b287bf/pyam/core.py#L1049-L1070,3, +Python,custom http error response,https://github.com/swevm/scaleio-py/blob/d043a0137cb925987fd5c895a3210968ce1d9028/scaleiopy/im.py#L202-L230,0, +Python,json to xml conversion,https://github.com/jfear/sramongo/blob/82a9a157e44bda4100be385c644b3ac21be66038/sramongo/xml_helpers.py#L75-L95,0, +Python,matrix multiply,https://github.com/mabuchilab/QNET/blob/cc20d26dad78691d34c67173e5cd67dcac94208a/src/qnet/algebra/core/matrix_algebra.py#L127-L131,0, +Python,how to make the checkbox checked,https://github.com/bbangert/lettuce_webdriver/blob/d11f8531c43bb7150c316e0dc4ccd083617becf7/lettuce_webdriver/webdriver.py#L337-L341,2, +Python,concatenate several file remove header lines,https://github.com/bihealth/vcfpy/blob/99e2165df30f11e0c95f3170f31bc5191d9e9e15/vcfpy/header.py#L227-L253,2, +Python,heatmap from 3d coordinates,https://github.com/aleju/imgaug/blob/786be74aa855513840113ea523c5df495dc6a8af/imgaug/augmentables/heatmaps.py#L110-L158,3, +Python,pretty print json,https://github.com/markbaas/python-iresolve/blob/ba91e37221e91265e4ac5dbc6e8f5cffa955a04f/iresolve.py#L136-L141,1, +Python,how to get html of website,https://github.com/sirfoga/pyhal/blob/4394d8a1f7e45bea28a255ec390f4962ee64d33a/hal/internet/web.py#L171-L180,3, +Python,normal distribution,https://github.com/janpipek/physt/blob/6dd441b073514e7728235f50b2352d56aacf38d4/physt/examples/__init__.py#L12-L22,2, +Python,create cookie,https://github.com/pgjones/quart/blob/7cb2d3bd98e8746025764f2b933abc12041fa175/quart/utils.py#L29-L59,3, +Python,reading element from html - ,https://github.com/turicas/rows/blob/c74da41ae9ed091356b803a64f8a30c641c5fc45/rows/plugins/plugin_html.py#L177-L183,1, +Python,all permutations of a list,https://github.com/GetmeUK/MongoFrames/blob/7d2bd792235dfa77a9deecab5366f5f73480823d/mongoframes/factory/makers/selections.py#L231-L283,0, +Python,scatter plot,https://github.com/totalgood/nlpia/blob/efa01126275e9cd3c3a5151a644f1c798a9ec53f/src/nlpia/book/examples/ch05_sms_spam_linear_regression.py#L161-L173,2, +Python,regex case insensitive,https://github.com/lotrekagency/djlotrek/blob/10a304103768c3d59bdb8859eba86ef3327c9598/djlotrek/templatetags/djlotrek_filters.py#L50-L53,1, +Python,encode url,https://github.com/fred49/linshare-api/blob/be646c25aa8ba3718abb6869c620b157d53d6e41/linshareapi/admin/upgradetasks.py#L177-L191,3, +Python,get inner html,https://github.com/maxpowel/scrapium/blob/bc12c425aa5978f953a87d05920ba0f61a00409c/scrapium/scrapium.py#L140-L142,3, +Python,filter array,https://github.com/odlgroup/odl/blob/b8443f6aca90e191ba36c91d32253c5a36249a6c/odl/tomo/analytic/filtered_back_projection.py#L313-L474,0, +Python,find int in string,https://github.com/mlperf/training/blob/1c6ae725a81d15437a2b2df05cac0673fde5c3a4/single_stage_detector/ssd/utils.py#L655-L689,0, +Python,sending binary data over a serial connection,https://github.com/thomasdelaet/python-velbus/blob/af2f8af43f1a24bf854eff9f3126fd7b5c41b3dd/velbus/messages/relay_status.py#L120-L130,1, +Python,concatenate several file remove header lines,https://github.com/utiasSTARS/pykitti/blob/d3e1bb81676e831886726cc5ed79ce1f049aef2c/pykitti/downloader/tracking.py#L26-L38,1, +Python,heatmap from 3d coordinates,https://github.com/kevinsprong23/aperture/blob/d0420fef3b25d8afc0e5ddcfb6fe5f0ff42b9799/aperture/heatmaps.py#L123-L144,1, +Python,parse binary file to custom class,https://github.com/python-xlib/python-xlib/blob/8901e831737e79fe5645f48089d70e1d1046d2f2/Xlib/protocol/rq.py#L1135-L1210,2, +Python,how to check if a checkbox is checked,https://github.com/Shapeways/coyote_framework/blob/cb29899b984a21d56bf65d0b1d907073948fe16c/coyote_framework/webdriver/webdriverwrapper/WebElementWrapper.py#L655-L660,2, +Python,copy to clipboard,https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/variableexplorer/widgets/collectionseditor.py#L1242-L1252,3, +Python,httpclient post json,https://github.com/fvalverd/AutoApi-client-Python/blob/a6b04947f80bf988c1515d622c78c587b341b3f4/auto_api_client/__init__.py#L91-L94,2, +Python,confusion matrix,https://github.com/sentinel-hub/eo-learn/blob/b8c390b9f553c561612fe9eb64e720611633a035/ml_tools/eolearn/ml_tools/validator.py#L201-L208,3, +Python,map to json,https://github.com/sosreport/sos/blob/2ebc04da53dc871c8dd5243567afa4f8592dca29/sos/plugins/kernel.py#L41-L51,1, +Python,fuzzy match ranking,https://github.com/locationlabs/mockredis/blob/fd4e3117066ff0c24e86ebca007853a8092e3254/mockredis/client.py#L1193-L1196,0,"This function is used in the context of Redis, and sorted sets can be used to ranked matches. The problem is that, without any knowledge of Redis, the presented result would be seen as irrelevant." +Python,priority queue,https://github.com/ask/ghettoq/blob/22a0fcd865b618cbbbfd102efd88a7983507c24e/ghettoq/backends/beanstalk.py#L32-L34,1, +Python,sending binary data over a serial connection,https://github.com/FaradayRF/faradayio/blob/6cf3af88bb4a83e5d2036e5cbdfaf8f0f01500bb/faradayio/faraday.py#L32-L56,3, +Python,string similarity levenshtein,https://github.com/mcs07/ChemDataExtractor/blob/349a3bea965f2073141d62043b89319222e46af1/chemdataextractor/text/__init__.py#L232-L258,3, +Python,readonly array,https://github.com/nyaruka/smartmin/blob/488a676a4960555e4d216a7b95d6e01a4ad4efd8/smartmin/views.py#L914-L924,3, +Python,output to html file,https://github.com/pyecharts/pyecharts/blob/02050acb0e94bb9453b88a25028de7a0ce23f125/pyecharts/commons/utils.py#L39-L41,0, +Python,extract latitude and longitude from given input,https://github.com/Turbo87/utm/blob/efdd46ab0a341ce2aa45f8144d8b05a4fa0fd592/utm/conversion.py#L171-L246,2, +Python,readonly array,https://github.com/piglei/uwsgi-sloth/blob/2834ac5ed17d89ca5f19151c649ac610f6f37bd1/uwsgi_sloth/tailer.py#L45-L51,0, +Python,read text file line by line,https://github.com/tamasgal/km3pipe/blob/7a9b59ac899a28775b5bdc5d391d9a5340d08040/km3pipe/hardware.py#L106-L119,1, +Python,pretty print json,https://github.com/deeshugupta/tes/blob/217db49aa211ebca2d9258380765a0c31abfca91/es_commands/base.py#L38-L40,2, +Python,hash set for counting distinct elements,https://github.com/openstates/billy/blob/5fc795347f12a949e410a8cfad0c911ea6bced67/billy/models/base.py#L414-L416,1, +Python,sort string list,https://github.com/loverajoel/sqlalchemy-elasticquery/blob/4c99b81f59e7bb20eaeedb3adbf5126e62bbc25c/sqlalchemy_elasticquery/elastic_query.py#L159-L167,2, +Python,memoize to disk - persistent memoization,https://github.com/Erotemic/utool/blob/3b27e1f4e6e6fb23cd8744af7b7195b57d99e03a/utool/util_decor.py#L601-L651,1, +Python,format date,https://github.com/stestagg/dateformat/blob/4743f5dabf1eaf66524247328c76cfd3a05d0daf/benchmark/benchmark_formatting.py#L29-L32,2, +Python,encrypt aes ctr mode,https://github.com/StorjOld/heartbeat/blob/4d54f2011f1e9f688073d4347bc51bb7bd682718/heartbeat/PySwizzle/PySwizzle.py#L162-L178,2, +Python,connect to sql,https://github.com/posativ/isso/blob/78997f491044b7d694ac7170edc32030544095b7/isso/db/__init__.py#L56-L62,2, +Python,how to make the checkbox checked,https://github.com/jbm950/pygame_toolbox/blob/3fe32145fc149e4dd0963c30a2b6a4dddd4fac0e/pygame_toolbox/graphics/widgets.py#L141-L162,3, +Python,get name of enumerated value,https://github.com/google/apitools/blob/f3745a7ea535aa0e88b0650c16479b696d6fd446/apitools/base/protorpclite/messages.py#L1786-L1809,1, +Python,copy to clipboard,https://github.com/zeekay/soundcloud-cli/blob/8a83013683e1acf32f093239bbb6d3c02bc50b37/soundcloud_cli/utils.py#L7-L23,3, +Python,how to check if a checkbox is checked,https://github.com/InQuest/python-sandboxapi/blob/9bad73f453e25d7d23e7b4b1ae927f44a35a5bc3/sandboxapi/joe.py#L37-L51,0, +Python,how to read .csv file in an efficient way?,https://github.com/openvax/pyensembl/blob/4b995fb72e848206d6fbf11950cf30964cd9b3aa/pyensembl/memory_cache.py#L64-L72,2, +Python,parse json file,https://github.com/ewels/MultiQC/blob/2037d6322b2554146a74efbf869156ad20d4c4ec/multiqc/modules/bcl2fastq/bcl2fastq.py#L142-L268,2, +Python,unique elements,https://github.com/matthew-brett/delocate/blob/ed48de15fce31c3f52f1a9f32cae1b02fc55aa60/delocate/tools.py#L72-L89,3, +Python,extract latitude and longitude from given input,https://github.com/pvlib/pvlib-python/blob/2e844a595b820b43d1170269781fa66bd0ccc8a3/pvlib/iotools/ecmwf_macc.py#L199-L228,1, +Python,fuzzy match ranking,https://github.com/CalebBell/fluids/blob/57f556752e039f1d3e5a822f408c184783db2828/fluids/friction.py#L60-L71,2, +Python,heatmap from 3d coordinates,https://github.com/chemlab/chemlab/blob/c8730966316d101e24f39ac3b96b51282aba0abe/chemlab/graphics/camera.py#L181-L194,1, +Python,extract data from html content,https://github.com/RedHatInsights/insights-core/blob/b57cbf8ed7c089672426ede0441e0a4f789ef4a1/insights/parsers/crontab.py#L116-L156,2, +Python,read text file line by line,https://github.com/MIT-LCP/wfdb-python/blob/cc8c9e9e44f10af961b7a9d8ae03708b31ac8a8c/wfdb/io/_header.py#L675-L730,0, +Python,memoize to disk - persistent memoization,https://github.com/aboSamoor/polyglot/blob/d0d2aa8d06cec4e03bd96618ae960030f7069a17/polyglot/decorators.py#L23-L32,0, +Python,converting uint8 array to image,https://github.com/aleju/imgaug/blob/786be74aa855513840113ea523c5df495dc6a8af/imgaug/augmentables/heatmaps.py#L392-L406,1, +Python,how to get database table name,https://github.com/simonw/datasette/blob/11b352b4d52fd02a422776edebb14f12e4994d3b/datasette/app.py#L521-L527,1, +Python,html encode string,https://github.com/sprymix/metamagic.json/blob/c95d3cacd641d433af44f0774f51a085cb4888e6/metamagic/json/encoder.py#L156-L178,2, +Python,finding time elapsed using a timer,https://github.com/AFriemann/simple_tools/blob/27d0f838c23309ebfc8afb59511220c6f8bb42fe/simple_tools/contextmanagers/time.py#L16-L20,3, +Python,reading element from html - ,https://github.com/lsst-epo/vela/blob/8e17ebec509be5c3cc2063f4645dfe9e26b49c18/astropixie-widgets/astropixie_widgets/visual.py#L39-L53,1, +Python,reading element from html - ,https://github.com/toomore/goristock/blob/e61f57f11a626cfbc4afbf66337fd9d1c51e3e71/grs/mobileapi.py#L38-L72,1, +Python,convert a date string into yyyymmdd,https://github.com/why2pac/dp-tornado/blob/a5948f5693f6ee2d9bab31f611fedc074e1caa96/dp_tornado/helper/datetime/time.py#L38-L53,0, +Python,extract latitude and longitude from given input,https://github.com/Iotic-Labs/py-IoticAgent/blob/893e8582ad1dacfe32dfc0ee89452bbd6f57d28d/src/IoticAgent/Core/Validation.py#L239-L245,0, +Python,create cookie,https://github.com/IdentityPython/oidcendpoint/blob/6c1d729d51bfb6332816117fe476073df7a1d823/src/oidcendpoint/cookie.py#L299-L342,3, +Python,finding time elapsed using a timer,https://github.com/ianlini/bistiming/blob/46a78ec647723c3516fc4fc73f2619ab41f647f2/examples/stopwatch_examples.py#L107-L119,2, +Python,sorting multiple arrays based on another arrays sorted order,https://github.com/stephan-mclean/KickassTorrentsAPI/blob/4d867a090c06ce95b9ed996b48092cb5bfe28bbd/kat.py#L202-L212,0, +Python,how to randomly pick a number,https://github.com/HacKanCuBa/passphrase-py/blob/219d6374338ed9a1475b4f09b0d85212376f11e0/passphrase/secrets.py#L63-L84,3, +Python,extracting data from a text file,https://github.com/joshburnett/scanf/blob/52f8911581c1590a3dcc6f17594eeb7b39716d42/scanf.py#L158-L184,3, +Python,normal distribution,https://github.com/Microsoft/nni/blob/c7cc8db32da8d2ec77a382a55089f4e17247ce41/src/sdk/pynni/nni/curvefitting_assessor/model_factory.py#L204-L221,3, +Python,matrix multiply,https://github.com/apache/spark/blob/618d6bff71073c8c93501ab7392c3cc579730f0b/python/pyspark/mllib/linalg/distributed.py#L373-L389,3, +Python,filter array,https://github.com/jopohl/urh/blob/2eb33b125c8407964cd1092843cde5010eb88aae/src/urh/controller/widgets/SignalFrame.py#L31-L33,1, +Python,filter array,https://github.com/Yipit/pyeqs/blob/2e385c0a5d113af0e20be4d9393add2aabdd9565/pyeqs/query_builder.py#L41-L50,0, +Python,convert a date string into yyyymmdd,https://github.com/gambogi/CSHLDAP/blob/09cb754b1e72437834e0d8cb4c7ac1830cfa6829/CSHLDAP.py#L336-L348,2, +Python,binomial distribution,https://github.com/pysal/mapclassify/blob/5b22ec33f5802becf40557614d90cd38efa1676e/mapclassify/classifiers.py#L231-L278,0, +Python,convert decimal to hex,https://github.com/fabioz/PyDev.Debugger/blob/ed9c4307662a5593b8a7f1f3389ecd0e79b8c503/pydevd_attach_to_process/winappdbg/textio.py#L121-L140,3, +Python,get current process id,https://github.com/opereto/pyopereto/blob/16ca987738a7e1b82b52b0b099794a74ed557223/pyopereto/client.py#L1163-L1175,2, +Python,copying a file to a path,https://github.com/OLC-Bioinformatics/sipprverse/blob/d4f10cdf8e1a39dac0953db61c21c97efc6006de/cgecore/utility.py#L534-L574,3, +Python,how to read .csv file in an efficient way?,https://github.com/meejah/txtorcon/blob/14053b95adf0b4bd9dd9c317bece912a26578a93/txtorcon/socks.py#L119-L129,0, +Python,convert int to bool,https://github.com/bigchaindb/bigchaindb/blob/835fdfcf598918f76139e3b88ee33dd157acaaa7/bigchaindb/commands/utils.py#L53-L76,2, +Python,get name of enumerated value,https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilecore/iotile/core/utilities/schema_verify/enum_verify.py#L16-L32,0, +Python,filter array,https://github.com/PiotrDabkowski/Js2Py/blob/c0fa43f5679cf91ca8986c5747fcb07a433dc584/js2py/internals/prototypes/jsarray.py#L382-L398,2, +Python,get the description of a http status code,https://github.com/funilrys/PyFunceble/blob/cdf69cbde120199171f7158e1c33635753e6e2f5/PyFunceble/url.py#L75-L125,2, +Python,sorting multiple arrays based on another arrays sorted order,https://github.com/PiotrDabkowski/Js2Py/blob/c0fa43f5679cf91ca8986c5747fcb07a433dc584/js2py/internals/prototypes/jsarray.py#L157-L183,1, +Python,string to date,https://github.com/robgolding/tasklib/blob/0ad882377639865283021041f19add5aeb10126a/tasklib/serializing.py#L71-L79,0,This looks more like date to string (with utc localization). +Python,pretty print json,https://github.com/bulkan/robotframework-requests/blob/11baa3277f1cb728712e26d996200703c15254a8/src/RequestsLibrary/RequestsKeywords.py#L460-L477,3, +Python,converting uint8 array to image,https://github.com/BerkeleyAutomation/perception/blob/03d9b37dd6b66896cdfe173905c9413c8c3c5df6/perception/image.py#L252-L291,2, +Python,get current process id,https://github.com/Pajinek/vhm/blob/e323e99855fd5c40fd61fba87c2646a1165505ed/tools/vhmlib/manager.py#L103-L111,3, +Python,get executable path,https://github.com/nikcub/paths/blob/2200b85273d07d7a3c8b15ceb3b03cbb5c11439a/paths/__init__.py#L85-L107,3, +Python,get all parents of xml node,https://github.com/incf-nidash/nidmresults/blob/438f7cce6abc4a4379b629bd76f4d427891e033f/nidmresults/owl/owl_reader.py#L85-L93,0, +Python,parse query string in url,https://github.com/keon/algorithms/blob/4d6569464a62a75c1357acc97e2dd32ee2f9f4a3/algorithms/strings/strip_url_params.py#L85-L95,3, +Python,parse command line argument,https://github.com/bjmorgan/vasppy/blob/cc2d1449697b17ee1c43715a02cddcb1139a6834/vasppy/scripts/check_species.py#L14-L19,3, +Python,map to json,https://github.com/ontio/ontology-python-sdk/blob/ac88bdda941896c5d2ced08422a9c5179d3f9b19/ontology/smart_contract/native_contract/governance.py#L403-L414,1, +Python,normal distribution,https://github.com/ceph/ceph-deploy/blob/86943fcc454cd4c99a86e3493e9e93a59c661fef/ceph_deploy/hosts/__init__.py#L112-L132,0, +Python,underline text in label widget,https://github.com/katerina7479/pypdflite/blob/ac2501f30d6619eae9dea5644717575ca9263d0a/pypdflite/pdfobjects/pdftext.py#L165-L172,1, +Python,string to date,https://github.com/eliangcs/pystock-crawler/blob/8b803c8944f36af46daf04c6767a74132e37a101/pystock_crawler/spiders/yahoo.py#L12-L16,3, +Python,get name of enumerated value,https://github.com/mbedmicro/pyOCD/blob/41a174718a9739f3cbe785c2ba21cb7fd1310c6f/pyocd/debug/svd/parser.py#L82-L88,2,does the correct thing but for a very specific case. +Python,format date,https://github.com/stestagg/dateformat/blob/4743f5dabf1eaf66524247328c76cfd3a05d0daf/benchmark/benchmark_parsing.py#L22-L24,3, +Python,map to json,https://github.com/hackedd/gw2api/blob/5543a78e6e3ed0573b7e84c142c44004b4779eac/gw2api/map.py#L50-L105,0, +Python,encrypt aes ctr mode,https://github.com/ontio/ontology-python-sdk/blob/ac88bdda941896c5d2ced08422a9c5179d3f9b19/ontology/crypto/aes_handler.py#L59-L63,2, +Python,nelder mead optimize,https://github.com/neherlab/treetime/blob/f6cdb58d19243a18ffdaa2b2ec71872fa00e65c0/treetime/merger_models.py#L153-L168,0, +Python,buffered file reader read text,https://github.com/hyde/fswrap/blob/41e4ad6f7e9ba73eabe61bd97847cd284e3edbd2/fswrap.py#L282-L289,3, +Python,regex case insensitive,https://github.com/DBuildService/dockerfile-parse/blob/3d7b514d8b8eded1b33529cf0f6a0770a573aee0/dockerfile_parse/parser.py#L708-L722,2, +Python,extract latitude and longitude from given input,https://github.com/Unidata/MetPy/blob/16f68a94919b9a82dcf9cada2169cf039129e67b/metpy/calc/tools.py#L819-L870,0, +Python,copying a file to a path,https://github.com/tjguk/winshell/blob/1509d211ab3403dd1cff6113e4e13462d6dec35b/winshell.py#L266-L294,1, +Python,positions of substrings in string,https://github.com/samuelcolvin/buildpg/blob/33cccff45279834d02ec7e97d8417da8fd2a875d/buildpg/funcs.py#L84-L85,0, +Python,output to html file,https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/doc/examples/dx-apps/report_example/src/report_example.py#L127-L137,3, +Python,find int in string,https://github.com/mlperf/training/blob/1c6ae725a81d15437a2b2df05cac0673fde5c3a4/single_stage_detector/ssd/utils.py#L655-L689,0, +Python,k means clustering,https://github.com/szairis/sakmapper/blob/ac462fd2674e6aa1aa3b209222d8ac4e9268a790/sakmapper/network.py#L111-L170,2, +Python,binomial distribution,https://github.com/davidfokkema/artist/blob/26ae7987522622710f2910980770c50012fda47d/demo/demo_histogram_fit.py#L8-L45,1,wrong distribution! +Python,how to read the contents of a .gz compressed file?,https://github.com/sunlightlabs/django-mediasync/blob/aa8ce4cfff757bbdb488463c64c0863cca6a1932/mediasync/__init__.py#L33-L38,1, +Python,set working directory,https://github.com/materialsproject/pymatgen/blob/4ca558cf72f8d5f8a1f21dfdfc0181a971c186da/pymatgen/io/abinit/flows.py#L1718-L1752,0, +Python,replace in file,https://github.com/chaoss/grimoirelab-manuscripts/blob/94a3ad4f11bfbcd6c5190e01cb5d3e47a5187cd9/manuscripts/report.py#L812-L824,3, +Python,parse json file,https://github.com/flatironinstitute/kbucket/blob/867915ebb0ea153a399c3e392698f89bf43c7903/kbucket/kbucketclient.py#L639-L645,3, +Python,hash set for counting distinct elements,https://github.com/firstprayer/monsql/blob/6285c15b574c8664046eae2edfeb548c7b173efd/monsql/queryset.py#L110-L117,1, +Python,matrix multiply,https://github.com/churchill-lab/emase/blob/ae3c6955bb175c1dec88dbf9fac1a7dcc16f4449/emase/Sparse3DMatrix.py#L130-L157,3, +Python,copying a file to a path,https://github.com/Neurita/boyle/blob/2dae7199849395a209c887d5f30506e1de8a9ad9/scripts/filetree.py#L20-L72,2, +Python,set file attrib hidden,https://github.com/SuminAndrew/lxml-asserts/blob/a5e8d25177357ba52e5eb0abacdc2f4bab59d584/lxml_asserts/__init__.py#L26-L59,1, +Python,json to xml conversion,https://github.com/telefonicaid/fiware-sdc/blob/d2d5f87fc574caf6bcc49594bbcb31f620ba8c51/python-sdcclient/utils/rest_client_utils.py#L178-L186,1, +Python,all permutations of a list,https://github.com/awslabs/sockeye/blob/5d64a1ee1ef3cbba17c6d1d94bc061020c43f6ab/sockeye/data_io.py#L1424-L1451,0,"Here, the permutation is expected as an argument, does not solve theproblem" +Python,normal distribution,https://github.com/ajyoon/blur/blob/25fcf083af112bb003956a7a7e1c6ff7d8fef279/blur/rand.py#L252-L300,2, +Python,string similarity levenshtein,https://github.com/EventTeam/beliefs/blob/c07d22b61bebeede74a72800030dde770bf64208/src/beliefs/belief_utils.py#L143-L145,1, +Python,string similarity levenshtein,https://github.com/J535D165/recordlinkage/blob/87a5f4af904e0834047cd07ff1c70146b1e6d693/recordlinkage/algorithms/string.py#L52-L67,1, +Python,print model summary,https://github.com/LIVVkit/LIVVkit/blob/680120cd437e408673e62e535fc0a246c7fc17db/livvkit/components/numerics.py#L82-L87,1, +Python,priority queue,https://github.com/LogicalDash/LiSE/blob/fe6fd4f0a7c1780e065f4c9babb9bc443af6bb84/ELiDE/ELiDE/board/pawn.py#L105-L108,0, +Python,how to read the contents of a .gz compressed file?,https://github.com/EntilZha/PyFunctional/blob/ac04e4a8552b0c464a7f492f7c9862424867b63e/functional/io.py#L115-L122,3, +Python,memoize to disk - persistent memoization,https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/psutil/_pslinux.py#L122-L146,0, +Python,encode url,https://github.com/marvin-ai/marvin-python-toolbox/blob/7c95cb2f9698b989150ab94c1285f3a9eaaba423/marvin_python_toolbox/common/utils.py#L286-L295,2,Wrong thing +Python,group by count,https://github.com/shazow/unstdlib.py/blob/e0632fe165cfbfdb5a7e4bc7b412c9d6f2ebad83/unstdlib/standard/list_.py#L16-L36,3,"the name/doc is accurate, the code is wrong.." +Python,normal distribution,https://github.com/Microsoft/nni/blob/c7cc8db32da8d2ec77a382a55089f4e17247ce41/src/sdk/pynni/nni/curvefitting_assessor/model_factory.py#L204-L221,3, +Python,export to excel,https://github.com/rwl/pylon/blob/916514255db1ae1661406f0283df756baf960d14/contrib/pylontk.py#L377-L381,2, +Python,extract latitude and longitude from given input,https://github.com/geometalab/pyGeoTile/blob/b1f44271698f5fc4d18c2add935797ed43254aa6/pygeotile/point.py#L12-L16,1,This method is the opposite of the query. This is an interesting test case because the method listed here is 'related' but not the correct answer. +Python,get current observable value,https://github.com/jor-/util/blob/0eb0be84430f88885f4d48335596ca8881f85587/util/observable/decorator.py#L114-L143,3, +Python,create cookie,https://github.com/decryptus/httpdis/blob/5d198cdc5558f416634602689b3df2c8aeb34984/httpdis/httpdis.py#L760-L769,3, +Python,how to check if a checkbox is checked,https://github.com/aloetesting/aloe_webdriver/blob/65d847da4bdc63f9c015cb19d4efdee87df8ffad/aloe_webdriver/__init__.py#L564-L568,3, +Python,parse query string in url,https://github.com/ModisWorks/modis/blob/1f1225c9841835ec1d1831fc196306527567db8b/modis/discord_modis/modules/music/api_music.py#L94-L234,2, +Python,convert int to bool,https://github.com/Rapptz/discord.py/blob/05d4f7f9620ef33635d6ac965b26528e09cdaf5b/discord/ext/commands/core.py#L94-L101,3, +Python,how to reverse a string,https://github.com/frnsys/broca/blob/7236dcf54edc0a4a54a55eb93be30800910667e7/broca/similarity/doc/wikipedia.py#L28-L41,0, +Python,parse query string in url,https://github.com/thomasjiangcy/django-rest-mock/blob/09e91de20d1a5efd5c47c6e3d7fe979443012e2c/rest_mock_server/core/parser.py#L43-L52,2, +Python,confusion matrix,https://github.com/h2oai/h2o-3/blob/dd62aaa1e7f680a8b16ee14bc66b0fb5195c2ad8/h2o-py/h2o/model/multinomial.py#L18-L26,1, +Python,json to xml conversion,https://github.com/erinxocon/requests-xml/blob/923571ceae4ddd4f2f57a2fc8780d89b50f3e7a1/requests_xml.py#L177-L203,1,the other way around +Python,deducting the median from each column,https://github.com/tamasgal/km3pipe/blob/7a9b59ac899a28775b5bdc5d391d9a5340d08040/km3pipe/stats.py#L114-L117,2, +Python,convert json to csv,https://github.com/pybel/pybel/blob/c8a7a1bdae4c475fa2a8c77f3a9a5f6d79556ca0/src/pybel/cli.py#L222-L246,0, +Python,save list to file,https://github.com/ioam/lancet/blob/1fbbf88fa0e8974ff9ed462e3cb11722ddebdd6e/lancet/filetypes.py#L264-L267,2, +Python,convert decimal to hex,https://github.com/clach04/python-tuya/blob/7b89d38c56f6e25700e2a333000d25bc8d923622/pytuya/__init__.py#L408-L420,0, +Python,how to make the checkbox checked,https://github.com/jbm950/pygame_toolbox/blob/3fe32145fc149e4dd0963c30a2b6a4dddd4fac0e/pygame_toolbox/graphics/widgets.py#L141-L162,3, +Python,string similarity levenshtein,https://github.com/Shoobx/xmldiff/blob/ec7835bce9ba69ff4ce03ab6c11397183b6f8411/xmldiff/_diff_match_patch_py3.py#L1110-L1134,2, +Python,matrix multiply,https://github.com/churchill-lab/emase/blob/ae3c6955bb175c1dec88dbf9fac1a7dcc16f4449/emase/Sparse3DMatrix.py#L130-L157,3, +Python,httpclient post json,https://github.com/LasLabs/python-helpscout/blob/84bf669417d72ca19641a02c9a660e1ae4271de4/helpscout/request_paginator/__init__.py#L114-L123,0, +Python,convert int to bool,https://github.com/boriel/zxbasic/blob/23b28db10e41117805bdb3c0f78543590853b132/arch/zx48k/backend/__init__.py#L2193-L2207,1, +Python,normal distribution,https://github.com/ceph/ceph-deploy/blob/86943fcc454cd4c99a86e3493e9e93a59c661fef/ceph_deploy/hosts/__init__.py#L112-L132,0, +Python,how to reverse a string,https://github.com/tornadoweb/tornado/blob/b8b481770bcdb333a69afde5cce7eaa449128326/tornado/web.py#L2209-L2222,1, +Python,k means clustering,https://github.com/vmirly/pyclust/blob/bdb12be4649e70c6c90da2605bc5f4b314e2d07e/pyclust/_kmeans.py#L78-L101,2, +Python,concatenate several file remove header lines,https://github.com/LuminosoInsight/langcodes/blob/0cedf9ca257ebf7250de5d3a63ec33a7d198db58/langcodes/registry_parser.py#L6-L25,1, +Python,binomial distribution,https://github.com/chemlab/chemlab/blob/c8730966316d101e24f39ac3b96b51282aba0abe/chemlab/qc/one.py#L133-L144,2, +Python,linear regression,https://github.com/synw/dataswim/blob/4a4a53f80daa7cd8e8409d76a19ce07296269da2/dataswim/data/stats.py#L8-L21,1, +Python,get current process id,https://github.com/helixyte/everest/blob/70c9b93c3061db5cb62428349d18b8fb8566411b/everest/representers/xml.py#L440-L450,0, +Python,concatenate several file remove header lines,https://github.com/konstantinstadler/pymrio/blob/d764aa0dd2150200e867a9713a98ddae203e12d4/pymrio/tools/ioutil.py#L459-L540,0, +Python,set file attrib hidden,https://github.com/bmuller/txairbrake/blob/38e65fe2330c6ce7fb788bad0cff0a85cceb1943/txairbrake/observers.py#L112-L125,0, +Python,how to randomly pick a number,https://github.com/tensorlayer/tensorlayer/blob/aa9e52e36c7058a7e6fd81d36563ca6850b21956/tensorlayer/utils.py#L515-L539,2, +Python,unique elements,https://github.com/radujica/baloo/blob/f6e05e35b73a75e8a300754c6bdc575e5f2d53b9/baloo/weld/weld_ops.py#L529-L569,2, +Python,underline text in label widget,https://github.com/django-leonardo/django-leonardo/blob/4b933e1792221a13b4028753d5f1d3499b0816d4/leonardo/module/web/widgets/forms.py#L55-L144,1, +Python,filter array,https://github.com/jim-easterbrook/pyctools/blob/2a958665326892f45f249bebe62c2c23f306732b/src/pyctools/components/interp/resize.py#L77-L95,0, +Python,normal distribution,https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/layers/common_layers.py#L3985-L4004,0, +Python,get current ip address,https://github.com/softlayer/softlayer-python/blob/9f181be08cc3668353b05a6de0cb324f52cff6fa/SoftLayer/CLI/vpn/ipsec/detail.py#L63-L84,0, +Python,all permutations of a list,https://github.com/ThreatConnect-Inc/tcex/blob/dd4d7a1ef723af1561687120191886b9a2fd4b47/tcex/tcex_bin_profile.py#L259-L268,0, +Python,set working directory,https://github.com/Alignak-monitoring/alignak/blob/f3c145207e83159b799d3714e4241399c7740a64/alignak/daemon.py#L1243-L1259,1, +Python,convert string to number,https://github.com/LettError/MutatorMath/blob/10318fc4e7c9cee9df6130826829baea3054a42b/Lib/mutatorMath/objects/location.py#L14-L29,0, +Python,html entities replace,https://github.com/fboender/ansible-cmdb/blob/ebd960ac10684e8c9ec2b12751bba2c4c9504ab7/lib/mako/filters.py#L159-L174,2, +Python,how to get html of website,https://github.com/dariosky/wfcli/blob/87a9ed30dbd456f801135a55099f0541b0614ccb/wfcli/wfapi.py#L123-L134,0, +Python,write csv,https://github.com/majerteam/sylk_parser/blob/0f62f9d3ca1c273017d7ea728f9db809f2241389/sylk_parser/sylk_parser.py#L27-L40,3, +Python,string to date,https://github.com/roclark/sportsreference/blob/ea0bae432be76450e137671d2998eb38f962dffd/sportsreference/mlb/schedule.py#L172-L179,2, +Python,convert json to csv,https://github.com/linkedin/naarad/blob/261e2c0760fd6a6b0ee59064180bd8e3674311fe/lib/luminol/src/luminol/utils.py#L40-L58,0, +Python,initializing array,https://github.com/gbiggs/rtsprofile/blob/fded6eddcb0b25fe9808b1b12336a4413ea00905/rtsprofile/rts_profile.py#L500-L503,0, +Python,convert decimal to hex,https://github.com/restran/mountains/blob/a97fee568b112f4e10d878f815d0db3dd0a98d74/mountains/encoding/converter.py#L84-L93,1,the other way around +Python,parse binary file to custom class,https://github.com/mapillary/mapillary_tools/blob/816785e90c589cae6e8e34a5530ce8417d29591c/mapillary_tools/gpmf.py#L72-L133,1, +Python,save list to file,https://github.com/pndurette/gTTS/blob/b01ac4eb22d40c6241202e202d0418ccf4f98460/gtts/tts.py#L238-L250,1, +Python,k means clustering,https://github.com/insilicolife/micti/blob/f12f46724295b57c4859e6acf7eab580fc355eb1/build/lib/MICTI/GM.py#L71-L87,3, +Python,convert json to csv,https://github.com/pybel/pybel/blob/c8a7a1bdae4c475fa2a8c77f3a9a5f6d79556ca0/src/pybel/cli.py#L222-L246,0,Doesn't include actual function for serialising and wrong conversion. +Python,convert decimal to hex,https://github.com/tanghaibao/jcvi/blob/d2e31a77b6ade7f41f3b321febc2b4744d1cdeca/jcvi/utils/webcolors.py#L356-L396,0, +Python,copy to clipboard,https://github.com/devassistant/devassistant/blob/2dbfeaa666a64127263664d18969c55d19ecc83e/devassistant/gui/gui_helper.py#L466-L473,1, +Python,positions of substrings in string,https://github.com/hollenstein/maspy/blob/f15fcfd24df306d8420540460d902aa3073ec133/maspy/auxiliary.py#L471-L491,2, +Python,read properties file,https://github.com/markreidvfx/pyaaf2/blob/37de8c10d3c3495cc00c705eb6c5048bc4a7e51f/aaf2/core.py#L73-L113,2, +Python,unique elements,https://github.com/matthew-brett/delocate/blob/ed48de15fce31c3f52f1a9f32cae1b02fc55aa60/delocate/tools.py#L72-L89,3, +Python,initializing array,https://github.com/SiLab-Bonn/pixel_clusterizer/blob/d2c8c3072fb03ebb7c6a3e8c57350fbbe38efd4d/pixel_clusterizer/clusterizer.py#L120-L126,0, +Python,parse command line argument,https://github.com/clarkperkins/click-shell/blob/8d6e1a492176bc79e029d714f19d3156409656ea/click_shell/core.py#L82-L102,0, +Python,deserialize json,https://github.com/F483/apigen/blob/f05ce1509030764721cc3393410fa12b609e88f2/apigen/apigen.py#L234-L244,2, +Python,get current process id,https://github.com/bcbio/bcbio-nextgen/blob/6a9348c0054ccd5baffd22f1bb7d0422f6978b20/bcbio/cwl/workflow.py#L421-L437,1, +Python,fuzzy match ranking,https://github.com/azraq27/gini/blob/3c2b5265d096d606b303bfe25ac9adb74b8cee14/gini/matching.py#L63-L68,0, +Python,format date,https://github.com/geex-arts/django-jet/blob/64d5379f8a2278408694ce7913bf25f26035b855/jet/dashboard/dashboard_modules/google_analytics.py#L267-L279,3, +Python,encrypt aes ctr mode,https://github.com/keybase/python-triplesec/blob/0a73e18cfe542d0cd5ee57bd823a67412b4b717e/triplesec/crypto.py#L86-L92,2, +Python,all permutations of a list,https://github.com/mabuchilab/QNET/blob/cc20d26dad78691d34c67173e5cd67dcac94208a/src/qnet/algebra/core/circuit_algebra.py#L822-L834,1, +Python,unzipping large files,https://github.com/nvbn/thefuck/blob/40ab4eb62db57627bff10cf029d29c94704086a2/thefuck/rules/dirty_unzip.py#L15-L25,2, +Python,get inner html,https://github.com/tensorflow/lucid/blob/d1a1e2e4fd4be61b89b8cba20dc425a5ae34576e/lucid/scratch/web/svelte.py#L43-L68,0, +Python,convert decimal to hex,https://github.com/mathiasertl/django-ca/blob/976d7ea05276320f20daed2a6d59c8f5660fe976/ca/django_ca/utils.py#L211-L222,2, +Python,string similarity levenshtein,https://github.com/ChrisCummins/labm8/blob/dd10d67a757aefb180cb508f86696f99440c94f5/text.py#L137-L167,3, +Python,group by count,https://github.com/adamjaso/pyauto/blob/b11da69fb21a49241f5ad75dac48d9d369c6279b/ouidb/pyauto/ouidb/config.py#L43-L50,3, +Python,finding time elapsed using a timer,https://github.com/alexmojaki/littleutils/blob/1132d2d2782b05741a907d1281cd8c001f1d1d9d/littleutils/__init__.py#L716-L739,3, +Python,all permutations of a list,https://github.com/erikrose/more-itertools/blob/6a91b4e25c8e12fcf9fc2b53cf8ee0fba293e6f9/more_itertools/more.py#L528-L566,3, +Python,get current observable value,https://github.com/timofurrer/observable/blob/a6a764efaf9408a334bdb1ddf4327d9dbc4b8eaa/observable/property.py#L70-L95,1, +Python,filter array,https://github.com/ccxt/ccxt/blob/23062efd7a5892c79b370c9d951c03cf8c0ddf23/python/ccxt/base/exchange.py#L692-L693,1,"Unclear, too specific" +Python,write csv,https://github.com/rvswift/EB/blob/341880b79faf8147dc9fa6e90438531cd09fabcc/EB/builder/splitter/splitter.py#L90-L113,2, +Python,randomly extract x items from a list,https://github.com/Erotemic/utool/blob/3b27e1f4e6e6fb23cd8744af7b7195b57d99e03a/utool/util_list.py#L2155-L2189,3, +Python,convert int to string,https://github.com/DeepHorizons/iarm/blob/b913c9fd577b793a6bbced78b78a5d8d7cd88de4/iarm/arm_instructions/_meta.py#L126-L132,3, +Python,converting uint8 array to image,https://github.com/radjkarl/imgProcessor/blob/7c5a28718f81c01a430152c60a686ac50afbfd7c/imgProcessor/transformations.py#L11-L75,2, +Python,how to read the contents of a .gz compressed file?,https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/gzip_util.py#L43-L51,1,"This looks like it compresses a file using gzip, rather than un-compressing." +Python,unique elements,https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/__init__.py#L180-L205,1, +Python,parse binary file to custom class,https://github.com/python-xlib/python-xlib/blob/8901e831737e79fe5645f48089d70e1d1046d2f2/Xlib/ext/xinput.py#L382-L387,3, +Python,sending binary data over a serial connection,https://github.com/Seeed-Studio/wio-cli/blob/ce83f4c2d30be7f72d1a128acd123dfc5effa563/wio/commands/cmd_setup.py#L217-L384,3, +Python,how to reverse a string,https://github.com/frnsys/broca/blob/7236dcf54edc0a4a54a55eb93be30800910667e7/broca/similarity/doc/wikipedia.py#L28-L41,0, +Python,how to determine a string is a valid word,https://github.com/thunlp/THULAC-Python/blob/3f1f126cd92c3d2aebdf4ab4850de3c9428a3b66/thulac/manage/TimeWord.py#L110-L117,2,very very odd code... +Python,fuzzy match ranking,https://github.com/coleifer/peewee/blob/ea9403b01acb039adb3a2472186d795c796b77a0/playhouse/sqlite_ext.py#L1136-L1169,1, +Python,buffered file reader read text,https://github.com/ray-project/ray/blob/4eade036a0505e244c976f36aaa2d64386b5129b/python/ray/experimental/streaming/batched_queue.py#L222-L227,2, +Python,convert a utc time to epoch,https://github.com/pymacaron/pymacaron/blob/af244f203f8216108b39d374d46bf8e1813f13d5/pymacaron/utils.py#L48-L60,1, +Python,find int in string,https://github.com/nickolas360/librecaptcha/blob/bd247082fd98118be220f326e5cd162e6d926655/librecaptcha/recaptcha.py#L354-L380,1, +Python,convert html to pdf,https://github.com/jbarlow83/OCRmyPDF/blob/79c84eefa353632a3d7ccddbd398c6678c1c1777/src/ocrmypdf/hocrtransform.py#L156-L231,2, +Python,initializing array,https://github.com/JamesPHoughton/pysd/blob/bf1b1d03954e9ba5acac9ba4f1ada7cd93352eda/pysd/py_backend/functions.py#L150-L154,1,"""Initializing array"" is itself a vague query, so I don't know whether this code is exactly what I'd want or not." +Python,parse command line argument,https://github.com/intuition-io/intuition/blob/cd517e6b3b315a743eb4d0d0dc294e264ab913ce/intuition/core/configuration.py#L28-L56,3, +Python,how to reverse a string,https://github.com/tehmaze/ipcalc/blob/d436b95d2783347c3e0084d76ec3c52d1f5d2f0b/ipcalc.py#L544-L558,1, +Python,how to determine a string is a valid word,https://github.com/thunlp/THULAC-Python/blob/3f1f126cd92c3d2aebdf4ab4850de3c9428a3b66/thulac/manage/TimeWord.py#L110-L117,1, +Python,scatter plot,https://github.com/newville/wxmplot/blob/8e0dc037453e5cdf18c968dc5a3d29efd761edee/wxmplot/plotframe.py#L45-L47,3, +Python,connect to sql,https://github.com/aouyar/PyMunin/blob/4f58a64b6b37c85a84cc7e1e07aafaa0321b249d/pysysinfo/mysql.py#L64-L69,3, +Python,how to randomly pick a number,https://github.com/linnarsson-lab/loompy/blob/62c8373a92b058753baa3a95331fb541f560f599/loompy/color.py#L288-L289,3, +Python,buffered file reader read text,https://github.com/NoneGG/aredis/blob/204caad740ac13e5760d46444a2ba7632982a046/aredis/connection.py#L168-L172,0, +Python,string similarity levenshtein,https://github.com/tyiannak/pyAudioAnalysis/blob/e3da991e7247492deba50648a4c7c0f41e684af4/pyAudioAnalysis/audioVisualization.py#L32-L52,3, +Python,parse command line argument,https://github.com/bjmorgan/vasppy/blob/cc2d1449697b17ee1c43715a02cddcb1139a6834/vasppy/scripts/proc_poscar.py#L7-L21,2, +Python,connect to sql,https://github.com/census-instrumentation/opencensus-python/blob/992b223f7e34c5dcb65922b7d5c827e7a1351e7d/contrib/opencensus-ext-django/examples/app/views.py#L110-L130,1, +Python,sort string list,https://github.com/OnroerendErfgoed/oe_utils/blob/7b2014bda8ac6bb71b7138eaa06ac17ef3ff4a6d/oe_utils/search/__init__.py#L22-L39,0, +Python,k means clustering,https://github.com/VIVelev/PyDojoML/blob/773fdce6866aa6decd306a5a85f94129fed816eb/dojo/cluster/hierarchical.py#L43-L62,1, +Python,deserialize json,https://github.com/F483/apigen/blob/f05ce1509030764721cc3393410fa12b609e88f2/apigen/apigen.py#L234-L244,1, +Python,extract data from html content,https://github.com/jurismarches/chopper/blob/53c5489a53e3a5d205a5cb207df751c09633e7ce/chopper/extractor.py#L58-L110,0, +Python,how to determine a string is a valid word,https://github.com/O365/python-o365/blob/02a71cf3775cc6a3c042e003365d6a07c8c75a73/O365/utils/utils.py#L879-L907,0, +Python,replace in file,https://github.com/riptano/ccm/blob/275699f79d102b5039b79cc17fa6305dccf18412/ccmlib/common.py#L208-L219,3, +Python,set file attrib hidden,https://github.com/tjcsl/ion/blob/5d722b0725d572039bb0929fd5715a4070c82c72/intranet/utils/html.py#L20-L21,0, +Python,encode url,https://github.com/fred49/linshare-api/blob/be646c25aa8ba3718abb6869c620b157d53d6e41/linshareapi/admin/jwt.py#L52-L64,3, +Python,get all parents of xml node,https://github.com/inveniosoftware-contrib/json-merger/blob/adc6d372da018427e1db7b92424d3471e01a4118/json_merger/contrib/inspirehep/match.py#L199-L207,2, +Python,deserialize json,https://github.com/sassoo/goldman/blob/b72540c9ad06b5c68aadb1b4fa8cb0b716260bf2/goldman/deserializers/json_7159.py#L22-L47,2, +Python,connect to sql,https://github.com/coleifer/peewee/blob/ea9403b01acb039adb3a2472186d795c796b77a0/peewee.py#L3708-L3712,3, +Python,get current observable value,https://github.com/timofurrer/observable/blob/a6a764efaf9408a334bdb1ddf4327d9dbc4b8eaa/observable/property.py#L70-L95,0, +Python,socket recv timeout,https://github.com/AirtestProject/Poco/blob/2c559a586adf3fd11ee81cabc446d4d3f6f2d119/poco/utils/simplerpc/transport/tcp/main.py#L34-L40,2, +Python,hash set for counting distinct elements,https://github.com/emc-openstack/storops/blob/24b4b13bf065c0ef0538dd0b5ebb8f25d24176bd/storops/vnx/resource/disk.py#L141-L166,0, +Python,positions of substrings in string,https://github.com/hydpy-dev/hydpy/blob/1bc6a82cf30786521d86b36e27900c6717d3348d/hydpy/core/selectiontools.py#L659-L721,1, +Python,get the description of a http status code,https://github.com/vecnet/vecnet.simulation/blob/3a4b3df7b12418c6fa8a7d9cd49656a1c031fc0e/vecnet/simulation/sim_status.py#L47-L54,3, +Python,string similarity levenshtein,https://github.com/SignalN/language/blob/5c50c78f65bcc2c999b44d530e7412185248352d/language/ngrams.py#L150-L151,1, +Python,get name of enumerated value,https://github.com/ChristianTremblay/BAC0/blob/8d95b065ea068524a08f5b0c34322ebeeba95d06/BAC0/core/devices/Points.py#L734-L744,0, +Python,sort string list,https://github.com/aptivate/django-sortable-listview/blob/9d5fa5847f0c3e80893780c6540e5098635ace9f/sortable_listview/views.py#L127-L133,0, +Python,reading element from html - ,https://github.com/danidee10/Staticfy/blob/ebc555b00377394b0f714e4a173d37833fec90cb/staticfy/staticfy.py#L71-L89,2, +Python,matrix multiply,https://github.com/ladybug-tools/ladybug/blob/c08b7308077a48d5612f644943f92d5b5dade583/ladybug/euclid.py#L883-L955,2, +Python,set working directory,https://github.com/materialsproject/pymatgen/blob/4ca558cf72f8d5f8a1f21dfdfc0181a971c186da/pymatgen/io/abinit/flows.py#L254-L266,1, +Python,string to date,https://github.com/log2timeline/plaso/blob/9c564698d2da3ffbe23607a3c54c0582ea18a6cc/plaso/parsers/trendmicroav.py#L144-L194,2, +Python,extract latitude and longitude from given input,https://github.com/Turbo87/utm/blob/efdd46ab0a341ce2aa45f8144d8b05a4fa0fd592/utm/conversion.py#L171-L246,2, +Python,how to read the contents of a .gz compressed file?,https://github.com/onecodex/onecodex/blob/326a0a1af140e3a57ccf31c3c9c5e17a5775c13d/onecodex/lib/upload.py#L225-L246,2, +Python,sorting multiple arrays based on another arrays sorted order,https://github.com/stephan-mclean/KickassTorrentsAPI/blob/4d867a090c06ce95b9ed996b48092cb5bfe28bbd/kat.py#L202-L212,0, +Python,k means clustering,https://github.com/DEIB-GECO/PyGMQL/blob/e58b2f9402a86056dcda484a32e3de0bb06ed991/gmql/ml/algorithms/clustering.py#L307-L350,1, +Python,pretty print json,https://github.com/onecodex/onecodex/blob/326a0a1af140e3a57ccf31c3c9c5e17a5775c13d/onecodex/utils.py#L112-L121,3, +Python,export to excel,https://github.com/MacHu-GWU/pymongo_mate-project/blob/be53170c2db54cb705b9e548d32ef26c773ff7f3/pymongo_mate/pkg/pandas_mate/sql_io.py#L55-L97,1,Moves data from excel to a SQL database instead of writing data to Excel. +Python,matrix multiply,https://github.com/ladybug-tools/ladybug/blob/c08b7308077a48d5612f644943f92d5b5dade583/ladybug/euclid.py#L883-L955,2, +Python,nelder mead optimize,https://github.com/ulf1/oxyba/blob/b3043116050de275124365cb11e7df91fb40169d/oxyba/linreg_mle.py#L2-L59,2, +Python,extracting data from a text file,https://github.com/openmednlp/bedrock/blob/15796bd7837ddfe7ad5235fd188e5d7af8c0be49/bedrock/collection.py#L74-L79,2, +Python,replace in file,https://github.com/Deathnerd/pyterp/blob/baf2957263685f03873f368226f5752da4e51f08/pyterp/__init__.py#L53-L65,1, +Python,extracting data from a text file,https://github.com/log2timeline/plaso/blob/9c564698d2da3ffbe23607a3c54c0582ea18a6cc/plaso/engine/worker.py#L338-L374,0, +Python,export to excel,https://github.com/APSL/transmanager/blob/79157085840008e146b264521681913090197ed1/transmanager/export.py#L58-L67,2,I don't know Execel's python API but this feels like its either close or totally correct. +Python,deserialize json,https://github.com/ubc/github2gitlab/blob/795898f6d438621fa0c996a7156d70c382ff0493/github2gitlab/main.py#L434-L440,3, +Python,postgresql connection,https://github.com/gabfl/dbschema/blob/37722e6654e9f0374fac5518ebdca22f4c39f92f/src/schema_change.py#L81-L91,3, +Python,copy to clipboard,https://github.com/nerdvegas/rez/blob/1d3b846d53b5b5404edfe8ddb9083f9ceec8c5e7/src/rezgui/windows/ContextSubWindow.py#L103-L108,2, +Python,how to extract zip file recursively,https://github.com/demosdemon/format-pipfile/blob/f95162c49d8fc13153080ddb11ac5a5dcd4d2e7c/ci/appveyor-download.py#L95-L102,2, +Python,fuzzy match ranking,https://github.com/mbodenhamer/syn/blob/aeaa3ad8a49bac8f50cf89b6f1fe97ad43d1d258/syn/base_utils/logic.py#L59-L61,0, +Python,scatter plot,https://github.com/bloomberg/bqplot/blob/8eb8b163abe9ee6306f6918067e2f36c1caef2ef/bqplot/pyplot.py#L816-L837,1, +Python,convert string to number,https://github.com/balemessenger/bale-bot-python/blob/92bfd60016b075179f16c212fc3fc20a4e5f16f4/balebot/utils/util_functions.py#L70-L75,0, +Python,matrix multiply,https://github.com/fogleman/pg/blob/124ea3803c788b2c98c4f3a428e5d26842a67b58/pg/core.py#L93-L97,1, +Python,get the description of a http status code,https://github.com/TestInABox/stackInABox/blob/63ee457401e9a88d987f85f513eb512dcb12d984/stackinabox/util/requests_mock/core.py#L63-L75,2, +Python,get current observable value,https://github.com/senaite/senaite.core/blob/7602ce2ea2f9e81eb34e20ce17b98a3e70713f85/bika/lims/adapters/acquirefielddefaults.py#L44-L57,0, +Python,export to excel,https://github.com/vicalloy/lbutils/blob/66ae7e73bc939f073cdc1b91602a95e67caf4ba6/lbutils/xlsxutils.py#L20-L32,1, +Python,httpclient post json,https://github.com/rehive/rehive-python/blob/a7452a9cfecf76c5c8f0d443f122ed22167fb164/rehive/api/client.py#L50-L51,3, +Python,convert int to string,https://github.com/bcbio/bcbio-nextgen/blob/6a9348c0054ccd5baffd22f1bb7d0422f6978b20/bcbio/pipeline/disambiguate/run.py#L35-L39,0, +Python,read properties file,https://github.com/nion-software/nionswift/blob/d43693eaf057b8683b9638e575000f055fede452/nion/swift/model/NDataHandler.py#L469-L481,1, +Python,get all parents of xml node,https://github.com/inveniosoftware-contrib/json-merger/blob/adc6d372da018427e1db7b92424d3471e01a4118/json_merger/contrib/inspirehep/match.py#L199-L207,0, +Python,write csv,https://github.com/gem/oq-engine/blob/8294553a0b8aba33fd96437a35065d03547d0040/openquake/hmtk/seismicity/smoothing/smoothed_seismicity.py#L491-L518,3, +Python,unique elements,https://github.com/wdbm/shijian/blob/ad6aea877e1eb99fe148127ea185f39f1413ed4f/shijian.py#L990-L995,2,aweful code... +Python,find int in string,https://github.com/fdb/aufmachen/blob/f2986a0cf087ac53969f82b84d872e3f1c6986f4/aufmachen/websites/immoweb.py#L115-L130,2, +Python,how to get database table name,https://github.com/apache/airflow/blob/b69c686ad8a0c89b9136bb4b31767257eb7b2597/airflow/hooks/hive_hooks.py#L578-L591,1, +Python,string similarity levenshtein,https://github.com/apache/spark/blob/618d6bff71073c8c93501ab7392c3cc579730f0b/python/pyspark/sql/functions.py#L1634-L1643,3, +Python,unique elements,https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/__init__.py#L207-L223,1, +Python,underline text in label widget,https://github.com/ska-sa/purr/blob/4c848768d0485d0f88b30850d0d5372221b21b66/Purr/MainWindow.py#L123-L128,1, +Python,map to json,https://github.com/aliyun/aliyun-log-python-sdk/blob/ac383db0a16abf1e5ef7df36074374184b43516e/aliyun/log/index_config.py#L64-L72,0, +Python,unzipping large files,https://github.com/JIC-CSB/jicbioimage.transform/blob/494c282d964c3a9b54c2a1b3730f5625ea2a494b/appveyor/install.py#L19-L23,3, +Python,get inner html,https://github.com/JohnVinyard/zounds/blob/337b3f98753d09eaab1c72dcd37bb852a3fa5ac6/zounds/ui/baseapp.py#L82-L95,0, +Python,group by count,https://github.com/letuananh/chirptext/blob/ce60b47257b272a587c8703ea1f86cd1a45553a7/chirptext/leutile.py#L178-L184,3, +Python,string to date,https://github.com/python-rope/rope/blob/1c9f9cd5964b099a99a9111e998f0dc728860688/rope/base/change.py#L94-L109,0, +Python,convert json to csv,https://github.com/PythonSanSebastian/docstamp/blob/b43808f2e15351b0b2f0b7eade9c7ef319c9e646/docstamp/file_utils.py#L138-L170,1, +Python,pretty print json,https://github.com/alejandroesquiva/AutomaticApiRest-PythonConnector/blob/90e55d5cf953dc8d7186fc6df82a6c6a089a3bbe/build/lib/aarpy/AARConnector.py#L36-L38,2, +Python,extract data from html content,https://github.com/tintinweb/pyetherchain/blob/cfeee3944b84fd12842ec3031d1d08ec7d63d33c/pyetherchain/pyetherchain.py#L185-L193,1, +Python,get the description of a http status code,https://github.com/ewdurbin/community/blob/f6b80e215a88508e3b07c2f4996ede6edea2c8e3/community/app.py#L36-L42,1, +Python,buffered file reader read text,https://github.com/internetarchive/warc/blob/8f05a000a23bbd6501217e37cfd862ffdf19da7f/warc/warc.py#L260-L263,2, +Python,how to empty array,https://github.com/rainwoodman/sharedmem/blob/b23e59c1ed0e28f7b6c96c17a04d55c700e06e3a/sharedmem/sharedmem.py#L785-L791,1, +Python,filter array,https://github.com/kwikteam/phy/blob/7e9313dc364304b7d2bd03b92938347343703003/phy/traces/filter.py#L28-L34,1, +Python,memoize to disk - persistent memoization,https://github.com/lisael/fastidious/blob/2542db9de779ddabc3a64e9eb19a4e2de99741dc/fastidious/expressions.py#L287-L301,2, +Python,how to get database table name,https://github.com/wdbm/pyprel/blob/c1253ea3f8c60a2f5493a0d5a61ca3c84df7c21d/pyprel_examples_database.py#L54-L115,0, +Python,matrix multiply,https://github.com/apache/spark/blob/618d6bff71073c8c93501ab7392c3cc579730f0b/python/pyspark/mllib/linalg/distributed.py#L705-L720,2, +Python,how to extract zip file recursively,https://github.com/oscarbranson/latools/blob/cd25a650cfee318152f234d992708511f7047fbe/latools/helpers/utils.py#L43-L65,3, +Python,how to get html of website,https://github.com/pyrogram/pyrogram/blob/e7258a341ba905cfa86264c22040654db732ec1c/examples/inline_queries.py#L16-L51,0, +Python,how to determine a string is a valid word,https://github.com/nickmckay/LiPD-utilities/blob/5dab6bbeffc5effd68e3a6beaca6b76aa928e860/Python/lipd/noaa_lpd.py#L559-L575,1, +Python,format date,https://github.com/LandRegistry/lr-utils/blob/811c9e5c11678a04ee203fa55a7c75080f4f9d89/lrutils/templatefilters/template_filters.py#L10-L12,3, +Python,convert int to string,https://github.com/bcbio/bcbio-nextgen/blob/6a9348c0054ccd5baffd22f1bb7d0422f6978b20/bcbio/pipeline/disambiguate/run.py#L35-L39,0, +Python,readonly array,https://github.com/vaexio/vaex/blob/a45b672f8287afca2ada8e36b74b604b9b28dd85/packages/vaex-core/vaex/dataframe.py#L4548-L4555,2, +Python,get inner html,https://github.com/zenwalker/python-xmltag/blob/5ba900753d939b0f3811c88b0f95ebbbdecd1727/xmltag/nodes.py#L45-L59,1, +Python,deducting the median from each column,https://github.com/rhenanbartels/hrv/blob/cd4c7e6e508299d943930886d20413f63845f60f/hrv/rri.py#L123-L124,0, +Python,sending binary data over a serial connection,https://github.com/google/mobly/blob/38ba2cf7d29a20e6a2fca1718eecb337df38db26/mobly/controllers/android_device_lib/jsonrpc_shell_base.py#L44-L69,2, +Python,how to get html of website,https://github.com/inorton/junit2html/blob/73ff9d84c41b60148e86ce597ef605a0f1976d4b/junit2htmlreport/parser.py#L561-L574,0, +Python,nelder mead optimize,https://github.com/atztogo/phonopy/blob/869cc2ba9e7d495d5f4cf6942415ab3fc9e2a10f/phonopy/qha/eos.py#L111-L140,2, +Python,httpclient post json,https://github.com/docker/docker-py/blob/613d6aad83acc9931ff2ecfd6a6c7bd8061dc125/docker/api/client.py#L275-L289,2, +Python,map to json,https://github.com/kyper-data/python-highcharts/blob/a4c488ae5c2e125616efad5a722f3dfd8a9bc450/highcharts/highmaps/highmaps.py#L292-L315,0, +Python,how to read .csv file in an efficient way?,https://github.com/thespacedoctor/sherlock/blob/2c80fb6fa31b04e7820e6928e3d437a21e692dd3/sherlock/imports/ned_d.py#L177-L274,2, +Python,set working directory,https://github.com/GNS3/gns3-server/blob/a221678448fb5d24e977ef562f81d56aacc89ab1/gns3server/compute/dynamips/dynamips_hypervisor.py#L152-L162,3, +Python,positions of substrings in string,https://github.com/alvations/lazyme/blob/961a8282198588ff72e15643f725ce895e51d06d/lazyme/string.py#L45-L53,1, +Python,json to xml conversion,https://github.com/amaas-fintech/amaas-core-sdk-python/blob/347b71f8e776b2dde582b015e31b4802d91e8040/amaascore/core/amaas_model.py#L30-L31,1, +Python,underline text in label widget,https://github.com/django-leonardo/django-leonardo/blob/4b933e1792221a13b4028753d5f1d3499b0816d4/leonardo/module/web/widgets/forms.py#L55-L144,0, +Python,hash set for counting distinct elements,https://github.com/cggh/scikit-allel/blob/3c979a57a100240ba959dd13f98839349530f215/allel/model/ndarray.py#L2492-L2508,0, +Python,sort string list,https://github.com/klahnakoski/pyLibrary/blob/fa2dcbc48fda8d26999baef400e9a98149e0b982/jx_python/containers/doc_store.py#L144-L174,2,"aweful code, but typically correct" +Python,write csv,https://github.com/fastai/fastai/blob/9fb84a5cdefe5a766cdb792b8f5d8971737b7e67/fastai/widgets/image_cleaner.py#L209-L218,3, +Python,how to read .csv file in an efficient way?,https://github.com/remix/partridge/blob/0ba80fa30035e5e09fd8d7a7bdf1f28b93d53d03/partridge/gtfs.py#L89-L112,3, +Python,how to get html of website,https://github.com/dwillis/python-espncricinfo/blob/96469e39f309e28586fcec40cc6a20b2fddacff7/espncricinfo/player.py#L44-L50,3, +Python,underline text in label widget,https://github.com/tzutalin/labelImg/blob/6afd15aa88f89f41254e0004ed219b3965eb2c0d/labelImg.py#L664-L674,0, +Python,get executable path,https://github.com/shapiromatron/bmds/blob/395c6ce84ad82876fd9fa4a89a3497fb61616de0/bmds/models/base.py#L173-L177,3, +Python,extract latitude and longitude from given input,https://github.com/Turbo87/aerofiles/blob/d8b7b04a1fcea5c98f89500de1164619a4ec7ef4/aerofiles/seeyou/reader.py#L130-L143,3, +Python,postgresql connection,https://github.com/Riffstation/flask-philo/blob/76c9d562edb4a77010c8da6dfdb6489fa29cbc9e/flask_philo/db/postgresql/connection.py#L58-L102,2, +Python,initializing array,https://github.com/Chilipp/psyplot/blob/75a0a15a9a1dd018e79d2df270d56c4bf5f311d5/psyplot/plotter.py#L1529-L1563,0, +Python,underline text in label widget,https://github.com/tzutalin/labelImg/blob/6afd15aa88f89f41254e0004ed219b3965eb2c0d/labelImg.py#L839-L876,0, +Python,nelder mead optimize,https://github.com/sods/paramz/blob/ae6fc6274b70fb723d91e48fc5026a9bc5a06508/paramz/optimization/scg.py#L44-L174,1, +Python,finding time elapsed using a timer,https://github.com/andrewramsay/sk8-drivers/blob/67347a71762fb421f5ae65a595def5c7879e8b0c/pysk8/calibration/sk8_calibration_gui.py#L49-L57,2, +Python,save list to file,https://github.com/StanfordBioinformatics/loom/blob/db2031a1a87124fee1aeb7414a668c03d774a698/worker/loomengine_worker/outputs.py#L71-L83,2, +Python,randomly extract x items from a list,https://github.com/Unity-Technologies/ml-agents/blob/37d139af636e4a2351751fbf0f2fca5a9ed7457f/ml-agents/mlagents/trainers/tensorflow_to_barracuda.py#L496-L504,0, +Python,get executable path,https://github.com/shapiromatron/bmds/blob/395c6ce84ad82876fd9fa4a89a3497fb61616de0/bmds/models/base.py#L173-L177,3, +Python,how to get current date,https://github.com/mitsei/dlkit/blob/445f968a175d61c8d92c0f617a3c17dc1dc7c584/dlkit/json_/osid/markers.py#L309-L318,1,"the DateTime.utcnow() bit is useful, the rest not." +Python,get current observable value,https://github.com/fredericklussier/ObservablePy/blob/fd7926a0568621f80b1d567d18f199976f1fa4e8/observablePy/ObservableStore.py#L72-L84,0, +Python,how to get database table name,https://github.com/spulec/moto/blob/4a286c4bc288933bb023396e2784a6fdbb966bc9/moto/glue/models.py#L55-L57,1, +Python,buffered file reader read text,https://github.com/hyde/fswrap/blob/41e4ad6f7e9ba73eabe61bd97847cd284e3edbd2/fswrap.py#L282-L289,2, +Python,normal distribution,https://github.com/tensorflow/probability/blob/e87fe34111d68c35db0f9eeb4935f1ece9e1a8f5/tensorflow_probability/python/distributions/normal.py#L241-L261,0, +Python,export to excel,https://github.com/patarapolw/AnkiTools/blob/fab6836dfd9cf5171d9cbff5c55fbb14d2786f05/AnkiTools/excel.py#L155-L157,2, +Python,underline text in label widget,https://github.com/ska-sa/purr/blob/4c848768d0485d0f88b30850d0d5372221b21b66/Purr/MainWindow.py#L123-L128,0, +Python,copy to clipboard,https://github.com/bitesofcode/projexui/blob/f18a73bec84df90b034ca69b9deea118dbedfc4d/projexui/widgets/xfilepathedit.py#L136-L142,3, +Python,linear regression,https://github.com/ulf1/oxyba/blob/b3043116050de275124365cb11e7df91fb40169d/oxyba/linreg_mle.py#L2-L59,3, +Python,unzipping large files,https://github.com/nerdvegas/rez/blob/1d3b846d53b5b5404edfe8ddb9083f9ceec8c5e7/src/rez/backport/zipfile.py#L808-L819,2, +Python,how to get html of website,https://github.com/Netflix-Skunkworks/cloudaux/blob/c4b0870c3ac68b1c69e71d33cf78b6a8bdf437ea/cloudaux/orchestration/aws/s3.py#L160-L178,2, +Python,json to xml conversion,https://github.com/open511/open511/blob/3d573f59d7efa06ff1b5419ea5ff4d90a90b3cf8/open511/converter/o5json.py#L9-L63,0, +Python,how to read the contents of a .gz compressed file?,https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/gzip_util.py#L74-L106,2, +Python,extract latitude and longitude from given input,https://github.com/geometalab/pyGeoTile/blob/b1f44271698f5fc4d18c2add935797ed43254aa6/pygeotile/point.py#L12-L16,3, +Python,concatenate several file remove header lines,https://github.com/totalgood/nlpia/blob/efa01126275e9cd3c3a5151a644f1c798a9ec53f/src/nlpia/clean_alice.py#L59-L82,2, +Python,export to excel,https://github.com/housecanary/hc-api-python/blob/2bb9e2208b34e8617575de45934357ee33b8531c/housecanary/excel/__init__.py#L18-L28,2, +Python,html encode string,https://github.com/hit9/rux/blob/d7f60722658a3b83ac6d7bb3ca2790ac9c926b59/rux/parser.py#L33-L42,2, +Python,string to date,https://github.com/uw-it-aca/uw-restclients-iasystem/blob/f65f169d54b0d39e2d732cba529ccd8b6cb49f8a/uw_iasystem/evaluation.py#L192-L199,2, +Python,regex case insensitive,https://github.com/wolfhong/formic/blob/0d81eb88dcbb6fa705194fc6ccf2993f4abbaa76/formic/formic.py#L182-L187,0, +Python,how to make the checkbox checked,https://github.com/twosigma/beakerx/blob/404de61ed627d9daaf6b77eb4859e7cb6f37413f/beakerx/beakerx/easyform/easyform.py#L112-L117,3, +Python,read text file line by line,https://github.com/ml4ai/delphi/blob/6d03d8aafeab99610387c51b89c99738ff2abbe3/delphi/translators/for2py/format.py#L99-L138,1, +Python,scatter plot,https://github.com/newville/wxmplot/blob/8e0dc037453e5cdf18c968dc5a3d29efd761edee/wxmplot/plotframe.py#L45-L47,1, +Python,convert int to bool,https://github.com/msfrank/cifparser/blob/ecd899ba2e7b990e2cec62b115742d830e7e4384/cifparser/converters.py#L23-L29,2, +Python,how to get current date,https://github.com/alexhayes/django-toolkit/blob/b64106392fad596defc915b8235fe6e1d0013b5b/django_toolkit/views.py#L343-L353,1, +Python,buffered file reader read text,https://github.com/aragaer/channels/blob/ba6e4bf8a093deb6224a8b5b63ddb328815d1ae6/channels/channel.py#L13-L21,0, +Python,output to html file,https://github.com/appknox/vendor/blob/0b85d3c8328c5102cdcb1f619cbff215d7b5f228/ak_vendor/report.py#L31-L34,2,"The better match is in the to_html() function. This result, however, gives the user enough context to find the correct solution." +Python,sending binary data over a serial connection,https://github.com/clach04/x10_any/blob/5b90a543b127ab9e6112fd547929b5ef4b8f0cbc/x10_any/cm17a.py#L106-L118,2, +Python,aes encryption,https://github.com/pedroburon/tbk/blob/ecd6741e0bae06269eb4ac885c3ffcb7902ee40e/tbk/webpay/encryption.py#L36-L42,2,"A bit convoluted but seems ok. This is not plain AES encryption but AES-CBC encryption. +Never use CBC mode, use GCM or SIV instead." +Python,create cookie,https://github.com/IdentityPython/oidcendpoint/blob/6c1d729d51bfb6332816117fe476073df7a1d823/src/oidcendpoint/cookie.py#L299-L342,3, +Python,concatenate several file remove header lines,https://github.com/tanghaibao/jcvi/blob/d2e31a77b6ade7f41f3b321febc2b4744d1cdeca/jcvi/formats/fpc.py#L96-L111,1, +Python,concatenate several file remove header lines,https://github.com/cdeboever3/cdpybio/blob/38efdf0e11d01bc00a135921cb91a19c03db5d5c/cdpybio/variants.py#L83-L110,1, +Python,format date,https://github.com/stestagg/dateformat/blob/4743f5dabf1eaf66524247328c76cfd3a05d0daf/benchmark/benchmark_parsing.py#L22-L24,3, +Python,converting uint8 array to image,https://github.com/aleju/imgaug/blob/786be74aa855513840113ea523c5df495dc6a8af/imgaug/augmentables/heatmaps.py#L392-L406,2, +Python,memoize to disk - persistent memoization,https://github.com/peri-source/peri/blob/61beed5deaaf978ab31ed716e8470d86ba639867/peri/util.py#L1055-L1114,1, +Python,deserialize json,https://github.com/hyperledger/indy-sdk/blob/55240dc170308d7883c48f03f308130a6d077be6/vcx/wrappers/python3/vcx/api/proof.py#L55-L70,0, +Python,create cookie,https://github.com/wecatch/app-turbo/blob/75faf97371a9a138c53f92168d0a486636cb8a9c/turbo/session.py#L185-L193,2, +Python,copy to clipboard,https://github.com/bitesofcode/projexui/blob/f18a73bec84df90b034ca69b9deea118dbedfc4d/projexui/widgets/xfilepathedit.py#L136-L142,3, +Python,all permutations of a list,https://github.com/numenta/nupic/blob/5922fafffdccc8812e72b3324965ad2f7d4bbdad/src/nupic/math/cross.py#L96-L102,3, +Python,set file attrib hidden,https://github.com/tjcsl/ion/blob/5d722b0725d572039bb0929fd5715a4070c82c72/intranet/utils/html.py#L20-L21,1, +Python,parse json file,https://github.com/danhper/python-i18n/blob/bbba4b7ec091997ea8df2067acd7af316ee00b31/i18n/loaders/json_loader.py#L10-L14,2, +Python,convert a date string into yyyymmdd,https://github.com/google/transitfeed/blob/eb2991a3747ba541b2cb66502b305b6304a1f85f/merge.py#L1166-L1206,1, +Python,get inner html,https://github.com/JohnVinyard/zounds/blob/337b3f98753d09eaab1c72dcd37bb852a3fa5ac6/zounds/ui/baseapp.py#L82-L95,1, +Python,normal distribution,https://github.com/tensorflow/probability/blob/e87fe34111d68c35db0f9eeb4935f1ece9e1a8f5/tensorflow_probability/python/distributions/normal.py#L241-L261,2, +Python,map to json,https://github.com/ontio/ontology-python-sdk/blob/ac88bdda941896c5d2ced08422a9c5179d3f9b19/ontology/smart_contract/native_contract/governance.py#L403-L414,1, +Python,how to randomly pick a number,https://github.com/bwesterb/sarah/blob/a9e46e875dfff1dc11255d714bb736e5eb697809/src/drv.py#L24-L47,1, +Python,extract data from html content,https://github.com/usc-isi-i2/etk/blob/aab077c984ea20f5e8ae33af622fe11d3c4df866/etk/extractors/html_metadata_extractor.py#L40-L90,3, +Python,deserialize json,https://github.com/ubc/github2gitlab/blob/795898f6d438621fa0c996a7156d70c382ff0493/github2gitlab/main.py#L434-L440,3, +Python,finding time elapsed using a timer,https://github.com/sony/nnabla/blob/aaf3d33b7cbb38f2a03aa754178ba8f7c8481320/python/benchmark/function/function_benchmark.py#L224-L234,2, +Python,copy to clipboard,https://github.com/devassistant/devassistant/blob/2dbfeaa666a64127263664d18969c55d19ecc83e/devassistant/gui/gui_helper.py#L466-L473,2, +Python,memoize to disk - persistent memoization,https://github.com/fedora-python/pyp2rpm/blob/853eb3d226689a5ccdcdb9358b1a3394fafbd2b5/pyp2rpm/utils.py#L44-L56,0, +Python,deserialize json,https://github.com/steenzout/python-serialization-json/blob/583568e14cc02ba0bf711f56b8a0a3ad142c696d/steenzout/serialization/json/__init__.py#L50-L71,3, +Python,extracting data from a text file,https://github.com/explosion/spaCy/blob/8ee4100f8ffb336886208a1ea827bf4c745e2709/spacy/cli/profile.py#L55-L69,2, +Python,readonly array,https://github.com/SmokinCaterpillar/pypet/blob/97ad3e80d46dbdea02deeb98ea41f05a19565826/pypet/storageservice.py#L5026-L5042,0, +Python,priority queue,https://github.com/LogicalDash/LiSE/blob/fe6fd4f0a7c1780e065f4c9babb9bc443af6bb84/ELiDE/ELiDE/board/pawn.py#L105-L108,0, +Python,positions of substrings in string,https://github.com/alvations/lazyme/blob/961a8282198588ff72e15643f725ce895e51d06d/lazyme/string.py#L45-L53,0, +Python,socket recv timeout,https://github.com/secdev/scapy/blob/3ffe757c184017dd46464593a8f80f85abc1e79a/scapy/contrib/isotp.py#L612-L621,3, +Python,confusion matrix,https://github.com/openmednlp/bedrock/blob/15796bd7837ddfe7ad5235fd188e5d7af8c0be49/bedrock/viz.py#L12-L44,1, +Python,html entities replace,https://github.com/nickoala/telepot/blob/3792fde251d0f1d5a6ca16c8ad1a71f89360c41d/telepot/text.py#L65-L88,0, +Python,unique elements,https://github.com/mbj4668/pyang/blob/f2a5cc3142162e5b9ee4e18d154568d939ff63dd/pyang/plugins/check_update.py#L584-L598,1, +Python,extract latitude and longitude from given input,https://github.com/Unidata/MetPy/blob/16f68a94919b9a82dcf9cada2169cf039129e67b/metpy/calc/tools.py#L819-L870,1, +Python,how to determine a string is a valid word,https://github.com/deepmipt/DeepPavlov/blob/f3e4a69a3764d25d2f5bad4f1f1aebc872b00f9c/deeppavlov/models/preprocessors/capitalization.py#L75-L108,0, +Python,how to make the checkbox checked,https://github.com/nion-software/nionswift/blob/d43693eaf057b8683b9638e575000f055fede452/nion/swift/Facade.py#L612-L615,2, +Python,read properties file,https://github.com/readbeyond/aeneas/blob/9d95535ad63eef4a98530cfdff033b8c35315ee1/aeneas/audiofile.py#L330-L376,1, +Python,randomly extract x items from a list,https://github.com/Unity-Technologies/ml-agents/blob/37d139af636e4a2351751fbf0f2fca5a9ed7457f/ml-agents/mlagents/trainers/tensorflow_to_barracuda.py#L496-L504,0, +Python,underline text in label widget,https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/preferences/configdialog.py#L515-L534,1,Deals with text and widgets but not with underlining +Python,copying a file to a path,https://github.com/joelfrederico/SciSalt/blob/7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f/scisalt/facettools/print2elog.py#L13-L23,2, +Python,convert html to pdf,https://github.com/thewca/wca-regulations-compiler/blob/3ebbd8fe8fec7c9167296f59b2677696fe61a954/wrc/wrc.py#L85-L113,3, +Python,convert json to csv,https://github.com/albertyw/csv-ical/blob/cdb55a226cd0cb6cc214d896a6cea41a5b92c9ed/csv_ical/convert.py#L92-L97,0, +Python,convert json to csv,https://github.com/mosesschwartz/scrypture/blob/d51eb0c9835a5122a655078268185ce8ab9ec86a/scrypture/demo_scripts/Utils/json_to_csv.py#L28-L47,3, +Python,get all parents of xml node,https://github.com/klahnakoski/pyLibrary/blob/fa2dcbc48fda8d26999baef400e9a98149e0b982/mo_graphs/algorithms.py#L115-L202,1, +Python,unzipping large files,https://github.com/mjirik/io3d/blob/ccaf3e378dcc967f2565d477fc27583fd0f61fcc/io3d/datasets.py#L821-L833,2, +Python,convert int to bool,https://github.com/AustralianSynchrotron/lightflow/blob/dc53dbc1d961e20fb144273baca258060705c03e/lightflow/models/parameters.py#L62-L93,2, +Python,concatenate several file remove header lines,https://github.com/tanghaibao/jcvi/blob/d2e31a77b6ade7f41f3b321febc2b4744d1cdeca/jcvi/formats/fpc.py#L96-L111,0, +Python,how to reverse a string,https://github.com/frnsys/broca/blob/7236dcf54edc0a4a54a55eb93be30800910667e7/broca/similarity/doc/wikipedia.py#L28-L41,0, +Python,deserialize json,https://github.com/infobip/infobip-api-python-client/blob/2da11962f877294c53bd545715e62d6ce5c139f0/infobip/util/http.py#L14-L16,3, +Python,how to randomly pick a number,https://github.com/linnarsson-lab/loompy/blob/62c8373a92b058753baa3a95331fb541f560f599/loompy/color.py#L288-L289,2, +Python,reading element from html - ,https://github.com/toomore/goristock/blob/e61f57f11a626cfbc4afbf66337fd9d1c51e3e71/grs/mobileapi.py#L38-L72,2,An interesting example where the desired result appears to be commented out. This is not a bad thing from the perspective of providing some example code snippet to satisfy the query. +Python,regex case insensitive,https://github.com/refnode/liquid/blob/8b2b5efc635b0dbfe610db9036fdb4ae3e3d5439/src/liquid/strscan.py#L516-L535,1, +Python,read properties file,https://github.com/rcook/upload-haddocks/blob/a33826be1873da68ba073a42ec828c8ec150d576/setup.py#L16-L26,3, +Python,how to randomly pick a number,https://github.com/ManiacalLabs/BiblioPixelAnimations/blob/fba81f6b94f5265272a53f462ef013df1ccdb426/BiblioPixelAnimations/strip/WhiteTwinkle.py#L68-L77,1, +Python,unzipping large files,https://github.com/cs50/lib50/blob/941767f6c0a3b81af0cdea48c25c8d5a761086eb/lib50/_api.py#L570-L611,0, +Python,convert html to pdf,https://github.com/RudolfCardinal/pythonlib/blob/0b84cb35f38bd7d8723958dae51b480a829b7227/cardinal_pythonlib/pdf.py#L232-L402,2, +Python,reading element from html - ,https://github.com/atlassian-api/atlassian-python-api/blob/540d269905c3e7547b666fe30c647b2d512cf358/atlassian/utils.py#L80-L103,0,"This is generating HTML, not reading from it" +Python,k means clustering,https://github.com/neuropsychology/NeuroKit.py/blob/c9589348fbbde0fa7e986048c48f38e6b488adfe/examples/UnderDev/eeg/eeg_microstates.py#L201-L253,1, +Python,socket recv timeout,https://github.com/nfcpy/nfcpy/blob/6649146d1afdd5e82b2b6b1ea00aa58d50785117/examples/llcp-dta-iut.py#L156-L180,3, +Python,postgresql connection,https://github.com/Azure/azure-cli-extensions/blob/3d4854205b0f0d882f688cfa12383d14506c2e35/src/db-up/azext_db_up/custom.py#L381-L394,2, +Python,format date,https://github.com/saschpe/rapport/blob/ccceb8f84bd7e8add88ab5e137cdab6424aa4683/rapport/util.py#L55-L69,3, +Python,how to reverse a string,https://github.com/SmartTeleMax/iktomi/blob/80bc0f1408d63efe7f5844367d1f6efba44b35f2/iktomi/web/reverse.py#L218-L229,0, +Python,readonly array,https://github.com/nerdvegas/rez/blob/1d3b846d53b5b5404edfe8ddb9083f9ceec8c5e7/src/rez/vendor/amqp/serialization.py#L210-L217,0, +Python,how to read .csv file in an efficient way?,https://github.com/mapillary/mapillary_tools/blob/816785e90c589cae6e8e34a5530ce8417d29591c/mapillary_tools/process_csv.py#L175-L184,3, +Python,how to get current date,https://github.com/Open-ET/openet-core-beta/blob/f2b81ccf87bf7e7fe1b9f3dd1d4081d0ec7852db/openet/core/utils.py#L82-L95,0, +Python,nelder mead optimize,https://github.com/SheffieldML/GPyOpt/blob/255539dc5927819ca701e44fe3d76cd4864222fa/GPyOpt/optimization/optimizer.py#L36-L61,2, +Python,set working directory,https://github.com/Alignak-monitoring/alignak/blob/f3c145207e83159b799d3714e4241399c7740a64/alignak/daemon.py#L1243-L1259,3, +Python,convert int to bool,https://github.com/AustralianSynchrotron/lightflow/blob/dc53dbc1d961e20fb144273baca258060705c03e/lightflow/models/parameters.py#L62-L93,3, +Python,how to reverse a string,https://github.com/seleniumbase/SeleniumBase/blob/62e5b43ee1f90a9ed923841bdd53b1b38358f43a/seleniumbase/common/encryption.py#L43-L55,0, +Python,group by count,https://github.com/pandas-dev/pandas/blob/9feb3ad92cc0397a04b665803a49299ee7aa1037/pandas/core/groupby/generic.py#L1183-L1196,0, +Python,underline text in label widget,https://github.com/nion-software/nionswift/blob/d43693eaf057b8683b9638e575000f055fede452/nion/swift/Facade.py#L594-L597,1, +Python,how to make the checkbox checked,https://github.com/DLR-RM/RAFCON/blob/24942ef1a904531f49ab8830a1dbb604441be498/source/rafcon/gui/utils/dialog.py#L233-L234,0, +Python,how to randomly pick a number,https://github.com/numenta/htmresearch/blob/70c096b09a577ea0432c3f3bfff4442d4871b7aa/htmresearch/frameworks/specific_timing/timing_adtm.py#L276-L306,1, +Python,randomly extract x items from a list,https://github.com/lazygunner/xunleipy/blob/cded7598a7bf04495156bae2d747883d1eacb3f4/xunleipy/rsa_lib.py#L167-L177,0, +Python,convert int to bool,https://github.com/yandex/yandex-tank/blob/d71d63b6ab5de8b8a5ea2b728b6ab9ac0b1ba71b/yandextank/config_converter/converter.py#L100-L104,2, +Python,buffered file reader read text,https://github.com/waqasbhatti/astrobase/blob/2922a14619d183fb28005fa7d02027ac436f2265/astrobase/hatsurveys/texthatlc.py#L54-L167,0, +Python,save list to file,https://github.com/spacetelescope/stsci.tools/blob/9a022503ad24ca54ce83331482dfa3ff6de9f403/lib/stsci/tools/cfgpars.py#L752-L790,1, +Python,fuzzy match ranking,https://github.com/hearsaycorp/normalize/blob/8b36522ddca6d41b434580bd848f3bdaa7a999c8/normalize/diff.py#L547-L588,3, +Python,concatenate several file remove header lines,https://github.com/wummel/linkchecker/blob/c2ce810c3fb00b895a841a7be6b2e78c64e7b042/linkcheck/cookies.py#L27-L45,1, +Python,normal distribution,https://github.com/tensorforce/tensorforce/blob/520a8d992230e382f08e315ede5fc477f5e26bfb/tensorforce/core/distributions/gaussian.py#L83-L93,2, +Python,priority queue,https://github.com/FreshXOpenSource/wallaby-base/blob/5c75b1729e99af905c44b1293e67dbd5527d022d/wallaby/pf/room.py#L366-L370,0, +Python,k means clustering,https://github.com/neuropsychology/NeuroKit.py/blob/c9589348fbbde0fa7e986048c48f38e6b488adfe/examples/UnderDev/eeg/eeg_microstates.py#L201-L253,2, +Python,how to empty array,https://github.com/deshima-dev/decode/blob/e789e174cd316e7ec8bc55be7009ad35baced3c0/decode/core/array/functions.py#L109-L121,3, +Python,sending binary data over a serial connection,https://github.com/thomasdelaet/python-velbus/blob/af2f8af43f1a24bf854eff9f3126fd7b5c41b3dd/velbus/messages/write_module_address_and_serial_number.py#L47-L54,1, +Python,write csv,https://github.com/majerteam/sylk_parser/blob/0f62f9d3ca1c273017d7ea728f9db809f2241389/sylk_parser/sylk_parser.py#L27-L40,2, +Python,unique elements,https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/utils/data.py#L22-L42,2, +Python,how to empty array,https://github.com/scikit-hep/uproot/blob/fc406827e36ed87cfb1062806e118f53fd3a3b0a/uproot/interp/numerical.py#L340-L341,1, +Python,socket recv timeout,https://github.com/teepark/greenhouse/blob/8fd1be4f5443ba090346b5ec82fdbeb0a060d956/greenhouse/io/sockets.py#L346-L377,1, +Python,get current observable value,https://github.com/Nekmo/simple-monitor-alert/blob/11d6dbd3c0b3b9a210d6435208066f5636f1f44e/monitors/web.py#L91-L101,1, +Python,output to html file,https://github.com/pyecharts/pyecharts/blob/02050acb0e94bb9453b88a25028de7a0ce23f125/pyecharts/commons/utils.py#L39-L41,1,"It does what is says, but it's not what I would expect..." +Python,parse json file,https://github.com/s1s1ty/py-jsonq/blob/9625597a2578bddcbed4e540174d5253b1fc3b75/pyjsonq/query.py#L46-L60,3, +Python,matrix multiply,https://github.com/AndrewAnnex/SpiceyPy/blob/fc20a9b9de68b58eed5b332f0c051fb343a6e335/spiceypy/spiceypy.py#L8663-L8689,3, +Python,pretty print json,https://github.com/MacHu-GWU/angora-project/blob/689a60da51cd88680ddbe26e28dbe81e6b01d275/angora/dtypes/dicttree.py#L378-L382,3, +Python,convert a utc time to epoch,https://github.com/aws/aws-xray-sdk-python/blob/707358cd3a516d51f2ebf71cf34f00e8d906a667/aws_xray_sdk/core/sampling/connector.py#L136-L149,1,Perhaps contains useful module names +Python,find int in string,https://github.com/klahnakoski/mo-logs/blob/0971277ac9caf28a755b766b70621916957d4fea/mo_logs/strings.py#L547-L554,1, +Python,connect to sql,https://github.com/snower/TorMySQL/blob/01ff87f03a850a2a6e466700d020878eecbefa5d/tormysql/pool.py#L102-L111,2, +Python,encode url,https://github.com/frawau/aioblescan/blob/02d12e90db3ee6df7be6513fec171f20dc533de3/aioblescan/plugins/eddystone.py#L105-L151,2, +Python,how to get current date,https://github.com/ctuning/ck/blob/7e009814e975f8742790d3106340088a46223714/ck/kernel.py#L4351-L4377,3, +Python,how to extract zip file recursively,https://github.com/demosdemon/format-pipfile/blob/f95162c49d8fc13153080ddb11ac5a5dcd4d2e7c/ci/appveyor-download.py#L95-L102,2, +Python,how to make the checkbox checked,https://github.com/DLR-RM/RAFCON/blob/24942ef1a904531f49ab8830a1dbb604441be498/source/rafcon/gui/utils/dialog.py#L233-L234,1, +Python,parse command line argument,https://github.com/intuition-io/intuition/blob/cd517e6b3b315a743eb4d0d0dc294e264ab913ce/intuition/core/configuration.py#L28-L56,3, +Python,custom http error response,https://github.com/FelixSchwarz/pymta/blob/1884accc3311e6c2e89259784f9592314f6d34fc/pymta/session.py#L175-L180,1, +Python,how to get database table name,https://github.com/apache/airflow/blob/b69c686ad8a0c89b9136bb4b31767257eb7b2597/airflow/contrib/hooks/aws_glue_catalog_hook.py#L139-L152,0, +Python,set working directory,https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/plugin.py#L1537-L1542,2, +Python,get current observable value,https://github.com/Nekmo/simple-monitor-alert/blob/11d6dbd3c0b3b9a210d6435208066f5636f1f44e/monitors/web.py#L91-L101,0,No idea what the query means +Python,find int in string,https://github.com/Erotemic/utool/blob/3b27e1f4e6e6fb23cd8744af7b7195b57d99e03a/utool/util_latex.py#L890-L896,0, +Python,convert a utc time to epoch,https://github.com/google/mobly/blob/38ba2cf7d29a20e6a2fca1718eecb337df38db26/mobly/utils.py#L147-L165,1, +Python,create cookie,https://github.com/pypa/pipenv/blob/cae8d76c210b9777e90aab76e9c4b0e53bb19cde/pipenv/vendor/requests/cookies.py#L441-L474,3, +Python,positions of substrings in string,https://github.com/mcs07/ChemDataExtractor/blob/349a3bea965f2073141d62043b89319222e46af1/chemdataextractor/text/processors.py#L91-L95,2, +Python,how to get html of website,https://github.com/Netflix-Skunkworks/cloudaux/blob/c4b0870c3ac68b1c69e71d33cf78b6a8bdf437ea/cloudaux/orchestration/aws/s3.py#L160-L178,0, +Python,convert html to pdf,https://github.com/tutorcruncher/pydf/blob/53dd030f02f112593ed6e2655160a40b892a23c0/docker-entrypoint.py#L36-L53,1, +Python,scatter plot,https://github.com/bloomberg/bqplot/blob/8eb8b163abe9ee6306f6918067e2f36c1caef2ef/bqplot/pyplot.py#L816-L837,3, +Python,how to get database table name,https://github.com/spulec/moto/blob/4a286c4bc288933bb023396e2784a6fdbb966bc9/moto/glue/responses.py#L36-L41,2, +Python,socket recv timeout,https://github.com/secdev/scapy/blob/3ffe757c184017dd46464593a8f80f85abc1e79a/scapy/contrib/isotp.py#L612-L621,2, +Python,postgresql connection,https://github.com/CivicSpleen/ambry/blob/d7f2be4bf1f7ffd086f3fadd4fcae60c32473e42/ambry/orm/database.py#L785-L793,0, +Python,how to read .csv file in an efficient way?,https://github.com/probcomp/crosscat/blob/4a05bddb06a45f3b7b3e05e095720f16257d1535/src/utils/data_utils.py#L297-L304,3, +Python,set working directory,https://github.com/xolox/python-vcs-repo-mgr/blob/fdad2441a3e7ba5deeeddfa1c2f5ebc00c393aed/vcs_repo_mgr/__init__.py#L1875-L1896,0, +Python,how to read the contents of a .gz compressed file?,https://github.com/gtaylor/django-athumb/blob/69261ace0dff81e33156a54440874456a7b38dfb/athumb/backends/s3boto.py#L143-L150,1,The function writes to a '.gz' file instead of performing a read. +Python,convert int to bool,https://github.com/thebjorn/pydeps/blob/1e6715b7bea47a40e8042821b57937deaaa0fdc3/pydeps/arguments.py#L20-L31,2, +Python,regex case insensitive,https://github.com/openstates/billy/blob/5fc795347f12a949e410a8cfad0c911ea6bced67/billy/web/api/handlers.py#L27-L48,2,"Hard too find, but I here " +Python,how to get current date,https://github.com/ricobl/django-importer/blob/6967adfa7a286be7aaf59d3f33c6637270bd9df6/sample_project/tasks/importers.py#L64-L88,1,"Most of the code is irrelevant, but there's the datetime.now() call that solves the problem" +Python,get all parents of xml node,https://github.com/emc-openstack/storops/blob/24b4b13bf065c0ef0538dd0b5ebb8f25d24176bd/storops/vnx/resource/nfs_share.py#L38-L50,2, +Python,how to get database table name,https://github.com/spulec/moto/blob/4a286c4bc288933bb023396e2784a6fdbb966bc9/moto/glue/models.py#L48-L53,2, +Python,initializing array,https://github.com/skorch-dev/skorch/blob/5b9b8b7b7712cb6e5aaa759d9608ea6269d5bcd3/skorch/net.py#L541-L554,1, +Python,priority queue,https://github.com/hubo1016/vlcp/blob/239055229ec93a99cc7e15208075724ccf543bd1/vlcp/event/pqueue.py#L1032-L1040,2, +Python,convert html to pdf,https://github.com/nigma/django-easy-pdf/blob/327605b91a445b453d8969b341ef74b12ab00a83/easy_pdf/rendering.py#L51-L78,3, +Python,get inner html,https://github.com/KelSolaar/Umbra/blob/66f45f08d9d723787f1191989f8b0dda84b412ce/umbra/reporter.py#L468-L477,2, +Python,unique elements,https://github.com/wdbm/shijian/blob/ad6aea877e1eb99fe148127ea185f39f1413ed4f/shijian.py#L990-L995,3, +Python,convert a utc time to epoch,https://github.com/halcy/Mastodon.py/blob/35c43562dd3d34d6ebf7a0f757c09e8fcccc957c/mastodon/Mastodon.py#L2443-L2458,2, +Python,concatenate several file remove header lines,https://github.com/skoczen/inkblock/blob/099f834c1e9fc0938abaa8824725eeac57603f6c/inkblock/main.py#L151-L172,0, +Python,set working directory,https://github.com/GNS3/gns3-server/blob/a221678448fb5d24e977ef562f81d56aacc89ab1/gns3server/compute/dynamips/dynamips_hypervisor.py#L152-L162,0, +Python,positions of substrings in string,https://github.com/ibis-project/ibis/blob/1e39a5fd9ef088b45c155e8a5f541767ee8ef2e7/ibis/expr/api.py#L1943-L1962,1, +Python,how to reverse a string,https://github.com/honzajavorek/redis-collections/blob/07ca8efe88fb128f7dc7319dfa6a26cd39b3776b/redis_collections/lists.py#L482-L498,2, +Python,get the description of a http status code,https://github.com/cloudendpoints/endpoints-python/blob/00dd7c7a52a9ee39d5923191c2604b8eafdb3f24/endpoints/errors.py#L239-L253,2, +Python,initializing array,https://github.com/apache/incubator-mxnet/blob/1af29e9c060a4c7d60eeaacba32afdb9a7775ba7/python/mxnet/ndarray/sparse.py#L1507-L1543,3, +Python,nelder mead optimize,https://github.com/SheffieldML/GPyOpt/blob/255539dc5927819ca701e44fe3d76cd4864222fa/GPyOpt/util/epmgp.py#L122-L208,1,I didn't know what this is +Python,string to date,https://github.com/python-rope/rope/blob/1c9f9cd5964b099a99a9111e998f0dc728860688/rope/base/change.py#L94-L109,1,This function appears to be converting from a timestamp to a string as opposed to the other way around. This is a good example of relatedness versus relevance. +Python,how to randomly pick a number,https://github.com/bwesterb/sarah/blob/a9e46e875dfff1dc11255d714bb736e5eb697809/src/drv.py#L62-L67,3, +Python,socket recv timeout,https://github.com/Jaymon/endpoints/blob/2f1c4ae2c69a168e69447d3d8395ada7becaa5fb/endpoints/interface/uwsgi/client.py#L265-L307,2, +Python,convert a date string into yyyymmdd,https://github.com/why2pac/dp-tornado/blob/a5948f5693f6ee2d9bab31f611fedc074e1caa96/dp_tornado/helper/datetime/time.py#L38-L53,2, +Python,hash set for counting distinct elements,https://github.com/ibis-project/ibis/blob/1e39a5fd9ef088b45c155e8a5f541767ee8ef2e7/ibis/expr/api.py#L3265-L3282,0, +Python,sending binary data over a serial connection,https://github.com/clach04/x10_any/blob/5b90a543b127ab9e6112fd547929b5ef4b8f0cbc/x10_any/cm17a.py#L106-L118,1, +Python,parse query string in url,https://github.com/googleapis/google-auth-library-python/blob/2c6ad78917e936f38f87c946209c8031166dc96e/google/auth/_helpers.py#L130-L173,1, +Python,html entities replace,https://github.com/shoebot/shoebot/blob/d554c1765c1899fa25727c9fc6805d221585562b/lib/web/html.py#L109-L123,2, +Python,readonly array,https://github.com/ThreatConnect-Inc/tcex/blob/dd4d7a1ef723af1561687120191886b9a2fd4b47/tcex/tcex_playbook.py#L434-L445,0, +Python,positions of substrings in string,https://github.com/cfusting/fastgp/blob/6cf3c5d14abedaea064feef6ca434ee806a11756/fastgp/algorithms/evolutionary_feature_synthesis.py#L314-L332,2, +Python,initializing array,https://github.com/AshleySetter/optoanalysis/blob/9d390acc834d70024d47b574aea14189a5a5714e/optoanalysis/optoanalysis/optoanalysis.py#L3311-L3329,3, +Python,get current ip address,https://github.com/dlancer/django-crispy-contact-form/blob/3d422556add5aea3607344a034779c214f84da04/contact_form/helpers.py#L8-L19,2, +Python,how to get current date,https://github.com/crazy-canux/arguspy/blob/e9486b5df61978a990d56bf43de35f3a4cdefcc3/scripts/check_wmi_sh.py#L226-L238,0, +Python,httpclient post json,https://github.com/pawel-kow/domainconnect_python/blob/2467093cc4e997234e0fb5c55e71f76b856c1ab1/domainconnect/network.py#L129-L145,3, +Python,how to determine a string is a valid word,https://github.com/SpotlightData/preprocessing/blob/180c6472bc2642afbd7a1ece08d0b0d14968a708/preprocessing/spellcheck.py#L18-L28,0, +Python,find int in string,https://github.com/klahnakoski/mo-logs/blob/0971277ac9caf28a755b766b70621916957d4fea/mo_logs/strings.py#L294-L315,1, +Python,convert string to number,https://github.com/shidenggui/easytrader/blob/e5ae4daeda4ea125763a95b280dd694c7f68257d/easytrader/helpers.py#L137-L139,3, +Python,read properties file,https://github.com/crs4/pydoop/blob/f375be2a06f9c67eaae3ce6f605195dbca143b2b/pydoop/__init__.py#L183-L193,3, +Python,extracting data from a text file,https://github.com/wtsi-hgi/python-common/blob/0376a6b574ff46e82e509e90b6cb3693a3dbb577/hgicommon/data_source/static_from_file.py#L72-L82,2, +Python,sending binary data over a serial connection,https://github.com/thomasdelaet/python-velbus/blob/af2f8af43f1a24bf854eff9f3126fd7b5c41b3dd/velbus/messages/write_module_address_and_serial_number.py#L47-L54,1, +Python,all permutations of a list,https://github.com/tamasgal/km3pipe/blob/7a9b59ac899a28775b5bdc5d391d9a5340d08040/km3pipe/math.py#L224-L229,0, +Python,read text file line by line,https://github.com/chrisjsewell/jsonextended/blob/c3a7a880cc09789b3c61204265dcbb127be76c8a/jsonextended/mockpath.py#L44-L54,0, +Python,read text file line by line,https://github.com/niccokunzmann/ledtable/blob/a94d276f8a06e0f7f05f5cc704018c899e56bd9f/python/ledtable/SerialLEDTable.py#L54-L63,1, +Python,how to randomly pick a number,https://github.com/bwesterb/sarah/blob/a9e46e875dfff1dc11255d714bb736e5eb697809/src/drv.py#L24-L47,3, +Python,string to date,https://github.com/EdwinvO/pyutillib/blob/6d773c31d1f27cc5256d47feb8afb5c3ae5f0db5/pyutillib/date_utils.py#L35-L84,2, +Python,normal distribution,https://github.com/janpipek/physt/blob/6dd441b073514e7728235f50b2352d56aacf38d4/physt/examples/__init__.py#L12-L22,2, +Python,get all parents of xml node,https://github.com/klahnakoski/pyLibrary/blob/fa2dcbc48fda8d26999baef400e9a98149e0b982/mo_graphs/tree_graph.py#L39-L44,2, +Python,finding time elapsed using a timer,https://github.com/fermiPy/fermipy/blob/9df5e7e3728307fd58c5bba36fd86783c39fbad4/fermipy/timing.py#L14-L21,2,"In isolation, this result is somewhat useless. Within the context of the entire timing class, this function does exactly what is intended." +Python,randomly extract x items from a list,https://github.com/callowayproject/Calloway/blob/d22e98d41fbd298ab6393ba7bd84a75528be9f81/calloway/apps/django_ext/markov.py#L51-L64,0, +Python,extracting data from a text file,https://github.com/iopipe/iopipe-python/blob/4eb653977341bc67f8b1b87aedb3aaaefc25af61/iopipe/report.py#L82-L117,0, +Python,parse command line argument,https://github.com/clarkperkins/click-shell/blob/8d6e1a492176bc79e029d714f19d3156409656ea/click_shell/core.py#L82-L102,0, +Python,convert json to csv,https://github.com/pybel/pybel/blob/c8a7a1bdae4c475fa2a8c77f3a9a5f6d79556ca0/src/pybel/cli.py#L222-L246,0, +Python,html entities replace,https://github.com/markfinger/django-node/blob/a2f56bf027fd3c4cbc6a0213881922a50acae1d6/django_node/utils.py#L183-L193,1, +Python,heatmap from 3d coordinates,https://github.com/tensorpack/tensorpack/blob/d7a13cb74c9066bc791d7aafc3b744b60ee79a9f/examples/CaffeModels/load-cpm.py#L27-L32,0, +Python,positions of substrings in string,https://github.com/samuelcolvin/buildpg/blob/33cccff45279834d02ec7e97d8417da8fd2a875d/buildpg/funcs.py#L84-L85,2, +Python,extract data from html content,https://github.com/usc-isi-i2/etk/blob/aab077c984ea20f5e8ae33af622fe11d3c4df866/etk/extractors/html_metadata_extractor.py#L40-L90,2, +Python,map to json,https://github.com/ontio/ontology-python-sdk/blob/ac88bdda941896c5d2ced08422a9c5179d3f9b19/ontology/smart_contract/native_contract/governance.py#L403-L414,2, +Python,convert string to number,https://github.com/shidenggui/easytrader/blob/e5ae4daeda4ea125763a95b280dd694c7f68257d/easytrader/helpers.py#L137-L139,2,Extra functions not specified +Python,regex case insensitive,https://github.com/refnode/liquid/blob/8b2b5efc635b0dbfe610db9036fdb4ae3e3d5439/src/liquid/strscan.py#L516-L535,0, +Python,print model summary,https://github.com/ioam/lancet/blob/1fbbf88fa0e8974ff9ed462e3cb11722ddebdd6e/lancet/dynamic.py#L257-L265,1, +Python,get current observable value,https://github.com/ARMmbed/mbed-cloud-sdk-python/blob/c0af86fb2cdd4dc7ed26f236139241067d293509/examples/connect/set-resource.py#L23-L42,0, +Python,hash set for counting distinct elements,https://github.com/merenlab/illumina-utils/blob/246d0611f976471783b83d2aba309b0cb57210f6/IlluminaUtils/lib/fastalib.py#L111-L128,1, +Python,parse json file,https://github.com/lark-parser/lark/blob/a798dec77907e74520dd7e90c7b6a4acc680633a/examples/error_reporting_lalr.py#L32-L58,2, +Python,map to json,https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/hparam.py#L558-L572,2, +Python,export to excel,https://github.com/IAMconsortium/pyam/blob/4077929ca6e7be63a0e3ecf882c5f1da97b287bf/pyam/core.py#L1049-L1070,3, +Python,get current ip address,https://github.com/emc-openstack/storops/blob/24b4b13bf065c0ef0538dd0b5ebb8f25d24176bd/storops/vnx/resource/mover.py#L203-L208,0, +Python,convert int to string,https://github.com/etingof/pysmi/blob/379a0a384c81875731be51a054bdacced6260fd8/pysmi/codegen/base.py#L290-L303,0, +Python,how to reverse a string,https://github.com/keon/algorithms/blob/4d6569464a62a75c1357acc97e2dd32ee2f9f4a3/algorithms/strings/reverse_words.py#L9-L14,2, +Python,convert html to pdf,https://github.com/senaite/senaite.core/blob/7602ce2ea2f9e81eb34e20ce17b98a3e70713f85/bika/lims/browser/referenceanalysis.py#L85-L88,2, +Python,unzipping large files,https://github.com/facelessuser/backrefs/blob/3b3d60f5d57b02044f880aa29c9c5add0e31a34f/tools/unidatadownload.py#L32-L44,2, +Python,how to read .csv file in an efficient way?,https://github.com/meejah/txtorcon/blob/14053b95adf0b4bd9dd9c317bece912a26578a93/txtorcon/socks.py#L119-L129,0, +Python,how to empty array,https://github.com/pymc-devs/pymc/blob/c6e530210bff4c0d7189b35b2c971bc53f93f7cd/pymc/gp/GPutils.py#L34-L50,0, +Python,get executable path,https://github.com/costastf/locationsharinglib/blob/dcd74b0cdb59b951345df84987238763e50ef282/_CI/library/core_library.py#L186-L206,3, +Python,regex case insensitive,https://github.com/goshuirc/irc/blob/d6a5e3e04d337566c009b087f108cd76f9e122cc/girc/imapping.py#L194-L197,0, +Python,sort string list,https://github.com/klahnakoski/pyLibrary/blob/fa2dcbc48fda8d26999baef400e9a98149e0b982/jx_python/containers/doc_store.py#L144-L174,2, +Python,buffered file reader read text,https://github.com/it-geeks-club/pyspectator/blob/356a808b1b29575fd47a85a2611fe50f1afeea8a/pyspectator/temperature_reader.py#L30-L35,0, +Python,binomial distribution,https://github.com/pysal/mapclassify/blob/5b22ec33f5802becf40557614d90cd38efa1676e/mapclassify/classifiers.py#L231-L278,0, +Python,how to check if a checkbox is checked,https://github.com/bbangert/lettuce_webdriver/blob/d11f8531c43bb7150c316e0dc4ccd083617becf7/lettuce_webdriver/webdriver.py#L359-L361,3, +Python,convert decimal to hex,https://github.com/markperdue/pyvesync/blob/7552dd1a6dd5ebc452acf78e33fd8f6e721e8cfc/src/pyvesync/helpers.py#L122-L127,2, +Python,positions of substrings in string,https://github.com/mcs07/ChemDataExtractor/blob/349a3bea965f2073141d62043b89319222e46af1/chemdataextractor/text/processors.py#L104-L108,1, +Python,heatmap from 3d coordinates,https://github.com/flo-compbio/genometools/blob/dd962bb26d60a0f14ca14d8c9a4dd75768962c7d/genometools/expression/matrix.py#L295-L319,1, +Python,html entities replace,https://github.com/html5lib/html5lib-python/blob/4b2275497b624c6e97150fa2eb16a7db7ed42111/utils/entities.py#L82-L89,2, +Python,how to get html of website,https://github.com/pyrogram/pyrogram/blob/e7258a341ba905cfa86264c22040654db732ec1c/examples/inline_queries.py#L16-L51,0, +Python,how to check if a checkbox is checked,https://github.com/MechanicalSoup/MechanicalSoup/blob/027a270febf5bcda6a75db60ea9838d631370f4b/mechanicalsoup/form.py#L99-L146,2, +Python,parse command line argument,https://github.com/bjmorgan/vasppy/blob/cc2d1449697b17ee1c43715a02cddcb1139a6834/vasppy/scripts/xdatcar_to_disp.py#L7-L12,3, +Python,encode url,https://github.com/fadhiilrachman/line-py/blob/b7f5f2b3fc09fa3fbf6088d7ebdaf9e44d96ba69/linepy/server.py#L18-L19,3, +Python,convert html to pdf,https://github.com/RudolfCardinal/pythonlib/blob/0b84cb35f38bd7d8723958dae51b480a829b7227/cardinal_pythonlib/pdf.py#L232-L402,3, +Python,pretty print json,https://github.com/profusion/sgqlc/blob/684afb059c93f142150043cafac09b7fd52bfa27/examples/github/github-agile-dashboard.py#L35-L39,2, +Python,parse json file,https://github.com/lark-parser/lark/blob/a798dec77907e74520dd7e90c7b6a4acc680633a/examples/error_reporting_lalr.py#L32-L58,2, +Python,how to get database table name,https://github.com/firstprayer/monsql/blob/6285c15b574c8664046eae2edfeb548c7b173efd/monsql/wrapper_postgresql.py#L48-L50,2, +Python,how to read the contents of a .gz compressed file?,https://github.com/rfinnie/dsari/blob/cd7b07c30876467393e0ec18f1ff45d86bcb1676/dsari/render.py#L75-L86,3, +Python,deducting the median from each column,https://github.com/EelcoHoogendoorn/Numpy_arraysetops_EP/blob/84dc8114bf8a79c3acb3f7f59128247b9fc97243/numpy_indexed/grouping.py#L343-L382,2, +Python,convert a utc time to epoch,https://github.com/apache/airflow/blob/b69c686ad8a0c89b9136bb4b31767257eb7b2597/airflow/utils/timezone.py#L67-L79,3, +Python,pretty print json,https://github.com/bulkan/robotframework-requests/blob/11baa3277f1cb728712e26d996200703c15254a8/src/RequestsLibrary/RequestsKeywords.py#L460-L477,1, +Python,positions of substrings in string,https://github.com/hollenstein/maspy/blob/f15fcfd24df306d8420540460d902aa3073ec133/maspy/auxiliary.py#L471-L491,3, +Python,get executable path,https://github.com/nikcub/paths/blob/2200b85273d07d7a3c8b15ceb3b03cbb5c11439a/paths/__init__.py#L85-L107,3, +Python,sort string list,https://github.com/qacafe/cdrouter.py/blob/aacf2c6ab0b987250f7b1892f4bba14bb2b7dbe5/cdrouter/cdrouter.py#L282-L288,3, +Python,fuzzy match ranking,https://github.com/sosreport/sos/blob/2ebc04da53dc871c8dd5243567afa4f8592dca29/sos/policies/__init__.py#L713-L724,0, +Python,how to extract zip file recursively,https://github.com/buildinspace/peru/blob/76e4012c6c34e85fb53a4c6d85f4ac3633d93f77/peru/resources/plugins/curl/curl_plugin.py#L117-L137,2, +Python,converting uint8 array to image,https://github.com/BerkeleyAutomation/perception/blob/03d9b37dd6b66896cdfe173905c9413c8c3c5df6/perception/image.py#L252-L291,2, +Python,group by count,https://github.com/rueckstiess/mtools/blob/a6a22910c3569c0c8a3908660ca218a4557e4249/mtools/mplotqueries/plottypes/base_type.py#L79-L91,2, +Python,normal distribution,https://github.com/ajyoon/blur/blob/25fcf083af112bb003956a7a7e1c6ff7d8fef279/blur/rand.py#L252-L300,2, +Python,pretty print json,https://github.com/PSPC-SPAC-buyandsell/von_anchor/blob/78ac1de67be42a676274f4bf71fe12f66e72f309/von_anchor/frill.py#L30-L45,3, +Python,reading element from html - ,https://github.com/lsst-epo/vela/blob/8e17ebec509be5c3cc2063f4645dfe9e26b49c18/astropixie-widgets/astropixie_widgets/visual.py#L39-L53,0, +Python,parse command line argument,https://github.com/bjmorgan/vasppy/blob/cc2d1449697b17ee1c43715a02cddcb1139a6834/vasppy/scripts/proc_poscar.py#L7-L21,3, +Python,get name of enumerated value,https://github.com/pkkid/python-plexapi/blob/9efbde96441c2bfbf410eacfb46e811e108e8bbc/plexapi/settings.py#L132-L139,2, +Python,parse json file,https://github.com/ray-project/ray/blob/4eade036a0505e244c976f36aaa2d64386b5129b/python/ray/tune/automlboard/common/utils.py#L58-L92,2, +Python,randomly extract x items from a list,https://github.com/mozilla/crontabber/blob/b510be349e71f165c1a9506db95bda0b88728f8b/crontabber/generic_app.py#L178-L184,0, +Python,convert decimal to hex,https://github.com/boriel/zxbasic/blob/23b28db10e41117805bdb3c0f78543590853b132/asmlex.py#L226-L239,0, +Python,initializing array,https://github.com/Chilipp/psyplot/blob/75a0a15a9a1dd018e79d2df270d56c4bf5f311d5/psyplot/plotter.py#L1529-L1563,0, +Python,how to extract zip file recursively,https://github.com/jedie/DragonPy/blob/6659e5b5133aab26979a498ee7453495773a4f6c/dragonpy/Multicomp6809/Multicomp6809_rom.py#L39-L54,0, +Python,get name of enumerated value,https://github.com/jborean93/smbprotocol/blob/d8eb00fbc824f97d0f4946e3f768c5e6c723499a/smbprotocol/structure.py#L775-L785,2, +Python,get executable path,https://github.com/etcher-be/elib_run/blob/c9d8ba9f067ab90c5baa27375a92b23f1b97cdde/elib_run/_find_exe.py#L18-L62,2, +Python,aes encryption,https://github.com/ontio/ontology-python-sdk/blob/ac88bdda941896c5d2ced08422a9c5179d3f9b19/ontology/crypto/aes_handler.py#L72-L76,2, +Python,get current ip address,https://github.com/emc-openstack/storops/blob/24b4b13bf065c0ef0538dd0b5ebb8f25d24176bd/storops/vnx/resource/mover.py#L203-L208,2, +Python,html encode string,https://github.com/adsabs/adsutils/blob/fb9d6b4f6ed5e6ca19c552efc3cdd6466c587fdb/adsutils/Unicode.py#L153-L159,1, +Python,extract data from html content,https://github.com/mailgun/talon/blob/cdd84563dd329c4f887591807870d10015e0c7a7/talon/quotations.py#L207-L216,2,call the function that does that... +Python,get current ip address,https://github.com/kencochrane/django-defender/blob/e3e547dbb83235e0d564a6d64652c7df00412ff2/defender/utils.py#L41-L50,3, +Python,convert decimal to hex,https://github.com/mathiasertl/django-ca/blob/976d7ea05276320f20daed2a6d59c8f5660fe976/ca/django_ca/utils.py#L211-L222,3, +Python,randomly extract x items from a list,https://github.com/pereorga/csvshuf/blob/70fdd4f512ef980bffe9cc51bfe59fea116d7c2f/csvshuf/csvshuf.py#L19-L24,1, +Python,json to xml conversion,https://github.com/yyuu/botornado/blob/fffb056f5ff2324d1d5c1304014cfb1d899f602e/boto/cloudfront/identity.py#L77-L84,0, +Python,extracting data from a text file,https://github.com/google/mobly/blob/38ba2cf7d29a20e6a2fca1718eecb337df38db26/mobly/controllers/monsoon.py#L562-L578,3, +Python,encode url,https://github.com/oauthlib/oauthlib/blob/30321dd3c0ca784d3508a1970cf90d9f76835c79/oauthlib/common.py#L83-L89,3, +Python,convert json to csv,https://github.com/apache/airflow/blob/b69c686ad8a0c89b9136bb4b31767257eb7b2597/airflow/contrib/operators/mysql_to_gcs.py#L144-L199,0, +Python,confusion matrix,https://github.com/rjrequina/Cebuano-POS-Tagger/blob/fb1b46448c40b23ac8e8e373f073f1f8934b6dc6/eval/evaluator.py#L72-L92,2, +Python,linear regression,https://github.com/neherlab/treetime/blob/f6cdb58d19243a18ffdaa2b2ec71872fa00e65c0/treetime/treeregression.py#L292-L310,1, +Python,export to excel,https://github.com/rwl/pylon/blob/916514255db1ae1661406f0283df756baf960d14/contrib/pylontk.py#L377-L381,3, +Python,extracting data from a text file,https://github.com/bakwc/JamSpell/blob/bfdfd889436df4dbcd9ec86b20d2baeb815068bd/evaluate/utils.py#L25-L28,1, +Python,replace in file,https://github.com/JesseAldridge/clipmon/blob/5e16a31cf38f64db2d9b7a490968f922aca57512/clipmon.py#L19-L38,1, +Python,sort string list,https://github.com/mirukan/lunafind/blob/77bdfe02df98a7f74d0ae795fee3b1729218995d/lunafind/order.py#L53-L79,2, +Python,parse binary file to custom class,https://github.com/census-instrumentation/opencensus-python/blob/992b223f7e34c5dcb65922b7d5c827e7a1351e7d/opencensus/trace/propagation/binary_format.py#L95-L136,1, +Python,string to date,https://github.com/log2timeline/plaso/blob/9c564698d2da3ffbe23607a3c54c0582ea18a6cc/plaso/parsers/trendmicroav.py#L144-L194,3, +Python,how to empty array,https://github.com/openfisca/openfisca-core/blob/92ce9396e29ae5d9bac5ea604cfce88517c6b35c/openfisca_core/variables.py#L427-L433,3, +Python,socket recv timeout,https://github.com/teepark/greenhouse/blob/8fd1be4f5443ba090346b5ec82fdbeb0a060d956/greenhouse/io/sockets.py#L346-L377,2, +Python,get inner html,https://github.com/miyakogi/wdom/blob/a21bcd23e94baceee71161829f6897bee3fd39c1/wdom/tag.py#L155-L159,3, +Python,copying a file to a path,https://github.com/divio/django-filer/blob/946629087943d41eff290f07bfdf240b8853dd88/filer/admin/folderadmin.py#L1028-L1045,0, +Python,encrypt aes ctr mode,https://github.com/teitei-tk/Simple-AES-Cipher/blob/cb4bc69d762397f3a26f6b009e2b7fa5d706ed5f/simple_aes_cipher/cipher.py#L15-L19,3, +Python,how to get database table name,https://github.com/spulec/moto/blob/4a286c4bc288933bb023396e2784a6fdbb966bc9/moto/glue/models.py#L48-L53,3, +Python,copying a file to a path,https://github.com/joelfrederico/SciSalt/blob/7bf57c49c7dde0a8b0aa337fbd2fbd527ce7a67f/scisalt/facettools/print2elog.py#L13-L23,2, +Python,output to html file,https://github.com/swharden/SWHLab/blob/a86c3c65323cec809a4bd4f81919644927094bf5/swhlab/indexing/indexing.py#L239-L256,3, +Python,convert html to pdf,https://github.com/alexhayes/django-pdfkit/blob/02774ae2cb67d05dd5e4cb50661c56464ebb2413/django_pdfkit/views.py#L55-L74,2, +Python,get inner html,https://github.com/miyakogi/wdom/blob/a21bcd23e94baceee71161829f6897bee3fd39c1/wdom/tag.py#L148-L152,3, +Python,nelder mead optimize,https://github.com/ulf1/oxyba/blob/b3043116050de275124365cb11e7df91fb40169d/oxyba/norm_mle.py#L2-L59,0, +Python,convert html to pdf,https://github.com/nigma/django-easy-pdf/blob/327605b91a445b453d8969b341ef74b12ab00a83/easy_pdf/rendering.py#L51-L78,3, +Python,convert a date string into yyyymmdd,https://github.com/why2pac/dp-tornado/blob/a5948f5693f6ee2d9bab31f611fedc074e1caa96/dp_tornado/helper/datetime/date.py#L74-L76,3, +Python,get current ip address,https://github.com/softlayer/softlayer-python/blob/9f181be08cc3668353b05a6de0cb324f52cff6fa/SoftLayer/CLI/vpn/ipsec/detail.py#L63-L84,1, +Python,nelder mead optimize,https://github.com/SheffieldML/GPyOpt/blob/255539dc5927819ca701e44fe3d76cd4864222fa/GPyOpt/optimization/optimizer.py#L36-L61,1, +Python,deducting the median from each column,https://github.com/modin-project/modin/blob/5b77d242596560c646b8405340c9ce64acb183cb/modin/backends/pandas/query_compiler.py#L1251-L1263,3, +Python,get current observable value,https://github.com/RPi-Distro/python-gpiozero/blob/7b67374fd0c8c4fde5586d9bad9531f076db9c0c/gpiozero/mixins.py#L539-L546,0, +Python,positions of substrings in string,https://github.com/ibis-project/ibis/blob/1e39a5fd9ef088b45c155e8a5f541767ee8ef2e7/ibis/expr/api.py#L1943-L1962,3, +Python,read text file line by line,https://github.com/molmod/molmod/blob/a7b5b4364ed514ad4c465856c05b5eda1cb561e0/molmod/io/cp2k.py#L204-L213,1, +Python,linear regression,https://github.com/tmoerman/arboreto/blob/3ff7b6f987b32e5774771751dea646fa6feaaa52/arboreto/core.py#L105-L141,3, +Python,deducting the median from each column,https://github.com/vstinner/perf/blob/cf096c0c0c955d0aa1c893847fa6393ba4922ada/perf/_utils.py#L481-L484,1, +Python,underline text in label widget,https://github.com/katerina7479/pypdflite/blob/ac2501f30d6619eae9dea5644717575ca9263d0a/pypdflite/pdfobjects/pdftext.py#L165-L172,2, +Python,replace in file,https://github.com/NoviceLive/intellicoder/blob/6cac5ebfce65c370dbebe47756a1789b120ef982/intellicoder/transformers.py#L59-L66,2, +Python,how to get current date,https://github.com/mitsei/dlkit/blob/445f968a175d61c8d92c0f617a3c17dc1dc7c584/dlkit/json_/osid/markers.py#L309-L318,2, +Python,get current process id,https://github.com/jobec/rfc5424-logging-handler/blob/9c4f669c5e54cf382936cd950e2204caeb6d05f0/rfc5424logging/handler.py#L277-L281,1,This is an ID for a specific class. I would guess the query is directed more towards the Process() python class. +Python,convert a utc time to epoch,https://github.com/aws/aws-xray-sdk-python/blob/707358cd3a516d51f2ebf71cf34f00e8d906a667/aws_xray_sdk/core/sampling/connector.py#L136-L149,2, +Python,extract latitude and longitude from given input,https://github.com/City-of-Helsinki/django-munigeo/blob/a358f0dd0eae3add660b650abec2acb4dd86d04c/munigeo/api.py#L222-L241,1, +Python,deserialize json,https://github.com/open511/open511/blob/3d573f59d7efa06ff1b5419ea5ff4d90a90b3cf8/open511/utils/serialization.py#L47-L60,2, +Python,set working directory,https://github.com/biocore/burrito-fillings/blob/02ab71a46119b40793bd56a4ae00ca15f6dc3329/bfillings/mothur.py#L391-L399,1, +Python,read text file line by line,https://github.com/ml4ai/delphi/blob/6d03d8aafeab99610387c51b89c99738ff2abbe3/delphi/translators/for2py/format.py#L99-L138,1, +Python,priority queue,https://github.com/rfk/threading2/blob/7ec234ddd8c0d7e683b1a5c4a79a3d001143189f/threading2/t2_base.py#L372-L378,0, +Python,convert decimal to hex,https://github.com/fabioz/PyDev.Debugger/blob/ed9c4307662a5593b8a7f1f3389ecd0e79b8c503/pydevd_attach_to_process/winappdbg/textio.py#L121-L140,0, +Python,html entities replace,https://github.com/markfinger/django-node/blob/a2f56bf027fd3c4cbc6a0213881922a50acae1d6/django_node/utils.py#L183-L193,1, +Python,how to reverse a string,https://github.com/nilp0inter/cpe/blob/670d947472a7652af5149324977b50f9a7af9bcf/cpe/cpe.py#L115-L146,0, +Python,underline text in label widget,https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/preferences/configdialog.py#L515-L534,0, +Python,convert string to number,https://github.com/pasztorpisti/json-cfg/blob/4627b14a92521ef8a39bbedaa7af8d380d406d07/src/jsoncfg/tree_python.py#L61-L69,2, +Python,get all parents of xml node,https://github.com/klahnakoski/pyLibrary/blob/fa2dcbc48fda8d26999baef400e9a98149e0b982/mo_graphs/tree_graph.py#L39-L44,0, +Python,map to json,https://github.com/grst/geos/blob/ea15abcc5d8f86c9051df55e489b7d941b51a638/geos/server.py#L25-L53,3, +Python,json to xml conversion,https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/parseJATS.py#L2064-L2067,1, +Python,socket recv timeout,https://github.com/AirtestProject/Poco/blob/2c559a586adf3fd11ee81cabc446d4d3f6f2d119/poco/utils/simplerpc/transport/tcp/main.py#L34-L40,3, +Python,regex case insensitive,https://github.com/petermelias/valhalla/blob/b08d7a4a94fd8d85a6f5ea86200ec60ef4525e3d/valhalla/filters/strings.py#L90-L99,3, +Python,how to extract zip file recursively,https://github.com/oscarbranson/latools/blob/cd25a650cfee318152f234d992708511f7047fbe/latools/helpers/utils.py#L43-L65,3, +Python,reading element from html - ,https://github.com/turicas/rows/blob/c74da41ae9ed091356b803a64f8a30c641c5fc45/rows/plugins/plugin_html.py#L177-L183,1, +Python,get the description of a http status code,https://github.com/TestInABox/stackInABox/blob/63ee457401e9a88d987f85f513eb512dcb12d984/stackinabox/util/requests_mock/core.py#L63-L75,2, +Python,encrypt aes ctr mode,https://github.com/ontio/ontology-python-sdk/blob/ac88bdda941896c5d2ced08422a9c5179d3f9b19/ontology/crypto/aes_handler.py#L72-L76,3, +Python,read properties file,https://github.com/openstax/cnx-epub/blob/f648a309eff551b0a68a115a98ddf7858149a2ea/cnxepub/epub.py#L349-L376,1, +Python,normal distribution,https://github.com/janpipek/physt/blob/6dd441b073514e7728235f50b2352d56aacf38d4/physt/examples/__init__.py#L12-L22,3, +Python,converting uint8 array to image,https://github.com/pyviz/holoviews/blob/ae0dd2f3de448b0ca5e9065aabd6ef8d84c7e655/holoviews/operation/datashader.py#L1058-L1069,3, +Python,convert string to number,https://github.com/nickmckay/LiPD-utilities/blob/5dab6bbeffc5effd68e3a6beaca6b76aa928e860/Python/lipd/noaa_lpd.py#L546-L556,3, +Python,pretty print json,https://github.com/alejandroesquiva/AutomaticApiRest-PythonConnector/blob/90e55d5cf953dc8d7186fc6df82a6c6a089a3bbe/build/lib/aarpy/AARConnector.py#L36-L38,3, +Python,extract latitude and longitude from given input,https://github.com/nickmckay/LiPD-utilities/blob/5dab6bbeffc5effd68e3a6beaca6b76aa928e860/Python/lipd/excel.py#L1227-L1269,1, +Python,convert string to number,https://github.com/lawsie/guizero/blob/84c7f0b314fa86f9fc88eb11c9a0f6c4b57155e2/examples/binary_counter.py#L6-L11,0, +Python,converting uint8 array to image,https://github.com/wandb/client/blob/7d08954ed5674fee223cd85ed0d8518fe47266b2/wandb/data_types.py#L727-L746,2, +Python,matrix multiply,https://github.com/cmbruns/pyopenvr/blob/68395d26bb3df6ab1f0f059c38d441f962938be6/src/openvr/gl_renderer.py#L17-L32,0, +Python,create cookie,https://github.com/pypa/pipenv/blob/cae8d76c210b9777e90aab76e9c4b0e53bb19cde/pipenv/vendor/requests/cookies.py#L441-L474,3, +Python,get current observable value,https://github.com/Nekmo/simple-monitor-alert/blob/11d6dbd3c0b3b9a210d6435208066f5636f1f44e/simple_monitor_alert/sma.py#L69-L75,1, +Python,finding time elapsed using a timer,https://github.com/buildbot/buildbot/blob/5df3cfae6d760557d99156633c32b1822a1e130c/master/buildbot/process/metrics.py#L74-L76,1, +Python,copy to clipboard,https://github.com/jedie/DragonPy/blob/6659e5b5133aab26979a498ee7453495773a4f6c/dragonpy/components/periphery.py#L163-L168,3, +Python,convert string to number,https://github.com/balemessenger/bale-bot-python/blob/92bfd60016b075179f16c212fc3fc20a4e5f16f4/balebot/utils/util_functions.py#L70-L75,0, +Python,buffered file reader read text,https://github.com/LionelAuroux/pyrser/blob/f153a97ef2b6bf915a1ed468c0252a9a59b754d5/pyrser/parsing/base.py#L314-L327,1, +Python,regex case insensitive,https://github.com/cltk/cltk/blob/ed9c025b7ec43c949481173251b70e05e4dffd27/cltk/ir/query.py#L24-L37,3, +Python,convert int to string,https://github.com/osrg/ryu/blob/6f906e72c92e10bd0264c9b91a2f7bb85b97780c/ryu/lib/ofctl_utils.py#L206-L210,1,The other way around +Python,create cookie,https://github.com/lorien/grab/blob/8b301db2a08c830245b61c589e58af6234f4db79/grab/cookie.py#L118-L152,2, +Python,confusion matrix,https://github.com/rigetti/grove/blob/dc6bf6ec63e8c435fe52b1e00f707d5ce4cdb9b3/grove/tomography/operator_utils.py#L70-L94,2, +Python,output to html file,https://github.com/pandas-profiling/pandas-profiling/blob/003d236daee8b7aca39c62708b18d59bced0bc03/pandas_profiling/__init__.py#L106-L122,3, +Python,matrix multiply,https://github.com/apache/spark/blob/618d6bff71073c8c93501ab7392c3cc579730f0b/python/pyspark/mllib/linalg/distributed.py#L705-L720,2,"This function is technically correct, but a programmer would find something like np.matmul more useful." +Python,scatter plot,https://github.com/totalgood/nlpia/blob/efa01126275e9cd3c3a5151a644f1c798a9ec53f/src/nlpia/book/examples/ch05_sms_spam_linear_regression.py#L161-L173,3, +Python,scatter plot,https://github.com/theislab/scanpy/blob/9e4e5ee02e04cf618872d9b098e24f0542e8b227/scanpy/plotting/_anndata.py#L30-L179,2, +Python,convert string to number,https://github.com/bcbio/bcbio-nextgen/blob/6a9348c0054ccd5baffd22f1bb7d0422f6978b20/bcbio/pipeline/disambiguate/run.py#L35-L39,1, +Python,how to empty array,https://github.com/pandas-dev/pandas/blob/9feb3ad92cc0397a04b665803a49299ee7aa1037/pandas/core/generic.py#L1878-L1924,0, +Python,httpclient post json,https://github.com/vladcalin/gemstone/blob/325a49d17621b9d45ffd2b5eca6f0de284de8ba4/gemstone/discovery/default.py#L19-L31,3, +Python,memoize to disk - persistent memoization,https://github.com/KelSolaar/Foundations/blob/5c141330faf09dad70a12bc321f4c564917d0a91/foundations/decorators.py#L80-L129,2, +Python,heatmap from 3d coordinates,https://github.com/kgori/treeCl/blob/fed624b3db1c19cc07175ca04e3eda6905a8d305/treeCl/plotter.py#L249-L274,3, +Python,priority queue,https://github.com/open-mmlab/mmcv/blob/0d77f61450aab4dde8b8585a577cc496acb95d7f/mmcv/runner/priority.py#L35-L53,0, +Python,convert a date string into yyyymmdd,https://github.com/gambogi/CSHLDAP/blob/09cb754b1e72437834e0d8cb4c7ac1830cfa6829/CSHLDAP.py#L336-L348,2, +Python,html entities replace,https://github.com/seleniumbase/SeleniumBase/blob/62e5b43ee1f90a9ed923841bdd53b1b38358f43a/seleniumbase/fixtures/email_manager.py#L454-L481,3, +Python,how to randomly pick a number,https://github.com/alvarogzp/telegram-bot-framework/blob/7b597a415c1901901c677976cb13100fc3083107/bot/action/extra/random.py#L35-L47,0, +Python,convert decimal to hex,https://github.com/clach04/python-tuya/blob/7b89d38c56f6e25700e2a333000d25bc8d923622/pytuya/__init__.py#L408-L420,3, +Python,extracting data from a text file,https://github.com/wtsi-hgi/python-common/blob/0376a6b574ff46e82e509e90b6cb3693a3dbb577/hgicommon/data_source/static_from_file.py#L72-L82,2,The extract_data_from_file function would be a better response. +Python,find int in string,https://github.com/klahnakoski/mo-logs/blob/0971277ac9caf28a755b766b70621916957d4fea/mo_logs/strings.py#L294-L315,1, +Python,memoize to disk - persistent memoization,https://github.com/amperser/proselint/blob/cb619ee4023cc7856f5fb96aec2a33a2c9f1a2e2/proselint/tools.py#L99-L147,3, +Python,how to get current date,https://github.com/caktus/django-timepiece/blob/52515dec027664890efbc535429e1ba1ee152f40/timepiece/entries/views.py#L44-L55,1, +Python,convert int to string,https://github.com/MozillaSecurity/laniakea/blob/7e80adc6ae92c6c1332d4c08473bb271fb3b6833/laniakea/core/userdata.py#L43-L51,1, +Python,linear regression,https://github.com/SoftwareDefinedBuildings/XBOS/blob/c12d4fb14518ea3ae98c471c28e0710fdf74dd25/apps/Data_quality_analysis/Model_Data.py#L176-L203,2, +Python,convert int to string,https://github.com/commonwealth-of-puerto-rico/libre/blob/5b32f4ab068b515d2ea652b182e161271ba874e8/libre/apps/data_drivers/models.py#L341-L369,0, +Python,format date,https://github.com/abilian/abilian-core/blob/0a71275bf108c3d51e13ca9e093c0249235351e3/abilian/web/admin/panels/audit.py#L29-L33,2, +Python,get the description of a http status code,https://github.com/vecnet/vecnet.simulation/blob/3a4b3df7b12418c6fa8a7d9cd49656a1c031fc0e/vecnet/simulation/sim_status.py#L47-L54,1,This function is concerned with descriptions for status codes but not with HTTP. +Python,get all parents of xml node,https://github.com/tanghaibao/goatools/blob/407682e573a108864a79031f8ca19ee3bf377626/goatools/obo_parser.py#L205-L211,1, +Python,deducting the median from each column,https://github.com/neherlab/treetime/blob/f6cdb58d19243a18ffdaa2b2ec71872fa00e65c0/treetime/utils.py#L129-L139,2, +Python,html entities replace,https://github.com/tnkteja/myhelp/blob/fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb/virtualEnvironment/lib/python2.7/site-packages/coverage/html.py#L375-L386,2, +Python,pretty print json,https://github.com/onecodex/onecodex/blob/326a0a1af140e3a57ccf31c3c9c5e17a5775c13d/onecodex/utils.py#L112-L121,2, +Python,read text file line by line,https://github.com/tamasgal/km3pipe/blob/7a9b59ac899a28775b5bdc5d391d9a5340d08040/km3pipe/hardware.py#L106-L119,2,Has the key API call (file.readline()) but also has lots of unnecessary information. +Python,convert decimal to hex,https://github.com/talkincode/txradius/blob/b86fdbc9be41183680b82b07d3a8e8ea10926e01/txradius/mschap/mschap.py#L94-L101,1, +Python,aes encryption,https://github.com/konomae/lastpass-python/blob/5063911b789868a1fd9db9922db82cdf156b938a/lastpass/parser.py#L269-L284,3, +Python,sorting multiple arrays based on another arrays sorted order,https://github.com/shawnbot/py-organ/blob/1663b0943dd9d35a43618b4914c839f7c07d7966/organ/__init__.py#L45-L52,2, +Python,parse query string in url,https://github.com/TeamHG-Memex/MaybeDont/blob/34721f67b69d426adda324a0ed905d3860828af9/maybedont/predict.py#L238-L241,1,This is very relevant and it will be interesting to dig the code around this file. +Python,group by count,https://github.com/Koed00/django-q/blob/c84fd11a67c9a47d821786dfcdc189bb258c6f54/django_q/models.py#L48-L51,0, +Python,parse json file,https://github.com/release-engineering/productmd/blob/49256bf2e8c84124f42346241140b986ad7bfc38/productmd/common.py#L302-L315,2, +Python,convert int to string,https://github.com/commonwealth-of-puerto-rico/libre/blob/5b32f4ab068b515d2ea652b182e161271ba874e8/libre/apps/data_drivers/models.py#L341-L369,1, +Python,copy to clipboard,https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/variableexplorer/widgets/arrayeditor.py#L526-L530,1,(query very ambigious) +Python,how to get html of website,https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicemanagement-legacy/azure/servicemanagement/websitemanagementservice.py#L103-L114,1, +Python,convert string to number,https://github.com/pasztorpisti/json-cfg/blob/4627b14a92521ef8a39bbedaa7af8d380d406d07/src/jsoncfg/tree_python.py#L61-L69,2, +Python,string to date,https://github.com/uw-it-aca/uw-restclients/blob/e12dcd32bf5296b6ebdf71798031594afb7852cb/restclients/grad/__init__.py#L26-L32,3, +Python,all permutations of a list,https://github.com/tamasgal/km3pipe/blob/7a9b59ac899a28775b5bdc5d391d9a5340d08040/km3pipe/math.py#L224-L229,1, +Python,encrypt aes ctr mode,https://github.com/ghackebeil/PyORAM/blob/b8832c1b753c0b2148ef7a143c5f5dd3bbbb61e7/examples/aesctr_performance.py#L113-L115,0, +Python,parse command line argument,https://github.com/mozilla/Marketplace.Python/blob/88176b12201f766b6b96bccc1e4c3e82f0676283/example/main.py#L29-L61,2,"This would be complete, just doesn't show an example of retrieving the arguments (i.e., ""args.method"", ""args.attrs"", etc.)" +Python,filter array,https://github.com/jopohl/urh/blob/2eb33b125c8407964cd1092843cde5010eb88aae/src/urh/controller/widgets/SignalFrame.py#L31-L33,0, +Python,convert int to bool,https://github.com/bigchaindb/bigchaindb/blob/835fdfcf598918f76139e3b88ee33dd157acaaa7/bigchaindb/commands/utils.py#L53-L76,3, +Python,filter array,https://github.com/tango-controls/pytango/blob/9cf78c517c9cdc1081ff6d080a9646a740cc1d36/tango/device_proxy.py#L704-L744,1, +Python,hash set for counting distinct elements,https://github.com/cggh/scikit-allel/blob/3c979a57a100240ba959dd13f98839349530f215/allel/model/ndarray.py#L2510-L2520,2, +Python,aes encryption,https://github.com/jcassee/django-geckoboard/blob/6ebdaa86015fe645360abf1ba1290132de4cf6d6/django_geckoboard/decorators.py#L446-L460,3, +Python,parse binary file to custom class,https://github.com/williballenthin/python-evtx/blob/4e9e29544adde64c79ff9b743269ecb18c677eb4/Evtx/BinaryParser.py#L121-L128,0, +Python,how to check if a checkbox is checked,https://github.com/aloetesting/aloe_webdriver/blob/65d847da4bdc63f9c015cb19d4efdee87df8ffad/aloe_webdriver/__init__.py#L542-L547,2, +Python,hash set for counting distinct elements,https://github.com/cggh/scikit-allel/blob/3c979a57a100240ba959dd13f98839349530f215/allel/model/ndarray.py#L2492-L2508,1, +Python,linear regression,https://github.com/synw/dataswim/blob/4a4a53f80daa7cd8e8409d76a19ce07296269da2/dataswim/data/stats.py#L8-L21,3, +Python,find int in string,https://github.com/hubo1016/vlcp/blob/239055229ec93a99cc7e15208075724ccf543bd1/vlcp/service/sdn/plugins/networkvxlandriver.py#L217-L233,0, +Python,deducting the median from each column,https://github.com/neherlab/treetime/blob/f6cdb58d19243a18ffdaa2b2ec71872fa00e65c0/treetime/utils.py#L129-L139,1, +Python,convert decimal to hex,https://github.com/boriel/zxbasic/blob/23b28db10e41117805bdb3c0f78543590853b132/asmlex.py#L226-L239,2, +Python,unique elements,https://github.com/bxlab/bx-python/blob/09cb725284803df90a468d910f2274628d8647de/scripts/bnMapper.py#L102-L117,0, +Python,string similarity levenshtein,https://github.com/Games-and-Simulations/sc-docker/blob/1d7adb9b5839783655564afc4bbcd204a0055dcb/scbw/utils.py#L18-L37,3, +Python,html entities replace,https://github.com/tnkteja/myhelp/blob/fb3a4809d448ad14d5b2e6ddf2e7e89ad52b71cb/virtualEnvironment/lib/python2.7/site-packages/coverage/html.py#L375-L386,3, +Python,how to make the checkbox checked,https://github.com/aloetesting/aloe_webdriver/blob/65d847da4bdc63f9c015cb19d4efdee87df8ffad/aloe_webdriver/__init__.py#L564-L568,0, +Python,buffered file reader read text,https://github.com/LionelAuroux/pyrser/blob/f153a97ef2b6bf915a1ed468c0252a9a59b754d5/pyrser/parsing/base.py#L314-L327,1, +Python,export to excel,https://github.com/gpagliuca/pyfas/blob/5daa1199bd124d315d02bef0ad3888a8f58355b2/build/lib/pyfas/ppl.py#L127-L151,2, +Python,get name of enumerated value,https://github.com/ChristianTremblay/BAC0/blob/8d95b065ea068524a08f5b0c34322ebeeba95d06/BAC0/core/devices/Points.py#L734-L744,0, +Python,set file attrib hidden,https://github.com/mattharrison/rst2odp/blob/4adbf29b28c8207ec882f792ded07e98b1d3e7d0/odplib/preso.py#L170-L175,0, +Python,how to read the contents of a .gz compressed file?,https://github.com/lowandrew/OLCTools/blob/88aa90ac85f84d0bbeb03e43c29b0a9d36e4ce2a/spadespipeline/fileprep.py#L28-L47,0,writes does not read +Python,underline text in label widget,https://github.com/nion-software/nionswift/blob/d43693eaf057b8683b9638e575000f055fede452/nion/swift/Facade.py#L594-L597,1, +Python,httpclient post json,https://github.com/fvalverd/AutoApi-client-Python/blob/a6b04947f80bf988c1515d622c78c587b341b3f4/auto_api_client/__init__.py#L91-L94,3, +Python,get inner html,https://github.com/miyakogi/wdom/blob/a21bcd23e94baceee71161829f6897bee3fd39c1/wdom/tag.py#L155-L159,3, +Python,postgresql connection,https://github.com/Fizzadar/pyinfra/blob/006f751f7db2e07d32522c0285160783de2feb79/pyinfra/modules/postgresql.py#L48-L123,1, +Python,randomly extract x items from a list,https://github.com/Unity-Technologies/ml-agents/blob/37d139af636e4a2351751fbf0f2fca5a9ed7457f/ml-agents/mlagents/trainers/tensorflow_to_barracuda.py#L496-L504,0, +Python,set file attrib hidden,https://github.com/KelSolaar/Umbra/blob/66f45f08d9d723787f1191989f8b0dda84b412ce/umbra/components/factory/script_editor/editor.py#L448-L467,0,Nonsense. +Python,fuzzy match ranking,https://github.com/PrefPy/prefpy/blob/f395ba3782f05684fa5de0cece387a6da9391d02/prefpy/egmm_mixpl.py#L69-L90,0, +Python,read text file line by line,https://github.com/bxlab/bx-python/blob/09cb725284803df90a468d910f2274628d8647de/lib/bx/align/lav.py#L287-L296,1, +Python,convert html to pdf,https://github.com/senaite/senaite.core/blob/7602ce2ea2f9e81eb34e20ce17b98a3e70713f85/bika/lims/browser/referenceanalysis.py#L85-L88,3, +Python,how to get current date,https://github.com/mitsei/dlkit/blob/445f968a175d61c8d92c0f617a3c17dc1dc7c584/dlkit/json_/osid/markers.py#L309-L318,2, +Python,write csv,https://github.com/probcomp/crosscat/blob/4a05bddb06a45f3b7b3e05e095720f16257d1535/src/utils/data_utils.py#L306-L311,2, +Python,html encode string,https://github.com/wdecoster/nanoplotter/blob/80908dd1be585f450da5a66989de9de4d544ec85/nanoplotter/plot.py#L18-L24,1, +Python,linear regression,https://github.com/SoftwareDefinedBuildings/XBOS/blob/c12d4fb14518ea3ae98c471c28e0710fdf74dd25/apps/Data_quality_analysis/Model_Data.py#L176-L203,3, +Python,reading element from html - ,https://github.com/usc-isi-i2/etk/blob/aab077c984ea20f5e8ae33af622fe11d3c4df866/etk/extractors/readability/htmls.py#L106-L116,2, +Python,sort string list,https://github.com/OnroerendErfgoed/skosprovider_getty/blob/5aa0b5a8525d607e07b631499ff31bac7a0348b7/skosprovider_getty/providers.py#L390-L396,2, +Python,replace in file,https://github.com/pantsbuild/pants/blob/b72e650da0df685824ffdcc71988b8c282d0962d/src/python/pants/engine/native.py#L183-L194,0, +Python,convert decimal to hex,https://github.com/restran/mountains/blob/a97fee568b112f4e10d878f815d0db3dd0a98d74/mountains/encoding/converter.py#L163-L170,3, +Python,how to determine a string is a valid word,https://github.com/SpotlightData/preprocessing/blob/180c6472bc2642afbd7a1ece08d0b0d14968a708/preprocessing/spellcheck.py#L91-L101,2, +Python,copy to clipboard,https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/variableexplorer/widgets/collectionseditor.py#L1242-L1252,3, +Python,pretty print json,https://github.com/mosesschwartz/scrypture/blob/d51eb0c9835a5122a655078268185ce8ab9ec86a/scrypture/demo_scripts/Utils/json_pretty_print.py#L8-L14,3, +Python,filter array,https://github.com/ccxt/ccxt/blob/23062efd7a5892c79b370c9d951c03cf8c0ddf23/python/ccxt/base/exchange.py#L692-L693,2, +Python,copying a file to a path,https://github.com/tjguk/winshell/blob/1509d211ab3403dd1cff6113e4e13462d6dec35b/winshell.py#L266-L294,2, +Python,string similarity levenshtein,https://github.com/SignalN/language/blob/5c50c78f65bcc2c999b44d530e7412185248352d/language/ngrams.py#L150-L151,1, +Python,all permutations of a list,https://github.com/CellProfiler/centrosome/blob/7bd9350a2d4ae1b215b81eabcecfe560bbb1f32a/centrosome/filter.py#L1427-L1476,3, +Python,concatenate several file remove header lines,https://github.com/LuminosoInsight/langcodes/blob/0cedf9ca257ebf7250de5d3a63ec33a7d198db58/langcodes/registry_parser.py#L6-L25,1, +Python,parse query string in url,https://github.com/vfxetc/sgactions/blob/e2c6ee14a1f8092e97f57a501650581428a6ac6e/sgactions/dispatch.py#L14-L33,1, +Python,how to get current date,https://github.com/crazy-canux/arguspy/blob/e9486b5df61978a990d56bf43de35f3a4cdefcc3/scripts/check_wmi_sh.py#L226-L238,2, +Python,hash set for counting distinct elements,https://github.com/openstates/billy/blob/5fc795347f12a949e410a8cfad0c911ea6bced67/billy/models/base.py#L414-L416,0, +Python,export to excel,https://github.com/fkarb/xltable/blob/7a592642d27ad5ee90d2aa8c26338abaa9d84bea/xltable/workbook.py#L82-L123,3, +Python,priority queue,https://github.com/keon/algorithms/blob/4d6569464a62a75c1357acc97e2dd32ee2f9f4a3/algorithms/queues/priority_queue.py#L38-L49,2,"The overall class would have been a better response, but from a function-level, this gives the user a good starting point." +Python,sorting multiple arrays based on another arrays sorted order,https://github.com/stevepeak/inquiry/blob/f6ea435c302560ba19985b5d4ce2c97e2f321508/inquiry/query.py#L76-L81,2, +Python,reading element from html - ,https://github.com/alvinwan/md2py/blob/7f28a008367d7d9b5b3c8bbf7baf17985271489f/md2py/md2py.py#L140-L150,2, +Python,export to excel,https://github.com/turicas/rows/blob/c74da41ae9ed091356b803a64f8a30c641c5fc45/rows/plugins/xlsx.py#L152-L193,2, +Python,format date,https://github.com/BernardFW/bernard/blob/9c55703e5ffe5717c9fa39793df59dbfa5b4c5ab/src/bernard/i18n/_formatter.py#L80-L85,3, +Python,finding time elapsed using a timer,https://github.com/ianlini/bistiming/blob/46a78ec647723c3516fc4fc73f2619ab41f647f2/examples/stopwatch_examples.py#L107-L119,1, +Python,get current process id,https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/gurumate-2.8.6-py2.7.egg/gurumate/linux2/procs.py#L43-L46,2, +Python,how to empty array,https://github.com/openclimatedata/pymagicc/blob/d896014832cf458d1e95e5878fd6d5961f3e2e05/pymagicc/io.py#L1652-L1696,0, +Python,deserialize json,https://github.com/jazzband/sorl-thumbnail/blob/22ccd9781462a820f963f57018ad3dcef85053ed/sorl/thumbnail/helpers.py#L55-L58,3, +Python,sorting multiple arrays based on another arrays sorted order,https://github.com/shawnbot/py-organ/blob/1663b0943dd9d35a43618b4914c839f7c07d7966/organ/__init__.py#L45-L52,0, +Python,readonly array,https://github.com/ThreatConnect-Inc/tcex/blob/dd4d7a1ef723af1561687120191886b9a2fd4b47/tcex/tcex_playbook.py#L434-L445,0, +Python,read properties file,https://github.com/readbeyond/aeneas/blob/9d95535ad63eef4a98530cfdff033b8c35315ee1/aeneas/audiofile.py#L330-L376,1, +Python,print model summary,https://github.com/dswah/pyGAM/blob/b3e5c3cd580f0a3ad69f9372861624f67760c325/pygam/pygam.py#L1572-L1661,2, +Python,how to get current date,https://github.com/alexhayes/django-toolkit/blob/b64106392fad596defc915b8235fe6e1d0013b5b/django_toolkit/views.py#L343-L353,0, +Python,print model summary,https://github.com/lrq3000/pyFileFixity/blob/fd5ef23bb13835faf1e3baa773619b86a1cc9bdf/pyFileFixity/lib/profilers/visual/pympler/tracker.py#L126-L134,0, +Python,aes encryption,https://github.com/jcassee/django-geckoboard/blob/6ebdaa86015fe645360abf1ba1290132de4cf6d6/django_geckoboard/decorators.py#L446-L460,2, +Python,print model summary,https://github.com/h2oai/h2o-3/blob/dd62aaa1e7f680a8b16ee14bc66b0fb5195c2ad8/h2o-py/h2o/grid/grid_search.py#L439-L457,3, +Python,get executable path,https://github.com/pypa/pipenv/blob/cae8d76c210b9777e90aab76e9c4b0e53bb19cde/pipenv/utils.py#L1300-L1316,1, +Python,linear regression,https://github.com/SoftwareDefinedBuildings/XBOS/blob/c12d4fb14518ea3ae98c471c28e0710fdf74dd25/apps/Data_quality_analysis/Model_Data.py#L176-L203,1, +Python,convert decimal to hex,https://github.com/maxweisspoker/simplebitcoinfuncs/blob/ad332433dfcc067e86d2e77fa0c8f1a27daffb63/simplebitcoinfuncs/miscbitcoinfuncs.py#L190-L199,2, +Python,how to determine a string is a valid word,https://github.com/benedictpaten/sonLib/blob/1decb75bb439b70721ec776f685ce98e25217d26/bioio.py#L636-L641,1, +Python,scatter plot,https://github.com/maartenbreddels/ipyvolume/blob/e68b72852b61276f8e6793bc8811f5b2432a155f/ipyvolume/widgets.py#L434-L441,3, +Python,string to date,https://github.com/supercoderz/pyeurofx/blob/3f579bb6e4836dadb187df8c74a9d186ae7e39e7/eurofx/common.py#L88-L98,3, +Python,how to get current date,https://github.com/mrcagney/gtfsrtk/blob/16517b4f2a4a1f51d37e691ce3159a8d637e5389/gtfsrtk/main.py#L183-L235,1, +Python,scatter plot,https://github.com/scivision/lowtran/blob/9954d859e53437436103f9ab54a7e2602ecaa1b7/lowtran/plots.py#L12-L49,2, +Python,encrypt aes ctr mode,https://github.com/boldfield/s3-encryption/blob/d88549ba682745dc6b199934c5b5221de7f8d8bc/s3_encryption/crypto.py#L20-L25,2, +Python,get inner html,https://github.com/limodou/uliweb/blob/34472f25e4bc0b954a35346672f94e84ef18b076/uliweb/form/widgets.py#L22-L24,0, +Python,copy to clipboard,https://github.com/Guake/guake/blob/4153ef38f9044cbed6494075fce80acd5809df2b/guake/terminal.py#L136-L141,2, +Python,find int in string,https://github.com/fdb/aufmachen/blob/f2986a0cf087ac53969f82b84d872e3f1c6986f4/aufmachen/websites/immoweb.py#L115-L130,3, +Python,how to reverse a string,https://github.com/mclarkk/lifxlan/blob/ead0e3114d6aa2e5e77dab1191c13c16066c32b0/lifxlan/message.py#L126-L130,2, +Python,connect to sql,https://github.com/census-instrumentation/opencensus-python/blob/992b223f7e34c5dcb65922b7d5c827e7a1351e7d/contrib/opencensus-ext-django/examples/app/views.py#L110-L130,2, +Python,sort string list,https://github.com/OnroerendErfgoed/skosprovider_getty/blob/5aa0b5a8525d607e07b631499ff31bac7a0348b7/skosprovider_getty/providers.py#L390-L396,1, +Python,group by count,https://github.com/facetoe/zenpy/blob/34c54c7e408b9ed01604ddf8b3422204c8bf31ea/zenpy/lib/api_objects/__init__.py#L1283-L1286,0, +Python,save list to file,https://github.com/StanfordBioinformatics/loom/blob/db2031a1a87124fee1aeb7414a668c03d774a698/worker/loomengine_worker/outputs.py#L28-L35,0, +Python,output to html file,https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/doc/examples/dx-apps/report_example/src/report_example.py#L127-L137,3, +Python,parse binary file to custom class,https://github.com/sci-bots/pygtkhelpers/blob/3a6e6d6340221c686229cd1c951d7537dae81b07/pygtkhelpers/debug/console.py#L645-L668,0, +Python,how to reverse a string,https://github.com/keon/algorithms/blob/4d6569464a62a75c1357acc97e2dd32ee2f9f4a3/algorithms/strings/reverse_words.py#L9-L14,2,"it does this, but `reverse()` is not in here..." +Python,heatmap from 3d coordinates,https://github.com/jwkvam/plotlywrapper/blob/762b42912e824fecb1212c186900f2ebdd0ab12b/plotlywrapper.py#L832-L850,3, +Python,all permutations of a list,https://github.com/erikrose/more-itertools/blob/6a91b4e25c8e12fcf9fc2b53cf8ee0fba293e6f9/more_itertools/more.py#L528-L566,3, +Python,finding time elapsed using a timer,https://github.com/AFriemann/simple_tools/blob/27d0f838c23309ebfc8afb59511220c6f8bb42fe/simple_tools/contextmanagers/time.py#L16-L20,3, +Python,get the description of a http status code,https://github.com/ronaldguillen/wave/blob/20bb979c917f7634d8257992e6d449dc751256a9/wave/renderers.py#L568-L571,2, +Python,nelder mead optimize,https://github.com/SheffieldML/GPyOpt/blob/255539dc5927819ca701e44fe3d76cd4864222fa/GPyOpt/acquisitions/base.py#L52-L60,1, +Python,custom http error response,https://github.com/swevm/scaleio-py/blob/d043a0137cb925987fd5c895a3210968ce1d9028/scaleiopy/im.py#L171-L200,1, +Python,filter array,https://github.com/jim-easterbrook/pyctools/blob/2a958665326892f45f249bebe62c2c23f306732b/src/pyctools/components/interp/resize.py#L77-L95,0, +Python,filter array,https://github.com/jim-easterbrook/python-gphoto2/blob/345e0f4457442ecd1aa4dc2ce8f8272c0910f91e/examples/cam-conf-view-gui.py#L265-L274,2, +Python,socket recv timeout,https://github.com/cablehead/vanilla/blob/c9f5b86f45720a30e8840fb68b1429b919c4ca66/vanilla/message.py#L57-L58,1,"The query here is very vague, as is the code, so it's hard to say." +Python,print model summary,https://github.com/h2oai/h2o-3/blob/dd62aaa1e7f680a8b16ee14bc66b0fb5195c2ad8/h2o-py/h2o/grid/grid_search.py#L439-L457,3, +Python,convert string to number,https://github.com/LettError/MutatorMath/blob/10318fc4e7c9cee9df6130826829baea3054a42b/Lib/mutatorMath/objects/location.py#L14-L29,0, +Python,readonly array,https://github.com/mattja/sdeint/blob/7cf807cdf97b3bb39d29e1c2dc834b519499b601/sdeint/_broadcast.py#L70-L108,3, +Python,print model summary,https://github.com/dswah/pyGAM/blob/b3e5c3cd580f0a3ad69f9372861624f67760c325/pygam/pygam.py#L1572-L1661,2, +Python,all permutations of a list,https://github.com/CellProfiler/centrosome/blob/7bd9350a2d4ae1b215b81eabcecfe560bbb1f32a/centrosome/filter.py#L1427-L1476,3, +Python,save list to file,https://github.com/tzutalin/labelImg/blob/6afd15aa88f89f41254e0004ed219b3965eb2c0d/labelImg.py#L1295-L1297,1, +Python,aes encryption,https://github.com/jaredLunde/vital-tools/blob/ea924c9bbb6ec22aa66f8095f018b1ee0099ac04/vital/security/__init__.py#L79-L98,3, +Python,parse query string in url,https://github.com/zeromake/aiko/blob/53b246fa88652466a9e38ac3d1a99a6198195b0f/aiko/request.py#L329-L336,3, +Python,create cookie,https://github.com/IdentityPython/oidcendpoint/blob/6c1d729d51bfb6332816117fe476073df7a1d823/src/oidcendpoint/cookie.py#L369-L404,2, +Python,get inner html,https://github.com/limodou/uliweb/blob/34472f25e4bc0b954a35346672f94e84ef18b076/uliweb/form/widgets.py#L22-L24,0, +Python,parse binary file to custom class,https://github.com/jldantas/libmft/blob/65a988605fe7663b788bd81dcb52c0a4eaad1549/libmft/attribute.py#L1599-L1630,2, +Python,encrypt aes ctr mode,https://github.com/ghackebeil/PyORAM/blob/b8832c1b753c0b2148ef7a143c5f5dd3bbbb61e7/examples/aesctr_performance.py#L113-L115,1, +Python,encrypt aes ctr mode,https://github.com/ontio/ontology-python-sdk/blob/ac88bdda941896c5d2ced08422a9c5179d3f9b19/ontology/crypto/aes_handler.py#L72-L76,2,The returned function uses a CBC cipher (as opposed to a CTR cipher). +Python,sorting multiple arrays based on another arrays sorted order,https://github.com/JoseAntFer/pyny3d/blob/fb81684935a24f7e50c975cb4383c81a63ab56df/pyny3d/utils.py#L8-L33,3, +Python,parse binary file to custom class,https://github.com/log2timeline/plaso/blob/9c564698d2da3ffbe23607a3c54c0582ea18a6cc/plaso/parsers/custom_destinations.py#L85-L209,2, +Python,string similarity levenshtein,https://github.com/Shoobx/xmldiff/blob/ec7835bce9ba69ff4ce03ab6c11397183b6f8411/xmldiff/_diff_match_patch_py3.py#L1110-L1134,3, +Python,replace in file,https://github.com/chaoss/grimoirelab-manuscripts/blob/94a3ad4f11bfbcd6c5190e01cb5d3e47a5187cd9/manuscripts/report.py#L812-L824,3, +Python,write csv,https://github.com/probcomp/crosscat/blob/4a05bddb06a45f3b7b3e05e095720f16257d1535/src/utils/data_utils.py#L306-L311,3,bad code... +Python,convert a utc time to epoch,https://github.com/pymacaron/pymacaron/blob/af244f203f8216108b39d374d46bf8e1813f13d5/pymacaron/utils.py#L48-L60,3, +Python,read text file line by line,https://github.com/adrienverge/yamllint/blob/fec2c2fba736cabf6bee6b5eeb905cab0dc820f6/yamllint/rules/new_line_at_end_of_file.py#L34-L37,0, +Python,regex case insensitive,https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/utils/stringmatching.py#L18-L47,1, +Python,copying a file to a path,https://github.com/dsoprea/PathManifest/blob/0f5cfd4925a61cc0eac150ff354200392d07ec74/pm/manifest.py#L239-L271,0, +Python,convert string to number,https://github.com/nickmckay/LiPD-utilities/blob/5dab6bbeffc5effd68e3a6beaca6b76aa928e860/Python/lipd/noaa_lpd.py#L546-L556,2, +Python,read text file line by line,https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/widgets/mixins.py#L499-L507,2, +Python,parse query string in url,https://github.com/knipknap/exscript/blob/72718eee3e87b345d5a5255be9824e867e42927b/Exscript/util/url.py#L72-L103,3, +Python,extracting data from a text file,https://github.com/google/mobly/blob/38ba2cf7d29a20e6a2fca1718eecb337df38db26/mobly/controllers/monsoon.py#L562-L578,2,Good example but extracts the file's contents into an object which is likely irrelevant to the user. +Python,unique elements,https://github.com/shoebot/shoebot/blob/d554c1765c1899fa25727c9fc6805d221585562b/lib/graph/cluster.py#L16-L20,3, +Python,deducting the median from each column,https://github.com/vstinner/perf/blob/cf096c0c0c955d0aa1c893847fa6393ba4922ada/perf/_utils.py#L481-L484,3, +Python,how to randomly pick a number,https://github.com/ManiacalLabs/BiblioPixelAnimations/blob/fba81f6b94f5265272a53f462ef013df1ccdb426/BiblioPixelAnimations/strip/WhiteTwinkle.py#L68-L77,2, +Python,convert int to bool,https://github.com/RudolfCardinal/pythonlib/blob/0b84cb35f38bd7d8723958dae51b480a829b7227/cardinal_pythonlib/convert.py#L43-L73,1, +Python,get all parents of xml node,https://github.com/klahnakoski/pyLibrary/blob/fa2dcbc48fda8d26999baef400e9a98149e0b982/mo_graphs/algorithms.py#L115-L202,0,Concerned with trees but not XML files. +Python,encode url,https://github.com/defensio/defensio-python/blob/c1d2b64be941acb63c452a6d9a5526c59cb37007/defensio/__init__.py#L121-L125,3, +Python,map to json,https://github.com/GNS3/gns3-server/blob/a221678448fb5d24e977ef562f81d56aacc89ab1/gns3server/compute/vmware/vmware_vm.py#L75-L91,2, +Python,print model summary,https://github.com/timothyb0912/pylogit/blob/f83b0fd6debaa7358d87c3828428f6d4ead71357/pylogit/base_multinomial_cm_v2.py#L1556-L1572,2, +Python,get current process id,https://github.com/fabioz/PyDev.Debugger/blob/ed9c4307662a5593b8a7f1f3389ecd0e79b8c503/pydevd_attach_to_process/winappdbg/thread.py#L204-L226,2, +Python,priority queue,https://github.com/LogicalDash/LiSE/blob/fe6fd4f0a7c1780e065f4c9babb9bc443af6bb84/ELiDE/ELiDE/board/pawn.py#L105-L108,1, +Python,extract data from html content,https://github.com/usc-isi-i2/etk/blob/aab077c984ea20f5e8ae33af622fe11d3c4df866/etk/cli/html_content_extractor.py#L20-L32,3, +Python,json to xml conversion,https://github.com/yyuu/botornado/blob/fffb056f5ff2324d1d5c1304014cfb1d899f602e/boto/cloudfront/identity.py#L77-L84,0, +Python,convert int to bool,https://github.com/Rapptz/discord.py/blob/05d4f7f9620ef33635d6ac965b26528e09cdaf5b/discord/ext/commands/core.py#L94-L101,2, +Python,aes encryption,https://github.com/pedroburon/tbk/blob/ecd6741e0bae06269eb4ac885c3ffcb7902ee40e/tbk/webpay/encryption.py#L36-L42,3, +Python,nelder mead optimize,https://github.com/zblz/naima/blob/d6a6781d73bf58fd8269e8b0e3b70be22723cd5b/naima/extern/minimize.py#L66-L67,3, +Python,how to reverse a string,https://github.com/tornadoweb/tornado/blob/b8b481770bcdb333a69afde5cce7eaa449128326/tornado/web.py#L2209-L2222,0, +Python,get current observable value,https://github.com/RPi-Distro/python-gpiozero/blob/7b67374fd0c8c4fde5586d9bad9531f076db9c0c/gpiozero/mixins.py#L539-L546,1, +Python,convert a utc time to epoch,https://github.com/myusuf3/delorean/blob/3e8a7b8cfd4c26546f62bde2f34002893adfa08a/delorean/dates.py#L492-L512,2, +Python,memoize to disk - persistent memoization,https://github.com/amperser/proselint/blob/cb619ee4023cc7856f5fb96aec2a33a2c9f1a2e2/proselint/tools.py#L99-L147,3, +Python,custom http error response,https://github.com/alpacahq/alpaca-trade-api-python/blob/9c9dea3b4a37c909f88391b202e86ff356a8b4d7/alpaca_trade_api/rest.py#L40-L43,1, +Python,initializing array,https://github.com/gbiggs/rtsprofile/blob/fded6eddcb0b25fe9808b1b12336a4413ea00905/rtsprofile/rts_profile.py#L500-L503,0, +Python,heatmap from 3d coordinates,https://github.com/jwkvam/plotlywrapper/blob/762b42912e824fecb1212c186900f2ebdd0ab12b/doc/figures.py#L43-L45,2, +Python,format date,https://github.com/geex-arts/django-jet/blob/64d5379f8a2278408694ce7913bf25f26035b855/jet/dashboard/dashboard_modules/google_analytics.py#L267-L279,2, +Python,format date,https://github.com/binux/pyspider/blob/3fccfabe2b057b7a56d4a4c79dc0dd6cd2239fe9/pyspider/libs/utils.py#L72-L130,1, +Python,normal distribution,https://github.com/alejoe91/MEAutility/blob/7c2b0da52c2752a3baf04e8e248e26b0769cd088/MEAutility/core.py#L326-L338,0, +Python,positions of substrings in string,https://github.com/ChrisCummins/labm8/blob/dd10d67a757aefb180cb508f86696f99440c94f5/text.py#L40-L52,3, +Python,parse json file,https://github.com/nkmathew/yasi-sexp-indenter/blob/6ec2a4675e79606c555bcb67494a0ba994b05805/yasi.py#L551-L568,1, +Python,regex case insensitive,https://github.com/DBuildService/dockerfile-parse/blob/3d7b514d8b8eded1b33529cf0f6a0770a573aee0/dockerfile_parse/parser.py#L708-L722,0, +Python,readonly array,https://github.com/SmokinCaterpillar/pypet/blob/97ad3e80d46dbdea02deeb98ea41f05a19565826/pypet/storageservice.py#L5026-L5042,0, +Python,confusion matrix,https://github.com/numenta/nupic/blob/5922fafffdccc8812e72b3324965ad2f7d4bbdad/src/nupic/regions/knn_classifier_region.py#L684-L688,1, +Python,get current process id,https://github.com/jobec/rfc5424-logging-handler/blob/9c4f669c5e54cf382936cd950e2204caeb6d05f0/rfc5424logging/handler.py#L277-L281,1, +Python,binomial distribution,https://github.com/QInfer/python-qinfer/blob/8170c84a0be1723f8c6b09e0d3c7a40a886f1fe3/src/qinfer/distributions.py#L1078-L1082,3, +Python,write csv,https://github.com/fastai/fastai/blob/9fb84a5cdefe5a766cdb792b8f5d8971737b7e67/fastai/widgets/image_cleaner.py#L209-L218,3, +Python,parse query string in url,https://github.com/jdp/urp/blob/778c16d9a5eae75316ce20aad742af7122be558c/urp.py#L17-L22,2, +Python,string similarity levenshtein,https://github.com/mcs07/ChemDataExtractor/blob/349a3bea965f2073141d62043b89319222e46af1/chemdataextractor/text/__init__.py#L232-L258,3, +Python,finding time elapsed using a timer,https://github.com/indygreg/python-zstandard/blob/74fa5904c3e7df67a4260344bf919356a181487e/bench.py#L32-L71,2, +Python,hash set for counting distinct elements,https://github.com/emc-openstack/storops/blob/24b4b13bf065c0ef0538dd0b5ebb8f25d24176bd/storops/vnx/resource/disk.py#L141-L166,0, +Python,binomial distribution,https://github.com/tisimst/mcerp/blob/2bb8260c9ad2d58a806847f1b627b6451e407de1/mcerp/__init__.py#L1150-L1167,3, +Python,how to get html of website,https://github.com/audreyr/alotofeffort/blob/06deca82a70fa9896496fd44c8c6f24707396c50/alotofeffort/main.py#L9-L30,0, +Python,extracting data from a text file,https://github.com/lcharleux/argiope/blob/8170e431362dc760589f7d141090fd133dece259/argiope/abq/pypostproc.py#L23-L49,1, +Python,export to excel,https://github.com/MacHu-GWU/pymongo_mate-project/blob/be53170c2db54cb705b9e548d32ef26c773ff7f3/pymongo_mate/pkg/pandas_mate/sql_io.py#L55-L97,0,exact opposite +Python,how to empty array,https://github.com/openclimatedata/pymagicc/blob/d896014832cf458d1e95e5878fd6d5961f3e2e05/pymagicc/io.py#L1652-L1696,0, +Python,nelder mead optimize,https://github.com/atztogo/phonopy/blob/869cc2ba9e7d495d5f4cf6942415ab3fc9e2a10f/phonopy/qha/eos.py#L111-L140,0, +Python,sort string list,https://github.com/opencobra/cobrapy/blob/9d1987cdb3a395cf4125a3439c3b002ff2be2009/cobra/io/dict.py#L149-L184,0, +Python,how to get current date,https://github.com/caktus/django-timepiece/blob/52515dec027664890efbc535429e1ba1ee152f40/timepiece/entries/views.py#L44-L55,2, +Python,set working directory,https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L577-L583,1, +Python,convert html to pdf,https://github.com/tutorcruncher/pydf/blob/53dd030f02f112593ed6e2655160a40b892a23c0/docker-entrypoint.py#L36-L53,2, +Python,group by count,https://github.com/Koed00/django-q/blob/c84fd11a67c9a47d821786dfcdc189bb258c6f54/django_q/models.py#L53-L55,2, +Python,how to determine a string is a valid word,https://github.com/nickmckay/LiPD-utilities/blob/5dab6bbeffc5effd68e3a6beaca6b76aa928e860/Python/lipd/noaa_lpd.py#L559-L575,0, +Python,encrypt aes ctr mode,https://github.com/teitei-tk/Simple-AES-Cipher/blob/cb4bc69d762397f3a26f6b009e2b7fa5d706ed5f/simple_aes_cipher/cipher.py#L15-L19,1, +Python,initializing array,https://github.com/mbakker7/timml/blob/91e99ad573cb8a9ad8ac1fa041c3ca44520c2390/timml/linesink.py#L567-L595,3, +Python,group by count,https://github.com/hcpl/xkbgroup/blob/fcf4709a3c8221e0cdf62c09e5cccda232b0104c/xkbgroup/core.py#L242-L258,1, +Python,get name of enumerated value,https://github.com/ibelie/typy/blob/3616845fb91459aacd8df6bf82c5d91f4542bee7/typy/Proto.py#L266-L274,2, +Python,parse command line argument,https://github.com/bjmorgan/vasppy/blob/cc2d1449697b17ee1c43715a02cddcb1139a6834/vasppy/scripts/check_species.py#L14-L19,2, +Python,extract latitude and longitude from given input,https://github.com/Iotic-Labs/py-IoticAgent/blob/893e8582ad1dacfe32dfc0ee89452bbd6f57d28d/src/IoticAgent/Core/Validation.py#L239-L245,1,relevant but not exactly what the query asks for +Python,get executable path,https://github.com/ga4gh/ga4gh-common/blob/ea1b562dce5bf088ac4577b838cfac7745f08346/ga4gh/common/utils.py#L30-L40,2, +Python,how to get current date,https://github.com/iloob/python-periods/blob/8988373522907d72c0ee5896c2ffbb573a8500d9/periods/week.py#L21-L30,0, +Python,encrypt aes ctr mode,https://github.com/boldfield/s3-encryption/blob/d88549ba682745dc6b199934c5b5221de7f8d8bc/s3_encryption/crypto.py#L20-L25,2, +Python,convert int to bool,https://github.com/thebjorn/pydeps/blob/1e6715b7bea47a40e8042821b57937deaaa0fdc3/pydeps/arguments.py#L20-L31,3, +Python,how to extract zip file recursively,https://github.com/jedie/DragonPy/blob/6659e5b5133aab26979a498ee7453495773a4f6c/dragonpy/components/rom.py#L101-L134,1, +Python,get the description of a http status code,https://github.com/mar10/wsgidav/blob/cec0d84222fc24bea01be1cea91729001963f172/wsgidav/dav_error.py#L264-L274,2, +Python,read text file line by line,https://github.com/chrisjsewell/jsonextended/blob/c3a7a880cc09789b3c61204265dcbb127be76c8a/jsonextended/mockpath.py#L44-L54,0, +Python,fuzzy match ranking,https://github.com/mbodenhamer/syn/blob/aeaa3ad8a49bac8f50cf89b6f1fe97ad43d1d258/syn/base_utils/logic.py#L59-L61,0, +Python,connect to sql,https://github.com/guilhermechapiewski/simple-db-migrate/blob/7ea6ffd0c58f70079cc344eae348430c7bdaaab3/simple_db_migrate/mysql.py#L30-L40,3, +Python,get the description of a http status code,https://github.com/funilrys/PyFunceble/blob/cdf69cbde120199171f7158e1c33635753e6e2f5/PyFunceble/http_code.py#L157-L204,3, +Python,json to xml conversion,https://github.com/open511/open511/blob/3d573f59d7efa06ff1b5419ea5ff4d90a90b3cf8/open511/converter/o5json.py#L9-L63,2, +Python,nelder mead optimize,https://github.com/apache/incubator-mxnet/blob/1af29e9c060a4c7d60eeaacba32afdb9a7775ba7/example/image-classification/symbols/vgg.py#L27-L35,0, +Python,get current process id,https://github.com/opereto/pyopereto/blob/16ca987738a7e1b82b52b0b099794a74ed557223/pyopereto/client.py#L1163-L1175,3, +Python,extracting data from a text file,https://github.com/santoshphilip/eppy/blob/55410ff7c11722f35bc4331ff5e00a0b86f787e1/eppy/EPlusInterfaceFunctions/parse_idd.py#L142-L385,1, +Python,string to date,https://github.com/uw-it-aca/uw-restclients-iasystem/blob/f65f169d54b0d39e2d732cba529ccd8b6cb49f8a/uw_iasystem/evaluation.py#L192-L199,2, +Python,extract latitude and longitude from given input,https://github.com/Turbo87/utm/blob/efdd46ab0a341ce2aa45f8144d8b05a4fa0fd592/utm/conversion.py#L261-L283,1, +Python,get the description of a http status code,https://github.com/ronaldguillen/wave/blob/20bb979c917f7634d8257992e6d449dc751256a9/wave/renderers.py#L568-L571,0, +Python,json to xml conversion,https://github.com/geopy/geopy/blob/02c838d965e76497f3c3d61f53808c86b5c58224/geopy/geocoders/ignfrance.py#L444-L527,1, +Python,priority queue,https://github.com/ask/ghettoq/blob/22a0fcd865b618cbbbfd102efd88a7983507c24e/ghettoq/backends/beanstalk.py#L32-L34,1, +Python,deducting the median from each column,https://github.com/satellogic/telluric/blob/e752cd3ee71e339f79717e526fde362e80055d9e/telluric/plotting.py#L56-L79,0, +Python,map to json,https://github.com/kyper-data/python-highcharts/blob/a4c488ae5c2e125616efad5a722f3dfd8a9bc450/highcharts/highmaps/highmaps.py#L292-L315,1, +Python,k means clustering,https://github.com/markovmodel/PyEMMA/blob/5c3124398217de05ba5ce9c8fb01519222481ab8/pyemma/coordinates/api.py#L1695-L1829,3, +Python,html entities replace,https://github.com/honzajavorek/tipi/blob/cbe51192725608b6fba1244a48610ae231b13e08/tipi/repl.py#L65-L74,1, +Python,set file attrib hidden,https://github.com/drestebon/papageorge/blob/a30ea59bf6b4f5d151bd3f476a0a8357d89495d4/lib/papageorge/cli.py#L573-L579,0, +Python,aes encryption,https://github.com/ontio/ontology-python-sdk/blob/ac88bdda941896c5d2ced08422a9c5179d3f9b19/ontology/crypto/aes_handler.py#L72-L76,3, +Python,scatter plot,https://github.com/SheffieldML/GPy/blob/54c32d79d289d622fb18b898aee65a2a431d90cf/GPy/plotting/matplot_dep/plot_definitions.py#L99-L102,3, +Python,set working directory,https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L577-L583,1, +Python,convert html to pdf,https://github.com/alexhayes/django-pdfkit/blob/02774ae2cb67d05dd5e4cb50661c56464ebb2413/django_pdfkit/views.py#L55-L74,1, +Python,custom http error response,https://github.com/nestauk/gtr/blob/49e1b8db1f4376612ea1ec8585a79375fa15a899/gtr/services/base.py#L25-L33,3, +Python,output to html file,https://github.com/swharden/SWHLab/blob/a86c3c65323cec809a4bd4f81919644927094bf5/swhlab/indexing/indexing.py#L239-L256,0, +Python,extract data from html content,https://github.com/kibitzr/kibitzr/blob/749da312488f1dda1ed1093cf4c95aaac0a604f7/kibitzr/transformer/jinja_transform.py#L81-L88,3, +Python,unzipping large files,https://github.com/OLC-Bioinformatics/sipprverse/blob/d4f10cdf8e1a39dac0953db61c21c97efc6006de/cgecore/utility.py#L471-L484,1, +Python,scatter plot,https://github.com/theislab/scanpy/blob/9e4e5ee02e04cf618872d9b098e24f0542e8b227/scanpy/plotting/_anndata.py#L30-L179,3, +Python,k means clustering,https://github.com/markovmodel/PyEMMA/blob/5c3124398217de05ba5ce9c8fb01519222481ab8/pyemma/coordinates/api.py#L1645-L1692,3, +Python,convert a utc time to epoch,https://github.com/DataBiosphere/dsub/blob/443ce31daa6023dc2fd65ef2051796e19d18d5a7/dsub/providers/google.py#L466-L473,1, +Python,heatmap from 3d coordinates,https://github.com/widdowquinn/pyani/blob/2b24ec971401e04024bba896e4011984fe3f53f0/pyani/pyani_graphics.py#L219-L228,2, +Python,aes encryption,https://github.com/pedroburon/tbk/blob/ecd6741e0bae06269eb4ac885c3ffcb7902ee40e/tbk/webpay/encryption.py#L36-L42,3, +Python,convert json to csv,https://github.com/linkedin/naarad/blob/261e2c0760fd6a6b0ee59064180bd8e3674311fe/lib/luminol/src/luminol/utils.py#L40-L58,0, +Python,linear regression,https://github.com/neherlab/treetime/blob/f6cdb58d19243a18ffdaa2b2ec71872fa00e65c0/treetime/treeregression.py#L292-L310,0, +Python,extract data from html content,https://github.com/mailgun/talon/blob/cdd84563dd329c4f887591807870d10015e0c7a7/talon/quotations.py#L207-L216,0, +Python,group by count,https://github.com/shazow/unstdlib.py/blob/e0632fe165cfbfdb5a7e4bc7b412c9d6f2ebad83/unstdlib/standard/list_.py#L16-L36,3, +Python,extract data from html content,https://github.com/tintinweb/pyetherchain/blob/cfeee3944b84fd12842ec3031d1d08ec7d63d33c/pyetherchain/pyetherchain.py#L185-L193,2, +Python,parse query string in url,https://github.com/knipknap/exscript/blob/72718eee3e87b345d5a5255be9824e867e42927b/Exscript/util/url.py#L72-L103,3, +Python,extract latitude and longitude from given input,https://github.com/pvlib/pvlib-python/blob/2e844a595b820b43d1170269781fa66bd0ccc8a3/pvlib/iotools/ecmwf_macc.py#L199-L228,0, +Python,json to xml conversion,https://github.com/telefonicaid/fiware-sdc/blob/d2d5f87fc574caf6bcc49594bbcb31f620ba8c51/python-sdcclient/utils/rest_client_utils.py#L178-L186,0, +Python,httpclient post json,https://github.com/rigetti/pyquil/blob/ec98e453084b0037d69d8c3245f6822a5422593d/pyquil/api/_base_connection.py#L52-L59,2, +Python,linear regression,https://github.com/raphaelvallat/pingouin/blob/58b19fa4fffbfe09d58b456e3926a148249e4d9b/pingouin/regression.py#L10-L223,3, +Python,matrix multiply,https://github.com/AndrewAnnex/SpiceyPy/blob/fc20a9b9de68b58eed5b332f0c051fb343a6e335/spiceypy/spiceypy.py#L8663-L8689,3, +Python,parse command line argument,https://github.com/bjmorgan/vasppy/blob/cc2d1449697b17ee1c43715a02cddcb1139a6834/vasppy/scripts/xdatcar_to_rdf.py#L9-L17,3, +Python,nelder mead optimize,https://github.com/zblz/naima/blob/d6a6781d73bf58fd8269e8b0e3b70be22723cd5b/naima/extern/minimize.py#L66-L67,3, +Python,get current process id,https://github.com/Jaymon/prom/blob/b7ad2c259eca198da03e1e4bc7d95014c168c361/prom/query.py#L1458-L1464,3, +Python,httpclient post json,https://github.com/docker/docker-py/blob/613d6aad83acc9931ff2ecfd6a6c7bd8061dc125/docker/api/client.py#L275-L289,3, +Python,set working directory,https://github.com/materialsproject/pymatgen/blob/4ca558cf72f8d5f8a1f21dfdfc0181a971c186da/pymatgen/io/abinit/flows.py#L1718-L1752,2, +Python,sorting multiple arrays based on another arrays sorted order,https://github.com/radujica/baloo/blob/f6e05e35b73a75e8a300754c6bdc575e5f2d53b9/baloo/weld/weld_ops.py#L464-L491,1, +Python,custom http error response,https://github.com/JamesGardiner/chwrapper/blob/50f9cb2f5264c59505e8cc4e45ee6dc5d5669134/chwrapper/services/base.py#L97-L109,2, +Python,connect to sql,https://github.com/coleifer/peewee/blob/ea9403b01acb039adb3a2472186d795c796b77a0/playhouse/mysql_ext.py#L14-L17,2, +Python,save list to file,https://github.com/ioam/lancet/blob/1fbbf88fa0e8974ff9ed462e3cb11722ddebdd6e/lancet/filetypes.py#L264-L267,2, +Python,map to json,https://github.com/hackedd/gw2api/blob/5543a78e6e3ed0573b7e84c142c44004b4779eac/gw2api/map.py#L50-L105,1, +Python,concatenate several file remove header lines,https://github.com/danielhrisca/asammdf/blob/3c7a1fd19c957ceebe4dcdbb2abf00806c2bdb66/asammdf/mdf.py#L1821-L2190,2, +Python,save list to file,https://github.com/QualiSystems/vCenterShell/blob/e2e24cd938a92a68f4a8e6a860810d3ef72aae6d/package/cloudshell/cp/vcenter/commands/save_sandbox.py#L38-L91,1, +Python,encode url,https://github.com/yunpian/yunpian-python-sdk/blob/405a1196ec83fdf29ff454f74ef036974be11970/yunpian_python_sdk/ypclient.py#L195-L208,3, +Python,finding time elapsed using a timer,https://github.com/andrewramsay/sk8-drivers/blob/67347a71762fb421f5ae65a595def5c7879e8b0c/pysk8/calibration/sk8_calibration_gui.py#L49-L57,2, +Python,parse query string in url,https://github.com/googleapis/google-auth-library-python/blob/2c6ad78917e936f38f87c946209c8031166dc96e/google/auth/_helpers.py#L130-L173,3, +Python,how to get current date,https://github.com/airbus-cert/mispy/blob/6d523d6f134d2bd38ec8264be74e73b68403da65/mispy/misp.py#L595-L605,3, +Python,convert int to bool,https://github.com/boriel/zxbasic/blob/23b28db10e41117805bdb3c0f78543590853b132/arch/zx48k/backend/__init__.py#L2193-L2207,0, +Python,encode url,https://github.com/defensio/defensio-python/blob/c1d2b64be941acb63c452a6d9a5526c59cb37007/defensio/__init__.py#L121-L125,3, +Python,matrix multiply,https://github.com/fogleman/pg/blob/124ea3803c788b2c98c4f3a428e5d26842a67b58/pg/core.py#L93-L97,3, +Python,how to get database table name,https://github.com/apache/airflow/blob/b69c686ad8a0c89b9136bb4b31767257eb7b2597/airflow/contrib/hooks/aws_glue_catalog_hook.py#L120-L137,1, +Python,print model summary,https://github.com/Unity-Technologies/ml-agents/blob/37d139af636e4a2351751fbf0f2fca5a9ed7457f/ml-agents/mlagents/trainers/barracuda.py#L228-L258,3, +Python,sort string list,https://github.com/loverajoel/sqlalchemy-elasticquery/blob/4c99b81f59e7bb20eaeedb3adbf5126e62bbc25c/sqlalchemy_elasticquery/elastic_query.py#L159-L167,0, +Python,how to check if a checkbox is checked,https://github.com/jbm950/pygame_toolbox/blob/3fe32145fc149e4dd0963c30a2b6a4dddd4fac0e/pygame_toolbox/graphics/widgets.py#L141-L162,3, +Python,get all parents of xml node,https://github.com/incf-nidash/nidmresults/blob/438f7cce6abc4a4379b629bd76f4d427891e033f/nidmresults/owl/owl_reader.py#L85-L93,2, +Python,connect to sql,https://github.com/coleifer/peewee/blob/ea9403b01acb039adb3a2472186d795c796b77a0/playhouse/mysql_ext.py#L14-L17,3, +Python,get inner html,https://github.com/tensorflow/lucid/blob/d1a1e2e4fd4be61b89b8cba20dc425a5ae34576e/lucid/scratch/web/svelte.py#L43-L68,1, +Python,priority queue,https://github.com/coleifer/huey/blob/416e8da1ca18442c08431a91bce373de7d2d200f/huey/storage.py#L401-L405,3, +Python,replace in file,https://github.com/TheRobotCarlson/DocxMerge/blob/df8d2add5ff4f33e31d36a6bd3d4495140334538/DocxMerge/DocxMerge.py#L274-L293,2, +Python,parse command line argument,https://github.com/diffeo/yakonfig/blob/412e195da29b4f4fc7b72967c192714a6f5eaeb5/yakonfig/cmd.py#L132-L148,2, +Python,how to determine a string is a valid word,https://github.com/benedictpaten/sonLib/blob/1decb75bb439b70721ec776f685ce98e25217d26/bioio.py#L636-L641,0,"The query here is a little ambiguous (what is ""valid word""). Regardless, this seems irrelevant." +Python,unique elements,https://github.com/cloud9ers/gurumate/blob/075dc74d1ee62a8c6b7a8bf2b271364f01629d1e/environment/lib/python2.7/site-packages/IPython/utils/data.py#L22-L42,3, +Python,html encode string,https://github.com/polyaxon/polyaxon/blob/e1724f0756b1a42f9e7aa08a976584a84ef7f016/polyaxon/libs/json_utils.py#L75-L79,2, +Python,set file attrib hidden,https://github.com/lamestation/lamestation-sdk-tools/blob/25d1fe8dc276cf4addbb13fd29ea3cf22b09f9ca/lspaint/EventHandler.py#L97-L106,0, +Python,binomial distribution,https://github.com/chemlab/chemlab/blob/c8730966316d101e24f39ac3b96b51282aba0abe/chemlab/qc/utils.py#L30-L40,2, +Python,linear regression,https://github.com/raphaelvallat/pingouin/blob/58b19fa4fffbfe09d58b456e3926a148249e4d9b/pingouin/regression.py#L10-L223,3, +Python,convert int to bool,https://github.com/yaybu/callsign/blob/e70e5368bfe4fd3ae3fdd1ed43944b53ffa1e100/callsign/config.py#L54-L60,0, +Python,set working directory,https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L577-L583,3, +Python,get current process id,https://github.com/fabioz/PyDev.Debugger/blob/ed9c4307662a5593b8a7f1f3389ecd0e79b8c503/pydevd_attach_to_process/winappdbg/thread.py#L204-L226,3, +Python,find int in string,https://github.com/acutesoftware/AIKIF/blob/fcf1582dc5f884b9a4fa7c6e20e9de9d94d21d03/aikif/core_data.py#L311-L318,0, +Python,parse json file,https://github.com/joeferraro/mm/blob/43dce48a2249faab4d872c228ada9fbdbeec147b/mm/util.py#L110-L120,3, +Python,confusion matrix,https://github.com/openmednlp/bedrock/blob/15796bd7837ddfe7ad5235fd188e5d7af8c0be49/bedrock/viz.py#L47-L65,3, +Python,hash set for counting distinct elements,https://github.com/cggh/scikit-allel/blob/3c979a57a100240ba959dd13f98839349530f215/allel/model/ndarray.py#L2510-L2520,2,not sure... +Python,how to extract zip file recursively,https://github.com/samuelcolvin/grablib/blob/2fca8a3950f29fb2a97a7bd75c0839060a91cedf/grablib/download.py#L125-L152,3, +Python,hash set for counting distinct elements,https://github.com/ibis-project/ibis/blob/1e39a5fd9ef088b45c155e8a5f541767ee8ef2e7/ibis/expr/api.py#L3265-L3282,0, +Python,socket recv timeout,https://github.com/nfcpy/nfcpy/blob/6649146d1afdd5e82b2b6b1ea00aa58d50785117/src/nfc/snep/client.py#L51-L74,1, +Python,convert a date string into yyyymmdd,https://github.com/why2pac/dp-tornado/blob/a5948f5693f6ee2d9bab31f611fedc074e1caa96/dp_tornado/helper/datetime/date.py#L74-L76,3, +Python,k means clustering,https://github.com/markovmodel/PyEMMA/blob/5c3124398217de05ba5ce9c8fb01519222481ab8/pyemma/coordinates/api.py#L1645-L1692,3, +Python,html entities replace,https://github.com/LiftoffSoftware/htmltag/blob/f6989f9a3301e7c96ee613e5dbbe43b2bde615c7/htmltag.py#L442-L448,2, +Python,convert a date string into yyyymmdd,https://github.com/tanghaibao/goatools/blob/407682e573a108864a79031f8ca19ee3bf377626/goatools/anno/annoreader_base.py#L139-L141,0,arg +Python,html encode string,https://github.com/kennethreitz/requests-html/blob/b59a9f2fb9333d7d467154a0fd82978efdb9d23b/requests_html.py#L110-L111,3, +Python,initializing array,https://github.com/SiLab-Bonn/pixel_clusterizer/blob/d2c8c3072fb03ebb7c6a3e8c57350fbbe38efd4d/pixel_clusterizer/clusterizer.py#L120-L126,3, +Python,k means clustering,https://github.com/neuropsychology/NeuroKit.py/blob/c9589348fbbde0fa7e986048c48f38e6b488adfe/examples/UnderDev/eeg/eeg_microstates.py#L201-L253,2, +Python,parse json file,https://github.com/ewels/MultiQC/blob/2037d6322b2554146a74efbf869156ad20d4c4ec/multiqc/modules/bcl2fastq/bcl2fastq.py#L142-L268,1, +Python,httpclient post json,https://github.com/Adyen/adyen-python-api-library/blob/928f6409ab6e2fac300b9fa29d89f3f508b23445/Adyen/httpclient.py#L282-L316,0, +Python,how to get html of website,https://github.com/bitesofcode/projex/blob/d31743ec456a41428709968ab11a2cf6c6c76247/projex/init.py#L368-L384,0, +Python,regex case insensitive,https://github.com/openstates/billy/blob/5fc795347f12a949e410a8cfad0c911ea6bced67/billy/web/api/handlers.py#L27-L48,2, +Python,reading element from html - ,https://github.com/posativ/isso/blob/78997f491044b7d694ac7170edc32030544095b7/isso/utils/parse.py#L21-L80,2, +Python,regex case insensitive,https://github.com/nefarioustim/parker/blob/ccc1de1ac6bfb5e0a8cfa4fdebb2f38f2ee027d6/parker/parsedpage.py#L65-L75,1, +Python,set working directory,https://github.com/nugget/python-insteonplm/blob/65548041f1b0729ae1ae904443dd81b0c6cbf1bf/insteonplm/tools.py#L877-L903,0,"The name seems useful but the code doesn't actually set the working dir, just sets it for a class." +Python,get all parents of xml node,https://github.com/pgmpy/pgmpy/blob/9381a66aba3c3871d3ccd00672b148d17d63239e/pgmpy/estimators/MLE.py#L84-L139,0, +Python,unzipping large files,https://github.com/cs50/lib50/blob/941767f6c0a3b81af0cdea48c25c8d5a761086eb/lib50/_api.py#L570-L611,1, +Python,convert string to number,https://github.com/gunthercox/ChatterBot/blob/1a03dcb45cba7bdc24d3db5e750582e0cb1518e2/chatterbot/parsing.py#L506-L517,3, +Python,read text file line by line,https://github.com/adrienverge/yamllint/blob/fec2c2fba736cabf6bee6b5eeb905cab0dc820f6/yamllint/rules/new_line_at_end_of_file.py#L34-L37,3, +Python,get current ip address,https://github.com/douban/pymesos/blob/c8096d3d510648649963b7cead01d4d06b5dcf26/pymesos/scheduler.py#L473-L490,0, +Python,how to reverse a string,https://github.com/mvcisback/py-aiger-bv/blob/855819844c429c35cdd8dc0b134bcd11f7b2fda3/aigerbv/common.py#L179-L184,0, +Python,group by count,https://github.com/realitix/vulkan/blob/07285387092aaa61d2d71fa2913d60a73f022cbe/vulkan/_vulkan.py#L6130-L6135,1, +Python,regex case insensitive,https://github.com/lotrekagency/djlotrek/blob/10a304103768c3d59bdb8859eba86ef3327c9598/djlotrek/templatetags/djlotrek_filters.py#L50-L53,1, +Python,pretty print json,https://github.com/mosesschwartz/scrypture/blob/d51eb0c9835a5122a655078268185ce8ab9ec86a/scrypture/demo_scripts/Utils/json_pretty_print.py#L8-L14,3, +Python,how to get html of website,https://github.com/Azure/azure-sdk-for-python/blob/d7306fde32f60a293a7567678692bdad31e4b667/azure-servicemanagement-legacy/azure/servicemanagement/websitemanagementservice.py#L103-L114,0, +Python,deserialize json,https://github.com/infobip/infobip-api-python-client/blob/2da11962f877294c53bd545715e62d6ce5c139f0/infobip/util/http.py#L14-L16,3, +Python,get name of enumerated value,https://github.com/jborean93/smbprotocol/blob/d8eb00fbc824f97d0f4946e3f768c5e6c723499a/smbprotocol/structure.py#L775-L785,2, +Python,all permutations of a list,https://github.com/KarchinLab/probabilistic2020/blob/5d70583b0a7c07cfe32e95f3a70e05df412acb84/prob2020/python/permutation.py#L9-L96,0, +Python,convert html to pdf,https://github.com/RudolfCardinal/pythonlib/blob/0b84cb35f38bd7d8723958dae51b480a829b7227/cardinal_pythonlib/pdf.py#L161-L186,1, +Python,how to check if a checkbox is checked,https://github.com/aloetesting/aloe_webdriver/blob/65d847da4bdc63f9c015cb19d4efdee87df8ffad/aloe_webdriver/__init__.py#L542-L547,3, +Python,custom http error response,https://github.com/swevm/scaleio-py/blob/d043a0137cb925987fd5c895a3210968ce1d9028/scaleiopy/im.py#L202-L230,1, +Python,finding time elapsed using a timer,https://github.com/andrewramsay/sk8-drivers/blob/67347a71762fb421f5ae65a595def5c7879e8b0c/pysk8/calibration/sk8_calibration_gui.py#L49-L57,0, +Python,html encode string,https://github.com/jeffa/HTML-Auto-python/blob/e0d24335d86c21b6278f776f3d3416c90e438ab9/t/05-encode.py#L6-L70,1, +Python,convert html to pdf,https://github.com/senaite/senaite.core/blob/7602ce2ea2f9e81eb34e20ce17b98a3e70713f85/bika/lims/browser/stickers.py#L281-L291,3, +Python,convert string to number,https://github.com/bcbio/bcbio-nextgen/blob/6a9348c0054ccd5baffd22f1bb7d0422f6978b20/bcbio/pipeline/disambiguate/run.py#L35-L39,2, +Python,set working directory,https://github.com/materialsproject/pymatgen/blob/4ca558cf72f8d5f8a1f21dfdfc0181a971c186da/pymatgen/io/abinit/tasks.py#L4149-L4153,3, +Python,output to html file,https://github.com/openvax/topiary/blob/04f0077bc4bf1ad350a0e78c26fa48c55fe7813b/topiary/cli/outputs.py#L23-L61,0, +Python,find int in string,https://github.com/enkore/i3pystatus/blob/14cfde967cecf79b40e223e35a04600f4c875af7/i3pystatus/core/util.py#L80-L84,0, +Python,how to reverse a string,https://github.com/mclarkk/lifxlan/blob/ead0e3114d6aa2e5e77dab1191c13c16066c32b0/lifxlan/message.py#L126-L130,2, +Python,binomial distribution,https://github.com/lpantano/seqcluster/blob/774e23add8cd4fdc83d626cea3bd1f458e7d060d/seqcluster/libs/thinkbayes.py#L1530-L1535,3, +Python,heatmap from 3d coordinates,https://github.com/aleju/imgaug/blob/786be74aa855513840113ea523c5df495dc6a8af/imgaug/augmentables/heatmaps.py#L110-L158,2,"This function does what the query wants, but it is hard to understand this at first glance because it does not accept a set of 3D points as a parameter." +Python,set file attrib hidden,https://github.com/HearthSim/python-hsreplay/blob/ec03a18a75ae4c1e0facc583a7213a4c5b7f99ff/hsreplay/elements.py#L47-L66,1, +Python,converting uint8 array to image,https://github.com/quintusdias/glymur/blob/8b8fb091130fff00f1028dc82219e69e3f9baf6d/glymur/jp2k.py#L660-L667,0, +Python,unzipping large files,https://github.com/nvbn/thefuck/blob/40ab4eb62db57627bff10cf029d29c94704086a2/thefuck/rules/dirty_unzip.py#L15-L25,0, +Python,format date,https://github.com/ofek/pypinfo/blob/48d56e690d7667ae5854752c3a2dc07e321d5637/pypinfo/core.py#L65-L70,3, +Python,custom http error response,https://github.com/JamesGardiner/chwrapper/blob/50f9cb2f5264c59505e8cc4e45ee6dc5d5669134/chwrapper/services/base.py#L97-L109,1, +Python,deducting the median from each column,https://github.com/hollenstein/maspy/blob/f15fcfd24df306d8420540460d902aa3073ec133/maspy/mit_stats.py#L48-L88,1, +Python,concatenate several file remove header lines,https://github.com/cdeboever3/cdpybio/blob/38efdf0e11d01bc00a135921cb91a19c03db5d5c/cdpybio/variants.py#L83-L110,0, +Python,format date,https://github.com/abilian/abilian-core/blob/0a71275bf108c3d51e13ca9e093c0249235351e3/abilian/web/admin/panels/audit.py#L29-L33,3, +Python,converting uint8 array to image,https://github.com/radjkarl/imgProcessor/blob/7c5a28718f81c01a430152c60a686ac50afbfd7c/imgProcessor/imgIO.py#L39-L73,1, +Python,map to json,https://github.com/ontio/ontology-python-sdk/blob/ac88bdda941896c5d2ced08422a9c5179d3f9b19/ontology/smart_contract/native_contract/governance.py#L403-L414,0, +Python,postgresql connection,https://github.com/django-extensions/django-extensions/blob/7e0bef97ea6cb7f9eea5e2528e3a985a83a7b9b8/django_extensions/management/commands/sqldsn.py#L100-L141,2, +Python,filter array,https://github.com/brechtm/rinohtype/blob/40a63c4e5ad7550f62b6860f1812cb67cafb9dc7/src/rinoh/backend/pdf/filter.py#L459-L463,2, +Python,how to get database table name,https://github.com/synw/dataswim/blob/4a4a53f80daa7cd8e8409d76a19ce07296269da2/dataswim/db/infos.py#L56-L78,0,Maybe a little bit relevant... +Python,get the description of a http status code,https://github.com/mar10/wsgidav/blob/cec0d84222fc24bea01be1cea91729001963f172/wsgidav/dav_error.py#L264-L274,3, +Python,fuzzy match ranking,https://github.com/sosreport/sos/blob/2ebc04da53dc871c8dd5243567afa4f8592dca29/sos/policies/__init__.py#L713-L724,0, +Python,buffered file reader read text,https://github.com/waqasbhatti/astrobase/blob/2922a14619d183fb28005fa7d02027ac436f2265/astrobase/hatsurveys/texthatlc.py#L54-L167,0, +Python,confusion matrix,https://github.com/rjrequina/Cebuano-POS-Tagger/blob/fb1b46448c40b23ac8e8e373f073f1f8934b6dc6/eval/evaluator.py#L72-L92,3, +Python,print model summary,https://github.com/Unity-Technologies/ml-agents/blob/37d139af636e4a2351751fbf0f2fca5a9ed7457f/ml-agents/mlagents/trainers/barracuda.py#L228-L258,2, +Python,get the description of a http status code,https://github.com/ewdurbin/community/blob/f6b80e215a88508e3b07c2f4996ede6edea2c8e3/community/app.py#L36-L42,2, +Python,socket recv timeout,https://github.com/rameshg87/pyremotevbox/blob/123dffff27da57c8faa3ac1dd4c68b1cf4558b1a/pyremotevbox/ZSI/wstools/TimeoutSocket.py#L90-L93,3, +Python,get current observable value,https://github.com/senaite/senaite.core/blob/7602ce2ea2f9e81eb34e20ce17b98a3e70713f85/bika/lims/adapters/acquirefielddefaults.py#L44-L57,1,I don't get the query +Python,parse query string in url,https://github.com/wummel/linkchecker/blob/c2ce810c3fb00b895a841a7be6b2e78c64e7b042/linkcheck/url.py#L250-L272,2, +Python,parse command line argument,https://github.com/diffeo/yakonfig/blob/412e195da29b4f4fc7b72967c192714a6f5eaeb5/yakonfig/cmd.py#L132-L148,2, +Python,positions of substrings in string,https://github.com/mcs07/ChemDataExtractor/blob/349a3bea965f2073141d62043b89319222e46af1/chemdataextractor/text/processors.py#L104-L108,0, +Python,underline text in label widget,https://github.com/katerina7479/pypdflite/blob/ac2501f30d6619eae9dea5644717575ca9263d0a/pypdflite/pdfobjects/pdftext.py#L165-L172,2, +Python,how to get current date,https://github.com/caktus/django-timepiece/blob/52515dec027664890efbc535429e1ba1ee152f40/timepiece/entries/views.py#L44-L55,2, +Python,sorting multiple arrays based on another arrays sorted order,https://github.com/stephan-mclean/KickassTorrentsAPI/blob/4d867a090c06ce95b9ed996b48092cb5bfe28bbd/kat.py#L202-L212,0, +Python,print model summary,https://github.com/LIVVkit/LIVVkit/blob/680120cd437e408673e62e535fc0a246c7fc17db/livvkit/components/numerics.py#L82-L87,3, +Python,get current observable value,https://github.com/Qiskit/qiskit-terra/blob/d4f58d903bc96341b816f7c35df936d6421267d1/qiskit/quantum_info/analyzation/make_observable.py#L13-L37,2, +Python,binomial distribution,https://github.com/raphaelvallat/pingouin/blob/58b19fa4fffbfe09d58b456e3926a148249e4d9b/pingouin/distribution.py#L274-L319,1, +Python,extract data from html content,https://github.com/monarch-initiative/dipper/blob/24cc80db355bbe15776edc5c7b41e0886959ba41/scripts/scrape-impc.py#L14-L40,1, +Python,how to check if a checkbox is checked,https://github.com/DLR-RM/RAFCON/blob/24942ef1a904531f49ab8830a1dbb604441be498/source/rafcon/gui/utils/dialog.py#L233-L234,2, +Python,how to get current date,https://github.com/ctuning/ck/blob/7e009814e975f8742790d3106340088a46223714/ck/kernel.py#L4351-L4377,3, +Python,deserialize json,https://github.com/go-macaroon-bakery/py-macaroon-bakery/blob/63ce1ef1dabe816eb8aaec48fbb46761c34ddf77/macaroonbakery/bakery/_macaroon.py#L242-L248,2, +Python,convert a date string into yyyymmdd,https://github.com/mushkevych/scheduler/blob/6740331360f49083c208085fb5a60ce80ebf418b/synergy/system/time_helper.py#L78-L82,1, +Python,copying a file to a path,https://github.com/OLC-Bioinformatics/sipprverse/blob/d4f10cdf8e1a39dac0953db61c21c97efc6006de/cgecore/utility.py#L534-L574,3, +Python,httpclient post json,https://github.com/proycon/flat/blob/f14eea61edcae8656dadccd9a43481ff7e710ffb/flat/comm.py#L116-L135,0, +Python,parse query string in url,https://github.com/jdp/urp/blob/778c16d9a5eae75316ce20aad742af7122be558c/urp.py#L17-L22,1, +Python,html encode string,https://github.com/kennethreitz/requests-html/blob/b59a9f2fb9333d7d467154a0fd82978efdb9d23b/requests_html.py#L110-L111,3, +Python,unzipping large files,https://github.com/facelessuser/backrefs/blob/3b3d60f5d57b02044f880aa29c9c5add0e31a34f/tools/unidatadownload.py#L32-L44,2, +Python,get inner html,https://github.com/RudolfCardinal/pythonlib/blob/0b84cb35f38bd7d8723958dae51b480a829b7227/cardinal_pythonlib/rnc_web.py#L408-L416,1, +Python,map to json,https://github.com/mapbox/mapboxgl-jupyter/blob/f6e403c13eaa910e70659c7d179e8e32ce95ae34/mapboxgl/viz.py#L20-L37,1, +Python,confusion matrix,https://github.com/openmednlp/bedrock/blob/15796bd7837ddfe7ad5235fd188e5d7af8c0be49/bedrock/viz.py#L12-L44,2, +Python,how to determine a string is a valid word,https://github.com/phoopy/phoopy-console/blob/d38ec0eb952e79239699a0f855c07437a34024b0/phoopy/console/helper/string_helper.py#L41-L43,3,"it does that, but not necessarily what the query meant." +Python,group by count,https://github.com/realitix/vulkan/blob/07285387092aaa61d2d71fa2913d60a73f022cbe/vulkan/_vulkan.py#L6130-L6135,0, +Python,how to empty array,https://github.com/openfisca/openfisca-core/blob/92ce9396e29ae5d9bac5ea604cfce88517c6b35c/openfisca_core/variables.py#L427-L433,3, +Python,get current ip address,https://github.com/dlancer/django-crispy-contact-form/blob/3d422556add5aea3607344a034779c214f84da04/contact_form/helpers.py#L8-L19,1, +Python,deducting the median from each column,https://github.com/tamasgal/km3pipe/blob/7a9b59ac899a28775b5bdc5d391d9a5340d08040/km3pipe/stats.py#L114-L117,1, +Python,how to get database table name,https://github.com/spulec/moto/blob/4a286c4bc288933bb023396e2784a6fdbb966bc9/moto/glue/models.py#L55-L57,0, +Python,initializing array,https://github.com/AshleySetter/optoanalysis/blob/9d390acc834d70024d47b574aea14189a5a5714e/optoanalysis/optoanalysis/optoanalysis.py#L3311-L3329,1, +Python,create cookie,https://github.com/wecatch/app-turbo/blob/75faf97371a9a138c53f92168d0a486636cb8a9c/turbo/session.py#L185-L193,3, +Python,convert json to csv,https://github.com/oplatek/csv2json/blob/f2f95db71ba2ce683fd6d0d3e2f13c9d0a77ceb6/csv2json/__init__.py#L20-L51,1, +Python,parse command line argument,https://github.com/bjmorgan/vasppy/blob/cc2d1449697b17ee1c43715a02cddcb1139a6834/vasppy/scripts/rotate_poscar.py#L7-L13,3, +Python,parse query string in url,https://github.com/googleapis/google-auth-library-python/blob/2c6ad78917e936f38f87c946209c8031166dc96e/google/auth/_helpers.py#L130-L173,1, +Python,nelder mead optimize,https://github.com/SheffieldML/GPyOpt/blob/255539dc5927819ca701e44fe3d76cd4864222fa/GPyOpt/util/epmgp.py#L122-L208,1, +Python,k means clustering,https://github.com/VIVelev/PyDojoML/blob/773fdce6866aa6decd306a5a85f94129fed816eb/dojo/cluster/hierarchical.py#L43-L62,2, +Python,string similarity levenshtein,https://github.com/ChrisCummins/labm8/blob/dd10d67a757aefb180cb508f86696f99440c94f5/text.py#L137-L167,1, +Python,map to json,https://github.com/tensorflow/tensor2tensor/blob/272500b6efe353aeb638d2745ed56e519462ca31/tensor2tensor/utils/hparam.py#L558-L572,1, +Python,parse command line argument,https://github.com/bjmorgan/vasppy/blob/cc2d1449697b17ee1c43715a02cddcb1139a6834/vasppy/scripts/rotate_poscar.py#L7-L13,3, +Python,initializing array,https://github.com/apache/incubator-mxnet/blob/1af29e9c060a4c7d60eeaacba32afdb9a7775ba7/python/mxnet/ndarray/sparse.py#L1507-L1543,2, +Python,print model summary,https://github.com/MillionIntegrals/vel/blob/e0726e1f63742b728966ccae0c8b825ea0ba491a/vel/api/model.py#L37-L51,1, +Python,sorting multiple arrays based on another arrays sorted order,https://github.com/ml31415/numpy-groupies/blob/0911e9c59b14e11319e82d0876056ad2a17e6568/numpy_groupies/aggregate_numpy.py#L181-L185,2, +Python,convert json to csv,https://github.com/PythonSanSebastian/docstamp/blob/b43808f2e15351b0b2f0b7eade9c7ef319c9e646/docstamp/file_utils.py#L138-L170,0,"The code does the conversion in the other direction, CSV to JSON" +Python,create cookie,https://github.com/UCL-INGI/INGInious/blob/cbda9a9c7f2b8e8eb1e6d7d51f0d18092086300c/inginious/frontend/cookieless_app.py#L231-L237,2, +Python,parse json file,https://github.com/joeferraro/mm/blob/43dce48a2249faab4d872c228ada9fbdbeec147b/mm/util.py#L110-L120,3, +Python,binomial distribution,https://github.com/tisimst/mcerp/blob/2bb8260c9ad2d58a806847f1b627b6451e407de1/mcerp/__init__.py#L1150-L1167,3, +Python,copying a file to a path,https://github.com/Neurita/boyle/blob/2dae7199849395a209c887d5f30506e1de8a9ad9/scripts/filetree.py#L20-L72,2, +Python,custom http error response,https://github.com/onecodex/onecodex/blob/326a0a1af140e3a57ccf31c3c9c5e17a5775c13d/onecodex/vendored/potion_client/links.py#L73-L90,3, +Python,regex case insensitive,https://github.com/cltk/cltk/blob/ed9c025b7ec43c949481173251b70e05e4dffd27/cltk/ir/query.py#L24-L37,3, +Python,how to make the checkbox checked,https://github.com/aloetesting/aloe_webdriver/blob/65d847da4bdc63f9c015cb19d4efdee87df8ffad/aloe_webdriver/__init__.py#L564-L568,3, +Python,sort string list,https://github.com/readbeyond/aeneas/blob/9d95535ad63eef4a98530cfdff033b8c35315ee1/aeneas/idsortingalgorithm.py#L79-L109,2, +Python,read text file line by line,https://github.com/chrisjsewell/jsonextended/blob/c3a7a880cc09789b3c61204265dcbb127be76c8a/jsonextended/mockpath.py#L44-L54,3, +Python,convert int to string,https://github.com/MozillaSecurity/laniakea/blob/7e80adc6ae92c6c1332d4c08473bb271fb3b6833/laniakea/core/userdata.py#L43-L51,0, +Python,get name of enumerated value,https://github.com/crytic/slither/blob/04c147f7e50223c6af458ca430befae747ccd259/slither/core/declarations/contract.py#L431-L439,1, +Python,how to empty array,https://github.com/jepegit/cellpy/blob/9f4a84cdd11f72cfa02cda8c2d7b5174abbb7370/cellpy/readers/core.py#L261-L266,1, +Python,string similarity levenshtein,https://github.com/Lilykos/pyphonetics/blob/7f55cccc1135e6015520a895eb6859318a4b6111/pyphonetics/distance_metrics/levenshtein.py#L1-L29,3, +Python,buffered file reader read text,https://github.com/RaRe-Technologies/smart_open/blob/2dc8d60f223fc7b00a2000c56362a7bd6cd0850e/smart_open/http.py#L104-L134,2, +Python,get current ip address,https://github.com/emc-openstack/storops/blob/24b4b13bf065c0ef0538dd0b5ebb8f25d24176bd/storops/vnx/resource/mover.py#L203-L208,3, +Python,how to extract zip file recursively,https://github.com/jedie/DragonPy/blob/6659e5b5133aab26979a498ee7453495773a4f6c/dragonpy/components/rom.py#L101-L134,3, +Python,memoize to disk - persistent memoization,https://github.com/Erotemic/utool/blob/3b27e1f4e6e6fb23cd8744af7b7195b57d99e03a/utool/util_decor.py#L601-L651,3, +Python,get executable path,https://github.com/kgori/treeCl/blob/fed624b3db1c19cc07175ca04e3eda6905a8d305/treeCl/wrappers/abstract_wrapper.py#L161-L176,3, +Python,confusion matrix,https://github.com/edublancas/sklearn-evaluation/blob/79ee6e4dfe911b5a5a9b78a5caaed7c73eef6f39/sklearn_evaluation/evaluator.py#L85-L89,2, +Python,convert int to bool,https://github.com/thebjorn/pydeps/blob/1e6715b7bea47a40e8042821b57937deaaa0fdc3/pydeps/arguments.py#L20-L31,3, +Python,connect to sql,https://github.com/posativ/isso/blob/78997f491044b7d694ac7170edc32030544095b7/isso/db/__init__.py#L56-L62,1, +Python,extracting data from a text file,https://github.com/openmednlp/bedrock/blob/15796bd7837ddfe7ad5235fd188e5d7af8c0be49/bedrock/collection.py#L74-L79,1, +Python,set working directory,https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/plugin.py#L1537-L1542,0, +Python,connect to sql,https://github.com/aouyar/PyMunin/blob/4f58a64b6b37c85a84cc7e1e07aafaa0321b249d/pysysinfo/mysql.py#L64-L69,3, +Python,custom http error response,https://github.com/onecodex/onecodex/blob/326a0a1af140e3a57ccf31c3c9c5e17a5775c13d/onecodex/vendored/potion_client/links.py#L73-L90,2, +Python,how to get database table name,https://github.com/simonw/datasette/blob/11b352b4d52fd02a422776edebb14f12e4994d3b/datasette/app.py#L521-L527,1, +Python,custom http error response,https://github.com/alpacahq/alpaca-trade-api-python/blob/9c9dea3b4a37c909f88391b202e86ff356a8b4d7/alpaca_trade_api/rest.py#L40-L43,0, +Python,convert json to csv,https://github.com/oplatek/csv2json/blob/f2f95db71ba2ce683fd6d0d3e2f13c9d0a77ceb6/csv2json/__init__.py#L20-L51,1, +Python,convert json to csv,https://github.com/mosesschwartz/scrypture/blob/d51eb0c9835a5122a655078268185ce8ab9ec86a/scrypture/demo_scripts/Utils/json_to_csv.py#L28-L47,3, +Python,get inner html,https://github.com/maxpowel/scrapium/blob/bc12c425aa5978f953a87d05920ba0f61a00409c/scrapium/scrapium.py#L140-L142,1, +Python,how to reverse a string,https://github.com/mclarkk/lifxlan/blob/ead0e3114d6aa2e5e77dab1191c13c16066c32b0/lifxlan/message.py#L126-L130,0, +Python,convert html to pdf,https://github.com/thewca/wca-regulations-compiler/blob/3ebbd8fe8fec7c9167296f59b2677696fe61a954/wrc/wrc.py#L85-L113,3, +Python,output to html file,https://github.com/readbeyond/aeneas/blob/9d95535ad63eef4a98530cfdff033b8c35315ee1/aeneas/syncmap/__init__.py#L309-L368,1, +Python,fuzzy match ranking,https://github.com/toejough/pimento/blob/cdb00a93976733aa5521f8504152cedeedfc711a/pimento/__init__.py#L298-L311,2, +Python,copy to clipboard,https://github.com/jedie/DragonPy/blob/6659e5b5133aab26979a498ee7453495773a4f6c/dragonpy/components/periphery.py#L163-L168,3, +Python,copy to clipboard,https://github.com/Guake/guake/blob/4153ef38f9044cbed6494075fce80acd5809df2b/guake/terminal.py#L136-L141,3, +Python,get all parents of xml node,https://github.com/fishtown-analytics/dbt/blob/aa4f771df28b307af0cf9fe2fc24432f10a8236b/core/dbt/graph/selector.py#L317-L344,3, +Python,copying a file to a path,https://github.com/tjguk/winshell/blob/1509d211ab3403dd1cff6113e4e13462d6dec35b/winshell.py#L266-L294,1,"Just a wrapper, doesn't contain any useful functionality, but maybe the wrapped function does" +Python,readonly array,https://github.com/pandas-dev/pandas/blob/9feb3ad92cc0397a04b665803a49299ee7aa1037/pandas/io/sas/sas_xport.py#L427-L465,1, +Python,get name of enumerated value,https://github.com/crytic/slither/blob/04c147f7e50223c6af458ca430befae747ccd259/slither/core/declarations/contract.py#L431-L439,2, +Python,parse command line argument,https://github.com/chitamoor/Rester/blob/1865b17f70b7c597aeadde2d0907cb1b59f10c0f/rester/apirunner.py#L9-L18,3, +Python,convert decimal to hex,https://github.com/tanghaibao/jcvi/blob/d2e31a77b6ade7f41f3b321febc2b4744d1cdeca/jcvi/utils/webcolors.py#L356-L396,0, +Python,export to excel,https://github.com/fkarb/xltable/blob/7a592642d27ad5ee90d2aa8c26338abaa9d84bea/xltable/workbook.py#L82-L123,3, +Python,save list to file,https://github.com/acutesoftware/AIKIF/blob/fcf1582dc5f884b9a4fa7c6e20e9de9d94d21d03/aikif/lib/cls_filelist.py#L192-L228,1, +Python,memoize to disk - persistent memoization,https://github.com/fridiculous/estimators/blob/ab5b3d70f16f8372ae1114ac7e54e7791631eb74/estimators/hashing.py#L120-L127,3, +Python,how to extract zip file recursively,https://github.com/jedie/DragonPy/blob/6659e5b5133aab26979a498ee7453495773a4f6c/dragonpy/Simple6809/Simple6809_rom.py#L40-L66,3, +Python,convert json to csv,https://github.com/poldracklab/niworkflows/blob/254f4b4fcc5e6ecb29d2f4602a30786b913ecce5/niworkflows/interfaces/utils.py#L793-L864,2, +Python,k means clustering,https://github.com/atarashansky/self-assembling-manifold/blob/4db4793f65af62047492327716932ba81a67f679/SAM.py#L1318-L1350,3, +Python,extracting data from a text file,https://github.com/bakwc/JamSpell/blob/bfdfd889436df4dbcd9ec86b20d2baeb815068bd/evaluate/utils.py#L25-L28,2, +Python,string similarity levenshtein,https://github.com/Games-and-Simulations/sc-docker/blob/1d7adb9b5839783655564afc4bbcd204a0055dcb/scbw/utils.py#L18-L37,3, +Python,read properties file,https://github.com/GreatFruitOmsk/tailhead/blob/a3b1324a39935f8ffcfda59328a9a458672889d9/tailhead/__init__.py#L72-L79,2, +Python,all permutations of a list,https://github.com/mabuchilab/QNET/blob/cc20d26dad78691d34c67173e5cd67dcac94208a/src/qnet/utils/permutations.py#L166-L184,0, +Python,readonly array,https://github.com/mattja/sdeint/blob/7cf807cdf97b3bb39d29e1c2dc834b519499b601/sdeint/_broadcast.py#L53-L67,2, +Python,aes encryption,https://github.com/kalefranz/auxlib/blob/6ff2d6b57d128d0b9ed8f01ad83572e938da064f/auxlib/crypt.py#L77-L97,3, +Python,set file attrib hidden,https://github.com/MolSSI-BSE/basis_set_exchange/blob/e79110aaeb65f392ed5032420322dee3336948f7/basis_set_exchange/cli/bsecurate_handlers.py#L92-L105,0, +Python,unique elements,https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Util.py#L1300-L1303,2, +Python,pretty print json,https://github.com/markbaas/python-iresolve/blob/ba91e37221e91265e4ac5dbc6e8f5cffa955a04f/iresolve.py#L136-L141,1, +Python,linear regression,https://github.com/SoftwareDefinedBuildings/XBOS/blob/c12d4fb14518ea3ae98c471c28e0710fdf74dd25/apps/Data_quality_analysis/Main.py#L13-L18,2, +Python,how to determine a string is a valid word,https://github.com/deepmipt/DeepPavlov/blob/f3e4a69a3764d25d2f5bad4f1f1aebc872b00f9c/deeppavlov/models/preprocessors/capitalization.py#L75-L108,0, +Python,read text file line by line,https://github.com/bxlab/bx-python/blob/09cb725284803df90a468d910f2274628d8647de/lib/bx/align/lav.py#L287-L296,2, +Python,convert a date string into yyyymmdd,https://github.com/mushkevych/scheduler/blob/6740331360f49083c208085fb5a60ce80ebf418b/synergy/system/time_helper.py#L78-L82,3, +Python,buffered file reader read text,https://github.com/it-geeks-club/pyspectator/blob/356a808b1b29575fd47a85a2611fe50f1afeea8a/pyspectator/temperature_reader.py#L30-L35,0, +Python,write csv,https://github.com/jordanjoz1/flickr-views-counter/blob/cba89285823ab39afd9f40a19db82371d45bd830/count_views.py#L130-L138,3, +Python,deducting the median from each column,https://github.com/rhenanbartels/hrv/blob/cd4c7e6e508299d943930886d20413f63845f60f/hrv/rri.py#L123-L124,2, +Python,extract latitude and longitude from given input,https://github.com/nickmckay/LiPD-utilities/blob/5dab6bbeffc5effd68e3a6beaca6b76aa928e860/Python/lipd/excel.py#L1227-L1269,2, +Python,normal distribution,https://github.com/alejoe91/MEAutility/blob/7c2b0da52c2752a3baf04e8e248e26b0769cd088/MEAutility/core.py#L326-L338,0, +Python,print model summary,https://github.com/lrq3000/pyFileFixity/blob/fd5ef23bb13835faf1e3baa773619b86a1cc9bdf/pyFileFixity/lib/profilers/visual/pympler/tracker.py#L126-L134,0,"Question is completely unclear, summary of what model?" +Python,parse json file,https://github.com/nkmathew/yasi-sexp-indenter/blob/6ec2a4675e79606c555bcb67494a0ba994b05805/yasi.py#L551-L568,2, +Python,parse command line argument,https://github.com/bjmorgan/vasppy/blob/cc2d1449697b17ee1c43715a02cddcb1139a6834/vasppy/scripts/xdatcar_to_rdf.py#L9-L17,3, +Python,convert html to pdf,https://github.com/RudolfCardinal/pythonlib/blob/0b84cb35f38bd7d8723958dae51b480a829b7227/cardinal_pythonlib/pdf.py#L161-L186,1, +Python,how to check if a checkbox is checked,https://github.com/bbangert/lettuce_webdriver/blob/d11f8531c43bb7150c316e0dc4ccd083617becf7/lettuce_webdriver/webdriver.py#L359-L361,3, +Python,priority queue,https://github.com/hubo1016/vlcp/blob/239055229ec93a99cc7e15208075724ccf543bd1/vlcp/event/pqueue.py#L1032-L1040,1, +Python,read properties file,https://github.com/rcook/upload-haddocks/blob/a33826be1873da68ba073a42ec828c8ec150d576/setup.py#L16-L26,1, +Python,json to xml conversion,https://github.com/geopy/geopy/blob/02c838d965e76497f3c3d61f53808c86b5c58224/geopy/geocoders/ignfrance.py#L444-L527,0, +Python,string to date,https://github.com/roclark/sportsreference/blob/ea0bae432be76450e137671d2998eb38f962dffd/sportsreference/mlb/schedule.py#L172-L179,3, +Python,copying a file to a path,https://github.com/frictionlessdata/datapackage-pipelines/blob/3a34bbdf042d13c3bec5eef46ff360ee41403874/datapackage_pipelines/lib/dump/to_path.py#L16-L25,2, +Python,reading element from html - ,https://github.com/turicas/rows/blob/c74da41ae9ed091356b803a64f8a30c641c5fc45/rows/plugins/plugin_html.py#L177-L183,2, +Python,deducting the median from each column,https://github.com/CEA-COSMIC/ModOpt/blob/019b189cb897cbb4d210c44a100daaa08468830c/modopt/math/stats.py#L75-L106,2, +Python,how to make the checkbox checked,https://github.com/Shapeways/coyote_framework/blob/cb29899b984a21d56bf65d0b1d907073948fe16c/coyote_framework/webdriver/webdriverwrapper/WebElementWrapper.py#L662-L667,3, +Python,priority queue,https://github.com/mushkevych/scheduler/blob/6740331360f49083c208085fb5a60ce80ebf418b/synergy/scheduler/garbage_collector.py#L81-L98,0, +Python,underline text in label widget,https://github.com/dendory/menu3/blob/350414966e8f5c7737cd527369c8087f4f8f600b/menu3/menu3.py#L45-L49,3, +Python,regex case insensitive,https://github.com/petermelias/valhalla/blob/b08d7a4a94fd8d85a6f5ea86200ec60ef4525e3d/valhalla/filters/strings.py#L90-L99,2, +Python,how to determine a string is a valid word,https://github.com/a-tal/nagaram/blob/2edcb0ef8cb569ebd1c398be826472b4831d6110/nagaram/scrabble.py#L136-L184,1, +Python,socket recv timeout,https://github.com/cablehead/vanilla/blob/c9f5b86f45720a30e8840fb68b1429b919c4ca66/vanilla/message.py#L57-L58,1, +Python,converting uint8 array to image,https://github.com/radjkarl/imgProcessor/blob/7c5a28718f81c01a430152c60a686ac50afbfd7c/imgProcessor/transformations.py#L11-L75,1, +Python,parse query string in url,https://github.com/wummel/linkchecker/blob/c2ce810c3fb00b895a841a7be6b2e78c64e7b042/linkcheck/url.py#L250-L272,2, +Python,parse binary file to custom class,https://github.com/fossasia/knittingpattern/blob/8e608896b0ab82fea1ca9fbfa2b4ee023d8c8027/knittingpattern/Dumper/file.py#L109-L114,3, +Python,readonly array,https://github.com/vaexio/vaex/blob/a45b672f8287afca2ada8e36b74b604b9b28dd85/packages/vaex-core/vaex/dataframe.py#L4548-L4555,0, +Python,parse command line argument,https://github.com/diffeo/yakonfig/blob/412e195da29b4f4fc7b72967c192714a6f5eaeb5/yakonfig/cmd.py#L132-L148,2, +Python,filter array,https://github.com/brechtm/rinohtype/blob/40a63c4e5ad7550f62b6860f1812cb67cafb9dc7/src/rinoh/backend/pdf/filter.py#L459-L463,1, +Python,map to json,https://github.com/grst/geos/blob/ea15abcc5d8f86c9051df55e489b7d941b51a638/geos/server.py#L25-L53,1, +Python,write csv,https://github.com/gem/oq-engine/blob/8294553a0b8aba33fd96437a35065d03547d0040/openquake/hmtk/seismicity/smoothing/smoothed_seismicity.py#L491-L518,2, +Python,convert a utc time to epoch,https://github.com/myusuf3/delorean/blob/3e8a7b8cfd4c26546f62bde2f34002893adfa08a/delorean/dates.py#L492-L512,2, +Python,binomial distribution,https://github.com/chemlab/chemlab/blob/c8730966316d101e24f39ac3b96b51282aba0abe/chemlab/qc/utils.py#L30-L40,3, +Python,copying a file to a path,https://github.com/galaxyproject/pulsar/blob/9ab6683802884324652da0a9f0808c7eb59d3ab4/pulsar/client/client.py#L392-L395,2, +Python,how to randomly pick a number,https://github.com/tensorlayer/tensorlayer/blob/aa9e52e36c7058a7e6fd81d36563ca6850b21956/tensorlayer/utils.py#L515-L539,3, +Python,convert a utc time to epoch,https://github.com/google/mobly/blob/38ba2cf7d29a20e6a2fca1718eecb337df38db26/mobly/utils.py#L147-L165,0, +Python,parse query string in url,https://github.com/vfxetc/sgactions/blob/e2c6ee14a1f8092e97f57a501650581428a6ac6e/sgactions/dispatch.py#L14-L33,1, +Python,filter array,https://github.com/tango-controls/pytango/blob/9cf78c517c9cdc1081ff6d080a9646a740cc1d36/tango/device_proxy.py#L704-L744,0, +Python,write csv,https://github.com/majerteam/sylk_parser/blob/0f62f9d3ca1c273017d7ea728f9db809f2241389/sylk_parser/sylk_parser.py#L27-L40,2, +Python,get current ip address,https://github.com/fy0/slim/blob/9951a910750888dbe7dd3e98acae9c40efae0689/slim/base/view.py#L128-L136,0, +Python,write csv,https://github.com/googledatalab/pydatalab/blob/d9031901d5bca22fe0d5925d204e6698df9852e1/solutionbox/structured_data/mltoolbox/_structured_data/prediction/predict.py#L307-L346,0, +Python,how to get html of website,https://github.com/GibbsConsulting/jupyter-plotly-dash/blob/19e3898372ddf7c1d20292eae1ea0df9e0808fe2/jupyter_plotly_dash/dash_wrapper.py#L104-L120,0, +Python,json to xml conversion,https://github.com/amaas-fintech/amaas-core-sdk-python/blob/347b71f8e776b2dde582b015e31b4802d91e8040/amaascore/core/amaas_model.py#L30-L31,1, +Python,read text file line by line,https://github.com/MIT-LCP/wfdb-python/blob/cc8c9e9e44f10af961b7a9d8ae03708b31ac8a8c/wfdb/io/_header.py#L675-L730,2, +Python,copy to clipboard,https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_main_window.py#L1289-L1305,3, +Python,convert a date string into yyyymmdd,https://github.com/scheibler/khard/blob/0f69430c2680f1ff5f073a977a3c5b753b96cc17/khard/helpers.py#L81-L107,2, +Python,fuzzy match ranking,https://github.com/toejough/pimento/blob/cdb00a93976733aa5521f8504152cedeedfc711a/pimento/__init__.py#L298-L311,1, +Python,json to xml conversion,https://github.com/yyuu/botornado/blob/fffb056f5ff2324d1d5c1304014cfb1d899f602e/boto/cloudfront/identity.py#L77-L84,2, +Python,custom http error response,https://github.com/lepture/flask-oauthlib/blob/9e6f152a5bb360e7496210da21561c3e6d41b0e1/flask_oauthlib/provider/oauth1.py#L902-L905,2, +Python,parse binary file to custom class,https://github.com/python-xlib/python-xlib/blob/8901e831737e79fe5645f48089d70e1d1046d2f2/Xlib/protocol/rq.py#L1135-L1210,3, +Python,get current observable value,https://github.com/Nekmo/simple-monitor-alert/blob/11d6dbd3c0b3b9a210d6435208066f5636f1f44e/simple_monitor_alert/sma.py#L69-L75,1, +Python,read text file line by line,https://github.com/MIT-LCP/wfdb-python/blob/cc8c9e9e44f10af961b7a9d8ae03708b31ac8a8c/wfdb/io/_header.py#L675-L730,2, +Python,readonly array,https://github.com/nyaruka/smartmin/blob/488a676a4960555e4d216a7b95d6e01a4ad4efd8/smartmin/views.py#L914-L924,0, +Python,set file attrib hidden,https://github.com/googledatalab/pydatalab/blob/d9031901d5bca22fe0d5925d204e6698df9852e1/solutionbox/ml_workbench/xgboost/trainer/task.py#L155-L261,0, +Python,confusion matrix,https://github.com/totalgood/pugnlp/blob/c43445b14afddfdeadc5f3076675c9e8fc1ee67c/src/pugnlp/stats.py#L536-L562,2, +Python,output to html file,https://github.com/readbeyond/aeneas/blob/9d95535ad63eef4a98530cfdff033b8c35315ee1/aeneas/syncmap/__init__.py#L309-L368,1, +Python,get inner html,https://github.com/zenwalker/python-xmltag/blob/5ba900753d939b0f3811c88b0f95ebbbdecd1727/xmltag/nodes.py#L45-L59,0, +Python,how to read the contents of a .gz compressed file?,https://github.com/EntilZha/PyFunctional/blob/ac04e4a8552b0c464a7f492f7c9862424867b63e/functional/io.py#L115-L122,3, +Python,convert int to string,https://github.com/osrg/ryu/blob/6f906e72c92e10bd0264c9b91a2f7bb85b97780c/ryu/lib/ofctl_utils.py#L206-L210,0, +Python,filter array,https://github.com/jopohl/urh/blob/2eb33b125c8407964cd1092843cde5010eb88aae/src/urh/controller/widgets/SignalFrame.py#L31-L33,1, +Python,get name of enumerated value,https://github.com/jborean93/smbprotocol/blob/d8eb00fbc824f97d0f4946e3f768c5e6c723499a/smbprotocol/structure.py#L775-L785,3, +Python,buffered file reader read text,https://github.com/ray-project/ray/blob/4eade036a0505e244c976f36aaa2d64386b5129b/python/ray/experimental/streaming/batched_queue.py#L222-L227,2, +Python,readonly array,https://github.com/mattja/sdeint/blob/7cf807cdf97b3bb39d29e1c2dc834b519499b601/sdeint/_broadcast.py#L53-L67,1, +Python,how to read the contents of a .gz compressed file?,https://github.com/onecodex/onecodex/blob/326a0a1af140e3a57ccf31c3c9c5e17a5775c13d/onecodex/lib/upload.py#L225-L246,3, +Python,connect to sql,https://github.com/whiteclover/dbpy/blob/3d9ce85f55cfb39cced22081e525f79581b26b3a/db/pymysql/connection.py#L53-L56,1,"It would work, but I am not sure it is the best definition for connecting to a sql db and as standalone code, would not work. " +Python,parse query string in url,https://github.com/ModisWorks/modis/blob/1f1225c9841835ec1d1831fc196306527567db8b/modis/discord_modis/modules/music/api_music.py#L94-L234,1, +Python,get executable path,https://github.com/etcher-be/elib_run/blob/c9d8ba9f067ab90c5baa27375a92b23f1b97cdde/elib_run/_find_exe.py#L18-L62,3, +Python,find int in string,https://github.com/lionheart/django-pyodbc/blob/46adda7b0bfabfa2640f72592c6f6f407f78b363/django_pyodbc/compiler.py#L107-L111,0, +Python,convert json to csv,https://github.com/albertyw/csv-ical/blob/cdb55a226cd0cb6cc214d896a6cea41a5b92c9ed/csv_ical/convert.py#L92-L97,1, +Python,output to html file,https://github.com/openvax/topiary/blob/04f0077bc4bf1ad350a0e78c26fa48c55fe7813b/topiary/cli/outputs.py#L23-L61,0, +Python,how to make the checkbox checked,https://github.com/bbangert/lettuce_webdriver/blob/d11f8531c43bb7150c316e0dc4ccd083617becf7/lettuce_webdriver/webdriver.py#L337-L341,3, +Python,fuzzy match ranking,https://github.com/toejough/pimento/blob/cdb00a93976733aa5521f8504152cedeedfc711a/pimento/__init__.py#L298-L311,1, +Python,postgresql connection,https://github.com/datajoint/datajoint-python/blob/4f29bb154a7ed2b8b64b4d3a9c8be4c16b39621c/datajoint/connection.py#L20-L44,2, +Python,concatenate several file remove header lines,https://github.com/danielhrisca/asammdf/blob/3c7a1fd19c957ceebe4dcdbb2abf00806c2bdb66/asammdf/mdf.py#L1821-L2190,1, +Python,convert string to number,https://github.com/lawsie/guizero/blob/84c7f0b314fa86f9fc88eb11c9a0f6c4b57155e2/examples/binary_counter.py#L6-L11,1, +Python,parse json file,https://github.com/rehive/rehive-python/blob/a7452a9cfecf76c5c8f0d443f122ed22167fb164/rehive/api/resources/base_resources.py#L22-L46,0, +Python,postgresql connection,https://github.com/apache/airflow/blob/b69c686ad8a0c89b9136bb4b31767257eb7b2597/airflow/hooks/mssql_hook.py#L38-L49,1, +Python,hash set for counting distinct elements,https://github.com/cggh/scikit-allel/blob/3c979a57a100240ba959dd13f98839349530f215/allel/model/ndarray.py#L2492-L2508,1, +Python,group by count,https://github.com/pandas-dev/pandas/blob/9feb3ad92cc0397a04b665803a49299ee7aa1037/pandas/core/groupby/generic.py#L1183-L1196,0, +Python,socket recv timeout,https://github.com/Jaymon/endpoints/blob/2f1c4ae2c69a168e69447d3d8395ada7becaa5fb/endpoints/interface/uwsgi/client.py#L265-L307,2, +Python,parse json file,https://github.com/release-engineering/productmd/blob/49256bf2e8c84124f42346241140b986ad7bfc38/productmd/common.py#L302-L315,1,"Lots of garbage, but there is json.load" +Python,convert a date string into yyyymmdd,https://github.com/bram85/topydo/blob/b59fcfca5361869a6b78d4c9808c7c6cd0a18b58/topydo/lib/Utils.py#L28-L46,1, +Python,format date,https://github.com/ofek/pypinfo/blob/48d56e690d7667ae5854752c3a2dc07e321d5637/pypinfo/core.py#L65-L70,1,unclear needs more context +Python,how to get database table name,https://github.com/apache/airflow/blob/b69c686ad8a0c89b9136bb4b31767257eb7b2597/airflow/hooks/hive_hooks.py#L578-L591,3, +Python,filter array,https://github.com/brechtm/rinohtype/blob/40a63c4e5ad7550f62b6860f1812cb67cafb9dc7/src/rinoh/backend/pdf/filter.py#L459-L463,3, +Python,how to empty array,https://github.com/scikit-hep/awkward-array/blob/1f878c4e11a4548fd977e230ce93eb5534db73a2/awkward/array/virtual.py#L93-L97,0, +Python,how to get current date,https://github.com/alexhayes/django-toolkit/blob/b64106392fad596defc915b8235fe6e1d0013b5b/django_toolkit/views.py#L343-L353,0, +Python,parse binary file to custom class,https://github.com/fossasia/knittingpattern/blob/8e608896b0ab82fea1ca9fbfa2b4ee023d8c8027/knittingpattern/Dumper/file.py#L109-L114,1, +Python,encrypt aes ctr mode,https://github.com/ontio/ontology-python-sdk/blob/ac88bdda941896c5d2ced08422a9c5179d3f9b19/ontology/crypto/aes_handler.py#L59-L63,3, +Python,convert html to pdf,https://github.com/senaite/senaite.core/blob/7602ce2ea2f9e81eb34e20ce17b98a3e70713f85/bika/lims/browser/stickers.py#L281-L291,2, +Python,normal distribution,https://github.com/tensorflow/tensorboard/blob/8e5f497b48e40f2a774f85416b8a35ac0693c35e/tensorboard/plugins/histogram/histograms_demo.py#L32-L103,2, +Python,get current process id,https://github.com/helixyte/everest/blob/70c9b93c3061db5cb62428349d18b8fb8566411b/everest/representers/xml.py#L440-L450,0, +Python,create cookie,https://github.com/wecatch/app-turbo/blob/75faf97371a9a138c53f92168d0a486636cb8a9c/turbo/session.py#L185-L193,3, +Python,confusion matrix,https://github.com/sentinel-hub/eo-learn/blob/b8c390b9f553c561612fe9eb64e720611633a035/ml_tools/eolearn/ml_tools/validator.py#L201-L208,3, +Python,string to date,https://github.com/eliangcs/pystock-crawler/blob/8b803c8944f36af46daf04c6767a74132e37a101/pystock_crawler/spiders/yahoo.py#L12-L16,3, +Python,set file attrib hidden,https://github.com/lamestation/lamestation-sdk-tools/blob/25d1fe8dc276cf4addbb13fd29ea3cf22b09f9ca/lspaint/EventHandler.py#L97-L106,0, +Python,how to reverse a string,https://github.com/honzajavorek/redis-collections/blob/07ca8efe88fb128f7dc7319dfa6a26cd39b3776b/redis_collections/lists.py#L482-L498,1,not a string +Python,convert a date string into yyyymmdd,https://github.com/mushkevych/scheduler/blob/6740331360f49083c208085fb5a60ce80ebf418b/synergy/system/time_helper.py#L78-L82,1, +Python,how to get current date,https://github.com/mrcagney/gtfsrtk/blob/16517b4f2a4a1f51d37e691ce3159a8d637e5389/gtfsrtk/main.py#L183-L235,1, +Python,scatter plot,https://github.com/scivision/lowtran/blob/9954d859e53437436103f9ab54a7e2602ecaa1b7/lowtran/plots.py#L12-L49,0,Word order is important and other context in this case +Python,print model summary,https://github.com/LIVVkit/LIVVkit/blob/680120cd437e408673e62e535fc0a246c7fc17db/livvkit/components/validation.py#L141-L149,3, +Python,how to get database table name,https://github.com/firstprayer/monsql/blob/6285c15b574c8664046eae2edfeb548c7b173efd/monsql/wrapper_postgresql.py#L48-L50,2, +Python,memoize to disk - persistent memoization,https://github.com/noahbenson/pimms/blob/9051b86d6b858a7a13511b72c48dc21bc903dab2/pimms/calculation.py#L516-L573,3, +Python,pretty print json,https://github.com/sendgrid/sendgrid-python/blob/266c2abde7a35dfcce263e06bedc6a0bbdebeac9/examples/helpers/stats/stats_example.py#L13-L14,3, +Python,memoize to disk - persistent memoization,https://github.com/noahbenson/pimms/blob/9051b86d6b858a7a13511b72c48dc21bc903dab2/pimms/calculation.py#L516-L573,2, +Python,linear regression,https://github.com/tmoerman/arboreto/blob/3ff7b6f987b32e5774771751dea646fa6feaaa52/arboreto/core.py#L105-L141,2, +Python,format date,https://github.com/abilian/abilian-core/blob/0a71275bf108c3d51e13ca9e093c0249235351e3/abilian/web/admin/panels/audit.py#L29-L33,3, +Python,convert int to bool,https://github.com/rberrelleza/511-transit/blob/ab676d6e3b57a073405cbfa2ffe1a57b85808fd1/fiveoneone/model.py#L18-L27,3, +Python,set working directory,https://github.com/nugget/python-insteonplm/blob/65548041f1b0729ae1ae904443dd81b0c6cbf1bf/insteonplm/tools.py#L877-L903,1, +Python,matrix multiply,https://github.com/cmbruns/pyopenvr/blob/68395d26bb3df6ab1f0f059c38d441f962938be6/src/openvr/gl_renderer.py#L17-L32,1, +Python,get all parents of xml node,https://github.com/klahnakoski/pyLibrary/blob/fa2dcbc48fda8d26999baef400e9a98149e0b982/mo_graphs/tree_graph.py#L39-L44,2, +Python,binomial distribution,https://github.com/chemlab/chemlab/blob/c8730966316d101e24f39ac3b96b51282aba0abe/chemlab/qc/utils.py#L30-L40,3, +Python,set working directory,https://github.com/materialsproject/pymatgen/blob/4ca558cf72f8d5f8a1f21dfdfc0181a971c186da/pymatgen/io/abinit/flows.py#L254-L266,0, +Python,how to check if a checkbox is checked,https://github.com/InQuest/python-sandboxapi/blob/9bad73f453e25d7d23e7b4b1ae927f44a35a5bc3/sandboxapi/joe.py#L37-L51,1,jbx bits might be helpful? +Python,set working directory,https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L577-L583,2, +Python,how to empty array,https://github.com/pymc-devs/pymc/blob/c6e530210bff4c0d7189b35b2c971bc53f93f7cd/pymc/gp/GPutils.py#L34-L50,0, +Python,filter array,https://github.com/Yipit/pyeqs/blob/2e385c0a5d113af0e20be4d9393add2aabdd9565/pyeqs/query_builder.py#L41-L50,0, +Python,html encode string,https://github.com/jeffa/HTML-Auto-python/blob/e0d24335d86c21b6278f776f3d3416c90e438ab9/t/05-encode.py#L6-L70,0,"this is a test, not the actual implementation" +Python,encode url,https://github.com/couchbase/couchbase-python-client/blob/a7bada167785bf79a29c39f820d932a433a6a535/couchbase/connstr.py#L126-L143,3, +Python,get current ip address,https://github.com/danielfrg/datasciencebox/blob/6b7aa642c6616a46547035fcb815acc1de605a6f/datasciencebox/core/cloud/instance.py#L80-L83,3, +Python,socket recv timeout,https://github.com/nfcpy/nfcpy/blob/6649146d1afdd5e82b2b6b1ea00aa58d50785117/src/nfc/snep/client.py#L51-L74,3, +Python,how to reverse a string,https://github.com/frnsys/broca/blob/7236dcf54edc0a4a54a55eb93be30800910667e7/broca/similarity/doc/wikipedia.py#L28-L41,0, +Python,convert a utc time to epoch,https://github.com/aws/aws-xray-sdk-python/blob/707358cd3a516d51f2ebf71cf34f00e8d906a667/aws_xray_sdk/core/sampling/connector.py#L136-L149,3, +Python,html entities replace,https://github.com/fboender/ansible-cmdb/blob/ebd960ac10684e8c9ec2b12751bba2c4c9504ab7/lib/mako/filters.py#L159-L174,3, +Python,matrix multiply,https://github.com/pymupdf/PyMuPDF/blob/917f2d83482510e26ba0ff01fd2392c26f3a8e90/fitz/fitz.py#L270-L275,2, +Python,confusion matrix,https://github.com/numenta/nupic/blob/5922fafffdccc8812e72b3324965ad2f7d4bbdad/src/nupic/regions/knn_classifier_region.py#L684-L688,1, +Python,parse binary file to custom class,https://github.com/jldantas/libmft/blob/65a988605fe7663b788bd81dcb52c0a4eaad1549/libmft/attribute.py#L1599-L1630,3, +Python,binomial distribution,https://github.com/chemlab/chemlab/blob/c8730966316d101e24f39ac3b96b51282aba0abe/chemlab/qc/utils.py#L30-L40,3, +Python,connect to sql,https://github.com/snower/TorMySQL/blob/01ff87f03a850a2a6e466700d020878eecbefa5d/tormysql/pool.py#L102-L111,2, +Python,create cookie,https://github.com/decryptus/httpdis/blob/5d198cdc5558f416634602689b3df2c8aeb34984/httpdis/httpdis.py#L760-L769,2, +Python,get the description of a http status code,https://github.com/funilrys/PyFunceble/blob/cdf69cbde120199171f7158e1c33635753e6e2f5/PyFunceble/http_code.py#L157-L204,0, +Python,get current ip address,https://github.com/istresearch/scrapy-cluster/blob/13aaed2349af5d792d6bcbfcadc5563158aeb599/crawler/crawling/distributed_scheduler.py#L275-L298,1, +Python,how to get html of website,https://github.com/GibbsConsulting/jupyter-plotly-dash/blob/19e3898372ddf7c1d20292eae1ea0df9e0808fe2/jupyter_plotly_dash/dash_wrapper.py#L104-L120,2, +Python,hash set for counting distinct elements,https://github.com/cggh/scikit-allel/blob/3c979a57a100240ba959dd13f98839349530f215/allel/model/ndarray.py#L2492-L2508,1, +Python,initializing array,https://github.com/skorch-dev/skorch/blob/5b9b8b7b7712cb6e5aaa759d9608ea6269d5bcd3/skorch/net.py#L541-L554,1, +Python,deserialize json,https://github.com/jazzband/sorl-thumbnail/blob/22ccd9781462a820f963f57018ad3dcef85053ed/sorl/thumbnail/helpers.py#L55-L58,3, +Python,how to read the contents of a .gz compressed file?,https://github.com/saltstack/salt/blob/e8541fd6e744ab0df786c0f76102e41631f45d46/salt/utils/gzip_util.py#L74-L106,1, +Python,parse command line argument,https://github.com/chitamoor/Rester/blob/1865b17f70b7c597aeadde2d0907cb1b59f10c0f/rester/apirunner.py#L9-L18,3, +Python,deserialize json,https://github.com/wtsi-hgi/python-hgijson/blob/6e8ccb562eabcaa816a136268a16504c2e0d4664/hgijson/json_converters/_converters.py#L61-L69,0, +Python,map to json,https://github.com/mapbox/mapboxgl-jupyter/blob/f6e403c13eaa910e70659c7d179e8e32ce95ae34/mapboxgl/viz.py#L20-L37,0, +Python,convert html to pdf,https://github.com/senaite/senaite.core/blob/7602ce2ea2f9e81eb34e20ce17b98a3e70713f85/bika/lims/browser/stickers.py#L281-L291,2, +Python,convert html to pdf,https://github.com/pikepdf/pikepdf/blob/07154f4dec007e2e9c0c6a8c07b964fd06bc5f77/src/pikepdf/_methods.py#L76-L83,1,does not do the html part +Python,find int in string,https://github.com/nickolas360/librecaptcha/blob/bd247082fd98118be220f326e5cd162e6d926655/librecaptcha/recaptcha.py#L354-L380,1, +Python,parse json file,https://github.com/ray-project/ray/blob/4eade036a0505e244c976f36aaa2d64386b5129b/python/ray/tune/automlboard/common/utils.py#L58-L92,2, +Python,how to get html of website,https://github.com/dariosky/wfcli/blob/87a9ed30dbd456f801135a55099f0541b0614ccb/wfcli/wfapi.py#L123-L134,3, +Python,json to xml conversion,https://github.com/amaas-fintech/amaas-core-sdk-python/blob/347b71f8e776b2dde582b015e31b4802d91e8040/amaascore/core/amaas_model.py#L30-L31,1, +Python,nelder mead optimize,https://github.com/sods/paramz/blob/ae6fc6274b70fb723d91e48fc5026a9bc5a06508/paramz/optimization/scg.py#L44-L174,2, +Python,html encode string,https://github.com/honzajavorek/danube-delta/blob/d0a72f0704d52b888e7fb2b68c4fdc696d370018/danube_delta/plugins/utils.py#L8-L17,0, +Python,reading element from html - ,https://github.com/posativ/isso/blob/78997f491044b7d694ac7170edc32030544095b7/isso/utils/parse.py#L21-L80,1, +Python,how to read .csv file in an efficient way?,https://github.com/PeerAssets/pypeerassets/blob/8927b4a686887f44fe2cd9de777e2c827c948987/pypeerassets/transactions.py#L99-L114,1, +Python,copy to clipboard,https://github.com/devassistant/devassistant/blob/2dbfeaa666a64127263664d18969c55d19ecc83e/devassistant/gui/gui_helper.py#L466-L473,3, +Python,get inner html,https://github.com/miyakogi/wdom/blob/a21bcd23e94baceee71161829f6897bee3fd39c1/wdom/web_node.py#L305-L311,3, +Python,convert decimal to hex,https://github.com/markperdue/pyvesync/blob/7552dd1a6dd5ebc452acf78e33fd8f6e721e8cfc/src/pyvesync/helpers.py#L122-L127,0, +Python,confusion matrix,https://github.com/Cognexa/cxflow/blob/dd609e6b0bd854424a8f86781dd77801a13038f9/cxflow/utils/confusion_matrix.py#L4-L22,1, +Python,get name of enumerated value,https://github.com/google/apitools/blob/f3745a7ea535aa0e88b0650c16479b696d6fd446/apitools/base/protorpclite/messages.py#L1786-L1809,1, +Python,heatmap from 3d coordinates,https://github.com/jwkvam/plotlywrapper/blob/762b42912e824fecb1212c186900f2ebdd0ab12b/doc/figures.py#L43-L45,2, +Python,convert int to bool,https://github.com/yaybu/callsign/blob/e70e5368bfe4fd3ae3fdd1ed43944b53ffa1e100/callsign/config.py#L54-L60,1, +Python,extract latitude and longitude from given input,https://github.com/gem/oq-engine/blob/8294553a0b8aba33fd96437a35065d03547d0040/openquake/hazardlib/valid.py#L437-L446,0, +Python,priority queue,https://github.com/LogicalDash/LiSE/blob/fe6fd4f0a7c1780e065f4c9babb9bc443af6bb84/ELiDE/ELiDE/board/pawn.py#L105-L108,0, +Python,sorting multiple arrays based on another arrays sorted order,https://github.com/radujica/baloo/blob/f6e05e35b73a75e8a300754c6bdc575e5f2d53b9/baloo/weld/weld_ops.py#L464-L491,0, +Python,postgresql connection,https://github.com/apache/airflow/blob/b69c686ad8a0c89b9136bb4b31767257eb7b2597/airflow/hooks/mssql_hook.py#L38-L49,0, +Python,postgresql connection,https://github.com/Azure/azure-cli-extensions/blob/3d4854205b0f0d882f688cfa12383d14506c2e35/src/db-up/azext_db_up/custom.py#L381-L394,1, +Python,copying a file to a path,https://github.com/klen/starter/blob/24a65c10d4ac5a9ca8fc1d8b3d54b3fb13603f5f/starter/core.py#L52-L58,3, +Python,binomial distribution,https://github.com/chemlab/chemlab/blob/c8730966316d101e24f39ac3b96b51282aba0abe/chemlab/qc/utils.py#L30-L40,2, +Python,output to html file,https://github.com/lrq3000/pyFileFixity/blob/fd5ef23bb13835faf1e3baa773619b86a1cc9bdf/pyFileFixity/lib/profilers/pyinstrument/profiler.py#L159-L185,1, +Python,get current process id,https://github.com/Jaymon/prom/blob/b7ad2c259eca198da03e1e4bc7d95014c168c361/prom/query.py#L1458-L1464,3, +Python,sort string list,https://github.com/stevepeak/inquiry/blob/f6ea435c302560ba19985b5d4ce2c97e2f321508/inquiry/query.py#L76-L81,1, +Python,string to date,https://github.com/EdwinvO/pyutillib/blob/6d773c31d1f27cc5256d47feb8afb5c3ae5f0db5/pyutillib/date_utils.py#L35-L84,3, +Python,how to read .csv file in an efficient way?,https://github.com/sparklingpandas/sparklingpandas/blob/7d549df4348c979042b683c355aa778fc6d3a768/sparklingpandas/pcontext.py#L68-L155,2, +Python,convert json to csv,https://github.com/oplatek/csv2json/blob/f2f95db71ba2ce683fd6d0d3e2f13c9d0a77ceb6/csv2json/__init__.py#L20-L51,1,the other way around +Python,connect to sql,https://github.com/RudolfCardinal/pythonlib/blob/0b84cb35f38bd7d8723958dae51b480a829b7227/cardinal_pythonlib/rnc_db.py#L1649-L1908,3, +Python,confusion matrix,https://github.com/rjrequina/Cebuano-POS-Tagger/blob/fb1b46448c40b23ac8e8e373f073f1f8934b6dc6/eval/evaluator.py#L72-L92,2, +Python,convert a utc time to epoch,https://github.com/halcy/Mastodon.py/blob/35c43562dd3d34d6ebf7a0f757c09e8fcccc957c/mastodon/Mastodon.py#L2443-L2458,2, +Python,output to html file,https://github.com/explosion/spaCy/blob/8ee4100f8ffb336886208a1ea827bf4c745e2709/examples/pipeline/custom_attr_methods.py#L43-L58,3, +Python,get name of enumerated value,https://github.com/crytic/slither/blob/04c147f7e50223c6af458ca430befae747ccd259/slither/core/declarations/contract.py#L431-L439,1, +Python,deserialize json,https://github.com/hyperledger/indy-sdk/blob/55240dc170308d7883c48f03f308130a6d077be6/vcx/wrappers/python3/vcx/api/proof.py#L55-L70,2, +Python,parse command line argument,https://github.com/bjmorgan/vasppy/blob/cc2d1449697b17ee1c43715a02cddcb1139a6834/vasppy/scripts/rotate_poscar.py#L7-L13,3, +Python,postgresql connection,https://github.com/gabfl/dbschema/blob/37722e6654e9f0374fac5518ebdca22f4c39f92f/src/schema_change.py#L81-L91,2,"The get_pg_connection function is the better match, but this function serves as a relevant starting point." +Python,encrypt aes ctr mode,https://github.com/ghackebeil/PyORAM/blob/b8832c1b753c0b2148ef7a143c5f5dd3bbbb61e7/src/pyoram/crypto/aes.py#L24-L27,2, +Python,how to make the checkbox checked,https://github.com/PySimpleGUI/PySimpleGUI/blob/08184197f5bd4580ab5e5aca28bdda30f87b86fc/PySimpleGUI27.py#L486-L493,1, +Python,set working directory,https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/plugin.py#L1537-L1542,3, +Python,linear regression,https://github.com/dshean/pygeotools/blob/5ac745717c0098d01eb293ff1fe32fd7358c76ab/pygeotools/lib/malib.py#L653-L667,1, +Python,underline text in label widget,https://github.com/limodou/uliweb/blob/34472f25e4bc0b954a35346672f94e84ef18b076/uliweb/form/template_layout.py#L90-L108,1, +Python,confusion matrix,https://github.com/totalgood/pugnlp/blob/c43445b14afddfdeadc5f3076675c9e8fc1ee67c/src/pugnlp/stats.py#L536-L562,2, +Python,aes encryption,https://github.com/frispete/keyrings.cryptfile/blob/cfa80d4848a5c3c0aeee41a954b2b120c80e69b2/keyrings/cryptfile/cryptfile.py#L132-L162,0, +Python,unique elements,https://github.com/iotile/coretools/blob/2d794f5f1346b841b0dcd16c9d284e9bf2f3c6ec/iotilebuild/iotile/build/config/scons-local-3.0.1/SCons/Util.py#L1300-L1303,1, +Python,get current ip address,https://github.com/danielfrg/datasciencebox/blob/6b7aa642c6616a46547035fcb815acc1de605a6f/datasciencebox/core/cloud/instance.py#L80-L83,0, +Python,sorting multiple arrays based on another arrays sorted order,https://github.com/stephan-mclean/KickassTorrentsAPI/blob/4d867a090c06ce95b9ed996b48092cb5bfe28bbd/kat.py#L202-L212,0, +Python,create cookie,https://github.com/pyGrowler/Growler/blob/90c923ff204f28b86a01d741224987a22f69540f/growler/middleware/cookieparser.py#L34-L56,3, +Python,get the description of a http status code,https://github.com/funilrys/PyFunceble/blob/cdf69cbde120199171f7158e1c33635753e6e2f5/PyFunceble/url.py#L75-L125,3, +Python,deserialize json,https://github.com/open511/open511/blob/3d573f59d7efa06ff1b5419ea5ff4d90a90b3cf8/open511/utils/serialization.py#L47-L60,1, +Python,convert int to string,https://github.com/osrg/ryu/blob/6f906e72c92e10bd0264c9b91a2f7bb85b97780c/ryu/lib/ofctl_utils.py#L198-L203,1, +Python,priority queue,https://github.com/open-mmlab/mmcv/blob/0d77f61450aab4dde8b8585a577cc496acb95d7f/mmcv/runner/priority.py#L35-L53,0, +Python,format date,https://github.com/LandRegistry/lr-utils/blob/811c9e5c11678a04ee203fa55a7c75080f4f9d89/lrutils/templatefilters/template_filters.py#L10-L12,2, +Python,extract latitude and longitude from given input,https://github.com/nickmckay/LiPD-utilities/blob/5dab6bbeffc5effd68e3a6beaca6b76aa928e860/Python/lipd/excel.py#L1227-L1269,2, +Python,unique elements,https://github.com/bxlab/bx-python/blob/09cb725284803df90a468d910f2274628d8647de/scripts/bnMapper.py#L102-L117,0, +Python,reading element from html - ,https://github.com/horejsek/python-webdriverwrapper/blob/a492f79ab60ed83d860dd817b6a0961500d7e3f5/webdriverwrapper/forms.py#L133-L138,1,"The overall file is relevant to the query, but it is hard to tell from just this function." +Python,output to html file,https://github.com/readbeyond/aeneas/blob/9d95535ad63eef4a98530cfdff033b8c35315ee1/aeneas/syncmap/__init__.py#L309-L368,2, +Python,extracting data from a text file,https://github.com/lcharleux/argiope/blob/8170e431362dc760589f7d141090fd133dece259/argiope/abq/pypostproc.py#L23-L49,2, +Python,map to json,https://github.com/stianaske/pybotvac/blob/e3f655e81070ff209aaa4efb7880016cf2599e6d/pybotvac/robot.py#L65-L120,1, +Python,extract latitude and longitude from given input,https://github.com/geometalab/pyGeoTile/blob/b1f44271698f5fc4d18c2add935797ed43254aa6/pygeotile/point.py#L12-L16,1, +Python,parse binary file to custom class,https://github.com/sci-bots/pygtkhelpers/blob/3a6e6d6340221c686229cd1c951d7537dae81b07/pygtkhelpers/debug/console.py#L645-L668,0, +Python,read properties file,https://github.com/nion-software/nionswift/blob/d43693eaf057b8683b9638e575000f055fede452/nion/swift/model/FileStorageSystem.py#L97-L106,2, +Python,reading element from html - ,https://github.com/danidee10/Staticfy/blob/ebc555b00377394b0f714e4a173d37833fec90cb/staticfy/staticfy.py#L71-L89,2, +Python,unique elements,https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/__init__.py#L207-L223,0, +Python,how to extract zip file recursively,https://github.com/jedie/DragonPy/blob/6659e5b5133aab26979a498ee7453495773a4f6c/dragonpy/Multicomp6809/Multicomp6809_rom.py#L39-L54,1, +Python,heatmap from 3d coordinates,https://github.com/kevinsprong23/aperture/blob/d0420fef3b25d8afc0e5ddcfb6fe5f0ff42b9799/aperture/heatmaps.py#L123-L144,2, +Python,concatenate several file remove header lines,https://github.com/konstantinstadler/pymrio/blob/d764aa0dd2150200e867a9713a98ddae203e12d4/pymrio/tools/ioutil.py#L459-L540,1, +Python,how to reverse a string,https://github.com/nilp0inter/cpe/blob/670d947472a7652af5149324977b50f9a7af9bcf/cpe/cpe.py#L115-L146,2, +Python,readonly array,https://github.com/zeroSteiner/AdvancedHTTPServer/blob/8c53cf7e1ddbf7ae9f573c82c5fe5f6992db7b5a/advancedhttpserver.py#L1920-L1927,0, +Python,linear regression,https://github.com/romanorac/discomll/blob/a4703daffb2ba3c9f614bc3dbe45ae55884aea00/discomll/utils/model_view.py#L87-L93,0, +Python,underline text in label widget,https://github.com/dendory/menu3/blob/350414966e8f5c7737cd527369c8087f4f8f600b/menu3/menu3.py#L45-L49,2, +Python,parse json file,https://github.com/danhper/python-i18n/blob/bbba4b7ec091997ea8df2067acd7af316ee00b31/i18n/loaders/json_loader.py#L10-L14,1, +Python,binomial distribution,https://github.com/pysal/mapclassify/blob/5b22ec33f5802becf40557614d90cd38efa1676e/mapclassify/classifiers.py#L231-L278,0, +Python,get current ip address,https://github.com/kencochrane/django-defender/blob/e3e547dbb83235e0d564a6d64652c7df00412ff2/defender/utils.py#L41-L50,2, +Python,filter array,https://github.com/jopohl/urh/blob/2eb33b125c8407964cd1092843cde5010eb88aae/src/urh/controller/widgets/SignalFrame.py#L31-L33,1, +Python,priority queue,https://github.com/rfk/threading2/blob/7ec234ddd8c0d7e683b1a5c4a79a3d001143189f/threading2/t2_base.py#L372-L378,1, +Python,convert int to string,https://github.com/kpdyer/regex2dfa/blob/109f877e60ef0dfcb430f11516d215930b7b9936/third_party/re2/re2/unicode.py#L26-L45,0,does the complete opposite +Python,encode url,https://github.com/couchbase/couchbase-python-client/blob/a7bada167785bf79a29c39f820d932a433a6a535/couchbase/connstr.py#L126-L143,3, +Python,sorting multiple arrays based on another arrays sorted order,https://github.com/pandas-dev/pandas/blob/9feb3ad92cc0397a04b665803a49299ee7aa1037/pandas/core/indexes/multi.py#L292-L350,1, +Python,positions of substrings in string,https://github.com/hollenstein/maspy/blob/f15fcfd24df306d8420540460d902aa3073ec133/maspy/auxiliary.py#L471-L491,3, +Python,replace in file,https://github.com/TheRobotCarlson/DocxMerge/blob/df8d2add5ff4f33e31d36a6bd3d4495140334538/DocxMerge/DocxMerge.py#L274-L293,2, +Python,initializing array,https://github.com/AshleySetter/optoanalysis/blob/9d390acc834d70024d47b574aea14189a5a5714e/optoanalysis/optoanalysis/optoanalysis.py#L3311-L3329,2, +Python,save list to file,https://github.com/StanfordBioinformatics/loom/blob/db2031a1a87124fee1aeb7414a668c03d774a698/worker/loomengine_worker/outputs.py#L71-L83,1, +Python,filter array,https://github.com/PiotrDabkowski/Js2Py/blob/c0fa43f5679cf91ca8986c5747fcb07a433dc584/js2py/internals/prototypes/jsarray.py#L382-L398,0, +Python,save list to file,https://github.com/tzutalin/labelImg/blob/6afd15aa88f89f41254e0004ed219b3965eb2c0d/labelImg.py#L1295-L1297,0, +Python,scatter plot,https://github.com/maartenbreddels/ipyvolume/blob/e68b72852b61276f8e6793bc8811f5b2432a155f/ipyvolume/widgets.py#L434-L441,3, +Python,filter array,https://github.com/Yipit/pyeqs/blob/2e385c0a5d113af0e20be4d9393add2aabdd9565/pyeqs/query_builder.py#L41-L50,0, +Python,encrypt aes ctr mode,https://github.com/boldfield/s3-encryption/blob/d88549ba682745dc6b199934c5b5221de7f8d8bc/s3_encryption/crypto.py#L52-L57,2, +Python,output to html file,https://github.com/explosion/spaCy/blob/8ee4100f8ffb336886208a1ea827bf4c745e2709/examples/pipeline/custom_attr_methods.py#L43-L58,3, +Python,string similarity levenshtein,https://github.com/Games-and-Simulations/sc-docker/blob/1d7adb9b5839783655564afc4bbcd204a0055dcb/scbw/utils.py#L18-L37,3, +Python,nelder mead optimize,https://github.com/ulf1/oxyba/blob/b3043116050de275124365cb11e7df91fb40169d/oxyba/norm_mle.py#L2-L59,2, +Python,replace in file,https://github.com/JesseAldridge/clipmon/blob/5e16a31cf38f64db2d9b7a490968f922aca57512/clipmon.py#L19-L38,1, +Python,print model summary,https://github.com/MillionIntegrals/vel/blob/e0726e1f63742b728966ccae0c8b825ea0ba491a/vel/util/summary.py#L11-L86,3, +Python,priority queue,https://github.com/limpyd/redis-limpyd-jobs/blob/264c71029bad4377d6132bf8bb9c55c44f3b03a2/limpyd_jobs/workers.py#L492-L504,1,query somewhat unclear +Python,how to get database table name,https://github.com/spulec/moto/blob/4a286c4bc288933bb023396e2784a6fdbb966bc9/moto/glue/models.py#L55-L57,3, +Python,how to make the checkbox checked,https://github.com/aloetesting/aloe_webdriver/blob/65d847da4bdc63f9c015cb19d4efdee87df8ffad/aloe_webdriver/__init__.py#L564-L568,1, +Python,how to read the contents of a .gz compressed file?,https://github.com/log2timeline/plaso/blob/9c564698d2da3ffbe23607a3c54c0582ea18a6cc/plaso/cli/tools.py#L227-L239,0, +Python,how to get database table name,https://github.com/apache/airflow/blob/b69c686ad8a0c89b9136bb4b31767257eb7b2597/airflow/contrib/hooks/aws_glue_catalog_hook.py#L120-L137,1, +Python,create cookie,https://github.com/pyGrowler/Growler/blob/90c923ff204f28b86a01d741224987a22f69540f/growler/middleware/cookieparser.py#L34-L56,2, +Python,sorting multiple arrays based on another arrays sorted order,https://github.com/loverajoel/sqlalchemy-elasticquery/blob/4c99b81f59e7bb20eaeedb3adbf5126e62bbc25c/sqlalchemy_elasticquery/elastic_query.py#L159-L167,3, +Python,how to empty array,https://github.com/scikit-hep/uproot/blob/fc406827e36ed87cfb1062806e118f53fd3a3b0a/uproot/interp/numerical.py#L340-L341,3, +Python,how to reverse a string,https://github.com/keon/algorithms/blob/4d6569464a62a75c1357acc97e2dd32ee2f9f4a3/algorithms/strings/reverse_words.py#L9-L14,2,"Ok, except use arr.reverse() instead of the inefficient loop in the auxiliary function reverse" +Python,sort string list,https://github.com/OnroerendErfgoed/skosprovider_getty/blob/5aa0b5a8525d607e07b631499ff31bac7a0348b7/skosprovider_getty/providers.py#L390-L396,2, +Python,get current observable value,https://github.com/timofurrer/observable/blob/a6a764efaf9408a334bdb1ddf4327d9dbc4b8eaa/observable/property.py#L102-L108,1, +Python,sorting multiple arrays based on another arrays sorted order,https://github.com/PiotrDabkowski/Js2Py/blob/c0fa43f5679cf91ca8986c5747fcb07a433dc584/js2py/internals/prototypes/jsarray.py#L157-L183,0, +Python,unique elements,https://github.com/mbj4668/pyang/blob/f2a5cc3142162e5b9ee4e18d154568d939ff63dd/pyang/plugins/check_update.py#L584-L598,2, +Python,group by count,https://github.com/facetoe/zenpy/blob/34c54c7e408b9ed01604ddf8b3422204c8bf31ea/zenpy/lib/api_objects/__init__.py#L1283-L1286,0, +Python,html entities replace,https://github.com/OpenTreeOfLife/peyotl/blob/5e4e52a0fdbd17f490aa644ad79fda6ea2eda7c0/peyotl/nexson_syntax/nexson2nexml.py#L101-L137,0, +Python,json to xml conversion,https://github.com/yyuu/botornado/blob/fffb056f5ff2324d1d5c1304014cfb1d899f602e/boto/cloudfront/identity.py#L77-L84,0, +Python,converting uint8 array to image,https://github.com/sony/nnabla/blob/aaf3d33b7cbb38f2a03aa754178ba8f7c8481320/python/src/nnabla/utils/image_utils/common.py#L62-L66,1,The other way around +Python,all permutations of a list,https://github.com/mabuchilab/QNET/blob/cc20d26dad78691d34c67173e5cd67dcac94208a/src/qnet/algebra/core/circuit_algebra.py#L822-L834,0,unclear +Python,get current ip address,https://github.com/fy0/slim/blob/9951a910750888dbe7dd3e98acae9c40efae0689/slim/base/view.py#L128-L136,2, +Python,connect to sql,https://github.com/snower/TorMySQL/blob/01ff87f03a850a2a6e466700d020878eecbefa5d/tormysql/pool.py#L102-L111,3, +Python,k means clustering,https://github.com/markovmodel/PyEMMA/blob/5c3124398217de05ba5ce9c8fb01519222481ab8/pyemma/coordinates/api.py#L1645-L1692,3, +Python,converting uint8 array to image,https://github.com/pyviz/holoviews/blob/ae0dd2f3de448b0ca5e9065aabd6ef8d84c7e655/holoviews/operation/datashader.py#L932-L936,0,Reverse of query +Python,how to get html of website,https://github.com/inorton/junit2html/blob/73ff9d84c41b60148e86ce597ef605a0f1976d4b/junit2htmlreport/parser.py#L561-L574,0, +Python,httpclient post json,https://github.com/rigetti/pyquil/blob/ec98e453084b0037d69d8c3245f6822a5422593d/pyquil/api/_base_connection.py#L52-L59,3, +Python,how to read the contents of a .gz compressed file?,https://github.com/log2timeline/plaso/blob/9c564698d2da3ffbe23607a3c54c0582ea18a6cc/plaso/cli/tools.py#L227-L239,0, +Python,postgresql connection,https://github.com/datajoint/datajoint-python/blob/4f29bb154a7ed2b8b64b4d3a9c8be4c16b39621c/datajoint/connection.py#L20-L44,1, +Python,get all parents of xml node,https://github.com/emc-openstack/storops/blob/24b4b13bf065c0ef0538dd0b5ebb8f25d24176bd/storops/vnx/resource/nfs_share.py#L38-L50,1, +Python,convert string to number,https://github.com/gunthercox/ChatterBot/blob/1a03dcb45cba7bdc24d3db5e750582e0cb1518e2/chatterbot/parsing.py#L506-L517,3, +Python,parse command line argument,https://github.com/bjmorgan/vasppy/blob/cc2d1449697b17ee1c43715a02cddcb1139a6834/vasppy/scripts/xdatcar_to_disp.py#L7-L12,3, +Python,write csv,https://github.com/gem/oq-engine/blob/8294553a0b8aba33fd96437a35065d03547d0040/openquake/hmtk/seismicity/smoothing/smoothed_seismicity.py#L491-L518,2, +Python,finding time elapsed using a timer,https://github.com/alexmojaki/littleutils/blob/1132d2d2782b05741a907d1281cd8c001f1d1d9d/littleutils/__init__.py#L716-L739,3, +Python,concatenate several file remove header lines,https://github.com/totalgood/nlpia/blob/efa01126275e9cd3c3a5151a644f1c798a9ec53f/src/nlpia/clean_alice.py#L59-L82,1, +Python,get current observable value,https://github.com/jor-/util/blob/0eb0be84430f88885f4d48335596ca8881f85587/util/observable/decorator.py#L114-L143,0, +Python,sort string list,https://github.com/readbeyond/aeneas/blob/9d95535ad63eef4a98530cfdff033b8c35315ee1/aeneas/idsortingalgorithm.py#L79-L109,2, +Python,read properties file,https://github.com/markreidvfx/pyaaf2/blob/37de8c10d3c3495cc00c705eb6c5048bc4a7e51f/aaf2/core.py#L73-L113,2, +Python,pretty print json,https://github.com/PSPC-SPAC-buyandsell/von_anchor/blob/78ac1de67be42a676274f4bf71fe12f66e72f309/von_anchor/frill.py#L30-L45,3, +Python,binomial distribution,https://github.com/TeamHG-Memex/MaybeDont/blob/34721f67b69d426adda324a0ed905d3860828af9/maybedont/predict.py#L275-L283,1, +Python,fuzzy match ranking,https://github.com/azraq27/gini/blob/3c2b5265d096d606b303bfe25ac9adb74b8cee14/gini/matching.py#L63-L68,1, +Python,unzipping large files,https://github.com/facelessuser/backrefs/blob/3b3d60f5d57b02044f880aa29c9c5add0e31a34f/tools/unidatadownload.py#L32-L44,2, +Python,group by count,https://github.com/adamjaso/pyauto/blob/b11da69fb21a49241f5ad75dac48d9d369c6279b/ouidb/pyauto/ouidb/config.py#L43-L50,2, +Python,extract latitude and longitude from given input,https://github.com/nickmckay/LiPD-utilities/blob/5dab6bbeffc5effd68e3a6beaca6b76aa928e860/Python/lipd/excel.py#L1227-L1269,1, +Python,json to xml conversion,https://github.com/codeforamerica/three/blob/67b4a4b233a57aa7995d01f6b0f69c2e85aea6c0/three/core.py#L158-L170,3, +Python,custom http error response,https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L2017-L2034,1, +Python,scatter plot,https://github.com/scivision/lowtran/blob/9954d859e53437436103f9ab54a7e2602ecaa1b7/lowtran/plots.py#L12-L49,1,funny naming confusion (or not?) +Python,output to html file,https://github.com/thespacedoctor/polyglot/blob/98038d746aa67e343b73b3ccee1e02d31dab81ec/polyglot/ebook.py#L246-L282,3, +Python,deserialize json,https://github.com/go-macaroon-bakery/py-macaroon-bakery/blob/63ce1ef1dabe816eb8aaec48fbb46761c34ddf77/macaroonbakery/bakery/_macaroon.py#L242-L248,3, +Python,normal distribution,https://github.com/tensorforce/tensorforce/blob/520a8d992230e382f08e315ede5fc477f5e26bfb/tensorforce/core/distributions/gaussian.py#L83-L93,2, +Python,create cookie,https://github.com/hubo1016/vlcp/blob/239055229ec93a99cc7e15208075724ccf543bd1/vlcp/utils/http.py#L175-L196,3, +Python,encode url,https://github.com/fadhiilrachman/line-py/blob/b7f5f2b3fc09fa3fbf6088d7ebdaf9e44d96ba69/linepy/server.py#L18-L19,3, +Python,replace in file,https://github.com/TheRobotCarlson/DocxMerge/blob/df8d2add5ff4f33e31d36a6bd3d4495140334538/DocxMerge/DocxMerge.py#L274-L293,2, +Python,format date,https://github.com/binux/pyspider/blob/3fccfabe2b057b7a56d4a4c79dc0dd6cd2239fe9/pyspider/libs/utils.py#L72-L130,2, +Python,convert decimal to hex,https://github.com/restran/mountains/blob/a97fee568b112f4e10d878f815d0db3dd0a98d74/mountains/encoding/converter.py#L84-L93,1,This function solves the opposite problem (hex -> decimal) +Python,read properties file,https://github.com/GreatFruitOmsk/tailhead/blob/a3b1324a39935f8ffcfda59328a9a458672889d9/tailhead/__init__.py#L72-L79,2, +Python,scatter plot,https://github.com/maartenbreddels/ipyvolume/blob/e68b72852b61276f8e6793bc8811f5b2432a155f/ipyvolume/widgets.py#L434-L441,2, +Python,custom http error response,https://github.com/swevm/scaleio-py/blob/d043a0137cb925987fd5c895a3210968ce1d9028/scaleiopy/im.py#L171-L200,1,The response is more concerned with HTTP POST requests than custom HTTP exceptions. +Python,reading element from html - ,https://github.com/atlassian-api/atlassian-python-api/blob/540d269905c3e7547b666fe30c647b2d512cf358/atlassian/utils.py#L80-L103,3, +Python,parse query string in url,https://github.com/googleapis/google-auth-library-python/blob/2c6ad78917e936f38f87c946209c8031166dc96e/google/auth/_helpers.py#L130-L173,2, +Python,write csv,https://github.com/rvswift/EB/blob/341880b79faf8147dc9fa6e90438531cd09fabcc/EB/builder/splitter/splitter.py#L37-L57,3, +Python,how to determine a string is a valid word,https://github.com/SpotlightData/preprocessing/blob/180c6472bc2642afbd7a1ece08d0b0d14968a708/preprocessing/spellcheck.py#L18-L28,2, +Python,binomial distribution,https://github.com/davidfokkema/artist/blob/26ae7987522622710f2910980770c50012fda47d/demo/demo_histogram_fit.py#L8-L45,0, +Python,sending binary data over a serial connection,https://github.com/thomasdelaet/python-velbus/blob/af2f8af43f1a24bf854eff9f3126fd7b5c41b3dd/velbus/messages/relay_status.py#L120-L130,0, +Python,string to date,https://github.com/roclark/sportsreference/blob/ea0bae432be76450e137671d2998eb38f962dffd/sportsreference/mlb/schedule.py#L172-L179,3, +Python,linear regression,https://github.com/quantopian/zipline/blob/77ad15e6dc4c1cbcdc133653bac8a63fc704f7fe/zipline/pipeline/factors/factor.py#L786-L843,2, +Python,all permutations of a list,https://github.com/awslabs/sockeye/blob/5d64a1ee1ef3cbba17c6d1d94bc061020c43f6ab/sockeye/data_io.py#L1424-L1451,0, +Python,memoize to disk - persistent memoization,https://github.com/KelSolaar/Foundations/blob/5c141330faf09dad70a12bc321f4c564917d0a91/foundations/decorators.py#L80-L129,1, +Python,initializing array,https://github.com/AshleySetter/optoanalysis/blob/9d390acc834d70024d47b574aea14189a5a5714e/optoanalysis/optoanalysis/optoanalysis.py#L3311-L3329,1, +Python,custom http error response,https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L2017-L2034,1, +Python,convert json to csv,https://github.com/murphy214/berrl/blob/ce4d060cc7db74c32facc538fa1d7030f1a27467/build/lib/berrl/pipegeojson.py#L326-L356,0,Opposite +Python,convert a utc time to epoch,https://github.com/google/mobly/blob/38ba2cf7d29a20e6a2fca1718eecb337df38db26/mobly/utils.py#L147-L165,1, +Python,custom http error response,https://github.com/FelixSchwarz/pymta/blob/1884accc3311e6c2e89259784f9592314f6d34fc/pymta/session.py#L175-L180,0, +Python,convert a utc time to epoch,https://github.com/apache/airflow/blob/b69c686ad8a0c89b9136bb4b31767257eb7b2597/airflow/utils/timezone.py#L67-L79,1, +Python,sort string list,https://github.com/OnroerendErfgoed/skosprovider_getty/blob/5aa0b5a8525d607e07b631499ff31bac7a0348b7/skosprovider_getty/providers.py#L390-L396,3, +Python,convert json to csv,https://github.com/PythonSanSebastian/docstamp/blob/b43808f2e15351b0b2f0b7eade9c7ef319c9e646/docstamp/file_utils.py#L138-L170,1, +Python,convert html to pdf,https://github.com/senaite/senaite.core/blob/7602ce2ea2f9e81eb34e20ce17b98a3e70713f85/bika/lims/browser/stickers.py#L281-L291,3, +Python,how to read the contents of a .gz compressed file?,https://github.com/lowandrew/OLCTools/blob/88aa90ac85f84d0bbeb03e43c29b0a9d36e4ce2a/spadespipeline/fileprep.py#L28-L47,2,"There is a bunch of irrelevant code in this example, but the function does contain an example of how to read a '.gz' file." +Python,finding time elapsed using a timer,https://github.com/DIPSAS/SwarmManagement/blob/c9ef1165b240c145d42e2d363925c8200fc19f43/SwarmManagement/SwarmTools.py#L170-L180,0, +Python,matrix multiply,https://github.com/mabuchilab/QNET/blob/cc20d26dad78691d34c67173e5cd67dcac94208a/src/qnet/algebra/core/matrix_algebra.py#L127-L131,1, +Python,string similarity levenshtein,https://github.com/J535D165/recordlinkage/blob/87a5f4af904e0834047cd07ff1c70146b1e6d693/recordlinkage/algorithms/string.py#L52-L67,2, +Python,get current process id,https://github.com/fabioz/PyDev.Debugger/blob/ed9c4307662a5593b8a7f1f3389ecd0e79b8c503/pydevd_attach_to_process/winappdbg/interactive.py#L669-L676,0, +Python,get all parents of xml node,https://github.com/klahnakoski/pyLibrary/blob/fa2dcbc48fda8d26999baef400e9a98149e0b982/mo_graphs/graph.py#L58-L65,1, +Python,all permutations of a list,https://github.com/numenta/nupic/blob/5922fafffdccc8812e72b3324965ad2f7d4bbdad/src/nupic/math/cross.py#L96-L102,3, +Python,set file attrib hidden,https://github.com/SuminAndrew/lxml-asserts/blob/a5e8d25177357ba52e5eb0abacdc2f4bab59d584/lxml_asserts/__init__.py#L26-L59,0, +Python,confusion matrix,https://github.com/Cognexa/cxflow/blob/dd609e6b0bd854424a8f86781dd77801a13038f9/cxflow/utils/confusion_matrix.py#L4-L22,3, +Python,html entities replace,https://github.com/html5lib/html5lib-python/blob/4b2275497b624c6e97150fa2eb16a7db7ed42111/utils/entities.py#L82-L89,0, +Python,extract latitude and longitude from given input,https://github.com/Turbo87/utm/blob/efdd46ab0a341ce2aa45f8144d8b05a4fa0fd592/utm/conversion.py#L261-L283,0,Code does the opposite. +Python,how to get html of website,https://github.com/Netflix-Skunkworks/cloudaux/blob/c4b0870c3ac68b1c69e71d33cf78b6a8bdf437ea/cloudaux/orchestration/aws/s3.py#L160-L178,0, +Python,get executable path,https://github.com/ga4gh/ga4gh-common/blob/ea1b562dce5bf088ac4577b838cfac7745f08346/ga4gh/common/utils.py#L30-L40,3, +Python,hash set for counting distinct elements,https://github.com/mlenzen/collections-extended/blob/ee9e86f6bbef442dbebcb3a5970642c5c969e2cf/collections_extended/bags.py#L89-L96,2, +Python,hash set for counting distinct elements,https://github.com/mlenzen/collections-extended/blob/ee9e86f6bbef442dbebcb3a5970642c5c969e2cf/collections_extended/bags.py#L89-L96,1, +Python,convert a date string into yyyymmdd,https://github.com/google/transitfeed/blob/eb2991a3747ba541b2cb66502b305b6304a1f85f/merge.py#L1166-L1206,0, +Python,scatter plot,https://github.com/maartenbreddels/ipyvolume/blob/e68b72852b61276f8e6793bc8811f5b2432a155f/ipyvolume/widgets.py#L434-L441,1, +Python,filter array,https://github.com/kwikteam/phy/blob/7e9313dc364304b7d2bd03b92938347343703003/phy/traces/filter.py#L28-L34,0, +Python,extract data from html content,https://github.com/dragnet-org/dragnet/blob/532c9d9f28e5b1b57f3cabc708218d3863a16322/dragnet/__init__.py#L9-L13,0,This is not about HTML +Python,k means clustering,https://github.com/vmirly/pyclust/blob/bdb12be4649e70c6c90da2605bc5f4b314e2d07e/pyclust/_kmeans.py#L78-L101,1, +Python,format date,https://github.com/ofek/pypinfo/blob/48d56e690d7667ae5854752c3a2dc07e321d5637/pypinfo/core.py#L65-L70,3, +Python,group by count,https://github.com/rueckstiess/mtools/blob/a6a22910c3569c0c8a3908660ca218a4557e4249/mtools/mplotqueries/plottypes/base_type.py#L79-L91,0, +Python,how to empty array,https://github.com/pandas-dev/pandas/blob/9feb3ad92cc0397a04b665803a49299ee7aa1037/pandas/core/generic.py#L1878-L1924,1, +Python,set file attrib hidden,https://github.com/googledatalab/pydatalab/blob/d9031901d5bca22fe0d5925d204e6698df9852e1/solutionbox/ml_workbench/xgboost/trainer/task.py#L155-L261,0, +Python,how to extract zip file recursively,https://github.com/ToucanToco/toucan-data-sdk/blob/c3ca874e1b64f4bdcc2edda750a72d45d1561d8a/toucan_data_sdk/sdk.py#L173-L191,2, +Python,unzipping large files,https://github.com/milinda/htrc-sdk-for-python/blob/d08dbba1a441dcb2bade47deaebc07be68c3a173/htrc/utils.py#L45-L62,3, +Python,convert a date string into yyyymmdd,https://github.com/google/transitfeed/blob/eb2991a3747ba541b2cb66502b305b6304a1f85f/merge.py#L1166-L1206,0, +Python,memoize to disk - persistent memoization,https://github.com/aboSamoor/polyglot/blob/d0d2aa8d06cec4e03bd96618ae960030f7069a17/polyglot/decorators.py#L23-L32,1, +Python,how to get html of website,https://github.com/GibbsConsulting/jupyter-plotly-dash/blob/19e3898372ddf7c1d20292eae1ea0df9e0808fe2/jupyter_plotly_dash/dash_wrapper.py#L104-L120,1, +Python,convert a date string into yyyymmdd,https://github.com/google/transitfeed/blob/eb2991a3747ba541b2cb66502b305b6304a1f85f/merge.py#L1166-L1206,0, +Python,export to excel,https://github.com/patarapolw/AnkiTools/blob/fab6836dfd9cf5171d9cbff5c55fbb14d2786f05/AnkiTools/excel.py#L155-L157,2, +Python,get all parents of xml node,https://github.com/emc-openstack/storops/blob/24b4b13bf065c0ef0538dd0b5ebb8f25d24176bd/storops/vnx/resource/nfs_share.py#L38-L50,3, +Python,read properties file,https://github.com/crs4/pydoop/blob/f375be2a06f9c67eaae3ce6f605195dbca143b2b/pydoop/__init__.py#L183-L193,3, +Python,postgresql connection,https://github.com/apache/airflow/blob/b69c686ad8a0c89b9136bb4b31767257eb7b2597/airflow/hooks/mssql_hook.py#L38-L49,2, +Python,connect to sql,https://github.com/posativ/isso/blob/78997f491044b7d694ac7170edc32030544095b7/isso/db/__init__.py#L56-L62,3, +Python,extract latitude and longitude from given input,https://github.com/City-of-Helsinki/django-munigeo/blob/a358f0dd0eae3add660b650abec2acb4dd86d04c/munigeo/api.py#L222-L241,2, +Python,postgresql connection,https://github.com/apache/airflow/blob/b69c686ad8a0c89b9136bb4b31767257eb7b2597/airflow/hooks/mssql_hook.py#L38-L49,0, +Python,format date,https://github.com/stestagg/dateformat/blob/4743f5dabf1eaf66524247328c76cfd3a05d0daf/benchmark/benchmark_formatting.py#L29-L32,1, +Python,concatenate several file remove header lines,https://github.com/utiasSTARS/pykitti/blob/d3e1bb81676e831886726cc5ed79ce1f049aef2c/pykitti/downloader/tracking.py#L26-L38,0, +Python,how to get current date,https://github.com/ricobl/django-importer/blob/6967adfa7a286be7aaf59d3f33c6637270bd9df6/sample_project/tasks/importers.py#L64-L88,2, +Python,how to empty array,https://github.com/pymc-devs/pymc/blob/c6e530210bff4c0d7189b35b2c971bc53f93f7cd/pymc/gp/GPutils.py#L34-L50,0, +Python,convert a utc time to epoch,https://github.com/theonion/django-bulbs/blob/0c0e6e3127a7dc487b96677fab95cacd2b3806da/bulbs/utils/methods.py#L66-L68,2, +Python,save list to file,https://github.com/acutesoftware/AIKIF/blob/fcf1582dc5f884b9a4fa7c6e20e9de9d94d21d03/aikif/lib/cls_filelist.py#L192-L228,1,Save elements to a list of file as opposed to saving a list to a single file +Python,set working directory,https://github.com/materialsproject/pymatgen/blob/4ca558cf72f8d5f8a1f21dfdfc0181a971c186da/pymatgen/io/abinit/tasks.py#L4149-L4153,1, +Python,how to determine a string is a valid word,https://github.com/Ezhil-Language-Foundation/open-tamil/blob/b7556e88878d29bbc6c944ee17cdd3f75b8ea9f0/solthiruthi/datastore.py#L340-L358,3, +Python,get all parents of xml node,https://github.com/tanghaibao/goatools/blob/407682e573a108864a79031f8ca19ee3bf377626/goatools/obo_parser.py#L205-L211,1, +Python,write csv,https://github.com/quantopian/zipline/blob/77ad15e6dc4c1cbcdc133653bac8a63fc704f7fe/zipline/data/bcolz_daily_bars.py#L209-L237,3, +Python,memoize to disk - persistent memoization,https://github.com/lisael/fastidious/blob/2542db9de779ddabc3a64e9eb19a4e2de99741dc/fastidious/expressions.py#L287-L301,2, +Python,connect to sql,https://github.com/RudolfCardinal/pythonlib/blob/0b84cb35f38bd7d8723958dae51b480a829b7227/cardinal_pythonlib/rnc_db.py#L1649-L1908,2, +Python,parse query string in url,https://github.com/zeromake/aiko/blob/53b246fa88652466a9e38ac3d1a99a6198195b0f/aiko/request.py#L329-L336,0, +Python,connect to sql,https://github.com/robinandeer/puzzle/blob/9476f05b416d3a5135d25492cb31411fdf831c58/puzzle/plugins/sql/store.py#L62-L86,1, +Python,finding time elapsed using a timer,https://github.com/DIPSAS/SwarmManagement/blob/c9ef1165b240c145d42e2d363925c8200fc19f43/SwarmManagement/SwarmTools.py#L170-L180,2, +Python,randomly extract x items from a list,https://github.com/lazygunner/xunleipy/blob/cded7598a7bf04495156bae2d747883d1eacb3f4/xunleipy/rsa_lib.py#L167-L177,1, +Python,get current ip address,https://github.com/emc-openstack/storops/blob/24b4b13bf065c0ef0538dd0b5ebb8f25d24176bd/storops/vnx/resource/mover.py#L203-L208,0, +Python,convert a utc time to epoch,https://github.com/collectiveacuity/labPack/blob/52949ece35e72e3cc308f54d9ffa6bfbd96805b8/labpack/records/time.py#L181-L206,2, +Python,regex case insensitive,https://github.com/goshuirc/irc/blob/d6a5e3e04d337566c009b087f108cd76f9e122cc/girc/imapping.py#L194-L197,0, +Python,initializing array,https://github.com/mnick/scikit-tensor/blob/fe517e9661a08164b8d30d2dddf7c96aeeabcf36/sktensor/cp.py#L190-L205,0, +Python,extract data from html content,https://github.com/dragnet-org/dragnet/blob/532c9d9f28e5b1b57f3cabc708218d3863a16322/dragnet/__init__.py#L9-L13,3, +Python,extract data from html content,https://github.com/kibitzr/kibitzr/blob/749da312488f1dda1ed1093cf4c95aaac0a604f7/kibitzr/transformer/jinja_transform.py#L81-L88,3, +Python,copying a file to a path,https://github.com/tjguk/winshell/blob/1509d211ab3403dd1cff6113e4e13462d6dec35b/winshell.py#L266-L294,1, +Python,unzipping large files,https://github.com/uuazed/numerapi/blob/fc9dcc53b32ede95bfda1ceeb62aec1d67d26697/numerapi/numerapi.py#L76-L88,3, +Python,aes encryption,https://github.com/frispete/keyrings.cryptfile/blob/cfa80d4848a5c3c0aeee41a954b2b120c80e69b2/keyrings/cryptfile/cryptfile.py#L132-L162,0, +Python,finding time elapsed using a timer,https://github.com/indygreg/python-zstandard/blob/74fa5904c3e7df67a4260344bf919356a181487e/bench.py#L32-L71,2, +Python,save list to file,https://github.com/coderholic/pyradio/blob/c5219d350bccbccd49dbd627c1f886a952ea1963/pyradio/config.py#L258-L306,1, +Python,aes encryption,https://github.com/raymontag/kppy/blob/a43f1fff7d49da1da4b3d8628a1b3ebbaf47f43a/kppy/database.py#L861-L871,3, +Python,how to get html of website,https://github.com/Netflix-Skunkworks/cloudaux/blob/c4b0870c3ac68b1c69e71d33cf78b6a8bdf437ea/cloudaux/orchestration/aws/s3.py#L160-L178,3, +Python,unzipping large files,https://github.com/cs50/lib50/blob/941767f6c0a3b81af0cdea48c25c8d5a761086eb/lib50/_api.py#L570-L611,1, +Python,all permutations of a list,https://github.com/GetmeUK/MongoFrames/blob/7d2bd792235dfa77a9deecab5366f5f73480823d/mongoframes/factory/makers/selections.py#L231-L283,2, +Python,socket recv timeout,https://github.com/nfcpy/nfcpy/blob/6649146d1afdd5e82b2b6b1ea00aa58d50785117/examples/llcp-dta-iut.py#L156-L180,1,Most of the code in this function is irrelevant to the query. +Python,sorting multiple arrays based on another arrays sorted order,https://github.com/loverajoel/sqlalchemy-elasticquery/blob/4c99b81f59e7bb20eaeedb3adbf5126e62bbc25c/sqlalchemy_elasticquery/elastic_query.py#L159-L167,0, +Python,how to reverse a string,https://github.com/frnsys/broca/blob/7236dcf54edc0a4a54a55eb93be30800910667e7/broca/similarity/doc/wikipedia.py#L28-L41,0, +Python,how to reverse a string,https://github.com/mvcisback/py-aiger-bv/blob/855819844c429c35cdd8dc0b134bcd11f7b2fda3/aigerbv/common.py#L179-L184,1, +Python,initializing array,https://github.com/AshleySetter/optoanalysis/blob/9d390acc834d70024d47b574aea14189a5a5714e/optoanalysis/optoanalysis/optoanalysis.py#L3311-L3329,0, +Python,parse command line argument,https://github.com/bjmorgan/vasppy/blob/cc2d1449697b17ee1c43715a02cddcb1139a6834/vasppy/scripts/xdatcar_to_rdf.py#L9-L17,2, +Python,parse command line argument,https://github.com/chitamoor/Rester/blob/1865b17f70b7c597aeadde2d0907cb1b59f10c0f/rester/apirunner.py#L9-L18,3, +Python,deserialize json,https://github.com/go-macaroon-bakery/py-macaroon-bakery/blob/63ce1ef1dabe816eb8aaec48fbb46761c34ddf77/macaroonbakery/bakery/_macaroon.py#L242-L248,1, +Python,read properties file,https://github.com/openstax/cnx-epub/blob/f648a309eff551b0a68a115a98ddf7858149a2ea/cnxepub/epub.py#L349-L376,0, +Python,sorting multiple arrays based on another arrays sorted order,https://github.com/google/prettytensor/blob/75daa0b11252590f548da5647addc0ea610c4c45/prettytensor/tutorial/data_utils.py#L82-L89,2, +Python,replace in file,https://github.com/riptano/ccm/blob/275699f79d102b5039b79cc17fa6305dccf18412/ccmlib/common.py#L208-L219,3,mostly correct. per line +Python,convert int to string,https://github.com/kpdyer/regex2dfa/blob/109f877e60ef0dfcb430f11516d215930b7b9936/third_party/re2/re2/unicode.py#L26-L45,0,This does the opposite of what the query says +Python,extracting data from a text file,https://github.com/log2timeline/plaso/blob/9c564698d2da3ffbe23607a3c54c0582ea18a6cc/plaso/engine/worker.py#L338-L374,3, +Python,find int in string,https://github.com/hubo1016/vlcp/blob/239055229ec93a99cc7e15208075724ccf543bd1/vlcp/service/sdn/plugins/networkvxlandriver.py#L217-L233,1, +Python,aes encryption,https://github.com/ethereum/pyethereum/blob/b704a5c6577863edc539a1ec3d2620a443b950fb/ethereum/tools/keys.py#L56-L61,3, +Python,converting uint8 array to image,https://github.com/pyviz/holoviews/blob/ae0dd2f3de448b0ca5e9065aabd6ef8d84c7e655/holoviews/operation/datashader.py#L932-L936,1,"Well, this is close in that it's working with conversions from different image formats. But I don't think it solves the task posed in the query? (Not super familiar with using numpy for image things.)" +Python,convert decimal to hex,https://github.com/tanghaibao/jcvi/blob/d2e31a77b6ade7f41f3b321febc2b4744d1cdeca/jcvi/utils/webcolors.py#L356-L396,0, +Python,create cookie,https://github.com/lorien/grab/blob/8b301db2a08c830245b61c589e58af6234f4db79/grab/cookie.py#L118-L152,3, +Python,extracting data from a text file,https://github.com/santoshphilip/eppy/blob/55410ff7c11722f35bc4331ff5e00a0b86f787e1/eppy/EPlusInterfaceFunctions/parse_idd.py#L142-L385,2, +Python,encode url,https://github.com/dustin/twitty-twister/blob/8524750ee73adb57bbe14ef0cfd8aa08e1e59fb3/twittytwister/twitter.py#L171-L177,1, +Python,hash set for counting distinct elements,https://github.com/mlenzen/collections-extended/blob/ee9e86f6bbef442dbebcb3a5970642c5c969e2cf/collections_extended/bags.py#L89-L96,1, +Python,converting uint8 array to image,https://github.com/BerkeleyAutomation/perception/blob/03d9b37dd6b66896cdfe173905c9413c8c3c5df6/perception/image.py#L252-L291,2, +Python,sending binary data over a serial connection,https://github.com/thomasdelaet/python-velbus/blob/af2f8af43f1a24bf854eff9f3126fd7b5c41b3dd/velbus/messages/relay_status.py#L120-L130,1, +Python,converting uint8 array to image,https://github.com/radjkarl/imgProcessor/blob/7c5a28718f81c01a430152c60a686ac50afbfd7c/imgProcessor/transformations.py#L11-L75,3, +Python,html encode string,https://github.com/honzajavorek/danube-delta/blob/d0a72f0704d52b888e7fb2b68c4fdc696d370018/danube_delta/plugins/utils.py#L8-L17,2, +Python,how to reverse a string,https://github.com/seleniumbase/SeleniumBase/blob/62e5b43ee1f90a9ed923841bdd53b1b38358f43a/seleniumbase/common/encryption.py#L43-L55,2, +Python,sending binary data over a serial connection,https://github.com/ransford/sllurp/blob/d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1/sllurp/epc/sgtin_96.py#L27-L71,0, +Python,parse query string in url,https://github.com/ModisWorks/modis/blob/1f1225c9841835ec1d1831fc196306527567db8b/modis/discord_modis/modules/music/api_music.py#L94-L234,2, +Python,get inner html,https://github.com/KelSolaar/Umbra/blob/66f45f08d9d723787f1191989f8b0dda84b412ce/umbra/reporter.py#L468-L477,1, +Python,connect to sql,https://github.com/coleifer/peewee/blob/ea9403b01acb039adb3a2472186d795c796b77a0/peewee.py#L3708-L3712,3, +Python,scatter plot,https://github.com/SheffieldML/GPy/blob/54c32d79d289d622fb18b898aee65a2a431d90cf/GPy/plotting/matplot_dep/plot_definitions.py#L99-L102,2, +Python,linear regression,https://github.com/SoftwareDefinedBuildings/XBOS/blob/c12d4fb14518ea3ae98c471c28e0710fdf74dd25/apps/Data_quality_analysis/Model_Data.py#L176-L203,2, +Python,extract latitude and longitude from given input,https://github.com/nickmckay/LiPD-utilities/blob/5dab6bbeffc5effd68e3a6beaca6b76aa928e860/Python/lipd/excel.py#L1227-L1269,1, +Python,format date,https://github.com/binux/pyspider/blob/3fccfabe2b057b7a56d4a4c79dc0dd6cd2239fe9/pyspider/libs/utils.py#L72-L130,3, +Python,export to excel,https://github.com/APSL/transmanager/blob/79157085840008e146b264521681913090197ed1/transmanager/export.py#L58-L67,2, +Python,get inner html,https://github.com/KelSolaar/Umbra/blob/66f45f08d9d723787f1191989f8b0dda84b412ce/umbra/reporter.py#L468-L477,0, +Python,finding time elapsed using a timer,https://github.com/djf604/chunky-pipes/blob/cd5b2a31ded28ab949da6190854228f1c8897882/chunkypipes/util/decorators/__init__.py#L6-L14,3, +Python,matrix multiply,https://github.com/cmbruns/pyopenvr/blob/68395d26bb3df6ab1f0f059c38d441f962938be6/src/openvr/gl_renderer.py#L17-L32,2, +Python,how to get html of website,https://github.com/GibbsConsulting/jupyter-plotly-dash/blob/19e3898372ddf7c1d20292eae1ea0df9e0808fe2/jupyter_plotly_dash/dash_wrapper.py#L104-L120,1, +Python,readonly array,https://github.com/mattja/sdeint/blob/7cf807cdf97b3bb39d29e1c2dc834b519499b601/sdeint/_broadcast.py#L70-L108,1, +Python,how to empty array,https://github.com/mattjj/pybasicbayes/blob/76aef00f011415cc5c858cd1a101f3aab971a62d/pybasicbayes/distributions/gaussian.py#L1017-L1019,2, +Python,pretty print json,https://github.com/deeshugupta/tes/blob/217db49aa211ebca2d9258380765a0c31abfca91/es_commands/base.py#L38-L40,3, +Python,matrix multiply,https://github.com/apache/spark/blob/618d6bff71073c8c93501ab7392c3cc579730f0b/python/pyspark/mllib/linalg/distributed.py#L373-L389,1, +Python,underline text in label widget,https://github.com/tzutalin/labelImg/blob/6afd15aa88f89f41254e0004ed219b3965eb2c0d/labelImg.py#L839-L876,0, +Python,postgresql connection,https://github.com/datajoint/datajoint-python/blob/4f29bb154a7ed2b8b64b4d3a9c8be4c16b39621c/datajoint/connection.py#L20-L44,2, +Python,how to check if a checkbox is checked,https://github.com/bbangert/lettuce_webdriver/blob/d11f8531c43bb7150c316e0dc4ccd083617becf7/lettuce_webdriver/webdriver.py#L337-L341,2, +Python,reading element from html - ,https://github.com/alvinwan/md2py/blob/7f28a008367d7d9b5b3c8bbf7baf17985271489f/md2py/md2py.py#L140-L150,0, +Python,read properties file,https://github.com/crs4/pydoop/blob/f375be2a06f9c67eaae3ce6f605195dbca143b2b/pydoop/__init__.py#L183-L193,2, +Python,nelder mead optimize,https://github.com/SheffieldML/GPyOpt/blob/255539dc5927819ca701e44fe3d76cd4864222fa/GPyOpt/acquisitions/base.py#L52-L60,1, +Python,how to reverse a string,https://github.com/tehmaze/ipcalc/blob/d436b95d2783347c3e0084d76ec3c52d1f5d2f0b/ipcalc.py#L544-L558,1, +Python,normal distribution,https://github.com/tensorflow/probability/blob/e87fe34111d68c35db0f9eeb4935f1ece9e1a8f5/tensorflow_probability/python/layers/distribution_layer.py#L1210-L1215,1, +Python,httpclient post json,https://github.com/Adyen/adyen-python-api-library/blob/928f6409ab6e2fac300b9fa29d89f3f508b23445/Adyen/httpclient.py#L282-L316,3, +Python,sending binary data over a serial connection,https://github.com/nutechsoftware/alarmdecoder/blob/b0c014089e24455228cb4402cf30ba98157578cd/alarmdecoder/devices/serial_device.py#L149-L172,1, +Python,scatter plot,https://github.com/zkbt/the-friendly-stars/blob/50d3f979e79e63c66629065c75595696dc79802e/thefriendlystars/constellations/constellation.py#L281-L314,3, +Python,sorting multiple arrays based on another arrays sorted order,https://github.com/stevepeak/inquiry/blob/f6ea435c302560ba19985b5d4ce2c97e2f321508/inquiry/query.py#L76-L81,0, +Python,binomial distribution,https://github.com/chemlab/chemlab/blob/c8730966316d101e24f39ac3b96b51282aba0abe/chemlab/qc/utils.py#L30-L40,3, +Python,save list to file,https://github.com/pndurette/gTTS/blob/b01ac4eb22d40c6241202e202d0418ccf4f98460/gtts/tts.py#L238-L250,1, +Python,convert html to pdf,https://github.com/pikepdf/pikepdf/blob/07154f4dec007e2e9c0c6a8c07b964fd06bc5f77/src/pikepdf/_methods.py#L76-L83,1, +Python,set working directory,https://github.com/nugget/python-insteonplm/blob/65548041f1b0729ae1ae904443dd81b0c6cbf1bf/insteonplm/tools.py#L877-L903,0, +Python,get name of enumerated value,https://github.com/ChristianTremblay/BAC0/blob/8d95b065ea068524a08f5b0c34322ebeeba95d06/BAC0/core/devices/Points.py#L734-L744,1, +Python,memoize to disk - persistent memoization,https://github.com/fedora-python/pyp2rpm/blob/853eb3d226689a5ccdcdb9358b1a3394fafbd2b5/pyp2rpm/utils.py#L44-L56,1, +Python,regex case insensitive,https://github.com/nefarioustim/parker/blob/ccc1de1ac6bfb5e0a8cfa4fdebb2f38f2ee027d6/parker/parsedpage.py#L65-L75,0, +Python,write csv,https://github.com/rvswift/EB/blob/341880b79faf8147dc9fa6e90438531cd09fabcc/EB/builder/splitter/splitter.py#L90-L113,2, +Python,sort string list,https://github.com/opencobra/cobrapy/blob/9d1987cdb3a395cf4125a3439c3b002ff2be2009/cobra/io/dict.py#L149-L184,0, +Python,randomly extract x items from a list,https://github.com/Unity-Technologies/ml-agents/blob/37d139af636e4a2351751fbf0f2fca5a9ed7457f/ml-agents/mlagents/trainers/tensorflow_to_barracuda.py#L496-L504,0, +Python,converting uint8 array to image,https://github.com/radjkarl/imgProcessor/blob/7c5a28718f81c01a430152c60a686ac50afbfd7c/imgProcessor/imgIO.py#L39-L73,2, +Python,html encode string,https://github.com/polyaxon/polyaxon/blob/e1724f0756b1a42f9e7aa08a976584a84ef7f016/polyaxon/libs/json_utils.py#L75-L79,2,"This function mostly solves the desired query, but it is hard to tell without looking at the overall class." +Python,parse json file,https://github.com/release-engineering/productmd/blob/49256bf2e8c84124f42346241140b986ad7bfc38/productmd/common.py#L302-L315,2, +Python,copy to clipboard,https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_main_window.py#L1289-L1305,2, +Python,html encode string,https://github.com/adsabs/adsutils/blob/fb9d6b4f6ed5e6ca19c552efc3cdd6466c587fdb/adsutils/Unicode.py#L153-L159,2, +Python,unique elements,https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/__init__.py#L180-L205,1, +Python,save list to file,https://github.com/alejandroautalan/pygubu/blob/41c8fb37ef973736ec5d68cbe1cd4ecb78712e40/pygubudesigner/main.py#L491-L495,1, +Python,fuzzy match ranking,https://github.com/PrefPy/prefpy/blob/f395ba3782f05684fa5de0cece387a6da9391d02/prefpy/egmm_mixpl.py#L69-L90,1,Matching routine which contains little information about fuzziness. +Python,underline text in label widget,https://github.com/tzutalin/labelImg/blob/6afd15aa88f89f41254e0004ed219b3965eb2c0d/labelImg.py#L664-L674,1, +Python,all permutations of a list,https://github.com/mabuchilab/QNET/blob/cc20d26dad78691d34c67173e5cd67dcac94208a/src/qnet/utils/permutations.py#L166-L184,1, +Python,socket recv timeout,https://github.com/nfcpy/nfcpy/blob/6649146d1afdd5e82b2b6b1ea00aa58d50785117/src/nfc/snep/client.py#L51-L74,3, +Python,how to extract zip file recursively,https://github.com/jedie/DragonPy/blob/6659e5b5133aab26979a498ee7453495773a4f6c/dragonpy/Simple6809/Simple6809_rom.py#L40-L66,2, +Python,read properties file,https://github.com/piglei/uwsgi-sloth/blob/2834ac5ed17d89ca5f19151c649ac610f6f37bd1/uwsgi_sloth/tailer.py#L45-L51,0, +Python,unzipping large files,https://github.com/nerdvegas/rez/blob/1d3b846d53b5b5404edfe8ddb9083f9ceec8c5e7/src/rez/backport/zipfile.py#L808-L819,0, +Python,convert a utc time to epoch,https://github.com/aws/aws-xray-sdk-python/blob/707358cd3a516d51f2ebf71cf34f00e8d906a667/aws_xray_sdk/core/sampling/connector.py#L136-L149,3, +Python,deserialize json,https://github.com/open511/open511/blob/3d573f59d7efa06ff1b5419ea5ff4d90a90b3cf8/open511/utils/serialization.py#L47-L60,2, +Python,string similarity levenshtein,https://github.com/tyiannak/pyAudioAnalysis/blob/e3da991e7247492deba50648a4c7c0f41e684af4/pyAudioAnalysis/audioVisualization.py#L32-L52,3, +Python,save list to file,https://github.com/spacetelescope/stsci.tools/blob/9a022503ad24ca54ce83331482dfa3ff6de9f403/lib/stsci/tools/cfgpars.py#L752-L790,3, +Python,map to json,https://github.com/sosreport/sos/blob/2ebc04da53dc871c8dd5243567afa4f8592dca29/sos/plugins/kernel.py#L41-L51,0, +Python,randomly extract x items from a list,https://github.com/Erotemic/utool/blob/3b27e1f4e6e6fb23cd8744af7b7195b57d99e03a/utool/util_numpy.py#L323-L365,3, +Python,nelder mead optimize,https://github.com/SheffieldML/GPyOpt/blob/255539dc5927819ca701e44fe3d76cd4864222fa/GPyOpt/acquisitions/base.py#L52-L60,2, +Python,print model summary,https://github.com/lrq3000/pyFileFixity/blob/fd5ef23bb13835faf1e3baa773619b86a1cc9bdf/pyFileFixity/lib/profilers/visual/pympler/tracker.py#L126-L134,0, +Python,sending binary data over a serial connection,https://github.com/securestate/termineter/blob/d657d25d97c7739e650b951c396404e857e56625/lib/c1218/connection.py#L210-L222,1, +Python,get current ip address,https://github.com/dlancer/django-crispy-contact-form/blob/3d422556add5aea3607344a034779c214f84da04/contact_form/helpers.py#L8-L19,1, +Python,fuzzy match ranking,https://github.com/coleifer/peewee/blob/ea9403b01acb039adb3a2472186d795c796b77a0/playhouse/sqlite_ext.py#L1136-L1169,0, +Python,positions of substrings in string,https://github.com/SpheMakh/Stimela/blob/292e80461a0c3498da8e7e987e2891d3ae5981ad/stimela/utils/__init__.py#L321-L329,0, +Python,priority queue,https://github.com/FreshXOpenSource/wallaby-base/blob/5c75b1729e99af905c44b1293e67dbd5527d022d/wallaby/pf/room.py#L366-L370,0, +Python,how to get html of website,https://github.com/bitesofcode/projex/blob/d31743ec456a41428709968ab11a2cf6c6c76247/projex/init.py#L368-L384,0, +Python,randomly extract x items from a list,https://github.com/Erotemic/utool/blob/3b27e1f4e6e6fb23cd8744af7b7195b57d99e03a/utool/util_numpy.py#L323-L365,3,bad but correct +Python,how to get html of website,https://github.com/bitesofcode/projex/blob/d31743ec456a41428709968ab11a2cf6c6c76247/projex/init.py#L368-L384,0, +Python,export to excel,https://github.com/vicalloy/lbutils/blob/66ae7e73bc939f073cdc1b91602a95e67caf4ba6/lbutils/xlsxutils.py#L20-L32,3, +Python,convert a utc time to epoch,https://github.com/aws/aws-xray-sdk-python/blob/707358cd3a516d51f2ebf71cf34f00e8d906a667/aws_xray_sdk/core/sampling/connector.py#L136-L149,2, +Python,set working directory,https://github.com/xolox/python-vcs-repo-mgr/blob/fdad2441a3e7ba5deeeddfa1c2f5ebc00c393aed/vcs_repo_mgr/__init__.py#L1875-L1896,0, +Python,get current observable value,https://github.com/ARMmbed/mbed-cloud-sdk-python/blob/c0af86fb2cdd4dc7ed26f236139241067d293509/examples/connect/set-resource.py#L23-L42,1, +Python,scatter plot,https://github.com/bcbio/bcbio-nextgen/blob/6a9348c0054ccd5baffd22f1bb7d0422f6978b20/bcbio/structural/cnvkit.py#L633-L646,1, +Python,convert a utc time to epoch,https://github.com/myusuf3/delorean/blob/3e8a7b8cfd4c26546f62bde2f34002893adfa08a/delorean/dates.py#L492-L512,3, +Python,how to get database table name,https://github.com/simonw/datasette/blob/11b352b4d52fd02a422776edebb14f12e4994d3b/datasette/app.py#L521-L527,1, +Python,read properties file,https://github.com/markreidvfx/pyaaf2/blob/37de8c10d3c3495cc00c705eb6c5048bc4a7e51f/tools/model_dump.py#L99-L127,3, +Python,get name of enumerated value,https://github.com/apple/turicreate/blob/74514c3f99e25b46f22c6e02977fe3da69221c2e/src/external/coremltools_wrap/coremltools/deps/protobuf/python/google/protobuf/descriptor.py#L321-L337,3, +Python,json to xml conversion,https://github.com/amaas-fintech/amaas-core-sdk-python/blob/347b71f8e776b2dde582b015e31b4802d91e8040/amaascore/core/amaas_model.py#L30-L31,0, +Python,map to json,https://github.com/GNS3/gns3-server/blob/a221678448fb5d24e977ef562f81d56aacc89ab1/gns3server/compute/vmware/vmware_vm.py#L75-L91,0, +Python,read properties file,https://github.com/nion-software/nionswift/blob/d43693eaf057b8683b9638e575000f055fede452/nion/swift/model/NDataHandler.py#L469-L481,1, +Python,set working directory,https://github.com/materialsproject/pymatgen/blob/4ca558cf72f8d5f8a1f21dfdfc0181a971c186da/pymatgen/io/abinit/flows.py#L254-L266,2, +Python,extract data from html content,https://github.com/monarch-initiative/dipper/blob/24cc80db355bbe15776edc5c7b41e0886959ba41/scripts/scrape-impc.py#L14-L40,0, +Python,binomial distribution,https://github.com/tisimst/mcerp/blob/2bb8260c9ad2d58a806847f1b627b6451e407de1/mcerp/__init__.py#L1150-L1167,3, +Python,convert decimal to hex,https://github.com/talkincode/txradius/blob/b86fdbc9be41183680b82b07d3a8e8ea10926e01/txradius/mschap/mschap.py#L94-L101,1, +Ruby,get name of enumerated value,https://github.com/laskaridis/ruby_enum/blob/e3139ff95127820ded2964f0a97537e7b2b292ee/lib/ruby_enum.rb#L64-L82,0, +Ruby,memoize to disk - persistent memoization,https://github.com/RISCfuture/dropbox/blob/702c0f99a25bb319b4a191f3dac2dbbd60427f9d/lib/dropbox/memoization.rb#L75-L79,1, +Ruby,socket recv timeout,https://github.com/mojombo/bertrpc/blob/c78721ecf6f4744f5d33a1733a8eab90dc01cb86/lib/bertrpc/action.rb#L74-L104,3, +Ruby,read properties file,https://github.com/clarete/s3sync/blob/b690957f6bb4299bca3224258855f1694406aab3/lib/s3sync/config.rb#L50-L73,2, +Ruby,copying a file to a path,https://github.com/amatsuda/erd/blob/1f4b8bb5d386835b4596a87ddf6897c8626036ae/app/controllers/erd/erd_controller.rb#L106-L112,1, +Ruby,print model summary,https://github.com/yujinakayama/transpec/blob/fe3fc522346d8cbecee2fa92edc382b18d92b638/lib/transpec/cli.rb#L112-L123,0, +Ruby,get all parents of xml node,https://github.com/o2web/rails_admin_cms/blob/764197753a2beb80780a44c7f559ba2bc1bb429e/app/models/viewable/page.rb#L58-L64,2, +Ruby,connect to sql,https://github.com/rsim/ruby-plsql/blob/dc5e74200b186ba9e444f75821351aa454f84795/lib/plsql/schema.rb#L64-L72,2, +Ruby,hash set for counting distinct elements,https://github.com/tombroomfield/motion_panel/blob/b75f5110b4a27f23cb45746b166190570b9b8391/lib/motion_panel/people_manager.rb#L17-L20,1, +Ruby,get name of enumerated value,https://github.com/charliesome/twostroke/blob/3e6d5366bad603e987f78027d472255707ec26fa/lib/twostroke/runtime/vm_frame.rb#L200-L204,0, +Ruby,get current observable value,https://github.com/kontena/kontena/blob/5cb5b4457895985231ac88e78c8cbc5a8ffb5ec7/agent/lib/kontena/observer.rb#L196-L207,2, +Ruby,format date,https://github.com/johnmcl/similarweb/blob/a8e31eddebacd8b8689bf19635448a142f400d1f/lib/similarweb/client.rb#L71-L79,3, +Ruby,readonly array,https://github.com/mojombo/erlectricity/blob/0473d25b87ae15990d99a137dce7bb172c998af7/lib/erlectricity/decoder.rb#L162-L169,0, +Ruby,get inner html,https://github.com/clearwater-rb/clearwater/blob/bc488101f2773bb2b497d964f16e34b560b77c76/lib/clearwater/component.rb#L30-L33,0, +Ruby,sorting multiple arrays based on another arrays sorted order,https://github.com/zendesk/zendesk_api_client_rb/blob/4237daa923c6e353a888473adae2a808352f4b26/lib/zendesk_api/collection.rb#L377-L384,0, +Ruby,regex case insensitive,https://github.com/rossta/tacokit.rb/blob/2c43c01f6b80eaf5593ab38e9b6b38a35cddadb7/lib/tacokit/transform.rb#L99-L104,1, +Ruby,how to get current date,https://github.com/codez/delayed_cron_job/blob/028ae36b77499362f241d710cb8d40302f3bcc6a/lib/delayed_cron_job/cronline.rb#L416-L437,1, +Ruby,copy to clipboard,https://github.com/gosu/fidgit/blob/f60290252fe713622c2d128c366843a55d124b7b/lib/fidgit/elements/text_area.rb#L444-L450,2, +Ruby,get executable path,https://github.com/bundler/gemstash/blob/930cef65cebd92b2295fcbcfc9cfe1a592f09840/lib/gemstash/cli.rb#L116-L123,3, +Ruby,get the description of a http status code,https://github.com/tongueroo/jets/blob/46943a519224067e58aa3e2d5656e3ca083150f9/lib/jets/controller/rack/adapter.rb#L49-L61,0, +Ruby,convert int to string,https://github.com/mharris717/to_parsed_obj/blob/c8737d91731ee36fa1bf0413b524b603f6bac722/lib/to_parsed_obj.rb#L23-L39,0, +Ruby,hash set for counting distinct elements,https://github.com/ThoughtWorksStudios/oauth2_provider/blob/d54702f194edd05389968cf8947465860abccc5d/tools/jruby-1.5.1/lib/ruby/gems/1.8/gems/activerecord-jdbc-adapter-0.9.7-java/lib/jdbc_adapter/jdbc_postgre.rb#L399-L412,0, +Ruby,how to extract zip file recursively,https://github.com/kazuhisa/ken_all/blob/0043c8305b638cf9dd0c2fbf4a4411e9e73ca790/lib/ken_all/import.rb#L59-L71,1, +Ruby,output to html file,https://github.com/stereobooster/jekyll-press/blob/15b333f1dab2bceb11858cf94fcf2139c2d59496/lib/jekyll-press.rb#L34-L36,1, +Ruby,extract data from html content,https://github.com/abhay/calais/blob/21ef6f2714f2d5f786a1819927b4e8429c274fd5/lib/calais/response.rb#L83-L186,1, +Ruby,convert json to csv,https://github.com/superlanding/export_to/blob/06d1f3096746208bdbd207816fc34bb12b78917e/lib/export_to/base.rb#L19-L25,0, +Ruby,write csv,https://github.com/jstumbaugh/copy_csv/blob/3e3ec08715bd00784be3f0b17e88dd7a841de70c/lib/copy_csv.rb#L41-L45,3, +Ruby,nelder mead optimize,https://github.com/JEG2/oklahoma_mixer/blob/9e3647d2b064180f2e5f5848ca36967f0aca6e70/lib/oklahoma_mixer/fixed_length_database.rb#L10-L14,0, +Ruby,how to get html of website,https://github.com/sugaryourcoffee/syclink/blob/941ee2045c946daa1e0db394eb643aa82c1254cc/lib/syclink/designer.rb#L129-L133,0, +Ruby,how to get current date,https://github.com/ankane/pgslice/blob/6b4de2435b88e1c69c8d2e3f7bf77235265b1592/lib/pgslice/helpers.rb#L135-L145,2, +Ruby,get current process id,https://github.com/robertwahler/win32-autogui/blob/f36dc7ed9d7389893b0960b2c5740338f0d38117/lib/win32/autogui/window.rb#L218-L223,2, +Ruby,how to read the contents of a .gz compressed file?,https://github.com/rightscale/right_link/blob/b33a209c20a8a0942dd9f1fe49a08030d4ca209f/lib/instance/network_configurator/centos_network_configurator.rb#L320-L324,0, +Ruby,parse binary file to custom class,https://github.com/delagoya/mzml/blob/6375cfe54a32ad3f7ebbeb92f0c25c5e456101de/lib/mzml/chromatogram.rb#L55-L78,1, +Ruby,memoize to disk - persistent memoization,https://github.com/cloudfoundry/bosh/blob/2eaa7100879ddd20cd909cd698514746195e28b7/src/bosh-director/lib/bosh/director/cloudcheck_helper.rb#L29-L36,0, +Ruby,html encode string,https://github.com/jpmobile/jpmobile/blob/4758f4a3fafbd8dc8c6051f3b79b231e4742612b/lib/jpmobile/mail.rb#L313-L331,0, +Ruby,how to read .csv file in an efficient way?,https://github.com/DarthSim/bayes_classifier/blob/ae17adec04cea589211d323369b70b40f2d48126/lib/bayes/classifier.rb#L25-L30,2, +Ruby,extract data from html content,https://github.com/sobakasu/google_web_translate/blob/030091721292d2f6ced929542630b968cc436219/lib/google_web_translate/api.rb#L94-L102,0, +Ruby,scatter plot,https://github.com/wurmlab/genevalidator/blob/b44a4a7e72eb8314c73d0cd7062d37a1c4c58299/lib/genevalidator/validation_alignment.rb#L397-L441,1, +Ruby,html encode string,https://github.com/EthWorks/ethereum.rb/blob/7c2dab0a0142bb6f557d290ef69d39ee3f5f7169/lib/ethereum/encoder.rb#L71-L76,0, +Ruby,randomly extract x items from a list,https://github.com/ManageIQ/manageiq-smartstate/blob/88fed6e9e6c0b69e87d71d1912c77aca535f7caa/lib/blackbox/xmlStorage.rb#L138-L155,0, +Ruby,how to extract zip file recursively,https://github.com/instructure/moodle2cc/blob/cdb1666a76b22e87e8853d4045e31439244cce4b/lib/moodle2cc/moodle2/extractor.rb#L54-L68,3, +Ruby,read text file line by line,https://github.com/ManageIQ/manageiq-smartstate/blob/88fed6e9e6c0b69e87d71d1912c77aca535f7caa/lib/metadata/linux/LinuxOSInfo.rb#L214-L222,2, +Ruby,parse command line argument,https://github.com/shime/bun/blob/ad7292e8b4da791358af057740efb62978007b3c/lib/bun/arguments.rb#L20-L62,3, +Ruby,matrix multiply,https://github.com/kunishi/algebra-ruby2/blob/8976fbaac14933d3206324c845b879bf67fa0cf7/lib/algebra/matrix-algebra.rb#L406-L408,1, +Ruby,export to excel,https://github.com/MishaConway/wavefront-ruby/blob/3023ead073f7788b4b884db2974d57e5db4560eb/lib/wavefront_object.rb#L62-L88,0, +Ruby,heatmap from 3d coordinates,https://github.com/komasaru/eph_bpn/blob/7281e0023e91593f6f89a6fed05a2e39dfb59ac3/lib/eph_bpn/compute.rb#L397-L429,0, +Ruby,how to extract zip file recursively,https://github.com/ianfixes/arduino_ci/blob/cb3fe8df14a744b9a3bc5cdc0168f820f78cde57/lib/arduino_ci/arduino_downloader_windows.rb#L60-L66,2, +Ruby,map to json,https://github.com/Zerocchi/jikan.rb/blob/498a779e9f85a191e8d6375f7ca83039e984cd4a/lib/jikan/query.rb#L48-L75,0, +Ruby,finding time elapsed using a timer,https://github.com/ManageIQ/more_core_extensions/blob/13f97a2a07155354117ea638eb0892fad09d5e44/lib/more_core_extensions/core_ext/benchmark/realtime_store.rb#L16-L26,1, +Ruby,regex case insensitive,https://github.com/korolvs/resting_pug/blob/3bfd86a97cf487d331ebe2e15d993c2911db6c34/docs/_plugins/replace-regex.rb#L3-L6,0, +Ruby,convert json to csv,https://github.com/lulibrary/aspire/blob/623f481a2e79b9cb0b5feb923da438eb1ed2abfe/lib/aspire/user_lookup.rb#L93-L101,0, +Ruby,encode url,https://github.com/nickewing/coursera_downloader/blob/548a7f0420950a2aeb6fe861f6d8ece70fec6360/lib/coursera_downloader/document_processor.rb#L98-L114,1, +Ruby,convert a utc time to epoch,https://github.com/wizardwerdna/pokerstats/blob/315a4db29630c586fb080d084fa17dcad9494a84/lib/pokerstats/pokerstars_hand_history_parser.rb#L32-L52,1, +Ruby,how to reverse a string,https://github.com/Fluxx/distillery/blob/5d6dfb430398e1c092d65edc305b9c77dda1532b/lib/distillery/document.rb#L212-L218,0, +Ruby,get all parents of xml node,https://github.com/dicom/ruby-dicom/blob/3ffcfe21edc8dcd31298f945781990789fc832ab/lib/dicom/elemental.rb#L37-L45,1, +Ruby,all permutations of a list,https://github.com/noteflakes/lyp/blob/cca29b702f65eb412cba50ba9d4e879e14930003/lib/lyp/resolver.rb#L108-L121,0, +Ruby,finding time elapsed using a timer,https://github.com/jeffwilliams/quartz-torrent/blob/7aeb40125d886dd60d7481deb5129282fc3e3c06/lib/quartz_torrent/rate.rb#L28-L37,3, +Ruby,map to json,https://github.com/moviepilot/neoscout/blob/3501d18b35a313aa11d265ba5c5b737d72e87c1f/lib/neoscout/json_schema.rb#L103-L122,1, +Ruby,how to make the checkbox checked,https://github.com/dobtco/formbuilder-rb/blob/e389b7d8778a5ef2b6bab4e2d732e311965a4f3f/app/models/formbuilder/response_field_checkboxes.rb#L11-L39,0, +Ruby,scatter plot,https://github.com/dilcom/gnuplotrb/blob/0a3146386ae28fcbe2c09cb6e266fe40ebb659f4/lib/gnuplotrb/multiplot.rb#L42-L56,1, +Ruby,how to get current date,https://github.com/easyPEP/enrico/blob/d9eba92b0b44a517d512b165252963556dba14ea/lib/enrico/country.rb#L83-L86,1, +Ruby,get current ip address,https://github.com/engineyard/fragrant/blob/c48d3ce3d63839cb0c43867c26dfb80a3ef05b58/lib/fragrant/address_manager.rb#L38-L44,1, +Ruby,how to read the contents of a .gz compressed file?,https://github.com/ankurcha/stemcell/blob/9b64480494f86141e38a65a61746aef52c451293/lib/stemcell/builder.rb#L352-L359,0, +Ruby,find int in string,https://github.com/datacite/bolognese/blob/10b8666a6724c0a9508df4547a9f9213bf80b59c/lib/bolognese/utils.rb#L325-L335,1, +Ruby,how to determine a string is a valid word,https://github.com/gangelo/LittleWeasel/blob/31108fb9775ca549fe3d05ce8dfe5aab7aef18e1/lib/LittleWeasel.rb#L64-L83,1, +Ruby,concatenate several file remove header lines,https://github.com/rubocop-hq/rubocop/blob/2a4f4f0fdac4e1bb25891fc312af2ea60c6aa2f0/lib/rubocop/processed_source.rb#L55-L67,1, +Ruby,extracting data from a text file,https://github.com/inside-track/remi/blob/f7e5f28f08f8c0403e04cd82d6fc14b6b2c362a7/lib/remi/data_subjects/gsheet.rb#L67-L81,0, +Ruby,unique elements,https://github.com/emancu/ork/blob/83b2deaef0e790d90f98c031f254b5f438b19edf/lib/ork/model/document.rb#L139-L149,0, +Ruby,extracting data from a text file,https://github.com/enkessler/cucumber_analytics/blob/a74642d30b3566fc11fb43c920518fea4587c6bd/lib/cucumber_analytics/doc_string.rb#L54-L61,2, +Ruby,get current process id,https://github.com/castwide/solargraph/blob/47badb5d151aca775ccbe6c470236089eae7839d/lib/solargraph/yard_map.rb#L215-L234,0, +Ruby,get current process id,https://github.com/projecttacoma/cqm-models/blob/d1ccbea6451f02fed3c5ef4e443a53bc6f29b000/app/models/cqm/provider.rb#L40-L43,0, +Ruby,nelder mead optimize,https://github.com/thinkerbot/configurable/blob/43c611f767f14194827b1fe31bc72c8bdf54efdf/lib/configurable/config_hash.rb#L159-L161,0, +Ruby,how to get database table name,https://github.com/veny/orientdb4r/blob/d02d0d27e6ed19c5c5ff377a642355f617c785d7/lib/orientdb4r/rest/client.rb#L175-L200,0, +Ruby,parse binary file to custom class,https://github.com/sawaken/ruby-binary-parser/blob/c9ae043915d1a91677a2296e2f15d2929242d8f7/lib/binary_parser/stream_template_base.rb#L80-L87,1, +Ruby,underline text in label widget,https://github.com/barkerest/incline/blob/1ff08db7aa8ab7f86b223268b700bc67d15bb8aa/lib/incline/extensions/form_builder.rb#L277-L282,0, +Ruby,replace in file,https://github.com/evgenyneu/siba/blob/04cd0eca8222092c14ce4a662b48f5f113ffe6df/lib/siba/scaffold.rb#L117-L126,1, +Ruby,create cookie,https://github.com/sumoheavy/jira-ruby/blob/25e896f227ab81c528e9678708cb546d2f62f018/lib/jira/http_client.rb#L90-L95,1, +Ruby,how to make the checkbox checked,https://github.com/lml/lev/blob/ce39ac122796974dafb24ee61428540dacf34371/lib/lev/form_builder.rb#L14-L18,0, +Ruby,get inner html,https://github.com/flavorjones/loofah/blob/49f178941f10a97aa6441e71fae704a81cc3a731/lib/loofah/scrubber.rb#L102-L113,0, +Ruby,html entities replace,https://github.com/RubenVerborgh/HTML5small/blob/dc62e06896723ffc24a652abf2fdcdd643726e45/lib/html5small/minifier.rb#L101-L105,2, +Ruby,convert int to bool,https://github.com/sass/ruby-sass/blob/7a50eae567260a23d3bbf4d5aaf1a76db43dec32/lib/sass/script/value/base.rb#L69-L71,0, +Ruby,get current process id,https://github.com/jbaiza/clusterpoint/blob/366f5aac97f67427eda29d929d05c97d7d46a0d0/lib/cluster_point/finder_methods.rb#L32-L39,0, +Ruby,convert html to pdf,https://github.com/kitplummer/pdftohtmlr/blob/bb5a7f1bcda437f2d48eb371d37d21f36faedd22/lib/pdftohtmlr.rb#L41-L62,1, +Ruby,custom http error response,https://github.com/vimox-shah/sequence-generator/blob/b73a6a05a0e905069e8b227c056e9f03e8cfe652/app/controllers/sequence_generator/application_controller.rb#L101-L106,3, +Ruby,randomly extract x items from a list,https://github.com/akerl/prospectus/blob/dfd62bd3b649562de03e969ca53237fa6074bac5/lib/prospectus/list.rb#L30-L39,0, +Ruby,k means clustering,https://github.com/TheNoskOneVzla/aprendizaje-maquina/blob/8c87d973a8ba44d065a2b2cc4f1f13bdbee839e3/lib/aprendizaje_maquina/clustering.rb#L62-L94,3, +Ruby,convert a utc time to epoch,https://github.com/panthomakos/timezone/blob/23acc721a6b1df1fde840cf05ab097b5d59925f0/lib/timezone/zone.rb#L120-L135,1, +Ruby,normal distribution,https://github.com/PixarAnimationStudios/ruby-jss/blob/4ab645bfaec8b2edb1ea146bfc2b10f0d62edee9/lib/jss/api_connection.rb#L831-L846,0, +Ruby,get the description of a http status code,https://github.com/LoyaltyNZ/hoodoo/blob/905940121917ecbb66364bca3455b94b1636470f/lib/hoodoo/errors/errors.rb#L121-L161,0, +Ruby,fuzzy match ranking,https://github.com/FooBarWidget/mizuho/blob/3f361f0732ec59dd9f8f047aa4ea4943be8ba700/lib/mizuho/id_map.rb#L58-L80,0, +Ruby,convert a date string into yyyymmdd,https://github.com/rossta/montrose/blob/91af7d2d5c337aa255510179d24eb023775674bb/lib/montrose/utils.rb#L81-L84,1, +Ruby,priority queue,https://github.com/socialcast/link_preview/blob/26764dd0f4fca4968bfc196fad833841b66cc027/lib/link_preview/http_crawler.rb#L72-L76,2, +Ruby,print model summary,https://github.com/3100/trahald/blob/a32bdd61ee3db1579c194eee2e898ae364f99870/lib/trahald/summary-file.rb#L32-L41,0, +Ruby,fuzzy match ranking,https://github.com/FooBarWidget/mizuho/blob/3f361f0732ec59dd9f8f047aa4ea4943be8ba700/lib/mizuho/id_map.rb#L190-L198,0, +Ruby,sorting multiple arrays based on another arrays sorted order,https://github.com/tj/terminal-table/blob/e00dde32a36bbd134f1b564369c9a3085bc69852/lib/terminal-table/table.rb#L112-L119,0, +Ruby,get current observable value,https://github.com/kontena/kontena/blob/5cb5b4457895985231ac88e78c8cbc5a8ffb5ec7/agent/lib/kontena/observer.rb#L290-L295,0, +Ruby,get executable path,https://github.com/lukebayes/project-sprouts/blob/6882d7309d617e35350749df84fac5e7d9c5e843/lib/sprout/file_target.rb#L64-L67,1, +Ruby,how to get database table name,https://github.com/refinery/refinerycms/blob/67f117f937c5264ec0aeabe8e7eac1d562c5bc7b/core/lib/refinery/extension_generation.rb#L71-L76,0, +Ruby,connect to sql,https://github.com/ytti/oxidized/blob/0cf095b01612c30a635a6c26843f02af20631823/lib/oxidized/source/sql.rb#L55-L63,3, +Ruby,parse binary file to custom class,https://github.com/ChrisSandison/missing_text/blob/dd33f0118f0a69798537e0280a6c62dc387f3e81/lib/missing_text/diff.rb#L164-L179,1, +Ruby,filter array,https://github.com/github-changelog-generator/github-changelog-generator/blob/f18c64b5cc0d7473b059275b88385ac11ca8b564/lib/github_changelog_generator/generator/generator_processor.rb#L186-L190,1, +Ruby,read properties file,https://github.com/manifest/xcodeproject/blob/752d9d157268ba76e2f038206f014e18d14d9b4a/lib/xcodeproject/xc_build_configuration.rb#L73-L81,1, +Ruby,get the description of a http status code,https://github.com/vitalie/webshot/blob/2464ee47a34c6c7a8bade4686c7b179cd1c69e30/lib/webshot/screenshot.rb#L28-L33,1, +Ruby,concatenate several file remove header lines,https://github.com/rayyanqcri/ref_parsers/blob/2b0788b7982628e2375fa64bbd29160fdaf17887/lib/ref_parsers/line_parser.rb#L33-L42,0, +Ruby,convert a utc time to epoch,https://github.com/panthomakos/timezone/blob/23acc721a6b1df1fde840cf05ab097b5d59925f0/lib/timezone/zone.rb#L109-L113,1, +Ruby,regex case insensitive,https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/deprecated/rtextview.rb#L193-L198,0, +Ruby,custom http error response,https://github.com/xlab-si/server-sent-events-ruby/blob/f57491a8ab3b08662f657668d3ffe6725dd251db/lib/server_sent_events/client.rb#L33-L43,1, +Ruby,map to json,https://github.com/Zerocchi/jikan.rb/blob/498a779e9f85a191e8d6375f7ca83039e984cd4a/lib/jikan/query.rb#L12-L46,0, +Ruby,output to html file,https://github.com/guard/guard-haml/blob/ea981b68ce86ff7dac1972b1c303b3426d2d263e/lib/guard/haml.rb#L84-L101,2, +Ruby,convert int to string,https://github.com/ThoughtWorksStudios/oauth2_provider/blob/d54702f194edd05389968cf8947465860abccc5d/tools/jruby-1.5.1/lib/ruby/1.8/rdoc/markup/simple_markup/to_latex.rb#L204-L221,0, +Ruby,extract data from html content,https://github.com/BinaryStorms/civic-sip-ruby-sdk/blob/330f01409500b30129691e9990da69e57bd6fbf4/lib/civic_sip_sdk/client.rb#L76-L97,0, +Ruby,copying a file to a path,https://github.com/furkancelik/fcfinder/blob/1ada4463c7134c879716ed86cde173b2042c564e/lib/fcfinder/connector.rb#L216-L232,2, +Ruby,how to randomly pick a number,https://github.com/eet-nu/cheers/blob/4b94bf8ce2a1ca929b9b56277e12f3e94e7a5399/lib/cheers/contrasting_color_picker.rb#L13-L23,1, +Ruby,how to reverse a string,https://github.com/mojombo/grit/blob/5608567286e64a1c55c5e7fcd415364e04f8986e/lib/grit/git-ruby.rb#L75-L114,0, +Ruby,copying a file to a path,https://github.com/NathanTCz/idlc-sdk-core/blob/a9cf07f65a1b206b7f776183d29923aa345f582e/lib/idlc-sdk-core/workspace.rb#L29-L38,2, +Ruby,nelder mead optimize,https://github.com/jronallo/mead/blob/119e25d762d228a17612afe327ac13227aa9825b/lib/mead/ead.rb#L84-L98,1, +Ruby,all permutations of a list,https://github.com/blahah/biopsy/blob/e46f3d1c75de4da2ec47a377f7e4f0e16a8e03d2/lib/biopsy/target.rb#L141-L143,0, +Ruby,how to get current date,https://github.com/mlipper/runt/blob/d0dab62fa45571e50e2018dbe1e12a9fe2752f61/lib/runt/temporalexpression.rb#L678-L680,2, +Ruby,convert json to csv,https://github.com/everypolitician/everypolitician-ruby/blob/f85e4b684324cf35ef14e7546ddd33052046d883/lib/everypolitician/legislative_period.rb#L34-L36,1, +Ruby,readonly array,https://github.com/opal/opal/blob/41aedc0fd62aab00d3c117ba0caf00206bedd981/opal/corelib/marshal/read_buffer.rb#L388-L407,0, +Ruby,convert int to bool,https://github.com/ThoughtWorksStudios/oauth2_provider/blob/d54702f194edd05389968cf8947465860abccc5d/tools/jruby-1.5.1/lib/ruby/1.8/rdoc/markup/simple_markup/to_html.rb#L190-L219,1, +Ruby,unzipping large files,https://github.com/tulios/icosmith-rails/blob/e73c11eaa593fcb6f9ba93d34fbdbfe131693af4/lib/icosmith-rails/font.rb#L90-L96,3, +Ruby,concatenate several file remove header lines,https://github.com/kmuto/review/blob/77d1273e671663f05db2992281fd891b776badf0/lib/review/textutils.rb#L40-L46,1, +Ruby,k means clustering,https://github.com/wurmlab/genevalidator/blob/b44a4a7e72eb8314c73d0cd7062d37a1c4c58299/lib/genevalidator/clusterization.rb#L510-L523,1, +Ruby,binomial distribution,https://github.com/mtortonesi/ruby-erv/blob/02e757296ef79b3deb47a40bbdeab5de795e105b/lib/erv/mixture_distribution.rb#L80-L87,1, +Ruby,encrypt aes ctr mode,https://github.com/nikhgupta/encruby/blob/ded0276001f7672594a84d403f64dcd4ab906039/lib/encruby/message.rb#L36-L59,3, +Ruby,how to read .csv file in an efficient way?,https://github.com/pjotrp/bioruby-table/blob/e7cc97bb598743e7d69e63f16f76a2ce0ed9006d/lib/bio-table/formatter.rb#L45-L50,1, +Ruby,fuzzy match ranking,https://github.com/paddor/cztop/blob/d20ee44775d05b60f40fffd1287a9b01270ab853/lib/cztop/z85.rb#L71-L77,0, +Ruby,randomly extract x items from a list,https://github.com/ozgg/weighted-select/blob/5cf3a8a1f2ba74f2885dcc8111396e5ca10ccad4/lib/weighted-select.rb#L44-L49,1, +Ruby,aes encryption,https://github.com/zaru/webpush/blob/6aed6657a40bf40dbdf2ff617c3370507ae3fd64/lib/webpush/encryption.rb#L61-L73,2, +Ruby,positions of substrings in string,https://github.com/sds/haml-lint/blob/024c773667e54cf88db938c2b368977005d70ee8/lib/haml_lint/utils.rb#L81-L86,3, +Ruby,matrix multiply,https://github.com/jellymann/mittsu/blob/955bde855c727d775b80f2c88457cb4b58c8c8f8/lib/mittsu/math/box3.rb#L162-L177,1, +Ruby,set file attrib hidden,https://github.com/Katello/katello/blob/a1c9280067607999cae43bab89b53ba870856b76/app/models/katello/provider.rb#L127-L134,0, +Ruby,group by count,https://github.com/zendesk/ruby-kafka/blob/2a73471b6a607a52dc85c79301ba522acb4566b5/lib/kafka/cluster.rb#L248-L253,0, +Ruby,json to xml conversion,https://github.com/ruby-odata/odata/blob/be4626bebea595dab2250ae4442e59e94b5fd4c6/lib/odata/entity.rb#L112-L135,1, +Ruby,binomial distribution,https://github.com/PixarAnimationStudios/ruby-jss/blob/4ab645bfaec8b2edb1ea146bfc2b10f0d62edee9/lib/jss/api_object/network_segment.rb#L397-L402,0, +Ruby,custom http error response,https://github.com/stripe/stripe-ruby/blob/322a8c60be8a9b9ac8aad8857864680a32176935/lib/stripe/stripe_client.rb#L346-L394,3, +Ruby,find int in string,https://github.com/david942j/heapinfo/blob/0608067e2d7601249cf01e725f7b8389e390d3f6/lib/heapinfo/dumper.rb#L193-L196,2, +Ruby,filter array,https://github.com/cldwalker/hirb/blob/264f72c7c0f0966001e802414a5b0641036c7860/lib/hirb/helpers/table.rb#L356-L359,1, +Ruby,encode url,https://github.com/infobip/oneapi-ruby/blob/17f3843812b58957a2578c837784781c30dbf1c6/lib/oneapi-ruby/client.rb#L73-L89,2, +Ruby,readonly array,https://github.com/eagletmt/switch_point/blob/986a46d99c4b3762c60f754a9d32e032a5a36545/lib/switch_point/config.rb#L45-L60,0, +Ruby,how to get html of website,https://github.com/sa2taka/mstdn_ivory/blob/26d72c3d269c615f1414d5a8e5cb7b50c6e0722b/lib/mstdn_ivory/register.rb#L5-L7,1, +Ruby,read text file line by line,https://github.com/ddnexus/irt/blob/6d6c5a7631abd6271dcec7def982ebcfc1aaf9e0/lib/irt/extensions/irb/context.rb#L10-L25,0, +Ruby,how to randomly pick a number,https://github.com/alexreisner/geocoder/blob/e087dc2759264ee6f307b926bb2de4ec2406859e/lib/geocoder/calculations.rb#L238-L256,1, +Ruby,nelder mead optimize,https://github.com/JEG2/oklahoma_mixer/blob/9e3647d2b064180f2e5f5848ca36967f0aca6e70/lib/oklahoma_mixer/b_tree_database.rb#L12-L20,1, +Ruby,deserialize json,https://github.com/brianpattison/motion-loco/blob/d6f4ca32d6e13dc4d325d2838c0e2685fa0fa4f6/lib/motion-loco/adapter.rb#L107-L131,1, +Ruby,get current process id,https://github.com/lawhorkl/change_manager/blob/663ea70836f92a4e2e6038d15782fc956c898cd9/app/services/change_manager/manager.rb#L9-L16,2, +Ruby,how to extract zip file recursively,https://github.com/DevicoSolutions/geckodriver-helper/blob/6b7842b9a87d6be297a1ad1eb089a0cacdb71a74/lib/geckodriver/helper.rb#L37-L47,2, +Ruby,group by count,https://github.com/looker-open-source/gzr/blob/96dd5edc9cdc6f8d053f517805b9637ff8417378/lib/gzr/modules/group.rb#L51-L66,0, +Ruby,how to reverse a string,https://github.com/tmm1/pygments.rb/blob/926d1adad88c22f92010a0f284d2dcc10213ec1e/lib/pygments/popen.rb#L451-L457,0, +Ruby,save list to file,https://github.com/Origen-SDK/origen/blob/f05e9dd190fcb90284084ba6e2bd4b0fe0c7f4ac/lib/origen/file_handler.rb#L44-L62,1, +Ruby,export to excel,https://github.com/wwidea/rexport/blob/f4f978dd0327ddba3a4318dd24090fbc6d4e4e59/lib/rexport/exports_controller_methods.rb#L24-L32,1, +Ruby,connect to sql,https://github.com/sharethrough/flare-up/blob/98b5f379ddbb7cfc77c5854f181e07334e28ed94/lib/flare_up/connection.rb#L49-L66,2, +Ruby,get all parents of xml node,https://github.com/rails/sprockets/blob/9e3f0d8e98c44f57e67bc138db87bb8469bf5ddd/lib/sprockets/path_utils.rb#L252-L264,1, +Ruby,nelder mead optimize,https://github.com/michaelmior/mipper/blob/4ab7f8b32c27f33fc5121756554a0a28d2077e06/lib/mipper/glpk/model.rb#L46-L57,0, +Ruby,how to read the contents of a .gz compressed file?,https://github.com/chef/omnibus/blob/968307c129ee54416f5a4d07ca8f8ca2d2b12825/lib/omnibus/compressors/tgz.rb#L130-L139,1, +Ruby,html encode string,https://github.com/clearwater-rb/clearwater/blob/bc488101f2773bb2b497d964f16e34b560b77c76/lib/clearwater/component.rb#L30-L33,1, +Ruby,get executable path,https://github.com/piotrmurach/tty-which/blob/ae541cb7b4020eb291ebe0aca498ac24f183c8f5/lib/tty/which.rb#L27-L48,2, +Ruby,extracting data from a text file,https://github.com/superp/sunrise-locales/blob/949ef67ae5b064d3ef2082caa66bf26ba226721b/lib/sunrise/locales/yml_locale.rb#L16-L24,3, +Ruby,k means clustering,https://github.com/envato/zxcvbn-ruby/blob/fc69afd08f5fb0c8361d52461750b716c925cb11/lib/zxcvbn/scorer.rb#L17-L55,0, +Ruby,string to date,https://github.com/ankane/pgslice/blob/6b4de2435b88e1c69c8d2e3f7bf77235265b1592/lib/pgslice/helpers.rb#L115-L125,1, +Ruby,unique elements,https://github.com/mdub/lazily/blob/8665e3532ea2d2ea3a41e6ec6a47088308979754/lib/lazily/filtering.rb#L63-L75,3, +Ruby,convert decimal to hex,https://github.com/noprompt/vic/blob/276e18fc5d81727023d3abfdf95829648818a9c4/lib/vic/color.rb#L93-L102,1, +Ruby,priority queue,https://github.com/chanks/que/blob/c7ae049db0ca13056a28c71ae610f8900f21feb4/lib/que/job_buffer.rb#L76-L79,3, +Ruby,map to json,https://github.com/inspec/train/blob/ec41c1f1e6f38f6ab1c335955651064eaeb7028f/lib/train/file.rb#L37-L43,2, +Ruby,json to xml conversion,https://github.com/peterjm/eye_of_newt/blob/84b9a83b623b6ed00b04482c782eb203d876afac/lib/eye_of_newt/units.rb#L35-L41,0, +Ruby,how to read .csv file in an efficient way?,https://github.com/loveablelobster/DwCR/blob/093e112337bfb664630a0f164c9d9d7552b1e54c/lib/dwca_content_analyzer/file_contents.rb#L33-L35,1, +Ruby,finding time elapsed using a timer,https://github.com/47colborne/exel/blob/65fbbdffef40649e98c4490792c59331730d4f90/lib/exel/processor_helper.rb#L64-L68,3, +Ruby,positions of substrings in string,https://github.com/wedesoft/multiarray/blob/1ae1d98bacb4b941d6f406e44ccb184de12f83d9/lib/multiarray/lambda.rb#L119-L124,1, +Ruby,underline text in label widget,https://github.com/bootstrap-ruby/bootstrap_form/blob/9dc3c938e8a56f9c61638aa471add7c35187e8c1/lib/bootstrap_form/form_group_builder.rb#L68-L72,0, +Ruby,reading element from html - ,https://github.com/zhimin/rwebspec/blob/aafccee2ba66d17d591d04210067035feaf2f892/lib/rwebspec-watir/driver.rb#L584-L590,0, +Ruby,set file attrib hidden,https://github.com/brainlid/locale_dating/blob/696aa73a648d5c0552a437801b07331c6cc005ee/lib/locale_dating.rb#L37-L62,0, +Ruby,aes encryption,https://github.com/scepticulous/crypto-toolbox/blob/cdbe371109e497db2c2af5c1fe0f359612f44816/lib/crypto-toolbox/ciphers/aes.rb#L12-L15,0, +Ruby,find int in string,https://github.com/fastlane/fastlane/blob/457c5d647c77f0e078dafa5129da616914e002c5/sigh/lib/sigh/resign.rb#L112-L114,0, +Ruby,parse query string in url,https://github.com/oauth-xx/oauth-ruby/blob/cb9b9db64f520dc0ee87fe6e4fe82a7601cffb14/lib/oauth/request_proxy/curb_request.rb#L36-L39,3, +Ruby,format date,https://github.com/AlexanderZaytsev/human_date/blob/f20350fe817de3505d8c2693af4a6d38d308b35a/lib/human_date/view_helpers.rb#L39-L53,1, +Ruby,postgresql connection,https://github.com/dalibor/octoshark/blob/45d53fadebdb2fa96d6a7ef17616167370275c88/lib/octoshark/connection_manager.rb#L5-L19,2, +Ruby,reading element from html - ,https://github.com/zdavatz/ydocx/blob/f022ede91fe3c1a41bf5fdddd033674b3d8f94c0/lib/ydocx/document.rb#L43-L65,1, +Ruby,encrypt aes ctr mode,https://github.com/rockandror/redsys-rails/blob/048b14e358b332973161e3b561b6e524667ecb4f/app/models/redsys/tpv.rb#L112-L123,1, +Ruby,convert int to bool,https://github.com/instructure/moodle2cc/blob/cdb1666a76b22e87e8853d4045e31439244cce4b/lib/moodle2cc/moodle2converter/migrator.rb#L98-L101,0, +Ruby,group by count,https://github.com/cloudfoundry/cf-uaa-lib/blob/e071d69ad5f16053321dfbb95835cf6a9b48227c/lib/uaa/scim.rb#L378-L385,1, +Ruby,html encode string,https://github.com/clearwater-rb/clearwater/blob/bc488101f2773bb2b497d964f16e34b560b77c76/lib/clearwater/component.rb#L30-L33,2, +Ruby,how to determine a string is a valid word,https://github.com/rf-/tweet_to_sounds/blob/eb9f02e03afa9381ce85a3d874fb42a32e812cb3/lib/tweet_to_sounds/keyword_extractor.rb#L23-L27,0, +Ruby,linear regression,https://github.com/wurmlab/genevalidator/blob/b44a4a7e72eb8314c73d0cd7062d37a1c4c58299/lib/genevalidator/validation_gene_merge.rb#L261-L285,1, +Ruby,socket recv timeout,https://github.com/synthesist/panoptimon/blob/9346c221ae95aaa6528232a04a92478f7c9a5e15/lib/panoptimon/collector.rb#L108-L117,0, +Ruby,encrypt aes ctr mode,https://github.com/nikhgupta/encruby/blob/ded0276001f7672594a84d403f64dcd4ab906039/lib/encruby/message.rb#L36-L59,0, +Ruby,binomial distribution,https://github.com/dicom/rtkit/blob/08248bf294769ae5b45ed4a9671f0620d5740252/lib/rtkit/dose_volume.rb#L169-L181,0, +Ruby,nelder mead optimize,https://github.com/blahah/biopsy/blob/e46f3d1c75de4da2ec47a377f7e4f0e16a8e03d2/lib/biopsy/objective_handler.rb#L99-L113,0, +Ruby,buffered file reader read text,https://github.com/worlddb/world.db/blob/8fd44fa8d8dc47290c63b881c713634494aae291/worlddb-models/lib/worlddb/readers/country.rb#L7-L14,0, +Ruby,string similarity levenshtein,https://github.com/plusplus/same_same/blob/24f5d7ced9a5e2fabbe4f58ed1b47a6c12ac5954/lib/same_same/rock_clusters.rb#L45-L51,0, +Ruby,html entities replace,https://github.com/paulsamuels/SBConstants/blob/3a10637c9da87322bfdaed3eb450d3899ae948fb/lib/sbconstants/swift_constant_writer.rb#L24-L29,1, +Ruby,deducting the median from each column,https://github.com/chastell/art-decomp/blob/3ff2c667b6711821919c0135f548a88ed5f74392/lib/art-decomp/dec_tree.rb#L63-L77,0, +Ruby,convert int to bool,https://github.com/moneta-rb/moneta/blob/26a118c8b2c93d11257f4a5fe9334a8157f4db47/lib/moneta/utils.rb#L22-L26,0, +Ruby,get current observable value,https://github.com/nrser/nrser.rb/blob/7db9a729ec65894dfac13fd50851beae8b809738/lib/nrser/labs/config.rb#L108-L143,0, +Ruby,get all parents of xml node,https://github.com/alphagov/govuk_navigation_helpers/blob/5eddcaec5412473fa4e22ef8b8d2cbe406825886/lib/govuk_navigation_helpers/breadcrumbs.rb#L23-L34,1, +Ruby,export to excel,https://github.com/kennixdev/applocale/blob/d3e5b99e4ee47228ca9bb5aff28c81049fef613c/lib/applocale/Core/GoogleHepler/google_helper.rb#L43-L79,0, +Ruby,filter array,https://github.com/chefspec/chefspec/blob/b7c260d480c3b71a0e61ce46148ec7b9d3f3c40e/lib/chefspec/coverage.rb#L63-L80,0, +Ruby,nelder mead optimize,https://github.com/FoxtrotSystems/api-client-ruby/blob/7691bb04b53ed70ce87e82d1cb66b7d645a8e2b2/lib/foxtrot/client.rb#L29-L33,0, +Ruby,how to check if a checkbox is checked,https://github.com/zhimin/rwebspec/blob/aafccee2ba66d17d591d04210067035feaf2f892/lib/rwebspec-watir/web_browser.rb#L396-L409,2, +Ruby,output to html file,https://github.com/zdavatz/ydocx/blob/f022ede91fe3c1a41bf5fdddd033674b3d8f94c0/lib/ydocx/document.rb#L43-L65,3, +Ruby,randomly extract x items from a list,https://github.com/GlobalNamesArchitecture/dwca_hunter/blob/fa7665c2bf6a1033ac20097fa1ef372830ff5e2c/lib/dwca_hunter/resources/wikispecies.rb#L143-L157,0, +Ruby,heatmap from 3d coordinates,https://github.com/maerch/ruby-drawille/blob/73f5845e3d5c4805427d4ccbd9e27a0cde6f84a6/lib/drawille/brush.rb#L72-L81,0, +Ruby,readonly array,https://github.com/dearblue/ruby-extlz4/blob/3aec15ad7c01e81a8ed36d3b9dcf3b65350d205f/lib/extlz4/oldstream.rb#L421-L432,0, +Ruby,k means clustering,https://github.com/plusplus/same_same/blob/24f5d7ced9a5e2fabbe4f58ed1b47a6c12ac5954/lib/same_same/rock_clusters.rb#L45-L51,1, +Ruby,get the description of a http status code,https://github.com/apache/predictionio-sdk-ruby/blob/a1777db9f89a4287d252c8ca166a279fb2af64b7/lib/predictionio/event_client.rb#L112-L119,2, +Ruby,convert string to number,https://github.com/uken/fluent-plugin-elasticsearch/blob/9f9e51ddd012acb36c7f9d7a16e00970004098bc/lib/fluent/plugin/out_elasticsearch.rb#L384-L387,0, +Ruby,filter array,https://github.com/huginn/huginn/blob/01e18fef7b6bd827a5d48a89391e460b5fb1bee3/app/models/agents/twitter_stream_agent.rb#L107-L117,1, +Ruby,get current observable value,https://github.com/kontena/kontena/blob/5cb5b4457895985231ac88e78c8cbc5a8ffb5ec7/agent/lib/kontena/observable.rb#L118-L125,0, +Ruby,get name of enumerated value,https://github.com/dpla/KriKri/blob/0ac26e60ce1bba60caa40263a562796267cf833f/lib/krikri/harvesters/oai_harvester.rb#L159-L165,1, +Ruby,string to date,https://github.com/gdomingu/nasa_apod/blob/f8068be3c9e87c0733fc332f6bf11d956dd39ec0/lib/nasa_apod/client.rb#L59-L70,2, +Ruby,convert string to number,https://github.com/rubycoco/record/blob/f0b6b8f9edbff4f2cd31278029cd0135906bcab2/lib/record/field.rb#L56-L79,2, +Ruby,buffered file reader read text,https://github.com/eggcaker/jekyll-org/blob/f5e40bfc70717e0c7c353e488237fa3452ddde0a/lib/jekyll-org.rb#L42-L104,1, +Ruby,linear regression,https://github.com/Origen-SDK/origen/blob/f05e9dd190fcb90284084ba6e2bd4b0fe0c7f4ac/lib/origen/regression_manager.rb#L35-L115,0, +Ruby,get current ip address,https://github.com/micahwedemeyer/wrenchmode-rack/blob/680b318a1397bf56916d6dda701d06781e601917/lib/wrenchmode/rack.rb#L230-L236,2, +Ruby,output to html file,https://github.com/tanema/ghost_in_the_post/blob/e47c5d8371141241699f5ba7dd743e60fa739573/lib/ghost_in_the_post/phantom_transform.rb#L49-L54,2, +Ruby,heatmap from 3d coordinates,https://github.com/vbosch/ruby_pager/blob/d175376de650bea05e6fbc47f7748e0ec450d11b/lib/ruby_pager/coord.rb#L32-L35,0, +Ruby,binomial distribution,https://github.com/Katello/katello/blob/a1c9280067607999cae43bab89b53ba870856b76/app/models/katello/repository.rb#L548-L557,0, +Ruby,html encode string,https://github.com/njh/ruby-mqtt/blob/878639e85827aa25688e9c4ef1511d393549dcfa/lib/mqtt/packet.rb#L248-L254,0, +Ruby,deducting the median from each column,https://github.com/ciaranarcher/hacker_term/blob/3f7670fe20153519cc1b5e1f040d91c761cadfb7/lib/hacker_term/page_data.rb#L87-L92,1, +Ruby,how to check if a checkbox is checked,https://github.com/mirego/phare/blob/2886ddae53f16fc51c5e0d05a8ffc92a0225c6f9/lib/phare/check_suite.rb#L33-L40,1, +Ruby,custom http error response,https://github.com/chriskite/jimson/blob/d921a29857384997509e477e655d152377a4dfcc/lib/jimson/server.rb#L196-L208,2, +Ruby,read text file line by line,https://github.com/vbosch/ruby_pager/blob/d175376de650bea05e6fbc47f7748e0ec450d11b/lib/ruby_pager/text_region.rb#L91-L105,3, +Ruby,priority queue,https://github.com/sportngin/okcomputer/blob/b8120d064c32c238177607c61fa7f7c792d5d6b8/lib/ok_computer/built_in_checks/delayed_job_backed_up_check.rb#L36-L48,1, +Ruby,sorting multiple arrays based on another arrays sorted order,https://github.com/Rademade/mongoid_sortable_relation/blob/81db5b893507d6594a2d8b57f4f1d2fd8d6658a6/lib/mongoid_sortable_relation/many/origin_optional.rb#L19-L29,0, +Ruby,set working directory,https://github.com/gollum/gollum-lib/blob/e811f79cb569f1bf0711947d49105db60421e2c1/lib/gollum-lib/committer.rb#L141-L164,1, +Ruby,how to check if a checkbox is checked,https://github.com/pjb3/curtain/blob/ab4f3dccea9b887148689084137f1375278f2dcf/lib/curtain/form_builder.rb#L156-L158,1, +Ruby,how to make the checkbox checked,https://github.com/pjb3/curtain/blob/ab4f3dccea9b887148689084137f1375278f2dcf/lib/curtain/form_builder.rb#L156-L158,1, +Ruby,connect to sql,https://github.com/r7kamura/xrc/blob/ddc0af9682fc2cdaf851f88a3f0953a1478f1954/lib/xrc/connection.rb#L12-L15,3, +Ruby,readonly array,https://github.com/mojombo/bert/blob/c2abcc4868bb47909696c6a42c606de34e83ef70/lib/bert/decode.rb#L232-L238,0, +Ruby,how to check if a checkbox is checked,https://github.com/lml/lev/blob/ce39ac122796974dafb24ee61428540dacf34371/lib/lev/form_builder.rb#L14-L18,3, +Ruby,parse json file,https://github.com/ScreenStaring/recharge-api/blob/3eaf7723bf9c7d6689051e92cab5b572b009afcc/lib/recharge/http_request.rb#L98-L102,3, +Ruby,how to determine a string is a valid word,https://github.com/kalashnikovisme/karamzin/blob/2bd1810a95474c473d5f95023f055838b37d1e6c/lib/karamzin/words_helper.rb#L9-L26,0, +Ruby,convert int to string,https://github.com/moneta-rb/moneta/blob/26a118c8b2c93d11257f4a5fe9334a8157f4db47/lib/moneta/utils.rb#L22-L26,0, +Ruby,convert json to csv,https://github.com/ndlib/locabulary/blob/9d4a7c1b6a5956c5152924b1ff51d3f0798581d8/lib/locabulary/json_creator.rb#L54-L59,1, +Ruby,get current ip address,https://github.com/zold-io/zold/blob/7e0f69307786846186bc3436dcc72d91d393ddd4/lib/zold/commands/node.rb#L472-L478,3, +Ruby,html entities replace,https://github.com/huginn/huginn/blob/01e18fef7b6bd827a5d48a89391e460b5fb1bee3/lib/utils/html_transformer.rb#L62-L81,1, +Ruby,custom http error response,https://github.com/icyleaf/qyer-mobile-app/blob/4704b58fb9752262bb2ee53e5a566f0fd44241d5/lib/qma/client.rb#L84-L97,2, +Ruby,parse command line argument,https://github.com/chetan/dht-sensor-ffi/blob/fe7d6d0c64dc9c258bd823f7d1d41f7edf129cd2/lib/dht-sensor/app.rb#L115-L143,3, +Ruby,regex case insensitive,https://github.com/johnmarinelli/BILLYMAYSQL/blob/2ae604b5af8ae80821b7c7ab1a09a278bf5c2150/lib/sqlize.rb#L24-L27,1, +Ruby,linear regression,https://github.com/mtortonesi/ruby-erv/blob/02e757296ef79b3deb47a40bbdeab5de795e105b/lib/erv/mixture_distribution.rb#L80-L87,0, +Ruby,get current process id,https://github.com/tablexi/eye-patch/blob/9b098a8a3d1b7d10949302686b3c83ff525f538f/lib/eye/patch/process_set.rb#L17-L27,1, +Ruby,confusion matrix,https://github.com/wouterken/RMatrix/blob/893feba118b0537f53cf0b88025caaafbf4c0808/lib/rmatrix/matrix.rb#L302-L309,0, +Ruby,fuzzy match ranking,https://github.com/elifoster/weatheruby/blob/4d97db082448765b67ef5112c89346e502a74858/lib/weather/actions.rb#L39-L45,0, +Ruby,readonly array,https://github.com/williambarry007/caboose-rets/blob/1e7a5a3a1d51558229aeb2aa2c2f573e18727d27/lib/rets/stream_http.rb#L50-L152,0, +Ruby,how to read the contents of a .gz compressed file?,https://github.com/eagletmt/faml/blob/4f2a60af8df61e9da9cd6f3410aa23cb7fadea4e/lib/faml/cli.rb#L50-L52,0, +Ruby,how to get database table name,https://github.com/garethlatwork/quickbase_client/blob/13d754de1f22a466806c5a0da74b0ded26c23f05/lib/QuickBaseClient.rb#L914-L938,1, +Ruby,socket recv timeout,https://github.com/lann/tcp-timeout-ruby/blob/5bff959e54bfb0d1bb9bdcd73c7196629b5291f5/lib/tcp_timeout.rb#L146-L161,2, +Ruby,html entities replace,https://github.com/rhomobile/rhodes/blob/3c5f87b1a44f0ba2865ca0e1dd780dd202f64872/res/build-tools/ruby-standalone/212/usr/local/lib/ruby/2.1.0/rexml/doctype.rb#L136-L140,0, +Ruby,convert int to string,https://github.com/cxn03651/writeexcel/blob/d0345067c21b14a7141ba66b6752be8f4be379de/lib/writeexcel/formula.rb#L279-L302,0, +Ruby,read properties file,https://github.com/caruby/core/blob/a682dc57c6fa31aef765cdd206ed3d4b4c289c60/lib/caruby/helpers/properties.rb#L68-L90,2, +Ruby,pretty print json,https://github.com/public-law/schema-dot-org/blob/4b1585f3a1ea5fd465872a052a88775f799acc4b/lib/schema_dot_org.rb#L32-L40,0, +Ruby,httpclient post json,https://github.com/gurgeous/sinew/blob/c5a0f027939fedb597c28a8553f63f514584724a/lib/sinew/dsl.rb#L46-L52,3, +Ruby,get the description of a http status code,https://github.com/wvk/railsdav/blob/2a51bf43a726175eaa93bdfe7ba2bed0248d3d87/lib/railsdav/renderer.rb#L99-L103,1, +Ruby,parse json file,https://github.com/drrb/cfoo/blob/24fec58d607d364065c093eb9e9271a29bbc88fd/lib/cfoo/parser.rb#L121-L133,0, +Ruby,convert string to number,https://github.com/khiemns54/takenoko/blob/5105f32fcf6b39c0e63e61935d372851de665b54/lib/takenoko/google_client.rb#L129-L132,3, +Ruby,how to determine a string is a valid word,https://github.com/ryangreenberg/urban_dictionary/blob/a03678b52ef6bf58f13eeee8542c5dc90d25ef94/lib/urban_dictionary/cli.rb#L62-L88,0, +Ruby,get current observable value,https://github.com/github/scientist/blob/25a22f733d4be523404b22ad818e520d20b57619/lib/scientist/experiment.rb#L41-L49,0, +Ruby,convert decimal to hex,https://github.com/cryptape/ruby-rlp/blob/49c11eaee9f0f58d8028e5f1a291504c22dc947c/lib/rlp/utils.rb#L50-L54,2, +Ruby,save list to file,https://github.com/budabum/uicov/blob/581cfcf94bf6aa29387c6d120974bc4d3019349a/lib/uicov/commands/report.rb#L112-L116,1, +Ruby,extract data from html content,https://github.com/socialcast/link_preview/blob/26764dd0f4fca4968bfc196fad833841b66cc027/lib/link_preview/parser.rb#L61-L74,2, +Ruby,get inner html,https://github.com/opoloo/lines-engine/blob/9ae0525e882a9c323558353ce1941c50e8bcfc67/app/helpers/lines/application_helper.rb#L67-L98,1, +Ruby,unique elements,https://github.com/rhomobile/rhodes/blob/3c5f87b1a44f0ba2865ca0e1dd780dd202f64872/lib/extensions/rexml/rexml/element.rb#L295-L302,1, +Ruby,memoize to disk - persistent memoization,https://github.com/dkubb/adamantium/blob/bf38d4ad8a4307ab7f0593758b87f62b91e1df69/lib/adamantium/module_methods.rb#L28-L33,2, +Ruby,socket recv timeout,https://github.com/niw/wemo_device/blob/e4be2924eaf8ed6b4da5e8712b0076f061bfab8a/lib/wemo_device/ssdp.rb#L44-L65,2, +Ruby,format date,https://github.com/gdomingu/nasa_apod/blob/f8068be3c9e87c0733fc332f6bf11d956dd39ec0/lib/nasa_apod/client.rb#L59-L70,1, +Ruby,unique elements,https://github.com/AlchemyCMS/alchemy_cms/blob/0e1c5665984ff67d387c8cb4255f805c296c2fb6/lib/alchemy/upgrader/tasks/cells_upgrader.rb#L73-L87,1, +Ruby,filter array,https://github.com/sorah/hocho/blob/036eeccf45161423358382119256ee8cc5a171c1/lib/hocho/inventory.rb#L23-L52,1, +Ruby,read properties file,https://github.com/thechrisoshow/rtf/blob/d6455933262a25628006101be802d7f7b2c3feb7/lib/rtf/node.rb#L1473-L1512,1, +Ruby,json to xml conversion,https://github.com/paulsamuels/xcunique/blob/0a95740109dc504734acf01dfbb979d09fb5d9fd/lib/xcunique/options.rb#L48-L65,0, +Ruby,aes encryption,https://github.com/scepticulous/crypto-toolbox/blob/cdbe371109e497db2c2af5c1fe0f359612f44816/lib/crypto-toolbox/ciphers/aes.rb#L25-L28,0, +Ruby,httpclient post json,https://github.com/sonots/growthforecast-client/blob/6e0c463fe47627a96bded7e628f9456da4aa69ee/lib/growthforecast/client.rb#L110-L118,3, +Ruby,aes encryption,https://github.com/ThoughtWorksStudios/oauth2_provider/blob/d54702f194edd05389968cf8947465860abccc5d/tools/jruby-1.5.1/lib/ruby/gems/1.8/gems/activesupport-2.3.4/lib/active_support/message_encryptor.rb#L20-L33,2, +Ruby,create cookie,https://github.com/chriskite/anemone/blob/72b699ee11f618bdeb5a8f198b0b9aa675b4e2fa/lib/anemone/cookie_store.rb#L19-L28,2, +Ruby,convert json to csv,https://github.com/afirel/sepparator/blob/530ada67d11a66b9bb0f761539d172ea5187560e/lib/sepparator/spreadsheet_converter.rb#L14-L21,0, +Ruby,positions of substrings in string,https://github.com/SciRuby/daru/blob/d17887e279c27e2b2ec7a252627c04b4b03c0a7a/lib/daru/category.rb#L277-L281,0, +Ruby,sorting multiple arrays based on another arrays sorted order,https://github.com/bestie/terrestrial/blob/0cee1af7eac85572f22d68933f7f39d6e2a7e311/lib/terrestrial/dataset.rb#L17-L29,0, +Ruby,deducting the median from each column,https://github.com/ThoughtWorksStudios/oauth2_provider/blob/d54702f194edd05389968cf8947465860abccc5d/tools/jruby-1.5.1/lib/ruby/gems/1.8/gems/activerecord-jdbc-adapter-0.9.7-java/lib/jdbc_adapter/missing_functionality_helper.rb#L48-L69,0, +Ruby,set file attrib hidden,https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/rwidget.rb#L334-L383,1, +Ruby,sending binary data over a serial connection,https://github.com/shokai/arduino_firmata/blob/bf83d3331a0f5a7db858cd06cefc6127f023d9b3/lib/arduino_firmata/arduino.rb#L188-L200,0, +Ruby,convert a utc time to epoch,https://github.com/cronofy/cronofy-ruby/blob/a4e3b4274c7b6ddc047008c6f0c6c0e52e456816/lib/cronofy/types.rb#L159-L166,1, +Ruby,postgresql connection,https://github.com/einzige/framework/blob/5a8a2255265118aa244cdabac29fd1ce7f885118/lib/framework/application.rb#L191-L196,2, +Ruby,sorting multiple arrays based on another arrays sorted order,https://github.com/quirkey/restful_query/blob/7cedcc80bb1e8be749eae0d4c560d979cf27fa00/lib/restful_query/parser.rb#L147-L152,1, +Ruby,html encode string,https://github.com/mkj-is/Truty/blob/315f49ad73cc2fa814a7793aa1b19657870ce98f/lib/truty/conversion.rb#L59-L64,1, +Ruby,get current observable value,https://github.com/kontena/kontena/blob/5cb5b4457895985231ac88e78c8cbc5a8ffb5ec7/agent/lib/kontena/observable.rb#L185-L209,1, +Ruby,normal distribution,https://github.com/DataDog/dogstatsd-ruby/blob/0ea2a4d011958ad0d092654cae950e64b6475077/lib/datadog/statsd.rb#L324-L326,0, +Ruby,httpclient post json,https://github.com/kontena/kong-client-ruby/blob/028c8913388f46c7b3a41984f36687d147f74442/lib/kong/client.rb#L75-L89,3, +Ruby,fuzzy match ranking,https://github.com/quidproquo/ranker/blob/bf6c6be5f90be973a7016363d78a691f0e6d67fd/lib/ranker/strategies/ordinal.rb#L10-L19,0, +Ruby,nelder mead optimize,https://github.com/timfel/cassowary-ruby/blob/4780f8a243e715e1d0495a3629c1cda8cc186fa5/lib/simplex_solver.rb#L523-L576,1, +Ruby,extract latitude and longitude from given input,https://github.com/tkrajina/geoelevations/blob/2225da9108e651bfd9857ba010cb5c401b56b22a/lib/geoelevation.rb#L118-L124,1, +Ruby,convert json to csv,https://github.com/booqable/scoped_serializer/blob/fb163bbf61f54a5e8684e4aba3908592bdd986ac/lib/scoped_serializer/array_serializer.rb#L29-L39,2, +Ruby,unzipping large files,https://github.com/ejholmes/metaforce/blob/2e13c1fb28bd4d0f181c63d9acbab6b3632f02e1/lib/metaforce/job/retrieve.rb#L76-L84,2, +Ruby,how to determine a string is a valid word,https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/include/ractionevent.rb#L57-L71,0, +Ruby,postgresql connection,https://github.com/rapid7/nexpose-client/blob/933fc8c0c85ba11d3e17db1d7f4542816f400d71/lib/nexpose/credential_helper.rb#L92-L97,2, +Ruby,format date,https://github.com/procore/blueprinter/blob/4df6de78ed6c1f8574d5ec2fad5d1f4935fdb003/lib/blueprinter/formatters/date_time_formatter.rb#L19-L29,2, +Ruby,randomly extract x items from a list,https://github.com/codecalm/jekyll-random/blob/b1db3fd4def822b677f77a5b15443cacc7d69989/lib/jekyll-random.rb#L18-L22,1, +Ruby,get current ip address,https://github.com/ryotarai/infrataster/blob/97c9f9a91ed8285e72cffec83b8feb34e55a8acd/lib/infrataster/server.rb#L182-L211,1, +Ruby,convert a date string into yyyymmdd,https://github.com/minimul/iif-parser/blob/9be3eb1f15def9051714b8f2b88763d6581bc26e/lib/iif/parser.rb#L83-L88,1, +Ruby,hash set for counting distinct elements,https://github.com/tombroomfield/motion_panel/blob/b75f5110b4a27f23cb45746b166190570b9b8391/lib/motion_panel/people_manager.rb#L27-L30,1, +Ruby,write csv,https://github.com/controlshift/blue_state_digital/blob/c59038e61c1feb36abffa802069199a1b1280fe9/lib/blue_state_digital/dataset.rb#L99-L106,1, +Ruby,read text file line by line,https://github.com/volmer/policial/blob/8c193923b910f9209c7e9b716d2dd877ff196b07/lib/policial/patch.rb#L25-L35,1, +Ruby,create cookie,https://github.com/wycats/merb/blob/b34d3d4fb6da70c2e9e9e56ddccc73f8a3e55e39/merb-core/spec/public/controller/controllers/cookies.rb#L9-L15,2, +Ruby,how to check if a checkbox is checked,https://github.com/zhimin/rwebspec/blob/aafccee2ba66d17d591d04210067035feaf2f892/lib/rwebspec-common/assert.rb#L115-L126,2, +Ruby,create cookie,https://github.com/dwaite/cookiejar/blob/c02007c13c93f6a71ae71c2534248a728b2965dd/lib/cookiejar/jar.rb#L73-L76,3, +Ruby,parse command line argument,https://github.com/zerowidth/camper_van/blob/984351a3b472e936a451f1d1cd987ca27d981d23/lib/camper_van/ircd.rb#L74-L81,0, +Ruby,string similarity levenshtein,https://github.com/agarie/measurable/blob/8ff8efbab1a0892bdddf6e865dd8864956168a91/lib/measurable/levenshtein.rb#L27-L53,3, +Ruby,connect to sql,https://github.com/stripe/mosql/blob/aa76a2db505e6efad5fb0a57881a7818926cc234/lib/mosql/sql.rb#L13-L23,3, +Ruby,finding time elapsed using a timer,https://github.com/spox/actiontimer/blob/fcda2ea3cb23db54d7e11005d093970145fed54c/lib/actiontimer/action.rb#L32-L35,0, +Ruby,matrix multiply,https://github.com/Nephos/epimath100/blob/a415625e1d37eb2168ab7d382ccd7a868ca160ea/lib/epimath100/matrix.class.rb#L232-L269,2, +Ruby,how to read .csv file in an efficient way?,https://github.com/pjotrp/bioruby-table/blob/e7cc97bb598743e7d69e63f16f76a2ce0ed9006d/lib/bio-table/table.rb#L50-L61,2, +Ruby,converting uint8 array to image,https://github.com/jellymann/mittsu/blob/955bde855c727d775b80f2c88457cb4b58c8c8f8/lib/mittsu/renderers/opengl/plugins/sprite_plugin.rb#L28-L41,1, +Ruby,write csv,https://github.com/khiemns54/sp2db/blob/76c78df07ea19d6f1b5ff2e883ae206a0e94de27/lib/sp2db/base_table.rb#L105-L110,3, +Ruby,replace in file,https://github.com/gosu/ashton/blob/313673d8b1b3e1082c9d24e4a166396d1f471634/lib/ashton/shader.rb#L376-L384,1, +Ruby,how to read the contents of a .gz compressed file?,https://github.com/lostisland/faraday_middleware/blob/09b04ab68288205cc5579aaaf4138012f95268dd/lib/faraday_middleware/gzip.rb#L57-L65,2, +Ruby,converting uint8 array to image,https://github.com/wvanbergen/chunky_png/blob/691f8cb0fbe1816474bf8af8dbea4fb53debb816/lib/chunky_png/color.rb#L165-L176,0, +Ruby,initializing array,https://github.com/conanite/aduki/blob/2e17522b9536fe0a12d2dd97ae601cabb2ee293e/lib/aduki.rb#L167-L176,0, diff --git a/src/dataextraction/dedup_split.py b/src/dataextraction/dedup_split.py index 2602060a..403a7b9a 100644 --- a/src/dataextraction/dedup_split.py +++ b/src/dataextraction/dedup_split.py @@ -6,7 +6,7 @@ dedup_split.py [options] INPUT_FILENAME OUTPUT_FOLDER Arguments: - INPUT_FOLDER directory w/ compressed jsonl files that have a .jsonl.gz a file extenstion + INPUT_FOLDER directory w/ compressed jsonl files that have a .jsonl.gz a file extension OUTPUT_FOLDER directory where you want to save data to. Options: diff --git a/src/predict.py b/src/predict.py index ed1e7dcc..08690f46 100755 --- a/src/predict.py +++ b/src/predict.py @@ -123,7 +123,7 @@ def query_model(query, model, indices, language, topk=100): for index, vector in tqdm(enumerate(code_representations)): if vector is not None: indices.add_item(index, vector) - indices.build(10) + indices.build(200) for query in queries: for idx, _ in zip(*query_model(query, model, indices, language)): diff --git a/src/train.py b/src/train.py index 723c6a46..1bbbe28b 100755 --- a/src/train.py +++ b/src/train.py @@ -7,7 +7,7 @@ *_DATA_PATH arguments may either accept (1) directory filled with .jsonl.gz files that we use as data, or a (2) plain text file containing a list of such directories (used for multi-language training). -In the case that you supply a (2) plain text file, all directory names must be seperated by a newline. +In the case that you supply a (2) plain text file, all directory names must be separated by a newline. For example, if you want to read from multiple directories you might have a plain text file called data_dirs_train.txt with the below contents: diff --git a/src/utils/bpevocabulary.py b/src/utils/bpevocabulary.py index fb0210ea..6569db02 100644 --- a/src/utils/bpevocabulary.py +++ b/src/utils/bpevocabulary.py @@ -60,13 +60,17 @@ def byte_pair_counts(self, words: Iterable[str]) -> Iterable[typing.Counter]: """ for token, count in self.count_tokens(words).items(): bp_counts = Counter() # type: Counter - for ngram in token.split(' '): + sub_tokens = token.split(' ') + joined_tokens = ''.join(sub_tokens) + token_offsets = [0] + length = 0 + for ngram in sub_tokens: bp_counts[ngram] += count - for ngram_size in range(self.ngram_min, min([self.ngram_max, len(token)]) + 1): - ngrams = [''.join(ngram) for ngram in toolz.sliding_window(ngram_size, token.split(' '))] - - for ngram in ngrams: - bp_counts[''.join(ngram)] += count + length += len(ngram) + token_offsets += [length] + for ngram_size in range(self.ngram_min, min(self.ngram_max, len(sub_tokens)) + 1): + for i in range(len(sub_tokens) - ngram_size + 1): + bp_counts[joined_tokens[token_offsets[i]:token_offsets[i+ngram_size]]] += count yield bp_counts @@ -89,9 +93,7 @@ def learn_bpe_vocab(self, words: Iterable[str]) -> Dict[str, int]: for token in {self.SOW, self.EOW}: vocab[token] = int(2**63) for idx, byte_pair_count in enumerate(self.byte_pair_counts(words)): - for byte_pair, count in byte_pair_count.items(): - vocab[byte_pair] += count - + vocab.update(byte_pair_count) if (idx + 1) % 10000 == 0: self.trim_vocab(10 * self.bpe_vocab_size, vocab)