dogukanteber
dogukanteber
At the bottom of [this link](http://blog.pinaxproject.com/2016/02/26/recap-february-pinax-hangout/) the YouTube video for February Pinax Hangout is not available. If the video is removed, the contribute section of the README file should be...
I have added the code snippet that overloads the input operator.
find, find_if and find_if_not functions have been added with an explanation.
I wrote a proposal for [auth-gateway](https://cortexmetrics.io/docs/roadmap/#auth-gateway) project. If there is anything that needs to be improved or clarified, please let me know. Fixes #5106
**What this PR does**: Provides documentation for `runtime_config` **Which issue(s) this PR fixes**: Fixes #5153 **Checklist** - [x] Tests updated - [x] Documentation added - [ ] `CHANGELOG.md` updated -...
The current implementations only work for integers. Templates can be used to support data structures with different data types.
The current linked list data structure implementation has less functionality. Core parts of the data structure are missing ie. inserting a specific position. The overall functionality of the data structure...
Using "using namespace std" is a bad practice in writing libraries. std:: could be added to the necessary parts of the code.
I have written another script to resolve #1. The script creates another JSON file with optional names both for cities.json and cities_en.json.
`Layer` class has the following virtual methods: ```cpp virtual double getFrzThermCond()=0; // get frozen layer thermal conductivity virtual double getUnfThermCond()=0; // get unfrozen layer thermal conductivity virtual double getFrzVolHeatCapa()=0;// get...