Skip to content

Instantly share code, notes, and snippets.

@dkmin
dkmin / 01-intro.md
Last active August 29, 2015 14:17 — forked from dwayne/01-intro.md

Introduction

Author: Ari Lerner.

AngularJS offers a single framework that can be used to build dynamic, client-centric applications. It provides:

  • Module support
  • DOM manipulation
  • Animations
  • Templating
@dkmin
dkmin / designer.html
Last active August 29, 2015 14:07
designer
<link href="../paper-tabs/paper-tabs.html" rel="import">
<link href="../paper-tabs/paper-tab.html" rel="import">
<polymer-element name="my-element">
<template>
<style>
#design_host {
position: absolute;
width: 100%;
@dkmin
dkmin / designer.html
Last active August 29, 2015 14:07
designer
<link rel="import" href="../core-scaffold/core-scaffold.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-menu/core-menu.html">
<link rel="import" href="../core-item/core-item.html">
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-menu/core-submenu.html">
<link rel="import" href="../paper-calculator/paper-calculator.html">
<polymer-element name="my-element">
@dkmin
dkmin / designer.html
Last active August 29, 2015 14:07
designer
<link rel="import" href="../core-scaffold/core-scaffold.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-menu/core-menu.html">
<link rel="import" href="../core-item/core-item.html">
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-menu/core-submenu.html">
<link rel="import" href="../google-map/google-map.html">
<polymer-element name="my-element">
@dkmin
dkmin / gist:9497514
Created March 11, 2014 23:42
Google Spreadsheets plugin to query a Salesforce instance
/**
* @author Harshit Pandey
* @date 8/31/2013
* @description Google Spreadsheets plugin to query a Salesforce instance and display data
*/
/**
* Key of ScriptProperties for Salesforce Username.
* @type {String}
# 1. install http://railsinstaller.org/en 2.2.2
# 2. install mysql sever
# 3. install 32bit lib from http://dev.mysql.com/get/Downloads/Connector-C/mysql-connector-c-noinstall-6.0.2-win32.zip/from/pick
# 4. copy /mysql-connector/lib/libmysql.dll to /RailsInstaller/Ruby1.9.3/bin
require 'mysql'
begin
con = Mysql.new '192.168.0.41', 'root', ''
puts "start"
<!doctype html>
<html ng-app="Demo" ng-controller="AppController">
<head>
<meta charset="utf-8" />
<title>AngularJS Routing</title>
<style type="text/css">
a {
@dkmin
dkmin / gist:6810196
Last active December 24, 2015 14:09

2013, 10.3

###NG 실무 학습사항 노트 #####* fiddle code를 임베딩하기

<1frame
  style="width: 100%; height: 300px"
  src="http://{url_of_the_fiddle}/embedded/[{tabs}/[{style}]]/">
</iframe>