Skip to main content

Darrell Ulm Wordpress Profile Page for Computer Science, Software Development

Exploring WordPress as a Test Case

I recently took some time to explore WordPress as a test platform, and I was pleasantly surprised by how capable it has become. The flexibility, ease of use, and broad ecosystem make it a strong option for anyone building a personal or professional presence online.

As part of this experiment, I reviewed a technology‑focused profile site highlighting work in computer science and software development. It’s a great example of how WordPress can be used to present technical expertise in a clean, accessible format.

If you're interested in seeing how a tech‑oriented profile can be structured on WordPress.com, take a look at this example:

Profile page for Darrell Ulm Computer Science, includes software development.

The layout, organization, and clarity demonstrate how well WordPress supports professional portfolios, especially for those working in technology.

 

Popular posts from this blog

Apache Spark Knapsack Approximation Algorithm in Python

The code shown below computes an approximation algorithm, greedy heuristic, for the 0-1 knapsack problem in Apache Spark. Having worked with parallel dynamic programming algorithms a good amount, wanted to see what this would look like in Spark. The Github code repo. for the Knapsack approximation algorithms is here , and it includes a Scala solution. The work on a Java version is in progress at time of this writing. Below we have the code that computes the solution that fits within the knapsack W for a set of items each with it's own weight and profit value. We look to maximize the final sum of selected items profits while not exceeding the total possible weight, W. First we import some spark libraries into Python. # Knapsack 0-1 function weights, values and size-capacity. from pyspark.sql import SparkSession from pyspark.sql.functions import lit from pyspark.sql.functions import col from pyspark.sql.functions import sum Now define the function, which will take a Spark ...

Research Papers, Darrell Ulm on Microsoft Academic Site

Microsoft used to host a link to its Academic Search platform, but that site has since been taken offline. The link originally pointed to Darrell Ulm’s research on parallel algorithms, data‑parallelism, and high‑performance computing. It’s a bit surprising that Microsoft retired the publication portal, because it was a genuinely valuable hub for technical papers and academic references.