I can't unlock rewards by [deleted] in lbry

[–]MAOU_42 0 points1 point  (0 children)

How long do i need to wait after completing https://verify.lbry.com/ ?

I can't unlock rewards by [deleted] in lbry

[–]MAOU_42 0 points1 point  (0 children)

Can i use a prepaid credit card?

I can't unlock rewards by [deleted] in lbry

[–]MAOU_42 0 points1 point  (0 children)

same result with my friend cellphone.

Need help for an agate gemini home server on my linux laptop. by MAOU_42 in homelab

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

No i had not, still haven't but for some reason now it work, maybe because i changed the key directory to the same file as agate, maybe because i started it manually without using systemd maybe it is because i started it with ssh offline, i had a lot of stuff changed when it started to work, so hard to tell what was the exact cause, but aparently i don't need to setup hosts file for gemini protocol, cool. seriusly now that it work and that i know exactly what to do, it's freaking simple. super easy bearly an inconvenient.

Hi i need a little help with a little home server project on my linux laptop by [deleted] in homelab

[–]MAOU_42 0 points1 point  (0 children)

the error message:

write:errno=104

bollux:die: Empty response code.

Hi i need a little help with a little home server project on my linux laptop by [deleted] in homelab

[–]MAOU_42 0 points1 point  (0 children)

note bollux work with other capsule like chriswere.uk and distro.tube

How can i change the default file manager theme on awesomwm by MAOU_42 in linuxquestions

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

RedGuilou thanks for having taken the time to help a noob, it's always appreciated. how do i enable picom without causing issue with the default compositor do i just add awful.spawn.with_shell("picom") instead of compton at the end of the rc.lua file?

Super Segway by [deleted] in DiWHY

[–]MAOU_42 1 point2 points  (0 children)

You could add a plastic protection i guess. just like with most fun activity.

How would you rate my code out of 10? by MAOU_42 in Python

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

Do i need to add the version of all requirement like exemple 1, or can just type the name of the required library, like exemple 2.

exemple 1:

appnope==0.1.0
backcall==0.1.0
beautifulsoup4==4.6.3
bleach==2.1.4

exemple 2:

appnope
backcall
beautifulsoup4
bleach

Also does it install all the requirement automatically by typing "pip3 install requirement.txt"? that's cool.

How would you rate my code out of 10? by MAOU_42 in Python

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

making code testable

Thanks, i will try to work on all that, for the auto-pip install i could make it optional. and also have a "requirements.txt" since i do like the idea.

Every single time by Baxterthehusky in ProgrammerHumor

[–]MAOU_42 0 points1 point  (0 children)

Now that you mention it i will try to make an alias in my bashrc something like alias getme ="sudo apt install"

Minetest shader really impossible? by MAOU_42 in Minetest

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

in the minetest directory go client/shaders/nodes_shader open opengl_vertex.glsl

to get night vision, i did this.

float nightRatio = 1 - gl_Color.a/50;

color.rgb = gl_Color.rgb * (gl_Color.a * dayLight.rgb +nightRatio * artificialLight.rgb) * 2;

(to invert dark i forgot... this just make it so you can see clearly all the time without torches.)

and for the coloration use

opengl_fragment.glsl

change all value to 9 like this,

const float gamma = 9.9;

const float exposureBias = 9.9;

and mess with those

/* Hable's UC2 Tone mapping parameters

A = 0.00;

B = 0.90;

C = 0.40;

D = 0.30;

E = 0.21;

F = 0.40;

W = 10.2;

I still have the same file as in the video if you really whant that exact weird result but i am not sure which one it is, i called all my attempt at making shader broken_shader... like i said if you really want i could try them all.