Brian Andress

Results 14 comments of Brian Andress

I was having this problem too - I had to unplug the adapter and plug it back in to get internet. I googled a little and found this: https://askubuntu.com/questions/794904/usb-wifi-adapter-not-autoloading Which...

If you have `lodash` in your project, here is how I'm currently experimenting with `patch` functionality: ```typescript function patch (target: any, diff: any[]): any { target = cloneDeep(target); for (let...

Is it possible to meet the requirements of restyled AND prettier?

This ~~would~~ did help me bigtime as well - thanks! I realized that I needed to install the regular `apk` AND the bin `apk`.

Just ran into this issue, and I was only able to fixing by piecing together bits of information from this issue and others. First, I'm using webpack 5, so `file-loader`...

I ran into this issue today, and have a workaround that works in my project. Here is the `tsc-alias` command i'm running: ```bash tsc-alias --verbose --debug ``` Here is my...

HI @dougwilson - I DM'd you on LinkedIn to see if I could be of any help with this.

I am also running into this. My use case is that my build process (for typescript) runs `rm -rf ./dist`, which is the dir that nodemon is watching. I ended...

@remy to address your comment, under "normal" circumstances, you are correct in that watching a deleted folder will not work, for the reasons you mention. I think the sentiment in...