_about-me

personal-info


Welcome! I'm Daniel Addison, a Technical Operations Analyst based in Los Angeles, CA. I’m passionate about solving complex technology puzzles and making digital systems run seamlessly behind the scenes. Whether I'm managing cloud infrastructure, optimizing platforms for high availability, or building user-friendly tools, my goal is to create reliable tech experiences that support people and businesses every day.

// Code snippet showcase:

User Avatar
@danieladdsn

Created 61 months ago

details

const SPRING_CONFIG = {
	damping: 80, // more damping = more bounciness
	overshootClamping: true,
	restDisplacementThreshold: 0.1,
	restSpeedThreshold: 0.1,
	stiffness: 500, // more stiffness = more bounciness
};

const LOS_ANGELES_REGION = {
	latitude: 33.986072440676935,
User Avatar
@danieladdsn

Created 62 months ago

details
function drawFullFaceCovering() {
let faceCovering = createGraphics(width, height);
faceCovering.beginShape()
  //changed color to fire orange for obitos face
 faceCovering.fill(255, 119, 0);
faceCovering.noStroke();
  //ffunction for spiral on facemask
  // drawSpiral();
  // "silhouette" is the outline of the whole face mesh
  latestPrediction.annotations.silhouette.forEach((point) => {
  faceCovering.curveVertex(point[0 /* x */], point[1 /* y */]);