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
<script lang="ts"> | |
let hue = $state(0); | |
let container; | |
$inspect(hue); | |
$effect(() => { | |
container.style.setProperty("--hue", hue); | |
}); | |
</script> |
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
SHAPEZ2-1-H4sIAHe922YA/+ydbY8c15Gl/wuxH5mLjIjKzJsC+EEtWYaImbEoUS1pFoZBSxwOYQ5lUNRqDcP/fSmxu9kvqqrM52mblJQwYENWn6yqzBOR98aNOOfvd07vvBf9PNy9c/LJnff+fud/vfzbXx/fee/Ox989e/T8mzt373z89bfPf/wXHz56+ejOe//nztNX//zef3z/P39+/KK9+tc//eOfv3/67Junz5/873/79snTr3//6OXj959/c/roxdNHz1/u/5s/vDj6J1+++Zs//uPund89f/ni6ePvXn2Nv9/58s57Xbt756tX/7O7e+fhq6/8b4/+9u33L//0H9+++J9Hz/60+1P+v3x15ZPLv+rk7BP2/a5Pnj16+V+v8N/dufv8+2fPXv/Xne/++9FfH7/36fev//Nz3yTip29S0907n776n9ff54unLx4/fPHo+Xf/8/Tly8cvPn389eOn//fxi4+fv/qH54+enf+wf9y9conx+iU+fPxfj75/9vKjb1/88OjFN0fQg0LvFLoUOhU6FLo36Jz3oP/t8X+9vAb996cvXnz74vE3F5fIi0us++iCuB3EDRA3QtwEcQ3iZoYrH/el4r5U3JeK+1JxXyru60jcL4i9yotLrPvogrgdxA0QN0LcdAN3ic2fPX7+zX4u9z4cehUOvQqHXoVDr8KhV+HQm9fgOboXwfTmTbruoxPiCuJ2EDdA3Ahx0w3c0iDMnr3LMiAOrmESrmESrmESrmESrmESrmESrmGSrmF6tfZZj4N8KciXgnwpyJeCfKmbfDke8n98tcF9+vzRi7+dPn7x3dMfd7Q/bub/cXbJ8w1yvisb5JjNTuvH1b1ATwqt9uWh9uWh9uWh9uWh9uWh9uWh9uWKaoppimiKZ4pmrvqjSigH9guHNxyjSSvn6KbQk0KPCj0o9E6hS6FToUOhzT5nurjEaq6qV2CpV2CpV2CpV2CpV2CpV2CpV2CpV2CpV2CpV2AdfgUur47BRTpco8MlOlyhww |
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 useHideMouse = (time: number) => { | |
let timeoutId = -1 | |
let lastElement | |
let lastElementCur = "" | |
const hideMouseAfter = (e: MouseEvent) => { | |
clearTimeout(timeoutId) | |
document.body.style.cursor = 'auto' | |
if (lastElement) { | |
lastElement.style.cursor = lastElementCur |
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
package main | |
import ( | |
"context" | |
"fmt" | |
"testing" | |
"github.com/go-redis/redis/v9" | |
"github.com/stretchr/testify/assert" | |
"github.com/stretchr/testify/require" |
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
<!DOCTYPE html> | |
<html lang="zh"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>LemonNeko Loading Demo</title> | |
<style> | |
body { | |
padding: 0; | |
margin: 0; | |
} |
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 java.io.File; | |
import java.io.BufferedInputStream; | |
import java.io.BufferedOutputStream; | |
import java.io.FileInputStream; | |
import java.io.FileOutputStream; | |
public class TransferAllIntoOne { | |
public static void main(String[] args) throws Throwable { | |
File file = new File("."); | |
File to = new File("./Index.js"); |