AnnikaCodes
AnnikaCodes
```ld: warning: ignoring file ../opcodes/.libs/libopcodes.a, building for macOS-x86_64 but attempting to link with file built for macOS-x86_64 ld: warning: ignoring file /Users/annika/Retro68-build/binutils-build-ppc/zlib/libz.a, building for macOS-x86_64 but attempting to link with...
Parameterized statements are a good way to guard against SQL injection attacks. Many [projects](https://github.com/smogon/Porygon-Z) use them, and the fact that `pg-mem` doesn't support them makes these projects less likely to...
While trying to throw an error with the following code snippet ```rust let line = match line { Ok(s) => s, Err(e) => { let err_string = context.string(format!( "Error converting...
There have been a number of bugs related to new versions of `@swc/core`, a dependency used in the TypeScript to JavaScript transpilation process (see #8823 and https://github.com/smogon/pokemon-showdown/issues/8824#issuecomment-1172946593). Commit 1c756b111747fceee58fe0572bc3e229015e3588 fixed...
The Pokémon Showdown teambuilder has a functionality for uploading teams to https://pokepast.es automatically. Currently, we use a ``, but I would like to use jQuery instead (which fixes a bug...
Electron makes the desktop client smaller and reduces the number of workarounds needed to account for differences between the desktop and browser clients. Packaging is also simplified, with the `electron-forge`...
Currently, we use a HTML `` to upload teams to PokePaste, which is cumbersome—it opens the team URL in a new tab, which could be inconvenient for the user, and...
Zig's HTTP client breaks down when redirected to a URL with escaped query parameters. It seems to be doubly escaping them; this PR simply exempts the `%` character from being...