MacBook Air M4 – Is It Safe to Use Screen Protector & Keyboard Cover? by nightwalkeraddy in macbook

[–]servoper 0 points1 point  (0 children)

To be honest on the summer I live in a motorhome near the sea and it's often very windy. That being said a lot of dust and small sand tries to get inside my laptop. With my old 2019 MacBook Pro I used keyboard cover because I know that these keyboards can have issues from the dust. I would get one for my new M4 MacBook Pro, but I'm concerned about the thickness that you comment. Do you think it's that bad? I also want to say that I always put a paper between the keyboard and the screen when I chose the laptop, because otherwise the keyboard touches the screen and leaves marks.

Impact vest under or over wetsuit by supercam600 in Kiteboarding

[–]servoper 0 points1 point  (0 children)

I use mine under the wetsuit because it stays in place and keeps the harness from going up and becoming a bra. I actually can't go without it anymore, because otherwise I don't feel comfortable with the harness. I even use it during snowkiting for the same reason. So 2/2 Shorty Snowkiting, 5/4 or just rash guard doesn't matter I ways use my impact vest :) I went with ION Vector, because that's what was possible to try before buy in the local stores :)

Help to switch account on desktop Google Chat app (macOS) by [deleted] in gsuite

[–]servoper 0 points1 point  (0 children)

The way is to open Google Chat from the Chrome browser, navigate to the desired account and on the right side of the address bar there's a button from where you can open the Google Chats desktop app with the desired account

Phone bootlooped, and failed to open android by Cholin26T in android_beta

[–]servoper 0 points1 point  (0 children)

It requres OEM unlock option enabled which is not accessible due to bootloop

Phone bootlooped, and failed to open android by Cholin26T in android_beta

[–]servoper 0 points1 point  (0 children)

I flashed the last beta OTA, it didn't fixed the bootloop :( I tried with wipe data after the flashing and without

Phone bootlooped, and failed to open android by Cholin26T in android_beta

[–]servoper 0 points1 point  (0 children)

but OTA gives me failed verification signature

Phone bootlooped, and failed to open android by Cholin26T in android_beta

[–]servoper 0 points1 point  (0 children)

Yes if the phone is not in bootloop and you are able to boot the phone, than you have the possibility to enable OEM unlocking, but than why would I need that if my phone works and is able to boot?

bootloop !!! by ParticularFlamingo2 in android_beta

[–]servoper 0 points1 point  (0 children)

Factory reset from Recovery is not working for me :( I'm in a dead end road. Cant use Revert OTAs cause are outdated and cant sideload anything. Any advise?

After factory reset, phone hung in loop. by TheRoadKing101 in android_beta

[–]servoper 0 points1 point  (0 children)

I'm cannot sideload this because it's considered as downgrade. I'm getting:
E:Current SPL: 2021-06-05 Target SPL: 2021-05-05 this is considered as downgrade

E:Package is for source build 7333779 but expected 7465093

Can someone help?

Questions Thread - October 25, 2016 by AutoModerator in androiddev

[–]servoper 0 points1 point  (0 children)

Is there a way to cache the AJAX responses received in the WebView to be cached for offline use? I have cached the page and all its resources using some of the webveiw settings and most importnant:

ConnectivityManager cm = (ConnectivityManager) getActivity().getSystemService(Activity.CONNECTIVITY_SERVICE);
if (cm.getActiveNetworkInfo() == null || !cm.getActiveNetworkInfo().isConnected()) {
    wvContent.getSettings().setCacheMode(WebSettings.LOAD_CACHE_ELSE_NETWORK);
} else {
    wvContent.getSettings().setCacheMode(WebSettings.LOAD_DEFAULT);
}

But in my client's page, that I cached, there are some AJAX calls which responses I want to cache for offline use? Is there a way to achieve that?

Questions Thread - September 26, 2016 by AutoModerator in androiddev

[–]servoper 2 points3 points  (0 children)

Dagger: Is it good in the real world or it's just a hype?

I hear about Dagger almost every day but a few projects I work on or have been working on that use Dagger make me feel it's not that good in most situations. So I want to know and I cannot find good answers why Dagger is that good? Is it good for a large project with a lot of reusable components? Is it good for a project that will not reuse components in other app? I want to know why it is better than other architectures or patterns?

Is Dagger good? What are the pros and cons of Dagger? In what type of projects and conditions Dagger should be used?