Numpy is what makes python fast though
- 0 Posts
- 10 Comments
Joined 3 years ago
Cake day: June 15th, 2023
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.
Bogus5553@lemm.eeto
Technology@lemmy.ml•500 kms on a 5 minute charge? BYD reveals new 1,000 kW battery system
4·9 months agoGreat news! Hope it’s not too hard to port this technology to the existing infrastructure.
I personally think that C++ can be beautiful. For example:
std::filesystem::pathoverrides the/operator, for specifying parent paths. It’s the same as Kotlin’s OKIO and Pythons standard pathlib.
void main(){...}is not in the standard, but works on both MSVC and GCC (with warnings). I think it works on both C/C++, but you really shouldn’t use it in production. Just useint main(void){...}, without any return value, which is permitted in the standard, and will return success iirc.
Any
void main(){...}enjoyers?
Bogus5553@lemm.eeto
Technology@lemmy.ml•The Google TV Streamer might be the Apple TV 4K rival we’ve been waiting for - The Verge
3·1 year agoIf you’re the CIA, then you don’t need to own Google in order to use their intelligence.
from random import uniform from time import sleep target = input("Enter target to hack:") print(f'--Hacking {target}--') print('initiating ~~anal penetration~~ backdoor entry') for progress in range(0,100,20): print(f'Hacking {target}: {progress}%') sleep(uniform(1,3)) print(f'{target} hacked successfully')


I like lower languages as well well, but everything doesn’t need to be built in C/C++/Rust and so on.