This file contains hidden or 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 "engine_sim.mr" | |
units units() | |
constants constants() | |
impulse_response_library ir_lib() | |
label cycle(2 * 360 * units.deg) | |
private node wires { | |
output wire1: ignition_wire(); | |
output wire2: ignition_wire(); |
This file contains hidden or 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 router = useRouter() | |
const { locale, locales, defaultLocale } = router | |
const currentLocale = locale || defaultLocale | |
const availableLocales = locales || [] |
This file contains hidden or 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
Show hidden characters
{ | |
"compilerOptions": { | |
"target": "ES6", | |
"module": "commonjs", | |
"strict": true, | |
"moduleResolution": "node", | |
"esModuleInterop": true, | |
"skipLibCheck": true, | |
"rootDir": "./src", | |
"outDir": "./dist" |
This file contains hidden or 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
(Get-FileHash <YOUR_FILE_NAME> -Algorithm sha256).hash.ToLower() |
This file contains hidden or 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
Write-Host("hello i'm amamiya!") |
This file contains hidden or 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
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>Home | VARIUS</title> | |
<meta name="google-site-verification" content="Qjxxvj1jYae_WgPQU3DLHEhDgH_DlomNupTymcKRHUc"> | |
<meta name="description" content="VARIUS development team"> | |
<meta property="og:url" content="https://varius.technology/"> | |
<meta property="og:title" content="Home | VARIUS"> |
This file contains hidden or 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, { ReactNode } from "react"; | |
import Layout from "layout/main"; | |
import { Box, Center, Text } from "@chakra-ui/react"; | |
import HMeta from "components/headmeta"; | |
import Image from "next/image"; | |
export default function About() { | |
return ( | |
<Layout> | |
<BgImage /> | |
<HMeta pageTitle="About VARIUS" /> |
This file contains hidden or 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 anExampleVariable:number [] = [1,2,3,4,5,6,7]; | |
const anExampleVariable2:number [] = []; | |
anExampleVariable.map(item => { | |
anExampleVariable2.push(item * 2) | |
}) | |
console.log(...anExampleVariable2) |
This file contains hidden or 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 WebToggle = () => { | |
const [toggle, setToggle] = useState<boolean>(false); | |
toggle ? '#000' : '#fff'; | |
return ( | |
<div> | |
<h1>WebToggle</h1> | |
<button onClick={() => { | |
setToggle(!toggle); | |
}} | |
style={{ |
This file contains hidden or 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, {useState} from "react"; | |
export default function Index () { | |
const [count, setCount] = useState(0); | |
return ( | |
<> | |
test ui app | |
{count} | |
<div> |
NewerOlder