Skip to content

Instantly share code, notes, and snippets.

View shoo7830's full-sized avatar
πŸ’€
Working!!!

Aria Kim shoo7830

πŸ’€
Working!!!
View GitHub Profile
<!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>
<script id="jsbin-javascript">
<!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/redux/4.0.4/redux.js"></script>
<script id="jsbin-javascript">
<!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/redux/4.0.4/redux.js"></script>
<script id="jsbin-javascript">
module.exports = {
loading: 'components/main.vue',
head:{
link: [
{ rel: 'shortcut icon', href: 'https://www.hiworks.com/static/images/favicon/favicon.ico' }
],
meta: [
{ charset: 'utf-8' },
{
"name": "hiworks-beta",
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate"
}
}
@shoo7830
shoo7830 / default.html
Created May 16, 2017 14:46
default.html
<!DOCTYPE html>
<html lang="ko">
<head>
<!-- Document metadata -->
<meta charset="UTF-8">
<title>νŽ˜μ΄μ§€ 제λͺ©</title>
</head>
<body>
<!-- Document content -->
@shoo7830
shoo7830 / gulpfile.js
Created January 10, 2017 00:56
ν•˜μ΄μ›μŠ€ μžμ› μ„€μ •
'use strict';
var gulp = require('gulp'),
sass = require('gulp-sass'),
scssLint = require('gulp-scss-lint'),
stylish = require('gulp-scss-lint-stylish2'),
sourcemaps = require('gulp-sourcemaps');
gulp.task('sass', function () {
return gulp.src('static/ui/css/**/*.scss')
@shoo7830
shoo7830 / a-modern-frontend-dev.md
Created July 28, 2016 08:59 — forked from dwayne/a-modern-frontend-dev.md
Articles, tutorials and tools for modern front-end development.

Problem: What does a Modern Front-End Development Workflow Look Like?

I want to start writing libraries and large applications using the JavaScript language. However, I don't know how to setup the project and which build tools to use. What I do know is that the JavaScript community has moved way beyond using browser developer tool plugins and strategically-placed console.log() statements to debug, test, and build code.

I need help.

Below, I will keep track of articles, tutorials and tools I come across as I search for a way to bring my front-end development chops up-to-date.

The Ultimate Resource

@shoo7830
shoo7830 / Gruntfile.js
Created May 26, 2016 04:19
sample Gruntfile.js for watching and compiling less files.
'use strict';
module.exports = function (grunt) {
// load all grunt tasks
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.initConfig({
watch: {
// if any .less file changes in directory "public/css/" run the "less"-task.
@shoo7830
shoo7830 / new_gist_file.html
Created November 3, 2015 01:05
Pure CSS3 slider - source
<head> ... <!-- Your stuff --> <link rel="stylesheet" href="style/slider-def.css"> </head>