다국어를 지원하기 위한 파일 형식 정리
AWS 학습 링크집 시리즈
- AWS 학습 자료집 http://bit.ly/aws-study-resource
- 비공식 AWS 공인 솔루션스 아키텍트 - 어소시에이트 수험 가이드 http://bit.ly/sacertguide
- 비공식 AWS 공인 개발자 - 어소시에이트 수험 가이드 http://bit.ly/devcertguide
- AWS 보안 관련 컨텐츠 모음집 http://bit.ly/seccontents
비공식 AWS 공인 개발자 - 어소시에이트 수험 가이드(http://bit.ly/devcertguide)
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
| /* 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 ----------- |
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:
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> | |
| <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> |
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
| 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 |
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
| var todoList = [ | |
| { done : true, title : "블로그 주제 고르기"}, | |
| { done : false, title : "블로그 작성하기"}, | |
| { done : false, title : "놀기"} | |
| ]; | |
| function todoCtrl ($scope) { | |
| $scope.appName = 'TODO APP'; | |
| //초기 할 일 목록 설정 |
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 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"> |
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
| #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 |
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
| # 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 |
NewerOlder