u/lule34567

Image 1 — looking for friends
Image 2 — looking for friends
Image 3 — looking for friends
Image 4 — looking for friends
Image 5 — looking for friends
Image 6 — looking for friends
Image 7 — looking for friends
Image 8 — looking for friends
Image 9 — looking for friends

looking for friends

17m; i do web development at https://malingen.xyz/; guess im into retro tech and such as well as occasionally video games. i own the entire main series of tokyo ghoul, neon genesis evangelion, girls last tour, and cells at work manga; and i own Look Back by Tatsuki Fujimoto, Uzumaki by Junji Ito, and one volume of Akira, as well as a couple volumes of homunculus. i am horribly lonely and bored. im heavy into films, so check out my letterboxd at https://letterboxd.com/lule345/ favorite anime is probably either serial experiments lain or evangelion. i dont know how to talk to people

u/lule34567 — 3 days ago
▲ 0 r/Lain

"Lain: Protocol 7": Opinions?

recently a new lain project came out named "Lain: Protocol 7" and people are already lambasting it as AI slop. if you havent seen the video, watch it via https://www.youtube.com/watch?v=aSRkP5qihwQ

i highly doubt this is entirely AI, it even says so in the description: "The production combines hand-drawn animation, VRoid, live-action footage, and After Effects processing, and in some stages, AI is used as a tool to assist in expression."

the director has an entire background behind him with experience in other animes, including directing some of his own, as seen in his linktree (https://lit.link/en/moyashin12) and his twitter (https://x.com/moyashin12)

specifically, when digging through his twitter, you can find two posts showing a part of the behind-the-scenes of the trailer:

https://x.com/moyashin12/status/2067736797053067731/

https://x.com/moyashin12/status/2068079438496239908

he's also directed "Shin Yaranaika", which has a 6.2/10 according to IMDb (https://www.imdb.com/title/tt32334071/)

until we're given more information on how the production is done as well as to what extent AI is used, please don't blindly yell some series out as AI. no, i'm not a fan of AI either, but you should consider whether something is partially done with AI, even at minor points, or completely made with AI. we've already seen people lambast projects because it admitted to allowing AI to some extent, such as the linux kernel or godot, but at the same time, those projects have strict policies on AI usage to the point that fully AI-created contributions are rejected, and people still support and use them daily.

for those who want to keep digging into the director and/or the studio's background, please do. i feel like this is a poor PR stunt on the director's behalf rather than the actual film being entirely AI.

u/lule34567 — 8 days ago
▲ 11 r/UCONN

Connecting to eduroam via Linux: A Guide

Hello everyone,

I'm making this post as I wanted to make a specific guide for UConn students here who are linux users and are having trouble connecting to eduroam networks. I'm an Arch Linux user myself, and it took me a bit to find out how to set it up right, but eventually I got it working. Special thanks to the CMU Professor Gautaum Iyer for having a great guide here.

1. Create the config files

Open up your preferred terminal, and create a file located at /var/lib/iwd/eduroam.8021x

Use the following template to setup your credentials

        [Security]
        EAP-Method=PEAP
        EAP-Identity=[yourNetID@uconn.edu]
        EAP-PEAP-Phase2-Method=MSCHAPV2
        EAP-PEAP-Phase2-Identity=[yourNetID]
        EAP-PEAP-Phase2-Password-Hash=[See Below]
        
        [Settings]
        AutoConnect=false

If you're using NetworkManager on your system, set it to use iwd as its backend by editing the conf file at /etc/NetworkManager/NetworkManager.conf

[device]
wifi.backend=iwd

2. Setting up password hash

  1. Temporarily disable your terminal history via set +o history (this will reenable upon exiting the shell)
  2. Get your md4 hash via

​

 echo -n "your-netID-password" | iconv -t utf16le | openssl md4 -provider legacy
  1. You'll get something that looks like this:

    (stdin)= ba15efd8f2cb03eb12b34998a35133cc

Copy the hash (everything beyond the equal sign) into the [See Below] area in the previously mentioned config file

3. Connect!

I've tested this at the Avery Point campus and it worked on my system (with 300 mbps download speed!) and I hope this post helps any other fellow linux users out there. Also, if you want your system to connect automatically to eduroam upon boot at campus, just change the AutoConnect setting above to true. Be aware that this means eduroam will take highest priority against other access points, meaning you'll always connect to eduroam first against, say, your hotspot or UCONN-SECURE. I haven't tested this method on UCONN-SECURE yet, but again, I do hope this helps others to get it working.

reddit.com
u/lule34567 — 17 days ago