00:10 < bridge> would it be helpful if there was an additional option like "Has people not playing", so it's more accessible to find empty maps? 00:10 < bridge> https://cdn.discordapp.com/attachments/293493549758939136/1070118902236975144/image.png 01:02 < bridge> Check boxes with a negation in the text are confusing 03:23 < bridge> Do you need financial support? Are you tired living from paycheck to paycheck… wanna say goodbye to 9to5? Wanna make $2000 daily $5000 weekly before your next pay check arrives? 03:23 < bridge> 03:23 < bridge> THEN ASK HOW....📥 03:23 < bridge> https://t.me/+XFS-8USTWMUxOTY8 03:47 < bridge> Do you need financial support? Are you tired living from paycheck to paycheck… wanna say goodbye to 9to5? Wanna make $2000 daily $5000 weekly before your next pay check arrives? 03:47 < bridge> 03:47 < bridge> THEN ASK HOW....📥 03:47 < bridge> https://t.me/+XFS-8USTWMUxOTY8 05:58 < bridge> What about scrolling a bit or clicking the players table header so it reverses the search 06:07 < bridge> Do you need financial support? Are you tired living from paycheck to paycheck… wanna say goodbye to 9to5? Wanna make $2000 daily $5000 weekly before your next pay check arrives?THEN ASK HOW....📥 06:07 < bridge> https://t.me/+XFS-8USTWMUxOTY8 06:07 < bridge> (@Alexander_) 06:08 < bridge> Bruh 07:53 < bridge> Do you need financial support? Are you tired living from paycheck to paycheck… wanna say goodbye to 9to5? Wanna make $2000 daily $5000 weekly before your next pay check arrives? 07:53 < bridge> 07:53 < bridge> THEN ASK HOW....📥 07:53 < bridge> https://t.me/+XFS-8USTWMUxOTY8 08:46 < bridge> TIL gentoo will use ninja if its installed automatically 08:48 < bridge> https://gitweb.gentoo.org/repo/proj/guru.git/commit/?h=dev 08:48 < bridge> updated ddnet 11:19 < bridge> https://gitweb.gentoo.org/repo/proj/guru.git/commit/?h=dev&id=be0f3f7b9c0c74f1b1b9698c6ad5a938028a0823 18:11 < bridge> @Ryozuki can I get data from ddstats from other websites? 18:15 < bridge> ye 18:19 < bridge> :thonk: 18:19 < bridge> https://cdn.discordapp.com/attachments/293493549758939136/1070392890762727555/image.png 18:19 < bridge> Did you guys receive an alert on ddnet repo? 18:37 < bridge> wdym? 18:38 < bridge> The mail probably only went to team members 18:38 < bridge> https://github.com/ddnet/ddnet/security/dependabot/2 18:44 < bridge> @Ryozuki fix rust 18:45 < bridge> but i think heinriich already said that we should just disable it 18:45 < bridge> this is heinrich doing 18:45 < bridge> but ye reading it it seems to be a windows only issue 18:45 < bridge> and i dont think ppl run masterservers on windows 18:45 < bridge> also i would simply change warp to axum 18:45 < bridge> then do it 18:46 < bridge> warp is no longer being updated iirc 18:47 < bridge> @Jupeyy_Keks i can look into it but its annoying 18:47 < bridge> cuz they want to keep it compat with debian 18:47 < bridge> and i dislike old deps 18:48 < bridge> true 18:48 < bridge> just make rustup requirement 18:48 < bridge> and use rust 1.67 or whatever is current 18:48 < bridge> we dont even use rust 2021 edition 18:48 < bridge> we are stuck with 2018 18:49 < bridge> considering how even today i again ran in an unstable feature it must be horrible to use 2018 edition xD 18:50 < bridge> xd 18:50 < bridge> u and ur weird stuff 18:50 < bridge> i just type stuff, press `.` look at the suggested functions, find exactly what i want 18:50 < bridge> @Jupeyy_Keks 18:50 < bridge> https://cdn.discordapp.com/attachments/293493549758939136/1070400852659015680/image.png 18:50 < bridge> unstable feature 18:50 < bridge> do u agree with heinrich import style 18:51 < bridge> i let vscode do it xD 18:51 < bridge> never touched it 18:51 < bridge> ye 18:51 < bridge> vscode does it nice 18:51 < bridge> https://cdn.discordapp.com/attachments/293493549758939136/1070401068892180511/image.png 18:51 < bridge> i dunno looks like its readable 18:52 < bridge> ye 18:56 < bridge> nvm i wont even try 18:56 < bridge> axum requires 2021 18:57 < bridge> and 1.60 i think 20:08 <+ChillerDragon> can someone explain me what is happening here? 20:08 <+ChillerDragon> https://zillyhuhn.com/cs/.1675278498.png 20:10 <+ChillerDragon> running single commands with ``zsh`` runs the zshrc but its environment variables get overwritten by the one launching zsh?! Xd 20:12 <+ChillerDragon> -c is to run a single command and -i is for interactive so it loads the rc file 20:14 <+ChillerDragon> https://zillyhuhn.com/cs/.1675278846.png 20:14 <+ChillerDragon> xxxxxxxxxxxxxxxxxxxxxxxxxxxxXD it gets even better 20:14 <+ChillerDragon> the zshrc is run but the ``echo``command ignores the variable being set 20:15 <+ChillerDragon> but if the command is launching ``bash`` it gets the variable set in the ZSHRC xfcacfrxuaxzugaguixaxw 20:15 <+ChillerDragon> this is worse than javascript ngl 20:17 <+ChillerDragon> but ofc only if the bash is a interactive process in a single command bash also inherits from its grand parent xd 20:17 <+ChillerDragon> https://zillyhuhn.com/cs/.1675279028.png 20:18 <+ChillerDragon> what a master piece 20:21 < bridge> You are running bash and then started Zsh. The variable TEST is evaluated before the zsh command is run. So, before running zsh, before reading zshrc, the variable TEST was already set with "bash". 20:21 < bridge> 20:21 < bridge> You command was the same as: `zsh -ic "echo $TEST"`, because de variable was already set. 20:27 < bridge> I think because you used `-i` flag, you executed the `echo $TEST` command and then entered zsh's shell. Otherwise would execute the issues command and quit back to bash 20:29 < bridge> Try 20:29 < bridge> 20:29 < bridge> 20:29 < bridge> ``` 20:29 < bridge> export TEST=bash 20:29 < bridge> zsh -c "echo $TEST" 20:29 < bridge> echo $TEST 20:29 < bridge> ``` 20:32 < bridge> Theorically this should not enter zsh, causing the last echo command to return bash 20:59 < bridge> Do you need financial support? Are you tired living from paycheck to paycheck… wanna say goodbye to 9to5? Wanna make $2000 daily $5000 weekly before your next pay check arrives? 20:59 < bridge> 20:59 < bridge> THEN ASK HOW....📥 20:59 < bridge> https://t.me/+XFS-8USTWMUxOTY8 21:46 < bridge> Oh yea haha ofc I’m so stupid. Thanks \:D 21:46 < bridge> (@RafaelFF) 21:47 < bridge> So I assume with single quotes it would print ZSH and then it all makes sense 21:47 < bridge> I wrote way too much bash to not see something like that instantly .\_. 21:54 < bridge> You are running bash and then started Zsh. The variable TEST is evaluated before the zsh command is run. So, before running zsh, before reading zshrc, the variable TEST was already set with "bash". 21:54 < bridge> 21:54 < bridge> You command was the same as: `zsh -ic "echo bash"`, because the variable was already set. 22:17 < bridge> when hud icon for locked team indicator 22:17 < bridge> would be kinda useful 22:20 < bridge> https://github.com/ddnet/ddnet/issues/6030 22:20 < bridge> it's still open 22:20 < bridge> why is there always an open issue when i have a suggestion 22:21 < bridge> makes it look like im constantly trying to steal ideas 22:22 < bridge> :kek: 22:22 < bridge> but yes, i would like to come back to this to. Has anyone from the dev team made thoughts about how to implement this? 22:23 < bridge> but yes, i would like to come back to this too. Has anyone from the dev team made thoughts about how to implement this? 22:46 < bridge> maybe in the player list (tab) there could be a lock next to the team number 22:47 < bridge> even better in my opinion 23:12 < bridge> cool idea for the future scoreboard redesign if that's still in plans