kionite231

joined 2 years ago
[โ€“] kionite231@lemmy.ca 1 points 1 week ago

It's great I just switched to deepin yesterday ๐Ÿ‡จ๐Ÿ‡ณ

[โ€“] kionite231@lemmy.ca 2 points 2 weeks ago

I would say pick up other people's config and then try to modify it to your liking eventually you will get comfortable with it and then you can start making your own rice :)

[โ€“] kionite231@lemmy.ca 5 points 2 weeks ago

meanwhile all the users from developing countries won't even notice a think like they didn't when meta install their shitty ai into whatsapp :(

[โ€“] kionite231@lemmy.ca 1 points 2 weeks ago (1 children)

Yeah that's a great idea! I will try to contact them. Thank you for the feedback.

I have just one question do they also provide mentorship for beginners to learn?

[โ€“] kionite231@lemmy.ca 11 points 3 weeks ago

Let's hope ladybird implement something like that

[โ€“] kionite231@lemmy.ca 2 points 4 weeks ago (2 children)

ohk so basically I need enable these two things:

  1. Ethernet Card Driver
  2. Serial Console

other things would be enabled by default in "make menuconfig" right?

[โ€“] kionite231@lemmy.ca 1 points 4 weeks ago

looks interesting... I will give it a chance :)

[โ€“] kionite231@lemmy.ca 2 points 4 weeks ago (5 children)

yes that could work but I don't know where is the option to only enabled tty and the internet ( Ethernet card ). all options I see seems cryptic and doesn't make any sense, it's maybe because I am new to Linux Kernel tinkering...

[โ€“] kionite231@lemmy.ca 1 points 1 month ago

propaganda ๐Ÿ‡ฎ๐Ÿ‡ณ๐Ÿ‡ฎ๐Ÿ‡ณ๐Ÿ‡ฎ๐Ÿ‡ณ

[โ€“] kionite231@lemmy.ca 2 points 1 month ago (1 children)

I knew about few of them, but I was finding a open-source alternative. Thank you for the list though :)

[โ€“] kionite231@lemmy.ca 2 points 1 month ago (1 children)

You can use your browser cookies to circumvent the ban

[โ€“] kionite231@lemmy.ca 6 points 1 month ago

Thank you so much for sharing this!

 

Hello folks,

I got my static IP and I am very happy now, I have been hosting a lot of services since I got the static IP, however I still have to host a fediverse service however it's not that easy to host any fediverse service, I tried to host GoToSocial but the devs said they don't support Podman and my server is podman only ( I tried installing docker but it was failing for some reason so I gave up and used podman instead of docker).

these are the services I am currently hosting ( basically all the easy services which you can host with just "docker compose up -d" :p ):

feel free to suggest some other cool services which I can host :D

 

Hello,

I have hosted azuracast in my minipc and I want to forward the IP of the song requester, right now it's only taking one IP the "podman container ip" so basically Azuracast thinks that every request is coming from the IP address 10.89.1.1 which is the IP of interface created by podman.

57: podman3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
    link/ether 0e:fa:6d:33:b9:39 brd ff:ff:ff:ff:ff:ff
    inet 10.89.1.1/24 brd 10.89.1.255 scope global podman3
       valid_lft forever preferred_lft forever
    inet6 fe80::b876:abff:fede:c3ef/64 scope link
       valid_lft forever preferred_lft forever

also I am explicitly forwarding the IP using X-Forwarded-Host.

reverse_proxy http://localhost:4000/ {
		header_up X-Forwarded-Host {host}
	}

I don't know how to resolve it, any help would be appreciated :)

Edit: I didn't had to so any of this stuff, what I should have done is just enabling "reverse proxy" option in Azuracast since Caddy forwards those headers by default unlike nginx. Thank you very much for helping me <3

 

Hello,

It's been a while since I started finding Whatsapp alternative, I found IRC, XMPP, Signal etc, however the thing is that I can't convince other people to use Whatsapp, I can't say that "ohh it's bad for privacy" otherwise they will say "you are not a president, nobody cares about your messages". also I don't live in western country so I can't just say "I don't want to use Whatsapp" otherwise people will get mad saying "you are not a VIP, everyone uses whatsapp and you are not special".

however I found a way so that people won't blame me for not using Whatsapp, I have to somehow get banned from Whatsapp and then when people ask "why don't you use whatsapp" then I can say "ohh umm I don't know it stopped working, you can find me on Signal". that way people will be ready to install Signal to talk to me.

what are your thoughts? is it even possible to get perma banned from Whatsapp?

 

Hello,

I have been using erc ( IRC client ) for quite some time and I really like how it's integrated inside emacs. for past few days I have been trying out XMPP and would like to have a XMPP client inside emacs.

I searched on DDG to find an emacs client however none of them were actively maintain and the last commit was years ago.

is there a XMPP client written in elisp?

Thanks in advance!!

 

Hello,

I was looking to make a custom ROM for my device as a hobby project however I have zero knowledge of Android. I have never compiled AOSP myself nor used a custom ROM for a long time.

It would be great if we have a Android wiki like we have Arch wiki

Thanks in advance!

 

Greetings,

my current ISP refuses to provide me a static IP and they also blocks incoming connection to my ipv6 so I can't host services on just ipv6 too. I will be changing my ISP when the plan expires.

without public IP I can host my own IRC bouncer but I would like to know what else can I self host? Thanks in advance!

 

Greetings,

I wanted to know if the first partition has to be FAT32 and should be mounted at /efi . Gentoo and Arch tell us to always have first partition of type FAT32 however they mount it in different location. I am confused can anyone elaborate please?

 

cross-posted from: https://lemmy.ca/post/38996724

Hello,

the most powerful thing in elisp is program as data but what does it mean how can I run data as a program. I was confused too but here is what I found.

First I tried this:

(setq x '(+ 1 3))
(x)

basically setting the value of x as a list. now x is set to some code but when I try to run x as function using (x) syntax we get this error *** Eval error *** Symbolโ€™s function definition is void: x. It tried to look for function in x but couldn't find it. then how can I run the code that I stored in a variable? how to evaluate it? we need a built-in function eval.

If we run this code it works and outputs 4:

(setq x '(+ 1 3))
(eval x)

so yeah, it is how you can evaluate a code stored in a variable. feel free to correct me if there is another way to achieve it :)

 

Hello,

the most powerful thing in elisp is program as data but what does it mean how can I run data as a program. I was confused too but here is what I found.

First I tried this:

(setq x '(+ 1 3))
(x)

basically setting the value of x as a list. now x is set to some code but when I try to run x as function using (x) syntax we get this error *** Eval error *** Symbolโ€™s function definition is void: x. It tried to look for function in x but couldn't find it. then how can I run the code that I stored in a variable? how to evaluate it? we need a built-in function eval.

If we run this code it works and outputs 4:

(setq x '(+ 1 3))
(eval x)

so yeah, it is how you can evaluate a code stored in a variable. feel free to correct me if there is another way to achieve it :)

view more: โ€น prev next โ€บ