_about-me

personal-info


Hi, I'm Daniel Addison, an IT professional based in Los Angeles, CA, with experience spanning software engineering, cloud infrastructure, and DevOps. I specialize in designing solutions that drive efficiency, scalability, and innovation across a range of industries. My goal is to bridge the gap between technical and business needs to deliver impactful, operational solutions.

// Code snippet showcase:

User Avatar
@danieladdsn

Created 45 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 46 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 */]);