I'm François, but I wish I was named Francis so the username fransys/fr4nsyz makes more sense, but it's whateva 🫠
- Software Engineering Intern - IBM
- Open Source Contributor:
- Cilium (Kubernetes CNI)
- Falco (Cloud Runtime Security Framework)
- Ex AI Engineer - Undergraduate Artificial Intelligence Society
- Ex Security Engineer - UofA Blueprint Chapter
int endeavor(Node* head) {
int x = 1;
for (Node* y = head;; y = y->next) { x *= y->data; y->prev = nullptr; if (y->next == nullptr) break; }
return x;
}


