I hereby claim:
- I am talentlessguy on github.
- I am v1rtl (https://keybase.io/v1rtl) on keybase.
- I have a public key ASCF80TAiuLcWpzKYrt5DESQZsbSBSMBzd28bd9HGHD2hAo
To claim this, I am signing this object:
DefinitionBlock ("", "SSDT", 1, "CUSTOM", "CSC3551", 0x00000001) | |
{ | |
External (_SB_.PC00.SPI0, DeviceObj) | |
External (_SB_.PC00.SPI0.SPK1, DeviceObj) | |
Scope (_SB.PC00.SPI0) | |
{ | |
Name (_DSD, Package () | |
{ | |
ToUUID ("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"), |
I hereby claim:
To claim this, I am signing this object:
did:3:kjzl6cwe1jw14b7ju7sn3393fgw8m02wqlhxh8hfvoee5qch7y3hjsl7m9ddjyh |
import { OutlineEffect } from 'postprocessing' | |
import { forwardRef, useMemo, useImperativeHandle } from 'react' | |
import { useThree } from 'react-three-fiber' | |
const Outline = forwardRef((props: OutlineEffect, ref) => { | |
const { scene, camera } = useThree() | |
const effect = useMemo(() => new OutlineEffect(scene, camera, props), [props]) | |
useImperativeHandle(ref, () => effect, [effect]) | |
return null |
import React, { Suspense, useContext, useEffect, useState } from 'react' | |
import dynamic from 'next/dynamic' | |
import { useFrame, Canvas, Dom } from 'react-three-fiber' | |
import { useRef } from 'react' | |
import * as THREE from 'three' | |
import Text from './Text' | |
import { ColorContext } from '../lib/context' | |
const Controls = dynamic(() => import('./Controls'), { | |
ssr: false |
import * as THREE from 'three' | |
export function createGeometry() { | |
const geometry = new THREE.BoxBufferGeometry(0.8, 0.8, 0.8, 4, 4, 4) | |
// create an empty array to hold targets for the attribute we want to morph | |
// morphing positions and normals is supported | |
geometry.morphAttributes.position = [] | |
// the original positions of the cube's vertices |
module.exports = { | |
presets: [ | |
[ | |
'next/babel', | |
{ | |
'styled-jsx': { | |
plugins: [ | |
[ | |
'styled-jsx-plugin-postcss', | |
{ |
import withApollo from 'next-with-apollo' | |
import ApolloClient, { InMemoryCache, HttpLink } from 'apollo-boost' | |
import { parseCookies } from 'nookies' | |
export default withApollo( | |
({ initialState }) => | |
new ApolloClient({ | |
link: new HttpLink({ | |
uri: 'https://api.komfy.now.sh/graphql', | |
headers: { |
package main | |
import ( | |
"os" | |
"time" | |
"log" | |
// excel "github.com/360EntSecGroup-Skylar/excelize" | |
env "github.com/joho/godotenv" | |
tb "gopkg.in/tucnak/telebot.v2" | |
) |