08:53 < bridge> [ddnet] add pls last timestamp of update into https://master1.ddnet.tw/ddnet/15/servers.json :greenthing: 09:59 < bridge> [ddnet] @Matodor it has the "Last-Modified" header 11:00 < bridge> [ddnet] As heinrich5991 said, you can use the http header. It's just a static file on the server: `curl -s -I -i https://master1.ddnet.tw/ddnet/15/servers.json | grep last-modified` 13:24 < bridge> [ddnet] Is it really necessary to bors r+ for updating translation? 13:24 < bridge> [ddnet] good point we need CI for translations \:D 13:25 < bridge> [ddnet] not really, just wanted to point that it sounds useless 13:25 < bridge> [ddnet] i assume u can wait for bors on this \:) 13:25 < bridge> [ddnet] be patient 13:27 < bridge> [ddnet] its not about waiting, its about energy loss 13:27 < bridge> [ddnet] imo deciding on every pr if bors is needed or not is enegery loss 13:34 < bridge> [ddnet] @uwu weeb 13:36 < bridge> [ddnet] u 15:02 < bridge> [ddnet] have anyone ported vanilla/ctf to ddnet codebase? 15:37 < bridge> [ddnet] @nuborn not that I'm aware of 15:44 < bridge> [ddnet] @Ryozuki I asked yesterday but you missed it I think, have you ever used `tokio-rs/tracing`? 15:44 < bridge> [ddnet] i kinda did 15:44 < bridge> [ddnet] basically i just put the # at functions and use the logging functions 15:44 < bridge> [ddnet] iirc 15:45 < bridge> [ddnet] #[tracing] on functions setups the spans for u 15:45 < bridge> [ddnet] #[tracing::instrument] 15:45 < bridge> [ddnet] * 15:45 < bridge> [ddnet] Do you like it? 15:46 < bridge> [ddnet] i dont know why i need to use tracing over log so idk what to tell u 15:46 < bridge> [ddnet] i think tracing is better for async or smth 15:46 < bridge> [ddnet] ah, it's supposed to solve the problem where in async programs it's really hard to figure out where a logging event is coming from 15:46 < bridge> [ddnet] i guess the span stuff is good to **trace** where logs come from 15:46 < bridge> [ddnet] hehe 15:46 < bridge> [ddnet] xd 15:46 < bridge> [ddnet] ye 15:46 < bridge> [ddnet] that 15:47 < bridge> [ddnet] i think the instrument even shows the argument values 15:47 < bridge> [ddnet] but im not sure 15:48 < bridge> [ddnet] there is also a cache library i found rly interesting 15:48 < bridge> [ddnet] https://docs.rs/cached/0.23.0/cached/index.html 15:48 < bridge> [ddnet] this is for local cache, not distributed stuff 15:49 < bridge> [ddnet] maybe u find it useful 15:49 < bridge> [ddnet] for ur bot 15:52 < bridge> [ddnet] @Learath2 btw if u ever need to debug print (but debug in the sense of finding a bug and not debug logs), https://doc.rust-lang.org/std/macro.dbg.html best 15:52 < bridge> [ddnet] > Prints and returns the value of a given expression for quick and dirty debugging. 15:52 < bridge> [ddnet] xd 15:53 < bridge> [ddnet] oh this is cute, I've just been using `println!` as I always have but this is much better 15:53 < bridge> [ddnet] @Learath2 this is why its so useful 15:53 < bridge> [ddnet] https://cdn.discordapp.com/attachments/293493549758939136/853633141901492224/unknown.png 15:53 < bridge> [ddnet] u can put it everywhere 15:54 < bridge> [ddnet] btw if u want to debug the contents of a struct i recommend passing it as & because dbg! moves the value 15:54 < bridge> [ddnet] dbg!(&mystruct) 15:55 < bridge> [ddnet] > You can also use dbg!() without a value to just print the file and line whenever it’s reached. 15:55 < bridge> [ddnet] they rly thought it out 15:55 < bridge> [ddnet] i didnt know that last bit 15:55 < bridge> [ddnet] xd 18:22 < bridge> [ddnet] there is not a git command that add every edited file? 18:22 < bridge> [ddnet] i mean with git add ... 18:23 < bridge> [ddnet] git add -all doeesn't work :C 18:23 < bridge> [ddnet] git add -A 18:23 < bridge> [ddnet] git add . 18:24 < bridge> [ddnet] that what i need thx 18:24 < bridge> [ddnet] git add -A stages all changes 18:24 < bridge> [ddnet] 18:24 < bridge> [ddnet] git add . stages new files and modifications, without deletions 18:24 < bridge> [ddnet] ye git add . is perfect 18:25 < bridge> [ddnet] i think git add . also adds deletions 18:25 < bridge> [ddnet] not 18:25 < bridge> [ddnet] oh wait in git 2.0 yes 18:26 < bridge> [ddnet] https://cdn.discordapp.com/attachments/293493549758939136/853671560774025256/unknown.png 18:26 < bridge> [ddnet] what r u using 18:26 < bridge> [ddnet] git from 99 18:26 < bridge> [ddnet] ? 18:26 < bridge> [ddnet] xd 18:26 < bridge> [ddnet] yes 18:26 < bridge> [ddnet] :Alzheimer: 20:17 < bridge> [ddnet] git commit -am for the super lazy 23:04 < bridge> [ddnet] @Ryozuki\: hrhrhrhhr https://github.com/teeworlds/teeworlds/issues/2887