Skip to content

Instantly share code, notes, and snippets.

View hans-hk's full-sized avatar
🎯
Focusing

hans hans-hk

🎯
Focusing
View GitHub Profile

다국어 (i18n)

다국어를 지원하기 위한 파일 형식 정리

사용 프레임워크

작성 포멧

@hans-hk
hans-hk / AWSCertifiedDeveloperUnofficialStudyGuide.md
Created December 23, 2019 16:24 — forked from serithemage/AWSCertifiedDeveloperUnofficialStudyGuide.md
비공식 AWS 공인 개발자 - 어소시에이트 수험 가이드
@hans-hk
hans-hk / default.less
Created December 16, 2019 15:48
antd default.less
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
@import '../color/colors';
// The prefix to use on all css classes from ant.
@ant-prefix: ant;
// An override for the html selector for theme prefixes
@html-selector: html;
// -------- Colors -----------

Keybase proof

I hereby claim:

  • I am hans-hk on github.
  • I am hans_hk (https://keybase.io/hans_hk) on keybase.
  • I have a public key ASBQq9YFI3RseZjvPvzkrIio-TjAEQ2g04T8HMpFIlNspwo

To claim this, I am signing this object:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/immutable/3.7.3/immutable.min.js"></script>
@hans-hk
hans-hk / ActiveAdmin + Rolify -- Roles Administration
Created February 5, 2016 09:38 — forked from rlmattax/ActiveAdmin + Rolify -- Roles Administration
Active Admin + Rolify -- A simple example of modifying roles within active admin on users.
ActiveAdmin.register User do
index do
column "ID" do |user|
link_to user.id, admin_user_path(user)
end
...
column :roles do |user|
user.roles.collect {|c| c.name.capitalize }.to_sentence
end
default_actions
@hans-hk
hans-hk / app.js
Created January 11, 2015 14:06
AngularJS TODO APP - VINYL
var todoList = [
{ done : true, title : "블로그 주제 고르기"},
{ done : false, title : "블로그 작성하기"},
{ done : false, title : "놀기"}
];
function todoCtrl ($scope) {
$scope.appName = 'TODO APP';
//초기 할 일 목록 설정
@hans-hk
hans-hk / index.html
Created January 11, 2015 14:05
AngularJS TODO APP - VINYL BLOG
<!doctype html>
<html ng-app>
<head>
<meta charset="UTF-8">
<title>TODO App</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<script src="libs/angular/angular.js"></script>
<script src="app.js"></script>
</head>
<body class="well" ng-controller="todoCtrl">
@hans-hk
hans-hk / waterplease.cpp
Created October 28, 2014 05:10
물 주세요. 프로젝트의 cpp 파일 소스입니다.
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <wiringPi.h>
#include <wiringPiSPI.h>
#define CS_MCP3208 8 //BCM_GPIO_8
#define SPI_CHANNEL 0
#define SPI_SPEED 1000000 //1MHz
@hans-hk
hans-hk / Cocos2d-x how-to-start-a-new-game
Last active August 29, 2015 14:01
how-to-start-a-new-game
# How To Start A New Game
This documentation will show you how to use [cocos console](https://github.com/cocos2d/cocos2d-console) to create and run a new project.
## Runtime Requirements
* Android 2.3 or newer
* iOS 5.0 or newer
* OS X 10.7 or newer
* Windows 7 or newer