abc
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
uniform float knob_1; | |
void mainImage(out vec4 color,in vec2 fragCoord){ | |
vec2 resolution=iResolution.xy; | |
// Adjusted coordinates to center the circle | |
vec2 uv = (2. * fragCoord.xy - resolution) / iResolution.y; | |
float radius=knob_1; | |
// Calculate the distance from the center | |
float dist=length(uv); |
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
void mainImage(out vec4 color,in vec2 fragCoord){ | |
vec2 resolution=iResolution.xy; | |
// Adjusted coordinates to center the circle | |
vec2 uv=(vec2(fragCoord.x,resolution.y-fragCoord.y)/resolution.xy-.5)*2.; | |
float radius=iMouse.x/1000.; | |
#ifdef PAPER_CRANES | |
radius = energyNormalized; | |
#endif | |
// Calculate the distance from the center | |
float dist=length(uv); |
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
{ | |
"basics": { | |
"name": "Aaron Herres", | |
"label": "A full-stack, team-building software developer with an interest in software architecture and coding philosophy. ", | |
"picture": "", | |
"email": "[email protected]", | |
"phone": "", | |
"website": "", | |
"summary": "A software developer with over 15 years of experience building software. \n\nA generalist, Aaron has worked on a variety of projects ranging from startups to large corporations. \n\nAaron's passion for generalism and minimalist design has allowed him to work on platforms ranging from microcontrollers to large cloud computing clusters with 4+ million messages a minute.\n\nHe does both backend and frontend development, and has worked professionally with over 10 different programming languages.", | |
"location": { |
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 { myAtoi } from "./solution"; | |
describe("myAtoi", () => { | |
test("Example 1", () => { | |
const input = "42"; | |
const expected = 42; | |
const actual = myAtoi(input); | |
expect(actual).toEqual(expected); | |
}); | |
test("Example 2", () => { | |
const input = " -42"; |
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
{ | |
"parserOptions": { | |
"ecmaVersion": 12, | |
"sourceType": "module", | |
"ecmaFeatures": { | |
"jsx": true | |
} | |
}, | |
"rules": { | |
"semi": [1,"never"], |
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
{ | |
"basics": { | |
"name": "Aaron Herres", | |
"label": "A full-stack, team-building software developer with an interest in software architecture and coding philosophy. ", | |
"picture": "", | |
"email": "[email protected]", | |
"phone": "", | |
"website": "", | |
"summary": "A software developer with over 15 years of experience building software. \n\nA generalist, Aaron has worked on a variety of projects ranging from startups to large corporations. \n\nAaron's passion for generalism and minimalist design has allowed him to work on platforms ranging from microcontrollers to large cloud computing clusters with 4+ million messages a minute.\n\nHe does both backend and frontend development, and has worked professionally with over 10 different programming languages.", | |
"location": { |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
- Dremel
- Pandemic Legacy Board Game Season 2
- We can play this in Kona!
- Mini Triangle Smarter Kit
- Steering Wheel
- KVM (switch devices between computers)
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
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
; #Warn ; Enable warnings to assist with detecting common errors. | |
SetTitleMatchMode 2 | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
#InstallKeybdHook | |
;Coding stuff | |
CapsLock::~ |
NewerOlder