-
-
learning_dart_flutter Public
I'm documenting my Dart and Flutter learning journey in this repository. It is made public so that it may also be of help to those learning the language just like myself.
C++ UpdatedOct 31, 2024 -
learning_go Public
I'm documenting my Go learning journey in this repository. It is made public so that it may also be of help to those learning the language just like myself.
Go UpdatedOct 29, 2024 -
learning_C_and_C_plus_plus Public
I'm documenting my C/C++ learning journey in this repository. It is made public so that it may also be of help to those learning the language just like myself.
C++ UpdatedOct 25, 2024 -
This Go program demonstrates that structs of different types can be passed into common functions with the help of the interface type variable. It also features the use of type-switch to let a commo…
Go UpdatedOct 22, 2024 -
This Go program demonstrates the use of interface-typed objects that are declared to link some functions to their specified struct. We can use functions as methods for the created structs.
Go UpdatedOct 22, 2024 -
simple_go_json_note-taking Public
This Go program demonstrates the use of structs and functions as struct methods stored in a saparated package to get string inputs from the user and save all the information in a json file with pre…
Go UpdatedOct 18, 2024 -
This example of a Go program demonstrates the use of an embedded struct and a struct package. The embedded struct acts as a scaffold for a newly created struct to build upon and use its existing fi…
Go UpdatedOct 11, 2024 -
simple_go_grade_calculator Public
In this project, I programed an exampe of a very simple student grade calculator with the Go Programming Language. The program uses simple if-else blocks to verify the student's grades and output s…
Go UpdatedOct 7, 2024 -
simple_go_struct_example Public
This is a very simple program written in the Go Programming Language to demonstrate the use of the struct data type.
Go UpdatedOct 7, 2024 -
struct_package_example Public
This Go program demonstrates the use of a struct and its method as a separated package from the main program
Go UpdatedOct 7, 2024 -
This Go program demonstrates the use of struct and struct methods. It features the use of pointers with structs and struct methods to display and overwrite/clear (mutate) the data in the original s…
Go UpdatedOct 7, 2024 -
simple_python_bank Public
In this project, I programed an example of a simple, command-line-based, banking application with Python.
Python UpdatedSep 24, 2024 -
simple_go_bank Public
In this project, I programed an example of a simple, command-line-based, banking application with Go
Go UpdatedSep 24, 2024 -
This repository contains an algorithm to generate a simple Christmas Tree ASCII art with some customization flexibilities
Jupyter Notebook UpdatedJan 22, 2024 -
gold_price_analysis Public
This project aims to find best days in any given year to benefit from gold investment provided that the investor buys the gold on the first day of the year
-
This repository contains the SQL queries and the dataset to accompany an article on Medium.com titled "The Data Adventure 01: “How Long will your Business Start to Profit?” — An SQL Adventure"
UpdatedOct 30, 2022 -
This repository contains a simple set of code for a simple version of the HigherLower game.
Python UpdatedFeb 21, 2022 -
This project demonstrates Python's modularity capability. This repository hosts a Python code for a simple virtual coffee machine. It is a coin-operated machine that can dispense espresso, latte, a…
Python UpdatedFeb 21, 2022 -
This project demonstrates the use of mysql.connect package with Python and Plotly to create an SQL database, tables, and visualize data from those tables.
-
This repository contains a set of simple Python code for a simple number guessing game. The player guesses a number between 1 - 100 and the game tells the player if the number is too high or too lo…
Python UpdatedFeb 20, 2022 -
Google_Coursera_Cyclistic Public
A data analysis case study capstone from Google Data Analytics Professional Certificate course on Coursera
-
Jupyter Notebook Updated
Feb 10, 2022 -
This is a simple Blackjack card game with Python. It allows only 2 players with the computer as the dealer. The rules are simple:
Jupyter Notebook UpdatedFeb 10, 2022 -
This is a small project to test and visualize the result of the weighted probability capability of Python's numpy.random.choice()
Jupyter Notebook UpdatedFeb 9, 2022 -
Drawing_Triangles_with_MySQL Public
This repository contains simple sets of codes that draw triangles in the form of ASCII art using MySQL. I cam across these codes on HackerRank and I thought it was a very strange concept to SQL to …
UpdatedFeb 4, 2022 -
This is a very simple calculator program with Python. It's a "Hello World" of a calculator. It demonstrates the use of functions that takes inputs and returns values.
Python UpdatedJan 30, 2022 -
Days_in_a_month_with_Python Public
This is a simple set of Python codes that will give the user the number of days in a month the user gives to the program. For this program to work, the user will provide the year and the month, and…
Python UpdatedJan 29, 2022 -
This simple program 'secretly' takes names and bidding values from each bidder and announce the auction winner after the user declare that there's no more next bidder. This program makes use of dic…
-
The Digital Caesar Cipher with Python