Articles

Measuring program time (timeit module)

I've been using python's timeit module for some testing, wanted to keep track here of timeit and any other methods I come across. Here's an example usage.


import timeit

start = timeit.default_timer()

#

stop = timeit.default_timer()

print(stop - start)

Note: default_timer uses time.perf_counter() as defined here

Return the value (in …

➟ Read more


Buying Guide for a budget gaming PC

Goals: This is a gaming PC that can play most modern games on the maximum settings. This is also a self-build and every cost saving is used.

This guide is a bit outdated since I built this a few years ago, the focus is to show how to price check …

➟ Read more

My first blog, I'll use Pelican!

I realized learning things and making projects doesn't mean much if I can't talk about and display my work. So after some research I learned I don't need to specialize in front end development or website design or javascript to build a presentable website. This is part of the progress …

➟ Read more

How to install an openSUSE distro with dual boot

I pulled out my old desktop and decided to put a linux distro on it so I could learn some popular database operating systems.

Not sure I want to go into how to select one here, too many articles on it already. According to my research some good personal distros …

➟ Read more