Tag: Oop
-
Use Kabanero, Appsody, and Codewind to build Spring Boot application on Kubernetes
Posted on October 21, 2019, Level intermediate Resource Length short
An guide by Hafid Haddouti. In the era of DevOps where the team is responsible for building and running applications for their entire life cycle, choosing the best tools is crucial to help reduce the work needed for building and deploying cloud-native applications.
Tags kubernetes programming java devops oop
-
Object creation patterns in JavaScript
Posted on September 27, 2019, Level beginner Resource Length medium
Kunal Tandon wrote about his run through of the four patterns in JavaScript. To create objects in JS, there are various patterns that can be followed.
Tags javascript web-development oop functional-programming
-
Benchmarking Functional Error Handling in Scala
Posted on August 19, 2019, Level advanced Resource Length long
Conventional wisdom has it that using too many functional abstractions in Scala is detrimental to overall program performance. Yet, these abstractions are an immense help if you want to write clean and abstract code. in depth article by Marcin Rzeźnicki.
Tags scala programming java oop functional-programming
-
Difference between Stack and Queue in Data Structure
Posted on May 15, 2019, Level beginner Resource Length short
Quick summary from Aniruddha Chaudhari about Stack and Queue. With stack and queue data structures, it is very easy to solve even complex programming questions.
Tags programming learning software oop
-
Dependency Injection in Scala -- Guide
Posted on April 17, 2019, Level intermediate Resource Length long
This is well written guide about dependency injection on Scala. Dependency Injection (DI) is a popular pattern which encourages loose coupling between a services' clients and service implementations.
Tags scala programming java oop
-
COBOL and the enterprise business programming paradigm
Posted on April 4, 2019, Level beginner Resource Length medium
COBOL is nearly 60 years old. Jonathan Sayles examines how COBOL is still used today and it is not going anywhere soon. Besides that "As many as 75% of all rewrite projects have resulted in failure" and with the redoubtable Reuters reported that when Commonwealth Bank of Australia replaced its core COBOL platform in 2012, it took five years -- and cost $749.9 million.
Tags programming miscellaneous oop performance servers
-
Laravel OOP principles for writing better code explained
Posted on February 20, 2019, Level intermediate Resource Length medium
An blog post by Peter Matisko about PHP framework Laravel and how to use Object Oriented Programming (OOP) for writing better code.
Tags php programming web-development oop
-
Introduction to Object-Oriented Programming in JavaScript
Posted on November 15, 2018, Level beginner Resource Length medium
Rainer Hahnekamp wrote this blog post about object-oriented programming (OOP) in JavaScript. It is aimed at students with no prior knowledge in OOP.
Tags javascript oop programming nodejs
-
How to do Object Oriented Programming the right way
Posted on July 30, 2018, Level intermediate Resource Length long
Article by software engineer Xiaoyun Yang about Object Oriented programming done right. Object Oriented Programming (OOP) is a software design pattern that allows you to think about problems in terms of objects and their interactions. OOP is typically done with classes or with prototypes.
Tags oop programming javascript
-
How to Handle Exceptions in Python
Posted on June 22, 2017, Level intermediate Resource Length medium
Monty Shokeen wrote neat article about handling exceptions in Python programming language.
Tags python programming oop
-
An Overview of Object-Oriented Programming Using Python
Posted on March 30, 2017, Level beginner Resource Length medium
Sajjan Kumar article serves as intro into Object-Oriented Programming in Python.
Tags programming python oop