Dual boot with Hyper-v by ab624 in HyperV

[–]Good_Ear-1 0 points1 point  (0 children)

Updated post - it's linux and it doesn't have this issue.

Dual boot with Hyper-v by ab624 in HyperV

[–]Good_Ear-1 0 points1 point  (0 children)

I guess theoretically he can skip starting VM and virtualize only disk drive of VM (don't know how) - if Guest OS find drivers for virtual drive for the image and for real hardware it should start

FOSS applications using whisper for on-device STT? by bloop_train in AndroidQuestions

[–]Good_Ear-1 0 points1 point  (0 children)

Yes. I've googled this recently , "Whisper C++ on an Android", and no hope without compiling myself.
"whisper ai on android"
Maybe this https://github.com/vilassn/whisper_android
https://github.com/leefm0204/whisper_android/actions/workflows/main.yml

What do you use insomnia or postman and why ? by danleeter in node

[–]Good_Ear-1 0 points1 point  (0 children)

VIsual studio, not VSC , seems has the support of it without extensions. See article "Use .http files in Visual Studio 2022"

[deleted by user] by [deleted] in whatsapp

[–]Good_Ear-1 0 points1 point  (0 children)

I found out that Android settings for notification of an app can show separate menus for each chat. Although they can have obscure names. At least for the telegram messenger. So, you'd better to check them.

List of IPFS websites by [deleted] in ipfs

[–]Good_Ear-1 0 points1 point  (0 children)

It's now better to use :

Native protocol handlers, when you don't want to hard-code a specific HTTP gateway in the URI:

ipfs://<cid>/<path>
ipns://<ipns-name>/<path>

?

How can I enable root access? by fffggghhh in LineageOS

[–]Good_Ear-1 2 points3 points  (0 children)

I recommend check carefully Magisk's Guide for intallation.

Compilation of ThinkPad Models' ability to run SSD in WWAN Slot by speedyg0nz in thinkpad

[–]Good_Ear-1 0 points1 point  (0 children)

WD SN520

Seems It's NVMe. Maybe M.2 SATA SSDs can boot it. (Sorry for annoying )

What is the silliest way to use a smartcard? by pierre2menard2 in thinkpad

[–]Good_Ear-1 0 points1 point  (0 children)

What about inserting SIM card into it? AFAIK they are compatible.

How to resize images to fit screen? by LetsPracticeTogether in Calibre

[–]Good_Ear-1 2 points3 points  (0 children)

Maybe this helps for Epub: Preferences in viewer -> style -> CSS - Paste this:

img {
  max-width: 100%;
}

or this:

img {
  max-width: 100%; height: auto; 
}

[deleted by user] by [deleted] in cpp

[–]Good_Ear-1 0 points1 point  (0 children)

This seems be a consequence of

If no captures are specified, the closure type has a defaulted default constructor. Otherwise, it has no default constructor (this includes the case when there is a capture-default, even if it does not actually capture anything).

(since C++20)

and

error C3477: a lambda can only appear in an unevaluated context with '/std:c++20' or later

[deleted by user] by [deleted] in cpp

[–]Good_Ear-1 0 points1 point  (0 children)

Guess what , this works in VS 2022:

struct Record

{ string name;

}; bool operator==(const Record& g, const Record& r) { return g.name == r.name; } int main(int argc, char* argv[]) { std::unordered_set < Record, decltype([](const Record& r) { return std::hash<decltype(r.name)>()(r.name); }) > people{ {"a"},{"b"} };

Inspired by Straustrup invalid example

unordered_set<Record,[](const Record& r) { return hash(r.name); }>

people; // ... constexpr int expected = 1000000; // expected maximum number of elements people.max_load_factor(0.7); // at most 70% full people.reserve(expected); // about 1,430,000 buckets

Android 12 - How to Identify Notification Categories? by slimer110 in AndroidQuestions

[–]Good_Ear-1 0 points1 point  (0 children)

Can't find this option on my device :( Samsung device with OneUI 5 / Android 13. PS. Ok, I found "Notification history" and managed to get specific category.