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 =
= Wikiprojects =
Work in progress... ~{{Date|2025-04-09}}
= Project History =
- Draft:Moorestown Rowing Club
- Project #: 001
- Date Started: 1/22/2025
- Published: No.
- User:Pixzzl/Cooper Junior Rowing Club
- Project #: 002
- Date Started: 4/1/2025
- Published: No.
- User:Pixzzl/USRowing Youth National Championships
- Project #: 003
- Date Started: 4/9/2025
- Published: No.
- User:Pixzzl/USRowing Mid-Atlantic Youth Championships
- Project #: ???
- Date Started: ??/??/????
- Published: ?
- User:Pixzzl/South Jersey Rowing Club
- Project #: ???
- Date Started: ??/??/????
- Published: ?
- User:Pixzzl/Jim McConkey
- Project #: ???
- Date Started: ??/??/????
- Published: ?
{{^| == Misc stuff for python graphs ==
import matplotlib.pyplot as plt
- 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]
- figure and axis
plt.figure(figsize=(10, 5))
plt.bar(x, y, color="skyblue", edgecolor="black")
- 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)
- remove grid
plt.grid(False)
- 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()
}}