erwin solihin

Results 22 comments of erwin solihin

you cannot rar/unrar on google drive, edit it on heroku then upload to gdrive.

to extract ``` unrar x file.rar ``` to compress ``` rar a output.rar directory ```

I haven't tried it, but it depends on the file size.

its random 2-7 bytes, and thanks for your suggestion.

I need this too, but temporary solution use `grid.on(ready)` function ```javascript myGrid.on('ready', () => { $('#myTable td:nth-child(1)').each((index, td) => { if (td.textContent > 0) td.parentElement.className = "myRowClass"; }) }) ```

you can do ```javascript myGrid.config.data.push(['a', 'b']); myGrid.forceRender(); ``` or ```javascript myGrid.updateConfig({ data: myGrid.config.data.push(['a', 'b']); }).forceRender(); ```

sorter code no need loop, it already sorted lowest to highest public function getBestCombinedFormat() { $combined = $this->getCombinedFormats(); $count = count($combined); return $count ? $combined[$count-1] : null; }

there are few unnecessary module in this repos, like `requests` its only shorthand for urllib and not builtin module and we can replace with function `get()` like ``` def get(url):...

the above above only has 2 language activated, Python and Julia. you can use R and Python 2.7 in `environment.yml` ``` channels: - conda-forge dependencies: - python=2.7 - pip -...