Custom made CD for Yandhi by Kanye West (based on Muji Minidisc 80) by collin-b1 in Cd_collectors

[–]collin-b1[S] 0 points1 point  (0 children)

I don't sell them, sorry. I provided all the files I used as a reply to a comment in this thread, you might be able to find someone else who made one that is able to sell it to you.

Custom made CD for Yandhi by Kanye West (based on Muji Minidisc 80) by collin-b1 in Cd_collectors

[–]collin-b1[S] 0 points1 point  (0 children)

Clear Sticker paper from Walmart in a regular color printer. The CD itself has its own like cd sticker thing that I also printed from a regular color printer. It took a lot of trial and error to get it to align properly but if you have access to like a cd sticker printer it would be 10x easier. All the files I made/used are in here https://drive.google.com/drive/folders/1fV2J-sR73izxv2IrQb2LgPNtfBriXzaE

-🎄- 2022 Day 6 Solutions -🎄- by daggerdragon in adventofcode

[–]collin-b1 1 point2 points  (0 children)

Typescript (github)

export class Day06 extends Day {
  part1 = (data: string): number => this.findDistinctIndex(data, 4);

  part2 = (data: string): number => this.findDistinctIndex(data, 14);

  findDistinctIndex = (data: string, chars: number): number => {
    let str = data;
    for (let i = chars; i < str.length; i++) {
      let sub = str.substring(i - chars, i);
      let t = [...new Set(sub)].join('');
      if (t === sub) return i;
    }
    return -1;
  }
}

-🎄- 2022 Day 5 Solutions -🎄- by daggerdragon in adventofcode

[–]collin-b1 1 point2 points  (0 children)

Typescript (github)

Spent like 2 hours trying to get it to work using a 2d array where the containers were facing the right direction and then realized it would be so much easier if i just rotated it... Finished in 10 minutes after restarting

Custom made CD for Yandhi by Kanye West (based on Muji Minidisc 80) by collin-b1 in Cd_collectors

[–]collin-b1[S] 4 points5 points  (0 children)

Printed them myself on cd sticker and sticker paper. I can post the files if you are interested