Skip to content

Instantly share code, notes, and snippets.

View karian7's full-sized avatar
🎯
Focusing

koasu karian7

🎯
Focusing
View GitHub Profile
@karian7
karian7 / install_claude.sh
Last active October 14, 2025 12:51
install_claude.sh
#!/bin/bash
echo "🚀 Claude Code + Playwright MCP 완전 설치를 시작합니다..."
echo ""
# Node.js 설치 여부 확인
if ! command -v node &> /dev/null; then
echo "📦 Node.js가 설치되어 있지 않습니다."
echo "🍺 Homebrew로 Node.js를 설치합니다..."
@SpringBootApplication
@RestController
public class RequestParamApplication {
public static void main(String[] args) {
SpringApplication.run(RequestParamApplication.class, args);
}
@RequestMapping(path = "/")
public String legacyMethod(@RequestParam String ybs) {
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>15.0</version>
</dependency>
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>Hello!</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script>
<script src="http://blueimp.github.io/JavaScript-MD5/js/md5.js"></script>
</head>
<body>
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xmlns:p="http://www.springframework.org/schema/p" xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/tx
package com.daumcorp.be;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.MediaType;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.*;
import java.util.List;
package com.daumcorp.be;
import com.google.common.base.Preconditions;
/**
* Created by karian7 on 2/23/14.
*/
public class ListParam {
private int limit;
private int offset;
package com.daumcorp.be;
import org.junit.Before;
import org.junit.Test;
import org.postgresql.ds.PGSimpleDataSource;
import org.springframework.jdbc.core.BeanPropertyRowMapper;
import org.springframework.jdbc.core.JdbcTemplate;
import javax.sql.DataSource;
import java.sql.SQLException;
package com.daumcorp.be;
import java.util.List;
/**
* Created by karian7 on 2/18/14.
*/
public interface AccountHistoryRepository {
void save(AccountHistory history);
package com.daumcorp.be;
import java.util.Date;
/**
* Created by karian7 on 2/18/14.
*/
public class AccountHistory {
private String email;
private String description;