Articles


Eliens' First Quest of 2020: Algolympics

Eliens, the moniker of the UPLB Competitive Programming team, is back in action as they qualify for the Final Round of Algolympics 2020, a programming contest organized by ACM-UP Diliman Student Chapter, Inc.. Four teams from Eliens, with three individuals each, were formed and registered to the Online Elimination Round …

Fuzzing: Hack, Art, and Science

A program usually accepts input, performs operations on the input, and produces output. Incorrect processing of input can lead to security vulnerabilities, such as buffer overflow. Depending on the input, the program may not perform the desired operation. An attacker can craft a specialized input that exploits the vulnerability to …


Lock–Unlock: Is That All? A Pragmatic Analysis of Locking in Software Systems

Most processors nowadays are multi-core processors to take advantage of parallel processing. Associated with parallel processing is the synchronization problem wherein locks are extensively used. This paper [GUERRAOUI2019] argues that despite the large amount of available choices for lock algorithms, developers do not have a comprehensive guide to select an …


Lecture Talk on Math in Action 2019

Miyah participated as one of the resource speakers in the Lecture Series of the recently concluded Math in Action 2019 last February 9-10, 2019. The event, organized by SAM-UP, a student academic organization in UPLB, was participated by students from different high schools nationwide. With this year's theme, "Connecting the …

How to contribute to this blog (Short Method)

This method is easier because the editing will be done in github itself via the web browser. 1. Fork the original repository SRG Blog Repository This is accomplished in github and you must be logged in. You should have the repository under your account after the fork. The succeeding steps …

How to contribute to this blog (Long Method)

Contributions are encouraged from SRG members. 1. Set up the development environment $ virtualenv pelican-blog-venv $ source pelican-blog-venv/bin/activate $ pip install pelican markdown ghp-import 2. Fork the original repository SRG Blog Repository This is accomplished in github and you must be logged in. You should have the repository under your account …