seemebreakthis

joined 1 year ago
MODERATOR OF
[–] [email protected] 1 points 1 year ago (1 children)

Worth a visit? I am heading to Edmonton for the first time in 10 years next month.

[–] [email protected] 1 points 1 year ago

Nice, except nothing in the link says anything about Xiaomi 14 nor is it in English

[–] [email protected] 34 points 1 year ago (6 children)

Great news if this can be developed into a universal covid vaccine with no side effects that everyone can take

[–] [email protected] 5 points 1 year ago (1 children)

I fully realize OP isn't trying to start a phone war, but there seems to be a few misconceptions in his original post, like hinting on something that do not exist in Android Auto when in fact AA has many of those features built in, that make me cringe a little. I just feel it would be nice if some of the factual info can be corrected...

[–] [email protected] 16 points 1 year ago (8 children)

I have to respectfully disagree with many of the points you mentioned, and I believe it really boils down to the different android phone models that can provide a very different user experience.

I have been using my Xiaomi Mi 11 for a maybe 18 months now, and going through some of your points but from this phone's perspective:

  1. iOS has smooth animations for everything, is quicker for searching and finding apps, and just plain looks better to me - the Miui interface is renowned / notorious for being a copycat of the iOS interface, so I actually see no big difference from the iOS interface. But Android being Android, it is highly customizable, and with my phone rooted, I actually have the iOS's own San Francisco system font installed (I hated Android's default roboto font), and have customized the main page to have two news update widgets just the way I wanted it. My background is an animated waterfall that to me looks stunning (created from my own video shot during a hiking trip). I know it is subjective, but honestly I see it the other way around. Android, with the right phone model and when setup right, can have butter smooth animations for everything, is just as quick if not quicker for searching and finding apps (I literally have the apps organized in their respective folders, never difficult to find), and it just plain looks better to me especially with the animated background of my own choice.

  2. some stutter in animations and slow app indexing through their search bar - ... yeah it probably has something to do with your old phone. No problem whatsoever over here. 120Mhz refresh rate. Butter smooth all day long.

  3. iMESSAGE AND FACETIME - can't comment here. Facetime especially can be a headache if everyone else is using an iPhone.

  4. Voice Assistant - haven't tried Siri for years. But I have been using Google Assistant both in Android Auto and (to a lesser extent) on the phone itself. No complaints there. I have a Google Nest Audio device too and thought it integrates well with my phone and my smart home (turning lights on/off, activating the home alarm system, interfacing with Home Assistant, etc)

  5. CarPlay is quite a bit ahead here as well - hmm this is where I am really quite confused. My wireless Android Auto works extremely well with my vehicle. It starts up as soon as I enter my car in like less than one second with a totally seamless process (as in I do not need to do anything at all). With the coolwalk version of AA (released for more than 6 months already I believe), it actually has everything you mentioned that are available on Carplay: No warning message, time IS near the driver, app bar IS on the right where I sit (we have steering wheels on the right side). My AA IS smooth and is already wireless without any need for any dongle. And since my phone is rooted, I can even tweak my AA to play videos which is nice when your car is parked and you are waiting for someone for instance. Here is a snapshot:

[–] [email protected] 20 points 1 year ago (8 children)

On my Firefox Android I have "installed" Lemmy (specifically lemm.ee) as a web app. When I quit this app everytime Firefox crashes. Anyone else have the same issue?

[–] [email protected] 0 points 1 year ago (1 children)

If such a big group can kill themselves together, I have a feeling they can communicate... Probably a group decision

[–] [email protected] 1 points 1 year ago

Mine is a Xiaomi phone, so probably not just pixel exclusive...

[–] [email protected] 3 points 1 year ago

The .html is so short. I will just post it here below.

And you also need two .js files to be in the same folder. Download panolens.min.js here - click on Documentation then the 2nd link under 'getting started'. Download three.min.js here - you need to pick version "105" and download that one.

Put your pictures in the same folder. Take a look at the code, and change the lines to reflect the picture filenames, and also the initial picture to load. (or improve the code to look for appropriate files in a specific folder then create the dropdown list accordingly...)

Here is the code:

<!DOCTYPE html>
<html>
<head>
  <title>Pictures Viewer</title>
  <script src="three.min.js"></script>
  <script src="panolens.min.js"></script>
  <style>
    #container {
      width: 90%;
      margin: 0 auto; /* Center the container div horizontally */
    }

    #panorama {
      width: 100%;
      height: calc(100vw * 9 / 16); /* Set the height based on a 16:9 aspect ratio */
      margin-bottom: 1em; /* Add a margin of one line between the picture frame and the dropdown */
    }

    #loading-message {
      display: none;
      margin-top: 1em; /* Add a margin between the loading message and the title */
      margin-bottom: 1em; /* Add a margin at the bottom */
      font-size: 2em; /* Set the font size to 2em */
      color: green; /* Set the font color to green */
      animation: blink 0.5s infinite; /* Add the blinking animation with a duration of 0.5 seconds */
    }

    @keyframes blink {
      0%, 100% {
        opacity: 1;
      }
      50% {
        opacity: 0;
      }
    }

  </style>
</head>
<body>
  <h1>Pictures Viewer</h1>
  
  <div id="container">
    <div id="loading-message">Image being rendered, please wait...</div>
    <div id="panorama"></div>

    <label for="picture-select">Select Picture:</label>
    <select id="picture-select">
      <option value="picture1.jpg">Picture 1</option>
      <option value="picture2.jpg">Picture 2</option>
      <option value="picture3.jpg">Picture 3</option>
      <option value="picture4.jpg">Picture 4</option>
      <option value="picture5.jpg">Picture 5</option>
      <option value="picture6.jpg">Picture 6</option>
    </select>
  </div>

  <script>
    const panoramaElement = document.getElementById('panorama');
    const viewer = new PANOLENS.Viewer({ container: panoramaElement });
    let panorama = new PANOLENS.ImagePanorama("picture1.jpg");
    
    viewer.add(panorama);

    const pictureSelect = document.getElementById('picture-select');
    const loadingMessage = document.getElementById('loading-message');

    const showLoadingMessage = function() {
      loadingMessage.style.display = 'block'; // Show the loading message
    };

    const hideLoadingMessage = function() {
      loadingMessage.style.display = 'none'; // Hide the loading message
    };

    panorama.addEventListener('progress', showLoadingMessage);
    panorama.addEventListener('enter-fade-start', hideLoadingMessage);

    pictureSelect.addEventListener('change', function() {
      const selectedPicture = pictureSelect.value;
      loadingMessage.style.display = 'block'; // Show the loading message
      viewer.remove(panorama); // Remove the existing panorama from the viewer
      panorama = new PANOLENS.ImagePanorama(selectedPicture);
      viewer.add(panorama); // Add the new panorama to the viewer
      viewer.setPanorama(panorama);
      panorama.addEventListener('enter-fade-start', function() {
        loadingMessage.style.display = 'none'; // Hide the loading message when the new panorama finishes rendering
      });
    });
  </script>
</body>
</html>
[–] [email protected] -1 points 1 year ago

Pubs are mostly closed during typhoon I believe

 

Typhoon 8 was hoisted for most of the day but HK is basically unscathed.

Next week though according to windy.com a strong typhoon will directly impact the city. By Wednesday it will be awfully close to HK.

... Another day off for some of us?

 

Android Auto (wireless only) works really well on iDrive 8.0

https://imgur.com/a/4bpH9TB

 

There are a plethora of ways if you search around, some obsolete, some still work, some require root, some don't.

For me (as someone who has just started using AA), I have been using Fermata Auto downloaded from github, installed as an LSposed module to bypass AA checks, and it works well playing videos including those from

  • Youtube
  • Jellyfin server that I am self-hosting
  • Local video files

I'd like to be able to cast KODI to my head unit screen. Is AAAD a possible way to do this? Or do I need a screen mirroring method?

 

The m3u list is accessible like this (example only) https://hello:[email protected]/tv.m3u

So it has a username and password of 'hello' and 'there'.

If I enter the URL in a browser, the m3u gets downloaded. But if I enter the same thing in Jellyfin Live TV Tuner Devices setup as a new M3U Tuner, it returns with an error: "There was an error saving the TV provider. Please ensure it is accessible and try again."

Any help to add it would be greatly appreciated.

 

The Jellyfin app on my Android phone runs normally when not connected to Android Auto.

But when AA takes over, and I run Jellyfin on AA's dashboard app list, it shows the screen below:

https://imgur.com/a/nIUdZdd

Doesn't seem like it is accepting any input. Is this an issue or have I missed a step?

Edit: problem solved. Or I should say there is no problem in the first place. Jellyfin AA simply only plays audio, and it doesn't support video playback period. My Jellyfin only has videos hence "no item" (no audio item).

 

Two dudes visiting HK for the first time. Long video but pretty interesting

 

I upgraded my Cubase to Cubase 12 almost a year ago. With it came a number of free goodies including Melodyne Essential.

Have never used Melodyne before, and since I've done the upgrade, I haven't actually done anything with vocals until recently.

So I decided to try Melodyne Essnetial out - My subjective feeling is that it sounds more natural than Cubase's own pitch correction tool. And it integrates quite well with Cubase itself. There are a couple of glaring drawbacks however:

  1. Once an audio clip gets taken over by melodyne, I find it impossible to use any of the Audio Process anymore (e.g. gain, normalize, etc). So I learned it the hard way to do these prior to starting melodyne on the clip. Or is there a way of working around this?

  2. This version of melodyne lacks the ability to do note flattening it seems.

So for those who also have melodyne essential, which do you prefer - cubase's own function, or melodyne?

 

As titled. I receive these reports from other servers like Google / Yahoo / Outlook.com, but I want to 'play nice' in the world of email exchange and do my part in generating these reports for other e-mail servers as necessary.

I doubt Synology Mail Server generates these reports by default. So is there any way to set up DMARC RUA/RUF report generation?

 

I host my own e-mail server, and for a long time I have been pulling my hair out on why the receiving end will still accept e-mails sent from my domain without any DKIM signature.

I have made sure that DKIM has been setup properly in my server, which means if an outgoing e-mail either fails the DKIM test, or doesn't contain any DKIM signature, then the e-mail must be fake. But currently while the receiving end knows to reject if DKIM=fail, it lets the e-mail pass if there is no DKIM signature.

Problem: I found as long as someone impersonates my e-mail account then send an e-mail that will pass the SPF test and doesn't contain any DKIM signature (real or fake), then it will still be considered legitimate by the recipient email server. This is even more problematic in my case as I have to rely on an e-mail relay provided by my ISP to send e-mails out (my ISP specifically blocks any outgoing port 25 connections, apparently to fight spam). This unfortunately means any other customers of the same ISP can potentially send e-mails on my behalf as long as they leave any DKIM signature out on purpose.

Solution: I just discovered the way DMARC works is by passing e-mail that passes EITHER SPF or DKIM check. The keyword is 'OR', and 'EITHER'. So to make sure the receiving end checks only for DKIM validity, turns out all I had to do was to make sure SPF never passes or fails. In other words, SPF always returning neutral would mean DKIM would now become the only factor. Since either one of the two must show 'pass', and now SPF will always return as 'neutral', then DKIM must pass in order for DMARC to pass. i.e. DKIM can no longer be 'neutral' (aka no signature) let alone fail.

The way to set SPF to always return neutral is to set the TXT record to be: v=spf1 ?all

Now as long as your DMARC is set properly, unauthorized e-mails as determined by the DKIM outcome of either "fail" or "none" (aka neutral, or no signature) will always be rejected. Simple as that. Problem solved.

Source: https://serverfault.com/questions/1014250/can-i-set-dmarc-to-tell-receiver-to-fail-if-no-dkim-signature-provided-in-email/1041210#1041210

 

Today marks the first anniversary of owning this car !

Pic 1

Pic 2

 

Went out for a jog with my new x3. Tried using the direction lock function by turning it on then set a keyframe at the start of the footage to the direction I want.

This is how it is supposed to work am I right? But I find myself having to set new keyframes along the way because it will 'lose' direction and start showing the side view, then I have to correct it by setting additional keyframes.

Maybe I move my camera too much during recording, and the editor gets confused because of this?

view more: ‹ prev next ›