Martin Alix

Results 18 comments of Martin Alix

This bug seems to be fixed in Angular 1.3 - https://github.com/angular/angular.js/pull/7499

``` auth.role('admin', (req, done) => { done(null, getUser(req).type === 'admin'); }); ... auth.action('administer', ['admin', 'editorz']); ... app.get( '/somePath', auth.can('administer'), (req, res, next) => {}) ```

Issue descriptions are probably not the proper place for subjective comments on software. :) But, as you may know, « DWG is the native format for *several* CAD packages including...

Did you check https://www.opendesign.com/guestfiles/oda_file_converter?

At worst, you can run DWG TrueView in an emulation of Windows... https://developer.microsoft.com/en-us/microsoft-edge/tools/vms https://knowledge.autodesk.com/support/dwg-trueview/learn-explore/caas/sfdcarticles/sfdcarticles/System-requirements-for-Autodesk-DWG-TrueView-2018.html > Necessity is the mother of invention

If it helps someone, I have a BaseModel class that has the following function, which works for my special test case: ``` async aggregate(aggregations) { const [{ $sort }, ...rest]...

Will this support extracting ArgType select from the following? ``` LevelPicker.propTypes = { /** * Selected level */ level: PropTypes.oneOf(['None', 'Read', 'ReadWrite', 'Manage', 'Owner']), };```

How can I help? 👀

https://reactjs.org/docs/react-api.html#reactsuspense

I put this at the end of `.zshrc`: ```bash autoload -U add-zsh-hook load-nvmrc() { local node_version="$(nvm version)" local nvmrc_path="$(nvm_find_nvmrc)" if [ -n "$nvmrc_path" ]; then local nvmrc_node_version=$(nvm version "$(cat "${nvmrc_path}")")...