Dear recruiters,
if you are looking for
- Java, Python, PHP
-React, Angular
-PostgreSQL, Redis, MongoDB
- AWS, S3, EC2, ECS, EKS
-*nix system administration
-Git and Cl with TDD
-Docker, Kubernetes
That's not a Full Stack Developer That's an entire IT department
@FuossLC@thesaviour It's both hamas and Israel's fault!! Hamas isn't protecting Palestinians and doesn't give a damn if they are killed, and Israelians are targeting children and non armed people. Both sides are PURE EVIL
@banthisguy9349 I've worked with craxsrat before and the files you have look similar to the apks it builds. Not a smart idea to download them, they're pretty hard to remove once installed
@Vaibhav_Gawai4 Consider this 3d array
arr = [[[1, 2, 3], [4, 5, 6]], [[7, 8, 9], [10, 11, 12]]]
# normal way to iterate every element in it
for x in arr:
for y in x:
for z in y:
print(z)
#using nditer
for x in numpy.nditer(arr):
print(x)