This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"type": "shell", | |
"label": "CMake: build", | |
"command": "cmake --build build/standalone", | |
"group": "build", | |
"problemMatcher": [], | |
"detail": "CMake build task" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# VS 2019 | |
cmake -G "Visual Studio 16 2019" -A x64 | |
# VS 2022 | |
cmake -G "Visual Studio 17 2022" -A x64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fs = require('fs') | |
const path = require('path') | |
// Loop through all years | |
// Go into each folder | |
// Get MDX file | |
// Add template to frontmatter | |
// layout: "@/layouts/BlogLayout.astro" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// See https://go.microsoft.com/fwlink/?LinkId=733558 | |
// for the documentation about the tasks.json format | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "cargo check", | |
"type": "shell", | |
"command": "~/.cargo/bin/cargo", // note: full path to the cargo | |
"args": [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as THREE from "three"; | |
import { MeshProps, useFrame } from "@react-three/fiber"; | |
import { Mesh } from "three"; | |
import { useRef } from "react"; | |
type MultiMaterialMeshProps = MeshProps & {}; | |
export default function MultiMaterialMesh({}: MultiMaterialMeshProps) { | |
const geom = useRef<Mesh>(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as THREE from "three"; | |
import { MeshProps, Object3DNode, useFrame } from "@react-three/fiber"; | |
import { GlassViewMaterial } from "./shaders/GlassViewShader"; | |
import { Mesh } from "three"; | |
import { useRef } from "react"; | |
// We extend Mesh and replace material with ShaderMaterial - which our custom shader is based off | |
interface GlassViewMesh extends THREE.Mesh { | |
material: THREE.ShaderMaterial; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useEffect, useRef } from "react" | |
import useLoop from "../hooks/useLoop" | |
import playerInput from "../utils/playerInput" | |
type Props = { | |
} | |
const Gamepad = ({ }: Props) => { | |
// The frame/game loop | |
// We run this 60fps (max) to sync gamepad input to Input class/store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<bpy> | |
<Theme> | |
<user_interface> | |
<ThemeUserInterface | |
> | |
<wcol_regular> | |
<ThemeWidgetColors | |
inner_sel="#005cdd" | |
> | |
</ThemeWidgetColors> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useState, useEffect } from "react" | |
import Head from 'next/head' | |
import Image from 'next/image' | |
import styles from '../styles/Home.module.css' | |
// Example from Twitch API docs | |
// @see: https://dev.twitch.tv/docs/irc/get-started | |
import tmi from 'tmi.js'; | |
// Define configuration options |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as THREE from 'three' | |
import { useFrame, extend, MeshProps } from '@react-three/fiber' | |
import { useRef, useState } from 'react' | |
import useStore from '@/helpers/store' | |
import { shaderMaterial } from '@react-three/drei' | |
import { Color, Mesh } from "three" | |
import vertex from './glsl/shader.vert' | |
import fragment from './glsl/shader.frag' |