Tommi Komulainen
Tommi Komulainen
Using the following vimrc as `vim -u vimrc` ``` vim set nocompatible filetype on filetype off set rtp+=~/.vim/bundle/vundle/ call vundle#rc() Bundle 'gmarik/vundle' Bundle 'dag/vim2hs' Bundle 'nbouscal/vim-stylish-haskell' filetype plugin indent on...
Given the following code ```rust fn main() { let arg = std::env::args().nth(1).unwrap(); if arg.contains(" ") { loop{} } } ``` profiling it with `cargo instruments "space here"` completes in few...
In http://bottlepy.org/docs/dev/tutorial.html#generating-content (Dictionaries) there's a broken reference to a tutorial that does not seem to exist. > See the _tutorial-output-filter_ to learn more. I was hoping to find how to...
When ValidationError faults are generated the error message is generally of the form "The value {value} could not be validated" - which is not very helpful when received for couple...
From README: > In addition, r2pipe scripts can be used to write plugins for radare2 or extend current functionalities: > > * Assembler/Disassembler plugin for RAsm > * RIO plugin...
There should be a way to make certificate check required and pass a newer/custom certificate bundle as suggested in https://urllib3.readthedocs.org/en/latest/security.html . Unfortunately pyes doesn't seem to provide any way to...
When you install docsets that have underscores in the name the end result is rather unpredictable, e.g. - `Bootstrap_2` => `Bootstrap.docset` - `Bootstrap_3` => `Bootstrap 3.docset` - `Common_Lisp` => `Common...
Modifying the test suite slightly to add assertions the returned rgb values are in [0,1] range as documented makes the tests fail for several cases, '#ffdd00' for example. Admittedly the...
#### Description :octocat: When editing javascript files there are multiple toplevel menus dedicated to javascript. Not only are they making items harder to find but together they are consuming so...
I'm trying to access a server that has IP access restrictions and I need to make use of an SSH tunnel to get the request originating from allowed address. To...