Skip to content

Instantly share code, notes, and snippets.

@ItzTree
ItzTree / maple_timer.html
Created February 7, 2026 23:53
maple_timer
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>메이플 사냥 타이머</title>
<style>
/* 기본 설정 */
body {
background-color: #1e1e1e;
@ItzTree
ItzTree / dart_04.dart
Created April 28, 2023 05:29
Flutter study 01 function
void main() {
int b = funcInt(3);
print(b);
}
int funcInt(int a) {
int n = 10;
n = n + a;
return n;
}
@ItzTree
ItzTree / dart_03.dart
Created April 28, 2023 04:44
Flutter study 01 while-break-continue
void main() {
int n = 0;
while (n <= 10) {
n = n + 1;
if (n == 7)
break;
if (n % 3 == 0)
continue;
print(n);
@ItzTree
ItzTree / dart_02.dart
Created April 28, 2023 03:54
Flutter Study 01 for
void main() {
for (int i = 1; i <= 5; i++) {
print(i);
}
}
@ItzTree
ItzTree / dart_01.dart
Last active April 28, 2023 02:42
flutter study 01 if-else
void main() {
int n = 5;
if (n > 10) {
print("n > 10");
} else {
print("n <= 10");
}
}
@ItzTree
ItzTree / click_macro.py
Created December 8, 2022 05:43
KakaoTalk Click Macro
import pyautogui
from time import sleep
# 5초 후 프로그램 실행
sleep(5)
locate = pyautogui.position()
while True:
current = pyautogui.position()
# 움직이면 매크로 해제