Open in app
Home
Notifications
Lists
Stories

Write
Aldrin Caalim
Aldrin Caalim

Home
About

Published in Probably Programming

·Apr 18

What is a Function in Python?

What is a Function? A function is a named block of code that has the ability to perform an action. The structure of a function varies between languages. In order to properly invoke your function, you must terminate a function you’re calling with parenthesis. def say_hi(): return "Hi" print(say_hi()) # properly invoked print(say_hi) # not…

Python

2 min read

What is a Function in Python?
What is a Function in Python?

Published in Probably Programming

·Apr 18

Python: Sets

What is a Set? Sets are a data type in Python that can be used to store a collection of unique items. Essentially, it’s a list that uses curly braces and rejects duplicate values. How do you create a Set? There are two way to create a Set: set literal and using the set function. first_set = {1, 2, 3…

Technology

2 min read

Python: Sets
Python: Sets

Published in Probably Programming

·Apr 11

What are Non-Fungible Tokens (NFTs)?

What are Non-Fungible Tokens (NFTs)? Non-fungible tokens (NFTs) are a new type of digital asset that are built on the blockchain technology. They are unique and can have different values, unlike regular cryptocurrencies. NFTs can be used to represent ownership over assets such as real estate or collectibles. They could also be used to power…

Technology

3 min read

What are Non-Fungible Tokens (NFTs)
What are Non-Fungible Tokens (NFTs)

Published in Probably Programming

·Apr 4

What is Object Oriented Programming?

Object Oriented Programming Explained Object Oriented Programming (OOP) is a programming paradigm that emphasizes the use of classes and objects to represent entities in a computer system. OOP concepts include classes, objects, abstraction, polymorphism, inheritance, and encapsulation. What are Classes? Classes are a fundamental component of object oriented programming. A class is a template for creating objects…

Technology

4 min read

What is Object Oriented Programming?
What is Object Oriented Programming?

Published in Probably Programming

·Apr 27, 2021

JavaScript: let, const, or var

There are three keywords required to declare variables: let, const, and var. let When using let, you declare block-level variables. This means the declared variable will be available in the block it’s declared in. For example: let cat = 'Mufasa'; // Between the curly brace is the block scope function catName()…

Java Script

2 min read

JavaScript: let, const, or var
JavaScript: let, const, or var

Published in Probably Programming

·Apr 24, 2021

JavaScript: The For Loop

Basic For Loop Syntax for (index; condition; increment/decrement) { // body of the loop } The index is used to compare against the condition. The condition is used to check the loop at every iteration and will continue to run as long as it evaluates to true. The increment/decrement is used to increase or…

Java Script

2 min read

JavaScript: The For Loop
JavaScript: The For Loop

Published in Probably Programming

·Apr 23, 2021

JavaScript: Filter Method

Basic Syntax of Filter const newArray = array.filter(item => { return condition; }); The item will be used to reference the current element in the array against the given condition. If the current element in the array passes, then it will be stored in a new array which, in this case, is called newArray. Using filter() …

Java Script

2 min read

JavaScript: Filter Method
JavaScript: Filter Method

Dec 23, 2020

Python: Styling your Code

How should you style your code? In an earlier article, I showed “The Zen of Python, by Tim Peters”. It is considered to be the core philosophy of Python. Here is it once again: The Zen of Python, by Tim Peters Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. Complex is better…

Python

3 min read

Python: Styling your Code
Python: Styling your Code

Published in Probably Programming

·Dec 23, 2020

Python: The Basics of a Dictionary

This is a summary of Chapter 6 of “Python Crash Course: A Hands-On, Project Based Introduction to Programming” by Eric Matthes What is a Dictionary? Dictionaries are used to store data values in key-value pairs. Each key is connected to a value, and you can use a key to access the value associated with…

Python

5 min read

Python: Dictionaries
Python: Dictionaries

Published in Probably Programming

·Dec 22, 2020

Python: Slicing, Looping, and Copying a List

This is a summary of Chapter 4 of “Python Crash Course: A Hands-On, Project Based Introduction to Programming” by Eric Matthes Slicing a List To slice your list, state the index of the first and last elements you are targeting. Just like the range() function, the first value in the slice will be…

Python

4 min read

Python: Slicing, Looping, and Copying a List
Python: Slicing, Looping, and Copying a List
Aldrin Caalim

Aldrin Caalim

Software Engineer for Boeing

Following
  • Qwiklabs

    Qwiklabs

  • Eric Elliott

    Eric Elliott

  • Angela Yu

    Angela Yu

  • Li-Hsuan Lung

    Li-Hsuan Lung

  • Chris Blakely

    Chris Blakely

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Knowable