My latest thoughts

Software Architecture; online resources

Software Architecture; online resources

If you want to learn about Software Architecture, you can start with the book: Fundamentals of Software Architecture (https://lnkd.in/dBNqDaT6) by Mark Richards and Neal Ford. Here is the podcast about the book (35mins) by Rebecca Parsons, Thoughtworks CTO...

Quantum Computing with IBM Q

Quantum Computing with IBM Q

Pre-requisites: Python 3 QISKIT Installation pip install qiskit python3 -m pip install jupyter Tutorials https://github.com/QISKit/qiskit-tutorial/archive/master.zip In the terminal/command-line and into the folder "qiskit-tutorial-master" execute: jupyter...

IBM iX Hackathon in Disney Land (Paris)

IBM iX Hackathon in Disney Land (Paris)

<iframe src="https://player.vimeo.com/video/263123286" width="640" height="360" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe><!-- [et_pb_line_break_holder] --><p><a...

Design Patterns overview by Iluxonhik

Design Patterns overview by Iluxonhik

https://iluxonchik.github.io/design-patterns-notes/ Design Patterns Notes - An Overview Of Design Patterns Reading time ~50 minutes Introduction This blog post is a collection of notes on some more common design patterns. Each design pattern is explained in simple...

The Open Group Certification – Master IT Architect (Level 2)

The Open Group Certification – Master IT Architect (Level 2)

After few months of hard work I'm finally a Certified IT Architect by the Open Group! The Open Group Certified Architect (Open CA) designation brings value and recognition to Technology, Business, and Enterprise Architects and the organizations that employ them The...

Artificial Intelligente – Part 2 (resources)

Artificial Intelligente – Part 2 (resources)

This is going to be a list of resources for learning the required topics to be considered knowledgeable in the field of artificial intelligence. This will be everything I can find, including textbooks, researchers, papers, courses, video series, and notes. Some of...

Awesome Artificial Intelligence

Awesome Artificial Intelligence

A curated list of Artificial Intelligence (AI) courses, books, video lectures and papers. Contents Courses Books Programming Philosophy Free Content Code Videos Learning Organizations Journals Competitions Movies Misc Courses MIT Artifical Intelligence Videos - MIT AI...

Engineering blogs of Big Companies

Engineering blogs of Big Companies

A list of the best engineering blogs of the top IT Companies High Scalability The GitHub Blog Engineering at Quora Yelp Engineering Blog Twitter Engineering Facebook Engineering Yammer Engineering Etsy Code as Craft Foursquare Engineering Blog Airbnb Engineering...

Pablo’s Journey to IBM India

Pablo’s Journey to IBM India

Last month I had the chance to work from Bangalore. I shared some time with the amazing IBM team responsible of the Apple+IBM Mobile development. It was such a great experience! I loved the time there and I really hope to be back soon.    

C and C++ Elements to Avoid

C and C++ Elements to Avoid

The List of Bad Elements No Indentation Indentation means that the contents of every block are promoted from their containing environment by using a shift of some space. This makes the code easier to read and follow. Code without indentation is harder to read and so...

Reg-ex debugger

Reg-ex debugger

"Some people, when confronted with a problem, think "I know, I'll use regular expressions." Now they have two problems."  Great online tool for debugging your regular expressions: https://eigenstate.org/notes/regex-debug Example: Pattern : [0-9]*(foo|bah?|baz).?[0-9]*...