Synther

joined 10 months ago
[–] Synther@lemmy.zip 2 points 1 week ago

I didn’t fully see it as I thought it was standard Linux shit posting, turns out I’ve probably gotta open my eyes next time 😳

[–] Synther@lemmy.zip 3 points 1 week ago (1 children)

For reference, when I saw this for the first time on Twitter. I thought it was a normal image, so I posted here be or your thoughts / opinions on Linux vs windows. Looking back, I noticed that it’s such a stupid infographic.

 

When I refer to Linux, I am referring to a computer with the kernel and other software that makes up a Personal Computer.

I like to think that Linux is great, and always will be, a Personal Computer. Windows, I will always remember it being the best thing for business’s as Microsoft pushes licenses and such business related features.

I switched to Linux in 2020, Ubuntu, and slowly learned my ways around, and understanding how everything works, but most people don’t have to now, it’s so simple to get started.

1
Two Versions… (minecraft.wiki)
submitted 3 weeks ago* (last edited 3 weeks ago) by Synther@lemmy.zip to c/minecraft@sh.itjust.works
 

I was wondering if anyone knew about, or plays both versions of the game, the 667.9MB (disc) or 1.29GB (server).

I was on the wiki, and saw the screenshot was outdated. It shows the Xbox 360 and the 66.9MB versions, which should be… unless Microsoft will, IMO update the Xbox one edition (1.29GB) to 1.20 later down the years.

 

I found a Similar logo design to thunder, and was wondering where this is originally from?

I was browsing TikTok, yes, judge me. Haven’t been on in years, and still hate it.

[–] Synther@lemmy.zip 1 points 1 month ago

Yeah! I did ‘rest’ for rest api support. That works too

 

I was thinking of making a Free Open Source Resturant, with free food and drinks made purely out of free software components. I was thinking of licensing this under the GPLv3 for a freedom living experience, and not only that. I was also thinking it all in Rust!!

1
submitted 1 month ago* (last edited 1 month ago) by Synther@lemmy.zip to c/webdev@programming.dev
 

I was wondering if there was a Web Application where I can work on Android App Development. Think of it like if vscode was only built for Android Development, and how cool it would be to develop android apps directly into your browser, just like vscode.dev.

Now, I was thinking of using vscode.dev and installing Gradle and Kotlin packages from the marketplace, but I was wondering if there was another alternative instead of using a Microsoft Product.

Likewise, I'm on an Xbox One where I can only use the Browser, can't install anything.

1
submitted 2 months ago* (last edited 2 months ago) by Synther@lemmy.zip to c/minecraft@lemmy.world
 

So idk if any of you know of the Minecraft program’s, amidsts or MCA Selector. Two programs I absolutely enjoy using for my worlds, plus, their Free Open Source Software.

Anyways, there my story…

So I’ve been a Minecrafter since 2014, since the Xbox 360 days. I then switched to the Java edition of Minecraft in 2019 when I obtained my first pc on my 11th birthday. I made a server that I made for me and my friends / sister when they occasionally jump on and wanna play. In that server, we had an amazing time, building and creating memories. The seed is what’s most important here.

> Main Point

Is it possible for me to create program, preferably a GUI, that lets the user draw out the seed of what they remember. So similar to how you would draw things in krita, but more for a Minecraft top down world view. Amidst or MCA Selector POV. I’m not sure if it’s possible or if Minecraft will even allow such activity. Which I’m not sure why it wouldn’t.

Using the MC Seed API if they have such thing??

It’s just when your in a seed for more then 2 years, you get attached and just love the terrain it has.

Idk man, I just spent forever in that world seed, built amazing stuff. Regardless if I used commands, cheats etc, I just wanna find the seed again using this technique that I hope it’s possible.

 

Is it possible for me to grab (download) a full list of transcripts from a youtube channel's videos. I am working on a small project, of which I need a list of the videos, like all of them to control+f and find specific words.

I was wondering if anyone knew of such program I could use.

However, I wrote this AppScript in Google Drive, of which I'm not sure if this will work. It uses high level Google Account Access.

function getYouTubeTranscripts() {
  const CHANNEL_ID = "UCtMVHI3AJD4Qk4hcbZnI9ZQ";

      // This below is what, before Oath (ing), is what Google is saying its unsafe, and does not let me continue...
  const youtube = YouTubeApp.getOAuth2Service().getService();
  const videoIds = youtube.search().list("id", { channelId: CHANNEL_ID, maxResults: 50 }).items.map(item => item.id.videoId);

  videoIds.forEach(videoId => {
    const captions = youtube.captions().list("snippet", { videoId }).items;
    if (captions.length > 0) {
      const captionId = captions[0].id;
      const transcript = youtube.captions().download(captionId, { tfmt: "srt" }).getContentText();
      DriveApp.createFile(`${videoId}.txt`, transcript, "text/plain");
      Logger.log(`Transcript for video ${videoId} saved.`);
    } else {
      Logger.log(`No transcript found for video ${videoId}.`);
    }
  });
}

Just wondering of anything else I could use...

 

I am planning on making an android app because I have a Google pixel 6 I got as a birthday gift and I love how open Android has gotten over the years.

I was wondering if it’s worth saving up to develop an iOS app. (The same app on Android, but for iOS) I know that the AppStore can be a good revenue spot for my app, not sure. My app will be free + Open Source Software, GPL (Version 3) of which I plan to add my own premium features or either a donation option for the privacy advocate folks.

I’ve had an iPhone 12 since 2021, and I’ve gotten used to our iOS works, how the system works in terms of iOS background and process’s.

One question;

can I use GPL (version 3) for my iOS app on the AppStore?

I’m just want your thoughts if I should…

Thanks!