Skip to content

Instantly share code, notes, and snippets.

View mitsuruog's full-sized avatar
🏄‍♂️
Surfing

Mitsuru Ogawa mitsuruog

🏄‍♂️
Surfing
View GitHub Profile
@mitsuruog
mitsuruog / Angular2 HttpInterceptor Needed.md
Last active August 16, 2016 02:55
Angular2でHttpInterceptorが欲しいお

Angular2 HttpInterceptor Needed

Who am I

  • 小川充
    • @mitsuruog
    • Front-end Developer in Givery inc.
    • Angular User Group Staff.

HttpInterceptorとは

@mitsuruog
mitsuruog / wercker.yml
Created January 17, 2016 14:49
フロントエンドをwerckerでCIテストする最小構成
# This references the default nodejs container from
# the Docker Hub: https://registry.hub.docker.com/_/node/
# If you want Nodesource's container you would reference nodesource/node
# Read more about containers on our dev center
# http://devcenter.wercker.com/docs/containers/index.html
box: node:4.2.2
# This is the build pipeline. Pipelines are the core of wercker
# Read more about pipelines on our dev center
# http://devcenter.wercker.com/docs/pipelines/index.html
@mitsuruog
mitsuruog / gulpfile.js
Created December 23, 2015 14:40
bootswatchからサムネイルを取得してリサイズするGulpタスク
const gulp = require('gulp');
const imageResize = require('gulp-image-resize');
const remoteSrc = require('gulp-remote-src');
const bootstrapThemes = [
'Cerulean',
'Cosmo',
'Cyborg',
'Darkly',
'Flatly',
@mitsuruog
mitsuruog / index.md
Last active April 15, 2024 00:54
express実践入門

express実践入門


自己紹介

小川充

  • mitsuruog
<link rel="import" href="../../salesforce/mobile-ui-elements/elements/force-ui-app/force-ui-app.html">
<link rel="import" href="../../salesforce/mobile-ui-elements/elements/force-ui-list/force-ui-list.html">
<link rel="import" href="../paper-button/paper-button.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
@mitsuruog
mitsuruog / index.html
Created March 1, 2015 14:08
JS Bin knockout.jsでFRPサンプル1 // source http://jsbin.com/fupacu
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="knockout.jsでFRPサンプル1">
<script src="http://cdnjs.cloudflare.com/ajax/libs/rxjs/2.3.24/rx.all.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/knockout/3.0.0/knockout-min.js"></script>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
@mitsuruog
mitsuruog / index.html
Created February 28, 2015 15:52
JS Bin RFP RxJSサンプル2 Github検索 // source http://jsbin.com/halopo
<!DOCTYPE html>
<html>
<head>
<script src="http://cdnjs.cloudflare.com/ajax/libs/rxjs/2.3.24/rx.all.js"></script>
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<meta name="description" content="RFP RxJSサンプル2 Github検索">
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
@mitsuruog
mitsuruog / index.html
Last active August 29, 2015 14:16
RFP RxJSサンプル1 http://jsbin.com/dafolo
<!DOCTYPE html>
<html>
<head>
<script src="http://cdnjs.cloudflare.com/ajax/libs/rxjs/2.3.22/rx.all.js"></script>
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to make opened Markdown files always be soft wrapped:
#
# path = require 'path'
#
@mitsuruog
mitsuruog / Locale.controller.coffee
Created August 10, 2014 15:04
[SAPUI5/OpenUI5]スマートに国際化する方法のBlogコードサンプル
sap.ui.controller "com.mitsuruog.sapui5.showroom.view.Locale",
onInit: ->
i18nModel = new sap.ui.model.resource.ResourceModel
bundleUrl : "i18n/messageBundle.properties"
@getView().setModel i18nModel, "i18n"