00:29 <+bridge> [ddnet] @ChillerDragon windows settings -> system -> focus assist -> uncheck all 01:04 <+bridge> [ddnet] hey peeps 😮 01:24 <+bridge> [ddnet] @Jupstar ✪ for my tabbing problem or anti crash? 01:24 <+bridge> [ddnet] tab 01:24 <+bridge> [ddnet] ah nice lemme try 01:33 <+bridge> [ddnet] what is it in german i cant find it in my settings? 01:34 <+bridge> [ddnet] smth with assist 01:34 <+bridge> [ddnet] in name 01:34 <+bridge> [ddnet] i have a notification assisrant 01:34 <+bridge> [ddnet] it is tunred off already 01:35 <+bridge> [ddnet] 01:35 <+bridge> [ddnet] https://cdn.discordapp.com/attachments/293493549758939136/452616177525456896/unknown.png 01:35 <+bridge> [ddnet] oh down there 01:35 <+bridge> [ddnet] GREAT 01:35 <+bridge> [ddnet] thanks! c: 01:35 <+bridge> [ddnet] wtf windows 01:36 <+bridge> [ddnet] yeah, i dunno know either 01:36 <+bridge> [ddnet] not like this notification center is shit anyway, they even make it worse xD 11:50 < ddnet-commits> [ddnet] ChillerDragon opened pull request #1133: Add commands for switching pages in console (master...ConsolePages) https://git.io/vhlei 12:05 <+bridge> [ddnet] 12:05 <+bridge> [ddnet] https://cdn.discordapp.com/attachments/293493549758939136/452774882732933121/image.png 12:05 <+bridge> [ddnet] xd 12:06 <+bridge> [ddnet] gg 12:11 <+bridge> [ddnet] @Deeper + 12:12 <+bridge> [ddnet] i dont really understand this web thing 12:12 <+bridge> [ddnet] https://github.com/ddnet/ddnet-web/tree/master/www/_layouts 12:12 <+bridge> [ddnet] shouldnt it be duplicated here? 14:55 <+bridge> [ddnet] @Deeper thanks, fixed 14:55 <+bridge> [ddnet] @ChillerDragon it's from ddnet-scripts, which is just a manual mirror. we have an internal repo for this stuff :/ 14:56 <+bridge> [ddnet] but I don't think we should publish that since it contains passwords and all maps and configs etc together 14:58 <+bridge> [ddnet] configs and maps are private? 14:58 <+bridge> [ddnet] just create a pass.secret file and ignore it 14:58 <+bridge> [ddnet] would be cool to have whole web public so all can participate c: 15:00 <+bridge> [ddnet] yeah that would be cool 15:01 <+bridge> [ddnet] not that im saying i could help somehow i suck at web stuff but i mean for potential contributers c: 15:09 <+bridge> [ddnet] i would help but idk what to improve 15:11 <+bridge> [ddnet] there is one issue 15:11 <+bridge> [ddnet] but imo the website is really good c: 18:28 <+bridge> [ddnet] VoiceStateUpdate(guild_id=null, channel_id=null, self_mute=true, self_deaf=false, self_video=false) 19:20 <+bridge> [ddnet] any prediction guru here? There is this new adventure mod and it is unplayable with ddnet client because it somehow has jetpack predictions there on the gun ._. how is this possible 19:24 <+bridge> [ddnet] they have a multiple world feature and the prediction for jetpack gets activated on swapping the world (downloading a new map and stufff) 22:01 <+bridge> [ddnet] yo! Does someone know how the ``^=`` operator is called in c or how it behaves? It is tricky to search te web for it because it consists only of special chars. And yes i tried putting it in " 22:01 <+bridge> [ddnet] I know that the ``^`` is a bit wise xor but i have the feeling that these two lines behave different: 22:01 <+bridge> [ddnet] ``` 22:01 <+bridge> [ddnet] int z = x ^ y; 22:01 <+bridge> [ddnet] x ^= y; 22:02 <+bridge> [ddnet] ``` 22:05 <+bridge> [ddnet] x ^= y would change x 22:07 <+bridge> [ddnet] ya x ^= y is the same as x = x ^ y 22:26 <+bridge> [ddnet] Oh so z should be x then ? 22:28 <+bridge> [ddnet] Oh thats actually true idk what went wrong in my testlab before when i got different results