User:Pixzzl

{{userboxtop}}

{{User WikiProject Rowing}}

{{User rower}}

{{userboxbottom}}

Hi welcome to my userpage, I'm a new Wikipedia editor. Sorry if I mess something up or make a mistake, I'm still learning.

Feel free to correct or teach me.

My main focus of improvement on Wikipedia is rowing coverage, especially in competitive youth rowing.

Besides rowing, I am also interested in technology, predominantly computer components and new technologies. I also enjoy reading and on rare occasion writing about military history.

If you ever need to contact me just message me here on Wikipedia because if I was active recently I'll likely be active again. In the case that I'm away and have not been active, I might not see your message for a while.

Work

= Current Projects =

Currently working on two pages, one for the Moorestown Rowing Club, and another for the successor team, Cooper Junior Rowing Club. You can find the MRC page here, and the CJRC page here. Potentially considering writing about the South Jersey Rowing Club in the future as it pertains to CJRC.

= Wikiprojects =

Work in progress... ~{{Date|2025-04-09}}

= Project History =

{{^| == Misc stuff for python graphs ==

import matplotlib.pyplot as plt

  1. graph data

x = ["1.0.0", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0",

"3.0", "4.0", "5.0", "6.0", "6.6"]

y = [0.17, 0.71, 0.73, 1.67, 1.76, 3.15, 3.83, 8.10, 14.64, 19.31, 26.20, 35.14, 37.05]

  1. figure and axis

plt.figure(figsize=(10, 5))

plt.bar(x, y, color="skyblue", edgecolor="black")

  1. labels and title

plt.xlabel("Kernel Version", fontsize=12)

plt.ylabel("Million Lines of Code", fontsize=12)

plt.title("Growth of Linux Kernel Codebase Over Versions", fontsize=14)

plt.xticks(rotation=45, ha='right', fontsize=10)

plt.yticks(fontsize=10)

  1. remove grid

plt.grid(False)

  1. bar vals

for i, val in enumerate(y):

plt.text(i, val + 0.5, f"{val:.2f}", ha='center', va='bottom', fontsize=9)

plt.tight_layout()

plt.show()

}}