[-] alphafalcon@feddit.de 2 points 5 months ago

Aside from budget and time overruns it looks like they overshot the target of "futuristic" and landed in the middle of dystopian...

[-] alphafalcon@feddit.de 4 points 7 months ago

There should be an external hard drive full of portable game installs in some drawer that fits the time period.

Should easily kill a week.

[-] alphafalcon@feddit.de 3 points 7 months ago* (last edited 7 months ago)

Currently:

  • VR
  • Uncategorized

Soon to be added:

  • Linux (tested/works on)
[-] alphafalcon@feddit.de 2 points 8 months ago

I'm with you on LLMs being over hyped although that's already dying down a bit. But regarding your claim that LLMs cannot "understand context", I've recently read an article that shows that LLMs can have an internal world model:

https://thegradient.pub/othello/

Depending on your definition of "understanding" that seems to be an indicator of being more than a pure "stochastic parrot"

[-] alphafalcon@feddit.de 2 points 8 months ago

Zur besseren Findbarkeit: Es heißt "Lateral" with Tom Scott, von lateral thinking - Quer- oder um die Ecke denken, aber ohne die Konnotation, die Querdenken seit Corona hat.

[-] alphafalcon@feddit.de 3 points 9 months ago

Wow, that sounds like a decent start for an architecture.

I'm tempted to spin up a few Jellyfin instances to see how it might work...

[-] alphafalcon@feddit.de 2 points 9 months ago

Teenagers and a dog sound like Scooby Doo. No idea how specific the rest is.

[-] alphafalcon@feddit.de 2 points 10 months ago

To a certain degree, yes. If someone at Google decides to wage all-out war against ad blockers they have a good chance. But if that costs more money than it generates, odds are that someone will stop it. Google / Alphabet is publicly traded after all and that means profit above all else.

[-] alphafalcon@feddit.de 4 points 1 year ago

No, No, they don't understand everything and nothing!

[-] alphafalcon@feddit.de 2 points 1 year ago

I built a custom app to do it since I couldn't manage to fire the relevant intents from an adb shell without root.

I lifted the code from AAAD

Specifically the InstallAPK method in MainActivity.java

Intent intent;

            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
                intent = new Intent(Intent.ACTION_INSTALL_PACKAGE);
                intent.setData(getUri(file));
                intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION | Intent.FLAG_ACTIVITY_NEW_TASK);
            } else {
                intent = new Intent(Intent.ACTION_VIEW);
                intent.setDataAndTypeAndNormalize(Uri.fromFile(file), "application/vnd.android.package-archive");
                intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            }

            intent.putExtra(Intent.EXTRA_NOT_UNKNOWN_SOURCE, true);
            intent.putExtra(Intent.EXTRA_INSTALLER_PACKAGE_NAME, "com.android.vending");
            getApplicationContext().startActivity(intent);
        } 

Basically you construct an Intent ACTION_INSTALL_PACKAGE with data pointing to the APK file and the extras EXTRA_NOT_UNKNOWN_SOURCE=true and EXTRA_INSTALLER_PACKAGE_NAME="com.android.vending" which tells the installer that this APK is not sideloaded and it's the play store asking to install it.

You might still need to enable unknown sources in Android Auto developer settings (separate from phone developer settings).

If I remember, I'll try to pull the code for my app from my PC and post it.

[-] alphafalcon@feddit.de 3 points 1 year ago

IT changes usually affect management as well, while "cost saving" in production doesn't.

view more: ‹ prev next ›

alphafalcon

joined 1 year ago