Skip to content

Instantly share code, notes, and snippets.

View kmalcaba's full-sized avatar

Kirsten kmalcaba

  • Canada
View GitHub Profile
@kmalcaba
kmalcaba / Birthday Callouts in Daily Notes.md
Last active July 22, 2023 15:27
Automatically insert birthday callouts for people's birthday in your daily notes in Obsidian

Birthday Callouts in Daily Notes

Description

Automatically insert birthday callouts for people's birthdays in your daily notes:

image

Edited 19/09/2022: Changed the alias part to use the updated structure (removed values)

@kmalcaba
kmalcaba / AVLPanel.java
Last active March 6, 2018 16:32
AVL Balancing Tree written in Java, part of a machine problem in Algorithms class.
package machineproblem3;
import java.awt.FlowLayout;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.ArrayList;
import java.util.InputMismatchException;
import javax.swing.JButton;
import javax.swing.JOptionPane;
@kmalcaba
kmalcaba / IfStatement.java
Created March 6, 2018 15:37
C++ if-block compiler written in Java which executes console printing and mathematical expressions.
package compiler.core;
import compiler.SourceCodeCompiler;
import java.util.HashMap;
/**
*
* @author Kirsten A. Malcaba
*/
public class IfStatement {