Skip to content

Instantly share code, notes, and snippets.

View Ryann10's full-sized avatar
🦁
Meow

Ryan Sungji Yang Ryann10

🦁
Meow
View GitHub Profile
@Ryann10
Ryann10 / AWSCertifiedDeveloperUnofficialStudyGuide.md
Created December 21, 2016 04:36 — forked from serithemage/AWSCertifiedDeveloperUnofficialStudyGuide.md
비공식 AWS 공인 개발자 - 어소시에이트 수험 가이드

비공식 AWS 공인 개발자 - 어소시에이트 수험 가이드

이 문서는 AWS 공인 개발자 - 어소시에이트 시험 안내서에 적힌 내용에 기반하여 AWS의 홈페이지, 블로그, Slideshare의 관련 링크를 한글 자료 중심으로 정리해 놓은 것 입니다.

단축URL: http://bit.ly/devcertguide

기본적인 시험 정보

@Ryann10
Ryann10 / index.html
Last active October 4, 2016 01:52
Pokemon KU
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Simplest possible examples of HTML, CSS and JavaScript." />
<meta name="author" content="//samdutton.com">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<meta itemprop="name" content="simpl.info: simplest possible examples of HTML, CSS and JavaScript">
<meta itemprop="image" content="/images/icons/icon192.png">
/*
* Copyright 2014 Ryan Sung Ji Yang
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
@Ryann10
Ryann10 / TitledEditText.java
Last active February 1, 2020 21:46
TitledEditText allows to write a large font sized title with a content like done in SimpleNote.
import android.content.Context;
import android.text.Editable;
import android.text.Spannable;
import android.text.TextWatcher;
import android.text.style.RelativeSizeSpan;
import android.util.AttributeSet;
import android.widget.EditText;
public class TitledEditText extends EditText implements TextWatcher{
import android.content.Context;
import android.support.v7.widget.RecyclerView;
import android.util.AttributeSet;
import android.view.View;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
public class EmptyRecyclerView extends RecyclerView {
@Nullable View emptyView;