Oddbean new post about | logout
 @Fe₂🦀₃⋅H₂🦀 ( 7,600 / 28,000 ) @e9ab4887 @buy robux today :ROBUX: what's your thought on <regex>? it was so slow i just resorted to using boost::regex and calling it a day. or maybe i should use RE2.
also how do you do networking in C++ without asio? 
 @loopy pedestrian✍🏿 @e9ab4887 @buy robux today :ROBUX: regex in general is quite slow and the use of it should be pretty selective. I've never found c++ regex to be particularly troublesome as long as you're sure to precompile your statements. For networking there's various libraries everywhere. Socket calls suck but the abstraction layer over them doesn't need to be very fancy before they start not sucking. So in short figure out what you actually want to do with your sockets and there will be a very simple and reliable library for it.