Hello World

My first post on my new fake blog! How exciting!

3 min read
0 views
console.log('Hello World');
#include <stdio.h>

console.log('hewwo') // [!code --]
console.log('hello') // [!code ++]

int main() {
  int pixel = 0xFFAACC11;
  // unsigned char only store 1byte = 8bit, rest of the value lost
  unsigned char r = (pixel >> 24);
  unsigned char g = (pixel >> 16);
  unsigned char b = (pixel >> 8);
  unsigned char a = (pixel >> 0);

  printf("sizeof int: %ld\n", sizeof(int));
  printf("sizeof char: %ld\n", sizeof(char));
  printf("sizeof unsigned char: %ld\n", sizeof(unsigned char));
  printf("%d\n", r);
  printf("%d\n", g);
  printf("%d\n", b);
  printf("%d\n", a);
  return 0;
}

A demo from rauno


() => {
    const rows = 5;
    const columns = 18;
    const transitionDuration = 250;
    // Cherry-pick a few lights to animate
    const indices = [7, 15, 19, 29, 26, 34, 46, 55, 60, 67, 70, 74, 83];
    // Randomly animate between three states
    const states = ['off', 'medium', 'high'];

    const ref = React.useRef();

    React.useEffect(() => {
      const timeoutIds = [];

      const interval = setInterval(() => {
        indices.forEach((index) => {
          const light = ref.current.querySelector(`[data-index="${index}"]`);

          if (!light) {
            return;
          }

          // Pick a random next state
          const nextState = states[Math.floor(Math.random() * states.length)];
          const currentState = light.dataset.state;

          const pulse = Math.random() > 0.2 &&
          // Make sure we only pulsate going from "off" → "medium" → "high"
          ((currentState === 'off' && nextState === 'high') ||
            (currentState === 'off' && nextState === 'medium') ||
            (currentState === 'medium' && nextState === 'high'));

          if (pulse) {
            // Add an arbitrary delay between 100-500ms
            function getRandomNumber(start, end) {
              return Math.random() * (end - start) + start;
            }
            const delay = getRandomNumber(100, 500);

            timeoutIds.push(
              setTimeout(() => {
                light.style.transform = 'scale(2)';
              }, delay)
            );

            timeoutIds.push(
              setTimeout(() => {
                light.style.transform = 'scale(1)';
              }, transitionDuration + delay)
            );
          }

          // After a pulse, don't transition from "high" → "medium"
          if (currentState === 'high' && nextState === 'medium' && pulse) {
            light.dataset.state = 'off';
          } else {
            light.dataset.state = nextState;
          }
        });
      }, 1000);

      return () => {
        clearInterval(interval);
        timeoutIds.forEach(clearTimeout);
      };
    }, []);

    return (
      <div
        ref={ref}
        className="switchboard"
        style={{
          display: 'grid',
          gap: `${columns}px`,
          gridTemplateColumns: `repeat(${columns}, 1fr)`,
        }}
      >
        {Array.from({ length: columns * rows }).map((_, i) => {
          return (
            <div
              key={i}
              className="light"
              data-state="off"
              data-index={i}
              style={{
                '--transition-duration': `${transitionDuration}ms`,
              }}
            />
          );
        })}
      </div>
    );

};