JaddedFauceet

@JaddedFauceet@lemmy.world
0 Post – 20 Comments
Joined 1 years ago

joke aside, story point can be quite arbitrary

9 more...

google for the things you want to host and append "termux" to it, e.g.:

  • nextcloud on termux
  • piped on termux

not funny anymore. Banks and regulatory are doing this in some countries. Their app just refuses to open if users install any app outside of Google Play Stores.

Take a look at this https://mothership.sg/2023/08/ocbc-security-feature-delete-third-party-apps/

last breeding with a neanderthal

So.. am I secured if I buy more than 1?

By banishing the bad part of the language with linter.

For instance, standard eslint preset has rules that enforce usage of ===, https://eslint.org/docs/latest/rules/eqeqeq

These rules often come with project starter template

From my understanding, the fdroid process ensures the build is automated base on the source code provided. This prevents developer from sneaking in additional code in the build.

(412 - 0)/412 * 100% = 100%

saved 100%

1 more...

This is important, please discuss this

if website has a choice, then they will often choose an option that benefits them the most.

Good news is third party is being phased out now https://developer.mozilla.org/en-US/blog/goodbye-third-party-cookies/

npm ruin dev

npm ruin lint

npm ruin build

I installed it as a web app earlier. I don't recall conflict with back gesture. What's the issue with back gesture?

1 more...

Button

Do you expose your DNS server to the public? If not how do you use it outside of the network? Like on mobile

It's the thumbnail provided by the article, found inside the html

meta property="og:image" content="https://nypost.com/wp-content/uploads/sites/2/2023/09/meta-glasses-comp.jpg?quality=75&strip=all&w=1024"

This example https://trekhleb.dev/blog/2021/gyro-web/ demonstrates how a 3D view can be orientated by tilting your phone. It is implemented using web technology.

It uses the device gyroscope to detect rotation and tilting. This is frequently used in map / street view. No faceID or depth camera is required.

As a web app, such behaviour will also need to be programmed to work on a browser first. Packaging it for Play Store should not grant that behaviour automatically.

(2) Image overlay For Voyager, back button for image overlay works in browser.

When opening an image viewer, the web app triggers a browser history change like this:

  1. Browsing on feed - https://vger.app/posts/lemmy.world/all
  2. Opening an image viewer - https://vger.app/posts/lemmy.world/all#galleryOpen

^ notice the extra #galleryOpen

When back button is triggered, the web page will listen to a "back" event, and close the image viewer.

(3) Keyboard: Keyboard is a native UI. So triggering "back" will always close the keyboard

(1) Modal / bottom sheet

But... I couldn't figure out this one yet

Clicking on the "3 dots icon" in a post opens a bottom sheet interface.

Play Store version response to back button properly. But the web app version does not.

Huh? How?

4 more...

Looks confusing at first, but I found it nice for accessing a month array.

const months = ["Jan", "Feb", ...];

months[0] === "Jan";

const label = months[date.getMonth()];