Entering lunarvim changes the default cursor type of terminal.
Add the following lines to your config.lua
lvim.autocommands = {
{
"VimLeave",| interface ColorSelectionOptions { | |
| signal?: AbortSignal | |
| } | |
| interface ColorSelectionResult { | |
| sRGBHex: string | |
| } | |
| interface EyeDropper { | |
| open: (options?: ColorSelectionOptions) => Promise<ColorSelectionResult> |
There's several existing strategies for deploying and managing development work and release. They each have their own opinions, but roughly cover a few major situations:
| name: Security audit | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| push: | |
| paths: | |
| - '**/Cargo.toml' | |
| - '**/Cargo.lock' | |
| jobs: | |
| security_audit: |
Данный FAQ был специально создан для телеграм сообщества https://t.me/WebAssembly_ru.
Он базируется на статье от Andre Weissflog, но так же содержит множество моих дополнений и мыслей, которые могут быть уже не слишком актуальны на момент прочтения. Прошу это учитывать.
UPDATED 22.11.2022
It's been two years since the last update, so here's the updated working script as per the comments below.
Thanks to BryanHaley for this.
setInterval(function () {
video = document.getElementsByTagName('ytd-playlist-video-renderer')[0];
video.querySelector('#primary button[aria-label="Action menu"]').click();| const model = %yourSequelizeModel% | |
| for (let assoc of Object.keys(model.associations)) { | |
| for (let accessor of Object.keys(model.associations[assoc].accessors)) { | |
| console.log(model.name + '.' + model.associations[assoc].accessors[accessor]+'()'); | |
| } | |
| } |
| // https://twitter.com/MylesBorins/status/929414418680643585?s=09 | |
| const context = new window.AudioContext(); | |
| for (let i = 0; i < 10; i++) { | |
| let osc = context.createOscillator(); | |
| osc.type = 'square'; | |
| osc.frequency.value = 40 + i * 0.1111; | |
| osc.connect(context.destination); | |
| osc.start(); | |
| } | |
| // second part |