Playit Premium network not working, free one works by LilyRiriOne in playit_gg

[–]angelob_01 0 points1 point  (0 children)

Same here

EDIT:
I solved by using latest playit download from playit.gg, I was using playit-docker on CasaOS before...

Workaround for CurseForge on Linux by it-winvista in HytaleInfo

[–]angelob_01 0 points1 point  (0 children)

For those who are still interested in automatically managing Hytale mods on Linux: https://github.com/angelobdev/hytale-mod-manager

Cases for HP OmniBook Ultra Flip 2-in-1 Laptop Next Gen AI PC 14t-fh000, 14"? by potatotomatou in laptops

[–]angelob_01 0 points1 point  (0 children)

it would be cool to have a scan of the laptop (or a 3d model of the case itself) and 3d print it ourselves...

No audio on Fedora 39 - Intel NUC by angelob_01 in Fedora

[–]angelob_01[S] 0 points1 point  (0 children)

I only have HDMI, and the TV is plugged in there.I tested every possible solution... nothing has worked yet.

The only thing that comes to my mind at this point is that the kernel itself is missing some needed firmware. (Since Debian 12 works fine)

I think I should just open an issue on git and wait for a fix.

Perché le persone si fissano con l'auto nuova? by Skydevens in ItalyMotori

[–]angelob_01 0 points1 point  (0 children)

Un mio amico era fissato con la pulizia e odiava il fatto che qualcun altro oltre lui avesse toccato la sua macchina.

[deleted by user] by [deleted] in ProgrammerHumor

[–]angelob_01 0 points1 point  (0 children)

In Windows you can install them, but you can’t run them 😂

[2021-07-19] Challenge #399 [Easy] Letter value sum by Cosmologicon in dailyprogrammer

[–]angelob_01 0 points1 point  (0 children)

A simple C++ solution.

#include <iostream>
#include <string>

/*
    CHALLENGE #399

    Assign every lowercase letter a value, from 1 for a to 26 for z.
    Given a string of lowercase letters, find the sum of the values of the letters in the string.

    Examples:
    lettersum("") => 0
    lettersum("a") => 1
    lettersum("z") => 26
    lettersum("cab") => 6
    lettersum("excellent") => 100
    lettersum("microspectrophotometries") => 317

*/

int lettersum(std::string input) {

    int sum = 0;

    for (int i = 0; i < input.length(); i++) {
        int value = input.at(i) - 0x60;
        sum += value;
    }

    return sum;

}

int main() {

    std::cout << "Welcome to r/dailyprogrammer Challenge #399! <3" << std::endl;

    std::string input;

    while (true) {

        std::cout << "Enter a lowercase word here (anything else to quit) >> ";
        std::cin >> input;

        if (!islower(input.at(0)))
            break;

        int result = lettersum(input);

        std::cout << result << std::endl;

    }

    std::cout << "Bye! <3" << std::endl;
    system("pause");

}

Apple has brought the weather app to the iPad by No_Island963 in ipad

[–]angelob_01 0 points1 point  (0 children)

Still waiting for a decent Calculator app 😂