Brandhor
Brandhor
well if you look at the first video the grenade is underneath the cube but it doesn't get destroyed, it can only be destroyed if the grenade is very close...
> Warnings disappeared on the previous web hook. Has something changed? No official announcements from MS yet. > > Disappeared for these users too: https://devblogs.microsoft.com/microsoft365dev/retirement-of-office-365-connectors-within-microsoft-teams/comment-page-23/#comments > > Official Feedback portal...
maybe not the most elegant solution but this worked for me using the [PyKCS11 library](https://github.com/LudovicRousseau/PyKCS11) ```python import PyKCS11 from lxml import etree from cryptography import x509 from cryptography.hazmat.backends import default_backend...
signxml expects key to be bytes or a [RSAPrivateKey](https://cryptography.io/en/latest/hazmat/primitives/asymmetric/rsa/#cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKey) instance, in case of bytes it will transform it to a RSAPrivateKey. then in the [_serialize_key_value](https://github.com/XML-Security/signxml/blob/develop/signxml/signer.py#L432) function it calls the public_key()...
it only works if you press enter https://github.com/flatpickr/flatpickr/blob/7012a3b025c6aea05e955004082d160ea7f67535/src/index.ts#L1459
for the umd ```html ``` and for the esm ```html import { createApp, ref } from 'https://unpkg.com/vue@3/dist/vue.esm-browser.js' import { createBootstrap, BButton } from 'https://cdn.jsdelivr.net/npm/[email protected]/+esm' let app = createApp({ data() {...
I'm not familiar with vite but I did take a quick look and since there are multiple entries vite can't build a umd file and it will only build es...
I kinda made the umd build work in an hacky way by creating a library.ts inside packages/bootstrap-vue-next/src/ with ```typescript export * from './index'; export * from './resolvers/index.ts'; export * from...
[example with the umd build](https://stackblitz.com/edit/stackblitz-starters-whsaz9hy?file=index.html) [example with the esm build](https://stackblitz.com/edit/stackblitz-starters-ve2c72gc?file=index.html)