Chris

Results 14 comments of Chris

From following @primo19 suggestions: 1. Install devtools manually: `npm i -D vue-devtools` 1. Edit the `index.dev.js` file to support the installed module: ``` # src/main/index.dev.ts /** * This file is...

@cdbrkfxrpt You're probably running a newer version of electron that doesn't support the `BrowserWindow` https://stackoverflow.com/q/61894248/6214730 You'll probably have to downgrade or figure out how to migrate your code.

You can delete the file that is saved manually. Underneath the hood this module is using `electron-store` that writes a json file to `app.getPath('userData');` https://github.com/vue-electron/vuex-electron/blob/master/src/persisted-state.js https://www.npmjs.com/package/electron-store/v/2.0.0 So in your main...

+1 Having same issue. Ubuntu 14.04 Apache 2.4.7 Updated .htaccess Installed rewrite with sudo a2enmod rewrite

Got it! Guess you have to make a configuration file for the Module/Modules(?). [Taken From Here](http://askubuntu.com/questions/411002/mod-rewrite-use-in-apache-2-4) This might just be for Ubuntu builds running Apache 2.4 > After enabled mod_rewrite...

An example of what kind of extension this feature would allow for: https://github.com/drunken-kungfu/pagekit-template-generator

@MalteScharenberg How do you imagine something like that working? Could you give an example of a situation where you would need to use the console as a "rescue tool" and...

I haven't worked with pagekit for over a year now. If you are wanting to implement this feature feel free to get into the pull request and add in a...

One of the biggest frustrations of Wordpress taxonomies for me was that they could not have multiple parents.

So I'm pretty new to python and especially testing in python, but after many questions posed to gpt I think I have a working solution / workaround. I have no...