cavivie
cavivie
Feature: We often need to record the text content in the capture when capturing a screenshot containing some text, so we need to provide an OCR function to recognize the...
Bug: https://github.com/flameshot-org/flameshot/blob/001726a565049ebfeb237a3a39b77104899b970e/src/core/flameshot.cpp#L395 Analyze: `tasks` will first become a random value (which may be the same as the original value), and then assign the new value to itself, so it may...
This PR contains a simple implementation of building targets on non-Windows platform. it supports manually set environment variables to find Windows msvc tools. By setting `VCINSTALLDIR` environment variable, we can...
`cross-rs`: At present, [cross-rs](https://github.com/cross-rs/cross) uses the Docker Ubuntu environment when compiling, and will download the wine and msvc tool chain in Ubuntu container to compile by mapping the source code...
``` root@bf874e2bf9b5:/build/jemalloc# osxcross-env export PATH=/opt/osxcross/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin root@bf874e2bf9b5:/build/jemalloc# osxcross-conf export OSXCROSS_VERSION=1.5 export OSXCROSS_OSX_VERSION_MIN=10.6 export OSXCROSS_TARGET=darwin20.4 export OSXCROSS_BASE_DIR=/tmp/tmp.41JlJYVGeP/osxcross/build/.. export OSXCROSS_SDK=/opt/osxcross/bin/../SDK/MacOSX11.3.sdk export OSXCROSS_SDK_DIR=/opt/osxcross/bin/../SDK/MacOSX11.3.sdk/.. export OSXCROSS_SDK_VERSION=11.3 export OSXCROSS_TARBALL_DIR=/tmp/tmp.41JlJYVGeP/osxcross/build/../tarballs export OSXCROSS_PATCH_DIR=/tmp/tmp.41JlJYVGeP/osxcross/build/../patches export OSXCROSS_TARGET_DIR=/opt/osxcross/bin/.. export OSXCROSS_DIR_SDK_TOOLS=/opt/osxcross/bin/../SDK/MacOSX11.3.sdk/../tools export...
Considering the code below: ```python import torch import torch.optim as optim from maskedtensor import masked_tensor x = torch.Tensor([[ 0., 32., 23.], [18., 0., torch.nan], [54., 67., 0.]]) y = (x/2).nanmean(dim=0)...
## Type of change ## Checklist: - [x] Formatted with `cargo fmt` - [x] Make an entry to `CHANGELOG.md` if it's relevant to the users of the library. If it's...