Skip to content

Instantly share code, notes, and snippets.

View Violet-Bora-Lee's full-sized avatar
๐Ÿ’œ
I code, build and act.

Bora Lee Violet-Bora-Lee

๐Ÿ’œ
I code, build and act.
View GitHub Profile
@Violet-Bora-Lee
Violet-Bora-Lee / hermes-zellij-guide.html
Last active April 14, 2026 11:15
Hermes Zellij guide
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Hermes + Zellij ์‚ฌ์šฉ๋ฒ• ์š”์•ฝ </title>
<style>
:root { --bg:#07111f; --panel:#0d1830; --border:#223152; --text:#eaf0ff; --muted:#b8c4e3; --accent:#7fb2ff; --code-bg:#08101f; }
* { box-sizing: border-box; }
html, body { margin:0; padding:0; background:var(--bg); color:var(--text); font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Apple SD Gothic Neo",sans-serif; }
@Violet-Bora-Lee
Violet-Bora-Lee / environment-variables.md
Created March 31, 2026 13:11 — forked from jedisct1/environment-variables.md
Claude Code environment variables full list

Claude Code Environment Variables

Scope and methodology

This file documents environment variables visible in the checked-in source of this repository snapshot. It is not guaranteed to be exhaustive for the full product, because many imported files are not present here.

For each variable, this document gives:

  • the visible purpose in code
  • the rough subsystem it belongs to
@Violet-Bora-Lee
Violet-Bora-Lee / README.md
Last active December 10, 2025 07:22
์ธ๋ฐ”๋”” <> ๋ฉ”๊ฐ€์กด ๊นƒํ—™ ์ฝ”ํŒŒ์ผ๋Ÿฟ ์›Œํฌ์ƒต

์ธ๋ฐ”๋”” ๊นƒํ—™ ์ฝ”ํŒŒ์ผ๋Ÿฟ ์›Œํฌ์ƒต

https://bit.ly/4oIwZas

์ผ์ •

  • 9์‹œ~11์‹œ: GitHub Universe 2025 Recap
  • 11์‹œ~12์‹œ: ๊ธฐ์—… ๊ฐ•์—ฐ์—์„œ ์ฃผ๋กœ ํ•˜์‹œ๋Š” ์งˆ๋ฌธ
  • 12์‹œ~13์‹œ (or 13์‹œ 30๋ถ„): ์ ์‹ฌ์‹์‚ฌ
  • 13์‹œ~:
  • ์ดํ›„: ๋ฐ”์ด๋ธŒ์ฝ”๋”ฉ์œผ๋กœ SEO ๋ฐ GEO/AIEO ์ ์šฉ๋œ ๋ธ”๋กœ๊ทธ ๋งŒ๋“ค๊ธฐ
@Violet-Bora-Lee
Violet-Bora-Lee / FarmToken.sol
Created November 22, 2025 01:31
์Šค๋งˆํŠธํŒœ ๋ณด์ƒ ํ† ํฐ ์ฝ”๋“œ
// SPDX-License-Identifier: MIT
pragma solidity 0.8.29;
import "@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol";
contract FarmToken is ERC20 {
address public admin;
// Mapping from activity name to reward points
mapping(string => uint256) public activityRewardPoints;
@Violet-Bora-Lee
Violet-Bora-Lee / GinsengProductionHistory.sol
Created November 22, 2025 01:27
์Šค๋งˆํŠธํŒœ ์ด๋ ฅ ์ถ”์  ์ฝ”๋“œ
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.2 <0.9.0;
contract GinsengProductionHistory {
struct Ginseng {
string name;
uint256 plantingDate;
}
struct GrowthRecord {
@Violet-Bora-Lee
Violet-Bora-Lee / erc-20-premit.sol
Created November 22, 2025 00:30
ERC-20 with ์ˆ˜์‹ ์ž ์ง€์ •
// SPDX-License-Identifier: MIT
// Compatible with OpenZeppelin Contracts ^5.5.0
pragma solidity ^0.8.27;
import {ERC20} from "@openzeppelin/contracts@5.5.0/token/ERC20/ERC20.sol";
import {ERC20Permit} from "@openzeppelin/contracts@5.5.0/token/ERC20/extensions/ERC20Permit.sol";
contract MyToken is ERC20, ERC20Permit {
constructor(address recipient)
ERC20("MyTokenTest", "MTKT")
@Violet-Bora-Lee
Violet-Bora-Lee / README.md
Created November 19, 2025 23:46
๋ฉ”๊ฐ€์กด ๋ฐ”์ด๋ธŒ์ฝ”๋”ฉ ์›๋ฐ์ด ํด๋ž˜์Šค
@Violet-Bora-Lee
Violet-Bora-Lee / deploy.js
Last active October 27, 2025 01:12
ํ•˜๋‚˜๊ธˆ์œต-Hardhat์‹ค์Šต
// npx hardhat run scripts/deploy.js ๋กœ ์Šคํฌ๋ฆฝํŠธ ์‹คํ–‰
// hre stands for Hardhat Runtime Environment
const hre = require("hardhat");
// console.log(hre);
async function main() {
const currentTimestampInSeconds = Math.round(Date.now() / 1000);
@Violet-Bora-Lee
Violet-Bora-Lee / MyTest.sol
Created October 27, 2025 00:44
ํ•˜๋‚˜๊ธˆ์œต-Hardhat์‹ค์Šต
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.28;
// Import the hardhat console
import "hardhat/console.sol";
contract MyTest {
uint256 public unlockTime;
address payable public owner;
event Widthrawal(uint256 amount, uint256 when);