Skip to content

Instantly share code, notes, and snippets.

View avxkim's full-sized avatar
🏠
Working from home

Alexander Kim avxkim

🏠
Working from home
View GitHub Profile
@avxkim
avxkim / index.html
Created February 5, 2019 04:47
Simple Horizontal Slider
<h1>Horizontal Slider</h1>
<h4>En desarollo</h4>
<hr />
<div class="horizontal-slider">
<ul class="h-items">
<li>1</li>
<li>2</li>
<li>3</li>
</ul>
<div class="h-controlls">
# editorconfig.org
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
@avxkim
avxkim / Short path imports.ts
Created November 28, 2021 18:29
tsconfig.json
"compilerOptions": {
"baseUrl": "./src",
"paths": {
"@app/*": ["app/*"],
"@views/*": ["app/views/*"],
"@components/*": ["app/components/*"],
"@store/*": ["app/store/*"],
"@services/*": ["app/services/*"]
},