Benoit Rospars

Results 16 comments of Benoit Rospars

If you are using `mkdocs-material` I've fork and made my [own plugin](https://github.com/brospars/mkdocs-page-pdf) without using `weasyprint` but `pyppeteer`. I have got better results and more control over the exported files. However...

Yes I did, with PHP (and node-webkit but I don't think it's what you're loking for). Here's how : ##### client side : ``` javascript fileReader.readAsDataURL(file, $scope) .then(function(result) { $http({...

As a workaround I use the `Filesystem` API when the http request fails : ```ts this.http.get(webURI).subscribe((data) => { this.data = data; }, (error) => { // Backup support for iOS...

Hello, I'm deploying Jupyterhub on k8s for a machine learning course. We expect 10 000 users in total and about 200 daily users. We used to have a monolithic setup...

Any update on this ? I have the same issue (Ubuntu 18.04) ionic-cli compiles when it sees the change but my device is not updated (even if I restart the...

@dwieeb It adds the server url ```json { "appId": "io.ionic.blabla", "appName": "blabla-app", "bundledWebRuntime": false, "npmClient": "npm", "webDir": "www", "server": { "url": "http://localhost:8100" } } ``` **Edit :** I've just noticed...

@alext0101 Just adding my address worked, thank you ! Using `` wasn't necessary since I'm targeting API level 27 Maybe, this should be added in the documentation

We could update these pages : - https://ionicframework.com/docs/building/android - https://ionicframework.com/docs/cli/commands/capacitor-run The first one gives an example of live reload with cordova but not with capacitor and say it doesn't work...

Thank you so much @Spice-King Docs are unclear because coming from Vue 2 I had `v-for="(chapter, index) in chapters"` so I used `#item="{chapter, chapterId}"` and got no errors but empty...

Yes it's related to the fix of the unwanted left-hand side panel scrolling... I removed smooth scrolling to fix unwanted scrolling outside of course content. That's what happen when you...