00:10 <+bridge_> [ddnet] apparently llvm failed to see through pointers in the optimization(?) 00:41 <+bridge_> [ddnet] heh, glad to see zig gets it right though 00:52 <+bridge_> [ddnet] ah, I see what you mean with the pointer thing 00:52 <+bridge_> [ddnet] goes to show llvm still has much to learn 11:05 <+bridge_> [ddnet] he forgot to allow C++ compiler to use AVX instructions as well 11:06 <+bridge_> [ddnet] https://cdn.discordapp.com/attachments/293493549758939136/830368139576475678/unknown.png 11:35 <+bridge_> [ddnet] @Comrade arent all those SIMD stuff disabled for your usual binary distributions 11:35 <+bridge_> [ddnet] cuz some cpus dont support them?+ 11:35 <+bridge_> [ddnet] yes, some very old CPUs don't support them 11:37 <+bridge_> [ddnet] by the way, if you want the shortest machine code 11:37 <+bridge_> [ddnet] https://cdn.discordapp.com/attachments/293493549758939136/830375972040605736/unknown.png 11:37 <+bridge_> [ddnet] still the same C++ code 🙂 11:38 <+bridge_> [ddnet] https://github.com/AdamNiederer/faster 11:38 <+bridge_> [ddnet] :poggers: 12:25 <+bridge_> [ddnet] https://github.com/gorhill/uBlock/wiki/uBlock-Origin-works-best-on-Firefox 12:26 <+bridge_> [ddnet] if u use chrome now is the best time to switch 12:26 <+bridge_> [ddnet] > Ability to uncloak 3rd-party servers disguised as 1st-party through the use of CNAME record. The effect of this is to make uBO on Firefox the most efficient at blocking 3rd-party trackers relative to other other browser/blocker pairs 12:31 <+bridge_> [ddnet] wasnt chrome adding some anti adblock stuff in chrome 90? 12:31 <+bridge_> [ddnet] i blocked 4.000M ads since i installed ublock 12:31 <+bridge_> [ddnet] thats more of a reason xd 12:31 <+bridge_> [ddnet] yeah 12:31 <+bridge_> [ddnet] they are removing extension apis 12:31 <+bridge_> [ddnet] thus making it harder for ublock to work 13:18 <+bridge_> [ddnet] GLonDirectX12 works fine, around 30% of native GL performance, dont see any rendering glitches 13:19 <+bridge_> [ddnet] on windows 13:20 <+bridge_> [ddnet] guess some intel user can test it 😄 13:21 <+bridge_> [ddnet] i'll create a small tutorial and maybe batch file for the environment variable 14:05 <+bridge_> [ddnet] @Comrade or maybe it's fixed in trunk? the ir generated looked off to me 14:17 <+bridge_> [ddnet] @louis SRY FOR PING, this is opengl to directx12 converter, maybe you can test it(you dont need to switch drivers or anything 😄 ) 14:17 <+bridge_> [ddnet] https://gist.github.com/Jupeyy/ca2ac80fb9765a9c4370bb9a6b88fb32 14:20 <+bridge_> [ddnet] nice PAINT key works too, since directx support is just better on windows 14:20 <+bridge_> [ddnet] minimize/maximize tha app is also very quick 14:21 <+bridge_> [ddnet] on opengl it creates a black screen for ~1 ms 14:21 <+bridge_> [ddnet] on dx12 its pretty isntant 14:32 <+bridge_> [ddnet] yes, something is wrong with Clang 10 and 11, but it's fine in older versions and trunk, gcc is fine too 15:03 <+bridge_> [ddnet] that makes much more sense than such a trivial optimisation going so wrong 15:58 <+bridge_> [ddnet] The Discord bot generates a wrong graph if i issue $points. See https://discord.com/channels/252358080522747904/500032072455290880/830441290898079744 15:58 <+bridge_> [ddnet] The Discord bot generates a wrong graph if i issue $points. See https://discord.com/channels/252358080522747904/500032072455290880/830441290898079744 and 15:59 <+bridge_> [ddnet] The Discord bot generates a wrong graph if i issue $points. See https://discord.com/channels/252358080522747904/500032072455290880/830441290898079744 and https://ddnet.tw/players/Scrumplex 16:02 <+bridge_> [ddnet] Seems like it uses old data, as it only shows 1674 points, while my profile has 2000+ points 16:12 <+bridge_> [ddnet] the dataset got too large to load, I'm looking into how to fix it 17:32 <+bridge_> [ddnet] it has been doing that for 2 months 17:41 <+bridge_> [ddnet] Just an idea from the top of my head, but I think you could use a GROUP BY statement to group by day and then SUM the points for the day 17:42 <+bridge_> [ddnet] https://github.com/ddnet/ddnet-discordbot/blob/3a16092e96048924621b34322fe0c7f0e13183f0/cogs/profile.py#L364 17:42 <+bridge_> [ddnet] Here I guess -> https://github.com/ddnet/ddnet-discordbot/blob/3a16092e96048924621b34322fe0c7f0e13183f0/cogs/profile.py#L364 17:43 <+bridge_> [ddnet] by that you would only have at most 365 data entries per year shown per user 17:43 <+bridge_> [ddnet] by that you would only have at most 365 (366 with leap years) data entries per year shown per user 18:01 <+bridge_> [ddnet] Oh it’s trivial when you have a db connected. The bot relies on pre-generated data we use to generate the website 18:02 <+bridge_> [ddnet] The part that’s failing is the parsing of the massive pre-generated msgpack 18:02 <+bridge_> [ddnet] (Which is used to populate the db of the bot) 18:02 <+bridge_> [ddnet] having web-api db will be solution imho 18:03 <+bridge_> [ddnet] Eeeeeh, it’s not exactly cheap this kind of db access. Sure it would solve it but how much more processing power will we need on our db server in exchange? 18:04 <+bridge_> [ddnet] (And some statistics take time to actually calculate like most common partners and stuff) 18:04 <+bridge_> [ddnet] hm, you are right, db server would burn :justatest: 18:05 <+bridge_> [ddnet] I think it just needs some buffered reading, I just didn’t have time to look into it yet 18:06 <+bridge_> [ddnet] clustered db? 18:06 <+bridge_> [ddnet] Putting a nail in the wall with a hydraulic press :p 18:08 <+bridge_> [ddnet] small box with nails in it! xd 18:09 <+bridge_> [ddnet] https://github.com/ddnet/ddnet-discordbot/blob/3a16092e96048924621b34322fe0c7f0e13183f0/data/tools/convert_players_file.py fwiw this is the part that’s failing 18:10 <+bridge_> [ddnet] Just need to use the buffered unpacker from msgpack I think 18:12 <+bridge_> [ddnet] Tho it does already look buffered, so what do I know 😛 18:13 <+bridge_> [ddnet] Ah, it does unpack buffered but the result is all in memory at the same time 18:13 <+bridge_> [ddnet] That’s a no go 18:18 <+bridge_> [ddnet] I guess this needs external sorting 18:22 <+bridge_> [ddnet] @Learath2 Theres a bot on the chinese discord aswell, maybe their bot works 18:23 <+bridge_> [ddnet] Or maybe let mysql do the ranking, hm 18:23 <+bridge_> [ddnet] @TsFreddie have you surpassed us in technology? ;P 18:35 <+bridge_> [ddnet] Okay, I’ll try to shove it into the database then use a query to do the sorting instead 18:55 <+bridge_> [ddnet] hm, the msgpack is only 11M actually @jao are you like running this on a C64? 19:47 <+bridge_> [ddnet] oh I see the issue 19:47 <+bridge_> [ddnet] it's not memory 😛 19:54 <+bridge_> [ddnet] this should have been broken for such a long time now :/ 19:55 <+bridge_> [ddnet] or maybe jao has another version running that he didn't commit to github yet 19:58 <+bridge_> [ddnet] okay, now it makes sense :/ 20:00 <+bridge_> [ddnet] pf, even getting this running is a pain how am I supposed to have the ddnet module on my computer that thing is a proper mess 20:05 <+bridge_> [ddnet] heh and most of these ancient scripts are in py2 20:05 <+bridge_> [ddnet] the bot is py3 😛 20:05 <+bridge_> [ddnet] yet another mess caused by python being the silliest language to be ever invented 20:07 <+bridge_> [ddnet] I couldnt get the bot to work either, it requires uvloop which isn't available on windows 20:07 <+bridge_> [ddnet] is loading a diskcache generated on another system even sane?? 20:08 <+bridge_> [ddnet] I spent almost an hour or two now to bolt this together and it just chokes on trying to load the disk cache 20:09 <+bridge_> [ddnet] better use a C64, no python there 20:09 <+bridge_> [ddnet] Sorry but @jao will have to either show me how to get this thing even working if I'm to fix it or he needs to fix it himself :/ 20:09 <+bridge_> [ddnet] closer to the metal the more fun it is to debug 20:11 <+bridge_> [ddnet] meh, now that I wasted the 2 hours I'd alloted for cooking and eating I have to either order or have boring pasta 😦 20:11 <+bridge_> [ddnet] well if u eat meat, eat a python 20:11 <+bridge_> [ddnet] nothing wrong with ordering food 😄 20:12 <+bridge_> [ddnet] is expensiv 20:12 <+bridge_> [ddnet] or unhealthy 20:12 <+bridge_> [ddnet] or both 20:13 <+bridge_> [ddnet] think I'd take nodejs any day over python :/ 20:13 <+bridge_> [ddnet] @Learath2 i sent u the latest version 20:14 <+bridge_> [ddnet] the thing that’s fail isnt on github 20:14 <+bridge_> [ddnet] yeah, I'm trying to get that working, but loading the diskcache from ddnet.tw fails 20:14 <+bridge_> [ddnet] pickle seems to want the ddnet module we have on ddnet.tw which is py2 20:15 <+bridge_> [ddnet] even if I bolt it in there patching the obv failures I get a UnicodeDecodeError while it's trying to deserialize 20:18 <+bridge_> [ddnet] ah ye it uses a py3 version of it 20:19 <+bridge_> [ddnet] I don't think we ever made one, you did? 20:22 <+bridge_> [ddnet] it just needs a few functions 20:31 <+bridge_> [ddnet] okay, I'll figure it out... 20:42 <+bridge_> [ddnet] does anyone know telnet's actual buffer size of tw econ? 20:48 <+bridge_> [ddnet] @Chairn maybe you are interested in Opengl to dx12 20:48 <+bridge_> [ddnet] https://gist.github.com/Jupeyy/ca2ac80fb9765a9c4370bb9a6b88fb32 20:48 <+bridge_> [ddnet] 20:48 <+bridge_> [ddnet] maybe the 64bit version works then on nvidia xd 20:51 <+bridge_> [ddnet] I would prefer to try that, but i can't compile 64 bits version 20:51 <+bridge_> [ddnet] https://stackoverflow.com/questions/10535950/forcing-nvidia-gpu-programmatically-in-optimus-laptops/14041061#14041061 20:51 <+bridge_> [ddnet] you can let github compile it 20:51 <+bridge_> [ddnet] ```C++ 20:51 <+bridge_> [ddnet] extern "C" { 20:51 <+bridge_> [ddnet] _declspec(dllexport) DWORD NvOptimusEnablement = 0x00000001; 20:51 <+bridge_> [ddnet] }```* 20:51 <+bridge_> [ddnet] i can? 20:52 <+bridge_> [ddnet] yeah just fork ddnet and then add it in a commit 20:52 <+bridge_> [ddnet] i can try to add it, if thats acutally enough 😄 20:52 <+bridge_> [ddnet] i already have a fork but its quite old, does it work for new forks or old ones too? 20:53 <+bridge_> [ddnet] u just need to fetch current source and push the update 20:53 <+bridge_> [ddnet] according to the link, it works for some people, depending on driver version 20:54 <+bridge_> [ddnet] https://github.com/Jupeyy/ddnet/runs/2313923755 20:56 <+bridge_> [ddnet] which file did you add the declaration? 20:56 <+bridge_> [ddnet] ah i hope it generates artifacts if all except windows fails 😄 20:56 <+bridge_> [ddnet] im trying it as well 20:56 <+bridge_> [ddnet] src/engine/client/client.cpp directly above the main() function 21:01 <+bridge_> [ddnet] ah nice it did upload the artifact tho: 21:01 <+bridge_> [ddnet] https://github.com/Jupeyy/ddnet/actions/runs/736528331 21:03 <+bridge_> [ddnet] ok, im trying it out 21:03 <+bridge_> [ddnet] just need to close other game 21:04 <+bridge_> [ddnet] lol, it failed to compile with mingw 😦 21:04 <+bridge_> [ddnet] i think mingw doesnt support _declspec 21:04 <+bridge_> [ddnet] nah, it failed before 21:04 <+bridge_> [ddnet] oh thats strange 21:04 <+bridge_> [ddnet] it doesnt knwo type ```C uintptr_t``` 21:05 <+bridge_> [ddnet] it doesnt knwo type ```C 21:05 <+bridge_> [ddnet] uintptr_t``` 21:05 <+bridge_> [ddnet] ah, are u not using mingw64? 21:05 <+bridge_> [ddnet] i think that other mingw is really struggle 21:05 <+bridge_> [ddnet] ```shell 21:05 <+bridge_> [ddnet] E:\Teeworlds_DDNet\DDNet-fork\src\base\system.c:3394:10: error: 'uintptr_t' undeclared (first use in this function); did you mean 'intptr_t'? 21:05 <+bridge_> [ddnet] 3394 | return (uintptr_t)ShellExecuteA(NULL, "open", link, NULL, NULL, SW_SHOWDEFAULT) > 32;``` 21:06 <+bridge_> [ddnet] yeah, my installation is from 2014 i think 😄 21:06 <+bridge_> [ddnet] tho i get this with mingw 21:06 <+bridge_> [ddnet] ``` 21:06 <+bridge_> [ddnet] src/engine/client/client.cpp:4275:14: error: expected constructor, destructor, or type conversion before ‘(’ token 21:06 <+bridge_> [ddnet] 4275 | _declspec(dllexport) DWORD NvOptimusEnablement = 0x00000001; 21:06 <+bridge_> [ddnet] | ^ 21:06 <+bridge_> [ddnet] ``` 21:07 <+bridge_> [ddnet] with __declspec it works 21:07 <+bridge_> [ddnet] xd 21:09 <+bridge_> [ddnet] not working unfortunately 21:09 <+bridge_> [ddnet] i can't even objdump it, mingw says unrecognized file format 21:09 <+bridge_> [ddnet] yeah, you have another error, guess u can only update mingw 21:09 <+bridge_> [ddnet] ah wait 21:09 <+bridge_> [ddnet] nah, the file you sent me 21:09 <+bridge_> [ddnet] ok 21:09 <+bridge_> [ddnet] too bad 21:09 <+bridge_> [ddnet] it doesn't use NVidia 21:10 <+bridge_> [ddnet] if its just opengl related 21:10 <+bridge_> [ddnet] try the dx12 thing xD 21:10 <+bridge_> [ddnet] its pretty easy to setup and the performance is quite good 21:15 <+bridge_> [ddnet] hey, i found this on my github page 21:15 <+bridge_> [ddnet] https://github.com/Chairn/ddnet/security/code-scanning 21:16 <+bridge_> [ddnet] not sure if you have access to it 21:16 <+bridge_> [ddnet] no xd 21:16 <+bridge_> [ddnet] https://cdn.discordapp.com/attachments/293493549758939136/830521638754713671/unknown.png 21:16 <+bridge_> [ddnet] seems like there's some code analysis tool running on github ^^ 21:17 <+bridge_> [ddnet] ah yes, i think u can just ignore them 21:17 <+bridge_> [ddnet] yeah xd 21:17 <+bridge_> [ddnet] yeah, but would be nice to fix i guess 😛 21:20 <+bridge_> [ddnet] its mostly about localtime function 21:20 <+bridge_> [ddnet] https://cdn.discordapp.com/attachments/293493549758939136/830522585237946409/unknown.png 21:20 <+bridge_> [ddnet] well, see you later 😄 21:20 <+bridge_> [ddnet] don't know whyit's so slow 21:20 <+bridge_> [ddnet] it's because of that WinRAR icon for sure 😄 21:20 <+bridge_> [ddnet] u need msvc release anyway 21:21 <+bridge_> [ddnet] the mingw release doesnt contain the d3d12 driver 21:21 <+bridge_> [ddnet] yeah i realized that after posting the screenshot, still slow anyway 21:21 <+bridge_> [ddnet] yeah 21:21 <+bridge_> [ddnet] use tor or smth xD 21:21 <+bridge_> [ddnet] some proxy 21:21 <+bridge_> [ddnet] problem is on github's side, not mine 21:21 <+bridge_> [ddnet] its probably between both 21:21 <+bridge_> [ddnet] the routing between 21:22 <+bridge_> [ddnet] well, your compiled client was downloaded normally 21:22 <+bridge_> [ddnet] oh 21:22 <+bridge_> [ddnet] well then rip xd 21:23 <+bridge_> [ddnet] https://cdn.discordapp.com/attachments/293493549758939136/830523435608178719/unknown.png 21:23 <+bridge_> [ddnet] well, server is one city away 21:24 <+bridge_> [ddnet] ur upload 21:24 <+bridge_> [ddnet] ;~; 21:25 <+bridge_> [ddnet] bonus for living in a city center, you have optic fiber 😉 21:25 <+bridge_> [ddnet] and since one year, city center is quite calm, i wonder why 🙄 21:26 <+bridge_> [ddnet] i just need 10k, then i could let it built here xd 22:05 <+bridge_> [ddnet] econ's buffer is 1024 bytes 22:36 <+bridge_> [freenode] I get 250fps ingame only. Is there anything I am not aware of that I need to configure to get full power on windows for grafic output. 22:36 <+bridge_> [freenode] I use RTX 2080 Ti btw, so fps should be higher naturally 22:38 <+bridge_> [ddnet] cl_refresh_rate 0 22:38 <+bridge_> [ddnet] gfx_refresh_rate 0 22:39 <+bridge_> [ddnet] and vsync off 22:39 <+bridge_> [ddnet] what OS? 22:43 <+bridge_> [freenode] I checked those setting already and there are set to unlimited or off and os is Windoes 10 22:44 <+bridge_> [ddnet] with /showall on or what? 22:45 <+bridge_> [freenode] showall is not used 22:46 <+bridge_> [ddnet] well then i assume its a missing driver 22:46 <+bridge_> [ddnet] download latest from nvidia directly 22:46 <+bridge_> [ddnet] 250 fps could e.g. be done with a good software opengl implementation 22:46 <+bridge_> [ddnet] i also get around 250, but only with entities 22:48 <+bridge_> [ddnet] kamillentee with nightly you can check in f1 what device is used btw 22:49 <+bridge_> [ddnet] but i'd still upgrade the driver 22:49 <+bridge_> [ddnet] never use the windows preinstalled thing 22:54 <+bridge_> [ddnet] <ᶰ°Konͧsti> kamillentroll get out of here 22:54 <+bridge_> [ddnet] <ᶰ°Konͧsti> :whistroll: 22:57 <+bridge_> [ddnet] <ᶰ°Konͧsti> @Jupstar ✪ can testing commands be done with a duration? I mean would it be hard to implement? 22:57 <+bridge_> [ddnet] <ᶰ°Konͧsti> So u can just bind ur super command to stay on for 1 seconds so u wont have to press ur key twice when testing a tight part or Something 22:59 <+bridge_> [ddnet] mh sounds useful, its definitely possible. you can just create github issue and suggest it 😄 23:00 <+bridge_> [ddnet] @Jupstar ✪ malwarebytes detects several files as malware: 23:00 <+bridge_> [ddnet] https://cdn.discordapp.com/attachments/293493549758939136/830547720103002142/message.txt 23:00 <+bridge_> [ddnet] <ᶰ°Konͧsti> Windows user 23:00 <+bridge_> [ddnet] apparently, it's AI malware detection 23:01 <+bridge_> [ddnet] so i guess those are false positives 23:01 <+bridge_> [ddnet] you only need the dlls anyway, but i think graphic apis are often detected xd 23:01 <+bridge_> [ddnet] atleast back in the days on windows i programmed a opengl app and it was detected too xD 23:01 <+bridge_> [ddnet] i need ddnet nightly or current version is fine? 23:02 <+bridge_> [ddnet] nightly has the advantage of showing you, what driver it uses 23:02 <+bridge_> [ddnet] and then u can verify it uses dx12 23:03 <+bridge_> [ddnet] current version does it as well i think 23:04 <+bridge_> [ddnet] ```shell 23:04 <+bridge_> [ddnet] [2021-04-10 23:03:36][sdl]: SDL version 2.0.8 (compiled = 2.0.8) 23:04 <+bridge_> [ddnet] [2021-04-10 23:03:36][gfx]: Created OpenGL zu.zu context. 23:04 <+bridge_> [ddnet] [2021-04-10 23:03:37][opengl]: Vendor string: NVIDIA Corporation 23:04 <+bridge_> [ddnet] [2021-04-10 23:03:37][opengl]: Version string: 4.6.0 NVIDIA 425.31``` 23:04 <+bridge_> [ddnet] ah i mean in f1, but that already looks wrong 23:04 <+bridge_> [ddnet] did you run the .bat file? 23:04 <+bridge_> [ddnet] not yet 23:05 <+bridge_> [ddnet] funny tho 23:05 <+bridge_> [ddnet] that it uses nvidia for some reason 23:07 <+bridge_> [ddnet] nah, that's the 32 bit 23:07 <+bridge_> [ddnet] hum starting script second time didn't start ddnet 23:08 <+bridge_> [ddnet] just clikc ddnet.exe 23:08 <+bridge_> [ddnet] it shows the prompt and closes it immediately 23:08 <+bridge_> [ddnet] it just important that the script set the env var 23:09 <+bridge_> [ddnet] interesting 23:09 <+bridge_> [ddnet] but u took x64 dlls and x64 ddnet client? 23:09 <+bridge_> [ddnet] yes 23:09 <+bridge_> [ddnet] i assume then, that it sadly uses the intel driver, bcs louis also could start it 23:09 <+bridge_> [ddnet] sad that intel doesnt support it, even tho it supports dx12 since gen 6 23:10 <+bridge_> [ddnet] also couldnt* 23:10 <+bridge_> [ddnet] how to get a log file from command line? 23:10 <+bridge_> [ddnet] you can do cl_show_console 1 23:10 <+bridge_> [ddnet] but in a working client 😄 23:10 <+bridge_> [ddnet] or add a logfile 23:10 <+bridge_> [ddnet] might be better as the console might close too 23:11 <+bridge_> [ddnet] im trying, but it doesnt work as the output is in another console window that closes instantly 23:11 <+bridge_> [ddnet] logfile test or smth like that 23:11 <+bridge_> [ddnet] `logfile test` or smth like that 23:11 <+bridge_> [ddnet] ```shell 23:11 <+bridge_> [ddnet] [2021-04-10 23:11:34][client]: starting... 23:11 <+bridge_> [ddnet] [2021-04-10 23:11:34][sdl]: SDL version 2.0.8 (compiled = 2.0.8) 23:11 <+bridge_> [ddnet] [2021-04-10 23:11:34][gfx]: Created OpenGL zu.zu context. 23:11 <+bridge_> [ddnet] [2021-04-10 23:11:34][gfx]: unable to create window: No matching GL pixel format available 23:11 <+bridge_> [ddnet] [2021-04-10 23:11:34][gfx]: setting resolution to 640x480 and trying again 23:11 <+bridge_> [ddnet] [2021-04-10 23:11:34][sdl]: SDL version 2.0.8 (compiled = 2.0.8) 23:11 <+bridge_> [ddnet] [2021-04-10 23:11:34][gfx]: Created OpenGL zu.zu context. 23:11 <+bridge_> [ddnet] [2021-04-10 23:11:34][gfx]: unable to create window: No matching GL pixel format available 23:11 <+bridge_> [ddnet] [2021-04-10 23:11:34][gfx]: out of ideas. failed to init graphics 23:11 <+bridge_> [ddnet] [2021-04-10 23:11:34][client]: couldn't init graphics``` 23:11 <+bridge_> [ddnet] it should create it where the client is started 23:11 <+bridge_> [ddnet] yeah too bad 23:12 <+bridge_> [ddnet] rip 23:12 <+bridge_> [ddnet] intel, my friend and helper 23:12 <+bridge_> [ddnet] i even tested it on my mashine lmao, why does it hate progress so much xD 23:12 <+bridge_> [freenode] Github issues lack tagging (we need at least two groups bugs and feature suggestions). So bad overview. Sometimes not even the author remembers he created an issue for something. 23:12 <+bridge_> [freenode] @Jupstar I tried what you said. Installing the driver did not help, but I used the nightly to find out which device is used and it says I use an RTX 3080 for ddnet. Which is built in but the monitor cable is not plugged in this card (just checked that). 23:12 <+bridge_> [freenode] I try something else now, I have an idea. 23:12 <+bridge_> [ddnet] we have tags in github issues 23:13 <+bridge_> [ddnet] maybe u cant set them? 23:13 <+bridge_> [ddnet] well then plug it into rtx 3080? XD 23:13 <+bridge_> [ddnet] isnt that card even better 23:13 <+bridge_> [ddnet] why are u so rich xD 23:13 <+bridge_> [ddnet] how can i unset the variable? 23:13 <+bridge_> [ddnet] so that i can see the normal output to compare 23:14 <+bridge_> [ddnet] you dont need to unset it, aslong u use a client without the dlls it will run fine 23:14 <+bridge_> [ddnet] as soon as u use the dlls it will use software renderer or this one 23:14 <+bridge_> [ddnet] so better just extract a second client 23:15 <+bridge_> [freenode] I looked it up, you cant set tags for your own issues and you cant give others the permission rights to set tags on github. So only very few people can do it. 23:15 <+bridge_> [ddnet] oh ok 23:15 <+bridge_> [ddnet] didnt know users cant do that, could swear i saw it in other repos 23:16 <+bridge_> [freenode] I want to sell the 2080 ti 23:16 <+bridge_> [ddnet] ok, well maybe u can set the card in some nvidia settings 23:17 <+bridge_> [ddnet] ```shell 23:17 <+bridge_> [ddnet] [2021-04-10 23:16:40][client]: starting... 23:17 <+bridge_> [ddnet] [2021-04-10 23:16:40][sdl]: SDL version 2.0.8 (compiled = 2.0.8) 23:17 <+bridge_> [ddnet] [2021-04-10 23:16:40][gfx]: Created OpenGL zu.zu context. 23:17 <+bridge_> [ddnet] [2021-04-10 23:16:40][opengl]: Vendor string: Intel 23:17 <+bridge_> [ddnet] [2021-04-10 23:16:40][opengl]: Version string: 3.0.0 - Build 10.18.14.5162 23:17 <+bridge_> [ddnet] [2021-04-10 23:16:40][gfx]: GPU vendor: Intel 23:17 <+bridge_> [ddnet] [2021-04-10 23:16:40][gfx]: GPU renderer: Intel(R) HD Graphics 4600 23:17 <+bridge_> [ddnet] [2021-04-10 23:16:40][gfx]: GPU version: 3.0.0 - Build 10.18.14.5162``` 23:17 <+bridge_> [ddnet] that's the default 23:17 <+bridge_> [ddnet] ok 23:17 <+bridge_> [ddnet] well i hoped, when it inits dx12 it just uses the best card 23:17 <+bridge_> [ddnet] instead of intel 23:17 <+bridge_> [ddnet] since dx12 is better supported on windows 23:18 <+bridge_> [ddnet] <ᶰ°Konͧsti> I wish he was rich then i would be too, on the other hand he wouldnt share his richness to his family damn 23:19 <+bridge_> [ddnet] ah, so he showed you teeworlds in first place? well atleast one good thing then? 😄 23:19 <+bridge_> [ddnet] <ᶰ°Konͧsti> yes he did :poggers: 23:20 <+bridge_> [ddnet] <ᶰ°Konͧsti> then he rq 23:20 <+bridge_> [ddnet] XD 23:20 <+bridge_> [ddnet] <ᶰ°Konͧsti> I always changed my name when playing at night so he couldnt report me to mom 23:21 <+bridge_> [ddnet] and ur mom is qshar? 23:21 <+bridge_> [ddnet] <ᶰ°Konͧsti> xd 23:21 <+bridge_> [ddnet] <ᶰ°Konͧsti> qfart is a troll 23:21 <+bridge_> [ddnet] <ᶰ°Konͧsti> Not related to us 23:22 <+bridge_> [freenode] I plugged it in the 3080. Now i have 1600fps. 23:22 <+bridge_> [freenode] Hm apparently 2080 ti is too bad for tw now. 23:22 <+bridge_> [freenode] still too low 23:22 <+bridge_> [ddnet] yeah, except you have a weak CPU 23:22 <+bridge_> [ddnet] or playing a GPU intense map 23:22 <+bridge_> [freenode] ryzen 9 3950 x 23:22 <+bridge_> [ddnet] in entities you should have around 5k-10fps fps 23:23 <+bridge_> [ddnet] on windows i get around 6k-7k fps, and i have a much weaker GPU 23:23 <+bridge_> [ddnet] lol, i get max 700fps 😄 23:23 <+bridge_> [freenode] Ah I think I know it. PSU is too weak for two cards 23:24 <+bridge_> [ddnet] <ᶰ°Konͧsti> nobo i have 2,5k fps with way worse 23:24 <+bridge_> [freenode] I will take one out so it does not matter I think 23:24 <+bridge_> [ddnet] kek 23:24 <+bridge_> [freenode] I get 120 fps with entities on my t450s 23:24 <+bridge_> [freenode] it really sucks 23:24 <+bridge_> [ddnet] <ᶰ°Konͧsti> Same 23:24 <+bridge_> [ddnet] my rx580 > rtx 3080 in tw 23:24 <+bridge_> [ddnet] :monkalaugh: 23:25 <+bridge_> [ddnet] <ᶰ°Konͧsti> :monkalaugh: 23:25 <+bridge_> [ddnet] <ᶰ°Konͧsti> Imagine wasting power to run a rtx 3080 to play nothing but tw with 23:26 <+bridge_> [freenode] I might do some calculations with it all night when I dont run tw 23:26 <+bridge_> [freenode] So its the cheapest gpu in the end 23:27 <+bridge_> [ddnet] <ᶰ°Konͧsti> thats cheating 23:27 <+bridge_> [ddnet] <ᶰ°Konͧsti> i dont like cheating 23:27 <+bridge_> [ddnet] <ᶰ°Konͧsti> Save by waste 23:27 <+bridge_> [ddnet] <ᶰ°Konͧsti> Big troll 23:27 <+bridge_> [ddnet] Use linux, u'll get more fps than windows. 23:27 <+bridge_> [ddnet] Windows is :trash: 23:27 <+bridge_> [ddnet] <ᶰ°Konͧsti> + 23:27 <+bridge_> [ddnet] good to see more linux users 23:27 <+bridge_> [ddnet] <ᶰ°Konͧsti> Windows is :kog: 23:27 <+bridge_> [freenode] Linux? is that thing still around? 23:28 <+bridge_> [ddnet] m$$ is trembling :BASED: 23:28 <+bridge_> [ddnet] <ᶰ°Konͧsti> kamillentee trolling again 23:28 <+bridge_> [ddnet] its true tho, ddnet runs over 10k fps on linux 23:28 <+bridge_> [ddnet] <ᶰ°Konͧsti> Someone kick 23:28 <+bridge_> [ddnet] same setup just different OS 23:28 <+bridge_> [ddnet] Yeah, i got 5fps on windows, and 125 on linux 23:28 <+bridge_> [freenode] What linux would you recommend to me if I ever wanted to switch? 23:28 <+bridge_> [ddnet] <ᶰ°Konͧsti> :monkalaugh: :monkalaugh: :monkalaugh: :monkalaugh: 23:28 <+bridge_> [ddnet] :greenthing: 23:29 <+bridge_> [ddnet] Ubuntu 23:29 <+bridge_> [ddnet] <ᶰ°Konͧsti> that question i normally ask to u 23:29 <+bridge_> [ddnet] <ᶰ°Konͧsti> Ubuntu worst 23:29 <+bridge_> [ddnet] i dunno how skilled you are, so ubuntu or smth easy as that xD 23:29 <+bridge_> [ddnet] <ᶰ°Konͧsti> dont feed him 23:29 <+bridge_> [ddnet] but i personally use debian unstable 23:29 <+bridge_> [ddnet] <ᶰ°Konͧsti> Hes trolling 23:29 <+bridge_> [ddnet] gentoo 23:29 <+bridge_> [ddnet] im switching soon 23:29 <+bridge_> [ddnet] Mint 23:29 <+bridge_> [ddnet] from arch 23:29 <+bridge_> [ddnet] :troll: 23:29 <+bridge_> [ddnet] Konsti :kek: 23:30 <+bridge_> [ddnet] gentoo is nice idea, but i dont want to compile everything xd 23:30 <+bridge_> [ddnet] <ᶰ°Konͧsti> He deleted my mothers windows when i was 12 and installed linux and i was mad cuz i couldnt play my shit flash games anymore 23:30 <+bridge_> [ddnet] XD 23:30 <+bridge_> [ddnet] if you want to follow the GNU god you should use a GNU approved distro by stallman himself https://www.gnu.org/distros/free-distros.en.html 23:30 <+bridge_> [ddnet] <ᶰ°Konͧsti> Im a nobo using MX 23:31 <+bridge_> [ddnet] <ᶰ°Konͧsti> super simple 23:31 <+bridge_> [ddnet] <ᶰ°Konͧsti> Manjaro always breaks 23:31 <+bridge_> [ddnet] If you want something familuar do ubuntu so simple 23:31 <+bridge_> [ddnet] yeah 23:31 <+bridge_> [ddnet] you wont be a windows normie, you will just be a ubuntu normie 23:31 <+bridge_> [ddnet] <ᶰ°Konͧsti> Ubuntu Is the worst linux 23:31 <+bridge_> [ddnet] then u can jump to the real juice 23:31 <+bridge_> [ddnet] <ᶰ°Konͧsti> Its just few less shit than windows 23:32 <+bridge_> [freenode] Ryozuki you are a fan of rms but are still using unfree software like discord or steam? 23:32 <+bridge_> [ddnet] <ᶰ°Konͧsti> :monkalaugh: 23:32 <+bridge_> [ddnet] https://guix.gnu.org/ 23:32 <+bridge_> [ddnet] based distro 23:32 <+bridge_> [ddnet] <ᶰ°Konͧsti> Steam sucks 23:33 <+bridge_> [ddnet] yeah i am sinner 23:33 <+bridge_> [ddnet] but i try to be closer to rms 23:33 <+bridge_> [ddnet] i think even rms can't be full rms sadly 23:33 <+bridge_> [ddnet] <ᶰ°Konͧsti> yes they can 23:33 <+bridge_> [ddnet] <ᶰ°Konͧsti> look at kamillentee 23:33 <+bridge_> [ddnet] <ᶰ°Konͧsti> No facebook no discord no whatsapp no Steam no skype 23:34 <+bridge_> [freenode] I use windows right now and android with gapps 23:34 <+bridge_> [ddnet] <ᶰ°Konͧsti> u normally dont wingay 23:34 <+bridge_> [ddnet] <ᶰ°Konͧsti> ur probably just too lazy to switch rn 23:34 <+bridge_> [freenode] yes 23:34 <+bridge_> [ddnet] <ᶰ°Konͧsti> And accidently bought something with wingay 10 23:35 <+bridge_> [ddnet] https://github.com/wafelack/orion 23:36 <+bridge_> [ddnet] i want to learn lisp