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;