Martin Beaudet

Results 12 issues of Martin Beaudet

Hi, Is there a better way to get the host **node_module bin** folder than that ? Ex : ``` inherit npm npm-install do_install() { NPM_BIN_FOLDER=${S}/node_modules/.bin/ } ``` Using a hardcoded...

Hi, It's more a question than an issue but I would like to get some advise on how to **minify** public assets (_javascript, css, etc..._) in the **do_install** task of...

What do you think of : ``` #pragma once namespace plog { template class DebugOutputAppender : public IAppender { public: virtual void write(const Record& record) { #if defined(_WIN32) && defined(_MSC_VER)...

@fedeci How to make sure the schema of the body is exactly of this form. ```js { 'name': ... 'description': ... } ``` I mean if the body contains other...

i: question
i: needs triage

Hi, IS there a way to start a websocket in listen mode? As for noVNC It could be great that proxy support the listen mode. Pretend we already have a...

feature

``` #if defined(_WIN32) if ((sin.sin_addr.s_addr = inet_addr(lhost)) == -1) #else ret = inet_aton(lhost, &sin.sin_addr); if (ret == 0) #endif ``` ret is not declared, we should have ``` #if defined(_WIN32)...

winsock2.h should be include. I did not test with more recent version of Visual Studio but on 2008 struct tv is not recognized. ``` #if defined(_WIN32) #if BUILDING_DLL # define...

Hi, What is the logic behind this ``` int ftplib::Login(const char *user, const char *pass) { char tempbuf[64]; if (((strlen(user) + 7) > sizeof(tempbuf)) || ((strlen(pass) + 7) > sizeof(tempbuf)))...

Writing a `NaN` produce an error while opening the document. ![image](https://user-images.githubusercontent.com/7946730/36107672-d54fde56-0fe8-11e8-80e8-438034d61d5c.png) To reproduce ``` xlsxPopulate.fromBlankAsync() .then(workbook => { const sheet = workbook.activeSheet().name('test'); sheet.cell(1, 1) .style('numberFormat', '0.00') .value(NaN); return workbook.outputAsync().then(blob =>...

Hi, If we specified a `postinst` script, the user and group will not be created. ```json "node_deb": { "init": "systemd", "package_name": "foo", "dependencies": "npm", "entrypoints": { "daemon": "scripts/start-foo" }, "templates":...