If you are having problems with DOM manipulation, simply add all your DOM manipulation scripts as well as the TeddyTags declaration script with the defer
attribute.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { startService } from "esbuild"; | |
import { watch } from "chokidar"; | |
const noop = () => {}; | |
/** | |
* Function to update lines when something happens | |
* @param input The text you want to print | |
* @param isBuiltInput Whether you are printing `Built in x ms` or not | |
*/ |
This method works for me. Use-cases for MySQL for me are:
- Connecting to it via Python
- Normal CRUD operations
I AM NO MYSQL EXPERT, BUT I WOULD RECOMMEND TO DO THIS ONLY ON YOUR LOCAL SYSTEM. DON'T DO THIS ON A SERVER. I'D NOT BE RESPONSIBLE FOR THE MESS YOU'VE CREATED.
- Install it
sudo apt install mysql-server
sudo service mysql start
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Copyright 2022 Pranav Karawale | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
I hereby claim:
- I am retronav on github.
- I am retronav (https://keybase.io/retronav) on keybase.
- I have a public key ASCeZoxsx5srKD_iFvZLHaLt6fKyaMIHEmM6v9iwj-DkKwo
To claim this, I am signing this object:
This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://docs.keyoxide.org/advanced/openpgp-proofs/
[Verifying my OpenPGP key: openpgp4fpr:5d13b99c9f2ee964fe86e3d0c1f1600fc72e1cb5]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ config, pkgs, lib, ... }: | |
let | |
# bash script to let dbus know about important env variables and | |
# propogate them to relevent services run at the end of sway config | |
# see | |
# https://github.com/emersion/xdg-desktop-portal-wlr/wiki/"It-doesn't-work"-Troubleshooting-Checklist | |
# note: this is pretty much the same as /etc/sway/config.d/nixos.conf but also restarts | |
# some user services to make sure they have the correct environment variables | |
dbus-sway-environment = pkgs.writeTextFile { |